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