xref: /freebsd/sbin/pfctl/parse.y (revision 8522d140a568be6044aad4288042c72e8d3b72a7)
1 /*	$OpenBSD: parse.y,v 1.554 2008/10/17 12:59:53 henning Exp $	*/
2 
3 /*-
4  * SPDX-License-Identifier: BSD-2-Clause
5  *
6  * Copyright (c) 2001 Markus Friedl.  All rights reserved.
7  * Copyright (c) 2001 Daniel Hartmeier.  All rights reserved.
8  * Copyright (c) 2001 Theo de Raadt.  All rights reserved.
9  * Copyright (c) 2002,2003 Henning Brauer. All rights reserved.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer.
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in the
18  *    documentation and/or other materials provided with the distribution.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
22  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
23  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
24  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
25  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
29  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30  */
31 %{
32 #include <sys/cdefs.h>
33 __FBSDID("$FreeBSD$");
34 
35 #define PFIOC_USE_LATEST
36 
37 #include <sys/types.h>
38 #include <sys/socket.h>
39 #include <sys/stat.h>
40 #ifdef __FreeBSD__
41 #include <sys/sysctl.h>
42 #endif
43 #include <net/if.h>
44 #include <netinet/in.h>
45 #include <netinet/in_systm.h>
46 #include <netinet/ip.h>
47 #include <netinet/ip_icmp.h>
48 #include <netinet/icmp6.h>
49 #include <net/pfvar.h>
50 #include <arpa/inet.h>
51 #include <net/altq/altq.h>
52 #include <net/altq/altq_cbq.h>
53 #include <net/altq/altq_codel.h>
54 #include <net/altq/altq_priq.h>
55 #include <net/altq/altq_hfsc.h>
56 #include <net/altq/altq_fairq.h>
57 
58 #include <stdio.h>
59 #include <unistd.h>
60 #include <stdlib.h>
61 #include <netdb.h>
62 #include <stdarg.h>
63 #include <errno.h>
64 #include <string.h>
65 #include <ctype.h>
66 #include <math.h>
67 #include <err.h>
68 #include <limits.h>
69 #include <pwd.h>
70 #include <grp.h>
71 #include <md5.h>
72 
73 #include "pfctl_parser.h"
74 #include "pfctl.h"
75 
76 static struct pfctl	*pf = NULL;
77 static int		 debug = 0;
78 static int		 rulestate = 0;
79 static u_int16_t	 returnicmpdefault =
80 			    (ICMP_UNREACH << 8) | ICMP_UNREACH_PORT;
81 static u_int16_t	 returnicmp6default =
82 			    (ICMP6_DST_UNREACH << 8) | ICMP6_DST_UNREACH_NOPORT;
83 static int		 blockpolicy = PFRULE_DROP;
84 static int		 failpolicy = PFRULE_DROP;
85 static int		 require_order = 1;
86 static int		 default_statelock;
87 
88 static TAILQ_HEAD(files, file)	 files = TAILQ_HEAD_INITIALIZER(files);
89 static struct file {
90 	TAILQ_ENTRY(file)	 entry;
91 	FILE			*stream;
92 	char			*name;
93 	int			 lineno;
94 	int			 errors;
95 } *file;
96 struct file	*pushfile(const char *, int);
97 int		 popfile(void);
98 int		 check_file_secrecy(int, const char *);
99 int		 yyparse(void);
100 int		 yylex(void);
101 int		 yyerror(const char *, ...);
102 int		 kw_cmp(const void *, const void *);
103 int		 lookup(char *);
104 int		 lgetc(int);
105 int		 lungetc(int);
106 int		 findeol(void);
107 
108 static TAILQ_HEAD(symhead, sym)	 symhead = TAILQ_HEAD_INITIALIZER(symhead);
109 struct sym {
110 	TAILQ_ENTRY(sym)	 entry;
111 	int			 used;
112 	int			 persist;
113 	char			*nam;
114 	char			*val;
115 };
116 int		 symset(const char *, const char *, int);
117 char		*symget(const char *);
118 
119 int		 atoul(char *, u_long *);
120 
121 enum {
122 	PFCTL_STATE_NONE,
123 	PFCTL_STATE_OPTION,
124 	PFCTL_STATE_SCRUB,
125 	PFCTL_STATE_QUEUE,
126 	PFCTL_STATE_NAT,
127 	PFCTL_STATE_FILTER
128 };
129 
130 struct node_proto {
131 	u_int8_t		 proto;
132 	struct node_proto	*next;
133 	struct node_proto	*tail;
134 };
135 
136 struct node_port {
137 	u_int16_t		 port[2];
138 	u_int8_t		 op;
139 	struct node_port	*next;
140 	struct node_port	*tail;
141 };
142 
143 struct node_uid {
144 	uid_t			 uid[2];
145 	u_int8_t		 op;
146 	struct node_uid		*next;
147 	struct node_uid		*tail;
148 };
149 
150 struct node_gid {
151 	gid_t			 gid[2];
152 	u_int8_t		 op;
153 	struct node_gid		*next;
154 	struct node_gid		*tail;
155 };
156 
157 struct node_icmp {
158 	u_int8_t		 code;
159 	u_int8_t		 type;
160 	u_int8_t		 proto;
161 	struct node_icmp	*next;
162 	struct node_icmp	*tail;
163 };
164 
165 enum	{ PF_STATE_OPT_MAX, PF_STATE_OPT_NOSYNC, PF_STATE_OPT_SRCTRACK,
166 	    PF_STATE_OPT_MAX_SRC_STATES, PF_STATE_OPT_MAX_SRC_CONN,
167 	    PF_STATE_OPT_MAX_SRC_CONN_RATE, PF_STATE_OPT_MAX_SRC_NODES,
168 	    PF_STATE_OPT_OVERLOAD, PF_STATE_OPT_STATELOCK,
169 	    PF_STATE_OPT_TIMEOUT, PF_STATE_OPT_SLOPPY, };
170 
171 enum	{ PF_SRCTRACK_NONE, PF_SRCTRACK, PF_SRCTRACK_GLOBAL, PF_SRCTRACK_RULE };
172 
173 struct node_state_opt {
174 	int			 type;
175 	union {
176 		u_int32_t	 max_states;
177 		u_int32_t	 max_src_states;
178 		u_int32_t	 max_src_conn;
179 		struct {
180 			u_int32_t	limit;
181 			u_int32_t	seconds;
182 		}		 max_src_conn_rate;
183 		struct {
184 			u_int8_t	flush;
185 			char		tblname[PF_TABLE_NAME_SIZE];
186 		}		 overload;
187 		u_int32_t	 max_src_nodes;
188 		u_int8_t	 src_track;
189 		u_int32_t	 statelock;
190 		struct {
191 			int		number;
192 			u_int32_t	seconds;
193 		}		 timeout;
194 	}			 data;
195 	struct node_state_opt	*next;
196 	struct node_state_opt	*tail;
197 };
198 
199 struct peer {
200 	struct node_host	*host;
201 	struct node_port	*port;
202 };
203 
204 static struct node_queue {
205 	char			 queue[PF_QNAME_SIZE];
206 	char			 parent[PF_QNAME_SIZE];
207 	char			 ifname[IFNAMSIZ];
208 	int			 scheduler;
209 	struct node_queue	*next;
210 	struct node_queue	*tail;
211 }	*queues = NULL;
212 
213 struct node_qassign {
214 	char		*qname;
215 	char		*pqname;
216 };
217 
218 static struct filter_opts {
219 	int			 marker;
220 #define FOM_FLAGS	0x01
221 #define FOM_ICMP	0x02
222 #define FOM_TOS		0x04
223 #define FOM_KEEP	0x08
224 #define FOM_SRCTRACK	0x10
225 #define FOM_SETPRIO	0x0400
226 #define FOM_PRIO	0x2000
227 	struct node_uid		*uid;
228 	struct node_gid		*gid;
229 	struct {
230 		u_int8_t	 b1;
231 		u_int8_t	 b2;
232 		u_int16_t	 w;
233 		u_int16_t	 w2;
234 	} flags;
235 	struct node_icmp	*icmpspec;
236 	u_int32_t		 tos;
237 	u_int32_t		 prob;
238 	struct {
239 		int			 action;
240 		struct node_state_opt	*options;
241 	} keep;
242 	int			 fragment;
243 	int			 allowopts;
244 	char			*label;
245 	struct node_qassign	 queues;
246 	char			*tag;
247 	char			*match_tag;
248 	u_int8_t		 match_tag_not;
249 	u_int			 rtableid;
250 	u_int8_t		 prio;
251 	u_int8_t		 set_prio[2];
252 	struct {
253 		struct node_host	*addr;
254 		u_int16_t		port;
255 	}			 divert;
256 } filter_opts;
257 
258 static struct antispoof_opts {
259 	char			*label;
260 	u_int			 rtableid;
261 } antispoof_opts;
262 
263 static struct scrub_opts {
264 	int			 marker;
265 #define SOM_MINTTL	0x01
266 #define SOM_MAXMSS	0x02
267 #define SOM_FRAGCACHE	0x04
268 #define SOM_SETTOS	0x08
269 	int			 nodf;
270 	int			 minttl;
271 	int			 maxmss;
272 	int			 settos;
273 	int			 fragcache;
274 	int			 randomid;
275 	int			 reassemble_tcp;
276 	char			*match_tag;
277 	u_int8_t		 match_tag_not;
278 	u_int			 rtableid;
279 } scrub_opts;
280 
281 static struct queue_opts {
282 	int			marker;
283 #define QOM_BWSPEC	0x01
284 #define QOM_SCHEDULER	0x02
285 #define QOM_PRIORITY	0x04
286 #define QOM_TBRSIZE	0x08
287 #define QOM_QLIMIT	0x10
288 	struct node_queue_bw	queue_bwspec;
289 	struct node_queue_opt	scheduler;
290 	int			priority;
291 	unsigned int		tbrsize;
292 	int			qlimit;
293 } queue_opts;
294 
295 static struct table_opts {
296 	int			flags;
297 	int			init_addr;
298 	struct node_tinithead	init_nodes;
299 } table_opts;
300 
301 static struct pool_opts {
302 	int			 marker;
303 #define POM_TYPE		0x01
304 #define POM_STICKYADDRESS	0x02
305 	u_int8_t		 opts;
306 	int			 type;
307 	int			 staticport;
308 	struct pf_poolhashkey	*key;
309 
310 } pool_opts;
311 
312 static struct codel_opts	 codel_opts;
313 static struct node_hfsc_opts	 hfsc_opts;
314 static struct node_fairq_opts	 fairq_opts;
315 static struct node_state_opt	*keep_state_defaults = NULL;
316 
317 int		 disallow_table(struct node_host *, const char *);
318 int		 disallow_urpf_failed(struct node_host *, const char *);
319 int		 disallow_alias(struct node_host *, const char *);
320 int		 rule_consistent(struct pf_rule *, int);
321 int		 filter_consistent(struct pf_rule *, int);
322 int		 nat_consistent(struct pf_rule *);
323 int		 rdr_consistent(struct pf_rule *);
324 int		 process_tabledef(char *, struct table_opts *);
325 void		 expand_label_str(char *, size_t, const char *, const char *);
326 void		 expand_label_if(const char *, char *, size_t, const char *);
327 void		 expand_label_addr(const char *, char *, size_t, u_int8_t,
328 		    struct node_host *);
329 void		 expand_label_port(const char *, char *, size_t,
330 		    struct node_port *);
331 void		 expand_label_proto(const char *, char *, size_t, u_int8_t);
332 void		 expand_label_nr(const char *, char *, size_t);
333 void		 expand_label(char *, size_t, const char *, u_int8_t,
334 		    struct node_host *, struct node_port *, struct node_host *,
335 		    struct node_port *, u_int8_t);
336 void		 expand_rule(struct pf_rule *, struct node_if *,
337 		    struct node_host *, struct node_proto *, struct node_os *,
338 		    struct node_host *, struct node_port *, struct node_host *,
339 		    struct node_port *, struct node_uid *, struct node_gid *,
340 		    struct node_icmp *, const char *);
341 int		 expand_altq(struct pf_altq *, struct node_if *,
342 		    struct node_queue *, struct node_queue_bw bwspec,
343 		    struct node_queue_opt *);
344 int		 expand_queue(struct pf_altq *, struct node_if *,
345 		    struct node_queue *, struct node_queue_bw,
346 		    struct node_queue_opt *);
347 int		 expand_skip_interface(struct node_if *);
348 
349 int	 check_rulestate(int);
350 int	 getservice(char *);
351 int	 rule_label(struct pf_rule *, char *);
352 int	 rt_tableid_max(void);
353 
354 void	 mv_rules(struct pf_ruleset *, struct pf_ruleset *);
355 void	 decide_address_family(struct node_host *, sa_family_t *);
356 void	 remove_invalid_hosts(struct node_host **, sa_family_t *);
357 int	 invalid_redirect(struct node_host *, sa_family_t);
358 u_int16_t parseicmpspec(char *, sa_family_t);
359 int	 kw_casecmp(const void *, const void *);
360 int	 map_tos(char *string, int *);
361 
362 static TAILQ_HEAD(loadanchorshead, loadanchors)
363     loadanchorshead = TAILQ_HEAD_INITIALIZER(loadanchorshead);
364 
365 struct loadanchors {
366 	TAILQ_ENTRY(loadanchors)	 entries;
367 	char				*anchorname;
368 	char				*filename;
369 };
370 
371 typedef struct {
372 	union {
373 		int64_t			 number;
374 		double			 probability;
375 		int			 i;
376 		char			*string;
377 		u_int			 rtableid;
378 		struct {
379 			u_int8_t	 b1;
380 			u_int8_t	 b2;
381 			u_int16_t	 w;
382 			u_int16_t	 w2;
383 		}			 b;
384 		struct range {
385 			int		 a;
386 			int		 b;
387 			int		 t;
388 		}			 range;
389 		struct node_if		*interface;
390 		struct node_proto	*proto;
391 		struct node_icmp	*icmp;
392 		struct node_host	*host;
393 		struct node_os		*os;
394 		struct node_port	*port;
395 		struct node_uid		*uid;
396 		struct node_gid		*gid;
397 		struct node_state_opt	*state_opt;
398 		struct peer		 peer;
399 		struct {
400 			struct peer	 src, dst;
401 			struct node_os	*src_os;
402 		}			 fromto;
403 		struct {
404 			struct node_host	*host;
405 			u_int8_t		 rt;
406 			u_int8_t		 pool_opts;
407 			sa_family_t		 af;
408 			struct pf_poolhashkey	*key;
409 		}			 route;
410 		struct redirection {
411 			struct node_host	*host;
412 			struct range		 rport;
413 		}			*redirection;
414 		struct {
415 			int			 action;
416 			struct node_state_opt	*options;
417 		}			 keep_state;
418 		struct {
419 			u_int8_t	 log;
420 			u_int8_t	 logif;
421 			u_int8_t	 quick;
422 		}			 logquick;
423 		struct {
424 			int		 neg;
425 			char		*name;
426 		}			 tagged;
427 		struct pf_poolhashkey	*hashkey;
428 		struct node_queue	*queue;
429 		struct node_queue_opt	 queue_options;
430 		struct node_queue_bw	 queue_bwspec;
431 		struct node_qassign	 qassign;
432 		struct filter_opts	 filter_opts;
433 		struct antispoof_opts	 antispoof_opts;
434 		struct queue_opts	 queue_opts;
435 		struct scrub_opts	 scrub_opts;
436 		struct table_opts	 table_opts;
437 		struct pool_opts	 pool_opts;
438 		struct node_hfsc_opts	 hfsc_opts;
439 		struct node_fairq_opts	 fairq_opts;
440 		struct codel_opts	 codel_opts;
441 	} v;
442 	int lineno;
443 } YYSTYPE;
444 
445 #define PPORT_RANGE	1
446 #define PPORT_STAR	2
447 int	parseport(char *, struct range *r, int);
448 
449 #define DYNIF_MULTIADDR(addr) ((addr).type == PF_ADDR_DYNIFTL && \
450 	(!((addr).iflags & PFI_AFLAG_NOALIAS) ||		 \
451 	!isdigit((addr).v.ifname[strlen((addr).v.ifname)-1])))
452 
453 %}
454 
455 %token	PASS BLOCK SCRUB RETURN IN OS OUT LOG QUICK ON FROM TO FLAGS
456 %token	RETURNRST RETURNICMP RETURNICMP6 PROTO INET INET6 ALL ANY ICMPTYPE
457 %token	ICMP6TYPE CODE KEEP MODULATE STATE PORT RDR NAT BINAT ARROW NODF
458 %token	MINTTL ERROR ALLOWOPTS FASTROUTE FILENAME ROUTETO DUPTO REPLYTO NO LABEL
459 %token	NOROUTE URPFFAILED FRAGMENT USER GROUP MAXMSS MAXIMUM TTL TOS DROP TABLE
460 %token	REASSEMBLE FRAGDROP FRAGCROP ANCHOR NATANCHOR RDRANCHOR BINATANCHOR
461 %token	SET OPTIMIZATION TIMEOUT LIMIT LOGINTERFACE BLOCKPOLICY FAILPOLICY
462 %token	RANDOMID REQUIREORDER SYNPROXY FINGERPRINTS NOSYNC DEBUG SKIP HOSTID
463 %token	ANTISPOOF FOR INCLUDE
464 %token	BITMASK RANDOM SOURCEHASH ROUNDROBIN STATICPORT PROBABILITY
465 %token	ALTQ CBQ CODEL PRIQ HFSC FAIRQ BANDWIDTH TBRSIZE LINKSHARE REALTIME
466 %token	UPPERLIMIT QUEUE PRIORITY QLIMIT HOGS BUCKETS RTABLE TARGET INTERVAL
467 %token	LOAD RULESET_OPTIMIZATION PRIO
468 %token	STICKYADDRESS MAXSRCSTATES MAXSRCNODES SOURCETRACK GLOBAL RULE
469 %token	MAXSRCCONN MAXSRCCONNRATE OVERLOAD FLUSH SLOPPY
470 %token	TAGGED TAG IFBOUND FLOATING STATEPOLICY STATEDEFAULTS ROUTE SETTOS
471 %token	DIVERTTO DIVERTREPLY
472 %token	<v.string>		STRING
473 %token	<v.number>		NUMBER
474 %token	<v.i>			PORTBINARY
475 %type	<v.interface>		interface if_list if_item_not if_item
476 %type	<v.number>		number icmptype icmp6type uid gid
477 %type	<v.number>		tos not yesno
478 %type	<v.probability>		probability
479 %type	<v.i>			no dir af fragcache optimizer
480 %type	<v.i>			sourcetrack flush unaryop statelock
481 %type	<v.b>			action nataction natpasslog scrubaction
482 %type	<v.b>			flags flag blockspec prio
483 %type	<v.range>		portplain portstar portrange
484 %type	<v.hashkey>		hashkey
485 %type	<v.proto>		proto proto_list proto_item
486 %type	<v.number>		protoval
487 %type	<v.icmp>		icmpspec
488 %type	<v.icmp>		icmp_list icmp_item
489 %type	<v.icmp>		icmp6_list icmp6_item
490 %type	<v.number>		reticmpspec reticmp6spec
491 %type	<v.fromto>		fromto
492 %type	<v.peer>		ipportspec from to
493 %type	<v.host>		ipspec toipspec xhost host dynaddr host_list
494 %type	<v.host>		redir_host_list redirspec
495 %type	<v.host>		route_host route_host_list routespec
496 %type	<v.os>			os xos os_list
497 %type	<v.port>		portspec port_list port_item
498 %type	<v.uid>			uids uid_list uid_item
499 %type	<v.gid>			gids gid_list gid_item
500 %type	<v.route>		route
501 %type	<v.redirection>		redirection redirpool
502 %type	<v.string>		label stringall tag anchorname
503 %type	<v.string>		string varstring numberstring
504 %type	<v.keep_state>		keep
505 %type	<v.state_opt>		state_opt_spec state_opt_list state_opt_item
506 %type	<v.logquick>		logquick quick log logopts logopt
507 %type	<v.interface>		antispoof_ifspc antispoof_iflst antispoof_if
508 %type	<v.qassign>		qname
509 %type	<v.queue>		qassign qassign_list qassign_item
510 %type	<v.queue_options>	scheduler
511 %type	<v.number>		cbqflags_list cbqflags_item
512 %type	<v.number>		priqflags_list priqflags_item
513 %type	<v.hfsc_opts>		hfscopts_list hfscopts_item hfsc_opts
514 %type	<v.fairq_opts>		fairqopts_list fairqopts_item fairq_opts
515 %type	<v.codel_opts>		codelopts_list codelopts_item codel_opts
516 %type	<v.queue_bwspec>	bandwidth
517 %type	<v.filter_opts>		filter_opts filter_opt filter_opts_l
518 %type	<v.filter_opts>		filter_sets filter_set filter_sets_l
519 %type	<v.antispoof_opts>	antispoof_opts antispoof_opt antispoof_opts_l
520 %type	<v.queue_opts>		queue_opts queue_opt queue_opts_l
521 %type	<v.scrub_opts>		scrub_opts scrub_opt scrub_opts_l
522 %type	<v.table_opts>		table_opts table_opt table_opts_l
523 %type	<v.pool_opts>		pool_opts pool_opt pool_opts_l
524 %type	<v.tagged>		tagged
525 %type	<v.rtableid>		rtable
526 %%
527 
528 ruleset		: /* empty */
529 		| ruleset include '\n'
530 		| ruleset '\n'
531 		| ruleset option '\n'
532 		| ruleset scrubrule '\n'
533 		| ruleset natrule '\n'
534 		| ruleset binatrule '\n'
535 		| ruleset pfrule '\n'
536 		| ruleset anchorrule '\n'
537 		| ruleset loadrule '\n'
538 		| ruleset altqif '\n'
539 		| ruleset queuespec '\n'
540 		| ruleset varset '\n'
541 		| ruleset antispoof '\n'
542 		| ruleset tabledef '\n'
543 		| '{' fakeanchor '}' '\n';
544 		| ruleset error '\n'		{ file->errors++; }
545 		;
546 
547 include		: INCLUDE STRING		{
548 			struct file	*nfile;
549 
550 			if ((nfile = pushfile($2, 0)) == NULL) {
551 				yyerror("failed to include file %s", $2);
552 				free($2);
553 				YYERROR;
554 			}
555 			free($2);
556 
557 			file = nfile;
558 			lungetc('\n');
559 		}
560 		;
561 
562 /*
563  * apply to previouslys specified rule: must be careful to note
564  * what that is: pf or nat or binat or rdr
565  */
566 fakeanchor	: fakeanchor '\n'
567 		| fakeanchor anchorrule '\n'
568 		| fakeanchor binatrule '\n'
569 		| fakeanchor natrule '\n'
570 		| fakeanchor pfrule '\n'
571 		| fakeanchor error '\n'
572 		;
573 
574 optimizer	: string	{
575 			if (!strcmp($1, "none"))
576 				$$ = 0;
577 			else if (!strcmp($1, "basic"))
578 				$$ = PF_OPTIMIZE_BASIC;
579 			else if (!strcmp($1, "profile"))
580 				$$ = PF_OPTIMIZE_BASIC | PF_OPTIMIZE_PROFILE;
581 			else {
582 				yyerror("unknown ruleset-optimization %s", $1);
583 				YYERROR;
584 			}
585 		}
586 		;
587 
588 option		: SET OPTIMIZATION STRING		{
589 			if (check_rulestate(PFCTL_STATE_OPTION)) {
590 				free($3);
591 				YYERROR;
592 			}
593 			if (pfctl_set_optimization(pf, $3) != 0) {
594 				yyerror("unknown optimization %s", $3);
595 				free($3);
596 				YYERROR;
597 			}
598 			free($3);
599 		}
600 		| SET RULESET_OPTIMIZATION optimizer {
601 			if (!(pf->opts & PF_OPT_OPTIMIZE)) {
602 				pf->opts |= PF_OPT_OPTIMIZE;
603 				pf->optimize = $3;
604 			}
605 		}
606 		| SET TIMEOUT timeout_spec
607 		| SET TIMEOUT '{' optnl timeout_list '}'
608 		| SET LIMIT limit_spec
609 		| SET LIMIT '{' optnl limit_list '}'
610 		| SET LOGINTERFACE stringall		{
611 			if (check_rulestate(PFCTL_STATE_OPTION)) {
612 				free($3);
613 				YYERROR;
614 			}
615 			if (pfctl_set_logif(pf, $3) != 0) {
616 				yyerror("error setting loginterface %s", $3);
617 				free($3);
618 				YYERROR;
619 			}
620 			free($3);
621 		}
622 		| SET HOSTID number {
623 			if ($3 == 0 || $3 > UINT_MAX) {
624 				yyerror("hostid must be non-zero");
625 				YYERROR;
626 			}
627 			if (pfctl_set_hostid(pf, $3) != 0) {
628 				yyerror("error setting hostid %08x", $3);
629 				YYERROR;
630 			}
631 		}
632 		| SET BLOCKPOLICY DROP	{
633 			if (pf->opts & PF_OPT_VERBOSE)
634 				printf("set block-policy drop\n");
635 			if (check_rulestate(PFCTL_STATE_OPTION))
636 				YYERROR;
637 			blockpolicy = PFRULE_DROP;
638 		}
639 		| SET BLOCKPOLICY RETURN {
640 			if (pf->opts & PF_OPT_VERBOSE)
641 				printf("set block-policy return\n");
642 			if (check_rulestate(PFCTL_STATE_OPTION))
643 				YYERROR;
644 			blockpolicy = PFRULE_RETURN;
645 		}
646 		| SET FAILPOLICY DROP	{
647 			if (pf->opts & PF_OPT_VERBOSE)
648 				printf("set fail-policy drop\n");
649 			if (check_rulestate(PFCTL_STATE_OPTION))
650 				YYERROR;
651 			failpolicy = PFRULE_DROP;
652 		}
653 		| SET FAILPOLICY RETURN {
654 			if (pf->opts & PF_OPT_VERBOSE)
655 				printf("set fail-policy return\n");
656 			if (check_rulestate(PFCTL_STATE_OPTION))
657 				YYERROR;
658 			failpolicy = PFRULE_RETURN;
659 		}
660 		| SET REQUIREORDER yesno {
661 			if (pf->opts & PF_OPT_VERBOSE)
662 				printf("set require-order %s\n",
663 				    $3 == 1 ? "yes" : "no");
664 			require_order = $3;
665 		}
666 		| SET FINGERPRINTS STRING {
667 			if (pf->opts & PF_OPT_VERBOSE)
668 				printf("set fingerprints \"%s\"\n", $3);
669 			if (check_rulestate(PFCTL_STATE_OPTION)) {
670 				free($3);
671 				YYERROR;
672 			}
673 			if (!pf->anchor->name[0]) {
674 				if (pfctl_file_fingerprints(pf->dev,
675 				    pf->opts, $3)) {
676 					yyerror("error loading "
677 					    "fingerprints %s", $3);
678 					free($3);
679 					YYERROR;
680 				}
681 			}
682 			free($3);
683 		}
684 		| SET STATEPOLICY statelock {
685 			if (pf->opts & PF_OPT_VERBOSE)
686 				switch ($3) {
687 				case 0:
688 					printf("set state-policy floating\n");
689 					break;
690 				case PFRULE_IFBOUND:
691 					printf("set state-policy if-bound\n");
692 					break;
693 				}
694 			default_statelock = $3;
695 		}
696 		| SET DEBUG STRING {
697 			if (check_rulestate(PFCTL_STATE_OPTION)) {
698 				free($3);
699 				YYERROR;
700 			}
701 			if (pfctl_set_debug(pf, $3) != 0) {
702 				yyerror("error setting debuglevel %s", $3);
703 				free($3);
704 				YYERROR;
705 			}
706 			free($3);
707 		}
708 		| SET SKIP interface {
709 			if (expand_skip_interface($3) != 0) {
710 				yyerror("error setting skip interface(s)");
711 				YYERROR;
712 			}
713 		}
714 		| SET STATEDEFAULTS state_opt_list {
715 			if (keep_state_defaults != NULL) {
716 				yyerror("cannot redefine state-defaults");
717 				YYERROR;
718 			}
719 			keep_state_defaults = $3;
720 		}
721 		;
722 
723 stringall	: STRING	{ $$ = $1; }
724 		| ALL		{
725 			if (($$ = strdup("all")) == NULL) {
726 				err(1, "stringall: strdup");
727 			}
728 		}
729 		;
730 
731 string		: STRING string				{
732 			if (asprintf(&$$, "%s %s", $1, $2) == -1)
733 				err(1, "string: asprintf");
734 			free($1);
735 			free($2);
736 		}
737 		| STRING
738 		;
739 
740 varstring	: numberstring varstring 		{
741 			if (asprintf(&$$, "%s %s", $1, $2) == -1)
742 				err(1, "string: asprintf");
743 			free($1);
744 			free($2);
745 		}
746 		| numberstring
747 		;
748 
749 numberstring	: NUMBER				{
750 			char	*s;
751 			if (asprintf(&s, "%lld", (long long)$1) == -1) {
752 				yyerror("string: asprintf");
753 				YYERROR;
754 			}
755 			$$ = s;
756 		}
757 		| STRING
758 		;
759 
760 varset		: STRING '=' varstring	{
761 			char *s = $1;
762 			if (pf->opts & PF_OPT_VERBOSE)
763 				printf("%s = \"%s\"\n", $1, $3);
764 			while (*s++) {
765 				if (isspace((unsigned char)*s)) {
766 					yyerror("macro name cannot contain "
767 					   "whitespace");
768 					YYERROR;
769 				}
770 			}
771 			if (symset($1, $3, 0) == -1)
772 				err(1, "cannot store variable %s", $1);
773 			free($1);
774 			free($3);
775 		}
776 		;
777 
778 anchorname	: STRING			{ $$ = $1; }
779 		| /* empty */			{ $$ = NULL; }
780 		;
781 
782 pfa_anchorlist	: /* empty */
783 		| pfa_anchorlist '\n'
784 		| pfa_anchorlist pfrule '\n'
785 		| pfa_anchorlist anchorrule '\n'
786 		;
787 
788 pfa_anchor	: '{'
789 		{
790 			char ta[PF_ANCHOR_NAME_SIZE];
791 			struct pf_ruleset *rs;
792 
793 			/* steping into a brace anchor */
794 			pf->asd++;
795 			pf->bn++;
796 			pf->brace = 1;
797 
798 			/* create a holding ruleset in the root */
799 			snprintf(ta, PF_ANCHOR_NAME_SIZE, "_%d", pf->bn);
800 			rs = pf_find_or_create_ruleset(ta);
801 			if (rs == NULL)
802 				err(1, "pfa_anchor: pf_find_or_create_ruleset");
803 			pf->astack[pf->asd] = rs->anchor;
804 			pf->anchor = rs->anchor;
805 		} '\n' pfa_anchorlist '}'
806 		{
807 			pf->alast = pf->anchor;
808 			pf->asd--;
809 			pf->anchor = pf->astack[pf->asd];
810 		}
811 		| /* empty */
812 		;
813 
814 anchorrule	: ANCHOR anchorname dir quick interface af proto fromto
815 		    filter_opts pfa_anchor
816 		{
817 			struct pf_rule	r;
818 			struct node_proto	*proto;
819 
820 			if (check_rulestate(PFCTL_STATE_FILTER)) {
821 				if ($2)
822 					free($2);
823 				YYERROR;
824 			}
825 
826 			if ($2 && ($2[0] == '_' || strstr($2, "/_") != NULL)) {
827 				free($2);
828 				yyerror("anchor names beginning with '_' "
829 				    "are reserved for internal use");
830 				YYERROR;
831 			}
832 
833 			memset(&r, 0, sizeof(r));
834 			if (pf->astack[pf->asd + 1]) {
835 				/* move inline rules into relative location */
836 				pf_anchor_setup(&r,
837 				    &pf->astack[pf->asd]->ruleset,
838 				    $2 ? $2 : pf->alast->name);
839 
840 				if (r.anchor == NULL)
841 					err(1, "anchorrule: unable to "
842 					    "create ruleset");
843 
844 				if (pf->alast != r.anchor) {
845 					if (r.anchor->match) {
846 						yyerror("inline anchor '%s' "
847 						    "already exists",
848 						    r.anchor->name);
849 						YYERROR;
850 					}
851 					mv_rules(&pf->alast->ruleset,
852 					    &r.anchor->ruleset);
853 				}
854 				pf_remove_if_empty_ruleset(&pf->alast->ruleset);
855 				pf->alast = r.anchor;
856 			} else {
857 				if (!$2) {
858 					yyerror("anchors without explicit "
859 					    "rules must specify a name");
860 					YYERROR;
861 				}
862 			}
863 			r.direction = $3;
864 			r.quick = $4.quick;
865 			r.af = $6;
866 			r.prob = $9.prob;
867 			r.rtableid = $9.rtableid;
868 
869 			if ($9.tag)
870 				if (strlcpy(r.tagname, $9.tag,
871 				    PF_TAG_NAME_SIZE) >= PF_TAG_NAME_SIZE) {
872 					yyerror("tag too long, max %u chars",
873 					    PF_TAG_NAME_SIZE - 1);
874 					YYERROR;
875 				}
876 			if ($9.match_tag)
877 				if (strlcpy(r.match_tagname, $9.match_tag,
878 				    PF_TAG_NAME_SIZE) >= PF_TAG_NAME_SIZE) {
879 					yyerror("tag too long, max %u chars",
880 					    PF_TAG_NAME_SIZE - 1);
881 					YYERROR;
882 				}
883 			r.match_tag_not = $9.match_tag_not;
884 			if (rule_label(&r, $9.label))
885 				YYERROR;
886 			free($9.label);
887 			r.flags = $9.flags.b1;
888 			r.flagset = $9.flags.b2;
889 			if (($9.flags.b1 & $9.flags.b2) != $9.flags.b1) {
890 				yyerror("flags always false");
891 				YYERROR;
892 			}
893 			if ($9.flags.b1 || $9.flags.b2 || $8.src_os) {
894 				for (proto = $7; proto != NULL &&
895 				    proto->proto != IPPROTO_TCP;
896 				    proto = proto->next)
897 					;	/* nothing */
898 				if (proto == NULL && $7 != NULL) {
899 					if ($9.flags.b1 || $9.flags.b2)
900 						yyerror(
901 						    "flags only apply to tcp");
902 					if ($8.src_os)
903 						yyerror(
904 						    "OS fingerprinting only "
905 						    "applies to tcp");
906 					YYERROR;
907 				}
908 			}
909 
910 			r.tos = $9.tos;
911 
912 			if ($9.keep.action) {
913 				yyerror("cannot specify state handling "
914 				    "on anchors");
915 				YYERROR;
916 			}
917 
918 			if ($9.match_tag)
919 				if (strlcpy(r.match_tagname, $9.match_tag,
920 				    PF_TAG_NAME_SIZE) >= PF_TAG_NAME_SIZE) {
921 					yyerror("tag too long, max %u chars",
922 					    PF_TAG_NAME_SIZE - 1);
923 					YYERROR;
924 				}
925 			r.match_tag_not = $9.match_tag_not;
926 			if ($9.marker & FOM_PRIO) {
927 				if ($9.prio == 0)
928 					r.prio = PF_PRIO_ZERO;
929 				else
930 					r.prio = $9.prio;
931 			}
932 			if ($9.marker & FOM_SETPRIO) {
933 				r.set_prio[0] = $9.set_prio[0];
934 				r.set_prio[1] = $9.set_prio[1];
935 				r.scrub_flags |= PFSTATE_SETPRIO;
936 			}
937 
938 			decide_address_family($8.src.host, &r.af);
939 			decide_address_family($8.dst.host, &r.af);
940 
941 			expand_rule(&r, $5, NULL, $7, $8.src_os,
942 			    $8.src.host, $8.src.port, $8.dst.host, $8.dst.port,
943 			    $9.uid, $9.gid, $9.icmpspec,
944 			    pf->astack[pf->asd + 1] ? pf->alast->name : $2);
945 			free($2);
946 			pf->astack[pf->asd + 1] = NULL;
947 		}
948 		| NATANCHOR string interface af proto fromto rtable {
949 			struct pf_rule	r;
950 
951 			if (check_rulestate(PFCTL_STATE_NAT)) {
952 				free($2);
953 				YYERROR;
954 			}
955 
956 			memset(&r, 0, sizeof(r));
957 			r.action = PF_NAT;
958 			r.af = $4;
959 			r.rtableid = $7;
960 
961 			decide_address_family($6.src.host, &r.af);
962 			decide_address_family($6.dst.host, &r.af);
963 
964 			expand_rule(&r, $3, NULL, $5, $6.src_os,
965 			    $6.src.host, $6.src.port, $6.dst.host, $6.dst.port,
966 			    0, 0, 0, $2);
967 			free($2);
968 		}
969 		| RDRANCHOR string interface af proto fromto rtable {
970 			struct pf_rule	r;
971 
972 			if (check_rulestate(PFCTL_STATE_NAT)) {
973 				free($2);
974 				YYERROR;
975 			}
976 
977 			memset(&r, 0, sizeof(r));
978 			r.action = PF_RDR;
979 			r.af = $4;
980 			r.rtableid = $7;
981 
982 			decide_address_family($6.src.host, &r.af);
983 			decide_address_family($6.dst.host, &r.af);
984 
985 			if ($6.src.port != NULL) {
986 				yyerror("source port parameter not supported"
987 				    " in rdr-anchor");
988 				YYERROR;
989 			}
990 			if ($6.dst.port != NULL) {
991 				if ($6.dst.port->next != NULL) {
992 					yyerror("destination port list "
993 					    "expansion not supported in "
994 					    "rdr-anchor");
995 					YYERROR;
996 				} else if ($6.dst.port->op != PF_OP_EQ) {
997 					yyerror("destination port operators"
998 					    " not supported in rdr-anchor");
999 					YYERROR;
1000 				}
1001 				r.dst.port[0] = $6.dst.port->port[0];
1002 				r.dst.port[1] = $6.dst.port->port[1];
1003 				r.dst.port_op = $6.dst.port->op;
1004 			}
1005 
1006 			expand_rule(&r, $3, NULL, $5, $6.src_os,
1007 			    $6.src.host, $6.src.port, $6.dst.host, $6.dst.port,
1008 			    0, 0, 0, $2);
1009 			free($2);
1010 		}
1011 		| BINATANCHOR string interface af proto fromto rtable {
1012 			struct pf_rule	r;
1013 
1014 			if (check_rulestate(PFCTL_STATE_NAT)) {
1015 				free($2);
1016 				YYERROR;
1017 			}
1018 
1019 			memset(&r, 0, sizeof(r));
1020 			r.action = PF_BINAT;
1021 			r.af = $4;
1022 			r.rtableid = $7;
1023 			if ($5 != NULL) {
1024 				if ($5->next != NULL) {
1025 					yyerror("proto list expansion"
1026 					    " not supported in binat-anchor");
1027 					YYERROR;
1028 				}
1029 				r.proto = $5->proto;
1030 				free($5);
1031 			}
1032 
1033 			if ($6.src.host != NULL || $6.src.port != NULL ||
1034 			    $6.dst.host != NULL || $6.dst.port != NULL) {
1035 				yyerror("fromto parameter not supported"
1036 				    " in binat-anchor");
1037 				YYERROR;
1038 			}
1039 
1040 			decide_address_family($6.src.host, &r.af);
1041 			decide_address_family($6.dst.host, &r.af);
1042 
1043 			pfctl_add_rule(pf, &r, $2);
1044 			free($2);
1045 		}
1046 		;
1047 
1048 loadrule	: LOAD ANCHOR string FROM string	{
1049 			struct loadanchors	*loadanchor;
1050 
1051 			if (strlen(pf->anchor->name) + 1 +
1052 			    strlen($3) >= MAXPATHLEN) {
1053 				yyerror("anchorname %s too long, max %u\n",
1054 				    $3, MAXPATHLEN - 1);
1055 				free($3);
1056 				YYERROR;
1057 			}
1058 			loadanchor = calloc(1, sizeof(struct loadanchors));
1059 			if (loadanchor == NULL)
1060 				err(1, "loadrule: calloc");
1061 			if ((loadanchor->anchorname = malloc(MAXPATHLEN)) ==
1062 			    NULL)
1063 				err(1, "loadrule: malloc");
1064 			if (pf->anchor->name[0])
1065 				snprintf(loadanchor->anchorname, MAXPATHLEN,
1066 				    "%s/%s", pf->anchor->name, $3);
1067 			else
1068 				strlcpy(loadanchor->anchorname, $3, MAXPATHLEN);
1069 			if ((loadanchor->filename = strdup($5)) == NULL)
1070 				err(1, "loadrule: strdup");
1071 
1072 			TAILQ_INSERT_TAIL(&loadanchorshead, loadanchor,
1073 			    entries);
1074 
1075 			free($3);
1076 			free($5);
1077 		};
1078 
1079 scrubaction	: no SCRUB {
1080 			$$.b2 = $$.w = 0;
1081 			if ($1)
1082 				$$.b1 = PF_NOSCRUB;
1083 			else
1084 				$$.b1 = PF_SCRUB;
1085 		}
1086 		;
1087 
1088 scrubrule	: scrubaction dir logquick interface af proto fromto scrub_opts
1089 		{
1090 			struct pf_rule	r;
1091 
1092 			if (check_rulestate(PFCTL_STATE_SCRUB))
1093 				YYERROR;
1094 
1095 			memset(&r, 0, sizeof(r));
1096 
1097 			r.action = $1.b1;
1098 			r.direction = $2;
1099 
1100 			r.log = $3.log;
1101 			r.logif = $3.logif;
1102 			if ($3.quick) {
1103 				yyerror("scrub rules do not support 'quick'");
1104 				YYERROR;
1105 			}
1106 
1107 			r.af = $5;
1108 			if ($8.nodf)
1109 				r.rule_flag |= PFRULE_NODF;
1110 			if ($8.randomid)
1111 				r.rule_flag |= PFRULE_RANDOMID;
1112 			if ($8.reassemble_tcp) {
1113 				if (r.direction != PF_INOUT) {
1114 					yyerror("reassemble tcp rules can not "
1115 					    "specify direction");
1116 					YYERROR;
1117 				}
1118 				r.rule_flag |= PFRULE_REASSEMBLE_TCP;
1119 			}
1120 			if ($8.minttl)
1121 				r.min_ttl = $8.minttl;
1122 			if ($8.maxmss)
1123 				r.max_mss = $8.maxmss;
1124 			if ($8.marker & SOM_SETTOS) {
1125 				r.rule_flag |= PFRULE_SET_TOS;
1126 				r.set_tos = $8.settos;
1127 			}
1128 			if ($8.fragcache)
1129 				r.rule_flag |= $8.fragcache;
1130 			if ($8.match_tag)
1131 				if (strlcpy(r.match_tagname, $8.match_tag,
1132 				    PF_TAG_NAME_SIZE) >= PF_TAG_NAME_SIZE) {
1133 					yyerror("tag too long, max %u chars",
1134 					    PF_TAG_NAME_SIZE - 1);
1135 					YYERROR;
1136 				}
1137 			r.match_tag_not = $8.match_tag_not;
1138 			r.rtableid = $8.rtableid;
1139 
1140 			expand_rule(&r, $4, NULL, $6, $7.src_os,
1141 			    $7.src.host, $7.src.port, $7.dst.host, $7.dst.port,
1142 			    NULL, NULL, NULL, "");
1143 		}
1144 		;
1145 
1146 scrub_opts	:	{
1147 				bzero(&scrub_opts, sizeof scrub_opts);
1148 				scrub_opts.rtableid = -1;
1149 			}
1150 		    scrub_opts_l
1151 			{ $$ = scrub_opts; }
1152 		| /* empty */ {
1153 			bzero(&scrub_opts, sizeof scrub_opts);
1154 			scrub_opts.rtableid = -1;
1155 			$$ = scrub_opts;
1156 		}
1157 		;
1158 
1159 scrub_opts_l	: scrub_opts_l scrub_opt
1160 		| scrub_opt
1161 		;
1162 
1163 scrub_opt	: NODF	{
1164 			if (scrub_opts.nodf) {
1165 				yyerror("no-df cannot be respecified");
1166 				YYERROR;
1167 			}
1168 			scrub_opts.nodf = 1;
1169 		}
1170 		| MINTTL NUMBER {
1171 			if (scrub_opts.marker & SOM_MINTTL) {
1172 				yyerror("min-ttl cannot be respecified");
1173 				YYERROR;
1174 			}
1175 			if ($2 < 0 || $2 > 255) {
1176 				yyerror("illegal min-ttl value %d", $2);
1177 				YYERROR;
1178 			}
1179 			scrub_opts.marker |= SOM_MINTTL;
1180 			scrub_opts.minttl = $2;
1181 		}
1182 		| MAXMSS NUMBER {
1183 			if (scrub_opts.marker & SOM_MAXMSS) {
1184 				yyerror("max-mss cannot be respecified");
1185 				YYERROR;
1186 			}
1187 			if ($2 < 0 || $2 > 65535) {
1188 				yyerror("illegal max-mss value %d", $2);
1189 				YYERROR;
1190 			}
1191 			scrub_opts.marker |= SOM_MAXMSS;
1192 			scrub_opts.maxmss = $2;
1193 		}
1194 		| SETTOS tos {
1195 			if (scrub_opts.marker & SOM_SETTOS) {
1196 				yyerror("set-tos cannot be respecified");
1197 				YYERROR;
1198 			}
1199 			scrub_opts.marker |= SOM_SETTOS;
1200 			scrub_opts.settos = $2;
1201 		}
1202 		| fragcache {
1203 			if (scrub_opts.marker & SOM_FRAGCACHE) {
1204 				yyerror("fragcache cannot be respecified");
1205 				YYERROR;
1206 			}
1207 			scrub_opts.marker |= SOM_FRAGCACHE;
1208 			scrub_opts.fragcache = $1;
1209 		}
1210 		| REASSEMBLE STRING {
1211 			if (strcasecmp($2, "tcp") != 0) {
1212 				yyerror("scrub reassemble supports only tcp, "
1213 				    "not '%s'", $2);
1214 				free($2);
1215 				YYERROR;
1216 			}
1217 			free($2);
1218 			if (scrub_opts.reassemble_tcp) {
1219 				yyerror("reassemble tcp cannot be respecified");
1220 				YYERROR;
1221 			}
1222 			scrub_opts.reassemble_tcp = 1;
1223 		}
1224 		| RANDOMID {
1225 			if (scrub_opts.randomid) {
1226 				yyerror("random-id cannot be respecified");
1227 				YYERROR;
1228 			}
1229 			scrub_opts.randomid = 1;
1230 		}
1231 		| RTABLE NUMBER				{
1232 			if ($2 < 0 || $2 > rt_tableid_max()) {
1233 				yyerror("invalid rtable id");
1234 				YYERROR;
1235 			}
1236 			scrub_opts.rtableid = $2;
1237 		}
1238 		| not TAGGED string			{
1239 			scrub_opts.match_tag = $3;
1240 			scrub_opts.match_tag_not = $1;
1241 		}
1242 		;
1243 
1244 fragcache	: FRAGMENT REASSEMBLE	{ $$ = 0; /* default */ }
1245 		| FRAGMENT FRAGCROP	{ $$ = 0; }
1246 		| FRAGMENT FRAGDROP	{ $$ = 0; }
1247 		;
1248 
1249 antispoof	: ANTISPOOF logquick antispoof_ifspc af antispoof_opts {
1250 			struct pf_rule		 r;
1251 			struct node_host	*h = NULL, *hh;
1252 			struct node_if		*i, *j;
1253 
1254 			if (check_rulestate(PFCTL_STATE_FILTER))
1255 				YYERROR;
1256 
1257 			for (i = $3; i; i = i->next) {
1258 				bzero(&r, sizeof(r));
1259 
1260 				r.action = PF_DROP;
1261 				r.direction = PF_IN;
1262 				r.log = $2.log;
1263 				r.logif = $2.logif;
1264 				r.quick = $2.quick;
1265 				r.af = $4;
1266 				if (rule_label(&r, $5.label))
1267 					YYERROR;
1268 				r.rtableid = $5.rtableid;
1269 				j = calloc(1, sizeof(struct node_if));
1270 				if (j == NULL)
1271 					err(1, "antispoof: calloc");
1272 				if (strlcpy(j->ifname, i->ifname,
1273 				    sizeof(j->ifname)) >= sizeof(j->ifname)) {
1274 					free(j);
1275 					yyerror("interface name too long");
1276 					YYERROR;
1277 				}
1278 				j->not = 1;
1279 				if (i->dynamic) {
1280 					h = calloc(1, sizeof(*h));
1281 					if (h == NULL)
1282 						err(1, "address: calloc");
1283 					h->addr.type = PF_ADDR_DYNIFTL;
1284 					set_ipmask(h, 128);
1285 					if (strlcpy(h->addr.v.ifname, i->ifname,
1286 					    sizeof(h->addr.v.ifname)) >=
1287 					    sizeof(h->addr.v.ifname)) {
1288 						free(h);
1289 						yyerror(
1290 						    "interface name too long");
1291 						YYERROR;
1292 					}
1293 					hh = malloc(sizeof(*hh));
1294 					if (hh == NULL)
1295 						 err(1, "address: malloc");
1296 					bcopy(h, hh, sizeof(*hh));
1297 					h->addr.iflags = PFI_AFLAG_NETWORK;
1298 				} else {
1299 					h = ifa_lookup(j->ifname,
1300 					    PFI_AFLAG_NETWORK);
1301 					hh = NULL;
1302 				}
1303 
1304 				if (h != NULL)
1305 					expand_rule(&r, j, NULL, NULL, NULL, h,
1306 					    NULL, NULL, NULL, NULL, NULL,
1307 					    NULL, "");
1308 
1309 				if ((i->ifa_flags & IFF_LOOPBACK) == 0) {
1310 					bzero(&r, sizeof(r));
1311 
1312 					r.action = PF_DROP;
1313 					r.direction = PF_IN;
1314 					r.log = $2.log;
1315 					r.logif = $2.logif;
1316 					r.quick = $2.quick;
1317 					r.af = $4;
1318 					if (rule_label(&r, $5.label))
1319 						YYERROR;
1320 					r.rtableid = $5.rtableid;
1321 					if (hh != NULL)
1322 						h = hh;
1323 					else
1324 						h = ifa_lookup(i->ifname, 0);
1325 					if (h != NULL)
1326 						expand_rule(&r, NULL, NULL,
1327 						    NULL, NULL, h, NULL, NULL,
1328 						    NULL, NULL, NULL, NULL, "");
1329 				} else
1330 					free(hh);
1331 			}
1332 			free($5.label);
1333 		}
1334 		;
1335 
1336 antispoof_ifspc	: FOR antispoof_if			{ $$ = $2; }
1337 		| FOR '{' optnl antispoof_iflst '}'	{ $$ = $4; }
1338 		;
1339 
1340 antispoof_iflst	: antispoof_if optnl			{ $$ = $1; }
1341 		| antispoof_iflst comma antispoof_if optnl {
1342 			$1->tail->next = $3;
1343 			$1->tail = $3;
1344 			$$ = $1;
1345 		}
1346 		;
1347 
1348 antispoof_if	: if_item				{ $$ = $1; }
1349 		| '(' if_item ')'			{
1350 			$2->dynamic = 1;
1351 			$$ = $2;
1352 		}
1353 		;
1354 
1355 antispoof_opts	:	{
1356 				bzero(&antispoof_opts, sizeof antispoof_opts);
1357 				antispoof_opts.rtableid = -1;
1358 			}
1359 		    antispoof_opts_l
1360 			{ $$ = antispoof_opts; }
1361 		| /* empty */	{
1362 			bzero(&antispoof_opts, sizeof antispoof_opts);
1363 			antispoof_opts.rtableid = -1;
1364 			$$ = antispoof_opts;
1365 		}
1366 		;
1367 
1368 antispoof_opts_l	: antispoof_opts_l antispoof_opt
1369 			| antispoof_opt
1370 			;
1371 
1372 antispoof_opt	: label	{
1373 			if (antispoof_opts.label) {
1374 				yyerror("label cannot be redefined");
1375 				YYERROR;
1376 			}
1377 			antispoof_opts.label = $1;
1378 		}
1379 		| RTABLE NUMBER				{
1380 			if ($2 < 0 || $2 > rt_tableid_max()) {
1381 				yyerror("invalid rtable id");
1382 				YYERROR;
1383 			}
1384 			antispoof_opts.rtableid = $2;
1385 		}
1386 		;
1387 
1388 not		: '!'		{ $$ = 1; }
1389 		| /* empty */	{ $$ = 0; }
1390 		;
1391 
1392 tabledef	: TABLE '<' STRING '>' table_opts {
1393 			struct node_host	 *h, *nh;
1394 			struct node_tinit	 *ti, *nti;
1395 
1396 			if (strlen($3) >= PF_TABLE_NAME_SIZE) {
1397 				yyerror("table name too long, max %d chars",
1398 				    PF_TABLE_NAME_SIZE - 1);
1399 				free($3);
1400 				YYERROR;
1401 			}
1402 			if (pf->loadopt & PFCTL_FLAG_TABLE)
1403 				if (process_tabledef($3, &$5)) {
1404 					free($3);
1405 					YYERROR;
1406 				}
1407 			free($3);
1408 			for (ti = SIMPLEQ_FIRST(&$5.init_nodes);
1409 			    ti != SIMPLEQ_END(&$5.init_nodes); ti = nti) {
1410 				if (ti->file)
1411 					free(ti->file);
1412 				for (h = ti->host; h != NULL; h = nh) {
1413 					nh = h->next;
1414 					free(h);
1415 				}
1416 				nti = SIMPLEQ_NEXT(ti, entries);
1417 				free(ti);
1418 			}
1419 		}
1420 		;
1421 
1422 table_opts	:	{
1423 			bzero(&table_opts, sizeof table_opts);
1424 			SIMPLEQ_INIT(&table_opts.init_nodes);
1425 		}
1426 		    table_opts_l
1427 			{ $$ = table_opts; }
1428 		| /* empty */
1429 			{
1430 			bzero(&table_opts, sizeof table_opts);
1431 			SIMPLEQ_INIT(&table_opts.init_nodes);
1432 			$$ = table_opts;
1433 		}
1434 		;
1435 
1436 table_opts_l	: table_opts_l table_opt
1437 		| table_opt
1438 		;
1439 
1440 table_opt	: STRING		{
1441 			if (!strcmp($1, "const"))
1442 				table_opts.flags |= PFR_TFLAG_CONST;
1443 			else if (!strcmp($1, "persist"))
1444 				table_opts.flags |= PFR_TFLAG_PERSIST;
1445 			else if (!strcmp($1, "counters"))
1446 				table_opts.flags |= PFR_TFLAG_COUNTERS;
1447 			else {
1448 				yyerror("invalid table option '%s'", $1);
1449 				free($1);
1450 				YYERROR;
1451 			}
1452 			free($1);
1453 		}
1454 		| '{' optnl '}'		{ table_opts.init_addr = 1; }
1455 		| '{' optnl host_list '}'	{
1456 			struct node_host	*n;
1457 			struct node_tinit	*ti;
1458 
1459 			for (n = $3; n != NULL; n = n->next) {
1460 				switch (n->addr.type) {
1461 				case PF_ADDR_ADDRMASK:
1462 					continue; /* ok */
1463 				case PF_ADDR_RANGE:
1464 					yyerror("address ranges are not "
1465 					    "permitted inside tables");
1466 					break;
1467 				case PF_ADDR_DYNIFTL:
1468 					yyerror("dynamic addresses are not "
1469 					    "permitted inside tables");
1470 					break;
1471 				case PF_ADDR_TABLE:
1472 					yyerror("tables cannot contain tables");
1473 					break;
1474 				case PF_ADDR_NOROUTE:
1475 					yyerror("\"no-route\" is not permitted "
1476 					    "inside tables");
1477 					break;
1478 				case PF_ADDR_URPFFAILED:
1479 					yyerror("\"urpf-failed\" is not "
1480 					    "permitted inside tables");
1481 					break;
1482 				default:
1483 					yyerror("unknown address type %d",
1484 					    n->addr.type);
1485 				}
1486 				YYERROR;
1487 			}
1488 			if (!(ti = calloc(1, sizeof(*ti))))
1489 				err(1, "table_opt: calloc");
1490 			ti->host = $3;
1491 			SIMPLEQ_INSERT_TAIL(&table_opts.init_nodes, ti,
1492 			    entries);
1493 			table_opts.init_addr = 1;
1494 		}
1495 		| FILENAME STRING	{
1496 			struct node_tinit	*ti;
1497 
1498 			if (!(ti = calloc(1, sizeof(*ti))))
1499 				err(1, "table_opt: calloc");
1500 			ti->file = $2;
1501 			SIMPLEQ_INSERT_TAIL(&table_opts.init_nodes, ti,
1502 			    entries);
1503 			table_opts.init_addr = 1;
1504 		}
1505 		;
1506 
1507 altqif		: ALTQ interface queue_opts QUEUE qassign {
1508 			struct pf_altq	a;
1509 
1510 			if (check_rulestate(PFCTL_STATE_QUEUE))
1511 				YYERROR;
1512 
1513 			memset(&a, 0, sizeof(a));
1514 			if ($3.scheduler.qtype == ALTQT_NONE) {
1515 				yyerror("no scheduler specified!");
1516 				YYERROR;
1517 			}
1518 			a.scheduler = $3.scheduler.qtype;
1519 			a.qlimit = $3.qlimit;
1520 			a.tbrsize = $3.tbrsize;
1521 			if ($5 == NULL && $3.scheduler.qtype != ALTQT_CODEL) {
1522 				yyerror("no child queues specified");
1523 				YYERROR;
1524 			}
1525 			if (expand_altq(&a, $2, $5, $3.queue_bwspec,
1526 			    &$3.scheduler))
1527 				YYERROR;
1528 		}
1529 		;
1530 
1531 queuespec	: QUEUE STRING interface queue_opts qassign {
1532 			struct pf_altq	a;
1533 
1534 			if (check_rulestate(PFCTL_STATE_QUEUE)) {
1535 				free($2);
1536 				YYERROR;
1537 			}
1538 
1539 			memset(&a, 0, sizeof(a));
1540 
1541 			if (strlcpy(a.qname, $2, sizeof(a.qname)) >=
1542 			    sizeof(a.qname)) {
1543 				yyerror("queue name too long (max "
1544 				    "%d chars)", PF_QNAME_SIZE-1);
1545 				free($2);
1546 				YYERROR;
1547 			}
1548 			free($2);
1549 			if ($4.tbrsize) {
1550 				yyerror("cannot specify tbrsize for queue");
1551 				YYERROR;
1552 			}
1553 			if ($4.priority > 255) {
1554 				yyerror("priority out of range: max 255");
1555 				YYERROR;
1556 			}
1557 			a.priority = $4.priority;
1558 			a.qlimit = $4.qlimit;
1559 			a.scheduler = $4.scheduler.qtype;
1560 			if (expand_queue(&a, $3, $5, $4.queue_bwspec,
1561 			    &$4.scheduler)) {
1562 				yyerror("errors in queue definition");
1563 				YYERROR;
1564 			}
1565 		}
1566 		;
1567 
1568 queue_opts	:	{
1569 			bzero(&queue_opts, sizeof queue_opts);
1570 			queue_opts.priority = DEFAULT_PRIORITY;
1571 			queue_opts.qlimit = DEFAULT_QLIMIT;
1572 			queue_opts.scheduler.qtype = ALTQT_NONE;
1573 			queue_opts.queue_bwspec.bw_percent = 100;
1574 		}
1575 		    queue_opts_l
1576 			{ $$ = queue_opts; }
1577 		| /* empty */ {
1578 			bzero(&queue_opts, sizeof queue_opts);
1579 			queue_opts.priority = DEFAULT_PRIORITY;
1580 			queue_opts.qlimit = DEFAULT_QLIMIT;
1581 			queue_opts.scheduler.qtype = ALTQT_NONE;
1582 			queue_opts.queue_bwspec.bw_percent = 100;
1583 			$$ = queue_opts;
1584 		}
1585 		;
1586 
1587 queue_opts_l	: queue_opts_l queue_opt
1588 		| queue_opt
1589 		;
1590 
1591 queue_opt	: BANDWIDTH bandwidth	{
1592 			if (queue_opts.marker & QOM_BWSPEC) {
1593 				yyerror("bandwidth cannot be respecified");
1594 				YYERROR;
1595 			}
1596 			queue_opts.marker |= QOM_BWSPEC;
1597 			queue_opts.queue_bwspec = $2;
1598 		}
1599 		| PRIORITY NUMBER	{
1600 			if (queue_opts.marker & QOM_PRIORITY) {
1601 				yyerror("priority cannot be respecified");
1602 				YYERROR;
1603 			}
1604 			if ($2 < 0 || $2 > 255) {
1605 				yyerror("priority out of range: max 255");
1606 				YYERROR;
1607 			}
1608 			queue_opts.marker |= QOM_PRIORITY;
1609 			queue_opts.priority = $2;
1610 		}
1611 		| QLIMIT NUMBER	{
1612 			if (queue_opts.marker & QOM_QLIMIT) {
1613 				yyerror("qlimit cannot be respecified");
1614 				YYERROR;
1615 			}
1616 			if ($2 < 0 || $2 > 65535) {
1617 				yyerror("qlimit out of range: max 65535");
1618 				YYERROR;
1619 			}
1620 			queue_opts.marker |= QOM_QLIMIT;
1621 			queue_opts.qlimit = $2;
1622 		}
1623 		| scheduler	{
1624 			if (queue_opts.marker & QOM_SCHEDULER) {
1625 				yyerror("scheduler cannot be respecified");
1626 				YYERROR;
1627 			}
1628 			queue_opts.marker |= QOM_SCHEDULER;
1629 			queue_opts.scheduler = $1;
1630 		}
1631 		| TBRSIZE NUMBER	{
1632 			if (queue_opts.marker & QOM_TBRSIZE) {
1633 				yyerror("tbrsize cannot be respecified");
1634 				YYERROR;
1635 			}
1636 			if ($2 < 0 || $2 > UINT_MAX) {
1637 				yyerror("tbrsize too big: max %u", UINT_MAX);
1638 				YYERROR;
1639 			}
1640 			queue_opts.marker |= QOM_TBRSIZE;
1641 			queue_opts.tbrsize = $2;
1642 		}
1643 		;
1644 
1645 bandwidth	: STRING {
1646 			double	 bps;
1647 			char	*cp;
1648 
1649 			$$.bw_percent = 0;
1650 
1651 			bps = strtod($1, &cp);
1652 			if (cp != NULL) {
1653 				if (strlen(cp) > 1) {
1654 					char *cu = cp + 1;
1655 					if (!strcmp(cu, "Bit") ||
1656 					    !strcmp(cu, "B") ||
1657 					    !strcmp(cu, "bit") ||
1658 					    !strcmp(cu, "b")) {
1659 						*cu = 0;
1660 					}
1661 				}
1662 				if (!strcmp(cp, "b"))
1663 					; /* nothing */
1664 				else if (!strcmp(cp, "K"))
1665 					bps *= 1000;
1666 				else if (!strcmp(cp, "M"))
1667 					bps *= 1000 * 1000;
1668 				else if (!strcmp(cp, "G"))
1669 					bps *= 1000 * 1000 * 1000;
1670 				else if (!strcmp(cp, "%")) {
1671 					if (bps < 0 || bps > 100) {
1672 						yyerror("bandwidth spec "
1673 						    "out of range");
1674 						free($1);
1675 						YYERROR;
1676 					}
1677 					$$.bw_percent = bps;
1678 					bps = 0;
1679 				} else {
1680 					yyerror("unknown unit %s", cp);
1681 					free($1);
1682 					YYERROR;
1683 				}
1684 			}
1685 			free($1);
1686 			$$.bw_absolute = (u_int64_t)bps;
1687 		}
1688 		| NUMBER {
1689 			if ($1 < 0 || $1 >= LLONG_MAX) {
1690 				yyerror("bandwidth number too big");
1691 				YYERROR;
1692 			}
1693 			$$.bw_percent = 0;
1694 			$$.bw_absolute = $1;
1695 		}
1696 		;
1697 
1698 scheduler	: CBQ				{
1699 			$$.qtype = ALTQT_CBQ;
1700 			$$.data.cbq_opts.flags = 0;
1701 		}
1702 		| CBQ '(' cbqflags_list ')'	{
1703 			$$.qtype = ALTQT_CBQ;
1704 			$$.data.cbq_opts.flags = $3;
1705 		}
1706 		| PRIQ				{
1707 			$$.qtype = ALTQT_PRIQ;
1708 			$$.data.priq_opts.flags = 0;
1709 		}
1710 		| PRIQ '(' priqflags_list ')'	{
1711 			$$.qtype = ALTQT_PRIQ;
1712 			$$.data.priq_opts.flags = $3;
1713 		}
1714 		| HFSC				{
1715 			$$.qtype = ALTQT_HFSC;
1716 			bzero(&$$.data.hfsc_opts,
1717 			    sizeof(struct node_hfsc_opts));
1718 		}
1719 		| HFSC '(' hfsc_opts ')'	{
1720 			$$.qtype = ALTQT_HFSC;
1721 			$$.data.hfsc_opts = $3;
1722 		}
1723 		| FAIRQ				{
1724 			$$.qtype = ALTQT_FAIRQ;
1725 			bzero(&$$.data.fairq_opts,
1726 				sizeof(struct node_fairq_opts));
1727 		}
1728 		| FAIRQ '(' fairq_opts ')'      {
1729 			$$.qtype = ALTQT_FAIRQ;
1730 			$$.data.fairq_opts = $3;
1731 		}
1732 		| CODEL				{
1733 			$$.qtype = ALTQT_CODEL;
1734 			bzero(&$$.data.codel_opts,
1735 				sizeof(struct codel_opts));
1736 		}
1737 		| CODEL '(' codel_opts ')'	{
1738 			$$.qtype = ALTQT_CODEL;
1739 			$$.data.codel_opts = $3;
1740 		}
1741 		;
1742 
1743 cbqflags_list	: cbqflags_item				{ $$ |= $1; }
1744 		| cbqflags_list comma cbqflags_item	{ $$ |= $3; }
1745 		;
1746 
1747 cbqflags_item	: STRING	{
1748 			if (!strcmp($1, "default"))
1749 				$$ = CBQCLF_DEFCLASS;
1750 			else if (!strcmp($1, "borrow"))
1751 				$$ = CBQCLF_BORROW;
1752 			else if (!strcmp($1, "red"))
1753 				$$ = CBQCLF_RED;
1754 			else if (!strcmp($1, "ecn"))
1755 				$$ = CBQCLF_RED|CBQCLF_ECN;
1756 			else if (!strcmp($1, "rio"))
1757 				$$ = CBQCLF_RIO;
1758 			else if (!strcmp($1, "codel"))
1759 				$$ = CBQCLF_CODEL;
1760 			else {
1761 				yyerror("unknown cbq flag \"%s\"", $1);
1762 				free($1);
1763 				YYERROR;
1764 			}
1765 			free($1);
1766 		}
1767 		;
1768 
1769 priqflags_list	: priqflags_item			{ $$ |= $1; }
1770 		| priqflags_list comma priqflags_item	{ $$ |= $3; }
1771 		;
1772 
1773 priqflags_item	: STRING	{
1774 			if (!strcmp($1, "default"))
1775 				$$ = PRCF_DEFAULTCLASS;
1776 			else if (!strcmp($1, "red"))
1777 				$$ = PRCF_RED;
1778 			else if (!strcmp($1, "ecn"))
1779 				$$ = PRCF_RED|PRCF_ECN;
1780 			else if (!strcmp($1, "rio"))
1781 				$$ = PRCF_RIO;
1782 			else if (!strcmp($1, "codel"))
1783 				$$ = PRCF_CODEL;
1784 			else {
1785 				yyerror("unknown priq flag \"%s\"", $1);
1786 				free($1);
1787 				YYERROR;
1788 			}
1789 			free($1);
1790 		}
1791 		;
1792 
1793 hfsc_opts	:	{
1794 				bzero(&hfsc_opts,
1795 				    sizeof(struct node_hfsc_opts));
1796 			}
1797 		    hfscopts_list				{
1798 			$$ = hfsc_opts;
1799 		}
1800 		;
1801 
1802 hfscopts_list	: hfscopts_item
1803 		| hfscopts_list comma hfscopts_item
1804 		;
1805 
1806 hfscopts_item	: LINKSHARE bandwidth				{
1807 			if (hfsc_opts.linkshare.used) {
1808 				yyerror("linkshare already specified");
1809 				YYERROR;
1810 			}
1811 			hfsc_opts.linkshare.m2 = $2;
1812 			hfsc_opts.linkshare.used = 1;
1813 		}
1814 		| LINKSHARE '(' bandwidth comma NUMBER comma bandwidth ')'
1815 		    {
1816 			if ($5 < 0 || $5 > INT_MAX) {
1817 				yyerror("timing in curve out of range");
1818 				YYERROR;
1819 			}
1820 			if (hfsc_opts.linkshare.used) {
1821 				yyerror("linkshare already specified");
1822 				YYERROR;
1823 			}
1824 			hfsc_opts.linkshare.m1 = $3;
1825 			hfsc_opts.linkshare.d = $5;
1826 			hfsc_opts.linkshare.m2 = $7;
1827 			hfsc_opts.linkshare.used = 1;
1828 		}
1829 		| REALTIME bandwidth				{
1830 			if (hfsc_opts.realtime.used) {
1831 				yyerror("realtime already specified");
1832 				YYERROR;
1833 			}
1834 			hfsc_opts.realtime.m2 = $2;
1835 			hfsc_opts.realtime.used = 1;
1836 		}
1837 		| REALTIME '(' bandwidth comma NUMBER comma bandwidth ')'
1838 		    {
1839 			if ($5 < 0 || $5 > INT_MAX) {
1840 				yyerror("timing in curve out of range");
1841 				YYERROR;
1842 			}
1843 			if (hfsc_opts.realtime.used) {
1844 				yyerror("realtime already specified");
1845 				YYERROR;
1846 			}
1847 			hfsc_opts.realtime.m1 = $3;
1848 			hfsc_opts.realtime.d = $5;
1849 			hfsc_opts.realtime.m2 = $7;
1850 			hfsc_opts.realtime.used = 1;
1851 		}
1852 		| UPPERLIMIT bandwidth				{
1853 			if (hfsc_opts.upperlimit.used) {
1854 				yyerror("upperlimit already specified");
1855 				YYERROR;
1856 			}
1857 			hfsc_opts.upperlimit.m2 = $2;
1858 			hfsc_opts.upperlimit.used = 1;
1859 		}
1860 		| UPPERLIMIT '(' bandwidth comma NUMBER comma bandwidth ')'
1861 		    {
1862 			if ($5 < 0 || $5 > INT_MAX) {
1863 				yyerror("timing in curve out of range");
1864 				YYERROR;
1865 			}
1866 			if (hfsc_opts.upperlimit.used) {
1867 				yyerror("upperlimit already specified");
1868 				YYERROR;
1869 			}
1870 			hfsc_opts.upperlimit.m1 = $3;
1871 			hfsc_opts.upperlimit.d = $5;
1872 			hfsc_opts.upperlimit.m2 = $7;
1873 			hfsc_opts.upperlimit.used = 1;
1874 		}
1875 		| STRING	{
1876 			if (!strcmp($1, "default"))
1877 				hfsc_opts.flags |= HFCF_DEFAULTCLASS;
1878 			else if (!strcmp($1, "red"))
1879 				hfsc_opts.flags |= HFCF_RED;
1880 			else if (!strcmp($1, "ecn"))
1881 				hfsc_opts.flags |= HFCF_RED|HFCF_ECN;
1882 			else if (!strcmp($1, "rio"))
1883 				hfsc_opts.flags |= HFCF_RIO;
1884 			else if (!strcmp($1, "codel"))
1885 				hfsc_opts.flags |= HFCF_CODEL;
1886 			else {
1887 				yyerror("unknown hfsc flag \"%s\"", $1);
1888 				free($1);
1889 				YYERROR;
1890 			}
1891 			free($1);
1892 		}
1893 		;
1894 
1895 fairq_opts	:	{
1896 				bzero(&fairq_opts,
1897 				    sizeof(struct node_fairq_opts));
1898 			}
1899 		    fairqopts_list				{
1900 			$$ = fairq_opts;
1901 		}
1902 		;
1903 
1904 fairqopts_list	: fairqopts_item
1905 		| fairqopts_list comma fairqopts_item
1906 		;
1907 
1908 fairqopts_item	: LINKSHARE bandwidth				{
1909 			if (fairq_opts.linkshare.used) {
1910 				yyerror("linkshare already specified");
1911 				YYERROR;
1912 			}
1913 			fairq_opts.linkshare.m2 = $2;
1914 			fairq_opts.linkshare.used = 1;
1915 		}
1916 		| LINKSHARE '(' bandwidth number bandwidth ')'	{
1917 			if (fairq_opts.linkshare.used) {
1918 				yyerror("linkshare already specified");
1919 				YYERROR;
1920 			}
1921 			fairq_opts.linkshare.m1 = $3;
1922 			fairq_opts.linkshare.d = $4;
1923 			fairq_opts.linkshare.m2 = $5;
1924 			fairq_opts.linkshare.used = 1;
1925 		}
1926 		| HOGS bandwidth {
1927 			fairq_opts.hogs_bw = $2;
1928 		}
1929 		| BUCKETS number {
1930 			fairq_opts.nbuckets = $2;
1931 		}
1932 		| STRING	{
1933 			if (!strcmp($1, "default"))
1934 				fairq_opts.flags |= FARF_DEFAULTCLASS;
1935 			else if (!strcmp($1, "red"))
1936 				fairq_opts.flags |= FARF_RED;
1937 			else if (!strcmp($1, "ecn"))
1938 				fairq_opts.flags |= FARF_RED|FARF_ECN;
1939 			else if (!strcmp($1, "rio"))
1940 				fairq_opts.flags |= FARF_RIO;
1941 			else if (!strcmp($1, "codel"))
1942 				fairq_opts.flags |= FARF_CODEL;
1943 			else {
1944 				yyerror("unknown fairq flag \"%s\"", $1);
1945 				free($1);
1946 				YYERROR;
1947 			}
1948 			free($1);
1949 		}
1950 		;
1951 
1952 codel_opts	:	{
1953 				bzero(&codel_opts,
1954 				    sizeof(struct codel_opts));
1955 			}
1956 		    codelopts_list				{
1957 			$$ = codel_opts;
1958 		}
1959 		;
1960 
1961 codelopts_list	: codelopts_item
1962 		| codelopts_list comma codelopts_item
1963 		;
1964 
1965 codelopts_item	: INTERVAL number				{
1966 			if (codel_opts.interval) {
1967 				yyerror("interval already specified");
1968 				YYERROR;
1969 			}
1970 			codel_opts.interval = $2;
1971 		}
1972 		| TARGET number					{
1973 			if (codel_opts.target) {
1974 				yyerror("target already specified");
1975 				YYERROR;
1976 			}
1977 			codel_opts.target = $2;
1978 		}
1979 		| STRING					{
1980 			if (!strcmp($1, "ecn"))
1981 				codel_opts.ecn = 1;
1982 			else {
1983 				yyerror("unknown codel option \"%s\"", $1);
1984 				free($1);
1985 				YYERROR;
1986 			}
1987 			free($1);
1988 		}
1989 		;
1990 
1991 qassign		: /* empty */		{ $$ = NULL; }
1992 		| qassign_item		{ $$ = $1; }
1993 		| '{' optnl qassign_list '}'	{ $$ = $3; }
1994 		;
1995 
1996 qassign_list	: qassign_item optnl		{ $$ = $1; }
1997 		| qassign_list comma qassign_item optnl	{
1998 			$1->tail->next = $3;
1999 			$1->tail = $3;
2000 			$$ = $1;
2001 		}
2002 		;
2003 
2004 qassign_item	: STRING			{
2005 			$$ = calloc(1, sizeof(struct node_queue));
2006 			if ($$ == NULL)
2007 				err(1, "qassign_item: calloc");
2008 			if (strlcpy($$->queue, $1, sizeof($$->queue)) >=
2009 			    sizeof($$->queue)) {
2010 				yyerror("queue name '%s' too long (max "
2011 				    "%d chars)", $1, sizeof($$->queue)-1);
2012 				free($1);
2013 				free($$);
2014 				YYERROR;
2015 			}
2016 			free($1);
2017 			$$->next = NULL;
2018 			$$->tail = $$;
2019 		}
2020 		;
2021 
2022 pfrule		: action dir logquick interface route af proto fromto
2023 		    filter_opts
2024 		{
2025 			struct pf_rule		 r;
2026 			struct node_state_opt	*o;
2027 			struct node_proto	*proto;
2028 			int			 srctrack = 0;
2029 			int			 statelock = 0;
2030 			int			 adaptive = 0;
2031 			int			 defaults = 0;
2032 
2033 			if (check_rulestate(PFCTL_STATE_FILTER))
2034 				YYERROR;
2035 
2036 			memset(&r, 0, sizeof(r));
2037 
2038 			r.action = $1.b1;
2039 			switch ($1.b2) {
2040 			case PFRULE_RETURNRST:
2041 				r.rule_flag |= PFRULE_RETURNRST;
2042 				r.return_ttl = $1.w;
2043 				break;
2044 			case PFRULE_RETURNICMP:
2045 				r.rule_flag |= PFRULE_RETURNICMP;
2046 				r.return_icmp = $1.w;
2047 				r.return_icmp6 = $1.w2;
2048 				break;
2049 			case PFRULE_RETURN:
2050 				r.rule_flag |= PFRULE_RETURN;
2051 				r.return_icmp = $1.w;
2052 				r.return_icmp6 = $1.w2;
2053 				break;
2054 			}
2055 			r.direction = $2;
2056 			r.log = $3.log;
2057 			r.logif = $3.logif;
2058 			r.quick = $3.quick;
2059 			r.prob = $9.prob;
2060 			r.rtableid = $9.rtableid;
2061 
2062 			if ($9.marker & FOM_PRIO) {
2063 				if ($9.prio == 0)
2064 					r.prio = PF_PRIO_ZERO;
2065 				else
2066 					r.prio = $9.prio;
2067 			}
2068 			if ($9.marker & FOM_SETPRIO) {
2069 				r.set_prio[0] = $9.set_prio[0];
2070 				r.set_prio[1] = $9.set_prio[1];
2071 				r.scrub_flags |= PFSTATE_SETPRIO;
2072 			}
2073 
2074 			r.af = $6;
2075 			if ($9.tag)
2076 				if (strlcpy(r.tagname, $9.tag,
2077 				    PF_TAG_NAME_SIZE) >= PF_TAG_NAME_SIZE) {
2078 					yyerror("tag too long, max %u chars",
2079 					    PF_TAG_NAME_SIZE - 1);
2080 					YYERROR;
2081 				}
2082 			if ($9.match_tag)
2083 				if (strlcpy(r.match_tagname, $9.match_tag,
2084 				    PF_TAG_NAME_SIZE) >= PF_TAG_NAME_SIZE) {
2085 					yyerror("tag too long, max %u chars",
2086 					    PF_TAG_NAME_SIZE - 1);
2087 					YYERROR;
2088 				}
2089 			r.match_tag_not = $9.match_tag_not;
2090 			if (rule_label(&r, $9.label))
2091 				YYERROR;
2092 			free($9.label);
2093 			r.flags = $9.flags.b1;
2094 			r.flagset = $9.flags.b2;
2095 			if (($9.flags.b1 & $9.flags.b2) != $9.flags.b1) {
2096 				yyerror("flags always false");
2097 				YYERROR;
2098 			}
2099 			if ($9.flags.b1 || $9.flags.b2 || $8.src_os) {
2100 				for (proto = $7; proto != NULL &&
2101 				    proto->proto != IPPROTO_TCP;
2102 				    proto = proto->next)
2103 					;	/* nothing */
2104 				if (proto == NULL && $7 != NULL) {
2105 					if ($9.flags.b1 || $9.flags.b2)
2106 						yyerror(
2107 						    "flags only apply to tcp");
2108 					if ($8.src_os)
2109 						yyerror(
2110 						    "OS fingerprinting only "
2111 						    "apply to tcp");
2112 					YYERROR;
2113 				}
2114 #if 0
2115 				if (($9.flags.b1 & parse_flags("S")) == 0 &&
2116 				    $8.src_os) {
2117 					yyerror("OS fingerprinting requires "
2118 					    "the SYN TCP flag (flags S/SA)");
2119 					YYERROR;
2120 				}
2121 #endif
2122 			}
2123 
2124 			r.tos = $9.tos;
2125 			r.keep_state = $9.keep.action;
2126 			o = $9.keep.options;
2127 
2128 			/* 'keep state' by default on pass rules. */
2129 			if (!r.keep_state && !r.action &&
2130 			    !($9.marker & FOM_KEEP)) {
2131 				r.keep_state = PF_STATE_NORMAL;
2132 				o = keep_state_defaults;
2133 				defaults = 1;
2134 			}
2135 
2136 			while (o) {
2137 				struct node_state_opt	*p = o;
2138 
2139 				switch (o->type) {
2140 				case PF_STATE_OPT_MAX:
2141 					if (r.max_states) {
2142 						yyerror("state option 'max' "
2143 						    "multiple definitions");
2144 						YYERROR;
2145 					}
2146 					r.max_states = o->data.max_states;
2147 					break;
2148 				case PF_STATE_OPT_NOSYNC:
2149 					if (r.rule_flag & PFRULE_NOSYNC) {
2150 						yyerror("state option 'sync' "
2151 						    "multiple definitions");
2152 						YYERROR;
2153 					}
2154 					r.rule_flag |= PFRULE_NOSYNC;
2155 					break;
2156 				case PF_STATE_OPT_SRCTRACK:
2157 					if (srctrack) {
2158 						yyerror("state option "
2159 						    "'source-track' "
2160 						    "multiple definitions");
2161 						YYERROR;
2162 					}
2163 					srctrack =  o->data.src_track;
2164 					r.rule_flag |= PFRULE_SRCTRACK;
2165 					break;
2166 				case PF_STATE_OPT_MAX_SRC_STATES:
2167 					if (r.max_src_states) {
2168 						yyerror("state option "
2169 						    "'max-src-states' "
2170 						    "multiple definitions");
2171 						YYERROR;
2172 					}
2173 					if (o->data.max_src_states == 0) {
2174 						yyerror("'max-src-states' must "
2175 						    "be > 0");
2176 						YYERROR;
2177 					}
2178 					r.max_src_states =
2179 					    o->data.max_src_states;
2180 					r.rule_flag |= PFRULE_SRCTRACK;
2181 					break;
2182 				case PF_STATE_OPT_OVERLOAD:
2183 					if (r.overload_tblname[0]) {
2184 						yyerror("multiple 'overload' "
2185 						    "table definitions");
2186 						YYERROR;
2187 					}
2188 					if (strlcpy(r.overload_tblname,
2189 					    o->data.overload.tblname,
2190 					    PF_TABLE_NAME_SIZE) >=
2191 					    PF_TABLE_NAME_SIZE) {
2192 						yyerror("state option: "
2193 						    "strlcpy");
2194 						YYERROR;
2195 					}
2196 					r.flush = o->data.overload.flush;
2197 					break;
2198 				case PF_STATE_OPT_MAX_SRC_CONN:
2199 					if (r.max_src_conn) {
2200 						yyerror("state option "
2201 						    "'max-src-conn' "
2202 						    "multiple definitions");
2203 						YYERROR;
2204 					}
2205 					if (o->data.max_src_conn == 0) {
2206 						yyerror("'max-src-conn' "
2207 						    "must be > 0");
2208 						YYERROR;
2209 					}
2210 					r.max_src_conn =
2211 					    o->data.max_src_conn;
2212 					r.rule_flag |= PFRULE_SRCTRACK |
2213 					    PFRULE_RULESRCTRACK;
2214 					break;
2215 				case PF_STATE_OPT_MAX_SRC_CONN_RATE:
2216 					if (r.max_src_conn_rate.limit) {
2217 						yyerror("state option "
2218 						    "'max-src-conn-rate' "
2219 						    "multiple definitions");
2220 						YYERROR;
2221 					}
2222 					if (!o->data.max_src_conn_rate.limit ||
2223 					    !o->data.max_src_conn_rate.seconds) {
2224 						yyerror("'max-src-conn-rate' "
2225 						    "values must be > 0");
2226 						YYERROR;
2227 					}
2228 					if (o->data.max_src_conn_rate.limit >
2229 					    PF_THRESHOLD_MAX) {
2230 						yyerror("'max-src-conn-rate' "
2231 						    "maximum rate must be < %u",
2232 						    PF_THRESHOLD_MAX);
2233 						YYERROR;
2234 					}
2235 					r.max_src_conn_rate.limit =
2236 					    o->data.max_src_conn_rate.limit;
2237 					r.max_src_conn_rate.seconds =
2238 					    o->data.max_src_conn_rate.seconds;
2239 					r.rule_flag |= PFRULE_SRCTRACK |
2240 					    PFRULE_RULESRCTRACK;
2241 					break;
2242 				case PF_STATE_OPT_MAX_SRC_NODES:
2243 					if (r.max_src_nodes) {
2244 						yyerror("state option "
2245 						    "'max-src-nodes' "
2246 						    "multiple definitions");
2247 						YYERROR;
2248 					}
2249 					if (o->data.max_src_nodes == 0) {
2250 						yyerror("'max-src-nodes' must "
2251 						    "be > 0");
2252 						YYERROR;
2253 					}
2254 					r.max_src_nodes =
2255 					    o->data.max_src_nodes;
2256 					r.rule_flag |= PFRULE_SRCTRACK |
2257 					    PFRULE_RULESRCTRACK;
2258 					break;
2259 				case PF_STATE_OPT_STATELOCK:
2260 					if (statelock) {
2261 						yyerror("state locking option: "
2262 						    "multiple definitions");
2263 						YYERROR;
2264 					}
2265 					statelock = 1;
2266 					r.rule_flag |= o->data.statelock;
2267 					break;
2268 				case PF_STATE_OPT_SLOPPY:
2269 					if (r.rule_flag & PFRULE_STATESLOPPY) {
2270 						yyerror("state sloppy option: "
2271 						    "multiple definitions");
2272 						YYERROR;
2273 					}
2274 					r.rule_flag |= PFRULE_STATESLOPPY;
2275 					break;
2276 				case PF_STATE_OPT_TIMEOUT:
2277 					if (o->data.timeout.number ==
2278 					    PFTM_ADAPTIVE_START ||
2279 					    o->data.timeout.number ==
2280 					    PFTM_ADAPTIVE_END)
2281 						adaptive = 1;
2282 					if (r.timeout[o->data.timeout.number]) {
2283 						yyerror("state timeout %s "
2284 						    "multiple definitions",
2285 						    pf_timeouts[o->data.
2286 						    timeout.number].name);
2287 						YYERROR;
2288 					}
2289 					r.timeout[o->data.timeout.number] =
2290 					    o->data.timeout.seconds;
2291 				}
2292 				o = o->next;
2293 				if (!defaults)
2294 					free(p);
2295 			}
2296 
2297 			/* 'flags S/SA' by default on stateful rules */
2298 			if (!r.action && !r.flags && !r.flagset &&
2299 			    !$9.fragment && !($9.marker & FOM_FLAGS) &&
2300 			    r.keep_state) {
2301 				r.flags = parse_flags("S");
2302 				r.flagset =  parse_flags("SA");
2303 			}
2304 			if (!adaptive && r.max_states) {
2305 				r.timeout[PFTM_ADAPTIVE_START] =
2306 				    (r.max_states / 10) * 6;
2307 				r.timeout[PFTM_ADAPTIVE_END] =
2308 				    (r.max_states / 10) * 12;
2309 			}
2310 			if (r.rule_flag & PFRULE_SRCTRACK) {
2311 				if (srctrack == PF_SRCTRACK_GLOBAL &&
2312 				    r.max_src_nodes) {
2313 					yyerror("'max-src-nodes' is "
2314 					    "incompatible with "
2315 					    "'source-track global'");
2316 					YYERROR;
2317 				}
2318 				if (srctrack == PF_SRCTRACK_GLOBAL &&
2319 				    r.max_src_conn) {
2320 					yyerror("'max-src-conn' is "
2321 					    "incompatible with "
2322 					    "'source-track global'");
2323 					YYERROR;
2324 				}
2325 				if (srctrack == PF_SRCTRACK_GLOBAL &&
2326 				    r.max_src_conn_rate.seconds) {
2327 					yyerror("'max-src-conn-rate' is "
2328 					    "incompatible with "
2329 					    "'source-track global'");
2330 					YYERROR;
2331 				}
2332 				if (r.timeout[PFTM_SRC_NODE] <
2333 				    r.max_src_conn_rate.seconds)
2334 					r.timeout[PFTM_SRC_NODE] =
2335 					    r.max_src_conn_rate.seconds;
2336 				r.rule_flag |= PFRULE_SRCTRACK;
2337 				if (srctrack == PF_SRCTRACK_RULE)
2338 					r.rule_flag |= PFRULE_RULESRCTRACK;
2339 			}
2340 			if (r.keep_state && !statelock)
2341 				r.rule_flag |= default_statelock;
2342 
2343 			if ($9.fragment)
2344 				r.rule_flag |= PFRULE_FRAGMENT;
2345 			r.allow_opts = $9.allowopts;
2346 
2347 			decide_address_family($8.src.host, &r.af);
2348 			decide_address_family($8.dst.host, &r.af);
2349 
2350 			if ($5.rt) {
2351 				if (!r.direction) {
2352 					yyerror("direction must be explicit "
2353 					    "with rules that specify routing");
2354 					YYERROR;
2355 				}
2356 				r.rt = $5.rt;
2357 				r.rpool.opts = $5.pool_opts;
2358 				if ($5.key != NULL)
2359 					memcpy(&r.rpool.key, $5.key,
2360 					    sizeof(struct pf_poolhashkey));
2361 			}
2362 			if (r.rt) {
2363 				decide_address_family($5.host, &r.af);
2364 				remove_invalid_hosts(&$5.host, &r.af);
2365 				if ($5.host == NULL) {
2366 					yyerror("no routing address with "
2367 					    "matching address family found.");
2368 					YYERROR;
2369 				}
2370 				if ((r.rpool.opts & PF_POOL_TYPEMASK) ==
2371 				    PF_POOL_NONE && ($5.host->next != NULL ||
2372 				    $5.host->addr.type == PF_ADDR_TABLE ||
2373 				    DYNIF_MULTIADDR($5.host->addr)))
2374 					r.rpool.opts |= PF_POOL_ROUNDROBIN;
2375 				if ((r.rpool.opts & PF_POOL_TYPEMASK) !=
2376 				    PF_POOL_ROUNDROBIN &&
2377 				    disallow_table($5.host, "tables are only "
2378 				    "supported in round-robin routing pools"))
2379 					YYERROR;
2380 				if ((r.rpool.opts & PF_POOL_TYPEMASK) !=
2381 				    PF_POOL_ROUNDROBIN &&
2382 				    disallow_alias($5.host, "interface (%s) "
2383 				    "is only supported in round-robin "
2384 				    "routing pools"))
2385 					YYERROR;
2386 				if ($5.host->next != NULL) {
2387 					if ((r.rpool.opts & PF_POOL_TYPEMASK) !=
2388 					    PF_POOL_ROUNDROBIN) {
2389 						yyerror("r.rpool.opts must "
2390 						    "be PF_POOL_ROUNDROBIN");
2391 						YYERROR;
2392 					}
2393 				}
2394 			}
2395 			if ($9.queues.qname != NULL) {
2396 				if (strlcpy(r.qname, $9.queues.qname,
2397 				    sizeof(r.qname)) >= sizeof(r.qname)) {
2398 					yyerror("rule qname too long (max "
2399 					    "%d chars)", sizeof(r.qname)-1);
2400 					YYERROR;
2401 				}
2402 				free($9.queues.qname);
2403 			}
2404 			if ($9.queues.pqname != NULL) {
2405 				if (strlcpy(r.pqname, $9.queues.pqname,
2406 				    sizeof(r.pqname)) >= sizeof(r.pqname)) {
2407 					yyerror("rule pqname too long (max "
2408 					    "%d chars)", sizeof(r.pqname)-1);
2409 					YYERROR;
2410 				}
2411 				free($9.queues.pqname);
2412 			}
2413 #ifdef __FreeBSD__
2414 			r.divert.port = $9.divert.port;
2415 #else
2416 			if ((r.divert.port = $9.divert.port)) {
2417 				if (r.direction == PF_OUT) {
2418 					if ($9.divert.addr) {
2419 						yyerror("address specified "
2420 						    "for outgoing divert");
2421 						YYERROR;
2422 					}
2423 					bzero(&r.divert.addr,
2424 					    sizeof(r.divert.addr));
2425 				} else {
2426 					if (!$9.divert.addr) {
2427 						yyerror("no address specified "
2428 						    "for incoming divert");
2429 						YYERROR;
2430 					}
2431 					if ($9.divert.addr->af != r.af) {
2432 						yyerror("address family "
2433 						    "mismatch for divert");
2434 						YYERROR;
2435 					}
2436 					r.divert.addr =
2437 					    $9.divert.addr->addr.v.a.addr;
2438 				}
2439 			}
2440 #endif
2441 
2442 			expand_rule(&r, $4, $5.host, $7, $8.src_os,
2443 			    $8.src.host, $8.src.port, $8.dst.host, $8.dst.port,
2444 			    $9.uid, $9.gid, $9.icmpspec, "");
2445 		}
2446 		;
2447 
2448 filter_opts	:	{
2449 				bzero(&filter_opts, sizeof filter_opts);
2450 				filter_opts.rtableid = -1;
2451 			}
2452 		    filter_opts_l
2453 			{ $$ = filter_opts; }
2454 		| /* empty */	{
2455 			bzero(&filter_opts, sizeof filter_opts);
2456 			filter_opts.rtableid = -1;
2457 			$$ = filter_opts;
2458 		}
2459 		;
2460 
2461 filter_opts_l	: filter_opts_l filter_opt
2462 		| filter_opt
2463 		;
2464 
2465 filter_opt	: USER uids {
2466 			if (filter_opts.uid)
2467 				$2->tail->next = filter_opts.uid;
2468 			filter_opts.uid = $2;
2469 		}
2470 		| GROUP gids {
2471 			if (filter_opts.gid)
2472 				$2->tail->next = filter_opts.gid;
2473 			filter_opts.gid = $2;
2474 		}
2475 		| flags {
2476 			if (filter_opts.marker & FOM_FLAGS) {
2477 				yyerror("flags cannot be redefined");
2478 				YYERROR;
2479 			}
2480 			filter_opts.marker |= FOM_FLAGS;
2481 			filter_opts.flags.b1 |= $1.b1;
2482 			filter_opts.flags.b2 |= $1.b2;
2483 			filter_opts.flags.w |= $1.w;
2484 			filter_opts.flags.w2 |= $1.w2;
2485 		}
2486 		| icmpspec {
2487 			if (filter_opts.marker & FOM_ICMP) {
2488 				yyerror("icmp-type cannot be redefined");
2489 				YYERROR;
2490 			}
2491 			filter_opts.marker |= FOM_ICMP;
2492 			filter_opts.icmpspec = $1;
2493 		}
2494 		| PRIO NUMBER {
2495 			if (filter_opts.marker & FOM_PRIO) {
2496 				yyerror("prio cannot be redefined");
2497 				YYERROR;
2498 			}
2499 			if ($2 < 0 || $2 > PF_PRIO_MAX) {
2500 				yyerror("prio must be 0 - %u", PF_PRIO_MAX);
2501 				YYERROR;
2502 			}
2503 			filter_opts.marker |= FOM_PRIO;
2504 			filter_opts.prio = $2;
2505 		}
2506 		| TOS tos {
2507 			if (filter_opts.marker & FOM_TOS) {
2508 				yyerror("tos cannot be redefined");
2509 				YYERROR;
2510 			}
2511 			filter_opts.marker |= FOM_TOS;
2512 			filter_opts.tos = $2;
2513 		}
2514 		| keep {
2515 			if (filter_opts.marker & FOM_KEEP) {
2516 				yyerror("modulate or keep cannot be redefined");
2517 				YYERROR;
2518 			}
2519 			filter_opts.marker |= FOM_KEEP;
2520 			filter_opts.keep.action = $1.action;
2521 			filter_opts.keep.options = $1.options;
2522 		}
2523 		| FRAGMENT {
2524 			filter_opts.fragment = 1;
2525 		}
2526 		| ALLOWOPTS {
2527 			filter_opts.allowopts = 1;
2528 		}
2529 		| label	{
2530 			if (filter_opts.label) {
2531 				yyerror("label cannot be redefined");
2532 				YYERROR;
2533 			}
2534 			filter_opts.label = $1;
2535 		}
2536 		| qname	{
2537 			if (filter_opts.queues.qname) {
2538 				yyerror("queue cannot be redefined");
2539 				YYERROR;
2540 			}
2541 			filter_opts.queues = $1;
2542 		}
2543 		| TAG string				{
2544 			filter_opts.tag = $2;
2545 		}
2546 		| not TAGGED string			{
2547 			filter_opts.match_tag = $3;
2548 			filter_opts.match_tag_not = $1;
2549 		}
2550 		| PROBABILITY probability		{
2551 			double	p;
2552 
2553 			p = floor($2 * UINT_MAX + 0.5);
2554 			if (p < 0.0 || p > UINT_MAX) {
2555 				yyerror("invalid probability: %lf", p);
2556 				YYERROR;
2557 			}
2558 			filter_opts.prob = (u_int32_t)p;
2559 			if (filter_opts.prob == 0)
2560 				filter_opts.prob = 1;
2561 		}
2562 		| RTABLE NUMBER				{
2563 			if ($2 < 0 || $2 > rt_tableid_max()) {
2564 				yyerror("invalid rtable id");
2565 				YYERROR;
2566 			}
2567 			filter_opts.rtableid = $2;
2568 		}
2569 		| DIVERTTO portplain {
2570 #ifdef __FreeBSD__
2571 			filter_opts.divert.port = $2.a;
2572 			if (!filter_opts.divert.port) {
2573 				yyerror("invalid divert port: %u", ntohs($2.a));
2574 				YYERROR;
2575 			}
2576 #endif
2577 		}
2578 		| DIVERTTO STRING PORT portplain {
2579 #ifndef __FreeBSD__
2580 			if ((filter_opts.divert.addr = host($2)) == NULL) {
2581 				yyerror("could not parse divert address: %s",
2582 				    $2);
2583 				free($2);
2584 				YYERROR;
2585 			}
2586 #else
2587 			if ($2)
2588 #endif
2589 			free($2);
2590 			filter_opts.divert.port = $4.a;
2591 			if (!filter_opts.divert.port) {
2592 				yyerror("invalid divert port: %u", ntohs($4.a));
2593 				YYERROR;
2594 			}
2595 		}
2596 		| DIVERTREPLY {
2597 #ifdef __FreeBSD__
2598 			yyerror("divert-reply has no meaning in FreeBSD pf(4)");
2599 			YYERROR;
2600 #else
2601 			filter_opts.divert.port = 1;	/* some random value */
2602 #endif
2603 		}
2604 		| filter_sets
2605 		;
2606 
2607 filter_sets	: SET '(' filter_sets_l ')'	{ $$ = filter_opts; }
2608 		| SET filter_set		{ $$ = filter_opts; }
2609 		;
2610 
2611 filter_sets_l	: filter_sets_l comma filter_set
2612 		| filter_set
2613 		;
2614 
2615 filter_set	: prio {
2616 			if (filter_opts.marker & FOM_SETPRIO) {
2617 				yyerror("prio cannot be redefined");
2618 				YYERROR;
2619 			}
2620 			filter_opts.marker |= FOM_SETPRIO;
2621 			filter_opts.set_prio[0] = $1.b1;
2622 			filter_opts.set_prio[1] = $1.b2;
2623 		}
2624 prio		: PRIO NUMBER {
2625 			if ($2 < 0 || $2 > PF_PRIO_MAX) {
2626 				yyerror("prio must be 0 - %u", PF_PRIO_MAX);
2627 				YYERROR;
2628 			}
2629 			$$.b1 = $$.b2 = $2;
2630 		}
2631 		| PRIO '(' NUMBER comma NUMBER ')' {
2632 			if ($3 < 0 || $3 > PF_PRIO_MAX ||
2633 			    $5 < 0 || $5 > PF_PRIO_MAX) {
2634 				yyerror("prio must be 0 - %u", PF_PRIO_MAX);
2635 				YYERROR;
2636 			}
2637 			$$.b1 = $3;
2638 			$$.b2 = $5;
2639 		}
2640 		;
2641 
2642 probability	: STRING				{
2643 			char	*e;
2644 			double	 p = strtod($1, &e);
2645 
2646 			if (*e == '%') {
2647 				p *= 0.01;
2648 				e++;
2649 			}
2650 			if (*e) {
2651 				yyerror("invalid probability: %s", $1);
2652 				free($1);
2653 				YYERROR;
2654 			}
2655 			free($1);
2656 			$$ = p;
2657 		}
2658 		| NUMBER				{
2659 			$$ = (double)$1;
2660 		}
2661 		;
2662 
2663 
2664 action		: PASS 			{
2665 			$$.b1 = PF_PASS;
2666 			$$.b2 = failpolicy;
2667 			$$.w = returnicmpdefault;
2668 			$$.w2 = returnicmp6default;
2669 		}
2670 		| BLOCK blockspec	{ $$ = $2; $$.b1 = PF_DROP; }
2671 		;
2672 
2673 blockspec	: /* empty */		{
2674 			$$.b2 = blockpolicy;
2675 			$$.w = returnicmpdefault;
2676 			$$.w2 = returnicmp6default;
2677 		}
2678 		| DROP			{
2679 			$$.b2 = PFRULE_DROP;
2680 			$$.w = 0;
2681 			$$.w2 = 0;
2682 		}
2683 		| RETURNRST		{
2684 			$$.b2 = PFRULE_RETURNRST;
2685 			$$.w = 0;
2686 			$$.w2 = 0;
2687 		}
2688 		| RETURNRST '(' TTL NUMBER ')'	{
2689 			if ($4 < 0 || $4 > 255) {
2690 				yyerror("illegal ttl value %d", $4);
2691 				YYERROR;
2692 			}
2693 			$$.b2 = PFRULE_RETURNRST;
2694 			$$.w = $4;
2695 			$$.w2 = 0;
2696 		}
2697 		| RETURNICMP		{
2698 			$$.b2 = PFRULE_RETURNICMP;
2699 			$$.w = returnicmpdefault;
2700 			$$.w2 = returnicmp6default;
2701 		}
2702 		| RETURNICMP6		{
2703 			$$.b2 = PFRULE_RETURNICMP;
2704 			$$.w = returnicmpdefault;
2705 			$$.w2 = returnicmp6default;
2706 		}
2707 		| RETURNICMP '(' reticmpspec ')'	{
2708 			$$.b2 = PFRULE_RETURNICMP;
2709 			$$.w = $3;
2710 			$$.w2 = returnicmpdefault;
2711 		}
2712 		| RETURNICMP6 '(' reticmp6spec ')'	{
2713 			$$.b2 = PFRULE_RETURNICMP;
2714 			$$.w = returnicmpdefault;
2715 			$$.w2 = $3;
2716 		}
2717 		| RETURNICMP '(' reticmpspec comma reticmp6spec ')' {
2718 			$$.b2 = PFRULE_RETURNICMP;
2719 			$$.w = $3;
2720 			$$.w2 = $5;
2721 		}
2722 		| RETURN {
2723 			$$.b2 = PFRULE_RETURN;
2724 			$$.w = returnicmpdefault;
2725 			$$.w2 = returnicmp6default;
2726 		}
2727 		;
2728 
2729 reticmpspec	: STRING			{
2730 			if (!($$ = parseicmpspec($1, AF_INET))) {
2731 				free($1);
2732 				YYERROR;
2733 			}
2734 			free($1);
2735 		}
2736 		| NUMBER			{
2737 			u_int8_t		icmptype;
2738 
2739 			if ($1 < 0 || $1 > 255) {
2740 				yyerror("invalid icmp code %lu", $1);
2741 				YYERROR;
2742 			}
2743 			icmptype = returnicmpdefault >> 8;
2744 			$$ = (icmptype << 8 | $1);
2745 		}
2746 		;
2747 
2748 reticmp6spec	: STRING			{
2749 			if (!($$ = parseicmpspec($1, AF_INET6))) {
2750 				free($1);
2751 				YYERROR;
2752 			}
2753 			free($1);
2754 		}
2755 		| NUMBER			{
2756 			u_int8_t		icmptype;
2757 
2758 			if ($1 < 0 || $1 > 255) {
2759 				yyerror("invalid icmp code %lu", $1);
2760 				YYERROR;
2761 			}
2762 			icmptype = returnicmp6default >> 8;
2763 			$$ = (icmptype << 8 | $1);
2764 		}
2765 		;
2766 
2767 dir		: /* empty */			{ $$ = PF_INOUT; }
2768 		| IN				{ $$ = PF_IN; }
2769 		| OUT				{ $$ = PF_OUT; }
2770 		;
2771 
2772 quick		: /* empty */			{ $$.quick = 0; }
2773 		| QUICK				{ $$.quick = 1; }
2774 		;
2775 
2776 logquick	: /* empty */	{ $$.log = 0; $$.quick = 0; $$.logif = 0; }
2777 		| log		{ $$ = $1; $$.quick = 0; }
2778 		| QUICK		{ $$.quick = 1; $$.log = 0; $$.logif = 0; }
2779 		| log QUICK	{ $$ = $1; $$.quick = 1; }
2780 		| QUICK log	{ $$ = $2; $$.quick = 1; }
2781 		;
2782 
2783 log		: LOG			{ $$.log = PF_LOG; $$.logif = 0; }
2784 		| LOG '(' logopts ')'	{
2785 			$$.log = PF_LOG | $3.log;
2786 			$$.logif = $3.logif;
2787 		}
2788 		;
2789 
2790 logopts		: logopt			{ $$ = $1; }
2791 		| logopts comma logopt		{
2792 			$$.log = $1.log | $3.log;
2793 			$$.logif = $3.logif;
2794 			if ($$.logif == 0)
2795 				$$.logif = $1.logif;
2796 		}
2797 		;
2798 
2799 logopt		: ALL		{ $$.log = PF_LOG_ALL; $$.logif = 0; }
2800 		| USER		{ $$.log = PF_LOG_SOCKET_LOOKUP; $$.logif = 0; }
2801 		| GROUP		{ $$.log = PF_LOG_SOCKET_LOOKUP; $$.logif = 0; }
2802 		| TO string	{
2803 			const char	*errstr;
2804 			u_int		 i;
2805 
2806 			$$.log = 0;
2807 			if (strncmp($2, "pflog", 5)) {
2808 				yyerror("%s: should be a pflog interface", $2);
2809 				free($2);
2810 				YYERROR;
2811 			}
2812 			i = strtonum($2 + 5, 0, 255, &errstr);
2813 			if (errstr) {
2814 				yyerror("%s: %s", $2, errstr);
2815 				free($2);
2816 				YYERROR;
2817 			}
2818 			free($2);
2819 			$$.logif = i;
2820 		}
2821 		;
2822 
2823 interface	: /* empty */			{ $$ = NULL; }
2824 		| ON if_item_not		{ $$ = $2; }
2825 		| ON '{' optnl if_list '}'	{ $$ = $4; }
2826 		;
2827 
2828 if_list		: if_item_not optnl		{ $$ = $1; }
2829 		| if_list comma if_item_not optnl	{
2830 			$1->tail->next = $3;
2831 			$1->tail = $3;
2832 			$$ = $1;
2833 		}
2834 		;
2835 
2836 if_item_not	: not if_item			{ $$ = $2; $$->not = $1; }
2837 		;
2838 
2839 if_item		: STRING			{
2840 			struct node_host	*n;
2841 
2842 			$$ = calloc(1, sizeof(struct node_if));
2843 			if ($$ == NULL)
2844 				err(1, "if_item: calloc");
2845 			if (strlcpy($$->ifname, $1, sizeof($$->ifname)) >=
2846 			    sizeof($$->ifname)) {
2847 				free($1);
2848 				free($$);
2849 				yyerror("interface name too long");
2850 				YYERROR;
2851 			}
2852 
2853 			if ((n = ifa_exists($1)) != NULL)
2854 				$$->ifa_flags = n->ifa_flags;
2855 
2856 			free($1);
2857 			$$->not = 0;
2858 			$$->next = NULL;
2859 			$$->tail = $$;
2860 		}
2861 		;
2862 
2863 af		: /* empty */			{ $$ = 0; }
2864 		| INET				{ $$ = AF_INET; }
2865 		| INET6				{ $$ = AF_INET6; }
2866 		;
2867 
2868 proto		: /* empty */				{ $$ = NULL; }
2869 		| PROTO proto_item			{ $$ = $2; }
2870 		| PROTO '{' optnl proto_list '}'	{ $$ = $4; }
2871 		;
2872 
2873 proto_list	: proto_item optnl		{ $$ = $1; }
2874 		| proto_list comma proto_item optnl	{
2875 			$1->tail->next = $3;
2876 			$1->tail = $3;
2877 			$$ = $1;
2878 		}
2879 		;
2880 
2881 proto_item	: protoval			{
2882 			u_int8_t	pr;
2883 
2884 			pr = (u_int8_t)$1;
2885 			if (pr == 0) {
2886 				yyerror("proto 0 cannot be used");
2887 				YYERROR;
2888 			}
2889 			$$ = calloc(1, sizeof(struct node_proto));
2890 			if ($$ == NULL)
2891 				err(1, "proto_item: calloc");
2892 			$$->proto = pr;
2893 			$$->next = NULL;
2894 			$$->tail = $$;
2895 		}
2896 		;
2897 
2898 protoval	: STRING			{
2899 			struct protoent	*p;
2900 
2901 			p = getprotobyname($1);
2902 			if (p == NULL) {
2903 				yyerror("unknown protocol %s", $1);
2904 				free($1);
2905 				YYERROR;
2906 			}
2907 			$$ = p->p_proto;
2908 			free($1);
2909 		}
2910 		| NUMBER			{
2911 			if ($1 < 0 || $1 > 255) {
2912 				yyerror("protocol outside range");
2913 				YYERROR;
2914 			}
2915 		}
2916 		;
2917 
2918 fromto		: ALL				{
2919 			$$.src.host = NULL;
2920 			$$.src.port = NULL;
2921 			$$.dst.host = NULL;
2922 			$$.dst.port = NULL;
2923 			$$.src_os = NULL;
2924 		}
2925 		| from os to			{
2926 			$$.src = $1;
2927 			$$.src_os = $2;
2928 			$$.dst = $3;
2929 		}
2930 		;
2931 
2932 os		: /* empty */			{ $$ = NULL; }
2933 		| OS xos			{ $$ = $2; }
2934 		| OS '{' optnl os_list '}'	{ $$ = $4; }
2935 		;
2936 
2937 xos		: STRING {
2938 			$$ = calloc(1, sizeof(struct node_os));
2939 			if ($$ == NULL)
2940 				err(1, "os: calloc");
2941 			$$->os = $1;
2942 			$$->tail = $$;
2943 		}
2944 		;
2945 
2946 os_list		: xos optnl 			{ $$ = $1; }
2947 		| os_list comma xos optnl	{
2948 			$1->tail->next = $3;
2949 			$1->tail = $3;
2950 			$$ = $1;
2951 		}
2952 		;
2953 
2954 from		: /* empty */			{
2955 			$$.host = NULL;
2956 			$$.port = NULL;
2957 		}
2958 		| FROM ipportspec		{
2959 			$$ = $2;
2960 		}
2961 		;
2962 
2963 to		: /* empty */			{
2964 			$$.host = NULL;
2965 			$$.port = NULL;
2966 		}
2967 		| TO ipportspec		{
2968 			if (disallow_urpf_failed($2.host, "\"urpf-failed\" is "
2969 			    "not permitted in a destination address"))
2970 				YYERROR;
2971 			$$ = $2;
2972 		}
2973 		;
2974 
2975 ipportspec	: ipspec			{
2976 			$$.host = $1;
2977 			$$.port = NULL;
2978 		}
2979 		| ipspec PORT portspec		{
2980 			$$.host = $1;
2981 			$$.port = $3;
2982 		}
2983 		| PORT portspec			{
2984 			$$.host = NULL;
2985 			$$.port = $2;
2986 		}
2987 		;
2988 
2989 optnl		: '\n' optnl
2990 		|
2991 		;
2992 
2993 ipspec		: ANY				{ $$ = NULL; }
2994 		| xhost				{ $$ = $1; }
2995 		| '{' optnl host_list '}'	{ $$ = $3; }
2996 		;
2997 
2998 toipspec	: TO ipspec			{ $$ = $2; }
2999 		| /* empty */			{ $$ = NULL; }
3000 		;
3001 
3002 host_list	: ipspec optnl			{ $$ = $1; }
3003 		| host_list comma ipspec optnl	{
3004 			if ($3 == NULL)
3005 				$$ = $1;
3006 			else if ($1 == NULL)
3007 				$$ = $3;
3008 			else {
3009 				$1->tail->next = $3;
3010 				$1->tail = $3->tail;
3011 				$$ = $1;
3012 			}
3013 		}
3014 		;
3015 
3016 xhost		: not host			{
3017 			struct node_host	*n;
3018 
3019 			for (n = $2; n != NULL; n = n->next)
3020 				n->not = $1;
3021 			$$ = $2;
3022 		}
3023 		| not NOROUTE			{
3024 			$$ = calloc(1, sizeof(struct node_host));
3025 			if ($$ == NULL)
3026 				err(1, "xhost: calloc");
3027 			$$->addr.type = PF_ADDR_NOROUTE;
3028 			$$->next = NULL;
3029 			$$->not = $1;
3030 			$$->tail = $$;
3031 		}
3032 		| not URPFFAILED		{
3033 			$$ = calloc(1, sizeof(struct node_host));
3034 			if ($$ == NULL)
3035 				err(1, "xhost: calloc");
3036 			$$->addr.type = PF_ADDR_URPFFAILED;
3037 			$$->next = NULL;
3038 			$$->not = $1;
3039 			$$->tail = $$;
3040 		}
3041 		;
3042 
3043 host		: STRING			{
3044 			if (($$ = host($1)) == NULL)	{
3045 				/* error. "any" is handled elsewhere */
3046 				free($1);
3047 				yyerror("could not parse host specification");
3048 				YYERROR;
3049 			}
3050 			free($1);
3051 
3052 		}
3053 		| STRING '-' STRING		{
3054 			struct node_host *b, *e;
3055 
3056 			if ((b = host($1)) == NULL || (e = host($3)) == NULL) {
3057 				free($1);
3058 				free($3);
3059 				yyerror("could not parse host specification");
3060 				YYERROR;
3061 			}
3062 			if (b->af != e->af ||
3063 			    b->addr.type != PF_ADDR_ADDRMASK ||
3064 			    e->addr.type != PF_ADDR_ADDRMASK ||
3065 			    unmask(&b->addr.v.a.mask, b->af) !=
3066 			    (b->af == AF_INET ? 32 : 128) ||
3067 			    unmask(&e->addr.v.a.mask, e->af) !=
3068 			    (e->af == AF_INET ? 32 : 128) ||
3069 			    b->next != NULL || b->not ||
3070 			    e->next != NULL || e->not) {
3071 				free(b);
3072 				free(e);
3073 				free($1);
3074 				free($3);
3075 				yyerror("invalid address range");
3076 				YYERROR;
3077 			}
3078 			memcpy(&b->addr.v.a.mask, &e->addr.v.a.addr,
3079 			    sizeof(b->addr.v.a.mask));
3080 			b->addr.type = PF_ADDR_RANGE;
3081 			$$ = b;
3082 			free(e);
3083 			free($1);
3084 			free($3);
3085 		}
3086 		| STRING '/' NUMBER		{
3087 			char	*buf;
3088 
3089 			if (asprintf(&buf, "%s/%lld", $1, (long long)$3) == -1)
3090 				err(1, "host: asprintf");
3091 			free($1);
3092 			if (($$ = host(buf)) == NULL)	{
3093 				/* error. "any" is handled elsewhere */
3094 				free(buf);
3095 				yyerror("could not parse host specification");
3096 				YYERROR;
3097 			}
3098 			free(buf);
3099 		}
3100 		| NUMBER '/' NUMBER		{
3101 			char	*buf;
3102 
3103 			/* ie. for 10/8 parsing */
3104 #ifdef __FreeBSD__
3105 			if (asprintf(&buf, "%lld/%lld", (long long)$1, (long long)$3) == -1)
3106 #else
3107 			if (asprintf(&buf, "%lld/%lld", $1, $3) == -1)
3108 #endif
3109 				err(1, "host: asprintf");
3110 			if (($$ = host(buf)) == NULL)	{
3111 				/* error. "any" is handled elsewhere */
3112 				free(buf);
3113 				yyerror("could not parse host specification");
3114 				YYERROR;
3115 			}
3116 			free(buf);
3117 		}
3118 		| dynaddr
3119 		| dynaddr '/' NUMBER		{
3120 			struct node_host	*n;
3121 
3122 			if ($3 < 0 || $3 > 128) {
3123 				yyerror("bit number too big");
3124 				YYERROR;
3125 			}
3126 			$$ = $1;
3127 			for (n = $1; n != NULL; n = n->next)
3128 				set_ipmask(n, $3);
3129 		}
3130 		| '<' STRING '>'	{
3131 			if (strlen($2) >= PF_TABLE_NAME_SIZE) {
3132 				yyerror("table name '%s' too long", $2);
3133 				free($2);
3134 				YYERROR;
3135 			}
3136 			$$ = calloc(1, sizeof(struct node_host));
3137 			if ($$ == NULL)
3138 				err(1, "host: calloc");
3139 			$$->addr.type = PF_ADDR_TABLE;
3140 			if (strlcpy($$->addr.v.tblname, $2,
3141 			    sizeof($$->addr.v.tblname)) >=
3142 			    sizeof($$->addr.v.tblname))
3143 				errx(1, "host: strlcpy");
3144 			free($2);
3145 			$$->next = NULL;
3146 			$$->tail = $$;
3147 		}
3148 		;
3149 
3150 number		: NUMBER
3151 		| STRING		{
3152 			u_long	ulval;
3153 
3154 			if (atoul($1, &ulval) == -1) {
3155 				yyerror("%s is not a number", $1);
3156 				free($1);
3157 				YYERROR;
3158 			} else
3159 				$$ = ulval;
3160 			free($1);
3161 		}
3162 		;
3163 
3164 dynaddr		: '(' STRING ')'		{
3165 			int	 flags = 0;
3166 			char	*p, *op;
3167 
3168 			op = $2;
3169 			if (!isalpha(op[0])) {
3170 				yyerror("invalid interface name '%s'", op);
3171 				free(op);
3172 				YYERROR;
3173 			}
3174 			while ((p = strrchr($2, ':')) != NULL) {
3175 				if (!strcmp(p+1, "network"))
3176 					flags |= PFI_AFLAG_NETWORK;
3177 				else if (!strcmp(p+1, "broadcast"))
3178 					flags |= PFI_AFLAG_BROADCAST;
3179 				else if (!strcmp(p+1, "peer"))
3180 					flags |= PFI_AFLAG_PEER;
3181 				else if (!strcmp(p+1, "0"))
3182 					flags |= PFI_AFLAG_NOALIAS;
3183 				else {
3184 					yyerror("interface %s has bad modifier",
3185 					    $2);
3186 					free(op);
3187 					YYERROR;
3188 				}
3189 				*p = '\0';
3190 			}
3191 			if (flags & (flags - 1) & PFI_AFLAG_MODEMASK) {
3192 				free(op);
3193 				yyerror("illegal combination of "
3194 				    "interface modifiers");
3195 				YYERROR;
3196 			}
3197 			$$ = calloc(1, sizeof(struct node_host));
3198 			if ($$ == NULL)
3199 				err(1, "address: calloc");
3200 			$$->af = 0;
3201 			set_ipmask($$, 128);
3202 			$$->addr.type = PF_ADDR_DYNIFTL;
3203 			$$->addr.iflags = flags;
3204 			if (strlcpy($$->addr.v.ifname, $2,
3205 			    sizeof($$->addr.v.ifname)) >=
3206 			    sizeof($$->addr.v.ifname)) {
3207 				free(op);
3208 				free($$);
3209 				yyerror("interface name too long");
3210 				YYERROR;
3211 			}
3212 			free(op);
3213 			$$->next = NULL;
3214 			$$->tail = $$;
3215 		}
3216 		;
3217 
3218 portspec	: port_item			{ $$ = $1; }
3219 		| '{' optnl port_list '}'	{ $$ = $3; }
3220 		;
3221 
3222 port_list	: port_item optnl		{ $$ = $1; }
3223 		| port_list comma port_item optnl	{
3224 			$1->tail->next = $3;
3225 			$1->tail = $3;
3226 			$$ = $1;
3227 		}
3228 		;
3229 
3230 port_item	: portrange			{
3231 			$$ = calloc(1, sizeof(struct node_port));
3232 			if ($$ == NULL)
3233 				err(1, "port_item: calloc");
3234 			$$->port[0] = $1.a;
3235 			$$->port[1] = $1.b;
3236 			if ($1.t)
3237 				$$->op = PF_OP_RRG;
3238 			else
3239 				$$->op = PF_OP_EQ;
3240 			$$->next = NULL;
3241 			$$->tail = $$;
3242 		}
3243 		| unaryop portrange	{
3244 			if ($2.t) {
3245 				yyerror("':' cannot be used with an other "
3246 				    "port operator");
3247 				YYERROR;
3248 			}
3249 			$$ = calloc(1, sizeof(struct node_port));
3250 			if ($$ == NULL)
3251 				err(1, "port_item: calloc");
3252 			$$->port[0] = $2.a;
3253 			$$->port[1] = $2.b;
3254 			$$->op = $1;
3255 			$$->next = NULL;
3256 			$$->tail = $$;
3257 		}
3258 		| portrange PORTBINARY portrange	{
3259 			if ($1.t || $3.t) {
3260 				yyerror("':' cannot be used with an other "
3261 				    "port operator");
3262 				YYERROR;
3263 			}
3264 			$$ = calloc(1, sizeof(struct node_port));
3265 			if ($$ == NULL)
3266 				err(1, "port_item: calloc");
3267 			$$->port[0] = $1.a;
3268 			$$->port[1] = $3.a;
3269 			$$->op = $2;
3270 			$$->next = NULL;
3271 			$$->tail = $$;
3272 		}
3273 		;
3274 
3275 portplain	: numberstring			{
3276 			if (parseport($1, &$$, 0) == -1) {
3277 				free($1);
3278 				YYERROR;
3279 			}
3280 			free($1);
3281 		}
3282 		;
3283 
3284 portrange	: numberstring			{
3285 			if (parseport($1, &$$, PPORT_RANGE) == -1) {
3286 				free($1);
3287 				YYERROR;
3288 			}
3289 			free($1);
3290 		}
3291 		;
3292 
3293 uids		: uid_item			{ $$ = $1; }
3294 		| '{' optnl uid_list '}'	{ $$ = $3; }
3295 		;
3296 
3297 uid_list	: uid_item optnl		{ $$ = $1; }
3298 		| uid_list comma uid_item optnl	{
3299 			$1->tail->next = $3;
3300 			$1->tail = $3;
3301 			$$ = $1;
3302 		}
3303 		;
3304 
3305 uid_item	: uid				{
3306 			$$ = calloc(1, sizeof(struct node_uid));
3307 			if ($$ == NULL)
3308 				err(1, "uid_item: calloc");
3309 			$$->uid[0] = $1;
3310 			$$->uid[1] = $1;
3311 			$$->op = PF_OP_EQ;
3312 			$$->next = NULL;
3313 			$$->tail = $$;
3314 		}
3315 		| unaryop uid			{
3316 			if ($2 == UID_MAX && $1 != PF_OP_EQ && $1 != PF_OP_NE) {
3317 				yyerror("user unknown requires operator = or "
3318 				    "!=");
3319 				YYERROR;
3320 			}
3321 			$$ = calloc(1, sizeof(struct node_uid));
3322 			if ($$ == NULL)
3323 				err(1, "uid_item: calloc");
3324 			$$->uid[0] = $2;
3325 			$$->uid[1] = $2;
3326 			$$->op = $1;
3327 			$$->next = NULL;
3328 			$$->tail = $$;
3329 		}
3330 		| uid PORTBINARY uid		{
3331 			if ($1 == UID_MAX || $3 == UID_MAX) {
3332 				yyerror("user unknown requires operator = or "
3333 				    "!=");
3334 				YYERROR;
3335 			}
3336 			$$ = calloc(1, sizeof(struct node_uid));
3337 			if ($$ == NULL)
3338 				err(1, "uid_item: calloc");
3339 			$$->uid[0] = $1;
3340 			$$->uid[1] = $3;
3341 			$$->op = $2;
3342 			$$->next = NULL;
3343 			$$->tail = $$;
3344 		}
3345 		;
3346 
3347 uid		: STRING			{
3348 			if (!strcmp($1, "unknown"))
3349 				$$ = UID_MAX;
3350 			else {
3351 				struct passwd	*pw;
3352 
3353 				if ((pw = getpwnam($1)) == NULL) {
3354 					yyerror("unknown user %s", $1);
3355 					free($1);
3356 					YYERROR;
3357 				}
3358 				$$ = pw->pw_uid;
3359 			}
3360 			free($1);
3361 		}
3362 		| NUMBER			{
3363 			if ($1 < 0 || $1 >= UID_MAX) {
3364 				yyerror("illegal uid value %lu", $1);
3365 				YYERROR;
3366 			}
3367 			$$ = $1;
3368 		}
3369 		;
3370 
3371 gids		: gid_item			{ $$ = $1; }
3372 		| '{' optnl gid_list '}'	{ $$ = $3; }
3373 		;
3374 
3375 gid_list	: gid_item optnl		{ $$ = $1; }
3376 		| gid_list comma gid_item optnl	{
3377 			$1->tail->next = $3;
3378 			$1->tail = $3;
3379 			$$ = $1;
3380 		}
3381 		;
3382 
3383 gid_item	: gid				{
3384 			$$ = calloc(1, sizeof(struct node_gid));
3385 			if ($$ == NULL)
3386 				err(1, "gid_item: calloc");
3387 			$$->gid[0] = $1;
3388 			$$->gid[1] = $1;
3389 			$$->op = PF_OP_EQ;
3390 			$$->next = NULL;
3391 			$$->tail = $$;
3392 		}
3393 		| unaryop gid			{
3394 			if ($2 == GID_MAX && $1 != PF_OP_EQ && $1 != PF_OP_NE) {
3395 				yyerror("group unknown requires operator = or "
3396 				    "!=");
3397 				YYERROR;
3398 			}
3399 			$$ = calloc(1, sizeof(struct node_gid));
3400 			if ($$ == NULL)
3401 				err(1, "gid_item: calloc");
3402 			$$->gid[0] = $2;
3403 			$$->gid[1] = $2;
3404 			$$->op = $1;
3405 			$$->next = NULL;
3406 			$$->tail = $$;
3407 		}
3408 		| gid PORTBINARY gid		{
3409 			if ($1 == GID_MAX || $3 == GID_MAX) {
3410 				yyerror("group unknown requires operator = or "
3411 				    "!=");
3412 				YYERROR;
3413 			}
3414 			$$ = calloc(1, sizeof(struct node_gid));
3415 			if ($$ == NULL)
3416 				err(1, "gid_item: calloc");
3417 			$$->gid[0] = $1;
3418 			$$->gid[1] = $3;
3419 			$$->op = $2;
3420 			$$->next = NULL;
3421 			$$->tail = $$;
3422 		}
3423 		;
3424 
3425 gid		: STRING			{
3426 			if (!strcmp($1, "unknown"))
3427 				$$ = GID_MAX;
3428 			else {
3429 				struct group	*grp;
3430 
3431 				if ((grp = getgrnam($1)) == NULL) {
3432 					yyerror("unknown group %s", $1);
3433 					free($1);
3434 					YYERROR;
3435 				}
3436 				$$ = grp->gr_gid;
3437 			}
3438 			free($1);
3439 		}
3440 		| NUMBER			{
3441 			if ($1 < 0 || $1 >= GID_MAX) {
3442 				yyerror("illegal gid value %lu", $1);
3443 				YYERROR;
3444 			}
3445 			$$ = $1;
3446 		}
3447 		;
3448 
3449 flag		: STRING			{
3450 			int	f;
3451 
3452 			if ((f = parse_flags($1)) < 0) {
3453 				yyerror("bad flags %s", $1);
3454 				free($1);
3455 				YYERROR;
3456 			}
3457 			free($1);
3458 			$$.b1 = f;
3459 		}
3460 		;
3461 
3462 flags		: FLAGS flag '/' flag	{ $$.b1 = $2.b1; $$.b2 = $4.b1; }
3463 		| FLAGS '/' flag	{ $$.b1 = 0; $$.b2 = $3.b1; }
3464 		| FLAGS ANY		{ $$.b1 = 0; $$.b2 = 0; }
3465 		;
3466 
3467 icmpspec	: ICMPTYPE icmp_item			{ $$ = $2; }
3468 		| ICMPTYPE '{' optnl icmp_list '}'	{ $$ = $4; }
3469 		| ICMP6TYPE icmp6_item			{ $$ = $2; }
3470 		| ICMP6TYPE '{' optnl icmp6_list '}'	{ $$ = $4; }
3471 		;
3472 
3473 icmp_list	: icmp_item optnl		{ $$ = $1; }
3474 		| icmp_list comma icmp_item optnl {
3475 			$1->tail->next = $3;
3476 			$1->tail = $3;
3477 			$$ = $1;
3478 		}
3479 		;
3480 
3481 icmp6_list	: icmp6_item optnl		{ $$ = $1; }
3482 		| icmp6_list comma icmp6_item optnl {
3483 			$1->tail->next = $3;
3484 			$1->tail = $3;
3485 			$$ = $1;
3486 		}
3487 		;
3488 
3489 icmp_item	: icmptype		{
3490 			$$ = calloc(1, sizeof(struct node_icmp));
3491 			if ($$ == NULL)
3492 				err(1, "icmp_item: calloc");
3493 			$$->type = $1;
3494 			$$->code = 0;
3495 			$$->proto = IPPROTO_ICMP;
3496 			$$->next = NULL;
3497 			$$->tail = $$;
3498 		}
3499 		| icmptype CODE STRING	{
3500 			const struct icmpcodeent	*p;
3501 
3502 			if ((p = geticmpcodebyname($1-1, $3, AF_INET)) == NULL) {
3503 				yyerror("unknown icmp-code %s", $3);
3504 				free($3);
3505 				YYERROR;
3506 			}
3507 
3508 			free($3);
3509 			$$ = calloc(1, sizeof(struct node_icmp));
3510 			if ($$ == NULL)
3511 				err(1, "icmp_item: calloc");
3512 			$$->type = $1;
3513 			$$->code = p->code + 1;
3514 			$$->proto = IPPROTO_ICMP;
3515 			$$->next = NULL;
3516 			$$->tail = $$;
3517 		}
3518 		| icmptype CODE NUMBER	{
3519 			if ($3 < 0 || $3 > 255) {
3520 				yyerror("illegal icmp-code %lu", $3);
3521 				YYERROR;
3522 			}
3523 			$$ = calloc(1, sizeof(struct node_icmp));
3524 			if ($$ == NULL)
3525 				err(1, "icmp_item: calloc");
3526 			$$->type = $1;
3527 			$$->code = $3 + 1;
3528 			$$->proto = IPPROTO_ICMP;
3529 			$$->next = NULL;
3530 			$$->tail = $$;
3531 		}
3532 		;
3533 
3534 icmp6_item	: icmp6type		{
3535 			$$ = calloc(1, sizeof(struct node_icmp));
3536 			if ($$ == NULL)
3537 				err(1, "icmp_item: calloc");
3538 			$$->type = $1;
3539 			$$->code = 0;
3540 			$$->proto = IPPROTO_ICMPV6;
3541 			$$->next = NULL;
3542 			$$->tail = $$;
3543 		}
3544 		| icmp6type CODE STRING	{
3545 			const struct icmpcodeent	*p;
3546 
3547 			if ((p = geticmpcodebyname($1-1, $3, AF_INET6)) == NULL) {
3548 				yyerror("unknown icmp6-code %s", $3);
3549 				free($3);
3550 				YYERROR;
3551 			}
3552 			free($3);
3553 
3554 			$$ = calloc(1, sizeof(struct node_icmp));
3555 			if ($$ == NULL)
3556 				err(1, "icmp_item: calloc");
3557 			$$->type = $1;
3558 			$$->code = p->code + 1;
3559 			$$->proto = IPPROTO_ICMPV6;
3560 			$$->next = NULL;
3561 			$$->tail = $$;
3562 		}
3563 		| icmp6type CODE NUMBER	{
3564 			if ($3 < 0 || $3 > 255) {
3565 				yyerror("illegal icmp-code %lu", $3);
3566 				YYERROR;
3567 			}
3568 			$$ = calloc(1, sizeof(struct node_icmp));
3569 			if ($$ == NULL)
3570 				err(1, "icmp_item: calloc");
3571 			$$->type = $1;
3572 			$$->code = $3 + 1;
3573 			$$->proto = IPPROTO_ICMPV6;
3574 			$$->next = NULL;
3575 			$$->tail = $$;
3576 		}
3577 		;
3578 
3579 icmptype	: STRING			{
3580 			const struct icmptypeent	*p;
3581 
3582 			if ((p = geticmptypebyname($1, AF_INET)) == NULL) {
3583 				yyerror("unknown icmp-type %s", $1);
3584 				free($1);
3585 				YYERROR;
3586 			}
3587 			$$ = p->type + 1;
3588 			free($1);
3589 		}
3590 		| NUMBER			{
3591 			if ($1 < 0 || $1 > 255) {
3592 				yyerror("illegal icmp-type %lu", $1);
3593 				YYERROR;
3594 			}
3595 			$$ = $1 + 1;
3596 		}
3597 		;
3598 
3599 icmp6type	: STRING			{
3600 			const struct icmptypeent	*p;
3601 
3602 			if ((p = geticmptypebyname($1, AF_INET6)) ==
3603 			    NULL) {
3604 				yyerror("unknown icmp6-type %s", $1);
3605 				free($1);
3606 				YYERROR;
3607 			}
3608 			$$ = p->type + 1;
3609 			free($1);
3610 		}
3611 		| NUMBER			{
3612 			if ($1 < 0 || $1 > 255) {
3613 				yyerror("illegal icmp6-type %lu", $1);
3614 				YYERROR;
3615 			}
3616 			$$ = $1 + 1;
3617 		}
3618 		;
3619 
3620 tos	: STRING			{
3621 			int val;
3622 			char *end;
3623 
3624 			if (map_tos($1, &val))
3625 				$$ = val;
3626 			else if ($1[0] == '0' && $1[1] == 'x') {
3627 				errno = 0;
3628 				$$ = strtoul($1, &end, 16);
3629 				if (errno || *end != '\0')
3630 					$$ = 256;
3631 			} else
3632 				$$ = 256;		/* flag bad argument */
3633 			if ($$ < 0 || $$ > 255) {
3634 				yyerror("illegal tos value %s", $1);
3635 				free($1);
3636 				YYERROR;
3637 			}
3638 			free($1);
3639 		}
3640 		| NUMBER			{
3641 			$$ = $1;
3642 			if ($$ < 0 || $$ > 255) {
3643 				yyerror("illegal tos value %s", $1);
3644 				YYERROR;
3645 			}
3646 		}
3647 		;
3648 
3649 sourcetrack	: SOURCETRACK		{ $$ = PF_SRCTRACK; }
3650 		| SOURCETRACK GLOBAL	{ $$ = PF_SRCTRACK_GLOBAL; }
3651 		| SOURCETRACK RULE	{ $$ = PF_SRCTRACK_RULE; }
3652 		;
3653 
3654 statelock	: IFBOUND {
3655 			$$ = PFRULE_IFBOUND;
3656 		}
3657 		| FLOATING {
3658 			$$ = 0;
3659 		}
3660 		;
3661 
3662 keep		: NO STATE			{
3663 			$$.action = 0;
3664 			$$.options = NULL;
3665 		}
3666 		| KEEP STATE state_opt_spec	{
3667 			$$.action = PF_STATE_NORMAL;
3668 			$$.options = $3;
3669 		}
3670 		| MODULATE STATE state_opt_spec {
3671 			$$.action = PF_STATE_MODULATE;
3672 			$$.options = $3;
3673 		}
3674 		| SYNPROXY STATE state_opt_spec {
3675 			$$.action = PF_STATE_SYNPROXY;
3676 			$$.options = $3;
3677 		}
3678 		;
3679 
3680 flush		: /* empty */			{ $$ = 0; }
3681 		| FLUSH				{ $$ = PF_FLUSH; }
3682 		| FLUSH GLOBAL			{
3683 			$$ = PF_FLUSH | PF_FLUSH_GLOBAL;
3684 		}
3685 		;
3686 
3687 state_opt_spec	: '(' state_opt_list ')'	{ $$ = $2; }
3688 		| /* empty */			{ $$ = NULL; }
3689 		;
3690 
3691 state_opt_list	: state_opt_item		{ $$ = $1; }
3692 		| state_opt_list comma state_opt_item {
3693 			$1->tail->next = $3;
3694 			$1->tail = $3;
3695 			$$ = $1;
3696 		}
3697 		;
3698 
3699 state_opt_item	: MAXIMUM NUMBER		{
3700 			if ($2 < 0 || $2 > UINT_MAX) {
3701 				yyerror("only positive values permitted");
3702 				YYERROR;
3703 			}
3704 			$$ = calloc(1, sizeof(struct node_state_opt));
3705 			if ($$ == NULL)
3706 				err(1, "state_opt_item: calloc");
3707 			$$->type = PF_STATE_OPT_MAX;
3708 			$$->data.max_states = $2;
3709 			$$->next = NULL;
3710 			$$->tail = $$;
3711 		}
3712 		| NOSYNC				{
3713 			$$ = calloc(1, sizeof(struct node_state_opt));
3714 			if ($$ == NULL)
3715 				err(1, "state_opt_item: calloc");
3716 			$$->type = PF_STATE_OPT_NOSYNC;
3717 			$$->next = NULL;
3718 			$$->tail = $$;
3719 		}
3720 		| MAXSRCSTATES NUMBER			{
3721 			if ($2 < 0 || $2 > UINT_MAX) {
3722 				yyerror("only positive values permitted");
3723 				YYERROR;
3724 			}
3725 			$$ = calloc(1, sizeof(struct node_state_opt));
3726 			if ($$ == NULL)
3727 				err(1, "state_opt_item: calloc");
3728 			$$->type = PF_STATE_OPT_MAX_SRC_STATES;
3729 			$$->data.max_src_states = $2;
3730 			$$->next = NULL;
3731 			$$->tail = $$;
3732 		}
3733 		| MAXSRCCONN NUMBER			{
3734 			if ($2 < 0 || $2 > UINT_MAX) {
3735 				yyerror("only positive values permitted");
3736 				YYERROR;
3737 			}
3738 			$$ = calloc(1, sizeof(struct node_state_opt));
3739 			if ($$ == NULL)
3740 				err(1, "state_opt_item: calloc");
3741 			$$->type = PF_STATE_OPT_MAX_SRC_CONN;
3742 			$$->data.max_src_conn = $2;
3743 			$$->next = NULL;
3744 			$$->tail = $$;
3745 		}
3746 		| MAXSRCCONNRATE NUMBER '/' NUMBER	{
3747 			if ($2 < 0 || $2 > UINT_MAX ||
3748 			    $4 < 0 || $4 > UINT_MAX) {
3749 				yyerror("only positive values permitted");
3750 				YYERROR;
3751 			}
3752 			$$ = calloc(1, sizeof(struct node_state_opt));
3753 			if ($$ == NULL)
3754 				err(1, "state_opt_item: calloc");
3755 			$$->type = PF_STATE_OPT_MAX_SRC_CONN_RATE;
3756 			$$->data.max_src_conn_rate.limit = $2;
3757 			$$->data.max_src_conn_rate.seconds = $4;
3758 			$$->next = NULL;
3759 			$$->tail = $$;
3760 		}
3761 		| OVERLOAD '<' STRING '>' flush		{
3762 			if (strlen($3) >= PF_TABLE_NAME_SIZE) {
3763 				yyerror("table name '%s' too long", $3);
3764 				free($3);
3765 				YYERROR;
3766 			}
3767 			$$ = calloc(1, sizeof(struct node_state_opt));
3768 			if ($$ == NULL)
3769 				err(1, "state_opt_item: calloc");
3770 			if (strlcpy($$->data.overload.tblname, $3,
3771 			    PF_TABLE_NAME_SIZE) >= PF_TABLE_NAME_SIZE)
3772 				errx(1, "state_opt_item: strlcpy");
3773 			free($3);
3774 			$$->type = PF_STATE_OPT_OVERLOAD;
3775 			$$->data.overload.flush = $5;
3776 			$$->next = NULL;
3777 			$$->tail = $$;
3778 		}
3779 		| MAXSRCNODES NUMBER			{
3780 			if ($2 < 0 || $2 > UINT_MAX) {
3781 				yyerror("only positive values permitted");
3782 				YYERROR;
3783 			}
3784 			$$ = calloc(1, sizeof(struct node_state_opt));
3785 			if ($$ == NULL)
3786 				err(1, "state_opt_item: calloc");
3787 			$$->type = PF_STATE_OPT_MAX_SRC_NODES;
3788 			$$->data.max_src_nodes = $2;
3789 			$$->next = NULL;
3790 			$$->tail = $$;
3791 		}
3792 		| sourcetrack {
3793 			$$ = calloc(1, sizeof(struct node_state_opt));
3794 			if ($$ == NULL)
3795 				err(1, "state_opt_item: calloc");
3796 			$$->type = PF_STATE_OPT_SRCTRACK;
3797 			$$->data.src_track = $1;
3798 			$$->next = NULL;
3799 			$$->tail = $$;
3800 		}
3801 		| statelock {
3802 			$$ = calloc(1, sizeof(struct node_state_opt));
3803 			if ($$ == NULL)
3804 				err(1, "state_opt_item: calloc");
3805 			$$->type = PF_STATE_OPT_STATELOCK;
3806 			$$->data.statelock = $1;
3807 			$$->next = NULL;
3808 			$$->tail = $$;
3809 		}
3810 		| SLOPPY {
3811 			$$ = calloc(1, sizeof(struct node_state_opt));
3812 			if ($$ == NULL)
3813 				err(1, "state_opt_item: calloc");
3814 			$$->type = PF_STATE_OPT_SLOPPY;
3815 			$$->next = NULL;
3816 			$$->tail = $$;
3817 		}
3818 		| STRING NUMBER			{
3819 			int	i;
3820 
3821 			if ($2 < 0 || $2 > UINT_MAX) {
3822 				yyerror("only positive values permitted");
3823 				YYERROR;
3824 			}
3825 			for (i = 0; pf_timeouts[i].name &&
3826 			    strcmp(pf_timeouts[i].name, $1); ++i)
3827 				;	/* nothing */
3828 			if (!pf_timeouts[i].name) {
3829 				yyerror("illegal timeout name %s", $1);
3830 				free($1);
3831 				YYERROR;
3832 			}
3833 			if (strchr(pf_timeouts[i].name, '.') == NULL) {
3834 				yyerror("illegal state timeout %s", $1);
3835 				free($1);
3836 				YYERROR;
3837 			}
3838 			free($1);
3839 			$$ = calloc(1, sizeof(struct node_state_opt));
3840 			if ($$ == NULL)
3841 				err(1, "state_opt_item: calloc");
3842 			$$->type = PF_STATE_OPT_TIMEOUT;
3843 			$$->data.timeout.number = pf_timeouts[i].timeout;
3844 			$$->data.timeout.seconds = $2;
3845 			$$->next = NULL;
3846 			$$->tail = $$;
3847 		}
3848 		;
3849 
3850 label		: LABEL STRING			{
3851 			$$ = $2;
3852 		}
3853 		;
3854 
3855 qname		: QUEUE STRING				{
3856 			$$.qname = $2;
3857 			$$.pqname = NULL;
3858 		}
3859 		| QUEUE '(' STRING ')'			{
3860 			$$.qname = $3;
3861 			$$.pqname = NULL;
3862 		}
3863 		| QUEUE '(' STRING comma STRING ')'	{
3864 			$$.qname = $3;
3865 			$$.pqname = $5;
3866 		}
3867 		;
3868 
3869 no		: /* empty */			{ $$ = 0; }
3870 		| NO				{ $$ = 1; }
3871 		;
3872 
3873 portstar	: numberstring			{
3874 			if (parseport($1, &$$, PPORT_RANGE|PPORT_STAR) == -1) {
3875 				free($1);
3876 				YYERROR;
3877 			}
3878 			free($1);
3879 		}
3880 		;
3881 
3882 redirspec	: host				{ $$ = $1; }
3883 		| '{' optnl redir_host_list '}'	{ $$ = $3; }
3884 		;
3885 
3886 redir_host_list	: host optnl			{ $$ = $1; }
3887 		| redir_host_list comma host optnl {
3888 			$1->tail->next = $3;
3889 			$1->tail = $3->tail;
3890 			$$ = $1;
3891 		}
3892 		;
3893 
3894 redirpool	: /* empty */			{ $$ = NULL; }
3895 		| ARROW redirspec		{
3896 			$$ = calloc(1, sizeof(struct redirection));
3897 			if ($$ == NULL)
3898 				err(1, "redirection: calloc");
3899 			$$->host = $2;
3900 			$$->rport.a = $$->rport.b = $$->rport.t = 0;
3901 		}
3902 		| ARROW redirspec PORT portstar	{
3903 			$$ = calloc(1, sizeof(struct redirection));
3904 			if ($$ == NULL)
3905 				err(1, "redirection: calloc");
3906 			$$->host = $2;
3907 			$$->rport = $4;
3908 		}
3909 		;
3910 
3911 hashkey		: /* empty */
3912 		{
3913 			$$ = calloc(1, sizeof(struct pf_poolhashkey));
3914 			if ($$ == NULL)
3915 				err(1, "hashkey: calloc");
3916 			$$->key32[0] = arc4random();
3917 			$$->key32[1] = arc4random();
3918 			$$->key32[2] = arc4random();
3919 			$$->key32[3] = arc4random();
3920 		}
3921 		| string
3922 		{
3923 			if (!strncmp($1, "0x", 2)) {
3924 				if (strlen($1) != 34) {
3925 					free($1);
3926 					yyerror("hex key must be 128 bits "
3927 						"(32 hex digits) long");
3928 					YYERROR;
3929 				}
3930 				$$ = calloc(1, sizeof(struct pf_poolhashkey));
3931 				if ($$ == NULL)
3932 					err(1, "hashkey: calloc");
3933 
3934 				if (sscanf($1, "0x%8x%8x%8x%8x",
3935 				    &$$->key32[0], &$$->key32[1],
3936 				    &$$->key32[2], &$$->key32[3]) != 4) {
3937 					free($$);
3938 					free($1);
3939 					yyerror("invalid hex key");
3940 					YYERROR;
3941 				}
3942 			} else {
3943 				MD5_CTX	context;
3944 
3945 				$$ = calloc(1, sizeof(struct pf_poolhashkey));
3946 				if ($$ == NULL)
3947 					err(1, "hashkey: calloc");
3948 				MD5Init(&context);
3949 				MD5Update(&context, (unsigned char *)$1,
3950 				    strlen($1));
3951 				MD5Final((unsigned char *)$$, &context);
3952 				HTONL($$->key32[0]);
3953 				HTONL($$->key32[1]);
3954 				HTONL($$->key32[2]);
3955 				HTONL($$->key32[3]);
3956 			}
3957 			free($1);
3958 		}
3959 		;
3960 
3961 pool_opts	:	{ bzero(&pool_opts, sizeof pool_opts); }
3962 		    pool_opts_l
3963 			{ $$ = pool_opts; }
3964 		| /* empty */	{
3965 			bzero(&pool_opts, sizeof pool_opts);
3966 			$$ = pool_opts;
3967 		}
3968 		;
3969 
3970 pool_opts_l	: pool_opts_l pool_opt
3971 		| pool_opt
3972 		;
3973 
3974 pool_opt	: BITMASK	{
3975 			if (pool_opts.type) {
3976 				yyerror("pool type cannot be redefined");
3977 				YYERROR;
3978 			}
3979 			pool_opts.type =  PF_POOL_BITMASK;
3980 		}
3981 		| RANDOM	{
3982 			if (pool_opts.type) {
3983 				yyerror("pool type cannot be redefined");
3984 				YYERROR;
3985 			}
3986 			pool_opts.type = PF_POOL_RANDOM;
3987 		}
3988 		| SOURCEHASH hashkey {
3989 			if (pool_opts.type) {
3990 				yyerror("pool type cannot be redefined");
3991 				YYERROR;
3992 			}
3993 			pool_opts.type = PF_POOL_SRCHASH;
3994 			pool_opts.key = $2;
3995 		}
3996 		| ROUNDROBIN	{
3997 			if (pool_opts.type) {
3998 				yyerror("pool type cannot be redefined");
3999 				YYERROR;
4000 			}
4001 			pool_opts.type = PF_POOL_ROUNDROBIN;
4002 		}
4003 		| STATICPORT	{
4004 			if (pool_opts.staticport) {
4005 				yyerror("static-port cannot be redefined");
4006 				YYERROR;
4007 			}
4008 			pool_opts.staticport = 1;
4009 		}
4010 		| STICKYADDRESS	{
4011 			if (filter_opts.marker & POM_STICKYADDRESS) {
4012 				yyerror("sticky-address cannot be redefined");
4013 				YYERROR;
4014 			}
4015 			pool_opts.marker |= POM_STICKYADDRESS;
4016 			pool_opts.opts |= PF_POOL_STICKYADDR;
4017 		}
4018 		;
4019 
4020 redirection	: /* empty */			{ $$ = NULL; }
4021 		| ARROW host			{
4022 			$$ = calloc(1, sizeof(struct redirection));
4023 			if ($$ == NULL)
4024 				err(1, "redirection: calloc");
4025 			$$->host = $2;
4026 			$$->rport.a = $$->rport.b = $$->rport.t = 0;
4027 		}
4028 		| ARROW host PORT portstar	{
4029 			$$ = calloc(1, sizeof(struct redirection));
4030 			if ($$ == NULL)
4031 				err(1, "redirection: calloc");
4032 			$$->host = $2;
4033 			$$->rport = $4;
4034 		}
4035 		;
4036 
4037 natpasslog	: /* empty */	{ $$.b1 = $$.b2 = 0; $$.w2 = 0; }
4038 		| PASS		{ $$.b1 = 1; $$.b2 = 0; $$.w2 = 0; }
4039 		| PASS log	{ $$.b1 = 1; $$.b2 = $2.log; $$.w2 = $2.logif; }
4040 		| log		{ $$.b1 = 0; $$.b2 = $1.log; $$.w2 = $1.logif; }
4041 		;
4042 
4043 nataction	: no NAT natpasslog {
4044 			if ($1 && $3.b1) {
4045 				yyerror("\"pass\" not valid with \"no\"");
4046 				YYERROR;
4047 			}
4048 			if ($1)
4049 				$$.b1 = PF_NONAT;
4050 			else
4051 				$$.b1 = PF_NAT;
4052 			$$.b2 = $3.b1;
4053 			$$.w = $3.b2;
4054 			$$.w2 = $3.w2;
4055 		}
4056 		| no RDR natpasslog {
4057 			if ($1 && $3.b1) {
4058 				yyerror("\"pass\" not valid with \"no\"");
4059 				YYERROR;
4060 			}
4061 			if ($1)
4062 				$$.b1 = PF_NORDR;
4063 			else
4064 				$$.b1 = PF_RDR;
4065 			$$.b2 = $3.b1;
4066 			$$.w = $3.b2;
4067 			$$.w2 = $3.w2;
4068 		}
4069 		;
4070 
4071 natrule		: nataction interface af proto fromto tag tagged rtable
4072 		    redirpool pool_opts
4073 		{
4074 			struct pf_rule	r;
4075 
4076 			if (check_rulestate(PFCTL_STATE_NAT))
4077 				YYERROR;
4078 
4079 			memset(&r, 0, sizeof(r));
4080 
4081 			r.action = $1.b1;
4082 			r.natpass = $1.b2;
4083 			r.log = $1.w;
4084 			r.logif = $1.w2;
4085 			r.af = $3;
4086 
4087 			if (!r.af) {
4088 				if ($5.src.host && $5.src.host->af &&
4089 				    !$5.src.host->ifindex)
4090 					r.af = $5.src.host->af;
4091 				else if ($5.dst.host && $5.dst.host->af &&
4092 				    !$5.dst.host->ifindex)
4093 					r.af = $5.dst.host->af;
4094 			}
4095 
4096 			if ($6 != NULL)
4097 				if (strlcpy(r.tagname, $6, PF_TAG_NAME_SIZE) >=
4098 				    PF_TAG_NAME_SIZE) {
4099 					yyerror("tag too long, max %u chars",
4100 					    PF_TAG_NAME_SIZE - 1);
4101 					YYERROR;
4102 				}
4103 
4104 			if ($7.name)
4105 				if (strlcpy(r.match_tagname, $7.name,
4106 				    PF_TAG_NAME_SIZE) >= PF_TAG_NAME_SIZE) {
4107 					yyerror("tag too long, max %u chars",
4108 					    PF_TAG_NAME_SIZE - 1);
4109 					YYERROR;
4110 				}
4111 			r.match_tag_not = $7.neg;
4112 			r.rtableid = $8;
4113 
4114 			if (r.action == PF_NONAT || r.action == PF_NORDR) {
4115 				if ($9 != NULL) {
4116 					yyerror("translation rule with 'no' "
4117 					    "does not need '->'");
4118 					YYERROR;
4119 				}
4120 			} else {
4121 				if ($9 == NULL || $9->host == NULL) {
4122 					yyerror("translation rule requires '-> "
4123 					    "address'");
4124 					YYERROR;
4125 				}
4126 				if (!r.af && ! $9->host->ifindex)
4127 					r.af = $9->host->af;
4128 
4129 				remove_invalid_hosts(&$9->host, &r.af);
4130 				if (invalid_redirect($9->host, r.af))
4131 					YYERROR;
4132 				if (check_netmask($9->host, r.af))
4133 					YYERROR;
4134 
4135 				r.rpool.proxy_port[0] = ntohs($9->rport.a);
4136 
4137 				switch (r.action) {
4138 				case PF_RDR:
4139 					if (!$9->rport.b && $9->rport.t &&
4140 					    $5.dst.port != NULL) {
4141 						r.rpool.proxy_port[1] =
4142 						    ntohs($9->rport.a) +
4143 						    (ntohs(
4144 						    $5.dst.port->port[1]) -
4145 						    ntohs(
4146 						    $5.dst.port->port[0]));
4147 					} else
4148 						r.rpool.proxy_port[1] =
4149 						    ntohs($9->rport.b);
4150 					break;
4151 				case PF_NAT:
4152 					r.rpool.proxy_port[1] =
4153 					    ntohs($9->rport.b);
4154 					if (!r.rpool.proxy_port[0] &&
4155 					    !r.rpool.proxy_port[1]) {
4156 						r.rpool.proxy_port[0] =
4157 						    PF_NAT_PROXY_PORT_LOW;
4158 						r.rpool.proxy_port[1] =
4159 						    PF_NAT_PROXY_PORT_HIGH;
4160 					} else if (!r.rpool.proxy_port[1])
4161 						r.rpool.proxy_port[1] =
4162 						    r.rpool.proxy_port[0];
4163 					break;
4164 				default:
4165 					break;
4166 				}
4167 
4168 				r.rpool.opts = $10.type;
4169 				if ((r.rpool.opts & PF_POOL_TYPEMASK) ==
4170 				    PF_POOL_NONE && ($9->host->next != NULL ||
4171 				    $9->host->addr.type == PF_ADDR_TABLE ||
4172 				    DYNIF_MULTIADDR($9->host->addr)))
4173 					r.rpool.opts = PF_POOL_ROUNDROBIN;
4174 				if ((r.rpool.opts & PF_POOL_TYPEMASK) !=
4175 				    PF_POOL_ROUNDROBIN &&
4176 				    disallow_table($9->host, "tables are only "
4177 				    "supported in round-robin redirection "
4178 				    "pools"))
4179 					YYERROR;
4180 				if ((r.rpool.opts & PF_POOL_TYPEMASK) !=
4181 				    PF_POOL_ROUNDROBIN &&
4182 				    disallow_alias($9->host, "interface (%s) "
4183 				    "is only supported in round-robin "
4184 				    "redirection pools"))
4185 					YYERROR;
4186 				if ($9->host->next != NULL) {
4187 					if ((r.rpool.opts & PF_POOL_TYPEMASK) !=
4188 					    PF_POOL_ROUNDROBIN) {
4189 						yyerror("only round-robin "
4190 						    "valid for multiple "
4191 						    "redirection addresses");
4192 						YYERROR;
4193 					}
4194 				}
4195 			}
4196 
4197 			if ($10.key != NULL)
4198 				memcpy(&r.rpool.key, $10.key,
4199 				    sizeof(struct pf_poolhashkey));
4200 
4201 			 if ($10.opts)
4202 				r.rpool.opts |= $10.opts;
4203 
4204 			if ($10.staticport) {
4205 				if (r.action != PF_NAT) {
4206 					yyerror("the 'static-port' option is "
4207 					    "only valid with nat rules");
4208 					YYERROR;
4209 				}
4210 				if (r.rpool.proxy_port[0] !=
4211 				    PF_NAT_PROXY_PORT_LOW &&
4212 				    r.rpool.proxy_port[1] !=
4213 				    PF_NAT_PROXY_PORT_HIGH) {
4214 					yyerror("the 'static-port' option can't"
4215 					    " be used when specifying a port"
4216 					    " range");
4217 					YYERROR;
4218 				}
4219 				r.rpool.proxy_port[0] = 0;
4220 				r.rpool.proxy_port[1] = 0;
4221 			}
4222 
4223 			expand_rule(&r, $2, $9 == NULL ? NULL : $9->host, $4,
4224 			    $5.src_os, $5.src.host, $5.src.port, $5.dst.host,
4225 			    $5.dst.port, 0, 0, 0, "");
4226 			free($9);
4227 		}
4228 		;
4229 
4230 binatrule	: no BINAT natpasslog interface af proto FROM ipspec toipspec tag
4231 		    tagged rtable redirection
4232 		{
4233 			struct pf_rule		binat;
4234 			struct pf_pooladdr	*pa;
4235 
4236 			if (check_rulestate(PFCTL_STATE_NAT))
4237 				YYERROR;
4238 			if (disallow_urpf_failed($9, "\"urpf-failed\" is not "
4239 			    "permitted as a binat destination"))
4240 				YYERROR;
4241 
4242 			memset(&binat, 0, sizeof(binat));
4243 
4244 			if ($1 && $3.b1) {
4245 				yyerror("\"pass\" not valid with \"no\"");
4246 				YYERROR;
4247 			}
4248 			if ($1)
4249 				binat.action = PF_NOBINAT;
4250 			else
4251 				binat.action = PF_BINAT;
4252 			binat.natpass = $3.b1;
4253 			binat.log = $3.b2;
4254 			binat.logif = $3.w2;
4255 			binat.af = $5;
4256 			if (!binat.af && $8 != NULL && $8->af)
4257 				binat.af = $8->af;
4258 			if (!binat.af && $9 != NULL && $9->af)
4259 				binat.af = $9->af;
4260 
4261 			if (!binat.af && $13 != NULL && $13->host)
4262 				binat.af = $13->host->af;
4263 			if (!binat.af) {
4264 				yyerror("address family (inet/inet6) "
4265 				    "undefined");
4266 				YYERROR;
4267 			}
4268 
4269 			if ($4 != NULL) {
4270 				memcpy(binat.ifname, $4->ifname,
4271 				    sizeof(binat.ifname));
4272 				binat.ifnot = $4->not;
4273 				free($4);
4274 			}
4275 
4276 			if ($10 != NULL)
4277 				if (strlcpy(binat.tagname, $10,
4278 				    PF_TAG_NAME_SIZE) >= PF_TAG_NAME_SIZE) {
4279 					yyerror("tag too long, max %u chars",
4280 					    PF_TAG_NAME_SIZE - 1);
4281 					YYERROR;
4282 				}
4283 			if ($11.name)
4284 				if (strlcpy(binat.match_tagname, $11.name,
4285 				    PF_TAG_NAME_SIZE) >= PF_TAG_NAME_SIZE) {
4286 					yyerror("tag too long, max %u chars",
4287 					    PF_TAG_NAME_SIZE - 1);
4288 					YYERROR;
4289 				}
4290 			binat.match_tag_not = $11.neg;
4291 			binat.rtableid = $12;
4292 
4293 			if ($6 != NULL) {
4294 				binat.proto = $6->proto;
4295 				free($6);
4296 			}
4297 
4298 			if ($8 != NULL && disallow_table($8, "invalid use of "
4299 			    "table <%s> as the source address of a binat rule"))
4300 				YYERROR;
4301 			if ($8 != NULL && disallow_alias($8, "invalid use of "
4302 			    "interface (%s) as the source address of a binat "
4303 			    "rule"))
4304 				YYERROR;
4305 			if ($13 != NULL && $13->host != NULL && disallow_table(
4306 			    $13->host, "invalid use of table <%s> as the "
4307 			    "redirect address of a binat rule"))
4308 				YYERROR;
4309 			if ($13 != NULL && $13->host != NULL && disallow_alias(
4310 			    $13->host, "invalid use of interface (%s) as the "
4311 			    "redirect address of a binat rule"))
4312 				YYERROR;
4313 
4314 			if ($8 != NULL) {
4315 				if ($8->next) {
4316 					yyerror("multiple binat ip addresses");
4317 					YYERROR;
4318 				}
4319 				if ($8->addr.type == PF_ADDR_DYNIFTL)
4320 					$8->af = binat.af;
4321 				if ($8->af != binat.af) {
4322 					yyerror("binat ip versions must match");
4323 					YYERROR;
4324 				}
4325 				if (check_netmask($8, binat.af))
4326 					YYERROR;
4327 				memcpy(&binat.src.addr, &$8->addr,
4328 				    sizeof(binat.src.addr));
4329 				free($8);
4330 			}
4331 			if ($9 != NULL) {
4332 				if ($9->next) {
4333 					yyerror("multiple binat ip addresses");
4334 					YYERROR;
4335 				}
4336 				if ($9->af != binat.af && $9->af) {
4337 					yyerror("binat ip versions must match");
4338 					YYERROR;
4339 				}
4340 				if (check_netmask($9, binat.af))
4341 					YYERROR;
4342 				memcpy(&binat.dst.addr, &$9->addr,
4343 				    sizeof(binat.dst.addr));
4344 				binat.dst.neg = $9->not;
4345 				free($9);
4346 			}
4347 
4348 			if (binat.action == PF_NOBINAT) {
4349 				if ($13 != NULL) {
4350 					yyerror("'no binat' rule does not need"
4351 					    " '->'");
4352 					YYERROR;
4353 				}
4354 			} else {
4355 				if ($13 == NULL || $13->host == NULL) {
4356 					yyerror("'binat' rule requires"
4357 					    " '-> address'");
4358 					YYERROR;
4359 				}
4360 
4361 				remove_invalid_hosts(&$13->host, &binat.af);
4362 				if (invalid_redirect($13->host, binat.af))
4363 					YYERROR;
4364 				if ($13->host->next != NULL) {
4365 					yyerror("binat rule must redirect to "
4366 					    "a single address");
4367 					YYERROR;
4368 				}
4369 				if (check_netmask($13->host, binat.af))
4370 					YYERROR;
4371 
4372 				if (!PF_AZERO(&binat.src.addr.v.a.mask,
4373 				    binat.af) &&
4374 				    !PF_AEQ(&binat.src.addr.v.a.mask,
4375 				    &$13->host->addr.v.a.mask, binat.af)) {
4376 					yyerror("'binat' source mask and "
4377 					    "redirect mask must be the same");
4378 					YYERROR;
4379 				}
4380 
4381 				TAILQ_INIT(&binat.rpool.list);
4382 				pa = calloc(1, sizeof(struct pf_pooladdr));
4383 				if (pa == NULL)
4384 					err(1, "binat: calloc");
4385 				pa->addr = $13->host->addr;
4386 				pa->ifname[0] = 0;
4387 				TAILQ_INSERT_TAIL(&binat.rpool.list,
4388 				    pa, entries);
4389 
4390 				free($13);
4391 			}
4392 
4393 			pfctl_add_rule(pf, &binat, "");
4394 		}
4395 		;
4396 
4397 tag		: /* empty */		{ $$ = NULL; }
4398 		| TAG STRING		{ $$ = $2; }
4399 		;
4400 
4401 tagged		: /* empty */		{ $$.neg = 0; $$.name = NULL; }
4402 		| not TAGGED string	{ $$.neg = $1; $$.name = $3; }
4403 		;
4404 
4405 rtable		: /* empty */		{ $$ = -1; }
4406 		| RTABLE NUMBER		{
4407 			if ($2 < 0 || $2 > rt_tableid_max()) {
4408 				yyerror("invalid rtable id");
4409 				YYERROR;
4410 			}
4411 			$$ = $2;
4412 		}
4413 		;
4414 
4415 route_host	: STRING			{
4416 			$$ = calloc(1, sizeof(struct node_host));
4417 			if ($$ == NULL)
4418 				err(1, "route_host: calloc");
4419 			$$->ifname = strdup($1);
4420 			set_ipmask($$, 128);
4421 			$$->next = NULL;
4422 			$$->tail = $$;
4423 		}
4424 		| '(' STRING host ')'		{
4425 			struct node_host *n;
4426 
4427 			$$ = $3;
4428 			for (n = $3; n != NULL; n = n->next)
4429 				n->ifname = strdup($2);
4430 		}
4431 		;
4432 
4433 route_host_list	: route_host optnl			{ $$ = $1; }
4434 		| route_host_list comma route_host optnl {
4435 			if ($1->af == 0)
4436 				$1->af = $3->af;
4437 			if ($1->af != $3->af) {
4438 				yyerror("all pool addresses must be in the "
4439 				    "same address family");
4440 				YYERROR;
4441 			}
4442 			$1->tail->next = $3;
4443 			$1->tail = $3->tail;
4444 			$$ = $1;
4445 		}
4446 		;
4447 
4448 routespec	: route_host			{ $$ = $1; }
4449 		| '{' optnl route_host_list '}'	{ $$ = $3; }
4450 		;
4451 
4452 route		: /* empty */			{
4453 			$$.host = NULL;
4454 			$$.rt = 0;
4455 			$$.pool_opts = 0;
4456 		}
4457 		| FASTROUTE {
4458 			/* backwards-compat */
4459 			$$.host = NULL;
4460 			$$.rt = 0;
4461 			$$.pool_opts = 0;
4462 		}
4463 		| ROUTETO routespec pool_opts {
4464 			$$.host = $2;
4465 			$$.rt = PF_ROUTETO;
4466 			$$.pool_opts = $3.type | $3.opts;
4467 			if ($3.key != NULL)
4468 				$$.key = $3.key;
4469 		}
4470 		| REPLYTO routespec pool_opts {
4471 			$$.host = $2;
4472 			$$.rt = PF_REPLYTO;
4473 			$$.pool_opts = $3.type | $3.opts;
4474 			if ($3.key != NULL)
4475 				$$.key = $3.key;
4476 		}
4477 		| DUPTO routespec pool_opts {
4478 			$$.host = $2;
4479 			$$.rt = PF_DUPTO;
4480 			$$.pool_opts = $3.type | $3.opts;
4481 			if ($3.key != NULL)
4482 				$$.key = $3.key;
4483 		}
4484 		;
4485 
4486 timeout_spec	: STRING NUMBER
4487 		{
4488 			if (check_rulestate(PFCTL_STATE_OPTION)) {
4489 				free($1);
4490 				YYERROR;
4491 			}
4492 			if ($2 < 0 || $2 > UINT_MAX) {
4493 				yyerror("only positive values permitted");
4494 				YYERROR;
4495 			}
4496 			if (pfctl_set_timeout(pf, $1, $2, 0) != 0) {
4497 				yyerror("unknown timeout %s", $1);
4498 				free($1);
4499 				YYERROR;
4500 			}
4501 			free($1);
4502 		}
4503 		| INTERVAL NUMBER		{
4504 			if (check_rulestate(PFCTL_STATE_OPTION))
4505 				YYERROR;
4506 			if ($2 < 0 || $2 > UINT_MAX) {
4507 				yyerror("only positive values permitted");
4508 				YYERROR;
4509 			}
4510 			if (pfctl_set_timeout(pf, "interval", $2, 0) != 0)
4511 				YYERROR;
4512 		}
4513 		;
4514 
4515 timeout_list	: timeout_list comma timeout_spec optnl
4516 		| timeout_spec optnl
4517 		;
4518 
4519 limit_spec	: STRING NUMBER
4520 		{
4521 			if (check_rulestate(PFCTL_STATE_OPTION)) {
4522 				free($1);
4523 				YYERROR;
4524 			}
4525 			if ($2 < 0 || $2 > UINT_MAX) {
4526 				yyerror("only positive values permitted");
4527 				YYERROR;
4528 			}
4529 			if (pfctl_set_limit(pf, $1, $2) != 0) {
4530 				yyerror("unable to set limit %s %u", $1, $2);
4531 				free($1);
4532 				YYERROR;
4533 			}
4534 			free($1);
4535 		}
4536 		;
4537 
4538 limit_list	: limit_list comma limit_spec optnl
4539 		| limit_spec optnl
4540 		;
4541 
4542 comma		: ','
4543 		| /* empty */
4544 		;
4545 
4546 yesno		: NO			{ $$ = 0; }
4547 		| STRING		{
4548 			if (!strcmp($1, "yes"))
4549 				$$ = 1;
4550 			else {
4551 				yyerror("invalid value '%s', expected 'yes' "
4552 				    "or 'no'", $1);
4553 				free($1);
4554 				YYERROR;
4555 			}
4556 			free($1);
4557 		}
4558 		;
4559 
4560 unaryop		: '='		{ $$ = PF_OP_EQ; }
4561 		| '!' '='	{ $$ = PF_OP_NE; }
4562 		| '<' '='	{ $$ = PF_OP_LE; }
4563 		| '<'		{ $$ = PF_OP_LT; }
4564 		| '>' '='	{ $$ = PF_OP_GE; }
4565 		| '>'		{ $$ = PF_OP_GT; }
4566 		;
4567 
4568 %%
4569 
4570 int
4571 yyerror(const char *fmt, ...)
4572 {
4573 	va_list		 ap;
4574 
4575 	file->errors++;
4576 	va_start(ap, fmt);
4577 	fprintf(stderr, "%s:%d: ", file->name, yylval.lineno);
4578 	vfprintf(stderr, fmt, ap);
4579 	fprintf(stderr, "\n");
4580 	va_end(ap);
4581 	return (0);
4582 }
4583 
4584 int
4585 disallow_table(struct node_host *h, const char *fmt)
4586 {
4587 	for (; h != NULL; h = h->next)
4588 		if (h->addr.type == PF_ADDR_TABLE) {
4589 			yyerror(fmt, h->addr.v.tblname);
4590 			return (1);
4591 		}
4592 	return (0);
4593 }
4594 
4595 int
4596 disallow_urpf_failed(struct node_host *h, const char *fmt)
4597 {
4598 	for (; h != NULL; h = h->next)
4599 		if (h->addr.type == PF_ADDR_URPFFAILED) {
4600 			yyerror(fmt);
4601 			return (1);
4602 		}
4603 	return (0);
4604 }
4605 
4606 int
4607 disallow_alias(struct node_host *h, const char *fmt)
4608 {
4609 	for (; h != NULL; h = h->next)
4610 		if (DYNIF_MULTIADDR(h->addr)) {
4611 			yyerror(fmt, h->addr.v.tblname);
4612 			return (1);
4613 		}
4614 	return (0);
4615 }
4616 
4617 int
4618 rule_consistent(struct pf_rule *r, int anchor_call)
4619 {
4620 	int	problems = 0;
4621 
4622 	switch (r->action) {
4623 	case PF_PASS:
4624 	case PF_DROP:
4625 	case PF_SCRUB:
4626 	case PF_NOSCRUB:
4627 		problems = filter_consistent(r, anchor_call);
4628 		break;
4629 	case PF_NAT:
4630 	case PF_NONAT:
4631 		problems = nat_consistent(r);
4632 		break;
4633 	case PF_RDR:
4634 	case PF_NORDR:
4635 		problems = rdr_consistent(r);
4636 		break;
4637 	case PF_BINAT:
4638 	case PF_NOBINAT:
4639 	default:
4640 		break;
4641 	}
4642 	return (problems);
4643 }
4644 
4645 int
4646 filter_consistent(struct pf_rule *r, int anchor_call)
4647 {
4648 	int	problems = 0;
4649 
4650 	if (r->proto != IPPROTO_TCP && r->proto != IPPROTO_UDP &&
4651 	    (r->src.port_op || r->dst.port_op)) {
4652 		yyerror("port only applies to tcp/udp");
4653 		problems++;
4654 	}
4655 	if (r->proto != IPPROTO_ICMP && r->proto != IPPROTO_ICMPV6 &&
4656 	    (r->type || r->code)) {
4657 		yyerror("icmp-type/code only applies to icmp");
4658 		problems++;
4659 	}
4660 	if (!r->af && (r->type || r->code)) {
4661 		yyerror("must indicate address family with icmp-type/code");
4662 		problems++;
4663 	}
4664 	if (r->overload_tblname[0] &&
4665 	    r->max_src_conn == 0 && r->max_src_conn_rate.seconds == 0) {
4666 		yyerror("'overload' requires 'max-src-conn' "
4667 		    "or 'max-src-conn-rate'");
4668 		problems++;
4669 	}
4670 	if ((r->proto == IPPROTO_ICMP && r->af == AF_INET6) ||
4671 	    (r->proto == IPPROTO_ICMPV6 && r->af == AF_INET)) {
4672 		yyerror("proto %s doesn't match address family %s",
4673 		    r->proto == IPPROTO_ICMP ? "icmp" : "icmp6",
4674 		    r->af == AF_INET ? "inet" : "inet6");
4675 		problems++;
4676 	}
4677 	if (r->allow_opts && r->action != PF_PASS) {
4678 		yyerror("allow-opts can only be specified for pass rules");
4679 		problems++;
4680 	}
4681 	if (r->rule_flag & PFRULE_FRAGMENT && (r->src.port_op ||
4682 	    r->dst.port_op || r->flagset || r->type || r->code)) {
4683 		yyerror("fragments can be filtered only on IP header fields");
4684 		problems++;
4685 	}
4686 	if (r->rule_flag & PFRULE_RETURNRST && r->proto != IPPROTO_TCP) {
4687 		yyerror("return-rst can only be applied to TCP rules");
4688 		problems++;
4689 	}
4690 	if (r->max_src_nodes && !(r->rule_flag & PFRULE_RULESRCTRACK)) {
4691 		yyerror("max-src-nodes requires 'source-track rule'");
4692 		problems++;
4693 	}
4694 	if (r->action == PF_DROP && r->keep_state) {
4695 		yyerror("keep state on block rules doesn't make sense");
4696 		problems++;
4697 	}
4698 	if (r->rule_flag & PFRULE_STATESLOPPY &&
4699 	    (r->keep_state == PF_STATE_MODULATE ||
4700 	    r->keep_state == PF_STATE_SYNPROXY)) {
4701 		yyerror("sloppy state matching cannot be used with "
4702 		    "synproxy state or modulate state");
4703 		problems++;
4704 	}
4705 	return (-problems);
4706 }
4707 
4708 int
4709 nat_consistent(struct pf_rule *r)
4710 {
4711 	return (0);	/* yeah! */
4712 }
4713 
4714 int
4715 rdr_consistent(struct pf_rule *r)
4716 {
4717 	int			 problems = 0;
4718 
4719 	if (r->proto != IPPROTO_TCP && r->proto != IPPROTO_UDP) {
4720 		if (r->src.port_op) {
4721 			yyerror("src port only applies to tcp/udp");
4722 			problems++;
4723 		}
4724 		if (r->dst.port_op) {
4725 			yyerror("dst port only applies to tcp/udp");
4726 			problems++;
4727 		}
4728 		if (r->rpool.proxy_port[0]) {
4729 			yyerror("rpool port only applies to tcp/udp");
4730 			problems++;
4731 		}
4732 	}
4733 	if (r->dst.port_op &&
4734 	    r->dst.port_op != PF_OP_EQ && r->dst.port_op != PF_OP_RRG) {
4735 		yyerror("invalid port operator for rdr destination port");
4736 		problems++;
4737 	}
4738 	return (-problems);
4739 }
4740 
4741 int
4742 process_tabledef(char *name, struct table_opts *opts)
4743 {
4744 	struct pfr_buffer	 ab;
4745 	struct node_tinit	*ti;
4746 
4747 	bzero(&ab, sizeof(ab));
4748 	ab.pfrb_type = PFRB_ADDRS;
4749 	SIMPLEQ_FOREACH(ti, &opts->init_nodes, entries) {
4750 		if (ti->file)
4751 			if (pfr_buf_load(&ab, ti->file, 0, append_addr)) {
4752 				if (errno)
4753 					yyerror("cannot load \"%s\": %s",
4754 					    ti->file, strerror(errno));
4755 				else
4756 					yyerror("file \"%s\" contains bad data",
4757 					    ti->file);
4758 				goto _error;
4759 			}
4760 		if (ti->host)
4761 			if (append_addr_host(&ab, ti->host, 0, 0)) {
4762 				yyerror("cannot create address buffer: %s",
4763 				    strerror(errno));
4764 				goto _error;
4765 			}
4766 	}
4767 	if (pf->opts & PF_OPT_VERBOSE)
4768 		print_tabledef(name, opts->flags, opts->init_addr,
4769 		    &opts->init_nodes);
4770 	if (!(pf->opts & PF_OPT_NOACTION) &&
4771 	    pfctl_define_table(name, opts->flags, opts->init_addr,
4772 	    pf->anchor->name, &ab, pf->anchor->ruleset.tticket)) {
4773 		yyerror("cannot define table %s: %s", name,
4774 		    pfr_strerror(errno));
4775 		goto _error;
4776 	}
4777 	pf->tdirty = 1;
4778 	pfr_buf_clear(&ab);
4779 	return (0);
4780 _error:
4781 	pfr_buf_clear(&ab);
4782 	return (-1);
4783 }
4784 
4785 struct keywords {
4786 	const char	*k_name;
4787 	int		 k_val;
4788 };
4789 
4790 /* macro gore, but you should've seen the prior indentation nightmare... */
4791 
4792 #define FREE_LIST(T,r) \
4793 	do { \
4794 		T *p, *node = r; \
4795 		while (node != NULL) { \
4796 			p = node; \
4797 			node = node->next; \
4798 			free(p); \
4799 		} \
4800 	} while (0)
4801 
4802 #define LOOP_THROUGH(T,n,r,C) \
4803 	do { \
4804 		T *n; \
4805 		if (r == NULL) { \
4806 			r = calloc(1, sizeof(T)); \
4807 			if (r == NULL) \
4808 				err(1, "LOOP: calloc"); \
4809 			r->next = NULL; \
4810 		} \
4811 		n = r; \
4812 		while (n != NULL) { \
4813 			do { \
4814 				C; \
4815 			} while (0); \
4816 			n = n->next; \
4817 		} \
4818 	} while (0)
4819 
4820 void
4821 expand_label_str(char *label, size_t len, const char *srch, const char *repl)
4822 {
4823 	char *tmp;
4824 	char *p, *q;
4825 
4826 	if ((tmp = calloc(1, len)) == NULL)
4827 		err(1, "expand_label_str: calloc");
4828 	p = q = label;
4829 	while ((q = strstr(p, srch)) != NULL) {
4830 		*q = '\0';
4831 		if ((strlcat(tmp, p, len) >= len) ||
4832 		    (strlcat(tmp, repl, len) >= len))
4833 			errx(1, "expand_label: label too long");
4834 		q += strlen(srch);
4835 		p = q;
4836 	}
4837 	if (strlcat(tmp, p, len) >= len)
4838 		errx(1, "expand_label: label too long");
4839 	strlcpy(label, tmp, len);	/* always fits */
4840 	free(tmp);
4841 }
4842 
4843 void
4844 expand_label_if(const char *name, char *label, size_t len, const char *ifname)
4845 {
4846 	if (strstr(label, name) != NULL) {
4847 		if (!*ifname)
4848 			expand_label_str(label, len, name, "any");
4849 		else
4850 			expand_label_str(label, len, name, ifname);
4851 	}
4852 }
4853 
4854 void
4855 expand_label_addr(const char *name, char *label, size_t len, sa_family_t af,
4856     struct node_host *h)
4857 {
4858 	char tmp[64], tmp_not[66];
4859 
4860 	if (strstr(label, name) != NULL) {
4861 		switch (h->addr.type) {
4862 		case PF_ADDR_DYNIFTL:
4863 			snprintf(tmp, sizeof(tmp), "(%s)", h->addr.v.ifname);
4864 			break;
4865 		case PF_ADDR_TABLE:
4866 			snprintf(tmp, sizeof(tmp), "<%s>", h->addr.v.tblname);
4867 			break;
4868 		case PF_ADDR_NOROUTE:
4869 			snprintf(tmp, sizeof(tmp), "no-route");
4870 			break;
4871 		case PF_ADDR_URPFFAILED:
4872 			snprintf(tmp, sizeof(tmp), "urpf-failed");
4873 			break;
4874 		case PF_ADDR_ADDRMASK:
4875 			if (!af || (PF_AZERO(&h->addr.v.a.addr, af) &&
4876 			    PF_AZERO(&h->addr.v.a.mask, af)))
4877 				snprintf(tmp, sizeof(tmp), "any");
4878 			else {
4879 				char	a[48];
4880 				int	bits;
4881 
4882 				if (inet_ntop(af, &h->addr.v.a.addr, a,
4883 				    sizeof(a)) == NULL)
4884 					snprintf(tmp, sizeof(tmp), "?");
4885 				else {
4886 					bits = unmask(&h->addr.v.a.mask, af);
4887 					if ((af == AF_INET && bits < 32) ||
4888 					    (af == AF_INET6 && bits < 128))
4889 						snprintf(tmp, sizeof(tmp),
4890 						    "%s/%d", a, bits);
4891 					else
4892 						snprintf(tmp, sizeof(tmp),
4893 						    "%s", a);
4894 				}
4895 			}
4896 			break;
4897 		default:
4898 			snprintf(tmp, sizeof(tmp), "?");
4899 			break;
4900 		}
4901 
4902 		if (h->not) {
4903 			snprintf(tmp_not, sizeof(tmp_not), "! %s", tmp);
4904 			expand_label_str(label, len, name, tmp_not);
4905 		} else
4906 			expand_label_str(label, len, name, tmp);
4907 	}
4908 }
4909 
4910 void
4911 expand_label_port(const char *name, char *label, size_t len,
4912     struct node_port *port)
4913 {
4914 	char	 a1[6], a2[6], op[13] = "";
4915 
4916 	if (strstr(label, name) != NULL) {
4917 		snprintf(a1, sizeof(a1), "%u", ntohs(port->port[0]));
4918 		snprintf(a2, sizeof(a2), "%u", ntohs(port->port[1]));
4919 		if (!port->op)
4920 			;
4921 		else if (port->op == PF_OP_IRG)
4922 			snprintf(op, sizeof(op), "%s><%s", a1, a2);
4923 		else if (port->op == PF_OP_XRG)
4924 			snprintf(op, sizeof(op), "%s<>%s", a1, a2);
4925 		else if (port->op == PF_OP_EQ)
4926 			snprintf(op, sizeof(op), "%s", a1);
4927 		else if (port->op == PF_OP_NE)
4928 			snprintf(op, sizeof(op), "!=%s", a1);
4929 		else if (port->op == PF_OP_LT)
4930 			snprintf(op, sizeof(op), "<%s", a1);
4931 		else if (port->op == PF_OP_LE)
4932 			snprintf(op, sizeof(op), "<=%s", a1);
4933 		else if (port->op == PF_OP_GT)
4934 			snprintf(op, sizeof(op), ">%s", a1);
4935 		else if (port->op == PF_OP_GE)
4936 			snprintf(op, sizeof(op), ">=%s", a1);
4937 		expand_label_str(label, len, name, op);
4938 	}
4939 }
4940 
4941 void
4942 expand_label_proto(const char *name, char *label, size_t len, u_int8_t proto)
4943 {
4944 	struct protoent *pe;
4945 	char n[4];
4946 
4947 	if (strstr(label, name) != NULL) {
4948 		pe = getprotobynumber(proto);
4949 		if (pe != NULL)
4950 			expand_label_str(label, len, name, pe->p_name);
4951 		else {
4952 			snprintf(n, sizeof(n), "%u", proto);
4953 			expand_label_str(label, len, name, n);
4954 		}
4955 	}
4956 }
4957 
4958 void
4959 expand_label_nr(const char *name, char *label, size_t len)
4960 {
4961 	char n[11];
4962 
4963 	if (strstr(label, name) != NULL) {
4964 		snprintf(n, sizeof(n), "%u", pf->anchor->match);
4965 		expand_label_str(label, len, name, n);
4966 	}
4967 }
4968 
4969 void
4970 expand_label(char *label, size_t len, const char *ifname, sa_family_t af,
4971     struct node_host *src_host, struct node_port *src_port,
4972     struct node_host *dst_host, struct node_port *dst_port,
4973     u_int8_t proto)
4974 {
4975 	expand_label_if("$if", label, len, ifname);
4976 	expand_label_addr("$srcaddr", label, len, af, src_host);
4977 	expand_label_addr("$dstaddr", label, len, af, dst_host);
4978 	expand_label_port("$srcport", label, len, src_port);
4979 	expand_label_port("$dstport", label, len, dst_port);
4980 	expand_label_proto("$proto", label, len, proto);
4981 	expand_label_nr("$nr", label, len);
4982 }
4983 
4984 int
4985 expand_altq(struct pf_altq *a, struct node_if *interfaces,
4986     struct node_queue *nqueues, struct node_queue_bw bwspec,
4987     struct node_queue_opt *opts)
4988 {
4989 	struct pf_altq		 pa, pb;
4990 	char			 qname[PF_QNAME_SIZE];
4991 	struct node_queue	*n;
4992 	struct node_queue_bw	 bw;
4993 	int			 errs = 0;
4994 
4995 	if ((pf->loadopt & PFCTL_FLAG_ALTQ) == 0) {
4996 		FREE_LIST(struct node_if, interfaces);
4997 		if (nqueues)
4998 			FREE_LIST(struct node_queue, nqueues);
4999 		return (0);
5000 	}
5001 
5002 	LOOP_THROUGH(struct node_if, interface, interfaces,
5003 		memcpy(&pa, a, sizeof(struct pf_altq));
5004 		if (strlcpy(pa.ifname, interface->ifname,
5005 		    sizeof(pa.ifname)) >= sizeof(pa.ifname))
5006 			errx(1, "expand_altq: strlcpy");
5007 
5008 		if (interface->not) {
5009 			yyerror("altq on ! <interface> is not supported");
5010 			errs++;
5011 		} else {
5012 			if (eval_pfaltq(pf, &pa, &bwspec, opts))
5013 				errs++;
5014 			else
5015 				if (pfctl_add_altq(pf, &pa))
5016 					errs++;
5017 
5018 			if (pf->opts & PF_OPT_VERBOSE) {
5019 				print_altq(&pf->paltq->altq, 0,
5020 				    &bwspec, opts);
5021 				if (nqueues && nqueues->tail) {
5022 					printf("queue { ");
5023 					LOOP_THROUGH(struct node_queue, queue,
5024 					    nqueues,
5025 						printf("%s ",
5026 						    queue->queue);
5027 					);
5028 					printf("}");
5029 				}
5030 				printf("\n");
5031 			}
5032 
5033 			if (pa.scheduler == ALTQT_CBQ ||
5034 			    pa.scheduler == ALTQT_HFSC) {
5035 				/* now create a root queue */
5036 				memset(&pb, 0, sizeof(struct pf_altq));
5037 				if (strlcpy(qname, "root_", sizeof(qname)) >=
5038 				    sizeof(qname))
5039 					errx(1, "expand_altq: strlcpy");
5040 				if (strlcat(qname, interface->ifname,
5041 				    sizeof(qname)) >= sizeof(qname))
5042 					errx(1, "expand_altq: strlcat");
5043 				if (strlcpy(pb.qname, qname,
5044 				    sizeof(pb.qname)) >= sizeof(pb.qname))
5045 					errx(1, "expand_altq: strlcpy");
5046 				if (strlcpy(pb.ifname, interface->ifname,
5047 				    sizeof(pb.ifname)) >= sizeof(pb.ifname))
5048 					errx(1, "expand_altq: strlcpy");
5049 				pb.qlimit = pa.qlimit;
5050 				pb.scheduler = pa.scheduler;
5051 				bw.bw_absolute = pa.ifbandwidth;
5052 				bw.bw_percent = 0;
5053 				if (eval_pfqueue(pf, &pb, &bw, opts))
5054 					errs++;
5055 				else
5056 					if (pfctl_add_altq(pf, &pb))
5057 						errs++;
5058 			}
5059 
5060 			LOOP_THROUGH(struct node_queue, queue, nqueues,
5061 				n = calloc(1, sizeof(struct node_queue));
5062 				if (n == NULL)
5063 					err(1, "expand_altq: calloc");
5064 				if (pa.scheduler == ALTQT_CBQ ||
5065 				    pa.scheduler == ALTQT_HFSC)
5066 					if (strlcpy(n->parent, qname,
5067 					    sizeof(n->parent)) >=
5068 					    sizeof(n->parent))
5069 						errx(1, "expand_altq: strlcpy");
5070 				if (strlcpy(n->queue, queue->queue,
5071 				    sizeof(n->queue)) >= sizeof(n->queue))
5072 					errx(1, "expand_altq: strlcpy");
5073 				if (strlcpy(n->ifname, interface->ifname,
5074 				    sizeof(n->ifname)) >= sizeof(n->ifname))
5075 					errx(1, "expand_altq: strlcpy");
5076 				n->scheduler = pa.scheduler;
5077 				n->next = NULL;
5078 				n->tail = n;
5079 				if (queues == NULL)
5080 					queues = n;
5081 				else {
5082 					queues->tail->next = n;
5083 					queues->tail = n;
5084 				}
5085 			);
5086 		}
5087 	);
5088 	FREE_LIST(struct node_if, interfaces);
5089 	if (nqueues)
5090 		FREE_LIST(struct node_queue, nqueues);
5091 
5092 	return (errs);
5093 }
5094 
5095 int
5096 expand_queue(struct pf_altq *a, struct node_if *interfaces,
5097     struct node_queue *nqueues, struct node_queue_bw bwspec,
5098     struct node_queue_opt *opts)
5099 {
5100 	struct node_queue	*n, *nq;
5101 	struct pf_altq		 pa;
5102 	u_int8_t		 found = 0;
5103 	u_int8_t		 errs = 0;
5104 
5105 	if ((pf->loadopt & PFCTL_FLAG_ALTQ) == 0) {
5106 		FREE_LIST(struct node_queue, nqueues);
5107 		return (0);
5108 	}
5109 
5110 	if (queues == NULL) {
5111 		yyerror("queue %s has no parent", a->qname);
5112 		FREE_LIST(struct node_queue, nqueues);
5113 		return (1);
5114 	}
5115 
5116 	LOOP_THROUGH(struct node_if, interface, interfaces,
5117 		LOOP_THROUGH(struct node_queue, tqueue, queues,
5118 			if (!strncmp(a->qname, tqueue->queue, PF_QNAME_SIZE) &&
5119 			    (interface->ifname[0] == 0 ||
5120 			    (!interface->not && !strncmp(interface->ifname,
5121 			    tqueue->ifname, IFNAMSIZ)) ||
5122 			    (interface->not && strncmp(interface->ifname,
5123 			    tqueue->ifname, IFNAMSIZ)))) {
5124 				/* found ourself in queues */
5125 				found++;
5126 
5127 				memcpy(&pa, a, sizeof(struct pf_altq));
5128 
5129 				if (pa.scheduler != ALTQT_NONE &&
5130 				    pa.scheduler != tqueue->scheduler) {
5131 					yyerror("exactly one scheduler type "
5132 					    "per interface allowed");
5133 					return (1);
5134 				}
5135 				pa.scheduler = tqueue->scheduler;
5136 
5137 				/* scheduler dependent error checking */
5138 				switch (pa.scheduler) {
5139 				case ALTQT_PRIQ:
5140 					if (nqueues != NULL) {
5141 						yyerror("priq queues cannot "
5142 						    "have child queues");
5143 						return (1);
5144 					}
5145 					if (bwspec.bw_absolute > 0 ||
5146 					    bwspec.bw_percent < 100) {
5147 						yyerror("priq doesn't take "
5148 						    "bandwidth");
5149 						return (1);
5150 					}
5151 					break;
5152 				default:
5153 					break;
5154 				}
5155 
5156 				if (strlcpy(pa.ifname, tqueue->ifname,
5157 				    sizeof(pa.ifname)) >= sizeof(pa.ifname))
5158 					errx(1, "expand_queue: strlcpy");
5159 				if (strlcpy(pa.parent, tqueue->parent,
5160 				    sizeof(pa.parent)) >= sizeof(pa.parent))
5161 					errx(1, "expand_queue: strlcpy");
5162 
5163 				if (eval_pfqueue(pf, &pa, &bwspec, opts))
5164 					errs++;
5165 				else
5166 					if (pfctl_add_altq(pf, &pa))
5167 						errs++;
5168 
5169 				for (nq = nqueues; nq != NULL; nq = nq->next) {
5170 					if (!strcmp(a->qname, nq->queue)) {
5171 						yyerror("queue cannot have "
5172 						    "itself as child");
5173 						errs++;
5174 						continue;
5175 					}
5176 					n = calloc(1,
5177 					    sizeof(struct node_queue));
5178 					if (n == NULL)
5179 						err(1, "expand_queue: calloc");
5180 					if (strlcpy(n->parent, a->qname,
5181 					    sizeof(n->parent)) >=
5182 					    sizeof(n->parent))
5183 						errx(1, "expand_queue strlcpy");
5184 					if (strlcpy(n->queue, nq->queue,
5185 					    sizeof(n->queue)) >=
5186 					    sizeof(n->queue))
5187 						errx(1, "expand_queue strlcpy");
5188 					if (strlcpy(n->ifname, tqueue->ifname,
5189 					    sizeof(n->ifname)) >=
5190 					    sizeof(n->ifname))
5191 						errx(1, "expand_queue strlcpy");
5192 					n->scheduler = tqueue->scheduler;
5193 					n->next = NULL;
5194 					n->tail = n;
5195 					if (queues == NULL)
5196 						queues = n;
5197 					else {
5198 						queues->tail->next = n;
5199 						queues->tail = n;
5200 					}
5201 				}
5202 				if ((pf->opts & PF_OPT_VERBOSE) && (
5203 				    (found == 1 && interface->ifname[0] == 0) ||
5204 				    (found > 0 && interface->ifname[0] != 0))) {
5205 					print_queue(&pf->paltq->altq, 0,
5206 					    &bwspec, interface->ifname[0] != 0,
5207 					    opts);
5208 					if (nqueues && nqueues->tail) {
5209 						printf("{ ");
5210 						LOOP_THROUGH(struct node_queue,
5211 						    queue, nqueues,
5212 							printf("%s ",
5213 							    queue->queue);
5214 						);
5215 						printf("}");
5216 					}
5217 					printf("\n");
5218 				}
5219 			}
5220 		);
5221 	);
5222 
5223 	FREE_LIST(struct node_queue, nqueues);
5224 	FREE_LIST(struct node_if, interfaces);
5225 
5226 	if (!found) {
5227 		yyerror("queue %s has no parent", a->qname);
5228 		errs++;
5229 	}
5230 
5231 	if (errs)
5232 		return (1);
5233 	else
5234 		return (0);
5235 }
5236 
5237 void
5238 expand_rule(struct pf_rule *r,
5239     struct node_if *interfaces, struct node_host *rpool_hosts,
5240     struct node_proto *protos, struct node_os *src_oses,
5241     struct node_host *src_hosts, struct node_port *src_ports,
5242     struct node_host *dst_hosts, struct node_port *dst_ports,
5243     struct node_uid *uids, struct node_gid *gids, struct node_icmp *icmp_types,
5244     const char *anchor_call)
5245 {
5246 	sa_family_t		 af = r->af;
5247 	int			 added = 0, error = 0;
5248 	char			 ifname[IF_NAMESIZE];
5249 	char			 label[PF_RULE_LABEL_SIZE];
5250 	char			 tagname[PF_TAG_NAME_SIZE];
5251 	char			 match_tagname[PF_TAG_NAME_SIZE];
5252 	struct pf_pooladdr	*pa;
5253 	struct node_host	*h;
5254 	u_int8_t		 flags, flagset, keep_state;
5255 
5256 	if (strlcpy(label, r->label, sizeof(label)) >= sizeof(label))
5257 		errx(1, "expand_rule: strlcpy");
5258 	if (strlcpy(tagname, r->tagname, sizeof(tagname)) >= sizeof(tagname))
5259 		errx(1, "expand_rule: strlcpy");
5260 	if (strlcpy(match_tagname, r->match_tagname, sizeof(match_tagname)) >=
5261 	    sizeof(match_tagname))
5262 		errx(1, "expand_rule: strlcpy");
5263 	flags = r->flags;
5264 	flagset = r->flagset;
5265 	keep_state = r->keep_state;
5266 
5267 	LOOP_THROUGH(struct node_if, interface, interfaces,
5268 	LOOP_THROUGH(struct node_proto, proto, protos,
5269 	LOOP_THROUGH(struct node_icmp, icmp_type, icmp_types,
5270 	LOOP_THROUGH(struct node_host, src_host, src_hosts,
5271 	LOOP_THROUGH(struct node_port, src_port, src_ports,
5272 	LOOP_THROUGH(struct node_os, src_os, src_oses,
5273 	LOOP_THROUGH(struct node_host, dst_host, dst_hosts,
5274 	LOOP_THROUGH(struct node_port, dst_port, dst_ports,
5275 	LOOP_THROUGH(struct node_uid, uid, uids,
5276 	LOOP_THROUGH(struct node_gid, gid, gids,
5277 
5278 		r->af = af;
5279 		/* for link-local IPv6 address, interface must match up */
5280 		if ((r->af && src_host->af && r->af != src_host->af) ||
5281 		    (r->af && dst_host->af && r->af != dst_host->af) ||
5282 		    (src_host->af && dst_host->af &&
5283 		    src_host->af != dst_host->af) ||
5284 		    (src_host->ifindex && dst_host->ifindex &&
5285 		    src_host->ifindex != dst_host->ifindex) ||
5286 		    (src_host->ifindex && *interface->ifname &&
5287 		    src_host->ifindex != if_nametoindex(interface->ifname)) ||
5288 		    (dst_host->ifindex && *interface->ifname &&
5289 		    dst_host->ifindex != if_nametoindex(interface->ifname)))
5290 			continue;
5291 		if (!r->af && src_host->af)
5292 			r->af = src_host->af;
5293 		else if (!r->af && dst_host->af)
5294 			r->af = dst_host->af;
5295 
5296 		if (*interface->ifname)
5297 			strlcpy(r->ifname, interface->ifname,
5298 			    sizeof(r->ifname));
5299 		else if (if_indextoname(src_host->ifindex, ifname))
5300 			strlcpy(r->ifname, ifname, sizeof(r->ifname));
5301 		else if (if_indextoname(dst_host->ifindex, ifname))
5302 			strlcpy(r->ifname, ifname, sizeof(r->ifname));
5303 		else
5304 			memset(r->ifname, '\0', sizeof(r->ifname));
5305 
5306 		if (strlcpy(r->label, label, sizeof(r->label)) >=
5307 		    sizeof(r->label))
5308 			errx(1, "expand_rule: strlcpy");
5309 		if (strlcpy(r->tagname, tagname, sizeof(r->tagname)) >=
5310 		    sizeof(r->tagname))
5311 			errx(1, "expand_rule: strlcpy");
5312 		if (strlcpy(r->match_tagname, match_tagname,
5313 		    sizeof(r->match_tagname)) >= sizeof(r->match_tagname))
5314 			errx(1, "expand_rule: strlcpy");
5315 		expand_label(r->label, PF_RULE_LABEL_SIZE, r->ifname, r->af,
5316 		    src_host, src_port, dst_host, dst_port, proto->proto);
5317 		expand_label(r->tagname, PF_TAG_NAME_SIZE, r->ifname, r->af,
5318 		    src_host, src_port, dst_host, dst_port, proto->proto);
5319 		expand_label(r->match_tagname, PF_TAG_NAME_SIZE, r->ifname,
5320 		    r->af, src_host, src_port, dst_host, dst_port,
5321 		    proto->proto);
5322 
5323 		error += check_netmask(src_host, r->af);
5324 		error += check_netmask(dst_host, r->af);
5325 
5326 		r->ifnot = interface->not;
5327 		r->proto = proto->proto;
5328 		r->src.addr = src_host->addr;
5329 		r->src.neg = src_host->not;
5330 		r->src.port[0] = src_port->port[0];
5331 		r->src.port[1] = src_port->port[1];
5332 		r->src.port_op = src_port->op;
5333 		r->dst.addr = dst_host->addr;
5334 		r->dst.neg = dst_host->not;
5335 		r->dst.port[0] = dst_port->port[0];
5336 		r->dst.port[1] = dst_port->port[1];
5337 		r->dst.port_op = dst_port->op;
5338 		r->uid.op = uid->op;
5339 		r->uid.uid[0] = uid->uid[0];
5340 		r->uid.uid[1] = uid->uid[1];
5341 		r->gid.op = gid->op;
5342 		r->gid.gid[0] = gid->gid[0];
5343 		r->gid.gid[1] = gid->gid[1];
5344 		r->type = icmp_type->type;
5345 		r->code = icmp_type->code;
5346 
5347 		if ((keep_state == PF_STATE_MODULATE ||
5348 		    keep_state == PF_STATE_SYNPROXY) &&
5349 		    r->proto && r->proto != IPPROTO_TCP)
5350 			r->keep_state = PF_STATE_NORMAL;
5351 		else
5352 			r->keep_state = keep_state;
5353 
5354 		if (r->proto && r->proto != IPPROTO_TCP) {
5355 			r->flags = 0;
5356 			r->flagset = 0;
5357 		} else {
5358 			r->flags = flags;
5359 			r->flagset = flagset;
5360 		}
5361 		if (icmp_type->proto && r->proto != icmp_type->proto) {
5362 			yyerror("icmp-type mismatch");
5363 			error++;
5364 		}
5365 
5366 		if (src_os && src_os->os) {
5367 			r->os_fingerprint = pfctl_get_fingerprint(src_os->os);
5368 			if ((pf->opts & PF_OPT_VERBOSE2) &&
5369 			    r->os_fingerprint == PF_OSFP_NOMATCH)
5370 				fprintf(stderr,
5371 				    "warning: unknown '%s' OS fingerprint\n",
5372 				    src_os->os);
5373 		} else {
5374 			r->os_fingerprint = PF_OSFP_ANY;
5375 		}
5376 
5377 		TAILQ_INIT(&r->rpool.list);
5378 		for (h = rpool_hosts; h != NULL; h = h->next) {
5379 			pa = calloc(1, sizeof(struct pf_pooladdr));
5380 			if (pa == NULL)
5381 				err(1, "expand_rule: calloc");
5382 			pa->addr = h->addr;
5383 			if (h->ifname != NULL) {
5384 				if (strlcpy(pa->ifname, h->ifname,
5385 				    sizeof(pa->ifname)) >=
5386 				    sizeof(pa->ifname))
5387 					errx(1, "expand_rule: strlcpy");
5388 			} else
5389 				pa->ifname[0] = 0;
5390 			TAILQ_INSERT_TAIL(&r->rpool.list, pa, entries);
5391 		}
5392 
5393 		if (rule_consistent(r, anchor_call[0]) < 0 || error)
5394 			yyerror("skipping rule due to errors");
5395 		else {
5396 			r->nr = pf->astack[pf->asd]->match++;
5397 			pfctl_add_rule(pf, r, anchor_call);
5398 			added++;
5399 		}
5400 
5401 	))))))))));
5402 
5403 	FREE_LIST(struct node_if, interfaces);
5404 	FREE_LIST(struct node_proto, protos);
5405 	FREE_LIST(struct node_host, src_hosts);
5406 	FREE_LIST(struct node_port, src_ports);
5407 	FREE_LIST(struct node_os, src_oses);
5408 	FREE_LIST(struct node_host, dst_hosts);
5409 	FREE_LIST(struct node_port, dst_ports);
5410 	FREE_LIST(struct node_uid, uids);
5411 	FREE_LIST(struct node_gid, gids);
5412 	FREE_LIST(struct node_icmp, icmp_types);
5413 	FREE_LIST(struct node_host, rpool_hosts);
5414 
5415 	if (!added)
5416 		yyerror("rule expands to no valid combination");
5417 }
5418 
5419 int
5420 expand_skip_interface(struct node_if *interfaces)
5421 {
5422 	int	errs = 0;
5423 
5424 	if (!interfaces || (!interfaces->next && !interfaces->not &&
5425 	    !strcmp(interfaces->ifname, "none"))) {
5426 		if (pf->opts & PF_OPT_VERBOSE)
5427 			printf("set skip on none\n");
5428 		errs = pfctl_set_interface_flags(pf, "", PFI_IFLAG_SKIP, 0);
5429 		return (errs);
5430 	}
5431 
5432 	if (pf->opts & PF_OPT_VERBOSE)
5433 		printf("set skip on {");
5434 	LOOP_THROUGH(struct node_if, interface, interfaces,
5435 		if (pf->opts & PF_OPT_VERBOSE)
5436 			printf(" %s", interface->ifname);
5437 		if (interface->not) {
5438 			yyerror("skip on ! <interface> is not supported");
5439 			errs++;
5440 		} else
5441 			errs += pfctl_set_interface_flags(pf,
5442 			    interface->ifname, PFI_IFLAG_SKIP, 1);
5443 	);
5444 	if (pf->opts & PF_OPT_VERBOSE)
5445 		printf(" }\n");
5446 
5447 	FREE_LIST(struct node_if, interfaces);
5448 
5449 	if (errs)
5450 		return (1);
5451 	else
5452 		return (0);
5453 }
5454 
5455 #undef FREE_LIST
5456 #undef LOOP_THROUGH
5457 
5458 int
5459 check_rulestate(int desired_state)
5460 {
5461 	if (require_order && (rulestate > desired_state)) {
5462 		yyerror("Rules must be in order: options, normalization, "
5463 		    "queueing, translation, filtering");
5464 		return (1);
5465 	}
5466 	rulestate = desired_state;
5467 	return (0);
5468 }
5469 
5470 int
5471 kw_cmp(const void *k, const void *e)
5472 {
5473 	return (strcmp(k, ((const struct keywords *)e)->k_name));
5474 }
5475 
5476 int
5477 lookup(char *s)
5478 {
5479 	/* this has to be sorted always */
5480 	static const struct keywords keywords[] = {
5481 		{ "all",		ALL},
5482 		{ "allow-opts",		ALLOWOPTS},
5483 		{ "altq",		ALTQ},
5484 		{ "anchor",		ANCHOR},
5485 		{ "antispoof",		ANTISPOOF},
5486 		{ "any",		ANY},
5487 		{ "bandwidth",		BANDWIDTH},
5488 		{ "binat",		BINAT},
5489 		{ "binat-anchor",	BINATANCHOR},
5490 		{ "bitmask",		BITMASK},
5491 		{ "block",		BLOCK},
5492 		{ "block-policy",	BLOCKPOLICY},
5493 		{ "buckets",		BUCKETS},
5494 		{ "cbq",		CBQ},
5495 		{ "code",		CODE},
5496 		{ "codelq",		CODEL},
5497 		{ "crop",		FRAGCROP},
5498 		{ "debug",		DEBUG},
5499 		{ "divert-reply",	DIVERTREPLY},
5500 		{ "divert-to",		DIVERTTO},
5501 		{ "drop",		DROP},
5502 		{ "drop-ovl",		FRAGDROP},
5503 		{ "dup-to",		DUPTO},
5504 		{ "fail-policy",	FAILPOLICY},
5505 		{ "fairq",		FAIRQ},
5506 		{ "fastroute",		FASTROUTE},
5507 		{ "file",		FILENAME},
5508 		{ "fingerprints",	FINGERPRINTS},
5509 		{ "flags",		FLAGS},
5510 		{ "floating",		FLOATING},
5511 		{ "flush",		FLUSH},
5512 		{ "for",		FOR},
5513 		{ "fragment",		FRAGMENT},
5514 		{ "from",		FROM},
5515 		{ "global",		GLOBAL},
5516 		{ "group",		GROUP},
5517 		{ "hfsc",		HFSC},
5518 		{ "hogs",		HOGS},
5519 		{ "hostid",		HOSTID},
5520 		{ "icmp-type",		ICMPTYPE},
5521 		{ "icmp6-type",		ICMP6TYPE},
5522 		{ "if-bound",		IFBOUND},
5523 		{ "in",			IN},
5524 		{ "include",		INCLUDE},
5525 		{ "inet",		INET},
5526 		{ "inet6",		INET6},
5527 		{ "interval",		INTERVAL},
5528 		{ "keep",		KEEP},
5529 		{ "label",		LABEL},
5530 		{ "limit",		LIMIT},
5531 		{ "linkshare",		LINKSHARE},
5532 		{ "load",		LOAD},
5533 		{ "log",		LOG},
5534 		{ "loginterface",	LOGINTERFACE},
5535 		{ "max",		MAXIMUM},
5536 		{ "max-mss",		MAXMSS},
5537 		{ "max-src-conn",	MAXSRCCONN},
5538 		{ "max-src-conn-rate",	MAXSRCCONNRATE},
5539 		{ "max-src-nodes",	MAXSRCNODES},
5540 		{ "max-src-states",	MAXSRCSTATES},
5541 		{ "min-ttl",		MINTTL},
5542 		{ "modulate",		MODULATE},
5543 		{ "nat",		NAT},
5544 		{ "nat-anchor",		NATANCHOR},
5545 		{ "no",			NO},
5546 		{ "no-df",		NODF},
5547 		{ "no-route",		NOROUTE},
5548 		{ "no-sync",		NOSYNC},
5549 		{ "on",			ON},
5550 		{ "optimization",	OPTIMIZATION},
5551 		{ "os",			OS},
5552 		{ "out",		OUT},
5553 		{ "overload",		OVERLOAD},
5554 		{ "pass",		PASS},
5555 		{ "port",		PORT},
5556 		{ "prio",		PRIO},
5557 		{ "priority",		PRIORITY},
5558 		{ "priq",		PRIQ},
5559 		{ "probability",	PROBABILITY},
5560 		{ "proto",		PROTO},
5561 		{ "qlimit",		QLIMIT},
5562 		{ "queue",		QUEUE},
5563 		{ "quick",		QUICK},
5564 		{ "random",		RANDOM},
5565 		{ "random-id",		RANDOMID},
5566 		{ "rdr",		RDR},
5567 		{ "rdr-anchor",		RDRANCHOR},
5568 		{ "realtime",		REALTIME},
5569 		{ "reassemble",		REASSEMBLE},
5570 		{ "reply-to",		REPLYTO},
5571 		{ "require-order",	REQUIREORDER},
5572 		{ "return",		RETURN},
5573 		{ "return-icmp",	RETURNICMP},
5574 		{ "return-icmp6",	RETURNICMP6},
5575 		{ "return-rst",		RETURNRST},
5576 		{ "round-robin",	ROUNDROBIN},
5577 		{ "route",		ROUTE},
5578 		{ "route-to",		ROUTETO},
5579 		{ "rtable",		RTABLE},
5580 		{ "rule",		RULE},
5581 		{ "ruleset-optimization",	RULESET_OPTIMIZATION},
5582 		{ "scrub",		SCRUB},
5583 		{ "set",		SET},
5584 		{ "set-tos",		SETTOS},
5585 		{ "skip",		SKIP},
5586 		{ "sloppy",		SLOPPY},
5587 		{ "source-hash",	SOURCEHASH},
5588 		{ "source-track",	SOURCETRACK},
5589 		{ "state",		STATE},
5590 		{ "state-defaults",	STATEDEFAULTS},
5591 		{ "state-policy",	STATEPOLICY},
5592 		{ "static-port",	STATICPORT},
5593 		{ "sticky-address",	STICKYADDRESS},
5594 		{ "synproxy",		SYNPROXY},
5595 		{ "table",		TABLE},
5596 		{ "tag",		TAG},
5597 		{ "tagged",		TAGGED},
5598 		{ "target",		TARGET},
5599 		{ "tbrsize",		TBRSIZE},
5600 		{ "timeout",		TIMEOUT},
5601 		{ "to",			TO},
5602 		{ "tos",		TOS},
5603 		{ "ttl",		TTL},
5604 		{ "upperlimit",		UPPERLIMIT},
5605 		{ "urpf-failed",	URPFFAILED},
5606 		{ "user",		USER},
5607 	};
5608 	const struct keywords	*p;
5609 
5610 	p = bsearch(s, keywords, sizeof(keywords)/sizeof(keywords[0]),
5611 	    sizeof(keywords[0]), kw_cmp);
5612 
5613 	if (p) {
5614 		if (debug > 1)
5615 			fprintf(stderr, "%s: %d\n", s, p->k_val);
5616 		return (p->k_val);
5617 	} else {
5618 		if (debug > 1)
5619 			fprintf(stderr, "string: %s\n", s);
5620 		return (STRING);
5621 	}
5622 }
5623 
5624 #define MAXPUSHBACK	128
5625 
5626 static char	*parsebuf;
5627 static int	 parseindex;
5628 static char	 pushback_buffer[MAXPUSHBACK];
5629 static int	 pushback_index = 0;
5630 
5631 int
5632 lgetc(int quotec)
5633 {
5634 	int		c, next;
5635 
5636 	if (parsebuf) {
5637 		/* Read character from the parsebuffer instead of input. */
5638 		if (parseindex >= 0) {
5639 			c = parsebuf[parseindex++];
5640 			if (c != '\0')
5641 				return (c);
5642 			parsebuf = NULL;
5643 		} else
5644 			parseindex++;
5645 	}
5646 
5647 	if (pushback_index)
5648 		return (pushback_buffer[--pushback_index]);
5649 
5650 	if (quotec) {
5651 		if ((c = getc(file->stream)) == EOF) {
5652 			yyerror("reached end of file while parsing quoted string");
5653 			if (popfile() == EOF)
5654 				return (EOF);
5655 			return (quotec);
5656 		}
5657 		return (c);
5658 	}
5659 
5660 	while ((c = getc(file->stream)) == '\\') {
5661 		next = getc(file->stream);
5662 		if (next != '\n') {
5663 			c = next;
5664 			break;
5665 		}
5666 		yylval.lineno = file->lineno;
5667 		file->lineno++;
5668 	}
5669 
5670 	while (c == EOF) {
5671 		if (popfile() == EOF)
5672 			return (EOF);
5673 		c = getc(file->stream);
5674 	}
5675 	return (c);
5676 }
5677 
5678 int
5679 lungetc(int c)
5680 {
5681 	if (c == EOF)
5682 		return (EOF);
5683 	if (parsebuf) {
5684 		parseindex--;
5685 		if (parseindex >= 0)
5686 			return (c);
5687 	}
5688 	if (pushback_index < MAXPUSHBACK-1)
5689 		return (pushback_buffer[pushback_index++] = c);
5690 	else
5691 		return (EOF);
5692 }
5693 
5694 int
5695 findeol(void)
5696 {
5697 	int	c;
5698 
5699 	parsebuf = NULL;
5700 
5701 	/* skip to either EOF or the first real EOL */
5702 	while (1) {
5703 		if (pushback_index)
5704 			c = pushback_buffer[--pushback_index];
5705 		else
5706 			c = lgetc(0);
5707 		if (c == '\n') {
5708 			file->lineno++;
5709 			break;
5710 		}
5711 		if (c == EOF)
5712 			break;
5713 	}
5714 	return (ERROR);
5715 }
5716 
5717 int
5718 yylex(void)
5719 {
5720 	char	 buf[8096];
5721 	char	*p, *val;
5722 	int	 quotec, next, c;
5723 	int	 token;
5724 
5725 top:
5726 	p = buf;
5727 	while ((c = lgetc(0)) == ' ' || c == '\t')
5728 		; /* nothing */
5729 
5730 	yylval.lineno = file->lineno;
5731 	if (c == '#')
5732 		while ((c = lgetc(0)) != '\n' && c != EOF)
5733 			; /* nothing */
5734 	if (c == '$' && parsebuf == NULL) {
5735 		while (1) {
5736 			if ((c = lgetc(0)) == EOF)
5737 				return (0);
5738 
5739 			if (p + 1 >= buf + sizeof(buf) - 1) {
5740 				yyerror("string too long");
5741 				return (findeol());
5742 			}
5743 			if (isalnum(c) || c == '_') {
5744 				*p++ = (char)c;
5745 				continue;
5746 			}
5747 			*p = '\0';
5748 			lungetc(c);
5749 			break;
5750 		}
5751 		val = symget(buf);
5752 		if (val == NULL) {
5753 			yyerror("macro '%s' not defined", buf);
5754 			return (findeol());
5755 		}
5756 		parsebuf = val;
5757 		parseindex = 0;
5758 		goto top;
5759 	}
5760 
5761 	switch (c) {
5762 	case '\'':
5763 	case '"':
5764 		quotec = c;
5765 		while (1) {
5766 			if ((c = lgetc(quotec)) == EOF)
5767 				return (0);
5768 			if (c == '\n') {
5769 				file->lineno++;
5770 				continue;
5771 			} else if (c == '\\') {
5772 				if ((next = lgetc(quotec)) == EOF)
5773 					return (0);
5774 				if (next == quotec || c == ' ' || c == '\t')
5775 					c = next;
5776 				else if (next == '\n') {
5777 					file->lineno++;
5778 					continue;
5779 				}
5780 				else
5781 					lungetc(next);
5782 			} else if (c == quotec) {
5783 				*p = '\0';
5784 				break;
5785 			}
5786 			if (p + 1 >= buf + sizeof(buf) - 1) {
5787 				yyerror("string too long");
5788 				return (findeol());
5789 			}
5790 			*p++ = (char)c;
5791 		}
5792 		yylval.v.string = strdup(buf);
5793 		if (yylval.v.string == NULL)
5794 			err(1, "yylex: strdup");
5795 		return (STRING);
5796 	case '<':
5797 		next = lgetc(0);
5798 		if (next == '>') {
5799 			yylval.v.i = PF_OP_XRG;
5800 			return (PORTBINARY);
5801 		}
5802 		lungetc(next);
5803 		break;
5804 	case '>':
5805 		next = lgetc(0);
5806 		if (next == '<') {
5807 			yylval.v.i = PF_OP_IRG;
5808 			return (PORTBINARY);
5809 		}
5810 		lungetc(next);
5811 		break;
5812 	case '-':
5813 		next = lgetc(0);
5814 		if (next == '>')
5815 			return (ARROW);
5816 		lungetc(next);
5817 		break;
5818 	}
5819 
5820 #define allowed_to_end_number(x) \
5821 	(isspace(x) || x == ')' || x ==',' || x == '/' || x == '}' || x == '=')
5822 
5823 	if (c == '-' || isdigit(c)) {
5824 		do {
5825 			*p++ = c;
5826 			if ((unsigned)(p-buf) >= sizeof(buf)) {
5827 				yyerror("string too long");
5828 				return (findeol());
5829 			}
5830 		} while ((c = lgetc(0)) != EOF && isdigit(c));
5831 		lungetc(c);
5832 		if (p == buf + 1 && buf[0] == '-')
5833 			goto nodigits;
5834 		if (c == EOF || allowed_to_end_number(c)) {
5835 			const char *errstr = NULL;
5836 
5837 			*p = '\0';
5838 			yylval.v.number = strtonum(buf, LLONG_MIN,
5839 			    LLONG_MAX, &errstr);
5840 			if (errstr) {
5841 				yyerror("\"%s\" invalid number: %s",
5842 				    buf, errstr);
5843 				return (findeol());
5844 			}
5845 			return (NUMBER);
5846 		} else {
5847 nodigits:
5848 			while (p > buf + 1)
5849 				lungetc(*--p);
5850 			c = *--p;
5851 			if (c == '-')
5852 				return (c);
5853 		}
5854 	}
5855 
5856 #define allowed_in_string(x) \
5857 	(isalnum(x) || (ispunct(x) && x != '(' && x != ')' && \
5858 	x != '{' && x != '}' && x != '<' && x != '>' && \
5859 	x != '!' && x != '=' && x != '/' && x != '#' && \
5860 	x != ','))
5861 
5862 	if (isalnum(c) || c == ':' || c == '_') {
5863 		do {
5864 			*p++ = c;
5865 			if ((unsigned)(p-buf) >= sizeof(buf)) {
5866 				yyerror("string too long");
5867 				return (findeol());
5868 			}
5869 		} while ((c = lgetc(0)) != EOF && (allowed_in_string(c)));
5870 		lungetc(c);
5871 		*p = '\0';
5872 		if ((token = lookup(buf)) == STRING)
5873 			if ((yylval.v.string = strdup(buf)) == NULL)
5874 				err(1, "yylex: strdup");
5875 		return (token);
5876 	}
5877 	if (c == '\n') {
5878 		yylval.lineno = file->lineno;
5879 		file->lineno++;
5880 	}
5881 	if (c == EOF)
5882 		return (0);
5883 	return (c);
5884 }
5885 
5886 int
5887 check_file_secrecy(int fd, const char *fname)
5888 {
5889 	struct stat	st;
5890 
5891 	if (fstat(fd, &st)) {
5892 		warn("cannot stat %s", fname);
5893 		return (-1);
5894 	}
5895 	if (st.st_uid != 0 && st.st_uid != getuid()) {
5896 		warnx("%s: owner not root or current user", fname);
5897 		return (-1);
5898 	}
5899 	if (st.st_mode & (S_IRWXG | S_IRWXO)) {
5900 		warnx("%s: group/world readable/writeable", fname);
5901 		return (-1);
5902 	}
5903 	return (0);
5904 }
5905 
5906 struct file *
5907 pushfile(const char *name, int secret)
5908 {
5909 	struct file	*nfile;
5910 
5911 	if ((nfile = calloc(1, sizeof(struct file))) == NULL ||
5912 	    (nfile->name = strdup(name)) == NULL) {
5913 		warn("malloc");
5914 		return (NULL);
5915 	}
5916 	if (TAILQ_FIRST(&files) == NULL && strcmp(nfile->name, "-") == 0) {
5917 		nfile->stream = stdin;
5918 		free(nfile->name);
5919 		if ((nfile->name = strdup("stdin")) == NULL) {
5920 			warn("strdup");
5921 			free(nfile);
5922 			return (NULL);
5923 		}
5924 	} else if ((nfile->stream = fopen(nfile->name, "r")) == NULL) {
5925 		warn("%s", nfile->name);
5926 		free(nfile->name);
5927 		free(nfile);
5928 		return (NULL);
5929 	} else if (secret &&
5930 	    check_file_secrecy(fileno(nfile->stream), nfile->name)) {
5931 		fclose(nfile->stream);
5932 		free(nfile->name);
5933 		free(nfile);
5934 		return (NULL);
5935 	}
5936 	nfile->lineno = 1;
5937 	TAILQ_INSERT_TAIL(&files, nfile, entry);
5938 	return (nfile);
5939 }
5940 
5941 int
5942 popfile(void)
5943 {
5944 	struct file	*prev;
5945 
5946 	if ((prev = TAILQ_PREV(file, files, entry)) != NULL) {
5947 		prev->errors += file->errors;
5948 		TAILQ_REMOVE(&files, file, entry);
5949 		fclose(file->stream);
5950 		free(file->name);
5951 		free(file);
5952 		file = prev;
5953 		return (0);
5954 	}
5955 	return (EOF);
5956 }
5957 
5958 int
5959 parse_config(char *filename, struct pfctl *xpf)
5960 {
5961 	int		 errors = 0;
5962 	struct sym	*sym;
5963 
5964 	pf = xpf;
5965 	errors = 0;
5966 	rulestate = PFCTL_STATE_NONE;
5967 	returnicmpdefault = (ICMP_UNREACH << 8) | ICMP_UNREACH_PORT;
5968 	returnicmp6default =
5969 	    (ICMP6_DST_UNREACH << 8) | ICMP6_DST_UNREACH_NOPORT;
5970 	blockpolicy = PFRULE_DROP;
5971 	failpolicy = PFRULE_DROP;
5972 	require_order = 1;
5973 
5974 	if ((file = pushfile(filename, 0)) == NULL) {
5975 		warn("cannot open the main config file!");
5976 		return (-1);
5977 	}
5978 
5979 	yyparse();
5980 	errors = file->errors;
5981 	popfile();
5982 
5983 	/* Free macros and check which have not been used. */
5984 	while ((sym = TAILQ_FIRST(&symhead))) {
5985 		if ((pf->opts & PF_OPT_VERBOSE2) && !sym->used)
5986 			fprintf(stderr, "warning: macro '%s' not "
5987 			    "used\n", sym->nam);
5988 		free(sym->nam);
5989 		free(sym->val);
5990 		TAILQ_REMOVE(&symhead, sym, entry);
5991 		free(sym);
5992 	}
5993 
5994 	return (errors ? -1 : 0);
5995 }
5996 
5997 int
5998 symset(const char *nam, const char *val, int persist)
5999 {
6000 	struct sym	*sym;
6001 
6002 	for (sym = TAILQ_FIRST(&symhead); sym && strcmp(nam, sym->nam);
6003 	    sym = TAILQ_NEXT(sym, entry))
6004 		;	/* nothing */
6005 
6006 	if (sym != NULL) {
6007 		if (sym->persist == 1)
6008 			return (0);
6009 		else {
6010 			free(sym->nam);
6011 			free(sym->val);
6012 			TAILQ_REMOVE(&symhead, sym, entry);
6013 			free(sym);
6014 		}
6015 	}
6016 	if ((sym = calloc(1, sizeof(*sym))) == NULL)
6017 		return (-1);
6018 
6019 	sym->nam = strdup(nam);
6020 	if (sym->nam == NULL) {
6021 		free(sym);
6022 		return (-1);
6023 	}
6024 	sym->val = strdup(val);
6025 	if (sym->val == NULL) {
6026 		free(sym->nam);
6027 		free(sym);
6028 		return (-1);
6029 	}
6030 	sym->used = 0;
6031 	sym->persist = persist;
6032 	TAILQ_INSERT_TAIL(&symhead, sym, entry);
6033 	return (0);
6034 }
6035 
6036 int
6037 pfctl_cmdline_symset(char *s)
6038 {
6039 	char	*sym, *val;
6040 	int	 ret;
6041 
6042 	if ((val = strrchr(s, '=')) == NULL)
6043 		return (-1);
6044 
6045 	if ((sym = malloc(strlen(s) - strlen(val) + 1)) == NULL)
6046 		err(1, "pfctl_cmdline_symset: malloc");
6047 
6048 	strlcpy(sym, s, strlen(s) - strlen(val) + 1);
6049 
6050 	ret = symset(sym, val + 1, 1);
6051 	free(sym);
6052 
6053 	return (ret);
6054 }
6055 
6056 char *
6057 symget(const char *nam)
6058 {
6059 	struct sym	*sym;
6060 
6061 	TAILQ_FOREACH(sym, &symhead, entry)
6062 		if (strcmp(nam, sym->nam) == 0) {
6063 			sym->used = 1;
6064 			return (sym->val);
6065 		}
6066 	return (NULL);
6067 }
6068 
6069 void
6070 mv_rules(struct pf_ruleset *src, struct pf_ruleset *dst)
6071 {
6072 	int i;
6073 	struct pf_rule *r;
6074 
6075 	for (i = 0; i < PF_RULESET_MAX; ++i) {
6076 		while ((r = TAILQ_FIRST(src->rules[i].active.ptr))
6077 		    != NULL) {
6078 			TAILQ_REMOVE(src->rules[i].active.ptr, r, entries);
6079 			TAILQ_INSERT_TAIL(dst->rules[i].active.ptr, r, entries);
6080 			dst->anchor->match++;
6081 		}
6082 		src->anchor->match = 0;
6083 		while ((r = TAILQ_FIRST(src->rules[i].inactive.ptr))
6084 		    != NULL) {
6085 			TAILQ_REMOVE(src->rules[i].inactive.ptr, r, entries);
6086 			TAILQ_INSERT_TAIL(dst->rules[i].inactive.ptr,
6087 				r, entries);
6088 		}
6089 	}
6090 }
6091 
6092 void
6093 decide_address_family(struct node_host *n, sa_family_t *af)
6094 {
6095 	if (*af != 0 || n == NULL)
6096 		return;
6097 	*af = n->af;
6098 	while ((n = n->next) != NULL) {
6099 		if (n->af != *af) {
6100 			*af = 0;
6101 			return;
6102 		}
6103 	}
6104 }
6105 
6106 void
6107 remove_invalid_hosts(struct node_host **nh, sa_family_t *af)
6108 {
6109 	struct node_host	*n = *nh, *prev = NULL;
6110 
6111 	while (n != NULL) {
6112 		if (*af && n->af && n->af != *af) {
6113 			/* unlink and free n */
6114 			struct node_host *next = n->next;
6115 
6116 			/* adjust tail pointer */
6117 			if (n == (*nh)->tail)
6118 				(*nh)->tail = prev;
6119 			/* adjust previous node's next pointer */
6120 			if (prev == NULL)
6121 				*nh = next;
6122 			else
6123 				prev->next = next;
6124 			/* free node */
6125 			if (n->ifname != NULL)
6126 				free(n->ifname);
6127 			free(n);
6128 			n = next;
6129 		} else {
6130 			if (n->af && !*af)
6131 				*af = n->af;
6132 			prev = n;
6133 			n = n->next;
6134 		}
6135 	}
6136 }
6137 
6138 int
6139 invalid_redirect(struct node_host *nh, sa_family_t af)
6140 {
6141 	if (!af) {
6142 		struct node_host *n;
6143 
6144 		/* tables and dyniftl are ok without an address family */
6145 		for (n = nh; n != NULL; n = n->next) {
6146 			if (n->addr.type != PF_ADDR_TABLE &&
6147 			    n->addr.type != PF_ADDR_DYNIFTL) {
6148 				yyerror("address family not given and "
6149 				    "translation address expands to multiple "
6150 				    "address families");
6151 				return (1);
6152 			}
6153 		}
6154 	}
6155 	if (nh == NULL) {
6156 		yyerror("no translation address with matching address family "
6157 		    "found.");
6158 		return (1);
6159 	}
6160 	return (0);
6161 }
6162 
6163 int
6164 atoul(char *s, u_long *ulvalp)
6165 {
6166 	u_long	 ulval;
6167 	char	*ep;
6168 
6169 	errno = 0;
6170 	ulval = strtoul(s, &ep, 0);
6171 	if (s[0] == '\0' || *ep != '\0')
6172 		return (-1);
6173 	if (errno == ERANGE && ulval == ULONG_MAX)
6174 		return (-1);
6175 	*ulvalp = ulval;
6176 	return (0);
6177 }
6178 
6179 int
6180 getservice(char *n)
6181 {
6182 	struct servent	*s;
6183 	u_long		 ulval;
6184 
6185 	if (atoul(n, &ulval) == 0) {
6186 		if (ulval > 65535) {
6187 			yyerror("illegal port value %lu", ulval);
6188 			return (-1);
6189 		}
6190 		return (htons(ulval));
6191 	} else {
6192 		s = getservbyname(n, "tcp");
6193 		if (s == NULL)
6194 			s = getservbyname(n, "udp");
6195 		if (s == NULL) {
6196 			yyerror("unknown port %s", n);
6197 			return (-1);
6198 		}
6199 		return (s->s_port);
6200 	}
6201 }
6202 
6203 int
6204 rule_label(struct pf_rule *r, char *s)
6205 {
6206 	if (s) {
6207 		if (strlcpy(r->label, s, sizeof(r->label)) >=
6208 		    sizeof(r->label)) {
6209 			yyerror("rule label too long (max %d chars)",
6210 			    sizeof(r->label)-1);
6211 			return (-1);
6212 		}
6213 	}
6214 	return (0);
6215 }
6216 
6217 u_int16_t
6218 parseicmpspec(char *w, sa_family_t af)
6219 {
6220 	const struct icmpcodeent	*p;
6221 	u_long				 ulval;
6222 	u_int8_t			 icmptype;
6223 
6224 	if (af == AF_INET)
6225 		icmptype = returnicmpdefault >> 8;
6226 	else
6227 		icmptype = returnicmp6default >> 8;
6228 
6229 	if (atoul(w, &ulval) == -1) {
6230 		if ((p = geticmpcodebyname(icmptype, w, af)) == NULL) {
6231 			yyerror("unknown icmp code %s", w);
6232 			return (0);
6233 		}
6234 		ulval = p->code;
6235 	}
6236 	if (ulval > 255) {
6237 		yyerror("invalid icmp code %lu", ulval);
6238 		return (0);
6239 	}
6240 	return (icmptype << 8 | ulval);
6241 }
6242 
6243 int
6244 parseport(char *port, struct range *r, int extensions)
6245 {
6246 	char	*p = strchr(port, ':');
6247 
6248 	if (p == NULL) {
6249 		if ((r->a = getservice(port)) == -1)
6250 			return (-1);
6251 		r->b = 0;
6252 		r->t = PF_OP_NONE;
6253 		return (0);
6254 	}
6255 	if ((extensions & PPORT_STAR) && !strcmp(p+1, "*")) {
6256 		*p = 0;
6257 		if ((r->a = getservice(port)) == -1)
6258 			return (-1);
6259 		r->b = 0;
6260 		r->t = PF_OP_IRG;
6261 		return (0);
6262 	}
6263 	if ((extensions & PPORT_RANGE)) {
6264 		*p++ = 0;
6265 		if ((r->a = getservice(port)) == -1 ||
6266 		    (r->b = getservice(p)) == -1)
6267 			return (-1);
6268 		if (r->a == r->b) {
6269 			r->b = 0;
6270 			r->t = PF_OP_NONE;
6271 		} else
6272 			r->t = PF_OP_RRG;
6273 		return (0);
6274 	}
6275 	return (-1);
6276 }
6277 
6278 int
6279 pfctl_load_anchors(int dev, struct pfctl *pf, struct pfr_buffer *trans)
6280 {
6281 	struct loadanchors	*la;
6282 
6283 	TAILQ_FOREACH(la, &loadanchorshead, entries) {
6284 		if (pf->opts & PF_OPT_VERBOSE)
6285 			fprintf(stderr, "\nLoading anchor %s from %s\n",
6286 			    la->anchorname, la->filename);
6287 		if (pfctl_rules(dev, la->filename, pf->opts, pf->optimize,
6288 		    la->anchorname, trans) == -1)
6289 			return (-1);
6290 	}
6291 
6292 	return (0);
6293 }
6294 
6295 int
6296 kw_casecmp(const void *k, const void *e)
6297 {
6298 	return (strcasecmp(k, ((const struct keywords *)e)->k_name));
6299 }
6300 
6301 int
6302 map_tos(char *s, int *val)
6303 {
6304 	/* DiffServ Codepoints and other TOS mappings */
6305 	const struct keywords	 toswords[] = {
6306 		{ "af11",		IPTOS_DSCP_AF11 },
6307 		{ "af12",		IPTOS_DSCP_AF12 },
6308 		{ "af13",		IPTOS_DSCP_AF13 },
6309 		{ "af21",		IPTOS_DSCP_AF21 },
6310 		{ "af22",		IPTOS_DSCP_AF22 },
6311 		{ "af23",		IPTOS_DSCP_AF23 },
6312 		{ "af31",		IPTOS_DSCP_AF31 },
6313 		{ "af32",		IPTOS_DSCP_AF32 },
6314 		{ "af33",		IPTOS_DSCP_AF33 },
6315 		{ "af41",		IPTOS_DSCP_AF41 },
6316 		{ "af42",		IPTOS_DSCP_AF42 },
6317 		{ "af43",		IPTOS_DSCP_AF43 },
6318 		{ "critical",		IPTOS_PREC_CRITIC_ECP },
6319 		{ "cs0",		IPTOS_DSCP_CS0 },
6320 		{ "cs1",		IPTOS_DSCP_CS1 },
6321 		{ "cs2",		IPTOS_DSCP_CS2 },
6322 		{ "cs3",		IPTOS_DSCP_CS3 },
6323 		{ "cs4",		IPTOS_DSCP_CS4 },
6324 		{ "cs5",		IPTOS_DSCP_CS5 },
6325 		{ "cs6",		IPTOS_DSCP_CS6 },
6326 		{ "cs7",		IPTOS_DSCP_CS7 },
6327 		{ "ef",			IPTOS_DSCP_EF },
6328 		{ "inetcontrol",	IPTOS_PREC_INTERNETCONTROL },
6329 		{ "lowdelay",		IPTOS_LOWDELAY },
6330 		{ "netcontrol",		IPTOS_PREC_NETCONTROL },
6331 		{ "reliability",	IPTOS_RELIABILITY },
6332 		{ "throughput",		IPTOS_THROUGHPUT }
6333 	};
6334 	const struct keywords	*p;
6335 
6336 	p = bsearch(s, toswords, sizeof(toswords)/sizeof(toswords[0]),
6337 	    sizeof(toswords[0]), kw_casecmp);
6338 
6339 	if (p) {
6340 		*val = p->k_val;
6341 		return (1);
6342 	}
6343 	return (0);
6344 }
6345 
6346 int
6347 rt_tableid_max(void)
6348 {
6349 #ifdef __FreeBSD__
6350 	int fibs;
6351 	size_t l = sizeof(fibs);
6352 
6353         if (sysctlbyname("net.fibs", &fibs, &l, NULL, 0) == -1)
6354 		fibs = 16;	/* XXX RT_MAXFIBS, at least limit it some. */
6355 	/*
6356 	 * As the OpenBSD code only compares > and not >= we need to adjust
6357 	 * here given we only accept values of 0..n and want to avoid #ifdefs
6358 	 * in the grammar.
6359 	 */
6360 	return (fibs - 1);
6361 #else
6362 	return (RT_TABLEID_MAX);
6363 #endif
6364 }
6365