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[] =
25 "@(#) $Header: /tcpdump/master/libpcap/grammar.y,v 1.59 2000-07-11 00:37:08 assar Exp $ (LBL)";
32 #include <sys/types.h>
34 #include <sys/socket.h>
44 #include <netinet/in.h>
45 #include <netinet/if_ether.h>
52 #include <pcap-namedb.h>
54 #ifdef HAVE_OS_PROTO_H
58 #define QSET(q, p, d, a) (q).proto = (p),\
64 static struct qual qerr = { Q_UNDEF, Q_UNDEF, Q_UNDEF, Q_UNDEF };
100 %type <blk> expr id nid pid term rterm qid
102 %type <i> pqual dqual aqual ndaqual
104 %type <i> byteop pname pnum relop irelop
105 %type <blk> and or paren not null prog
108 %token DST SRC HOST GATEWAY
109 %token NET MASK PORT LESS GREATER PROTO PROTOCHAIN BYTE
110 %token ARP RARP IP TCP UDP ICMP IGMP IGRP PIM
111 %token ATALK DECNET LAT SCA MOPRC MOPDL
112 %token TK_BROADCAST TK_MULTICAST
113 %token NUM INBOUND OUTBOUND
116 %token ID EID HID HID6
119 %token IPV6 ICMPV6 AH ESP
141 null: /* null */ { $$.q = qerr; }
144 | expr and term { gen_and($1.b, $3.b); $$ = $3; }
145 | expr and id { gen_and($1.b, $3.b); $$ = $3; }
146 | expr or term { gen_or($1.b, $3.b); $$ = $3; }
147 | expr or id { gen_or($1.b, $3.b); $$ = $3; }
149 and: AND { $$ = $<blk>0; }
151 or: OR { $$ = $<blk>0; }
154 | pnum { $$.b = gen_ncode(NULL, (bpf_u_int32)$1,
156 | paren pid ')' { $$ = $2; }
158 nid: ID { $$.b = gen_scode($1, $$.q = $<blk>0.q); }
159 | HID '/' NUM { $$.b = gen_mcode($1, NULL, $3,
161 | HID MASK HID { $$.b = gen_mcode($1, $3, 0,
164 /* Decide how to parse HID based on proto */
166 switch ($$.q.proto) {
168 $$.b = gen_ncode($1, 0, $$.q);
171 $$.b = gen_ncode($1, 0, $$.q);
177 $$.b = gen_mcode6($1, NULL, $3,
180 bpf_error("'ip6addr/prefixlen' not supported "
181 "in this configuration");
186 $$.b = gen_mcode6($1, 0, 128,
189 bpf_error("'ip6addr' not supported "
190 "in this configuration");
193 | EID { $$.b = gen_ecode($1, $$.q = $<blk>0.q); }
194 | not id { gen_not($2.b); $$ = $2; }
196 not: '!' { $$ = $<blk>0; }
198 paren: '(' { $$ = $<blk>0; }
201 | qid and id { gen_and($1.b, $3.b); $$ = $3; }
202 | qid or id { gen_or($1.b, $3.b); $$ = $3; }
204 qid: pnum { $$.b = gen_ncode(NULL, (bpf_u_int32)$1,
209 | not term { gen_not($2.b); $$ = $2; }
211 head: pqual dqual aqual { QSET($$.q, $1, $2, $3); }
212 | pqual dqual { QSET($$.q, $1, $2, Q_DEFAULT); }
213 | pqual aqual { QSET($$.q, $1, Q_DEFAULT, $2); }
214 | pqual PROTO { QSET($$.q, $1, Q_DEFAULT, Q_PROTO); }
215 | pqual PROTOCHAIN { QSET($$.q, $1, Q_DEFAULT, Q_PROTOCHAIN); }
216 | pqual ndaqual { QSET($$.q, $1, Q_DEFAULT, $2); }
218 rterm: head id { $$ = $2; }
219 | paren expr ')' { $$.b = $2.b; $$.q = $1.q; }
220 | pname { $$.b = gen_proto_abbrev($1); $$.q = qerr; }
221 | arth relop arth { $$.b = gen_relation($2, $1, $3, 0);
223 | arth irelop arth { $$.b = gen_relation($2, $1, $3, 1);
225 | other { $$.b = $1; $$.q = qerr; }
227 /* protocol level qualifiers */
229 | { $$ = Q_DEFAULT; }
231 /* 'direction' qualifiers */
232 dqual: SRC { $$ = Q_SRC; }
233 | DST { $$ = Q_DST; }
234 | SRC OR DST { $$ = Q_OR; }
235 | DST OR SRC { $$ = Q_OR; }
236 | SRC AND DST { $$ = Q_AND; }
237 | DST AND SRC { $$ = Q_AND; }
239 /* address type qualifiers */
240 aqual: HOST { $$ = Q_HOST; }
241 | NET { $$ = Q_NET; }
242 | PORT { $$ = Q_PORT; }
244 /* non-directional address type qualifiers */
245 ndaqual: GATEWAY { $$ = Q_GATEWAY; }
247 pname: LINK { $$ = Q_LINK; }
249 | ARP { $$ = Q_ARP; }
250 | RARP { $$ = Q_RARP; }
251 | TCP { $$ = Q_TCP; }
252 | UDP { $$ = Q_UDP; }
253 | ICMP { $$ = Q_ICMP; }
254 | IGMP { $$ = Q_IGMP; }
255 | IGRP { $$ = Q_IGRP; }
256 | PIM { $$ = Q_PIM; }
257 | ATALK { $$ = Q_ATALK; }
258 | DECNET { $$ = Q_DECNET; }
259 | LAT { $$ = Q_LAT; }
260 | SCA { $$ = Q_SCA; }
261 | MOPDL { $$ = Q_MOPDL; }
262 | MOPRC { $$ = Q_MOPRC; }
263 | IPV6 { $$ = Q_IPV6; }
264 | ICMPV6 { $$ = Q_ICMPV6; }
266 | ESP { $$ = Q_ESP; }
268 other: pqual TK_BROADCAST { $$ = gen_broadcast($1); }
269 | pqual TK_MULTICAST { $$ = gen_multicast($1); }
270 | LESS NUM { $$ = gen_less($2); }
271 | GREATER NUM { $$ = gen_greater($2); }
272 | BYTE NUM byteop NUM { $$ = gen_byteop($3, $2, $4); }
273 | INBOUND { $$ = gen_inbound(0); }
274 | OUTBOUND { $$ = gen_inbound(1); }
276 relop: '>' { $$ = BPF_JGT; }
277 | GEQ { $$ = BPF_JGE; }
278 | '=' { $$ = BPF_JEQ; }
280 irelop: LEQ { $$ = BPF_JGT; }
281 | '<' { $$ = BPF_JGE; }
282 | NEQ { $$ = BPF_JEQ; }
284 arth: pnum { $$ = gen_loadi($1); }
287 narth: pname '[' arth ']' { $$ = gen_load($1, $3, 1); }
288 | pname '[' arth ':' NUM ']' { $$ = gen_load($1, $3, $5); }
289 | arth '+' arth { $$ = gen_arth(BPF_ADD, $1, $3); }
290 | arth '-' arth { $$ = gen_arth(BPF_SUB, $1, $3); }
291 | arth '*' arth { $$ = gen_arth(BPF_MUL, $1, $3); }
292 | arth '/' arth { $$ = gen_arth(BPF_DIV, $1, $3); }
293 | arth '&' arth { $$ = gen_arth(BPF_AND, $1, $3); }
294 | arth '|' arth { $$ = gen_arth(BPF_OR, $1, $3); }
295 | arth LSH arth { $$ = gen_arth(BPF_LSH, $1, $3); }
296 | arth RSH arth { $$ = gen_arth(BPF_RSH, $1, $3); }
297 | '-' arth %prec UMINUS { $$ = gen_neg($2); }
298 | paren narth ')' { $$ = $2; }
299 | LEN { $$ = gen_loadlen(); }
301 byteop: '&' { $$ = '&'; }
308 | paren pnum ')' { $$ = $2; }