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
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.
24 static const char rcsid[] _U_ =
25 "@(#) $Header: /tcpdump/master/libpcap/grammar.y,v 1.89 2005-05-02 21:13:09 guy Exp $ (LBL)";
33 #include <pcap-stdinc.h>
35 #include <sys/types.h>
36 #include <sys/socket.h>
47 #include <netinet/in.h>
56 #include <pcap-namedb.h>
58 #ifdef HAVE_OS_PROTO_H
62 #define QSET(q, p, d, a) (q).proto = (p),\
68 static struct qual qerr = { Q_UNDEF, Q_UNDEF, Q_UNDEF, Q_UNDEF };
105 %type <blk> expr id nid pid term rterm qid
107 %type <i> pqual dqual aqual ndaqual
109 %type <i> byteop pname pnum relop irelop
110 %type <blk> and or paren not null prog
111 %type <rblk> other pfvar
112 %type <i> atmtype atmmultitype
114 %type <blk> atmfieldvalue atmvalue atmlistvalue
116 %token DST SRC HOST GATEWAY
117 %token NET NETMASK PORT PORTRANGE LESS GREATER PROTO PROTOCHAIN CBYTE
118 %token ARP RARP IP SCTP TCP UDP ICMP IGMP IGRP PIM VRRP
119 %token ATALK AARP DECNET LAT SCA MOPRC MOPDL
120 %token TK_BROADCAST TK_MULTICAST
121 %token NUM INBOUND OUTBOUND
122 %token PF_IFNAME PF_RSET PF_RNR PF_SRNR PF_REASON PF_ACTION
125 %token ID EID HID HID6 AID
128 %token IPV6 ICMPV6 AH ESP
130 %token ISO ESIS CLNP ISIS L1 L2 IIH LSP SNP CSNP PSNP
134 %token LANE LLC METAC BCC SC ILMIC OAMF4EC OAMF4SC
135 %token OAM OAMF4 CONNECTMSG METACONNECT
143 %type <i> NUM action reason
160 null: /* null */ { $$.q = qerr; }
163 | expr and term { gen_and($1.b, $3.b); $$ = $3; }
164 | expr and id { gen_and($1.b, $3.b); $$ = $3; }
165 | expr or term { gen_or($1.b, $3.b); $$ = $3; }
166 | expr or id { gen_or($1.b, $3.b); $$ = $3; }
168 and: AND { $$ = $<blk>0; }
170 or: OR { $$ = $<blk>0; }
173 | pnum { $$.b = gen_ncode(NULL, (bpf_u_int32)$1,
175 | paren pid ')' { $$ = $2; }
177 nid: ID { $$.b = gen_scode($1, $$.q = $<blk>0.q); }
178 | HID '/' NUM { $$.b = gen_mcode($1, NULL, $3,
180 | HID NETMASK HID { $$.b = gen_mcode($1, $3, 0,
183 /* Decide how to parse HID based on proto */
185 $$.b = gen_ncode($1, 0, $$.q);
189 $$.b = gen_mcode6($1, NULL, $3,
192 bpf_error("'ip6addr/prefixlen' not supported "
193 "in this configuration");
198 $$.b = gen_mcode6($1, 0, 128,
201 bpf_error("'ip6addr' not supported "
202 "in this configuration");
206 $$.b = gen_ecode($1, $$.q = $<blk>0.q);
208 * $1 was allocated by "pcap_ether_aton()",
209 * so we must free it now that we're done
215 $$.b = gen_acode($1, $$.q = $<blk>0.q);
217 * $1 was allocated by "pcap_ether_aton()",
218 * so we must free it now that we're done
223 | not id { gen_not($2.b); $$ = $2; }
225 not: '!' { $$ = $<blk>0; }
227 paren: '(' { $$ = $<blk>0; }
230 | qid and id { gen_and($1.b, $3.b); $$ = $3; }
231 | qid or id { gen_or($1.b, $3.b); $$ = $3; }
233 qid: pnum { $$.b = gen_ncode(NULL, (bpf_u_int32)$1,
238 | not term { gen_not($2.b); $$ = $2; }
240 head: pqual dqual aqual { QSET($$.q, $1, $2, $3); }
241 | pqual dqual { QSET($$.q, $1, $2, Q_DEFAULT); }
242 | pqual aqual { QSET($$.q, $1, Q_DEFAULT, $2); }
243 | pqual PROTO { QSET($$.q, $1, Q_DEFAULT, Q_PROTO); }
244 | pqual PROTOCHAIN { QSET($$.q, $1, Q_DEFAULT, Q_PROTOCHAIN); }
245 | pqual ndaqual { QSET($$.q, $1, Q_DEFAULT, $2); }
247 rterm: head id { $$ = $2; }
248 | paren expr ')' { $$.b = $2.b; $$.q = $1.q; }
249 | pname { $$.b = gen_proto_abbrev($1); $$.q = qerr; }
250 | arth relop arth { $$.b = gen_relation($2, $1, $3, 0);
252 | arth irelop arth { $$.b = gen_relation($2, $1, $3, 1);
254 | other { $$.b = $1; $$.q = qerr; }
255 | atmtype { $$.b = gen_atmtype_abbrev($1); $$.q = qerr; }
256 | atmmultitype { $$.b = gen_atmmulti_abbrev($1); $$.q = qerr; }
257 | atmfield atmvalue { $$.b = $2.b; $$.q = qerr; }
259 /* protocol level qualifiers */
261 | { $$ = Q_DEFAULT; }
263 /* 'direction' qualifiers */
264 dqual: SRC { $$ = Q_SRC; }
265 | DST { $$ = Q_DST; }
266 | SRC OR DST { $$ = Q_OR; }
267 | DST OR SRC { $$ = Q_OR; }
268 | SRC AND DST { $$ = Q_AND; }
269 | DST AND SRC { $$ = Q_AND; }
271 /* address type qualifiers */
272 aqual: HOST { $$ = Q_HOST; }
273 | NET { $$ = Q_NET; }
274 | PORT { $$ = Q_PORT; }
275 | PORTRANGE { $$ = Q_PORTRANGE; }
277 /* non-directional address type qualifiers */
278 ndaqual: GATEWAY { $$ = Q_GATEWAY; }
280 pname: LINK { $$ = Q_LINK; }
282 | ARP { $$ = Q_ARP; }
283 | RARP { $$ = Q_RARP; }
284 | SCTP { $$ = Q_SCTP; }
285 | TCP { $$ = Q_TCP; }
286 | UDP { $$ = Q_UDP; }
287 | ICMP { $$ = Q_ICMP; }
288 | IGMP { $$ = Q_IGMP; }
289 | IGRP { $$ = Q_IGRP; }
290 | PIM { $$ = Q_PIM; }
291 | VRRP { $$ = Q_VRRP; }
292 | ATALK { $$ = Q_ATALK; }
293 | AARP { $$ = Q_AARP; }
294 | DECNET { $$ = Q_DECNET; }
295 | LAT { $$ = Q_LAT; }
296 | SCA { $$ = Q_SCA; }
297 | MOPDL { $$ = Q_MOPDL; }
298 | MOPRC { $$ = Q_MOPRC; }
299 | IPV6 { $$ = Q_IPV6; }
300 | ICMPV6 { $$ = Q_ICMPV6; }
302 | ESP { $$ = Q_ESP; }
303 | ISO { $$ = Q_ISO; }
304 | ESIS { $$ = Q_ESIS; }
305 | ISIS { $$ = Q_ISIS; }
306 | L1 { $$ = Q_ISIS_L1; }
307 | L2 { $$ = Q_ISIS_L2; }
308 | IIH { $$ = Q_ISIS_IIH; }
309 | LSP { $$ = Q_ISIS_LSP; }
310 | SNP { $$ = Q_ISIS_SNP; }
311 | PSNP { $$ = Q_ISIS_PSNP; }
312 | CSNP { $$ = Q_ISIS_CSNP; }
313 | CLNP { $$ = Q_CLNP; }
314 | STP { $$ = Q_STP; }
315 | IPX { $$ = Q_IPX; }
316 | NETBEUI { $$ = Q_NETBEUI; }
317 | RADIO { $$ = Q_RADIO; }
319 other: pqual TK_BROADCAST { $$ = gen_broadcast($1); }
320 | pqual TK_MULTICAST { $$ = gen_multicast($1); }
321 | LESS NUM { $$ = gen_less($2); }
322 | GREATER NUM { $$ = gen_greater($2); }
323 | CBYTE NUM byteop NUM { $$ = gen_byteop($3, $2, $4); }
324 | INBOUND { $$ = gen_inbound(0); }
325 | OUTBOUND { $$ = gen_inbound(1); }
326 | VLAN pnum { $$ = gen_vlan($2); }
327 | VLAN { $$ = gen_vlan(-1); }
328 | MPLS pnum { $$ = gen_mpls($2); }
329 | MPLS { $$ = gen_mpls(-1); }
333 pfvar: PF_IFNAME ID { $$ = gen_pf_ifname($2); }
334 | PF_RSET ID { $$ = gen_pf_ruleset($2); }
335 | PF_RNR NUM { $$ = gen_pf_rnr($2); }
336 | PF_SRNR NUM { $$ = gen_pf_srnr($2); }
337 | PF_REASON reason { $$ = gen_pf_reason($2); }
338 | PF_ACTION action { $$ = gen_pf_action($2); }
341 reason: NUM { $$ = $1; }
342 | ID { const char *reasons[] = PFRES_NAMES;
344 for (i = 0; reasons[i]; i++) {
345 if (pcap_strcasecmp($1, reasons[i]) == 0) {
350 if (reasons[i] == NULL)
351 bpf_error("unknown PF reason");
355 action: ID { if (pcap_strcasecmp($1, "pass") == 0 ||
356 pcap_strcasecmp($1, "accept") == 0)
358 else if (pcap_strcasecmp($1, "drop") == 0 ||
359 pcap_strcasecmp($1, "block") == 0)
362 bpf_error("unknown PF action");
366 relop: '>' { $$ = BPF_JGT; }
367 | GEQ { $$ = BPF_JGE; }
368 | '=' { $$ = BPF_JEQ; }
370 irelop: LEQ { $$ = BPF_JGT; }
371 | '<' { $$ = BPF_JGE; }
372 | NEQ { $$ = BPF_JEQ; }
374 arth: pnum { $$ = gen_loadi($1); }
377 narth: pname '[' arth ']' { $$ = gen_load($1, $3, 1); }
378 | pname '[' arth ':' NUM ']' { $$ = gen_load($1, $3, $5); }
379 | arth '+' arth { $$ = gen_arth(BPF_ADD, $1, $3); }
380 | arth '-' arth { $$ = gen_arth(BPF_SUB, $1, $3); }
381 | arth '*' arth { $$ = gen_arth(BPF_MUL, $1, $3); }
382 | arth '/' arth { $$ = gen_arth(BPF_DIV, $1, $3); }
383 | arth '&' arth { $$ = gen_arth(BPF_AND, $1, $3); }
384 | arth '|' arth { $$ = gen_arth(BPF_OR, $1, $3); }
385 | arth LSH arth { $$ = gen_arth(BPF_LSH, $1, $3); }
386 | arth RSH arth { $$ = gen_arth(BPF_RSH, $1, $3); }
387 | '-' arth %prec UMINUS { $$ = gen_neg($2); }
388 | paren narth ')' { $$ = $2; }
389 | LEN { $$ = gen_loadlen(); }
391 byteop: '&' { $$ = '&'; }
398 | paren pnum ')' { $$ = $2; }
400 atmtype: LANE { $$ = A_LANE; }
401 | LLC { $$ = A_LLC; }
402 | METAC { $$ = A_METAC; }
403 | BCC { $$ = A_BCC; }
404 | OAMF4EC { $$ = A_OAMF4EC; }
405 | OAMF4SC { $$ = A_OAMF4SC; }
407 | ILMIC { $$ = A_ILMIC; }
409 atmmultitype: OAM { $$ = A_OAM; }
410 | OAMF4 { $$ = A_OAMF4; }
411 | CONNECTMSG { $$ = A_CONNECTMSG; }
412 | METACONNECT { $$ = A_METACONNECT; }
414 /* ATM field types quantifier */
415 atmfield: VPI { $$.atmfieldtype = A_VPI; }
416 | VCI { $$.atmfieldtype = A_VCI; }
418 atmvalue: atmfieldvalue
419 | relop NUM { $$.b = gen_atmfield_code($<blk>0.atmfieldtype, (bpf_int32)$2, (bpf_u_int32)$1, 0); }
420 | irelop NUM { $$.b = gen_atmfield_code($<blk>0.atmfieldtype, (bpf_int32)$2, (bpf_u_int32)$1, 1); }
421 | paren atmlistvalue ')' { $$.b = $2.b; $$.q = qerr; }
424 $$.atmfieldtype = $<blk>0.atmfieldtype;
425 if ($$.atmfieldtype == A_VPI ||
426 $$.atmfieldtype == A_VCI)
427 $$.b = gen_atmfield_code($$.atmfieldtype, (bpf_int32) $1, BPF_JEQ, 0);
430 atmlistvalue: atmfieldvalue
431 | atmlistvalue or atmfieldvalue { gen_or($1.b, $3.b); $$ = $3; }