]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/libpcap/gencode.h
This commit was generated by cvs2svn to compensate for changes in r121330,
[FreeBSD/FreeBSD.git] / contrib / libpcap / gencode.h
1 /*
2  * Copyright (c) 1990, 1991, 1992, 1993, 1994, 1995, 1996
3  *      The Regents of the University of California.  All rights reserved.
4  *
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
16  * written permission.
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.
20  *
21  * @(#) $Header: /tcpdump/master/libpcap/gencode.h,v 1.53 2001/05/10 14:48:02 fenner Exp $ (LBL)
22  *
23  * $FreeBSD$
24  */
25
26 /* Address qualifiers. */
27
28 #define Q_HOST          1
29 #define Q_NET           2
30 #define Q_PORT          3
31 #define Q_GATEWAY       4
32 #define Q_PROTO         5
33 #define Q_PROTOCHAIN    6
34
35 /* Protocol qualifiers. */
36
37 #define Q_LINK          1
38 #define Q_IP            2
39 #define Q_ARP           3
40 #define Q_RARP          4
41 #define Q_SCTP          5
42 #define Q_TCP           6
43 #define Q_UDP           7
44 #define Q_ICMP          8
45 #define Q_IGMP          9
46 #define Q_IGRP          10
47
48
49 #define Q_ATALK         11
50 #define Q_DECNET        12
51 #define Q_LAT           13
52 #define Q_SCA           14
53 #define Q_MOPRC         15
54 #define Q_MOPDL         16
55
56
57 #define Q_IPV6          17
58 #define Q_ICMPV6        18
59 #define Q_AH            19
60 #define Q_ESP           20
61
62 #define Q_PIM           21
63 #define Q_VRRP          22
64
65 #define Q_AARP          23
66
67 #define Q_ISO           24
68 #define Q_ESIS          25
69 #define Q_ISIS          26
70 #define Q_CLNP          27
71
72 #define Q_STP           28
73
74 #define Q_IPX           29
75
76 #define Q_NETBEUI       30
77
78 /* Directional qualifiers. */
79
80 #define Q_SRC           1
81 #define Q_DST           2
82 #define Q_OR            3
83 #define Q_AND           4
84
85 #define Q_DEFAULT       0
86 #define Q_UNDEF         255
87
88 struct slist;
89
90 struct stmt {
91         int code;
92         struct slist *jt;       /*only for relative jump in block*/
93         struct slist *jf;       /*only for relative jump in block*/
94         bpf_int32 k;
95 };
96
97 struct slist {
98         struct stmt s;
99         struct slist *next;
100 };
101
102 /* 
103  * A bit vector to represent definition sets.  We assume TOT_REGISTERS
104  * is smaller than 8*sizeof(atomset).
105  */
106 typedef bpf_u_int32 atomset;
107 #define ATOMMASK(n) (1 << (n))
108 #define ATOMELEM(d, n) (d & ATOMMASK(n))
109
110 /*
111  * An unbounded set.
112  */
113 typedef bpf_u_int32 *uset;
114
115 /*
116  * Total number of atomic entities, including accumulator (A) and index (X).
117  * We treat all these guys similarly during flow analysis.
118  */
119 #define N_ATOMS (BPF_MEMWORDS+2)
120
121 struct edge {
122         int id;
123         int code;
124         uset edom;
125         struct block *succ;
126         struct block *pred;
127         struct edge *next;      /* link list of incoming edges for a node */
128 };
129
130 struct block {
131         int id;
132         struct slist *stmts;    /* side effect stmts */
133         struct stmt s;          /* branch stmt */
134         int mark;
135         int longjt;             /* jt branch requires long jump */
136         int longjf;             /* jf branch requires long jump */
137         int level;
138         int offset;
139         int sense;
140         struct edge et;
141         struct edge ef;
142         struct block *head;
143         struct block *link;     /* link field used by optimizer */
144         uset dom;
145         uset closure;
146         struct edge *in_edges;
147         atomset def, kill;
148         atomset in_use;
149         atomset out_use;
150         int oval;
151         int val[N_ATOMS];
152 };
153
154 struct arth {
155         struct block *b;        /* protocol checks */
156         struct slist *s;        /* stmt list */
157         int regno;              /* virtual register number of result */
158 };
159
160 struct qual {
161         unsigned char addr;
162         unsigned char proto;
163         unsigned char dir;
164         unsigned char pad;
165 };
166
167 struct arth *gen_loadi(int);
168 struct arth *gen_load(int, struct arth *, int);
169 struct arth *gen_loadlen(void);
170 struct arth *gen_neg(struct arth *);
171 struct arth *gen_arth(int, struct arth *, struct arth *);
172
173 void gen_and(struct block *, struct block *);
174 void gen_or(struct block *, struct block *);
175 void gen_not(struct block *);
176
177 struct block *gen_scode(const char *, struct qual);
178 struct block *gen_ecode(const u_char *, struct qual);
179 struct block *gen_acode(const u_char *, struct qual);
180 struct block *gen_mcode(const char *, const char *, int, struct qual);
181 #ifdef INET6
182 struct block *gen_mcode6(const char *, const char *, int, struct qual);
183 #endif
184 struct block *gen_ncode(const char *, bpf_u_int32, struct qual);
185 struct block *gen_proto_abbrev(int);
186 struct block *gen_relation(int, struct arth *, struct arth *, int);
187 struct block *gen_less(int);
188 struct block *gen_greater(int);
189 struct block *gen_byteop(int, int, int);
190 struct block *gen_broadcast(int);
191 struct block *gen_multicast(int);
192 struct block *gen_inbound(int);
193
194 struct block *gen_vlan(int);
195
196 void bpf_optimize(struct block **);
197 void bpf_error(const char *, ...)
198 #if HAVE___ATTRIBUTE__
199     __attribute__((noreturn, format (printf, 1, 2)))
200 #endif
201 ;
202
203 void finish_parse(struct block *);
204 char *sdup(const char *);
205
206 struct bpf_insn *icode_to_fcode(struct block *, int *);
207 int pcap_parse(void);
208 void lex_init(char *);
209 void lex_cleanup(void);
210 void sappend(struct slist *, struct slist *);
211
212 /* XXX */
213 #define JT(b)  ((b)->et.succ)
214 #define JF(b)  ((b)->ef.succ)
215
216 extern int no_optimize;