2 * Copyright (c) 1990, 1991, 1992, 1993, 1994, 1995, 1996
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that: (1) source code distributions
7 * retain the above copyright notice and this paragraph in its entirety, (2)
8 * distributions including binary code include the above copyright notice and
9 * this paragraph in its entirety in the documentation or other materials
10 * provided with the distribution, and (3) all advertising materials mentioning
11 * features or use of this software display the following acknowledgement:
12 * ``This product includes software developed by the University of California,
13 * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
14 * the University nor the names of its contributors may be used to endorse
15 * or promote products derived from this software without specific prior
17 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
18 * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
19 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
25 #include "pcap/funcattrs.h"
26 #include "pcap/bpf.h" /* bpf_u_int32 */
31 * Copyright (c) 1997 Yen Yen Lim and North Dakota State University
32 * All rights reserved.
34 * Redistribution and use in source and binary forms, with or without
35 * modification, are permitted provided that the following conditions
37 * 1. Redistributions of source code must retain the above copyright
38 * notice, this list of conditions and the following disclaimer.
39 * 2. Redistributions in binary form must reproduce the above copyright
40 * notice, this list of conditions and the following disclaimer in the
41 * documentation and/or other materials provided with the distribution.
42 * 3. All advertising materials mentioning features or use of this software
43 * must display the following acknowledgement:
44 * This product includes software developed by Yen Yen Lim and
45 * North Dakota State University
46 * 4. The name of the author may not be used to endorse or promote products
47 * derived from this software without specific prior written permission.
49 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
50 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
51 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
52 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
53 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
54 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
55 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
56 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
57 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
58 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
59 * POSSIBILITY OF SUCH DAMAGE.
62 /* Address qualifiers. */
69 #define Q_PROTOCHAIN 6
72 /* Protocol qualifiers. */
119 #define Q_ISIS_IIH 33
120 #define Q_ISIS_SNP 34
121 #define Q_ISIS_CSNP 35
122 #define Q_ISIS_PSNP 36
123 #define Q_ISIS_LSP 37
129 /* Directional qualifiers. */
146 #define A_METAC 22 /* Meta signalling Circuit */
147 #define A_BCC 23 /* Broadcast Circuit */
148 #define A_OAMF4SC 24 /* Segment OAM F4 Circuit */
149 #define A_OAMF4EC 25 /* End-to-End OAM F4 Circuit */
150 #define A_SC 26 /* Signalling Circuit*/
151 #define A_ILMIC 27 /* ILMI Circuit */
152 #define A_OAM 28 /* OAM cells : F4 only */
153 #define A_OAMF4 29 /* OAM F4 cells: Segment + End-to-end */
154 #define A_LANE 30 /* LANE traffic */
155 #define A_LLC 31 /* LLC-encapsulated traffic */
157 /* Based on Q.2931 signalling protocol */
158 #define A_SETUP 41 /* Setup message */
159 #define A_CALLPROCEED 42 /* Call proceeding message */
160 #define A_CONNECT 43 /* Connect message */
161 #define A_CONNECTACK 44 /* Connect Ack message */
162 #define A_RELEASE 45 /* Release message */
163 #define A_RELEASE_DONE 46 /* Release message */
165 /* ATM field types */
168 #define A_PROTOTYPE 53
170 #define A_CALLREFTYPE 55
172 #define A_CONNECTMSG 70 /* returns Q.2931 signalling messages for
173 establishing and destroying switched
174 virtual connection */
175 #define A_METACONNECT 71 /* returns Q.2931 signalling messages for
176 establishing and destroying predefined
177 virtual circuits, such as broadcast
178 circuit, oamf4 segment circuit, oamf4
179 end-to-end circuits, ILMI circuits or
180 connection signalling circuit. */
183 #define M_FISU 22 /* FISU */
184 #define M_LSSU 23 /* LSSU */
185 #define M_MSU 24 /* MSU */
188 #define MH_FISU 25 /* FISU for HSL */
189 #define MH_LSSU 26 /* LSSU */
190 #define MH_MSU 27 /* MSU */
192 /* MTP3 field types */
198 /* MTP3 field types in case of MTP2 HSL */
208 * A single statement, corresponding to an instruction in a block.
211 int code
; /* opcode */
212 struct slist
*jt
; /* only for relative jump in block */
213 struct slist
*jf
; /* only for relative jump in block */
214 bpf_u_int32 k
; /* k field */
223 * A bit vector to represent definition sets. We assume TOT_REGISTERS
224 * is smaller than 8*sizeof(atomset).
226 typedef bpf_u_int32 atomset
;
227 #define ATOMMASK(n) (1 << (n))
228 #define ATOMELEM(d, n) (d & ATOMMASK(n))
233 typedef bpf_u_int32
*uset
;
236 * Total number of atomic entities, including accumulator (A) and index (X).
237 * We treat all these guys similarly during flow analysis.
239 #define N_ATOMS (BPF_MEMWORDS+2)
242 * Control flow graph of a program.
243 * This corresponds to an edge in the CFG.
244 * It's a directed graph, so an edge has a predecessor and a successor.
248 int code
; /* opcode for branch corresponding to this edge */
250 struct block
*succ
; /* successor vertex */
251 struct block
*pred
; /* predecessor vertex */
252 struct edge
*next
; /* link list of incoming edges for a node */
256 * A block is a vertex in the CFG.
257 * It has a list of statements, with the final statement being a
258 * branch to successor blocks.
262 struct slist
*stmts
; /* side effect stmts */
263 struct stmt s
; /* branch stmt */
265 u_int longjt
; /* jt branch requires long jump */
266 u_int longjf
; /* jf branch requires long jump */
270 struct edge et
; /* edge corresponding to the jt branch */
271 struct edge ef
; /* edge corresponding to the jf branch */
273 struct block
*link
; /* link field used by optimizer */
276 struct edge
*in_edges
; /* first edge in the set (linked list) of edges with this as a successor */
280 int oval
; /* value ID for value tested in branch stmt */
281 bpf_u_int32 val
[N_ATOMS
];
285 * A value of 0 for val[i] means the value is unknown.
287 #define VAL_UNKNOWN 0
290 struct block
*b
; /* protocol checks */
291 struct slist
*s
; /* stmt list */
292 int regno
; /* virtual register number of result */
302 struct _compiler_state
;
304 typedef struct _compiler_state compiler_state_t
;
306 struct arth
*gen_loadi(compiler_state_t
*, bpf_u_int32
);
307 struct arth
*gen_load(compiler_state_t
*, int, struct arth
*, bpf_u_int32
);
308 struct arth
*gen_loadlen(compiler_state_t
*);
309 struct arth
*gen_neg(compiler_state_t
*, struct arth
*);
310 struct arth
*gen_arth(compiler_state_t
*, int, struct arth
*, struct arth
*);
312 void gen_and(struct block
*, struct block
*);
313 void gen_or(struct block
*, struct block
*);
314 void gen_not(struct block
*);
316 struct block
*gen_scode(compiler_state_t
*, const char *, struct qual
);
317 struct block
*gen_ecode(compiler_state_t
*, const char *, struct qual
);
318 struct block
*gen_acode(compiler_state_t
*, const char *, struct qual
);
319 struct block
*gen_mcode(compiler_state_t
*, const char *, const char *,
320 bpf_u_int32
, struct qual
);
322 struct block
*gen_mcode6(compiler_state_t
*, const char *, const char *,
323 bpf_u_int32
, struct qual
);
325 struct block
*gen_ncode(compiler_state_t
*, const char *, bpf_u_int32
,
327 struct block
*gen_proto_abbrev(compiler_state_t
*, int);
328 struct block
*gen_relation(compiler_state_t
*, int, struct arth
*,
330 struct block
*gen_less(compiler_state_t
*, int);
331 struct block
*gen_greater(compiler_state_t
*, int);
332 struct block
*gen_byteop(compiler_state_t
*, int, int, bpf_u_int32
);
333 struct block
*gen_broadcast(compiler_state_t
*, int);
334 struct block
*gen_multicast(compiler_state_t
*, int);
335 struct block
*gen_ifindex(compiler_state_t
*, int);
336 struct block
*gen_inbound(compiler_state_t
*, int);
338 struct block
*gen_llc(compiler_state_t
*);
339 struct block
*gen_llc_i(compiler_state_t
*);
340 struct block
*gen_llc_s(compiler_state_t
*);
341 struct block
*gen_llc_u(compiler_state_t
*);
342 struct block
*gen_llc_s_subtype(compiler_state_t
*, bpf_u_int32
);
343 struct block
*gen_llc_u_subtype(compiler_state_t
*, bpf_u_int32
);
345 struct block
*gen_vlan(compiler_state_t
*, bpf_u_int32
, int);
346 struct block
*gen_mpls(compiler_state_t
*, bpf_u_int32
, int);
348 struct block
*gen_pppoed(compiler_state_t
*);
349 struct block
*gen_pppoes(compiler_state_t
*, bpf_u_int32
, int);
351 struct block
*gen_geneve(compiler_state_t
*, bpf_u_int32
, int);
353 struct block
*gen_atmfield_code(compiler_state_t
*, int, bpf_u_int32
,
355 struct block
*gen_atmtype_abbrev(compiler_state_t
*, int);
356 struct block
*gen_atmmulti_abbrev(compiler_state_t
*, int);
358 struct block
*gen_mtp2type_abbrev(compiler_state_t
*, int);
359 struct block
*gen_mtp3field_code(compiler_state_t
*, int, bpf_u_int32
,
362 struct block
*gen_pf_ifname(compiler_state_t
*, const char *);
363 struct block
*gen_pf_rnr(compiler_state_t
*, int);
364 struct block
*gen_pf_srnr(compiler_state_t
*, int);
365 struct block
*gen_pf_ruleset(compiler_state_t
*, char *);
366 struct block
*gen_pf_reason(compiler_state_t
*, int);
367 struct block
*gen_pf_action(compiler_state_t
*, int);
369 struct block
*gen_p80211_type(compiler_state_t
*, bpf_u_int32
, bpf_u_int32
);
370 struct block
*gen_p80211_fcdir(compiler_state_t
*, bpf_u_int32
);
373 * Representation of a program as a tree of blocks, plus current mark.
374 * A block is marked if only if its mark equals the current mark.
375 * Rather than traverse the code array, marking each item, 'cur_mark'
376 * is incremented. This automatically makes each element unmarked.
378 #define isMarked(icp, p) ((p)->mark == (icp)->cur_mark)
379 #define unMarkAll(icp) (icp)->cur_mark += 1
380 #define Mark(icp, p) ((p)->mark = (icp)->cur_mark)
387 int bpf_optimize(struct icode
*, char *);
388 void bpf_set_error(compiler_state_t
*, const char *, ...)
389 PCAP_PRINTFLIKE(2, 3);
391 int finish_parse(compiler_state_t
*, struct block
*);
392 char *sdup(compiler_state_t
*, const char *);
394 struct bpf_insn
*icode_to_fcode(struct icode
*, struct block
*, u_int
*,
396 void sappend(struct slist
*, struct slist
*);
399 * Older versions of Bison don't put this declaration in
402 int pcap_parse(void *, compiler_state_t
*);
405 #define JT(b) ((b)->et.succ)
406 #define JF(b) ((b)->ef.succ)
408 #endif /* gencode_h */