add winpcap 4.0.2 from url http://www.winpcap.org/
[natblaster.git] / winpcap / wpcap / libpcap / grammar.y
blobc2f96f144ce2649f3cbcb2773016b39ce78f6075
1 %{
2 /*
3 * Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996
4 * The Regents of the University of California. All rights reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that: (1) source code distributions
8 * retain the above copyright notice and this paragraph in its entirety, (2)
9 * distributions including binary code include the above copyright notice and
10 * this paragraph in its entirety in the documentation or other materials
11 * provided with the distribution, and (3) all advertising materials mentioning
12 * features or use of this software display the following acknowledgement:
13 * ``This product includes software developed by the University of California,
14 * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
15 * the University nor the names of its contributors may be used to endorse
16 * or promote products derived from this software without specific prior
17 * written permission.
18 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
19 * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
20 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
23 #ifndef lint
24 static const char rcsid[] _U_ =
25 "@(#) $Header: /tcpdump/master/libpcap/grammar.y,v 1.86.2.5 2005/09/05 09:08:06 guy Exp $ (LBL)";
26 #endif
28 #ifdef HAVE_CONFIG_H
29 #include "config.h"
30 #endif
32 #ifdef WIN32
33 #include <pcap-stdinc.h>
34 #else /* WIN32 */
35 #include <sys/types.h>
36 #include <sys/socket.h>
37 #endif /* WIN32 */
39 #include <stdlib.h>
41 #ifndef WIN32
42 #if __STDC__
43 struct mbuf;
44 struct rtentry;
45 #endif
47 #include <netinet/in.h>
48 #endif /* WIN32 */
50 #include <stdio.h>
52 #include "pcap-int.h"
54 #include "gencode.h"
55 #include "pf.h"
56 #include <pcap-namedb.h>
58 #ifdef HAVE_OS_PROTO_H
59 #include "os-proto.h"
60 #endif
62 #define QSET(q, p, d, a) (q).proto = (p),\
63 (q).dir = (d),\
64 (q).addr = (a)
66 int n_errors = 0;
68 static struct qual qerr = { Q_UNDEF, Q_UNDEF, Q_UNDEF, Q_UNDEF };
70 static void
71 yyerror(char *msg)
73 ++n_errors;
74 bpf_error("%s", msg);
75 /* NOTREACHED */
78 #ifndef YYBISON
79 int yyparse(void);
81 int
82 pcap_parse()
84 return (yyparse());
86 #endif
90 %union {
91 int i;
92 bpf_u_int32 h;
93 u_char *e;
94 char *s;
95 struct stmt *stmt;
96 struct arth *a;
97 struct {
98 struct qual q;
99 int atmfieldtype;
100 int mtp3fieldtype;
101 struct block *b;
102 } blk;
103 struct block *rblk;
106 %type <blk> expr id nid pid term rterm qid
107 %type <blk> head
108 %type <i> pqual dqual aqual ndaqual
109 %type <a> arth narth
110 %type <i> byteop pname pnum relop irelop
111 %type <blk> and or paren not null prog
112 %type <rblk> other pfvar
113 %type <i> atmtype atmmultitype
114 %type <blk> atmfield
115 %type <blk> atmfieldvalue atmvalue atmlistvalue
116 %type <blk> mtp3field
117 %type <blk> mtp3fieldvalue mtp3value mtp3listvalue
120 %token DST SRC HOST GATEWAY
121 %token NET NETMASK PORT PORTRANGE LESS GREATER PROTO PROTOCHAIN CBYTE
122 %token ARP RARP IP SCTP TCP UDP ICMP IGMP IGRP PIM VRRP
123 %token ATALK AARP DECNET LAT SCA MOPRC MOPDL
124 %token TK_BROADCAST TK_MULTICAST
125 %token NUM INBOUND OUTBOUND
126 %token PF_IFNAME PF_RSET PF_RNR PF_SRNR PF_REASON PF_ACTION
127 %token LINK
128 %token GEQ LEQ NEQ
129 %token ID EID HID HID6 AID
130 %token LSH RSH
131 %token LEN
132 %token IPV6 ICMPV6 AH ESP
133 %token VLAN MPLS
134 %token PPPOED PPPOES
135 %token ISO ESIS CLNP ISIS L1 L2 IIH LSP SNP CSNP PSNP
136 %token STP
137 %token IPX
138 %token NETBEUI
139 %token LANE LLC METAC BCC SC ILMIC OAMF4EC OAMF4SC
140 %token OAM OAMF4 CONNECTMSG METACONNECT
141 %token VPI VCI
142 %token RADIO
143 %token SIO OPC DPC SLS
145 %type <s> ID
146 %type <e> EID
147 %type <e> AID
148 %type <s> HID HID6
149 %type <i> NUM action reason
151 %left OR AND
152 %nonassoc '!'
153 %left '|'
154 %left '&'
155 %left LSH RSH
156 %left '+' '-'
157 %left '*' '/'
158 %nonassoc UMINUS
160 prog: null expr
162 finish_parse($2.b);
164 | null
166 null: /* null */ { $$.q = qerr; }
168 expr: term
169 | expr and term { gen_and($1.b, $3.b); $$ = $3; }
170 | expr and id { gen_and($1.b, $3.b); $$ = $3; }
171 | expr or term { gen_or($1.b, $3.b); $$ = $3; }
172 | expr or id { gen_or($1.b, $3.b); $$ = $3; }
174 and: AND { $$ = $<blk>0; }
176 or: OR { $$ = $<blk>0; }
178 id: nid
179 | pnum { $$.b = gen_ncode(NULL, (bpf_u_int32)$1,
180 $$.q = $<blk>0.q); }
181 | paren pid ')' { $$ = $2; }
183 nid: ID { $$.b = gen_scode($1, $$.q = $<blk>0.q); }
184 | HID '/' NUM { $$.b = gen_mcode($1, NULL, $3,
185 $$.q = $<blk>0.q); }
186 | HID NETMASK HID { $$.b = gen_mcode($1, $3, 0,
187 $$.q = $<blk>0.q); }
188 | HID {
189 /* Decide how to parse HID based on proto */
190 $$.q = $<blk>0.q;
191 $$.b = gen_ncode($1, 0, $$.q);
193 | HID6 '/' NUM {
194 #ifdef INET6
195 $$.b = gen_mcode6($1, NULL, $3,
196 $$.q = $<blk>0.q);
197 #else
198 bpf_error("'ip6addr/prefixlen' not supported "
199 "in this configuration");
200 #endif /*INET6*/
202 | HID6 {
203 #ifdef INET6
204 $$.b = gen_mcode6($1, 0, 128,
205 $$.q = $<blk>0.q);
206 #else
207 bpf_error("'ip6addr' not supported "
208 "in this configuration");
209 #endif /*INET6*/
211 | EID {
212 $$.b = gen_ecode($1, $$.q = $<blk>0.q);
214 * $1 was allocated by "pcap_ether_aton()",
215 * so we must free it now that we're done
216 * with it.
218 free($1);
220 | AID {
221 $$.b = gen_acode($1, $$.q = $<blk>0.q);
223 * $1 was allocated by "pcap_ether_aton()",
224 * so we must free it now that we're done
225 * with it.
227 free($1);
229 | not id { gen_not($2.b); $$ = $2; }
231 not: '!' { $$ = $<blk>0; }
233 paren: '(' { $$ = $<blk>0; }
235 pid: nid
236 | qid and id { gen_and($1.b, $3.b); $$ = $3; }
237 | qid or id { gen_or($1.b, $3.b); $$ = $3; }
239 qid: pnum { $$.b = gen_ncode(NULL, (bpf_u_int32)$1,
240 $$.q = $<blk>0.q); }
241 | pid
243 term: rterm
244 | not term { gen_not($2.b); $$ = $2; }
246 head: pqual dqual aqual { QSET($$.q, $1, $2, $3); }
247 | pqual dqual { QSET($$.q, $1, $2, Q_DEFAULT); }
248 | pqual aqual { QSET($$.q, $1, Q_DEFAULT, $2); }
249 | pqual PROTO { QSET($$.q, $1, Q_DEFAULT, Q_PROTO); }
250 | pqual PROTOCHAIN { QSET($$.q, $1, Q_DEFAULT, Q_PROTOCHAIN); }
251 | pqual ndaqual { QSET($$.q, $1, Q_DEFAULT, $2); }
253 rterm: head id { $$ = $2; }
254 | paren expr ')' { $$.b = $2.b; $$.q = $1.q; }
255 | pname { $$.b = gen_proto_abbrev($1); $$.q = qerr; }
256 | arth relop arth { $$.b = gen_relation($2, $1, $3, 0);
257 $$.q = qerr; }
258 | arth irelop arth { $$.b = gen_relation($2, $1, $3, 1);
259 $$.q = qerr; }
260 | other { $$.b = $1; $$.q = qerr; }
261 | atmtype { $$.b = gen_atmtype_abbrev($1); $$.q = qerr; }
262 | atmmultitype { $$.b = gen_atmmulti_abbrev($1); $$.q = qerr; }
263 | atmfield atmvalue { $$.b = $2.b; $$.q = qerr; }
264 | mtp3field mtp3value { $$.b = $2.b; $$.q = qerr; }
266 /* protocol level qualifiers */
267 pqual: pname
268 | { $$ = Q_DEFAULT; }
270 /* 'direction' qualifiers */
271 dqual: SRC { $$ = Q_SRC; }
272 | DST { $$ = Q_DST; }
273 | SRC OR DST { $$ = Q_OR; }
274 | DST OR SRC { $$ = Q_OR; }
275 | SRC AND DST { $$ = Q_AND; }
276 | DST AND SRC { $$ = Q_AND; }
278 /* address type qualifiers */
279 aqual: HOST { $$ = Q_HOST; }
280 | NET { $$ = Q_NET; }
281 | PORT { $$ = Q_PORT; }
282 | PORTRANGE { $$ = Q_PORTRANGE; }
284 /* non-directional address type qualifiers */
285 ndaqual: GATEWAY { $$ = Q_GATEWAY; }
287 pname: LINK { $$ = Q_LINK; }
288 | IP { $$ = Q_IP; }
289 | ARP { $$ = Q_ARP; }
290 | RARP { $$ = Q_RARP; }
291 | SCTP { $$ = Q_SCTP; }
292 | TCP { $$ = Q_TCP; }
293 | UDP { $$ = Q_UDP; }
294 | ICMP { $$ = Q_ICMP; }
295 | IGMP { $$ = Q_IGMP; }
296 | IGRP { $$ = Q_IGRP; }
297 | PIM { $$ = Q_PIM; }
298 | VRRP { $$ = Q_VRRP; }
299 | ATALK { $$ = Q_ATALK; }
300 | AARP { $$ = Q_AARP; }
301 | DECNET { $$ = Q_DECNET; }
302 | LAT { $$ = Q_LAT; }
303 | SCA { $$ = Q_SCA; }
304 | MOPDL { $$ = Q_MOPDL; }
305 | MOPRC { $$ = Q_MOPRC; }
306 | IPV6 { $$ = Q_IPV6; }
307 | ICMPV6 { $$ = Q_ICMPV6; }
308 | AH { $$ = Q_AH; }
309 | ESP { $$ = Q_ESP; }
310 | ISO { $$ = Q_ISO; }
311 | ESIS { $$ = Q_ESIS; }
312 | ISIS { $$ = Q_ISIS; }
313 | L1 { $$ = Q_ISIS_L1; }
314 | L2 { $$ = Q_ISIS_L2; }
315 | IIH { $$ = Q_ISIS_IIH; }
316 | LSP { $$ = Q_ISIS_LSP; }
317 | SNP { $$ = Q_ISIS_SNP; }
318 | PSNP { $$ = Q_ISIS_PSNP; }
319 | CSNP { $$ = Q_ISIS_CSNP; }
320 | CLNP { $$ = Q_CLNP; }
321 | STP { $$ = Q_STP; }
322 | IPX { $$ = Q_IPX; }
323 | NETBEUI { $$ = Q_NETBEUI; }
324 | RADIO { $$ = Q_RADIO; }
326 other: pqual TK_BROADCAST { $$ = gen_broadcast($1); }
327 | pqual TK_MULTICAST { $$ = gen_multicast($1); }
328 | LESS NUM { $$ = gen_less($2); }
329 | GREATER NUM { $$ = gen_greater($2); }
330 | CBYTE NUM byteop NUM { $$ = gen_byteop($3, $2, $4); }
331 | INBOUND { $$ = gen_inbound(0); }
332 | OUTBOUND { $$ = gen_inbound(1); }
333 | VLAN pnum { $$ = gen_vlan($2); }
334 | VLAN { $$ = gen_vlan(-1); }
335 | MPLS pnum { $$ = gen_mpls($2); }
336 | MPLS { $$ = gen_mpls(-1); }
337 | PPPOED { $$ = gen_pppoed(); }
338 | PPPOES { $$ = gen_pppoes(); }
339 | pfvar { $$ = $1; }
342 pfvar: PF_IFNAME ID { $$ = gen_pf_ifname($2); }
343 | PF_RSET ID { $$ = gen_pf_ruleset($2); }
344 | PF_RNR NUM { $$ = gen_pf_rnr($2); }
345 | PF_SRNR NUM { $$ = gen_pf_srnr($2); }
346 | PF_REASON reason { $$ = gen_pf_reason($2); }
347 | PF_ACTION action { $$ = gen_pf_action($2); }
350 reason: NUM { $$ = $1; }
351 | ID { const char *reasons[] = PFRES_NAMES;
352 int i;
353 for (i = 0; reasons[i]; i++) {
354 if (pcap_strcasecmp($1, reasons[i]) == 0) {
355 $$ = i;
356 break;
359 if (reasons[i] == NULL)
360 bpf_error("unknown PF reason");
364 action: ID { if (pcap_strcasecmp($1, "pass") == 0 ||
365 pcap_strcasecmp($1, "accept") == 0)
366 $$ = PF_PASS;
367 else if (pcap_strcasecmp($1, "drop") == 0 ||
368 pcap_strcasecmp($1, "block") == 0)
369 $$ = PF_DROP;
370 else
371 bpf_error("unknown PF action");
375 relop: '>' { $$ = BPF_JGT; }
376 | GEQ { $$ = BPF_JGE; }
377 | '=' { $$ = BPF_JEQ; }
379 irelop: LEQ { $$ = BPF_JGT; }
380 | '<' { $$ = BPF_JGE; }
381 | NEQ { $$ = BPF_JEQ; }
383 arth: pnum { $$ = gen_loadi($1); }
384 | narth
386 narth: pname '[' arth ']' { $$ = gen_load($1, $3, 1); }
387 | pname '[' arth ':' NUM ']' { $$ = gen_load($1, $3, $5); }
388 | arth '+' arth { $$ = gen_arth(BPF_ADD, $1, $3); }
389 | arth '-' arth { $$ = gen_arth(BPF_SUB, $1, $3); }
390 | arth '*' arth { $$ = gen_arth(BPF_MUL, $1, $3); }
391 | arth '/' arth { $$ = gen_arth(BPF_DIV, $1, $3); }
392 | arth '&' arth { $$ = gen_arth(BPF_AND, $1, $3); }
393 | arth '|' arth { $$ = gen_arth(BPF_OR, $1, $3); }
394 | arth LSH arth { $$ = gen_arth(BPF_LSH, $1, $3); }
395 | arth RSH arth { $$ = gen_arth(BPF_RSH, $1, $3); }
396 | '-' arth %prec UMINUS { $$ = gen_neg($2); }
397 | paren narth ')' { $$ = $2; }
398 | LEN { $$ = gen_loadlen(); }
400 byteop: '&' { $$ = '&'; }
401 | '|' { $$ = '|'; }
402 | '<' { $$ = '<'; }
403 | '>' { $$ = '>'; }
404 | '=' { $$ = '='; }
406 pnum: NUM
407 | paren pnum ')' { $$ = $2; }
409 atmtype: LANE { $$ = A_LANE; }
410 | LLC { $$ = A_LLC; }
411 | METAC { $$ = A_METAC; }
412 | BCC { $$ = A_BCC; }
413 | OAMF4EC { $$ = A_OAMF4EC; }
414 | OAMF4SC { $$ = A_OAMF4SC; }
415 | SC { $$ = A_SC; }
416 | ILMIC { $$ = A_ILMIC; }
418 atmmultitype: OAM { $$ = A_OAM; }
419 | OAMF4 { $$ = A_OAMF4; }
420 | CONNECTMSG { $$ = A_CONNECTMSG; }
421 | METACONNECT { $$ = A_METACONNECT; }
423 /* ATM field types quantifier */
424 atmfield: VPI { $$.atmfieldtype = A_VPI; }
425 | VCI { $$.atmfieldtype = A_VCI; }
427 atmvalue: atmfieldvalue
428 | relop NUM { $$.b = gen_atmfield_code($<blk>0.atmfieldtype, (bpf_int32)$2, (bpf_u_int32)$1, 0); }
429 | irelop NUM { $$.b = gen_atmfield_code($<blk>0.atmfieldtype, (bpf_int32)$2, (bpf_u_int32)$1, 1); }
430 | paren atmlistvalue ')' { $$.b = $2.b; $$.q = qerr; }
432 atmfieldvalue: NUM {
433 $$.atmfieldtype = $<blk>0.atmfieldtype;
434 if ($$.atmfieldtype == A_VPI ||
435 $$.atmfieldtype == A_VCI)
436 $$.b = gen_atmfield_code($$.atmfieldtype, (bpf_int32) $1, BPF_JEQ, 0);
439 atmlistvalue: atmfieldvalue
440 | atmlistvalue or atmfieldvalue { gen_or($1.b, $3.b); $$ = $3; }
442 /* MTP3 field types quantifier */
443 mtp3field: SIO { $$.mtp3fieldtype = M_SIO; }
444 | OPC { $$.mtp3fieldtype = M_OPC; }
445 | DPC { $$.mtp3fieldtype = M_DPC; }
446 | SLS { $$.mtp3fieldtype = M_SLS; }
448 mtp3value: mtp3fieldvalue
449 | relop NUM { $$.b = gen_mtp3field_code($<blk>0.mtp3fieldtype, (u_int)$2, (u_int)$1, 0); }
450 | irelop NUM { $$.b = gen_mtp3field_code($<blk>0.mtp3fieldtype, (u_int)$2, (u_int)$1, 1); }
451 | paren mtp3listvalue ')' { $$.b = $2.b; $$.q = qerr; }
453 mtp3fieldvalue: NUM {
454 $$.mtp3fieldtype = $<blk>0.mtp3fieldtype;
455 if ($$.mtp3fieldtype == M_SIO ||
456 $$.mtp3fieldtype == M_OPC ||
457 $$.mtp3fieldtype == M_DPC ||
458 $$.mtp3fieldtype == M_SLS )
459 $$.b = gen_mtp3field_code($$.mtp3fieldtype, (u_int) $1, BPF_JEQ, 0);
462 mtp3listvalue: mtp3fieldvalue
463 | mtp3listvalue or mtp3fieldvalue { gen_or($1.b, $3.b); $$ = $3; }