Sebastian Huber c40e45b75e Update to FreeBSD head 2016-08-23
Git mirror commit 9fe7c416e6abb28b1398fd3e5687099846800cfd.
2017-01-10 09:53:31 +01:00

9316 lines
292 KiB
C

/* original parser id follows */
/* yysccsid[] = "@(#)yaccpar 1.9 (Berkeley) 02/21/93" */
/* (use YYMAJOR/YYMINOR for ifdefs dependent on parser version) */
#define YYBYACC 1
#define YYMAJOR 1
#define YYMINOR 9
#define YYPATCH 20160324
#define YYEMPTY (-1)
#define yyclearin (yychar = YYEMPTY)
#define yyerrok (yyerrflag = 0)
#define YYRECOVERING() (yyerrflag != 0)
#define YYENOMEM (-2)
#define YYEOF 0
#ifndef yyparse
#define yyparse pfctlyparse
#endif /* yyparse */
#ifndef yylex
#define yylex pfctlylex
#endif /* yylex */
#ifndef yyerror
#define yyerror pfctlyerror
#endif /* yyerror */
#ifndef yychar
#define yychar pfctlychar
#endif /* yychar */
#ifndef yyval
#define yyval pfctlyval
#endif /* yyval */
#ifndef yylval
#define yylval pfctlylval
#endif /* yylval */
#ifndef yydebug
#define yydebug pfctlydebug
#endif /* yydebug */
#ifndef yynerrs
#define yynerrs pfctlynerrs
#endif /* yynerrs */
#ifndef yyerrflag
#define yyerrflag pfctlyerrflag
#endif /* yyerrflag */
#ifndef yylhs
#define yylhs pfctlylhs
#endif /* yylhs */
#ifndef yylen
#define yylen pfctlylen
#endif /* yylen */
#ifndef yydefred
#define yydefred pfctlydefred
#endif /* yydefred */
#ifndef yydgoto
#define yydgoto pfctlydgoto
#endif /* yydgoto */
#ifndef yysindex
#define yysindex pfctlysindex
#endif /* yysindex */
#ifndef yyrindex
#define yyrindex pfctlyrindex
#endif /* yyrindex */
#ifndef yygindex
#define yygindex pfctlygindex
#endif /* yygindex */
#ifndef yytable
#define yytable pfctlytable
#endif /* yytable */
#ifndef yycheck
#define yycheck pfctlycheck
#endif /* yycheck */
#ifndef yyname
#define yyname pfctlyname
#endif /* yyname */
#ifndef yyrule
#define yyrule pfctlyrule
#endif /* yyrule */
#define YYPREFIX "pfctly"
#define YYPURE 0
#line 30 "../../freebsd/sbin/pfctl/parse.y"
#ifdef __rtems__
#include <machine/rtems-bsd-user-space.h>
#endif /* __rtems__ */
#ifdef __rtems__
#include "rtems-bsd-pfctl-namespace.h"
#endif /* __rtems__ */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#ifdef __rtems__
#include <machine/rtems-bsd-program.h>
#define pf_find_or_create_ruleset _bsd_pf_find_or_create_ruleset
#define pf_anchor_setup _bsd_pf_anchor_setup
#define pf_remove_if_empty_ruleset _bsd_pf_remove_if_empty_ruleset
#endif /* __rtems__ */
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/stat.h>
#ifdef __FreeBSD__
#include <sys/sysctl.h>
#endif
#include <net/if.h>
#include <netinet/in.h>
#include <netinet/in_systm.h>
#include <netinet/ip.h>
#include <netinet/ip_icmp.h>
#include <netinet/icmp6.h>
#include <net/pfvar.h>
#include <arpa/inet.h>
#include <net/altq/altq.h>
#include <net/altq/altq_cbq.h>
#include <net/altq/altq_codel.h>
#include <net/altq/altq_priq.h>
#include <net/altq/altq_hfsc.h>
#include <net/altq/altq_fairq.h>
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <netdb.h>
#include <stdarg.h>
#include <errno.h>
#include <string.h>
#include <ctype.h>
#include <math.h>
#include <err.h>
#include <limits.h>
#include <pwd.h>
#include <grp.h>
#include <md5.h>
#include "pfctl_parser.h"
#include "pfctl.h"
#ifdef __rtems__
#include "rtems-bsd-pfctl-parse-data.h"
#endif /* __rtems__ */
static struct pfctl *pf = NULL;
static int debug = 0;
static int rulestate = 0;
static u_int16_t returnicmpdefault =
(ICMP_UNREACH << 8) | ICMP_UNREACH_PORT;
static u_int16_t returnicmp6default =
(ICMP6_DST_UNREACH << 8) | ICMP6_DST_UNREACH_NOPORT;
static int blockpolicy = PFRULE_DROP;
static int require_order = 1;
static int default_statelock;
static TAILQ_HEAD(files, file) files = TAILQ_HEAD_INITIALIZER(files);
static struct file {
TAILQ_ENTRY(file) entry;
FILE *stream;
char *name;
int lineno;
int errors;
} *file;
struct file *pushfile(const char *, int);
int popfile(void);
int check_file_secrecy(int, const char *);
int yyparse(void);
int yylex(void);
int yyerror(const char *, ...);
int kw_cmp(const void *, const void *);
int lookup(char *);
int lgetc(int);
int lungetc(int);
int findeol(void);
static TAILQ_HEAD(symhead, sym) symhead = TAILQ_HEAD_INITIALIZER(symhead);
struct sym {
TAILQ_ENTRY(sym) entry;
int used;
int persist;
char *nam;
char *val;
};
int symset(const char *, const char *, int);
char *symget(const char *);
int atoul(char *, u_long *);
enum {
PFCTL_STATE_NONE,
PFCTL_STATE_OPTION,
PFCTL_STATE_SCRUB,
PFCTL_STATE_QUEUE,
PFCTL_STATE_NAT,
PFCTL_STATE_FILTER
};
struct node_proto {
u_int8_t proto;
struct node_proto *next;
struct node_proto *tail;
};
struct node_port {
u_int16_t port[2];
u_int8_t op;
struct node_port *next;
struct node_port *tail;
};
struct node_uid {
uid_t uid[2];
u_int8_t op;
struct node_uid *next;
struct node_uid *tail;
};
struct node_gid {
gid_t gid[2];
u_int8_t op;
struct node_gid *next;
struct node_gid *tail;
};
struct node_icmp {
u_int8_t code;
u_int8_t type;
u_int8_t proto;
struct node_icmp *next;
struct node_icmp *tail;
};
enum { PF_STATE_OPT_MAX, PF_STATE_OPT_NOSYNC, PF_STATE_OPT_SRCTRACK,
PF_STATE_OPT_MAX_SRC_STATES, PF_STATE_OPT_MAX_SRC_CONN,
PF_STATE_OPT_MAX_SRC_CONN_RATE, PF_STATE_OPT_MAX_SRC_NODES,
PF_STATE_OPT_OVERLOAD, PF_STATE_OPT_STATELOCK,
PF_STATE_OPT_TIMEOUT, PF_STATE_OPT_SLOPPY, };
enum { PF_SRCTRACK_NONE, PF_SRCTRACK, PF_SRCTRACK_GLOBAL, PF_SRCTRACK_RULE };
struct node_state_opt {
int type;
union {
u_int32_t max_states;
u_int32_t max_src_states;
u_int32_t max_src_conn;
struct {
u_int32_t limit;
u_int32_t seconds;
} max_src_conn_rate;
struct {
u_int8_t flush;
char tblname[PF_TABLE_NAME_SIZE];
} overload;
u_int32_t max_src_nodes;
u_int8_t src_track;
u_int32_t statelock;
struct {
int number;
u_int32_t seconds;
} timeout;
} data;
struct node_state_opt *next;
struct node_state_opt *tail;
};
struct peer {
struct node_host *host;
struct node_port *port;
};
static struct node_queue {
char queue[PF_QNAME_SIZE];
char parent[PF_QNAME_SIZE];
char ifname[IFNAMSIZ];
int scheduler;
struct node_queue *next;
struct node_queue *tail;
} *queues = NULL;
struct node_qassign {
char *qname;
char *pqname;
};
static struct filter_opts {
int marker;
#define FOM_FLAGS 0x01
#define FOM_ICMP 0x02
#define FOM_TOS 0x04
#define FOM_KEEP 0x08
#define FOM_SRCTRACK 0x10
#define FOM_SETPRIO 0x0400
#define FOM_PRIO 0x2000
struct node_uid *uid;
struct node_gid *gid;
struct {
u_int8_t b1;
u_int8_t b2;
u_int16_t w;
u_int16_t w2;
} flags;
struct node_icmp *icmpspec;
u_int32_t tos;
u_int32_t prob;
struct {
int action;
struct node_state_opt *options;
} keep;
int fragment;
int allowopts;
char *label;
struct node_qassign queues;
char *tag;
char *match_tag;
u_int8_t match_tag_not;
u_int rtableid;
u_int8_t prio;
u_int8_t set_prio[2];
struct {
struct node_host *addr;
u_int16_t port;
} divert;
} filter_opts;
static struct antispoof_opts {
char *label;
u_int rtableid;
} antispoof_opts;
static struct scrub_opts {
int marker;
#define SOM_MINTTL 0x01
#define SOM_MAXMSS 0x02
#define SOM_FRAGCACHE 0x04
#define SOM_SETTOS 0x08
int nodf;
int minttl;
int maxmss;
int settos;
int fragcache;
int randomid;
int reassemble_tcp;
char *match_tag;
u_int8_t match_tag_not;
u_int rtableid;
} scrub_opts;
static struct queue_opts {
int marker;
#define QOM_BWSPEC 0x01
#define QOM_SCHEDULER 0x02
#define QOM_PRIORITY 0x04
#define QOM_TBRSIZE 0x08
#define QOM_QLIMIT 0x10
struct node_queue_bw queue_bwspec;
struct node_queue_opt scheduler;
int priority;
int tbrsize;
int qlimit;
} queue_opts;
static struct table_opts {
int flags;
int init_addr;
struct node_tinithead init_nodes;
} table_opts;
static struct pool_opts {
int marker;
#define POM_TYPE 0x01
#define POM_STICKYADDRESS 0x02
u_int8_t opts;
int type;
int staticport;
struct pf_poolhashkey *key;
} pool_opts;
static struct codel_opts codel_opts;
static struct node_hfsc_opts hfsc_opts;
static struct node_fairq_opts fairq_opts;
static struct node_state_opt *keep_state_defaults = NULL;
int disallow_table(struct node_host *, const char *);
int disallow_urpf_failed(struct node_host *, const char *);
int disallow_alias(struct node_host *, const char *);
int rule_consistent(struct pf_rule *, int);
int filter_consistent(struct pf_rule *, int);
int nat_consistent(struct pf_rule *);
int rdr_consistent(struct pf_rule *);
int process_tabledef(char *, struct table_opts *);
void expand_label_str(char *, size_t, const char *, const char *);
void expand_label_if(const char *, char *, size_t, const char *);
void expand_label_addr(const char *, char *, size_t, u_int8_t,
struct node_host *);
void expand_label_port(const char *, char *, size_t,
struct node_port *);
void expand_label_proto(const char *, char *, size_t, u_int8_t);
void expand_label_nr(const char *, char *, size_t);
void expand_label(char *, size_t, const char *, u_int8_t,
struct node_host *, struct node_port *, struct node_host *,
struct node_port *, u_int8_t);
void expand_rule(struct pf_rule *, struct node_if *,
struct node_host *, struct node_proto *, struct node_os *,
struct node_host *, struct node_port *, struct node_host *,
struct node_port *, struct node_uid *, struct node_gid *,
struct node_icmp *, const char *);
int expand_altq(struct pf_altq *, struct node_if *,
struct node_queue *, struct node_queue_bw bwspec,
struct node_queue_opt *);
int expand_queue(struct pf_altq *, struct node_if *,
struct node_queue *, struct node_queue_bw,
struct node_queue_opt *);
int expand_skip_interface(struct node_if *);
int check_rulestate(int);
int getservice(char *);
int rule_label(struct pf_rule *, char *);
int rt_tableid_max(void);
void mv_rules(struct pf_ruleset *, struct pf_ruleset *);
void decide_address_family(struct node_host *, sa_family_t *);
void remove_invalid_hosts(struct node_host **, sa_family_t *);
int invalid_redirect(struct node_host *, sa_family_t);
u_int16_t parseicmpspec(char *, sa_family_t);
static TAILQ_HEAD(loadanchorshead, loadanchors)
loadanchorshead = TAILQ_HEAD_INITIALIZER(loadanchorshead);
struct loadanchors {
TAILQ_ENTRY(loadanchors) entries;
char *anchorname;
char *filename;
};
typedef struct {
union {
int64_t number;
double probability;
int i;
char *string;
u_int rtableid;
struct {
u_int8_t b1;
u_int8_t b2;
u_int16_t w;
u_int16_t w2;
} b;
struct range {
int a;
int b;
int t;
} range;
struct node_if *interface;
struct node_proto *proto;
struct node_icmp *icmp;
struct node_host *host;
struct node_os *os;
struct node_port *port;
struct node_uid *uid;
struct node_gid *gid;
struct node_state_opt *state_opt;
struct peer peer;
struct {
struct peer src, dst;
struct node_os *src_os;
} fromto;
struct {
struct node_host *host;
u_int8_t rt;
u_int8_t pool_opts;
sa_family_t af;
struct pf_poolhashkey *key;
} route;
struct redirection {
struct node_host *host;
struct range rport;
} *redirection;
struct {
int action;
struct node_state_opt *options;
} keep_state;
struct {
u_int8_t log;
u_int8_t logif;
u_int8_t quick;
} logquick;
struct {
int neg;
char *name;
} tagged;
struct pf_poolhashkey *hashkey;
struct node_queue *queue;
struct node_queue_opt queue_options;
struct node_queue_bw queue_bwspec;
struct node_qassign qassign;
struct filter_opts filter_opts;
struct antispoof_opts antispoof_opts;
struct queue_opts queue_opts;
struct scrub_opts scrub_opts;
struct table_opts table_opts;
struct pool_opts pool_opts;
struct node_hfsc_opts hfsc_opts;
struct node_fairq_opts fairq_opts;
struct codel_opts codel_opts;
} v;
int lineno;
} YYSTYPE;
#define PPORT_RANGE 1
#define PPORT_STAR 2
int parseport(char *, struct range *r, int);
#define DYNIF_MULTIADDR(addr) ((addr).type == PF_ADDR_DYNIFTL && \
(!((addr).iflags & PFI_AFLAG_NOALIAS) || \
!isdigit((addr).v.ifname[strlen((addr).v.ifname)-1])))
#line 534 "pfctly.tab.c"
/* compatibility with bison */
#ifdef YYPARSE_PARAM
/* compatibility with FreeBSD */
# ifdef YYPARSE_PARAM_TYPE
# define YYPARSE_DECL() yyparse(YYPARSE_PARAM_TYPE YYPARSE_PARAM)
# else
# define YYPARSE_DECL() yyparse(void *YYPARSE_PARAM)
# endif
#else
# define YYPARSE_DECL() yyparse(void)
#endif
/* Parameters sent to lex. */
#ifdef YYLEX_PARAM
# define YYLEX_DECL() yylex(void *YYLEX_PARAM)
# define YYLEX yylex(YYLEX_PARAM)
#else
# define YYLEX_DECL() yylex(void)
# define YYLEX yylex()
#endif
/* Parameters sent to yyerror. */
#ifndef YYERROR_DECL
#define YYERROR_DECL() yyerror(const char *s)
#endif
#ifndef YYERROR_CALL
#define YYERROR_CALL(msg) yyerror(msg)
#endif
extern int YYPARSE_DECL();
#define PASS 257
#define BLOCK 258
#define SCRUB 259
#define RETURN 260
#define IN 261
#define OS 262
#define OUT 263
#define LOG 264
#define QUICK 265
#define ON 266
#define FROM 267
#define TO 268
#define FLAGS 269
#define RETURNRST 270
#define RETURNICMP 271
#define RETURNICMP6 272
#define PROTO 273
#define INET 274
#define INET6 275
#define ALL 276
#define ANY 277
#define ICMPTYPE 278
#define ICMP6TYPE 279
#define CODE 280
#define KEEP 281
#define MODULATE 282
#define STATE 283
#define PORT 284
#define RDR 285
#define NAT 286
#define BINAT 287
#define ARROW 288
#define NODF 289
#define MINTTL 290
#define ERROR 291
#define ALLOWOPTS 292
#define FASTROUTE 293
#define FILENAME 294
#define ROUTETO 295
#define DUPTO 296
#define REPLYTO 297
#define NO 298
#define LABEL 299
#define NOROUTE 300
#define URPFFAILED 301
#define FRAGMENT 302
#define USER 303
#define GROUP 304
#define MAXMSS 305
#define MAXIMUM 306
#define TTL 307
#define TOS 308
#define DROP 309
#define TABLE 310
#define REASSEMBLE 311
#define FRAGDROP 312
#define FRAGCROP 313
#define ANCHOR 314
#define NATANCHOR 315
#define RDRANCHOR 316
#define BINATANCHOR 317
#define SET 318
#define OPTIMIZATION 319
#define TIMEOUT 320
#define LIMIT 321
#define LOGINTERFACE 322
#define BLOCKPOLICY 323
#define RANDOMID 324
#define REQUIREORDER 325
#define SYNPROXY 326
#define FINGERPRINTS 327
#define NOSYNC 328
#define DEBUG 329
#define SKIP 330
#define HOSTID 331
#define ANTISPOOF 332
#define FOR 333
#define INCLUDE 334
#define BITMASK 335
#define RANDOM 336
#define SOURCEHASH 337
#define ROUNDROBIN 338
#define STATICPORT 339
#define PROBABILITY 340
#define ALTQ 341
#define CBQ 342
#define CODEL 343
#define PRIQ 344
#define HFSC 345
#define FAIRQ 346
#define BANDWIDTH 347
#define TBRSIZE 348
#define LINKSHARE 349
#define REALTIME 350
#define UPPERLIMIT 351
#define QUEUE 352
#define PRIORITY 353
#define QLIMIT 354
#define HOGS 355
#define BUCKETS 356
#define RTABLE 357
#define TARGET 358
#define INTERVAL 359
#define LOAD 360
#define RULESET_OPTIMIZATION 361
#define PRIO 362
#define STICKYADDRESS 363
#define MAXSRCSTATES 364
#define MAXSRCNODES 365
#define SOURCETRACK 366
#define GLOBAL 367
#define RULE 368
#define MAXSRCCONN 369
#define MAXSRCCONNRATE 370
#define OVERLOAD 371
#define FLUSH 372
#define SLOPPY 373
#define TAGGED 374
#define TAG 375
#define IFBOUND 376
#define FLOATING 377
#define STATEPOLICY 378
#define STATEDEFAULTS 379
#define ROUTE 380
#define SETTOS 381
#define DIVERTTO 382
#define DIVERTREPLY 383
#define STRING 384
#define NUMBER 385
#define PORTBINARY 386
#define YYERRCODE 256
typedef int YYINT;
static const YYINT pfctlylhs[] = { -1,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 137, 150, 150,
150, 150, 150, 150, 18, 138, 138, 138, 138, 138,
138, 138, 138, 138, 138, 138, 138, 138, 138, 138,
138, 77, 77, 80, 80, 81, 81, 82, 82, 147,
79, 79, 156, 156, 156, 156, 158, 157, 157, 143,
143, 143, 143, 144, 26, 139, 159, 126, 126, 128,
128, 127, 127, 127, 127, 127, 127, 127, 127, 127,
17, 17, 17, 148, 92, 92, 93, 93, 94, 94,
161, 120, 120, 122, 122, 121, 121, 11, 11, 149,
162, 129, 129, 131, 131, 130, 130, 130, 130, 145,
146, 163, 123, 123, 125, 125, 124, 124, 124, 124,
124, 113, 113, 99, 99, 99, 99, 99, 99, 99,
99, 99, 99, 100, 100, 101, 102, 102, 103, 164,
106, 104, 104, 105, 105, 105, 105, 105, 105, 105,
165, 109, 107, 107, 108, 108, 108, 108, 108, 166,
112, 110, 110, 111, 111, 111, 96, 96, 96, 97,
97, 98, 142, 167, 114, 114, 116, 116, 115, 115,
115, 115, 115, 115, 115, 115, 115, 115, 115, 115,
115, 115, 115, 115, 115, 115, 115, 117, 117, 119,
119, 118, 30, 30, 13, 13, 23, 23, 29, 29,
29, 29, 29, 29, 29, 29, 29, 29, 44, 44,
45, 45, 15, 15, 15, 88, 88, 87, 87, 87,
87, 87, 89, 89, 90, 90, 91, 91, 91, 91,
1, 1, 1, 2, 2, 3, 4, 16, 16, 16,
35, 35, 35, 36, 36, 37, 38, 38, 46, 46,
61, 61, 61, 62, 63, 63, 48, 48, 49, 49,
47, 47, 47, 152, 152, 50, 50, 50, 51, 51,
55, 55, 52, 52, 52, 53, 53, 53, 53, 53,
53, 53, 5, 5, 54, 64, 64, 65, 65, 66,
66, 66, 31, 33, 67, 67, 68, 68, 69, 69,
69, 8, 8, 70, 70, 71, 71, 72, 72, 72,
9, 9, 28, 27, 27, 27, 39, 39, 39, 39,
40, 40, 42, 42, 41, 41, 41, 43, 43, 43,
6, 6, 7, 7, 10, 10, 19, 19, 19, 22,
22, 83, 83, 83, 83, 20, 20, 20, 84, 84,
85, 85, 86, 86, 86, 86, 86, 86, 86, 86,
86, 86, 86, 76, 95, 95, 95, 14, 14, 32,
57, 57, 56, 56, 75, 75, 75, 34, 34, 168,
132, 132, 134, 134, 133, 133, 133, 133, 133, 133,
74, 74, 74, 25, 25, 25, 25, 24, 24, 140,
141, 78, 78, 135, 135, 136, 136, 58, 58, 59,
59, 60, 60, 73, 73, 73, 73, 73, 151, 151,
153, 153, 154, 155, 155, 160, 160, 12, 12, 21,
21, 21, 21, 21, 21,
};
static const YYINT pfctlylen[] = { 2,
0, 3, 2, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 4, 3, 2, 2, 3,
3, 3, 3, 3, 1, 3, 3, 3, 6, 3,
6, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 1, 1, 2, 1, 2, 1, 1, 1, 3,
1, 0, 0, 2, 3, 3, 0, 5, 0, 10,
7, 7, 7, 5, 2, 8, 0, 2, 0, 2,
1, 1, 2, 2, 2, 1, 2, 1, 2, 3,
2, 2, 2, 5, 2, 5, 2, 4, 1, 3,
0, 2, 0, 2, 1, 1, 2, 1, 0, 5,
0, 2, 0, 2, 1, 1, 3, 4, 2, 5,
5, 0, 2, 0, 2, 1, 2, 2, 2, 1,
2, 1, 1, 1, 4, 1, 4, 1, 4, 1,
4, 1, 4, 1, 3, 1, 1, 3, 1, 0,
2, 1, 3, 2, 8, 2, 8, 2, 8, 1,
0, 2, 1, 3, 2, 6, 2, 2, 1, 0,
2, 1, 3, 2, 2, 1, 0, 1, 4, 2,
4, 1, 9, 0, 2, 0, 2, 1, 2, 2,
1, 1, 2, 2, 1, 1, 1, 1, 1, 2,
3, 2, 2, 2, 4, 1, 1, 4, 2, 3,
1, 1, 2, 6, 1, 1, 1, 2, 0, 1,
1, 5, 1, 1, 4, 4, 6, 1, 1, 1,
1, 1, 0, 1, 1, 0, 1, 0, 1, 1,
2, 2, 1, 4, 1, 3, 1, 1, 1, 2,
0, 2, 5, 2, 4, 2, 1, 0, 1, 1,
0, 2, 5, 2, 4, 1, 1, 1, 1, 3,
0, 2, 5, 1, 2, 4, 0, 2, 0, 2,
1, 3, 2, 2, 0, 1, 1, 4, 2, 0,
2, 4, 2, 2, 2, 1, 3, 3, 3, 1,
3, 3, 1, 1, 3, 1, 4, 2, 4, 1,
2, 3, 1, 1, 1, 4, 2, 4, 1, 2,
3, 1, 1, 1, 4, 2, 4, 1, 2, 3,
1, 1, 1, 4, 3, 2, 2, 5, 2, 5,
2, 4, 2, 4, 1, 3, 3, 1, 3, 3,
1, 1, 1, 1, 1, 1, 1, 2, 2, 1,
1, 2, 3, 3, 3, 0, 1, 2, 3, 0,
1, 3, 2, 1, 2, 2, 4, 5, 2, 1,
1, 1, 2, 2, 2, 4, 6, 0, 1, 1,
1, 4, 2, 4, 0, 2, 4, 0, 1, 0,
2, 0, 2, 1, 1, 1, 2, 1, 1, 1,
0, 2, 4, 0, 1, 2, 1, 3, 3, 10,
13, 0, 2, 0, 3, 0, 2, 1, 4, 2,
4, 1, 4, 0, 1, 3, 3, 3, 2, 2,
4, 2, 2, 4, 2, 1, 0, 1, 1, 1,
2, 2, 1, 2, 1,
};
static const YYINT pfctlydefred[] = { 0,
0, 0, 0, 0, 207, 0, 379, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 3,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 19, 0,
0, 0, 0, 0, 0, 17, 218, 0, 0, 0,
210, 208, 0, 51, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 18, 0, 0, 0,
0, 0, 65, 0, 0, 0, 224, 225, 0, 0,
0, 2, 4, 5, 6, 7, 8, 9, 10, 11,
12, 13, 14, 15, 24, 16, 22, 21, 23, 20,
0, 0, 0, 0, 0, 44, 0, 0, 0, 26,
0, 0, 0, 28, 0, 0, 30, 43, 42, 32,
35, 34, 438, 439, 36, 37, 39, 40, 294, 293,
33, 27, 25, 350, 351, 38, 0, 364, 0, 0,
0, 0, 0, 0, 372, 0, 370, 371, 0, 361,
0, 232, 0, 0, 231, 0, 98, 242, 0, 0,
0, 0, 0, 49, 48, 50, 0, 0, 409, 407,
408, 0, 0, 249, 250, 0, 0, 0, 219, 220,
0, 221, 222, 0, 0, 227, 0, 0, 0, 0,
430, 429, 0, 0, 433, 0, 363, 365, 369, 348,
349, 366, 0, 0, 373, 436, 0, 0, 237, 238,
239, 0, 235, 247, 0, 0, 89, 85, 0, 0,
246, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 120, 116, 0, 0, 0, 46, 406, 0, 0,
0, 0, 0, 0, 215, 0, 216, 100, 0, 0,
0, 0, 0, 274, 0, 0, 0, 0, 0, 0,
362, 240, 234, 0, 0, 0, 84, 0, 0, 0,
172, 0, 110, 168, 0, 160, 0, 140, 151, 122,
123, 117, 121, 118, 119, 115, 111, 64, 0, 425,
0, 0, 0, 0, 257, 258, 0, 252, 256, 0,
259, 0, 0, 0, 212, 0, 0, 106, 0, 105,
0, 0, 0, 0, 0, 432, 29, 0, 435, 31,
0, 367, 0, 236, 0, 0, 90, 0, 0, 96,
95, 0, 243, 0, 244, 0, 136, 0, 134, 0,
0, 139, 0, 137, 0, 0, 0, 0, 0, 418,
0, 0, 422, 0, 0, 0, 0, 0, 276, 0,
0, 0, 268, 0, 277, 0, 0, 0, 0, 0,
217, 109, 0, 104, 0, 0, 61, 62, 63, 0,
0, 0, 368, 86, 0, 87, 374, 97, 94, 0,
0, 0, 125, 0, 133, 0, 0, 166, 0, 162,
127, 0, 129, 0, 0, 0, 150, 0, 142, 131,
0, 0, 0, 159, 0, 153, 0, 0, 0, 426,
0, 428, 427, 0, 0, 0, 0, 440, 0, 0,
0, 0, 0, 273, 296, 304, 0, 284, 285, 0,
0, 0, 0, 283, 0, 0, 413, 0, 0, 264,
0, 262, 0, 260, 0, 107, 0, 0, 0, 417,
431, 434, 358, 0, 245, 169, 0, 170, 135, 165,
164, 0, 138, 0, 144, 0, 146, 0, 148, 0,
0, 155, 157, 158, 0, 0, 0, 0, 0, 395,
396, 0, 398, 399, 400, 394, 0, 0, 253, 0,
254, 0, 441, 442, 444, 301, 0, 0, 0, 0,
0, 0, 0, 0, 272, 0, 0, 0, 270, 66,
0, 281, 108, 0, 0, 0, 88, 0, 163, 0,
0, 0, 143, 0, 154, 0, 0, 420, 423, 0,
419, 397, 389, 393, 173, 0, 0, 0, 302, 278,
287, 288, 289, 295, 292, 291, 415, 0, 0, 0,
0, 72, 0, 0, 0, 0, 78, 0, 0, 0,
76, 71, 0, 0, 57, 60, 0, 0, 0, 0,
0, 187, 0, 186, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 196, 0, 181, 182, 188,
185, 189, 178, 0, 197, 171, 0, 0, 0, 0,
279, 0, 0, 255, 297, 0, 298, 0, 381, 0,
410, 265, 263, 0, 73, 81, 83, 82, 74, 77,
79, 345, 346, 75, 0, 70, 282, 0, 326, 323,
0, 0, 341, 342, 0, 0, 327, 343, 344, 0,
0, 329, 0, 0, 352, 312, 313, 0, 0, 0,
179, 305, 321, 322, 0, 0, 0, 180, 314, 184,
0, 0, 202, 199, 0, 205, 206, 192, 375, 0,
193, 183, 190, 0, 194, 303, 0, 177, 0, 0,
0, 0, 0, 421, 0, 0, 0, 0, 80, 53,
325, 0, 0, 0, 0, 0, 0, 353, 354, 0,
0, 310, 0, 0, 319, 203, 0, 201, 0, 355,
0, 0, 191, 0, 0, 0, 156, 0, 299, 0,
0, 387, 380, 266, 0, 324, 0, 0, 336, 337,
0, 0, 339, 340, 0, 0, 0, 311, 0, 0,
320, 0, 198, 0, 376, 0, 195, 0, 0, 0,
0, 411, 383, 382, 0, 54, 58, 0, 0, 328,
0, 331, 330, 0, 333, 359, 306, 0, 307, 315,
0, 316, 0, 200, 0, 145, 147, 149, 0, 0,
55, 56, 0, 0, 0, 0, 0, 377, 0, 384,
332, 334, 308, 317, 204, 403,
};
static const YYINT pfctlydgoto[] = { 2,
79, 279, 168, 227, 141, 656, 661, 669, 676, 644,
372, 135, 688, 21, 89, 186, 581, 142, 157, 393,
442, 158, 22, 23, 179, 24, 608, 652, 52, 683,
695, 742, 443, 552, 252, 435, 308, 309, 609, 747,
657, 751, 662, 191, 194, 312, 373, 313, 464, 374,
547, 375, 454, 455, 468, 741, 630, 363, 498, 364,
379, 462, 571, 444, 557, 445, 671, 756, 672, 678,
759, 679, 304, 772, 569, 340, 130, 377, 55, 57,
176, 446, 611, 718, 159, 160, 75, 197, 76, 222,
223, 164, 335, 228, 612, 283, 401, 284, 242, 348,
349, 353, 354, 418, 419, 355, 425, 426, 357, 409,
410, 350, 292, 535, 613, 614, 615, 684, 729, 277,
341, 342, 170, 243, 244, 530, 582, 583, 258, 320,
321, 430, 506, 507, 459, 387, 25, 26, 27, 28,
29, 30, 31, 32, 33, 34, 35, 36, 37, 3,
124, 204, 266, 127, 268, 745, 586, 648, 531, 217,
278, 259, 171, 356, 358, 351, 536, 431,
};
static const YYINT pfctlysindex[] = { -28,
0, 118, 1618, 94, 0, 604, 0, 57, -163, -158,
-158, -158, 1728, 392, -129, 213, -35, -49, 463, 0,
680, -20, 213, -20, 519, 525, 538, 552, 569, 622,
651, 664, 670, 678, 684, 691, 711, 714, 0, 716,
424, 720, 726, 731, 749, 0, 0, 545, 650, 657,
0, 0, 230, 0, -20, -158, 213, 213, 213, 386,
-93, -72, -226, -58, -230, 390, 403, 213, -107, -158,
371, 1487, 754, 540, 486, 556, 0, 27, 0, 213,
-158, 428, 0, 326, 326, 326, 0, 0, 392, 579,
392, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
516, 475, 532, 768, 601, 0, 579, 579, 579, 0,
492, 496, 883, 0, 518, 883, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 529, 0, 555, 559,
489, 567, 577, 841, 0, 587, 0, 0, 931, 0,
347, 0, 19, 579, 0, 883, 0, 0, 611, 655,
1926, 0, 744, 0, 0, 0, 428, 540, 0, 0,
0, 213, 213, 0, 0, 747, 213, 632, 0, 0,
599, 0, 0, 997, 0, 0, 213, 747, 747, 747,
0, 0, 883, -156, 0, 669, 0, 0, 0, 0,
0, 0, 994, 689, 0, 0, 1487, -158, 0, 0,
0, 603, 0, 0, 883, 611, 0, 0, 0, 1006,
0, -57, 1022, 1024, 1028, 1035, 1050, 535, 707, 713,
739, 0, 0, 1926, -57, -158, 0, 0, 579, 382,
-47, -187, 579, 1067, 0, 532, 0, 0, -81, 579,
-187, -187, -187, 0, 883, 13, 883, 49, 770, 1034,
0, 0, 0, 347, 34, 1082, 0, -101, 67, 883,
0, 883, 0, 0, 745, 0, 750, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 747, 0,
39, 39, 39, 579, 0, 0, 883, 0, 0, 192,
0, 758, 894, 747, 0, 1119, 777, 0, 883, 0,
-81, 747, 810, 810, 810, 0, 0, -156, 0, 0,
669, 0, 801, 0, 82, 883, 0, 790, 791, 0,
0, -101, 0, 1006, 0, 797, 0, 679, 0, 1134,
349, 0, 724, 0, 1141, 483, 1142, -274, 922, 0,
883, 807, 0, 0, 0, 0, 747, 541, 0, 83,
883, 246, 0, 908, 0, 813, 1006, -45, 926, -187,
0, 0, 28, 0, -187, 815, 0, 0, 0, 883,
883, 834, 0, 0, 34, 0, 0, 0, 0, 883,
86, 883, 0, 745, 0, -107, -107, 0, 931, 0,
0, 750, 0, 24, 187, 214, 0, 931, 0, 0,
224, 535, -107, 0, 931, 0, 190, 56, 190, 0,
765, 0, 0, -187, 97, 883, 883, 0, 1143, 1144,
1146, 428, 822, 0, 0, 0, 32, 0, 0, 575,
1167, 838, 839, 0, 1171, 83, 0, 852, 810, 0,
883, 0, 192, 0, 0, 0, 883, 108, 0, 0,
0, 0, 0, 883, 0, 0, 797, 0, 0, 0,
0, 349, 0, 535, 0, 535, 0, 535, 0, 483,
535, 0, 0, 0, -274, 959, 883, 136, 1188, 0,
0, -158, 0, 0, 0, 0, 765, 0, 0, 541,
0, 61, 0, 0, 0, 0, 428, 137, 846, 847,
848, 1193, 1176, 855, 0, -158, 953, 858, 0, 0,
1405, 0, 0, 32, 1122, 4400, 0, 883, 0, 931,
931, 931, 0, -107, 0, 32, 758, 0, 0, 56,
0, 0, 0, 0, 0, 883, 155, 883, 0, 0,
0, 0, 0, 0, 0, 0, 0, 417, 0, 883,
200, 0, 863, 595, 866, 868, 0, 869, 550, 879,
0, 0, 1405, 883, 0, 0, 235, 361, 376, 972,
975, 0, 976, 0, 135, 283, 550, 37, 978, 562,
69, 877, 880, -158, 570, 0, 890, 0, 0, 0,
0, 0, 0, 4400, 0, 0, 888, 892, 893, 535,
0, 1006, 883, 0, 0, 61, 0, 883, 0, 984,
0, 0, 0, 858, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, -158, 0, 0, 1265, 0, 0,
896, 1234, 0, 0, 883, 1007, 0, 0, 0, 883,
1008, 0, 1249, 1249, 0, 0, 0, 883, 904, 630,
0, 0, 0, 0, 883, 909, 642, 0, 0, 0,
-16, 934, 0, 0, 1249, 0, 0, 0, 0, 913,
0, 0, 0, 1014, 0, 0, -158, 0, 931, 931,
931, 1262, 810, 0, 883, 190, 428, 883, 0, 0,
0, 896, 644, 659, 661, 665, 1487, 0, 0, 116,
630, 0, 158, 642, 0, 0, 919, 0, 728, 0,
734, 428, 0, 535, 535, 535, 0, 1017, 0, 883,
363, 0, 0, 0, 654, 0, 385, 883, 0, 0,
429, 883, 0, 0, 773, 452, 883, 0, 472, 883,
0, 931, 0, 934, 0, 927, 0, 1269, 1271, 1272,
190, 0, 0, 0, 190, 0, 0, 1296, 1304, 0,
644, 0, 0, 661, 0, 0, 0, 116, 0, 0,
158, 0, 930, 0, 1276, 0, 0, 0, 1037, 883,
0, 0, 883, 883, 883, 883, 1277, 0, 428, 0,
0, 0, 0, 0, 0, 0,
};
static const YYINT pfctlyrindex[] = { 36,
0, 723, 738, 0, 0, 1644, 0, 0, 2743, 0,
0, 0, 0, 986, 0, 1156, 0, 0, 0, 0,
0, 2290, 2701, 4182, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 1712, 1836, 1959,
0, 0, 0, 0, 3033, 1283, 1115, 1115, 1115, 0,
0, 0, 0, 0, 0, 0, 0, 1312, 0, 0,
0, 0, 1155, 1394, 0, 1521, 0, 939, 1813, 1027,
0, 0, 0, 4235, 4235, 878, 0, 0, 2811, 4313,
4202, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 3144, 0, 629, 629, 629, 0,
0, 0, -99, 0, 0, 942, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
289, 0, 0, 0, 0, 0, 0, 0, 793, 0,
0, 0, 0, 15, 0, -23, 0, 0, 0, 0,
0, 1055, 0, 0, 0, 0, 1318, 4267, 0, 0,
0, 533, 2922, 0, 0, 4320, 3576, 0, 0, 0,
687, 0, 0, 0, 2, 0, 3255, 219, 219, 219,
0, 0, 1481, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 459, 0, 0, 78, 0, 0, 0, 30, 939,
0, 1321, 258, 438, 795, 992, 1012, 0, 0, 0,
0, 0, 0, 6, 1321, 0, 0, 0, -204, 3323,
0, 505, 2139, 0, 0, 0, 0, 0, 0, 3459,
73, 73, 73, 0, 574, -96, -27, 948, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, -13, -18,
0, 942, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 1066, 0,
0, 0, 0, 3528, 0, 0, 697, 0, 0, 510,
0, 154, 2167, 8, 0, 0, 0, 0, 1352, 0,
684, 3645, 1331, 1331, 1331, 0, 0, 0, 0, 0,
0, 0, 572, 0, 80, -17, 0, 0, 0, 0,
0, 519, 0, 939, 0, 0, 0, 948, 0, 0,
0, 0, 948, 0, 0, 0, 0, 0, 0, 0,
78, 0, 0, 2499, 2499, 2499, 3697, 0, 0, 0,
59, 0, 0, 2057, 0, 0, 748, 0, 2388, 2543,
0, 0, 510, 0, 3795, 0, 0, 0, 0, 574,
-27, 690, 0, 0, 0, 0, 0, 0, 0, -18,
948, -27, 0, 0, 0, 0, 0, 0, 287, 0,
0, 0, 0, 0, 0, 0, 0, 285, 0, 0,
0, 0, 0, 0, 514, 0, 0, 0, 0, 0,
0, 0, 0, 3846, 687, 142, 175, 0, 0, 710,
733, 0, 695, 0, 0, 0, 510, 0, 0, 414,
0, 0, 0, 0, 547, 0, 0, 0, 195, 0,
942, 0, 510, 0, 882, 0, 1184, 704, 3935, 0,
0, 0, 0, -17, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 23, -17, 80, 0, 0,
0, 2610, 0, 0, 0, 0, 3391, 4079, 0, 0,
0, 0, 0, 0, 0, 0, 0, 704, 0, 0,
0, 0, 0, 0, 0, 0, 75, 0, 0, 0,
973, 0, 0, 510, 1338, 973, 0, -27, 0, 964,
964, 964, 0, 0, 0, 510, -1, 0, 0, 0,
0, 0, 0, 0, 0, 142, 240, 10, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 229, -27,
948, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 11, 1184, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 9, 0, 0, 0, 0, 0, 0,
0, 43, -17, 0, 0, 0, 0, 209, 0, 653,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 697, 917, 0, 0, 0, 697,
968, 0, 3981, 3981, 0, 0, 0, 175, 123, 0,
0, 0, 0, 0, 175, 828, 0, 0, 0, 0,
0, 0, 0, 0, 3981, 0, 0, 0, 0, 0,
0, 0, 0, 4033, 0, 0, 0, 0, 687, 687,
687, 0, 1, 0, 10, 0, 0, -27, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 999, 0,
948, 0, 0, 0, 0, 0, 0, 1353, 0, 87,
264, 0, 0, 0, 0, 0, 687, 142, 0, 0,
687, 142, 0, 0, 1707, 240, 10, 0, 240, 10,
0, 964, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 1357, 87,
0, 0, 142, 142, 10, 10, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0,
};
static const YYINT pfctlygindex[] = { 0,
1557, 0, -208, -102, -320, 0, 0, -476, -619, 771,
-70, 0, 0, 1359, 490, 1165, 0, 0, 0, 0,
328, 1307, 0, 0, 874, 0, 0, -612, 0, 0,
647, 578, -308, 0, 1650, 0, -331, 0, 0, 0,
-668, 0, -525, 0, 1128, 851, 923, 0, 0, -345,
0, 0, -315, 0, 946, 0, 0, -379, 0, 677,
0, -497, 0, 938, 0, -457, 0, 0, -554, 0,
0, -444, 0, 0, 0, -421, 0, 860, 0, -8,
1218, -80, 0, -182, 688, 1196, 537, 0, 130, 0,
1136, 0, 0, -223, 0, 1170, 0, -312, 0, 0,
1015, 0, 1004, 0, 936, 0, 0, 937, 0, 0,
958, 0, 1472, 933, 821, 0, 0, -591, 0, 0,
1100, 0, 1274, 1205, 0, 0, 872, 0, 0, 1135,
0, -337, 955, 0, 842, -319, 0, 0, 0, 1462,
1464, -3, -2, 0, 0, 0, 0, 0, 0, 0,
-169, -119, 0, -192, 0, 0, 0, 0, 0, -178,
0, 0, 0, 0, 0, 0, 0, 0,
};
#define YYTABLESIZE 4783
static const YYINT pfctlytable[] = { 44,
45, 177, 58, 59, 388, 389, 206, 169, 412, 275,
416, 103, 256, 267, 275, 113, 275, 251, 175, 437,
68, 280, 275, 727, 248, 275, 275, 432, 433, 123,
570, 412, 280, 402, 265, 1, 436, 467, 711, 93,
251, 319, 275, 274, 748, 1, 230, 116, 497, 128,
126, 336, 414, 275, 558, 280, 216, 725, 226, 167,
167, 143, 248, 484, 167, 282, 231, 133, 248, 275,
275, 275, 173, 226, 421, 307, 682, 461, 362, 310,
422, 423, 267, 264, 385, 480, 481, 328, 311, 331,
728, 275, 216, 439, 1, 362, 177, 275, 275, 746,
344, 467, 494, 46, 761, 275, 275, 275, 690, 424,
216, 496, 803, 499, 610, 439, 53, 275, 275, 437,
440, 438, 441, 276, 101, 216, 275, 20, 113, 216,
275, 175, 309, 516, 275, 400, 708, 327, 391, 527,
216, 225, 440, 438, 441, 326, 275, 329, 439, 166,
371, 216, 466, 134, 371, 309, 395, 129, 390, 169,
345, 361, 346, 412, 538, 757, 309, 439, 705, 404,
623, 474, 794, 330, 412, 440, 438, 441, 556, 216,
216, 275, 309, 309, 309, 275, 412, 368, 584, 752,
439, 343, 610, 722, 440, 438, 441, 338, 216, 383,
621, 131, 121, 162, 416, 437, 394, 275, 559, 272,
476, 275, 317, 180, 180, 180, 396, 440, 438, 441,
54, 509, 477, 620, 167, 56, 486, 122, 251, 452,
482, 631, 533, 805, 275, 275, 275, 298, 392, 490,
87, 428, 88, 216, 758, 309, 495, 309, 275, 453,
132, 447, 629, 488, 77, 339, 510, 668, 804, 275,
549, 560, 437, 491, 81, 121, 275, 124, 275, 251,
471, 472, 437, 169, 251, 251, 139, 140, 760, 625,
475, 651, 478, 251, 275, 452, 412, 437, 416, 534,
122, 1, 1, 1, 1, 101, 251, 251, 347, 437,
437, 437, 318, 437, 369, 453, 458, 248, 369, 251,
280, 125, 251, 248, 371, 439, 511, 512, 251, 550,
1, 1, 1, 437, 633, 141, 281, 161, 91, 347,
414, 251, 347, 1, 267, 275, 305, 306, 460, 534,
267, 528, 440, 438, 441, 1, 806, 532, 80, 1,
1, 1, 1, 1, 537, 412, 275, 113, 275, 275,
275, 617, 618, 619, 251, 275, 275, 1, 726, 1,
437, 248, 412, 4, 5, 6, 1, 548, 626, 280,
124, 251, 99, 738, 99, 101, 91, 1, 251, 113,
740, 309, 634, 275, 275, 1, 280, 280, 681, 414,
309, 309, 224, 309, 309, 675, 216, 290, 291, 385,
385, 385, 385, 385, 309, 7, 99, 224, 616, 1,
309, 309, 360, 286, 309, 309, 309, 8, 216, 267,
309, 9, 10, 11, 12, 13, 624, 385, 627, 360,
309, 412, 275, 275, 174, 175, 286, 132, 309, 14,
632, 15, 689, 286, 286, 799, 452, 286, 16, 800,
580, 275, 309, 437, 647, 607, 174, 175, 369, 17,
275, 275, 216, 286, 309, 370, 453, 18, 78, 309,
251, 719, 416, 655, 309, 251, 251, 774, 412, 412,
412, 412, 412, 553, 251, 216, 309, 309, 660, 666,
667, 19, 730, 704, 309, 309, 309, 309, 706, 780,
412, 649, 580, 91, 267, 216, 412, 567, 666, 667,
734, 735, 736, 82, 696, 275, 275, 412, 92, 416,
416, 416, 416, 416, 93, 713, 286, 267, 286, 628,
715, 673, 674, 607, 115, 448, 449, 94, 720, 99,
764, 458, 766, 783, 152, 723, 290, 416, 275, 275,
132, 95, 775, 390, 390, 390, 390, 390, 781, 99,
290, 291, 784, 450, 451, 251, 787, 788, 96, 290,
791, 356, 178, 793, 111, 739, 290, 290, 744, 73,
290, 390, 275, 275, 347, 693, 790, 290, 291, 124,
124, 124, 124, 124, 124, 124, 290, 290, 291, 124,
124, 124, 356, 114, 218, 356, 347, 275, 650, 519,
773, 520, 219, 437, 437, 183, 743, 187, 782, 450,
451, 97, 785, 437, 437, 437, 709, 789, 248, 255,
792, 124, 216, 273, 437, 437, 216, 437, 437, 220,
221, 696, 347, 347, 347, 73, 74, 347, 347, 347,
98, 347, 386, 776, 347, 347, 673, 674, 437, 290,
437, 290, 347, 99, 300, 286, 301, 302, 303, 100,
810, 286, 286, 811, 812, 813, 814, 101, 733, 112,
286, 286, 286, 102, 286, 286, 113, 286, 275, 357,
103, 286, 286, 286, 300, 286, 406, 407, 84, 85,
86, 286, 286, 286, 286, 286, 286, 286, 286, 403,
104, 286, 216, 105, 286, 106, 437, 300, 743, 107,
357, 286, 408, 357, 437, 108, 437, 286, 300, 286,
109, 778, 779, 437, 653, 654, 144, 145, 286, 286,
286, 286, 286, 286, 300, 300, 300, 414, 110, 658,
659, 437, 437, 437, 411, 286, 267, 216, 763, 120,
286, 216, 267, 136, 765, 286, 286, 216, 777, 132,
132, 132, 132, 132, 132, 132, 137, 286, 286, 132,
132, 132, 267, 161, 286, 286, 286, 286, 286, 241,
450, 451, 41, 73, 126, 241, 241, 241, 290, 99,
99, 174, 175, 786, 290, 290, 216, 300, 163, 300,
165, 132, 188, 290, 290, 290, 437, 290, 290, 195,
290, 414, 415, 416, 290, 290, 290, 318, 290, 267,
267, 267, 267, 267, 290, 290, 290, 290, 290, 290,
290, 290, 184, 185, 290, 210, 211, 290, 189, 190,
318, 267, 437, 47, 290, 196, 417, 267, 437, 437,
290, 318, 290, 48, 49, 50, 201, 356, 267, 267,
202, 290, 290, 290, 290, 290, 290, 318, 318, 318,
248, 69, 203, 99, 99, 248, 248, 437, 290, 356,
214, 248, 205, 290, 248, 636, 637, 638, 290, 290,
5, 6, 51, 207, 67, 192, 193, 126, 290, 291,
290, 290, 670, 677, 305, 306, 335, 290, 290, 290,
290, 290, 275, 642, 643, 356, 356, 356, 83, 208,
356, 356, 356, 209, 356, 686, 687, 356, 356, 335,
318, 212, 318, 694, 175, 356, 300, 275, 181, 182,
335, 213, 300, 300, 84, 85, 86, 9, 10, 11,
12, 215, 300, 300, 216, 300, 300, 338, 365, 366,
437, 378, 300, 300, 300, 248, 300, 386, 386, 386,
386, 386, 300, 300, 224, 357, 300, 300, 300, 300,
338, 128, 300, 437, 437, 300, 232, 378, 378, 378,
246, 338, 300, 666, 667, 386, 254, 357, 300, 251,
300, 130, 378, 378, 378, 673, 674, 653, 654, 300,
300, 300, 300, 300, 300, 414, 241, 257, 167, 335,
269, 335, 749, 750, 658, 659, 300, 670, 753, 754,
677, 300, 125, 357, 357, 357, 300, 300, 357, 357,
357, 285, 357, 286, 114, 357, 357, 287, 300, 300,
437, 437, 270, 357, 288, 300, 300, 300, 300, 300,
275, 275, 414, 414, 414, 414, 414, 437, 437, 289,
338, 293, 338, 443, 443, 333, 318, 294, 437, 500,
501, 502, 503, 504, 414, 318, 318, 315, 318, 318,
414, 323, 324, 325, 128, 670, 445, 445, 677, 318,
437, 99, 337, 295, 241, 318, 318, 505, 347, 318,
318, 318, 376, 352, 130, 318, 126, 126, 126, 126,
126, 126, 126, 404, 404, 318, 126, 126, 126, 241,
404, 404, 404, 318, 332, 378, 437, 437, 437, 381,
382, 437, 437, 437, 233, 437, 386, 318, 437, 437,
67, 67, 392, 397, 405, 398, 437, 114, 126, 318,
281, 413, 420, 67, 318, 335, 67, 233, 427, 318,
429, 456, 67, 463, 335, 335, 457, 335, 335, 470,
473, 318, 318, 513, 514, 67, 515, 517, 335, 318,
318, 318, 318, 521, 335, 335, 275, 524, 335, 335,
335, 522, 523, 275, 335, 526, 546, 275, 551, 561,
465, 562, 563, 564, 335, 469, 338, 565, 67, 566,
568, 460, 335, 275, 585, 338, 338, 635, 338, 338,
639, 640, 645, 641, 663, 67, 335, 664, 665, 338,
685, 691, 67, 697, 692, 338, 338, 707, 335, 338,
338, 338, 699, 335, 710, 338, 700, 701, 335, 650,
712, 198, 199, 200, 508, 338, 714, 716, 717, 721,
335, 335, 45, 338, 724, 681, 731, 732, 335, 335,
335, 335, 737, 762, 771, 801, 275, 338, 275, 796,
795, 797, 798, 802, 807, 45, 808, 815, 228, 338,
809, 241, 99, 45, 338, 275, 45, 47, 229, 338,
167, 437, 251, 128, 128, 128, 128, 128, 128, 128,
416, 338, 338, 128, 128, 128, 99, 59, 437, 338,
338, 338, 338, 130, 130, 130, 130, 130, 130, 130,
437, 41, 401, 130, 130, 130, 402, 680, 241, 241,
241, 241, 241, 241, 241, 128, 241, 146, 767, 241,
241, 241, 241, 316, 275, 529, 816, 241, 241, 241,
241, 275, 518, 525, 247, 130, 112, 112, 112, 112,
112, 112, 112, 230, 755, 45, 622, 112, 112, 334,
241, 275, 271, 299, 297, 483, 233, 314, 479, 233,
233, 233, 233, 233, 322, 543, 230, 233, 233, 233,
233, 545, 233, 233, 698, 233, 233, 167, 114, 539,
555, 399, 233, 233, 233, 245, 233, 233, 296, 233,
233, 233, 233, 233, 646, 384, 233, 233, 233, 233,
275, 554, 233, 703, 42, 233, 43, 0, 367, 0,
0, 241, 233, 0, 275, 0, 275, 0, 233, 0,
233, 0, 0, 275, 275, 0, 0, 233, 0, 233,
233, 233, 233, 233, 233, 0, 0, 241, 241, 241,
241, 241, 241, 241, 0, 0, 233, 241, 241, 241,
0, 233, 0, 275, 0, 0, 233, 233, 0, 0,
275, 0, 0, 0, 275, 0, 0, 0, 233, 233,
229, 0, 0, 0, 0, 233, 233, 233, 0, 0,
275, 275, 275, 0, 45, 0, 0, 0, 45, 45,
45, 45, 0, 229, 0, 45, 45, 45, 45, 0,
45, 45, 0, 45, 45, 0, 0, 275, 275, 0,
45, 45, 45, 0, 45, 0, 0, 0, 0, 90,
45, 45, 0, 0, 45, 45, 45, 45, 0, 0,
45, 0, 0, 45, 0, 0, 0, 0, 0, 0,
45, 0, 0, 275, 0, 275, 45, 0, 45, 0,
0, 0, 0, 117, 118, 119, 0, 45, 45, 45,
45, 45, 45, 0, 138, 0, 0, 39, 275, 0,
0, 0, 0, 0, 45, 0, 172, 0, 0, 45,
0, 0, 0, 0, 45, 45, 0, 0, 0, 0,
0, 275, 275, 209, 0, 230, 45, 45, 0, 230,
230, 230, 230, 45, 45, 45, 230, 230, 230, 230,
0, 230, 230, 0, 230, 230, 209, 0, 0, 0,
0, 0, 230, 230, 0, 230, 230, 0, 230, 230,
230, 230, 230, 572, 573, 230, 230, 230, 230, 0,
0, 230, 0, 0, 230, 0, 574, 0, 0, 575,
0, 230, 0, 0, 0, 576, 0, 230, 0, 230,
0, 211, 0, 0, 0, 0, 230, 0, 577, 0,
0, 0, 0, 230, 0, 275, 275, 0, 249, 250,
0, 0, 40, 253, 211, 230, 0, 0, 0, 0,
230, 0, 0, 260, 0, 230, 0, 275, 0, 0,
0, 578, 0, 0, 0, 0, 0, 230, 230, 0,
0, 0, 0, 0, 230, 230, 230, 0, 0, 0,
275, 275, 229, 0, 0, 579, 229, 229, 229, 229,
0, 0, 147, 229, 229, 229, 229, 0, 229, 229,
0, 229, 229, 0, 0, 0, 0, 0, 0, 229,
229, 0, 229, 229, 148, 229, 229, 229, 229, 229,
0, 0, 229, 229, 229, 229, 0, 0, 229, 0,
0, 229, 0, 0, 0, 0, 0, 0, 229, 275,
0, 0, 0, 0, 229, 213, 229, 261, 262, 263,
149, 150, 151, 229, 0, 152, 153, 154, 0, 155,
229, 0, 144, 145, 275, 275, 0, 0, 213, 0,
156, 0, 229, 38, 5, 6, 0, 229, 0, 0,
0, 0, 229, 0, 0, 485, 487, 489, 0, 0,
0, 0, 492, 493, 229, 229, 0, 0, 0, 0,
0, 229, 229, 229, 209, 209, 209, 209, 209, 209,
209, 209, 209, 0, 0, 7, 209, 209, 209, 209,
0, 209, 209, 0, 209, 209, 0, 0, 0, 0,
0, 9, 10, 11, 12, 209, 209, 0, 209, 209,
209, 209, 209, 0, 0, 209, 209, 209, 359, 0,
0, 209, 0, 0, 0, 540, 0, 541, 0, 542,
0, 209, 544, 380, 0, 0, 0, 0, 214, 209,
0, 385, 211, 211, 211, 211, 211, 211, 211, 211,
211, 0, 0, 209, 211, 211, 211, 211, 0, 211,
211, 214, 211, 211, 0, 209, 0, 0, 0, 0,
209, 0, 0, 211, 211, 209, 211, 211, 211, 211,
211, 0, 437, 211, 211, 211, 434, 209, 209, 211,
0, 0, 0, 0, 0, 209, 209, 0, 0, 211,
0, 0, 0, 0, 437, 0, 0, 211, 0, 0,
0, 0, 0, 0, 0, 0, 60, 61, 62, 63,
64, 211, 65, 0, 66, 0, 67, 68, 69, 0,
0, 0, 0, 211, 0, 0, 271, 0, 211, 0,
437, 437, 437, 211, 0, 437, 437, 437, 0, 437,
0, 0, 437, 437, 0, 211, 211, 0, 70, 271,
437, 702, 0, 211, 211, 0, 213, 213, 213, 213,
213, 213, 213, 213, 213, 71, 72, 0, 213, 213,
213, 213, 0, 213, 213, 0, 213, 213, 0, 0,
0, 0, 0, 0, 0, 0, 0, 213, 213, 0,
213, 213, 213, 213, 213, 0, 0, 213, 213, 213,
0, 0, 0, 213, 0, 0, 0, 0, 248, 0,
0, 0, 0, 213, 112, 112, 112, 112, 112, 112,
112, 213, 0, 0, 114, 112, 112, 0, 0, 0,
0, 248, 0, 0, 0, 213, 261, 0, 0, 271,
0, 0, 0, 0, 0, 0, 0, 213, 0, 0,
0, 0, 213, 0, 0, 0, 0, 213, 0, 261,
0, 0, 0, 0, 0, 768, 769, 770, 0, 213,
213, 0, 0, 0, 0, 0, 0, 213, 213, 214,
214, 214, 214, 214, 214, 214, 214, 214, 0, 0,
0, 214, 214, 214, 214, 0, 214, 214, 0, 214,
214, 0, 0, 0, 0, 0, 0, 0, 0, 0,
214, 214, 0, 214, 214, 214, 214, 214, 0, 0,
214, 214, 214, 0, 0, 0, 214, 233, 234, 235,
236, 237, 238, 239, 0, 0, 214, 0, 240, 241,
0, 0, 0, 0, 214, 0, 0, 0, 0, 261,
0, 0, 0, 0, 0, 0, 0, 0, 214, 223,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
214, 0, 0, 0, 0, 214, 0, 0, 271, 0,
214, 0, 223, 0, 271, 271, 0, 0, 0, 0,
0, 0, 214, 214, 271, 271, 0, 271, 271, 0,
214, 214, 0, 0, 271, 271, 271, 0, 271, 0,
0, 0, 0, 0, 271, 271, 0, 0, 271, 271,
271, 271, 0, 0, 271, 0, 0, 271, 0, 0,
0, 0, 0, 0, 271, 0, 0, 0, 0, 0,
271, 0, 271, 0, 0, 0, 0, 0, 0, 0,
0, 271, 271, 271, 271, 271, 271, 269, 0, 0,
248, 0, 0, 0, 0, 248, 248, 0, 271, 0,
0, 248, 0, 271, 248, 0, 0, 0, 271, 271,
269, 0, 0, 0, 0, 0, 0, 248, 248, 0,
271, 271, 0, 0, 261, 261, 0, 271, 271, 271,
248, 0, 0, 248, 261, 261, 0, 261, 261, 248,
0, 0, 0, 0, 261, 261, 261, 0, 261, 0,
0, 0, 248, 0, 261, 261, 0, 0, 261, 261,
261, 261, 0, 0, 261, 0, 0, 261, 0, 0,
0, 0, 0, 0, 261, 0, 0, 0, 0, 0,
261, 0, 261, 0, 0, 248, 0, 0, 0, 0,
0, 261, 261, 261, 261, 261, 261, 0, 392, 0,
269, 0, 248, 0, 0, 0, 0, 0, 261, 248,
0, 0, 0, 261, 0, 0, 0, 0, 261, 261,
0, 392, 0, 0, 0, 0, 0, 0, 0, 0,
261, 261, 0, 0, 0, 0, 0, 261, 261, 261,
0, 223, 267, 223, 223, 223, 223, 223, 223, 0,
0, 0, 223, 223, 223, 223, 0, 223, 223, 0,
223, 223, 0, 0, 0, 267, 0, 0, 0, 0,
0, 223, 223, 0, 223, 223, 223, 223, 223, 0,
0, 223, 223, 223, 0, 0, 0, 223, 0, 0,
0, 0, 0, 0, 0, 0, 0, 223, 0, 0,
0, 0, 0, 0, 0, 223, 0, 0, 0, 388,
0, 0, 0, 0, 0, 0, 0, 0, 0, 223,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 223, 388, 0, 0, 0, 223, 0, 0, 0,
0, 223, 0, 0, 0, 0, 269, 0, 0, 0,
0, 0, 0, 223, 223, 269, 269, 0, 269, 269,
0, 223, 223, 0, 0, 269, 269, 269, 0, 269,
0, 0, 0, 0, 0, 269, 269, 0, 0, 269,
269, 269, 269, 0, 0, 269, 0, 0, 269, 0,
0, 0, 0, 0, 0, 269, 0, 0, 0, 0,
241, 269, 0, 269, 0, 0, 0, 0, 0, 0,
0, 0, 269, 269, 269, 269, 269, 269, 0, 0,
0, 0, 0, 241, 0, 0, 0, 0, 0, 269,
0, 0, 0, 0, 269, 0, 0, 0, 0, 269,
269, 0, 52, 0, 0, 0, 0, 0, 0, 0,
392, 269, 269, 0, 0, 392, 392, 392, 269, 269,
269, 392, 392, 392, 392, 52, 392, 392, 0, 392,
392, 0, 0, 0, 0, 0, 0, 0, 0, 0,
392, 0, 0, 0, 0, 0, 392, 392, 0, 0,
392, 392, 392, 0, 267, 0, 392, 0, 0, 0,
267, 0, 0, 0, 0, 0, 392, 0, 0, 0,
228, 0, 0, 0, 392, 0, 0, 0, 0, 0,
0, 267, 267, 390, 390, 390, 390, 390, 392, 0,
0, 0, 0, 228, 267, 0, 0, 267, 0, 0,
392, 0, 0, 267, 0, 392, 0, 0, 0, 0,
392, 390, 0, 0, 0, 52, 267, 0, 0, 0,
0, 388, 392, 392, 0, 0, 388, 388, 388, 0,
392, 392, 388, 388, 388, 388, 0, 388, 388, 0,
388, 388, 0, 0, 0, 0, 0, 0, 0, 267,
0, 388, 0, 0, 0, 0, 0, 388, 388, 0,
0, 388, 388, 388, 0, 0, 267, 388, 0, 0,
0, 0, 0, 267, 0, 0, 0, 388, 0, 0,
0, 241, 0, 0, 0, 388, 0, 0, 0, 0,
0, 0, 0, 0, 388, 388, 388, 388, 388, 388,
0, 0, 0, 0, 241, 0, 0, 0, 0, 0,
0, 388, 241, 0, 0, 0, 388, 241, 241, 0,
0, 388, 388, 241, 241, 241, 241, 0, 0, 0,
0, 0, 0, 388, 388, 0, 0, 0, 241, 0,
0, 388, 388, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 52, 52, 52, 0, 52, 52, 52,
52, 52, 0, 0, 0, 52, 52, 52, 52, 0,
52, 52, 0, 52, 52, 0, 0, 0, 0, 0,
0, 0, 0, 0, 52, 241, 241, 241, 241, 241,
52, 52, 223, 0, 52, 52, 52, 0, 0, 0,
52, 0, 0, 0, 0, 0, 0, 241, 0, 0,
52, 0, 0, 241, 0, 223, 0, 0, 52, 0,
0, 0, 228, 0, 241, 241, 228, 228, 228, 228,
0, 0, 52, 228, 228, 228, 228, 0, 228, 228,
0, 228, 228, 0, 52, 0, 0, 0, 0, 52,
0, 0, 228, 228, 52, 228, 228, 228, 228, 228,
0, 0, 228, 228, 228, 0, 52, 52, 228, 0,
0, 0, 0, 0, 52, 52, 0, 0, 228, 0,
0, 0, 0, 0, 0, 0, 228, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
228, 0, 0, 226, 0, 223, 0, 0, 0, 0,
0, 0, 228, 0, 0, 0, 0, 228, 0, 0,
0, 0, 228, 0, 0, 0, 226, 0, 0, 0,
0, 0, 0, 241, 228, 228, 0, 0, 241, 241,
241, 0, 228, 228, 241, 241, 241, 241, 0, 241,
241, 0, 241, 241, 0, 0, 0, 0, 0, 0,
0, 0, 0, 241, 241, 0, 241, 241, 241, 241,
241, 0, 0, 241, 241, 241, 0, 0, 0, 241,
0, 0, 0, 0, 0, 0, 0, 0, 0, 241,
0, 0, 0, 0, 0, 0, 0, 241, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 241, 0, 0, 241, 0, 226, 0, 0, 0,
0, 0, 0, 241, 0, 0, 0, 0, 241, 0,
0, 0, 0, 241, 0, 0, 0, 241, 0, 0,
0, 0, 0, 0, 223, 241, 241, 223, 223, 223,
223, 223, 0, 241, 241, 223, 223, 223, 223, 0,
223, 223, 0, 223, 223, 0, 0, 0, 0, 0,
0, 0, 0, 0, 223, 0, 0, 0, 0, 0,
223, 223, 424, 0, 223, 223, 223, 0, 0, 0,
223, 0, 0, 0, 0, 0, 0, 0, 0, 0,
223, 0, 0, 0, 0, 424, 0, 0, 223, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 223, 0, 0, 0, 0, 241, 0, 0,
0, 0, 0, 0, 223, 0, 0, 0, 0, 223,
0, 0, 0, 0, 223, 0, 0, 0, 0, 0,
391, 0, 0, 0, 0, 226, 223, 223, 0, 226,
226, 226, 226, 0, 223, 223, 226, 226, 226, 226,
0, 226, 226, 391, 226, 226, 0, 0, 0, 0,
0, 0, 0, 0, 0, 226, 0, 0, 0, 0,
0, 226, 226, 0, 0, 226, 226, 226, 0, 0,
0, 226, 0, 0, 0, 0, 0, 0, 0, 0,
0, 226, 0, 0, 0, 0, 0, 0, 248, 226,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 226, 0, 0, 0, 0, 0, 0,
0, 248, 0, 0, 0, 226, 0, 0, 0, 0,
226, 0, 0, 0, 0, 226, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 241, 226, 226, 0,
0, 241, 241, 241, 0, 226, 226, 241, 241, 241,
241, 0, 241, 241, 0, 241, 241, 248, 0, 0,
0, 0, 0, 0, 0, 0, 241, 0, 0, 0,
0, 0, 241, 241, 0, 0, 241, 241, 241, 0,
248, 0, 241, 0, 0, 0, 0, 0, 0, 0,
0, 0, 241, 0, 0, 0, 0, 0, 0, 0,
241, 248, 0, 0, 424, 241, 0, 0, 0, 424,
424, 424, 0, 0, 241, 424, 424, 424, 424, 0,
424, 424, 0, 424, 424, 0, 241, 0, 241, 0,
0, 241, 0, 0, 424, 0, 241, 0, 0, 0,
424, 424, 0, 0, 424, 424, 424, 0, 241, 241,
424, 0, 0, 0, 0, 0, 241, 241, 0, 0,
424, 0, 0, 0, 0, 0, 0, 0, 424, 0,
0, 0, 391, 0, 251, 0, 0, 391, 391, 391,
0, 0, 424, 391, 391, 391, 391, 0, 391, 391,
0, 391, 391, 0, 424, 0, 0, 251, 0, 424,
0, 0, 391, 0, 424, 0, 0, 0, 391, 391,
0, 0, 391, 391, 391, 0, 424, 424, 391, 0,
0, 0, 0, 0, 424, 424, 251, 0, 391, 0,
0, 0, 0, 0, 0, 0, 391, 0, 0, 0,
248, 0, 0, 0, 0, 248, 248, 248, 0, 251,
391, 248, 0, 0, 248, 0, 248, 248, 0, 248,
248, 0, 391, 0, 0, 0, 0, 391, 0, 0,
248, 0, 391, 0, 0, 0, 248, 248, 0, 0,
248, 248, 248, 0, 391, 391, 248, 251, 0, 0,
0, 0, 391, 391, 0, 0, 248, 0, 0, 0,
0, 0, 0, 0, 248, 0, 0, 0, 0, 248,
0, 0, 0, 0, 248, 248, 248, 0, 248, 0,
248, 0, 0, 248, 267, 248, 248, 0, 248, 248,
248, 0, 0, 0, 0, 248, 0, 0, 0, 248,
248, 0, 0, 0, 0, 248, 248, 267, 0, 248,
248, 248, 248, 248, 0, 248, 0, 241, 0, 0,
248, 248, 241, 241, 0, 248, 0, 0, 241, 241,
241, 241, 0, 248, 0, 267, 0, 0, 0, 0,
0, 0, 0, 0, 241, 241, 0, 248, 0, 0,
0, 0, 0, 0, 0, 0, 0, 241, 267, 248,
241, 0, 0, 0, 248, 0, 241, 0, 0, 248,
0, 0, 0, 0, 0, 0, 0, 0, 0, 241,
0, 248, 248, 0, 0, 0, 251, 0, 0, 248,
248, 251, 251, 251, 0, 0, 0, 267, 0, 0,
251, 0, 251, 251, 0, 251, 251, 0, 0, 0,
0, 0, 241, 0, 0, 0, 251, 0, 0, 0,
0, 0, 251, 251, 176, 0, 251, 251, 251, 241,
0, 0, 251, 0, 0, 0, 241, 0, 251, 0,
0, 0, 251, 251, 251, 251, 0, 174, 0, 0,
251, 0, 251, 0, 251, 251, 0, 251, 251, 0,
0, 0, 0, 0, 251, 0, 0, 0, 251, 0,
360, 0, 0, 0, 251, 251, 251, 0, 251, 251,
251, 251, 0, 0, 251, 0, 251, 0, 0, 0,
0, 0, 0, 360, 251, 0, 0, 0, 251, 251,
0, 0, 251, 0, 0, 0, 251, 251, 0, 0,
0, 0, 0, 0, 0, 0, 251, 0, 0, 0,
0, 0, 49, 0, 0, 0, 0, 0, 251, 0,
0, 0, 0, 251, 0, 0, 267, 176, 251, 0,
0, 0, 267, 267, 0, 49, 0, 0, 0, 0,
251, 251, 267, 267, 0, 267, 267, 0, 251, 251,
0, 0, 0, 0, 0, 0, 267, 0, 176, 0,
0, 0, 267, 267, 0, 0, 267, 267, 267, 0,
0, 0, 267, 360, 0, 0, 0, 267, 0, 0,
0, 174, 267, 267, 267, 0, 0, 0, 0, 0,
267, 0, 0, 267, 267, 0, 267, 267, 0, 0,
0, 0, 0, 0, 267, 0, 0, 267, 0, 0,
0, 0, 0, 267, 267, 0, 267, 267, 267, 267,
0, 267, 0, 267, 0, 49, 267, 0, 0, 0,
0, 0, 0, 267, 0, 0, 0, 0, 267, 267,
0, 267, 0, 0, 0, 0, 267, 267, 0, 0,
0, 0, 0, 0, 0, 267, 0, 0, 0, 0,
0, 223, 0, 0, 0, 0, 0, 267, 0, 0,
0, 0, 267, 174, 0, 0, 0, 267, 0, 0,
0, 228, 174, 174, 223, 174, 174, 0, 0, 267,
267, 0, 0, 0, 0, 0, 174, 267, 267, 0,
0, 0, 174, 174, 228, 0, 174, 174, 174, 0,
0, 0, 174, 0, 404, 0, 0, 0, 0, 360,
0, 0, 174, 0, 0, 0, 0, 0, 360, 360,
174, 360, 360, 0, 0, 0, 0, 404, 0, 0,
0, 0, 360, 0, 174, 0, 405, 0, 360, 360,
0, 0, 360, 360, 360, 0, 174, 0, 360, 0,
0, 174, 0, 0, 0, 0, 174, 0, 360, 405,
0, 49, 0, 0, 0, 0, 360, 0, 174, 174,
49, 49, 0, 49, 49, 0, 174, 174, 0, 0,
360, 0, 248, 0, 49, 0, 0, 0, 0, 251,
49, 49, 360, 0, 49, 49, 49, 360, 0, 0,
49, 0, 360, 0, 0, 248, 0, 174, 0, 0,
49, 0, 251, 0, 360, 360, 174, 174, 49, 174,
174, 0, 360, 360, 0, 0, 0, 0, 0, 0,
174, 0, 49, 0, 0, 0, 174, 174, 0, 0,
174, 174, 174, 0, 49, 0, 174, 0, 0, 49,
0, 0, 0, 0, 49, 0, 174, 0, 0, 0,
0, 0, 0, 0, 174, 0, 49, 49, 0, 0,
0, 0, 0, 0, 49, 49, 0, 0, 174, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
174, 0, 167, 0, 0, 174, 0, 0, 0, 0,
174, 0, 0, 223, 0, 223, 223, 223, 223, 223,
0, 0, 174, 174, 223, 223, 223, 223, 0, 0,
174, 174, 0, 228, 0, 0, 0, 228, 228, 228,
223, 223, 0, 0, 228, 228, 228, 228, 0, 0,
0, 0, 0, 223, 0, 0, 223, 0, 0, 0,
228, 228, 223, 0, 0, 0, 404, 0, 0, 0,
404, 404, 404, 228, 0, 223, 228, 404, 404, 404,
404, 0, 228, 0, 0, 0, 0, 0, 0, 0,
0, 0, 404, 0, 0, 228, 0, 0, 405, 0,
0, 0, 405, 405, 405, 0, 0, 0, 223, 405,
405, 405, 405, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 405, 223, 0, 0, 228, 0,
0, 0, 223, 0, 0, 0, 0, 0, 0, 404,
404, 404, 404, 404, 248, 228, 0, 0, 0, 248,
248, 251, 228, 0, 0, 248, 251, 251, 248, 0,
0, 404, 0, 0, 0, 251, 0, 404, 0, 0,
248, 405, 405, 405, 405, 405, 0, 251, 404, 404,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 405, 0, 0, 0, 0, 0, 405,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
405, 405, 0, 0, 0, 0, 0, 248, 248, 248,
248, 248, 0, 0, 251, 251, 251, 251, 251, 0,
0, 0, 0, 0, 0, 0, 0, 0, 587, 248,
0, 0, 0, 0, 0, 248, 251, 588, 589, 0,
590, 591, 251, 0, 0, 0, 248, 248, 0, 0,
0, 592, 0, 251, 251, 0, 0, 593, 338, 0,
0, 594, 595, 596, 0, 0, 0, 597, 0, 0,
0, 0, 0, 0, 0, 0, 0, 598, 0, 0,
0, 0, 0, 0, 0, 599, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 600,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 601, 0, 0, 0, 0, 602, 0, 0, 0,
0, 603, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 604, 0, 0, 0, 0, 0,
0, 605, 606,
};
static const YYINT pfctlycheck[] = { 3,
3, 82, 11, 12, 324, 325, 126, 78, 10, 33,
10, 10, 191, 206, 33, 10, 44, 10, 10, 33,
10, 230, 40, 40, 10, 44, 44, 365, 366, 123,
528, 33, 10, 346, 204, 0, 368, 383, 651, 10,
33, 123, 33, 222, 713, 10, 166, 56, 428, 276,
123, 275, 10, 44, 512, 33, 44, 677, 40, 33,
33, 70, 267, 40, 33, 123, 169, 298, 273, 60,
61, 62, 81, 40, 349, 123, 40, 123, 40, 267,
355, 356, 10, 203, 10, 406, 407, 266, 276, 268,
682, 33, 44, 33, 123, 40, 177, 125, 40, 712,
279, 447, 423, 10, 724, 225, 125, 125, 40, 384,
44, 427, 781, 429, 536, 33, 60, 40, 60, 40,
60, 61, 62, 226, 123, 44, 40, 10, 123, 44,
44, 123, 10, 442, 125, 344, 634, 125, 331, 459,
44, 123, 60, 61, 62, 265, 60, 267, 33, 123,
123, 44, 125, 384, 123, 33, 335, 384, 328, 230,
280, 123, 282, 10, 477, 720, 44, 33, 626, 348,
550, 395, 764, 125, 353, 60, 61, 62, 510, 44,
44, 123, 60, 61, 62, 44, 33, 307, 534, 715,
33, 125, 614, 670, 60, 61, 62, 299, 44, 319,
546, 260, 359, 74, 10, 123, 125, 33, 517, 218,
125, 125, 294, 84, 85, 86, 336, 60, 61, 62,
384, 125, 401, 544, 33, 384, 40, 384, 10, 40,
409, 569, 125, 788, 60, 61, 62, 246, 10, 418,
261, 361, 263, 44, 721, 123, 425, 125, 40, 60,
309, 371, 568, 40, 384, 357, 435, 123, 784, 359,
125, 125, 359, 40, 314, 359, 125, 10, 60, 262,
390, 391, 33, 344, 267, 268, 384, 385, 723, 125,
400, 47, 402, 276, 384, 40, 288, 384, 288, 468,
384, 256, 257, 258, 259, 294, 289, 290, 10, 60,
61, 62, 384, 40, 277, 60, 377, 178, 277, 302,
288, 384, 305, 299, 123, 33, 436, 437, 311, 498,
285, 286, 287, 60, 125, 41, 384, 41, 299, 41,
288, 324, 44, 298, 262, 277, 384, 385, 384, 518,
268, 461, 60, 61, 62, 310, 791, 467, 384, 314,
315, 316, 317, 318, 474, 357, 384, 352, 300, 301,
384, 540, 541, 542, 357, 384, 384, 332, 385, 334,
384, 357, 374, 256, 257, 258, 341, 497, 557, 357,
123, 374, 374, 703, 374, 384, 357, 352, 381, 384,
706, 269, 571, 384, 385, 360, 374, 375, 362, 357,
278, 279, 384, 281, 282, 123, 44, 384, 385, 335,
336, 337, 338, 339, 292, 298, 374, 384, 538, 384,
298, 299, 384, 10, 302, 303, 304, 310, 44, 357,
308, 314, 315, 316, 317, 318, 556, 363, 558, 384,
318, 288, 384, 385, 384, 385, 33, 10, 326, 332,
570, 334, 384, 40, 41, 771, 40, 44, 341, 775,
531, 384, 340, 384, 584, 536, 384, 385, 277, 352,
384, 385, 44, 60, 352, 284, 60, 360, 266, 357,
262, 664, 288, 123, 362, 267, 268, 125, 335, 336,
337, 338, 339, 502, 276, 44, 374, 375, 123, 384,
385, 384, 685, 623, 382, 383, 384, 385, 628, 125,
357, 277, 583, 24, 10, 44, 363, 526, 384, 385,
699, 700, 701, 61, 605, 384, 385, 374, 10, 335,
336, 337, 338, 339, 10, 655, 123, 33, 125, 123,
660, 384, 385, 614, 55, 300, 301, 10, 668, 40,
729, 622, 731, 125, 41, 675, 10, 363, 384, 385,
123, 10, 741, 335, 336, 337, 338, 339, 747, 60,
384, 385, 751, 384, 385, 357, 125, 756, 10, 33,
759, 10, 257, 762, 40, 705, 40, 41, 708, 264,
44, 363, 384, 385, 306, 604, 125, 384, 385, 342,
343, 344, 345, 346, 347, 348, 60, 384, 385, 352,
353, 354, 41, 384, 268, 44, 328, 44, 384, 45,
740, 47, 276, 384, 385, 89, 707, 91, 748, 384,
385, 10, 752, 349, 350, 351, 645, 757, 10, 41,
760, 384, 44, 41, 358, 359, 44, 384, 385, 303,
304, 732, 364, 365, 366, 264, 265, 369, 370, 371,
10, 373, 10, 10, 376, 377, 384, 385, 384, 123,
384, 125, 384, 10, 293, 262, 295, 296, 297, 10,
800, 268, 269, 803, 804, 805, 806, 10, 697, 40,
277, 278, 279, 10, 281, 282, 40, 284, 125, 10,
10, 288, 289, 290, 10, 292, 358, 359, 285, 286,
287, 298, 299, 300, 301, 302, 303, 304, 305, 41,
10, 308, 44, 10, 311, 10, 268, 33, 809, 10,
41, 318, 384, 44, 276, 10, 33, 324, 44, 326,
10, 745, 745, 40, 384, 385, 376, 377, 335, 336,
337, 338, 339, 340, 60, 61, 62, 10, 10, 384,
385, 303, 304, 60, 41, 352, 262, 44, 41, 384,
357, 44, 268, 384, 41, 362, 363, 44, 125, 342,
343, 344, 345, 346, 347, 348, 384, 374, 375, 352,
353, 354, 288, 40, 381, 382, 383, 384, 385, 267,
384, 385, 10, 264, 10, 273, 274, 275, 262, 300,
301, 384, 385, 41, 268, 269, 44, 123, 333, 125,
265, 384, 307, 277, 278, 279, 123, 281, 282, 62,
284, 349, 350, 351, 288, 289, 290, 10, 292, 335,
336, 337, 338, 339, 298, 299, 300, 301, 302, 303,
304, 305, 274, 275, 308, 367, 368, 311, 384, 385,
33, 357, 349, 260, 318, 265, 384, 363, 355, 356,
324, 44, 326, 270, 271, 272, 385, 306, 374, 375,
385, 335, 336, 337, 338, 339, 340, 60, 61, 62,
262, 10, 10, 384, 385, 267, 268, 384, 352, 328,
60, 273, 385, 357, 276, 311, 312, 313, 362, 363,
257, 258, 309, 385, 33, 384, 385, 123, 384, 385,
374, 375, 595, 596, 384, 385, 10, 381, 382, 383,
384, 385, 359, 384, 385, 364, 365, 366, 259, 385,
369, 370, 371, 385, 373, 384, 385, 376, 377, 33,
123, 385, 125, 384, 385, 384, 262, 384, 85, 86,
44, 385, 268, 269, 285, 286, 287, 314, 315, 316,
317, 385, 278, 279, 44, 281, 282, 10, 302, 303,
277, 259, 288, 289, 290, 357, 292, 335, 336, 337,
338, 339, 298, 299, 384, 306, 302, 303, 304, 305,
33, 10, 308, 300, 301, 311, 352, 285, 286, 287,
267, 44, 318, 384, 385, 363, 385, 328, 324, 273,
326, 10, 285, 286, 287, 384, 385, 384, 385, 335,
336, 337, 338, 339, 340, 288, 10, 41, 33, 123,
47, 125, 384, 385, 384, 385, 352, 720, 384, 385,
723, 357, 384, 364, 365, 366, 362, 363, 369, 370,
371, 40, 373, 40, 10, 376, 377, 40, 374, 375,
384, 385, 384, 384, 40, 381, 382, 383, 384, 385,
384, 385, 335, 336, 337, 338, 339, 384, 385, 40,
123, 385, 125, 384, 385, 62, 269, 385, 306, 335,
336, 337, 338, 339, 357, 278, 279, 41, 281, 282,
363, 261, 262, 263, 123, 788, 384, 385, 791, 292,
328, 374, 41, 385, 10, 298, 299, 363, 384, 302,
303, 304, 375, 384, 123, 308, 342, 343, 344, 345,
346, 347, 348, 266, 267, 318, 352, 353, 354, 123,
273, 274, 275, 326, 385, 262, 364, 365, 366, 41,
384, 369, 370, 371, 10, 373, 357, 340, 376, 377,
289, 290, 372, 384, 41, 385, 384, 123, 384, 352,
384, 41, 41, 302, 357, 269, 305, 33, 267, 362,
384, 284, 311, 268, 278, 279, 384, 281, 282, 385,
367, 374, 375, 61, 61, 324, 61, 386, 292, 382,
383, 384, 385, 47, 298, 299, 33, 47, 302, 303,
304, 384, 384, 40, 308, 374, 268, 44, 41, 384,
380, 385, 385, 41, 318, 385, 269, 62, 357, 385,
288, 384, 326, 60, 123, 278, 279, 385, 281, 282,
385, 384, 374, 385, 283, 374, 340, 283, 283, 292,
283, 385, 381, 374, 385, 298, 299, 284, 352, 302,
303, 304, 385, 357, 10, 308, 385, 385, 362, 384,
47, 117, 118, 119, 434, 318, 280, 280, 40, 386,
374, 375, 10, 326, 386, 362, 384, 284, 382, 383,
384, 385, 41, 385, 288, 10, 123, 340, 125, 41,
384, 41, 41, 10, 385, 33, 41, 41, 333, 352,
284, 10, 384, 41, 357, 384, 44, 10, 164, 362,
10, 384, 267, 342, 343, 344, 345, 346, 347, 348,
10, 374, 375, 352, 353, 354, 374, 10, 385, 382,
383, 384, 385, 342, 343, 344, 345, 346, 347, 348,
362, 3, 10, 352, 353, 354, 10, 597, 342, 343,
344, 345, 346, 347, 348, 384, 262, 71, 732, 353,
354, 267, 268, 256, 33, 463, 809, 273, 274, 275,
276, 40, 447, 456, 177, 384, 342, 343, 344, 345,
346, 347, 348, 10, 717, 123, 547, 353, 354, 274,
384, 60, 217, 249, 245, 412, 262, 253, 404, 265,
266, 267, 268, 269, 260, 490, 33, 273, 274, 275,
276, 495, 278, 279, 614, 281, 282, 33, 384, 482,
508, 342, 288, 289, 290, 172, 292, 293, 244, 295,
296, 297, 298, 299, 583, 321, 302, 303, 304, 305,
277, 507, 308, 622, 3, 311, 3, -1, 304, -1,
-1, 357, 318, -1, 123, -1, 125, -1, 324, -1,
326, -1, -1, 300, 301, -1, -1, 333, -1, 335,
336, 337, 338, 339, 340, -1, -1, 342, 343, 344,
345, 346, 347, 348, -1, -1, 352, 352, 353, 354,
-1, 357, -1, 33, -1, -1, 362, 363, -1, -1,
40, -1, -1, -1, 44, -1, -1, -1, 374, 375,
10, -1, -1, -1, -1, 381, 382, 383, -1, -1,
60, 61, 62, -1, 262, -1, -1, -1, 266, 267,
268, 269, -1, 33, -1, 273, 274, 275, 276, -1,
278, 279, -1, 281, 282, -1, -1, 384, 385, -1,
288, 289, 290, -1, 292, -1, -1, -1, -1, 23,
298, 299, -1, -1, 302, 303, 304, 305, -1, -1,
308, -1, -1, 311, -1, -1, -1, -1, -1, -1,
318, -1, -1, 123, -1, 125, 324, -1, 326, -1,
-1, -1, -1, 57, 58, 59, -1, 335, 336, 337,
338, 339, 340, -1, 68, -1, -1, 10, 277, -1,
-1, -1, -1, -1, 352, -1, 80, -1, -1, 357,
-1, -1, -1, -1, 362, 363, -1, -1, -1, -1,
-1, 300, 301, 10, -1, 262, 374, 375, -1, 266,
267, 268, 269, 381, 382, 383, 273, 274, 275, 276,
-1, 278, 279, -1, 281, 282, 33, -1, -1, -1,
-1, -1, 289, 290, -1, 292, 293, -1, 295, 296,
297, 298, 299, 289, 290, 302, 303, 304, 305, -1,
-1, 308, -1, -1, 311, -1, 302, -1, -1, 305,
-1, 318, -1, -1, -1, 311, -1, 324, -1, 326,
-1, 10, -1, -1, -1, -1, 333, -1, 324, -1,
-1, -1, -1, 340, -1, 384, 385, -1, 182, 183,
-1, -1, 125, 187, 33, 352, -1, -1, -1, -1,
357, -1, -1, 197, -1, 362, -1, 277, -1, -1,
-1, 357, -1, -1, -1, -1, -1, 374, 375, -1,
-1, -1, -1, -1, 381, 382, 383, -1, -1, -1,
300, 301, 262, -1, -1, 381, 266, 267, 268, 269,
-1, -1, 306, 273, 274, 275, 276, -1, 278, 279,
-1, 281, 282, -1, -1, -1, -1, -1, -1, 289,
290, -1, 292, 293, 328, 295, 296, 297, 298, 299,
-1, -1, 302, 303, 304, 305, -1, -1, 308, -1,
-1, 311, -1, -1, -1, -1, -1, -1, 318, 359,
-1, -1, -1, -1, 324, 10, 326, 198, 199, 200,
364, 365, 366, 333, -1, 369, 370, 371, -1, 373,
340, -1, 376, 377, 384, 385, -1, -1, 33, -1,
384, -1, 352, 256, 257, 258, -1, 357, -1, -1,
-1, -1, 362, -1, -1, 414, 415, 416, -1, -1,
-1, -1, 421, 422, 374, 375, -1, -1, -1, -1,
-1, 381, 382, 383, 261, 262, 263, 264, 265, 266,
267, 268, 269, -1, -1, 298, 273, 274, 275, 276,
-1, 278, 279, -1, 281, 282, -1, -1, -1, -1,
-1, 314, 315, 316, 317, 292, 293, -1, 295, 296,
297, 298, 299, -1, -1, 302, 303, 304, 299, -1,
-1, 308, -1, -1, -1, 484, -1, 486, -1, 488,
-1, 318, 491, 314, -1, -1, -1, -1, 10, 326,
-1, 322, 261, 262, 263, 264, 265, 266, 267, 268,
269, -1, -1, 340, 273, 274, 275, 276, -1, 278,
279, 33, 281, 282, -1, 352, -1, -1, -1, -1,
357, -1, -1, 292, 293, 362, 295, 296, 297, 298,
299, -1, 306, 302, 303, 304, 367, 374, 375, 308,
-1, -1, -1, -1, -1, 382, 383, -1, -1, 318,
-1, -1, -1, -1, 328, -1, -1, 326, -1, -1,
-1, -1, -1, -1, -1, -1, 319, 320, 321, 322,
323, 340, 325, -1, 327, -1, 329, 330, 331, -1,
-1, -1, -1, 352, -1, -1, 10, -1, 357, -1,
364, 365, 366, 362, -1, 369, 370, 371, -1, 373,
-1, -1, 376, 377, -1, 374, 375, -1, 361, 33,
384, 620, -1, 382, 383, -1, 261, 262, 263, 264,
265, 266, 267, 268, 269, 378, 379, -1, 273, 274,
275, 276, -1, 278, 279, -1, 281, 282, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 292, 293, -1,
295, 296, 297, 298, 299, -1, -1, 302, 303, 304,
-1, -1, -1, 308, -1, -1, -1, -1, 10, -1,
-1, -1, -1, 318, 342, 343, 344, 345, 346, 347,
348, 326, -1, -1, 352, 353, 354, -1, -1, -1,
-1, 33, -1, -1, -1, 340, 10, -1, -1, 123,
-1, -1, -1, -1, -1, -1, -1, 352, -1, -1,
-1, -1, 357, -1, -1, -1, -1, 362, -1, 33,
-1, -1, -1, -1, -1, 734, 735, 736, -1, 374,
375, -1, -1, -1, -1, -1, -1, 382, 383, 261,
262, 263, 264, 265, 266, 267, 268, 269, -1, -1,
-1, 273, 274, 275, 276, -1, 278, 279, -1, 281,
282, -1, -1, -1, -1, -1, -1, -1, -1, -1,
292, 293, -1, 295, 296, 297, 298, 299, -1, -1,
302, 303, 304, -1, -1, -1, 308, 342, 343, 344,
345, 346, 347, 348, -1, -1, 318, -1, 353, 354,
-1, -1, -1, -1, 326, -1, -1, -1, -1, 123,
-1, -1, -1, -1, -1, -1, -1, -1, 340, 10,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
352, -1, -1, -1, -1, 357, -1, -1, 262, -1,
362, -1, 33, -1, 268, 269, -1, -1, -1, -1,
-1, -1, 374, 375, 278, 279, -1, 281, 282, -1,
382, 383, -1, -1, 288, 289, 290, -1, 292, -1,
-1, -1, -1, -1, 298, 299, -1, -1, 302, 303,
304, 305, -1, -1, 308, -1, -1, 311, -1, -1,
-1, -1, -1, -1, 318, -1, -1, -1, -1, -1,
324, -1, 326, -1, -1, -1, -1, -1, -1, -1,
-1, 335, 336, 337, 338, 339, 340, 10, -1, -1,
262, -1, -1, -1, -1, 267, 268, -1, 352, -1,
-1, 273, -1, 357, 276, -1, -1, -1, 362, 363,
33, -1, -1, -1, -1, -1, -1, 289, 290, -1,
374, 375, -1, -1, 268, 269, -1, 381, 382, 383,
302, -1, -1, 305, 278, 279, -1, 281, 282, 311,
-1, -1, -1, -1, 288, 289, 290, -1, 292, -1,
-1, -1, 324, -1, 298, 299, -1, -1, 302, 303,
304, 305, -1, -1, 308, -1, -1, 311, -1, -1,
-1, -1, -1, -1, 318, -1, -1, -1, -1, -1,
324, -1, 326, -1, -1, 357, -1, -1, -1, -1,
-1, 335, 336, 337, 338, 339, 340, -1, 10, -1,
123, -1, 374, -1, -1, -1, -1, -1, 352, 381,
-1, -1, -1, 357, -1, -1, -1, -1, 362, 363,
-1, 33, -1, -1, -1, -1, -1, -1, -1, -1,
374, 375, -1, -1, -1, -1, -1, 381, 382, 383,
-1, 262, 10, 264, 265, 266, 267, 268, 269, -1,
-1, -1, 273, 274, 275, 276, -1, 278, 279, -1,
281, 282, -1, -1, -1, 33, -1, -1, -1, -1,
-1, 292, 293, -1, 295, 296, 297, 298, 299, -1,
-1, 302, 303, 304, -1, -1, -1, 308, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 318, -1, -1,
-1, -1, -1, -1, -1, 326, -1, -1, -1, 10,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 340,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 352, 33, -1, -1, -1, 357, -1, -1, -1,
-1, 362, -1, -1, -1, -1, 269, -1, -1, -1,
-1, -1, -1, 374, 375, 278, 279, -1, 281, 282,
-1, 382, 383, -1, -1, 288, 289, 290, -1, 292,
-1, -1, -1, -1, -1, 298, 299, -1, -1, 302,
303, 304, 305, -1, -1, 308, -1, -1, 311, -1,
-1, -1, -1, -1, -1, 318, -1, -1, -1, -1,
10, 324, -1, 326, -1, -1, -1, -1, -1, -1,
-1, -1, 335, 336, 337, 338, 339, 340, -1, -1,
-1, -1, -1, 33, -1, -1, -1, -1, -1, 352,
-1, -1, -1, -1, 357, -1, -1, -1, -1, 362,
363, -1, 10, -1, -1, -1, -1, -1, -1, -1,
262, 374, 375, -1, -1, 267, 268, 269, 381, 382,
383, 273, 274, 275, 276, 33, 278, 279, -1, 281,
282, -1, -1, -1, -1, -1, -1, -1, -1, -1,
292, -1, -1, -1, -1, -1, 298, 299, -1, -1,
302, 303, 304, -1, 262, -1, 308, -1, -1, -1,
268, -1, -1, -1, -1, -1, 318, -1, -1, -1,
10, -1, -1, -1, 326, -1, -1, -1, -1, -1,
-1, 289, 290, 335, 336, 337, 338, 339, 340, -1,
-1, -1, -1, 33, 302, -1, -1, 305, -1, -1,
352, -1, -1, 311, -1, 357, -1, -1, -1, -1,
362, 363, -1, -1, -1, 123, 324, -1, -1, -1,
-1, 262, 374, 375, -1, -1, 267, 268, 269, -1,
382, 383, 273, 274, 275, 276, -1, 278, 279, -1,
281, 282, -1, -1, -1, -1, -1, -1, -1, 357,
-1, 292, -1, -1, -1, -1, -1, 298, 299, -1,
-1, 302, 303, 304, -1, -1, 374, 308, -1, -1,
-1, -1, -1, 381, -1, -1, -1, 318, -1, -1,
-1, 10, -1, -1, -1, 326, -1, -1, -1, -1,
-1, -1, -1, -1, 335, 336, 337, 338, 339, 340,
-1, -1, -1, -1, 33, -1, -1, -1, -1, -1,
-1, 352, 262, -1, -1, -1, 357, 267, 268, -1,
-1, 362, 363, 273, 274, 275, 276, -1, -1, -1,
-1, -1, -1, 374, 375, -1, -1, -1, 288, -1,
-1, 382, 383, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 261, 262, 263, -1, 265, 266, 267,
268, 269, -1, -1, -1, 273, 274, 275, 276, -1,
278, 279, -1, 281, 282, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 292, 335, 336, 337, 338, 339,
298, 299, 10, -1, 302, 303, 304, -1, -1, -1,
308, -1, -1, -1, -1, -1, -1, 357, -1, -1,
318, -1, -1, 363, -1, 33, -1, -1, 326, -1,
-1, -1, 262, -1, 374, 375, 266, 267, 268, 269,
-1, -1, 340, 273, 274, 275, 276, -1, 278, 279,
-1, 281, 282, -1, 352, -1, -1, -1, -1, 357,
-1, -1, 292, 293, 362, 295, 296, 297, 298, 299,
-1, -1, 302, 303, 304, -1, 374, 375, 308, -1,
-1, -1, -1, -1, 382, 383, -1, -1, 318, -1,
-1, -1, -1, -1, -1, -1, 326, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
340, -1, -1, 10, -1, 123, -1, -1, -1, -1,
-1, -1, 352, -1, -1, -1, -1, 357, -1, -1,
-1, -1, 362, -1, -1, -1, 33, -1, -1, -1,
-1, -1, -1, 262, 374, 375, -1, -1, 267, 268,
269, -1, 382, 383, 273, 274, 275, 276, -1, 278,
279, -1, 281, 282, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 292, 293, -1, 295, 296, 297, 298,
299, -1, -1, 302, 303, 304, -1, -1, -1, 308,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 318,
-1, -1, -1, -1, -1, -1, -1, 326, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 340, -1, -1, 10, -1, 123, -1, -1, -1,
-1, -1, -1, 352, -1, -1, -1, -1, 357, -1,
-1, -1, -1, 362, -1, -1, -1, 33, -1, -1,
-1, -1, -1, -1, 262, 374, 375, 265, 266, 267,
268, 269, -1, 382, 383, 273, 274, 275, 276, -1,
278, 279, -1, 281, 282, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 292, -1, -1, -1, -1, -1,
298, 299, 10, -1, 302, 303, 304, -1, -1, -1,
308, -1, -1, -1, -1, -1, -1, -1, -1, -1,
318, -1, -1, -1, -1, 33, -1, -1, 326, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 340, -1, -1, -1, -1, 123, -1, -1,
-1, -1, -1, -1, 352, -1, -1, -1, -1, 357,
-1, -1, -1, -1, 362, -1, -1, -1, -1, -1,
10, -1, -1, -1, -1, 262, 374, 375, -1, 266,
267, 268, 269, -1, 382, 383, 273, 274, 275, 276,
-1, 278, 279, 33, 281, 282, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 292, -1, -1, -1, -1,
-1, 298, 299, -1, -1, 302, 303, 304, -1, -1,
-1, 308, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 318, -1, -1, -1, -1, -1, -1, 10, 326,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 340, -1, -1, -1, -1, -1, -1,
-1, 33, -1, -1, -1, 352, -1, -1, -1, -1,
357, -1, -1, -1, -1, 362, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 262, 374, 375, -1,
-1, 267, 268, 269, -1, 382, 383, 273, 274, 275,
276, -1, 278, 279, -1, 281, 282, 10, -1, -1,
-1, -1, -1, -1, -1, -1, 292, -1, -1, -1,
-1, -1, 298, 299, -1, -1, 302, 303, 304, -1,
33, -1, 308, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 318, -1, -1, -1, -1, -1, -1, -1,
326, 123, -1, -1, 262, 10, -1, -1, -1, 267,
268, 269, -1, -1, 340, 273, 274, 275, 276, -1,
278, 279, -1, 281, 282, -1, 352, -1, 33, -1,
-1, 357, -1, -1, 292, -1, 362, -1, -1, -1,
298, 299, -1, -1, 302, 303, 304, -1, 374, 375,
308, -1, -1, -1, -1, -1, 382, 383, -1, -1,
318, -1, -1, -1, -1, -1, -1, -1, 326, -1,
-1, -1, 262, -1, 10, -1, -1, 267, 268, 269,
-1, -1, 340, 273, 274, 275, 276, -1, 278, 279,
-1, 281, 282, -1, 352, -1, -1, 33, -1, 357,
-1, -1, 292, -1, 362, -1, -1, -1, 298, 299,
-1, -1, 302, 303, 304, -1, 374, 375, 308, -1,
-1, -1, -1, -1, 382, 383, 10, -1, 318, -1,
-1, -1, -1, -1, -1, -1, 326, -1, -1, -1,
262, -1, -1, -1, -1, 267, 268, 269, -1, 33,
340, 273, -1, -1, 276, -1, 278, 279, -1, 281,
282, -1, 352, -1, -1, -1, -1, 357, -1, -1,
292, -1, 362, -1, -1, -1, 298, 299, -1, -1,
302, 303, 304, -1, 374, 375, 308, 123, -1, -1,
-1, -1, 382, 383, -1, -1, 318, -1, -1, -1,
-1, -1, -1, -1, 326, -1, -1, -1, -1, 262,
-1, -1, -1, -1, 267, 268, 269, -1, 340, -1,
273, -1, -1, 276, 10, 278, 279, -1, 281, 282,
352, -1, -1, -1, -1, 357, -1, -1, -1, 292,
362, -1, -1, -1, -1, 298, 299, 33, -1, 302,
303, 304, 374, 375, -1, 308, -1, 262, -1, -1,
382, 383, 267, 268, -1, 318, -1, -1, 273, 274,
275, 276, -1, 326, -1, 10, -1, -1, -1, -1,
-1, -1, -1, -1, 289, 290, -1, 340, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 302, 33, 352,
305, -1, -1, -1, 357, -1, 311, -1, -1, 362,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 324,
-1, 374, 375, -1, -1, -1, 262, -1, -1, 382,
383, 267, 268, 269, -1, -1, -1, 123, -1, -1,
276, -1, 278, 279, -1, 281, 282, -1, -1, -1,
-1, -1, 357, -1, -1, -1, 292, -1, -1, -1,
-1, -1, 298, 299, 10, -1, 302, 303, 304, 374,
-1, -1, 308, -1, -1, -1, 381, -1, 262, -1,
-1, -1, 318, 267, 268, 269, -1, 33, -1, -1,
326, -1, 276, -1, 278, 279, -1, 281, 282, -1,
-1, -1, -1, -1, 340, -1, -1, -1, 292, -1,
10, -1, -1, -1, 298, 299, 352, -1, 302, 303,
304, 357, -1, -1, 308, -1, 362, -1, -1, -1,
-1, -1, -1, 33, 318, -1, -1, -1, 374, 375,
-1, -1, 326, -1, -1, -1, 382, 383, -1, -1,
-1, -1, -1, -1, -1, -1, 340, -1, -1, -1,
-1, -1, 10, -1, -1, -1, -1, -1, 352, -1,
-1, -1, -1, 357, -1, -1, 262, 123, 362, -1,
-1, -1, 268, 269, -1, 33, -1, -1, -1, -1,
374, 375, 278, 279, -1, 281, 282, -1, 382, 383,
-1, -1, -1, -1, -1, -1, 292, -1, 10, -1,
-1, -1, 298, 299, -1, -1, 302, 303, 304, -1,
-1, -1, 308, 123, -1, -1, -1, 262, -1, -1,
-1, 33, 318, 268, 269, -1, -1, -1, -1, -1,
326, -1, -1, 278, 279, -1, 281, 282, -1, -1,
-1, -1, -1, -1, 340, -1, -1, 292, -1, -1,
-1, -1, -1, 298, 299, -1, 352, 302, 303, 304,
-1, 357, -1, 308, -1, 123, 362, -1, -1, -1,
-1, -1, -1, 318, -1, -1, -1, -1, 374, 375,
-1, 326, -1, -1, -1, -1, 382, 383, -1, -1,
-1, -1, -1, -1, -1, 340, -1, -1, -1, -1,
-1, 10, -1, -1, -1, -1, -1, 352, -1, -1,
-1, -1, 357, 269, -1, -1, -1, 362, -1, -1,
-1, 10, 278, 279, 33, 281, 282, -1, -1, 374,
375, -1, -1, -1, -1, -1, 292, 382, 383, -1,
-1, -1, 298, 299, 33, -1, 302, 303, 304, -1,
-1, -1, 308, -1, 10, -1, -1, -1, -1, 269,
-1, -1, 318, -1, -1, -1, -1, -1, 278, 279,
326, 281, 282, -1, -1, -1, -1, 33, -1, -1,
-1, -1, 292, -1, 340, -1, 10, -1, 298, 299,
-1, -1, 302, 303, 304, -1, 352, -1, 308, -1,
-1, 357, -1, -1, -1, -1, 362, -1, 318, 33,
-1, 269, -1, -1, -1, -1, 326, -1, 374, 375,
278, 279, -1, 281, 282, -1, 382, 383, -1, -1,
340, -1, 10, -1, 292, -1, -1, -1, -1, 10,
298, 299, 352, -1, 302, 303, 304, 357, -1, -1,
308, -1, 362, -1, -1, 33, -1, 269, -1, -1,
318, -1, 33, -1, 374, 375, 278, 279, 326, 281,
282, -1, 382, 383, -1, -1, -1, -1, -1, -1,
292, -1, 340, -1, -1, -1, 298, 299, -1, -1,
302, 303, 304, -1, 352, -1, 308, -1, -1, 357,
-1, -1, -1, -1, 362, -1, 318, -1, -1, -1,
-1, -1, -1, -1, 326, -1, 374, 375, -1, -1,
-1, -1, -1, -1, 382, 383, -1, -1, 340, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
352, -1, 33, -1, -1, 357, -1, -1, -1, -1,
362, -1, -1, 262, -1, 264, 265, 266, 267, 268,
-1, -1, 374, 375, 273, 274, 275, 276, -1, -1,
382, 383, -1, 262, -1, -1, -1, 266, 267, 268,
289, 290, -1, -1, 273, 274, 275, 276, -1, -1,
-1, -1, -1, 302, -1, -1, 305, -1, -1, -1,
289, 290, 311, -1, -1, -1, 262, -1, -1, -1,
266, 267, 268, 302, -1, 324, 305, 273, 274, 275,
276, -1, 311, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 288, -1, -1, 324, -1, -1, 262, -1,
-1, -1, 266, 267, 268, -1, -1, -1, 357, 273,
274, 275, 276, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 288, 374, -1, -1, 357, -1,
-1, -1, 381, -1, -1, -1, -1, -1, -1, 335,
336, 337, 338, 339, 262, 374, -1, -1, -1, 267,
268, 262, 381, -1, -1, 273, 267, 268, 276, -1,
-1, 357, -1, -1, -1, 276, -1, 363, -1, -1,
288, 335, 336, 337, 338, 339, -1, 288, 374, 375,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 357, -1, -1, -1, -1, -1, 363,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
374, 375, -1, -1, -1, -1, -1, 335, 336, 337,
338, 339, -1, -1, 335, 336, 337, 338, 339, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 269, 357,
-1, -1, -1, -1, -1, 363, 357, 278, 279, -1,
281, 282, 363, -1, -1, -1, 374, 375, -1, -1,
-1, 292, -1, 374, 375, -1, -1, 298, 299, -1,
-1, 302, 303, 304, -1, -1, -1, 308, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 318, -1, -1,
-1, -1, -1, -1, -1, 326, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 340,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 352, -1, -1, -1, -1, 357, -1, -1, -1,
-1, 362, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 375, -1, -1, -1, -1, -1,
-1, 382, 383,
};
#define YYFINAL 2
#ifndef YYDEBUG
#define YYDEBUG 0
#endif
#define YYMAXTOKEN 386
#define YYUNDFTOKEN 557
#define YYTRANSLATE(a) ((a) > YYMAXTOKEN ? YYUNDFTOKEN : (a))
#if YYDEBUG
static const char *const pfctlyname[] = {
"end-of-file",0,0,0,0,0,0,0,0,0,"'\\n'",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,"'!'",0,0,0,0,0,0,"'('","')'",0,0,"','","'-'",0,"'/'",0,0,0,0,0,0,0,0,0,0,0,
0,"'<'","'='","'>'",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"'{'",0,"'}'",0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,"PASS","BLOCK","SCRUB","RETURN","IN","OS","OUT","LOG","QUICK",
"ON","FROM","TO","FLAGS","RETURNRST","RETURNICMP","RETURNICMP6","PROTO","INET",
"INET6","ALL","ANY","ICMPTYPE","ICMP6TYPE","CODE","KEEP","MODULATE","STATE",
"PORT","RDR","NAT","BINAT","ARROW","NODF","MINTTL","ERROR","ALLOWOPTS",
"FASTROUTE","FILENAME","ROUTETO","DUPTO","REPLYTO","NO","LABEL","NOROUTE",
"URPFFAILED","FRAGMENT","USER","GROUP","MAXMSS","MAXIMUM","TTL","TOS","DROP",
"TABLE","REASSEMBLE","FRAGDROP","FRAGCROP","ANCHOR","NATANCHOR","RDRANCHOR",
"BINATANCHOR","SET","OPTIMIZATION","TIMEOUT","LIMIT","LOGINTERFACE",
"BLOCKPOLICY","RANDOMID","REQUIREORDER","SYNPROXY","FINGERPRINTS","NOSYNC",
"DEBUG","SKIP","HOSTID","ANTISPOOF","FOR","INCLUDE","BITMASK","RANDOM",
"SOURCEHASH","ROUNDROBIN","STATICPORT","PROBABILITY","ALTQ","CBQ","CODEL",
"PRIQ","HFSC","FAIRQ","BANDWIDTH","TBRSIZE","LINKSHARE","REALTIME","UPPERLIMIT",
"QUEUE","PRIORITY","QLIMIT","HOGS","BUCKETS","RTABLE","TARGET","INTERVAL",
"LOAD","RULESET_OPTIMIZATION","PRIO","STICKYADDRESS","MAXSRCSTATES",
"MAXSRCNODES","SOURCETRACK","GLOBAL","RULE","MAXSRCCONN","MAXSRCCONNRATE",
"OVERLOAD","FLUSH","SLOPPY","TAGGED","TAG","IFBOUND","FLOATING","STATEPOLICY",
"STATEDEFAULTS","ROUTE","SETTOS","DIVERTTO","DIVERTREPLY","STRING","NUMBER",
"PORTBINARY",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"illegal-symbol",
};
static const char *const pfctlyrule[] = {
"$accept : ruleset",
"ruleset :",
"ruleset : ruleset include '\\n'",
"ruleset : ruleset '\\n'",
"ruleset : ruleset option '\\n'",
"ruleset : ruleset scrubrule '\\n'",
"ruleset : ruleset natrule '\\n'",
"ruleset : ruleset binatrule '\\n'",
"ruleset : ruleset pfrule '\\n'",
"ruleset : ruleset anchorrule '\\n'",
"ruleset : ruleset loadrule '\\n'",
"ruleset : ruleset altqif '\\n'",
"ruleset : ruleset queuespec '\\n'",
"ruleset : ruleset varset '\\n'",
"ruleset : ruleset antispoof '\\n'",
"ruleset : ruleset tabledef '\\n'",
"ruleset : '{' fakeanchor '}' '\\n'",
"ruleset : ruleset error '\\n'",
"include : INCLUDE STRING",
"fakeanchor : fakeanchor '\\n'",
"fakeanchor : fakeanchor anchorrule '\\n'",
"fakeanchor : fakeanchor binatrule '\\n'",
"fakeanchor : fakeanchor natrule '\\n'",
"fakeanchor : fakeanchor pfrule '\\n'",
"fakeanchor : fakeanchor error '\\n'",
"optimizer : string",
"option : SET OPTIMIZATION STRING",
"option : SET RULESET_OPTIMIZATION optimizer",
"option : SET TIMEOUT timeout_spec",
"option : SET TIMEOUT '{' optnl timeout_list '}'",
"option : SET LIMIT limit_spec",
"option : SET LIMIT '{' optnl limit_list '}'",
"option : SET LOGINTERFACE stringall",
"option : SET HOSTID number",
"option : SET BLOCKPOLICY DROP",
"option : SET BLOCKPOLICY RETURN",
"option : SET REQUIREORDER yesno",
"option : SET FINGERPRINTS STRING",
"option : SET STATEPOLICY statelock",
"option : SET DEBUG STRING",
"option : SET SKIP interface",
"option : SET STATEDEFAULTS state_opt_list",
"stringall : STRING",
"stringall : ALL",
"string : STRING string",
"string : STRING",
"varstring : numberstring varstring",
"varstring : numberstring",
"numberstring : NUMBER",
"numberstring : STRING",
"varset : STRING '=' varstring",
"anchorname : STRING",
"anchorname :",
"pfa_anchorlist :",
"pfa_anchorlist : pfa_anchorlist '\\n'",
"pfa_anchorlist : pfa_anchorlist pfrule '\\n'",
"pfa_anchorlist : pfa_anchorlist anchorrule '\\n'",
"$$1 :",
"pfa_anchor : '{' $$1 '\\n' pfa_anchorlist '}'",
"pfa_anchor :",
"anchorrule : ANCHOR anchorname dir quick interface af proto fromto filter_opts pfa_anchor",
"anchorrule : NATANCHOR string interface af proto fromto rtable",
"anchorrule : RDRANCHOR string interface af proto fromto rtable",
"anchorrule : BINATANCHOR string interface af proto fromto rtable",
"loadrule : LOAD ANCHOR string FROM string",
"scrubaction : no SCRUB",
"scrubrule : scrubaction dir logquick interface af proto fromto scrub_opts",
"$$2 :",
"scrub_opts : $$2 scrub_opts_l",
"scrub_opts :",
"scrub_opts_l : scrub_opts_l scrub_opt",
"scrub_opts_l : scrub_opt",
"scrub_opt : NODF",
"scrub_opt : MINTTL NUMBER",
"scrub_opt : MAXMSS NUMBER",
"scrub_opt : SETTOS tos",
"scrub_opt : fragcache",
"scrub_opt : REASSEMBLE STRING",
"scrub_opt : RANDOMID",
"scrub_opt : RTABLE NUMBER",
"scrub_opt : not TAGGED string",
"fragcache : FRAGMENT REASSEMBLE",
"fragcache : FRAGMENT FRAGCROP",
"fragcache : FRAGMENT FRAGDROP",
"antispoof : ANTISPOOF logquick antispoof_ifspc af antispoof_opts",
"antispoof_ifspc : FOR antispoof_if",
"antispoof_ifspc : FOR '{' optnl antispoof_iflst '}'",
"antispoof_iflst : antispoof_if optnl",
"antispoof_iflst : antispoof_iflst comma antispoof_if optnl",
"antispoof_if : if_item",
"antispoof_if : '(' if_item ')'",
"$$3 :",
"antispoof_opts : $$3 antispoof_opts_l",
"antispoof_opts :",
"antispoof_opts_l : antispoof_opts_l antispoof_opt",
"antispoof_opts_l : antispoof_opt",
"antispoof_opt : label",
"antispoof_opt : RTABLE NUMBER",
"not : '!'",
"not :",
"tabledef : TABLE '<' STRING '>' table_opts",
"$$4 :",
"table_opts : $$4 table_opts_l",
"table_opts :",
"table_opts_l : table_opts_l table_opt",
"table_opts_l : table_opt",
"table_opt : STRING",
"table_opt : '{' optnl '}'",
"table_opt : '{' optnl host_list '}'",
"table_opt : FILENAME STRING",
"altqif : ALTQ interface queue_opts QUEUE qassign",
"queuespec : QUEUE STRING interface queue_opts qassign",
"$$5 :",
"queue_opts : $$5 queue_opts_l",
"queue_opts :",
"queue_opts_l : queue_opts_l queue_opt",
"queue_opts_l : queue_opt",
"queue_opt : BANDWIDTH bandwidth",
"queue_opt : PRIORITY NUMBER",
"queue_opt : QLIMIT NUMBER",
"queue_opt : scheduler",
"queue_opt : TBRSIZE NUMBER",
"bandwidth : STRING",
"bandwidth : NUMBER",
"scheduler : CBQ",
"scheduler : CBQ '(' cbqflags_list ')'",
"scheduler : PRIQ",
"scheduler : PRIQ '(' priqflags_list ')'",
"scheduler : HFSC",
"scheduler : HFSC '(' hfsc_opts ')'",
"scheduler : FAIRQ",
"scheduler : FAIRQ '(' fairq_opts ')'",
"scheduler : CODEL",
"scheduler : CODEL '(' codel_opts ')'",
"cbqflags_list : cbqflags_item",
"cbqflags_list : cbqflags_list comma cbqflags_item",
"cbqflags_item : STRING",
"priqflags_list : priqflags_item",
"priqflags_list : priqflags_list comma priqflags_item",
"priqflags_item : STRING",
"$$6 :",
"hfsc_opts : $$6 hfscopts_list",
"hfscopts_list : hfscopts_item",
"hfscopts_list : hfscopts_list comma hfscopts_item",
"hfscopts_item : LINKSHARE bandwidth",
"hfscopts_item : LINKSHARE '(' bandwidth comma NUMBER comma bandwidth ')'",
"hfscopts_item : REALTIME bandwidth",
"hfscopts_item : REALTIME '(' bandwidth comma NUMBER comma bandwidth ')'",
"hfscopts_item : UPPERLIMIT bandwidth",
"hfscopts_item : UPPERLIMIT '(' bandwidth comma NUMBER comma bandwidth ')'",
"hfscopts_item : STRING",
"$$7 :",
"fairq_opts : $$7 fairqopts_list",
"fairqopts_list : fairqopts_item",
"fairqopts_list : fairqopts_list comma fairqopts_item",
"fairqopts_item : LINKSHARE bandwidth",
"fairqopts_item : LINKSHARE '(' bandwidth number bandwidth ')'",
"fairqopts_item : HOGS bandwidth",
"fairqopts_item : BUCKETS number",
"fairqopts_item : STRING",
"$$8 :",
"codel_opts : $$8 codelopts_list",
"codelopts_list : codelopts_item",
"codelopts_list : codelopts_list comma codelopts_item",
"codelopts_item : INTERVAL number",
"codelopts_item : TARGET number",
"codelopts_item : STRING",
"qassign :",
"qassign : qassign_item",
"qassign : '{' optnl qassign_list '}'",
"qassign_list : qassign_item optnl",
"qassign_list : qassign_list comma qassign_item optnl",
"qassign_item : STRING",
"pfrule : action dir logquick interface route af proto fromto filter_opts",
"$$9 :",
"filter_opts : $$9 filter_opts_l",
"filter_opts :",
"filter_opts_l : filter_opts_l filter_opt",
"filter_opts_l : filter_opt",
"filter_opt : USER uids",
"filter_opt : GROUP gids",
"filter_opt : flags",
"filter_opt : icmpspec",
"filter_opt : PRIO NUMBER",
"filter_opt : TOS tos",
"filter_opt : keep",
"filter_opt : FRAGMENT",
"filter_opt : ALLOWOPTS",
"filter_opt : label",
"filter_opt : qname",
"filter_opt : TAG string",
"filter_opt : not TAGGED string",
"filter_opt : PROBABILITY probability",
"filter_opt : RTABLE NUMBER",
"filter_opt : DIVERTTO portplain",
"filter_opt : DIVERTTO STRING PORT portplain",
"filter_opt : DIVERTREPLY",
"filter_opt : filter_sets",
"filter_sets : SET '(' filter_sets_l ')'",
"filter_sets : SET filter_set",
"filter_sets_l : filter_sets_l comma filter_set",
"filter_sets_l : filter_set",
"filter_set : prio",
"prio : PRIO NUMBER",
"prio : PRIO '(' NUMBER comma NUMBER ')'",
"probability : STRING",
"probability : NUMBER",
"action : PASS",
"action : BLOCK blockspec",
"blockspec :",
"blockspec : DROP",
"blockspec : RETURNRST",
"blockspec : RETURNRST '(' TTL NUMBER ')'",
"blockspec : RETURNICMP",
"blockspec : RETURNICMP6",
"blockspec : RETURNICMP '(' reticmpspec ')'",
"blockspec : RETURNICMP6 '(' reticmp6spec ')'",
"blockspec : RETURNICMP '(' reticmpspec comma reticmp6spec ')'",
"blockspec : RETURN",
"reticmpspec : STRING",
"reticmpspec : NUMBER",
"reticmp6spec : STRING",
"reticmp6spec : NUMBER",
"dir :",
"dir : IN",
"dir : OUT",
"quick :",
"quick : QUICK",
"logquick :",
"logquick : log",
"logquick : QUICK",
"logquick : log QUICK",
"logquick : QUICK log",
"log : LOG",
"log : LOG '(' logopts ')'",
"logopts : logopt",
"logopts : logopts comma logopt",
"logopt : ALL",
"logopt : USER",
"logopt : GROUP",
"logopt : TO string",
"interface :",
"interface : ON if_item_not",
"interface : ON '{' optnl if_list '}'",
"if_list : if_item_not optnl",
"if_list : if_list comma if_item_not optnl",
"if_item_not : not if_item",
"if_item : STRING",
"af :",
"af : INET",
"af : INET6",
"proto :",
"proto : PROTO proto_item",
"proto : PROTO '{' optnl proto_list '}'",
"proto_list : proto_item optnl",
"proto_list : proto_list comma proto_item optnl",
"proto_item : protoval",
"protoval : STRING",
"protoval : NUMBER",
"fromto : ALL",
"fromto : from os to",
"os :",
"os : OS xos",
"os : OS '{' optnl os_list '}'",
"xos : STRING",
"os_list : xos optnl",
"os_list : os_list comma xos optnl",
"from :",
"from : FROM ipportspec",
"to :",
"to : TO ipportspec",
"ipportspec : ipspec",
"ipportspec : ipspec PORT portspec",
"ipportspec : PORT portspec",
"optnl : '\\n' optnl",
"optnl :",
"ipspec : ANY",
"ipspec : xhost",
"ipspec : '{' optnl host_list '}'",
"toipspec : TO ipspec",
"toipspec :",
"host_list : ipspec optnl",
"host_list : host_list comma ipspec optnl",
"xhost : not host",
"xhost : not NOROUTE",
"xhost : not URPFFAILED",
"host : STRING",
"host : STRING '-' STRING",
"host : STRING '/' NUMBER",
"host : NUMBER '/' NUMBER",
"host : dynaddr",
"host : dynaddr '/' NUMBER",
"host : '<' STRING '>'",
"number : NUMBER",
"number : STRING",
"dynaddr : '(' STRING ')'",
"portspec : port_item",
"portspec : '{' optnl port_list '}'",
"port_list : port_item optnl",
"port_list : port_list comma port_item optnl",
"port_item : portrange",
"port_item : unaryop portrange",
"port_item : portrange PORTBINARY portrange",
"portplain : numberstring",
"portrange : numberstring",
"uids : uid_item",
"uids : '{' optnl uid_list '}'",
"uid_list : uid_item optnl",
"uid_list : uid_list comma uid_item optnl",
"uid_item : uid",
"uid_item : unaryop uid",
"uid_item : uid PORTBINARY uid",
"uid : STRING",
"uid : NUMBER",
"gids : gid_item",
"gids : '{' optnl gid_list '}'",
"gid_list : gid_item optnl",
"gid_list : gid_list comma gid_item optnl",
"gid_item : gid",
"gid_item : unaryop gid",
"gid_item : gid PORTBINARY gid",
"gid : STRING",
"gid : NUMBER",
"flag : STRING",
"flags : FLAGS flag '/' flag",
"flags : FLAGS '/' flag",
"flags : FLAGS ANY",
"icmpspec : ICMPTYPE icmp_item",
"icmpspec : ICMPTYPE '{' optnl icmp_list '}'",
"icmpspec : ICMP6TYPE icmp6_item",
"icmpspec : ICMP6TYPE '{' optnl icmp6_list '}'",
"icmp_list : icmp_item optnl",
"icmp_list : icmp_list comma icmp_item optnl",
"icmp6_list : icmp6_item optnl",
"icmp6_list : icmp6_list comma icmp6_item optnl",
"icmp_item : icmptype",
"icmp_item : icmptype CODE STRING",
"icmp_item : icmptype CODE NUMBER",
"icmp6_item : icmp6type",
"icmp6_item : icmp6type CODE STRING",
"icmp6_item : icmp6type CODE NUMBER",
"icmptype : STRING",
"icmptype : NUMBER",
"icmp6type : STRING",
"icmp6type : NUMBER",
"tos : STRING",
"tos : NUMBER",
"sourcetrack : SOURCETRACK",
"sourcetrack : SOURCETRACK GLOBAL",
"sourcetrack : SOURCETRACK RULE",
"statelock : IFBOUND",
"statelock : FLOATING",
"keep : NO STATE",
"keep : KEEP STATE state_opt_spec",
"keep : MODULATE STATE state_opt_spec",
"keep : SYNPROXY STATE state_opt_spec",
"flush :",
"flush : FLUSH",
"flush : FLUSH GLOBAL",
"state_opt_spec : '(' state_opt_list ')'",
"state_opt_spec :",
"state_opt_list : state_opt_item",
"state_opt_list : state_opt_list comma state_opt_item",
"state_opt_item : MAXIMUM NUMBER",
"state_opt_item : NOSYNC",
"state_opt_item : MAXSRCSTATES NUMBER",
"state_opt_item : MAXSRCCONN NUMBER",
"state_opt_item : MAXSRCCONNRATE NUMBER '/' NUMBER",
"state_opt_item : OVERLOAD '<' STRING '>' flush",
"state_opt_item : MAXSRCNODES NUMBER",
"state_opt_item : sourcetrack",
"state_opt_item : statelock",
"state_opt_item : SLOPPY",
"state_opt_item : STRING NUMBER",
"label : LABEL STRING",
"qname : QUEUE STRING",
"qname : QUEUE '(' STRING ')'",
"qname : QUEUE '(' STRING comma STRING ')'",
"no :",
"no : NO",
"portstar : numberstring",
"redirspec : host",
"redirspec : '{' optnl redir_host_list '}'",
"redir_host_list : host optnl",
"redir_host_list : redir_host_list comma host optnl",
"redirpool :",
"redirpool : ARROW redirspec",
"redirpool : ARROW redirspec PORT portstar",
"hashkey :",
"hashkey : string",
"$$10 :",
"pool_opts : $$10 pool_opts_l",
"pool_opts :",
"pool_opts_l : pool_opts_l pool_opt",
"pool_opts_l : pool_opt",
"pool_opt : BITMASK",
"pool_opt : RANDOM",
"pool_opt : SOURCEHASH hashkey",
"pool_opt : ROUNDROBIN",
"pool_opt : STATICPORT",
"pool_opt : STICKYADDRESS",
"redirection :",
"redirection : ARROW host",
"redirection : ARROW host PORT portstar",
"natpasslog :",
"natpasslog : PASS",
"natpasslog : PASS log",
"natpasslog : log",
"nataction : no NAT natpasslog",
"nataction : no RDR natpasslog",
"natrule : nataction interface af proto fromto tag tagged rtable redirpool pool_opts",
"binatrule : no BINAT natpasslog interface af proto FROM host toipspec tag tagged rtable redirection",
"tag :",
"tag : TAG STRING",
"tagged :",
"tagged : not TAGGED string",
"rtable :",
"rtable : RTABLE NUMBER",
"route_host : STRING",
"route_host : '(' STRING host ')'",
"route_host_list : route_host optnl",
"route_host_list : route_host_list comma route_host optnl",
"routespec : route_host",
"routespec : '{' optnl route_host_list '}'",
"route :",
"route : FASTROUTE",
"route : ROUTETO routespec pool_opts",
"route : REPLYTO routespec pool_opts",
"route : DUPTO routespec pool_opts",
"timeout_spec : STRING NUMBER",
"timeout_spec : INTERVAL NUMBER",
"timeout_list : timeout_list comma timeout_spec optnl",
"timeout_list : timeout_spec optnl",
"limit_spec : STRING NUMBER",
"limit_list : limit_list comma limit_spec optnl",
"limit_list : limit_spec optnl",
"comma : ','",
"comma :",
"yesno : NO",
"yesno : STRING",
"unaryop : '='",
"unaryop : '!' '='",
"unaryop : '<' '='",
"unaryop : '<'",
"unaryop : '>' '='",
"unaryop : '>'",
};
#endif
int yydebug;
int yynerrs;
int yyerrflag;
int yychar;
YYSTYPE yyval;
YYSTYPE yylval;
/* define the initial stack-sizes */
#ifdef YYSTACKSIZE
#undef YYMAXDEPTH
#define YYMAXDEPTH YYSTACKSIZE
#else
#ifdef YYMAXDEPTH
#define YYSTACKSIZE YYMAXDEPTH
#else
#define YYSTACKSIZE 10000
#define YYMAXDEPTH 10000
#endif
#endif
#define YYINITSTACKSIZE 200
typedef struct {
unsigned stacksize;
YYINT *s_base;
YYINT *s_mark;
YYINT *s_last;
YYSTYPE *l_base;
YYSTYPE *l_mark;
} YYSTACKDATA;
/* variables for the parser stack */
static YYSTACKDATA yystack;
#line 4545 "../../freebsd/sbin/pfctl/parse.y"
#ifdef __rtems__
RTEMS_LINKER_RWSET_CONTENT(bsd_prog_pfctl, extern YYSTYPE pfctlyval);
RTEMS_LINKER_RWSET_CONTENT(bsd_prog_pfctl, extern YYSTYPE pfctlylval);
RTEMS_LINKER_RWSET_CONTENT(bsd_prog_pfctl, static YYSTACKDATA yystack);
#endif /* __rtems__ */
int
yyerror(const char *fmt, ...)
{
va_list ap;
file->errors++;
va_start(ap, fmt);
fprintf(stderr, "%s:%d: ", file->name, yylval.lineno);
vfprintf(stderr, fmt, ap);
fprintf(stderr, "\n");
va_end(ap);
return (0);
}
int
disallow_table(struct node_host *h, const char *fmt)
{
for (; h != NULL; h = h->next)
if (h->addr.type == PF_ADDR_TABLE) {
yyerror(fmt, h->addr.v.tblname);
return (1);
}
return (0);
}
int
disallow_urpf_failed(struct node_host *h, const char *fmt)
{
for (; h != NULL; h = h->next)
if (h->addr.type == PF_ADDR_URPFFAILED) {
yyerror(fmt);
return (1);
}
return (0);
}
int
disallow_alias(struct node_host *h, const char *fmt)
{
for (; h != NULL; h = h->next)
if (DYNIF_MULTIADDR(h->addr)) {
yyerror(fmt, h->addr.v.tblname);
return (1);
}
return (0);
}
int
rule_consistent(struct pf_rule *r, int anchor_call)
{
int problems = 0;
switch (r->action) {
case PF_PASS:
case PF_DROP:
case PF_SCRUB:
case PF_NOSCRUB:
problems = filter_consistent(r, anchor_call);
break;
case PF_NAT:
case PF_NONAT:
problems = nat_consistent(r);
break;
case PF_RDR:
case PF_NORDR:
problems = rdr_consistent(r);
break;
case PF_BINAT:
case PF_NOBINAT:
default:
break;
}
return (problems);
}
int
filter_consistent(struct pf_rule *r, int anchor_call)
{
int problems = 0;
if (r->proto != IPPROTO_TCP && r->proto != IPPROTO_UDP &&
(r->src.port_op || r->dst.port_op)) {
yyerror("port only applies to tcp/udp");
problems++;
}
if (r->proto != IPPROTO_ICMP && r->proto != IPPROTO_ICMPV6 &&
(r->type || r->code)) {
yyerror("icmp-type/code only applies to icmp");
problems++;
}
if (!r->af && (r->type || r->code)) {
yyerror("must indicate address family with icmp-type/code");
problems++;
}
if (r->overload_tblname[0] &&
r->max_src_conn == 0 && r->max_src_conn_rate.seconds == 0) {
yyerror("'overload' requires 'max-src-conn' "
"or 'max-src-conn-rate'");
problems++;
}
if ((r->proto == IPPROTO_ICMP && r->af == AF_INET6) ||
(r->proto == IPPROTO_ICMPV6 && r->af == AF_INET)) {
yyerror("proto %s doesn't match address family %s",
r->proto == IPPROTO_ICMP ? "icmp" : "icmp6",
r->af == AF_INET ? "inet" : "inet6");
problems++;
}
if (r->allow_opts && r->action != PF_PASS) {
yyerror("allow-opts can only be specified for pass rules");
problems++;
}
if (r->rule_flag & PFRULE_FRAGMENT && (r->src.port_op ||
r->dst.port_op || r->flagset || r->type || r->code)) {
yyerror("fragments can be filtered only on IP header fields");
problems++;
}
if (r->rule_flag & PFRULE_RETURNRST && r->proto != IPPROTO_TCP) {
yyerror("return-rst can only be applied to TCP rules");
problems++;
}
if (r->max_src_nodes && !(r->rule_flag & PFRULE_RULESRCTRACK)) {
yyerror("max-src-nodes requires 'source-track rule'");
problems++;
}
if (r->action == PF_DROP && r->keep_state) {
yyerror("keep state on block rules doesn't make sense");
problems++;
}
if (r->rule_flag & PFRULE_STATESLOPPY &&
(r->keep_state == PF_STATE_MODULATE ||
r->keep_state == PF_STATE_SYNPROXY)) {
yyerror("sloppy state matching cannot be used with "
"synproxy state or modulate state");
problems++;
}
return (-problems);
}
int
nat_consistent(struct pf_rule *r)
{
return (0); /* yeah! */
}
int
rdr_consistent(struct pf_rule *r)
{
int problems = 0;
if (r->proto != IPPROTO_TCP && r->proto != IPPROTO_UDP) {
if (r->src.port_op) {
yyerror("src port only applies to tcp/udp");
problems++;
}
if (r->dst.port_op) {
yyerror("dst port only applies to tcp/udp");
problems++;
}
if (r->rpool.proxy_port[0]) {
yyerror("rpool port only applies to tcp/udp");
problems++;
}
}
if (r->dst.port_op &&
r->dst.port_op != PF_OP_EQ && r->dst.port_op != PF_OP_RRG) {
yyerror("invalid port operator for rdr destination port");
problems++;
}
return (-problems);
}
int
process_tabledef(char *name, struct table_opts *opts)
{
struct pfr_buffer ab;
struct node_tinit *ti;
bzero(&ab, sizeof(ab));
ab.pfrb_type = PFRB_ADDRS;
SIMPLEQ_FOREACH(ti, &opts->init_nodes, entries) {
if (ti->file)
if (pfr_buf_load(&ab, ti->file, 0, append_addr)) {
if (errno)
yyerror("cannot load \"%s\": %s",
ti->file, strerror(errno));
else
yyerror("file \"%s\" contains bad data",
ti->file);
goto _error;
}
if (ti->host)
if (append_addr_host(&ab, ti->host, 0, 0)) {
yyerror("cannot create address buffer: %s",
strerror(errno));
goto _error;
}
}
if (pf->opts & PF_OPT_VERBOSE)
print_tabledef(name, opts->flags, opts->init_addr,
&opts->init_nodes);
if (!(pf->opts & PF_OPT_NOACTION) &&
pfctl_define_table(name, opts->flags, opts->init_addr,
pf->anchor->name, &ab, pf->anchor->ruleset.tticket)) {
yyerror("cannot define table %s: %s", name,
pfr_strerror(errno));
goto _error;
}
pf->tdirty = 1;
pfr_buf_clear(&ab);
return (0);
_error:
pfr_buf_clear(&ab);
return (-1);
}
struct keywords {
const char *k_name;
int k_val;
};
/* macro gore, but you should've seen the prior indentation nightmare... */
#define FREE_LIST(T,r) \
do { \
T *p, *node = r; \
while (node != NULL) { \
p = node; \
node = node->next; \
free(p); \
} \
} while (0)
#define LOOP_THROUGH(T,n,r,C) \
do { \
T *n; \
if (r == NULL) { \
r = calloc(1, sizeof(T)); \
if (r == NULL) \
err(1, "LOOP: calloc"); \
r->next = NULL; \
} \
n = r; \
while (n != NULL) { \
do { \
C; \
} while (0); \
n = n->next; \
} \
} while (0)
void
expand_label_str(char *label, size_t len, const char *srch, const char *repl)
{
char *tmp;
char *p, *q;
if ((tmp = calloc(1, len)) == NULL)
err(1, "expand_label_str: calloc");
p = q = label;
while ((q = strstr(p, srch)) != NULL) {
*q = '\0';
if ((strlcat(tmp, p, len) >= len) ||
(strlcat(tmp, repl, len) >= len))
errx(1, "expand_label: label too long");
q += strlen(srch);
p = q;
}
if (strlcat(tmp, p, len) >= len)
errx(1, "expand_label: label too long");
strlcpy(label, tmp, len); /* always fits */
free(tmp);
}
void
expand_label_if(const char *name, char *label, size_t len, const char *ifname)
{
if (strstr(label, name) != NULL) {
if (!*ifname)
expand_label_str(label, len, name, "any");
else
expand_label_str(label, len, name, ifname);
}
}
void
expand_label_addr(const char *name, char *label, size_t len, sa_family_t af,
struct node_host *h)
{
char tmp[64], tmp_not[66];
if (strstr(label, name) != NULL) {
switch (h->addr.type) {
case PF_ADDR_DYNIFTL:
snprintf(tmp, sizeof(tmp), "(%s)", h->addr.v.ifname);
break;
case PF_ADDR_TABLE:
snprintf(tmp, sizeof(tmp), "<%s>", h->addr.v.tblname);
break;
case PF_ADDR_NOROUTE:
snprintf(tmp, sizeof(tmp), "no-route");
break;
case PF_ADDR_URPFFAILED:
snprintf(tmp, sizeof(tmp), "urpf-failed");
break;
case PF_ADDR_ADDRMASK:
if (!af || (PF_AZERO(&h->addr.v.a.addr, af) &&
PF_AZERO(&h->addr.v.a.mask, af)))
snprintf(tmp, sizeof(tmp), "any");
else {
char a[48];
int bits;
if (inet_ntop(af, &h->addr.v.a.addr, a,
sizeof(a)) == NULL)
snprintf(tmp, sizeof(tmp), "?");
else {
bits = unmask(&h->addr.v.a.mask, af);
if ((af == AF_INET && bits < 32) ||
(af == AF_INET6 && bits < 128))
snprintf(tmp, sizeof(tmp),
"%s/%d", a, bits);
else
snprintf(tmp, sizeof(tmp),
"%s", a);
}
}
break;
default:
snprintf(tmp, sizeof(tmp), "?");
break;
}
if (h->not) {
snprintf(tmp_not, sizeof(tmp_not), "! %s", tmp);
expand_label_str(label, len, name, tmp_not);
} else
expand_label_str(label, len, name, tmp);
}
}
void
expand_label_port(const char *name, char *label, size_t len,
struct node_port *port)
{
char a1[6], a2[6], op[13] = "";
if (strstr(label, name) != NULL) {
snprintf(a1, sizeof(a1), "%u", ntohs(port->port[0]));
snprintf(a2, sizeof(a2), "%u", ntohs(port->port[1]));
if (!port->op)
;
else if (port->op == PF_OP_IRG)
snprintf(op, sizeof(op), "%s><%s", a1, a2);
else if (port->op == PF_OP_XRG)
snprintf(op, sizeof(op), "%s<>%s", a1, a2);
else if (port->op == PF_OP_EQ)
snprintf(op, sizeof(op), "%s", a1);
else if (port->op == PF_OP_NE)
snprintf(op, sizeof(op), "!=%s", a1);
else if (port->op == PF_OP_LT)
snprintf(op, sizeof(op), "<%s", a1);
else if (port->op == PF_OP_LE)
snprintf(op, sizeof(op), "<=%s", a1);
else if (port->op == PF_OP_GT)
snprintf(op, sizeof(op), ">%s", a1);
else if (port->op == PF_OP_GE)
snprintf(op, sizeof(op), ">=%s", a1);
expand_label_str(label, len, name, op);
}
}
void
expand_label_proto(const char *name, char *label, size_t len, u_int8_t proto)
{
struct protoent *pe;
char n[4];
if (strstr(label, name) != NULL) {
pe = getprotobynumber(proto);
if (pe != NULL)
expand_label_str(label, len, name, pe->p_name);
else {
snprintf(n, sizeof(n), "%u", proto);
expand_label_str(label, len, name, n);
}
}
}
void
expand_label_nr(const char *name, char *label, size_t len)
{
char n[11];
if (strstr(label, name) != NULL) {
snprintf(n, sizeof(n), "%u", pf->anchor->match);
expand_label_str(label, len, name, n);
}
}
void
expand_label(char *label, size_t len, const char *ifname, sa_family_t af,
struct node_host *src_host, struct node_port *src_port,
struct node_host *dst_host, struct node_port *dst_port,
u_int8_t proto)
{
expand_label_if("$if", label, len, ifname);
expand_label_addr("$srcaddr", label, len, af, src_host);
expand_label_addr("$dstaddr", label, len, af, dst_host);
expand_label_port("$srcport", label, len, src_port);
expand_label_port("$dstport", label, len, dst_port);
expand_label_proto("$proto", label, len, proto);
expand_label_nr("$nr", label, len);
}
int
expand_altq(struct pf_altq *a, struct node_if *interfaces,
struct node_queue *nqueues, struct node_queue_bw bwspec,
struct node_queue_opt *opts)
{
struct pf_altq pa, pb;
char qname[PF_QNAME_SIZE];
struct node_queue *n;
struct node_queue_bw bw;
int errs = 0;
if ((pf->loadopt & PFCTL_FLAG_ALTQ) == 0) {
FREE_LIST(struct node_if, interfaces);
if (nqueues)
FREE_LIST(struct node_queue, nqueues);
return (0);
}
LOOP_THROUGH(struct node_if, interface, interfaces,
memcpy(&pa, a, sizeof(struct pf_altq));
if (strlcpy(pa.ifname, interface->ifname,
sizeof(pa.ifname)) >= sizeof(pa.ifname))
errx(1, "expand_altq: strlcpy");
if (interface->not) {
yyerror("altq on ! <interface> is not supported");
errs++;
} else {
if (eval_pfaltq(pf, &pa, &bwspec, opts))
errs++;
else
if (pfctl_add_altq(pf, &pa))
errs++;
if (pf->opts & PF_OPT_VERBOSE) {
print_altq(&pf->paltq->altq, 0,
&bwspec, opts);
if (nqueues && nqueues->tail) {
printf("queue { ");
LOOP_THROUGH(struct node_queue, queue,
nqueues,
printf("%s ",
queue->queue);
);
printf("}");
}
printf("\n");
}
if (pa.scheduler == ALTQT_CBQ ||
pa.scheduler == ALTQT_HFSC) {
/* now create a root queue */
memset(&pb, 0, sizeof(struct pf_altq));
if (strlcpy(qname, "root_", sizeof(qname)) >=
sizeof(qname))
errx(1, "expand_altq: strlcpy");
if (strlcat(qname, interface->ifname,
sizeof(qname)) >= sizeof(qname))
errx(1, "expand_altq: strlcat");
if (strlcpy(pb.qname, qname,
sizeof(pb.qname)) >= sizeof(pb.qname))
errx(1, "expand_altq: strlcpy");
if (strlcpy(pb.ifname, interface->ifname,
sizeof(pb.ifname)) >= sizeof(pb.ifname))
errx(1, "expand_altq: strlcpy");
pb.qlimit = pa.qlimit;
pb.scheduler = pa.scheduler;
bw.bw_absolute = pa.ifbandwidth;
bw.bw_percent = 0;
if (eval_pfqueue(pf, &pb, &bw, opts))
errs++;
else
if (pfctl_add_altq(pf, &pb))
errs++;
}
LOOP_THROUGH(struct node_queue, queue, nqueues,
n = calloc(1, sizeof(struct node_queue));
if (n == NULL)
err(1, "expand_altq: calloc");
if (pa.scheduler == ALTQT_CBQ ||
pa.scheduler == ALTQT_HFSC)
if (strlcpy(n->parent, qname,
sizeof(n->parent)) >=
sizeof(n->parent))
errx(1, "expand_altq: strlcpy");
if (strlcpy(n->queue, queue->queue,
sizeof(n->queue)) >= sizeof(n->queue))
errx(1, "expand_altq: strlcpy");
if (strlcpy(n->ifname, interface->ifname,
sizeof(n->ifname)) >= sizeof(n->ifname))
errx(1, "expand_altq: strlcpy");
n->scheduler = pa.scheduler;
n->next = NULL;
n->tail = n;
if (queues == NULL)
queues = n;
else {
queues->tail->next = n;
queues->tail = n;
}
);
}
);
FREE_LIST(struct node_if, interfaces);
if (nqueues)
FREE_LIST(struct node_queue, nqueues);
return (errs);
}
int
expand_queue(struct pf_altq *a, struct node_if *interfaces,
struct node_queue *nqueues, struct node_queue_bw bwspec,
struct node_queue_opt *opts)
{
struct node_queue *n, *nq;
struct pf_altq pa;
u_int8_t found = 0;
u_int8_t errs = 0;
if ((pf->loadopt & PFCTL_FLAG_ALTQ) == 0) {
FREE_LIST(struct node_queue, nqueues);
return (0);
}
if (queues == NULL) {
yyerror("queue %s has no parent", a->qname);
FREE_LIST(struct node_queue, nqueues);
return (1);
}
LOOP_THROUGH(struct node_if, interface, interfaces,
LOOP_THROUGH(struct node_queue, tqueue, queues,
if (!strncmp(a->qname, tqueue->queue, PF_QNAME_SIZE) &&
(interface->ifname[0] == 0 ||
(!interface->not && !strncmp(interface->ifname,
tqueue->ifname, IFNAMSIZ)) ||
(interface->not && strncmp(interface->ifname,
tqueue->ifname, IFNAMSIZ)))) {
/* found ourself in queues */
found++;
memcpy(&pa, a, sizeof(struct pf_altq));
if (pa.scheduler != ALTQT_NONE &&
pa.scheduler != tqueue->scheduler) {
yyerror("exactly one scheduler type "
"per interface allowed");
return (1);
}
pa.scheduler = tqueue->scheduler;
/* scheduler dependent error checking */
switch (pa.scheduler) {
case ALTQT_PRIQ:
if (nqueues != NULL) {
yyerror("priq queues cannot "
"have child queues");
return (1);
}
if (bwspec.bw_absolute > 0 ||
bwspec.bw_percent < 100) {
yyerror("priq doesn't take "
"bandwidth");
return (1);
}
break;
default:
break;
}
if (strlcpy(pa.ifname, tqueue->ifname,
sizeof(pa.ifname)) >= sizeof(pa.ifname))
errx(1, "expand_queue: strlcpy");
if (strlcpy(pa.parent, tqueue->parent,
sizeof(pa.parent)) >= sizeof(pa.parent))
errx(1, "expand_queue: strlcpy");
if (eval_pfqueue(pf, &pa, &bwspec, opts))
errs++;
else
if (pfctl_add_altq(pf, &pa))
errs++;
for (nq = nqueues; nq != NULL; nq = nq->next) {
if (!strcmp(a->qname, nq->queue)) {
yyerror("queue cannot have "
"itself as child");
errs++;
continue;
}
n = calloc(1,
sizeof(struct node_queue));
if (n == NULL)
err(1, "expand_queue: calloc");
if (strlcpy(n->parent, a->qname,
sizeof(n->parent)) >=
sizeof(n->parent))
errx(1, "expand_queue strlcpy");
if (strlcpy(n->queue, nq->queue,
sizeof(n->queue)) >=
sizeof(n->queue))
errx(1, "expand_queue strlcpy");
if (strlcpy(n->ifname, tqueue->ifname,
sizeof(n->ifname)) >=
sizeof(n->ifname))
errx(1, "expand_queue strlcpy");
n->scheduler = tqueue->scheduler;
n->next = NULL;
n->tail = n;
if (queues == NULL)
queues = n;
else {
queues->tail->next = n;
queues->tail = n;
}
}
if ((pf->opts & PF_OPT_VERBOSE) && (
(found == 1 && interface->ifname[0] == 0) ||
(found > 0 && interface->ifname[0] != 0))) {
print_queue(&pf->paltq->altq, 0,
&bwspec, interface->ifname[0] != 0,
opts);
if (nqueues && nqueues->tail) {
printf("{ ");
LOOP_THROUGH(struct node_queue,
queue, nqueues,
printf("%s ",
queue->queue);
);
printf("}");
}
printf("\n");
}
}
);
);
FREE_LIST(struct node_queue, nqueues);
FREE_LIST(struct node_if, interfaces);
if (!found) {
yyerror("queue %s has no parent", a->qname);
errs++;
}
if (errs)
return (1);
else
return (0);
}
void
expand_rule(struct pf_rule *r,
struct node_if *interfaces, struct node_host *rpool_hosts,
struct node_proto *protos, struct node_os *src_oses,
struct node_host *src_hosts, struct node_port *src_ports,
struct node_host *dst_hosts, struct node_port *dst_ports,
struct node_uid *uids, struct node_gid *gids, struct node_icmp *icmp_types,
const char *anchor_call)
{
sa_family_t af = r->af;
int added = 0, error = 0;
char ifname[IF_NAMESIZE];
char label[PF_RULE_LABEL_SIZE];
char tagname[PF_TAG_NAME_SIZE];
char match_tagname[PF_TAG_NAME_SIZE];
struct pf_pooladdr *pa;
struct node_host *h;
u_int8_t flags, flagset, keep_state;
if (strlcpy(label, r->label, sizeof(label)) >= sizeof(label))
errx(1, "expand_rule: strlcpy");
if (strlcpy(tagname, r->tagname, sizeof(tagname)) >= sizeof(tagname))
errx(1, "expand_rule: strlcpy");
if (strlcpy(match_tagname, r->match_tagname, sizeof(match_tagname)) >=
sizeof(match_tagname))
errx(1, "expand_rule: strlcpy");
flags = r->flags;
flagset = r->flagset;
keep_state = r->keep_state;
LOOP_THROUGH(struct node_if, interface, interfaces,
LOOP_THROUGH(struct node_proto, proto, protos,
LOOP_THROUGH(struct node_icmp, icmp_type, icmp_types,
LOOP_THROUGH(struct node_host, src_host, src_hosts,
LOOP_THROUGH(struct node_port, src_port, src_ports,
LOOP_THROUGH(struct node_os, src_os, src_oses,
LOOP_THROUGH(struct node_host, dst_host, dst_hosts,
LOOP_THROUGH(struct node_port, dst_port, dst_ports,
LOOP_THROUGH(struct node_uid, uid, uids,
LOOP_THROUGH(struct node_gid, gid, gids,
r->af = af;
/* for link-local IPv6 address, interface must match up */
if ((r->af && src_host->af && r->af != src_host->af) ||
(r->af && dst_host->af && r->af != dst_host->af) ||
(src_host->af && dst_host->af &&
src_host->af != dst_host->af) ||
(src_host->ifindex && dst_host->ifindex &&
src_host->ifindex != dst_host->ifindex) ||
(src_host->ifindex && *interface->ifname &&
src_host->ifindex != if_nametoindex(interface->ifname)) ||
(dst_host->ifindex && *interface->ifname &&
dst_host->ifindex != if_nametoindex(interface->ifname)))
continue;
if (!r->af && src_host->af)
r->af = src_host->af;
else if (!r->af && dst_host->af)
r->af = dst_host->af;
if (*interface->ifname)
strlcpy(r->ifname, interface->ifname,
sizeof(r->ifname));
else if (if_indextoname(src_host->ifindex, ifname))
strlcpy(r->ifname, ifname, sizeof(r->ifname));
else if (if_indextoname(dst_host->ifindex, ifname))
strlcpy(r->ifname, ifname, sizeof(r->ifname));
else
memset(r->ifname, '\0', sizeof(r->ifname));
if (strlcpy(r->label, label, sizeof(r->label)) >=
sizeof(r->label))
errx(1, "expand_rule: strlcpy");
if (strlcpy(r->tagname, tagname, sizeof(r->tagname)) >=
sizeof(r->tagname))
errx(1, "expand_rule: strlcpy");
if (strlcpy(r->match_tagname, match_tagname,
sizeof(r->match_tagname)) >= sizeof(r->match_tagname))
errx(1, "expand_rule: strlcpy");
expand_label(r->label, PF_RULE_LABEL_SIZE, r->ifname, r->af,
src_host, src_port, dst_host, dst_port, proto->proto);
expand_label(r->tagname, PF_TAG_NAME_SIZE, r->ifname, r->af,
src_host, src_port, dst_host, dst_port, proto->proto);
expand_label(r->match_tagname, PF_TAG_NAME_SIZE, r->ifname,
r->af, src_host, src_port, dst_host, dst_port,
proto->proto);
error += check_netmask(src_host, r->af);
error += check_netmask(dst_host, r->af);
r->ifnot = interface->not;
r->proto = proto->proto;
r->src.addr = src_host->addr;
r->src.neg = src_host->not;
r->src.port[0] = src_port->port[0];
r->src.port[1] = src_port->port[1];
r->src.port_op = src_port->op;
r->dst.addr = dst_host->addr;
r->dst.neg = dst_host->not;
r->dst.port[0] = dst_port->port[0];
r->dst.port[1] = dst_port->port[1];
r->dst.port_op = dst_port->op;
r->uid.op = uid->op;
r->uid.uid[0] = uid->uid[0];
r->uid.uid[1] = uid->uid[1];
r->gid.op = gid->op;
r->gid.gid[0] = gid->gid[0];
r->gid.gid[1] = gid->gid[1];
r->type = icmp_type->type;
r->code = icmp_type->code;
if ((keep_state == PF_STATE_MODULATE ||
keep_state == PF_STATE_SYNPROXY) &&
r->proto && r->proto != IPPROTO_TCP)
r->keep_state = PF_STATE_NORMAL;
else
r->keep_state = keep_state;
if (r->proto && r->proto != IPPROTO_TCP) {
r->flags = 0;
r->flagset = 0;
} else {
r->flags = flags;
r->flagset = flagset;
}
if (icmp_type->proto && r->proto != icmp_type->proto) {
yyerror("icmp-type mismatch");
error++;
}
if (src_os && src_os->os) {
r->os_fingerprint = pfctl_get_fingerprint(src_os->os);
if ((pf->opts & PF_OPT_VERBOSE2) &&
r->os_fingerprint == PF_OSFP_NOMATCH)
fprintf(stderr,
"warning: unknown '%s' OS fingerprint\n",
src_os->os);
} else {
r->os_fingerprint = PF_OSFP_ANY;
}
TAILQ_INIT(&r->rpool.list);
for (h = rpool_hosts; h != NULL; h = h->next) {
pa = calloc(1, sizeof(struct pf_pooladdr));
if (pa == NULL)
err(1, "expand_rule: calloc");
pa->addr = h->addr;
if (h->ifname != NULL) {
if (strlcpy(pa->ifname, h->ifname,
sizeof(pa->ifname)) >=
sizeof(pa->ifname))
errx(1, "expand_rule: strlcpy");
} else
pa->ifname[0] = 0;
TAILQ_INSERT_TAIL(&r->rpool.list, pa, entries);
}
if (rule_consistent(r, anchor_call[0]) < 0 || error)
yyerror("skipping rule due to errors");
else {
r->nr = pf->astack[pf->asd]->match++;
pfctl_add_rule(pf, r, anchor_call);
added++;
}
))))))))));
FREE_LIST(struct node_if, interfaces);
FREE_LIST(struct node_proto, protos);
FREE_LIST(struct node_host, src_hosts);
FREE_LIST(struct node_port, src_ports);
FREE_LIST(struct node_os, src_oses);
FREE_LIST(struct node_host, dst_hosts);
FREE_LIST(struct node_port, dst_ports);
FREE_LIST(struct node_uid, uids);
FREE_LIST(struct node_gid, gids);
FREE_LIST(struct node_icmp, icmp_types);
FREE_LIST(struct node_host, rpool_hosts);
if (!added)
yyerror("rule expands to no valid combination");
}
int
expand_skip_interface(struct node_if *interfaces)
{
int errs = 0;
if (!interfaces || (!interfaces->next && !interfaces->not &&
!strcmp(interfaces->ifname, "none"))) {
if (pf->opts & PF_OPT_VERBOSE)
printf("set skip on none\n");
errs = pfctl_set_interface_flags(pf, "", PFI_IFLAG_SKIP, 0);
return (errs);
}
if (pf->opts & PF_OPT_VERBOSE)
printf("set skip on {");
LOOP_THROUGH(struct node_if, interface, interfaces,
if (pf->opts & PF_OPT_VERBOSE)
printf(" %s", interface->ifname);
if (interface->not) {
yyerror("skip on ! <interface> is not supported");
errs++;
} else
errs += pfctl_set_interface_flags(pf,
interface->ifname, PFI_IFLAG_SKIP, 1);
);
if (pf->opts & PF_OPT_VERBOSE)
printf(" }\n");
FREE_LIST(struct node_if, interfaces);
if (errs)
return (1);
else
return (0);
}
#undef FREE_LIST
#undef LOOP_THROUGH
int
check_rulestate(int desired_state)
{
if (require_order && (rulestate > desired_state)) {
yyerror("Rules must be in order: options, normalization, "
"queueing, translation, filtering");
return (1);
}
rulestate = desired_state;
return (0);
}
int
kw_cmp(const void *k, const void *e)
{
return (strcmp(k, ((const struct keywords *)e)->k_name));
}
int
lookup(char *s)
{
/* this has to be sorted always */
static const struct keywords keywords[] = {
{ "all", ALL},
{ "allow-opts", ALLOWOPTS},
{ "altq", ALTQ},
{ "anchor", ANCHOR},
{ "antispoof", ANTISPOOF},
{ "any", ANY},
{ "bandwidth", BANDWIDTH},
{ "binat", BINAT},
{ "binat-anchor", BINATANCHOR},
{ "bitmask", BITMASK},
{ "block", BLOCK},
{ "block-policy", BLOCKPOLICY},
{ "buckets", BUCKETS},
{ "cbq", CBQ},
{ "code", CODE},
{ "codelq", CODEL},
{ "crop", FRAGCROP},
{ "debug", DEBUG},
{ "divert-reply", DIVERTREPLY},
{ "divert-to", DIVERTTO},
{ "drop", DROP},
{ "drop-ovl", FRAGDROP},
{ "dup-to", DUPTO},
{ "fairq", FAIRQ},
{ "fastroute", FASTROUTE},
{ "file", FILENAME},
{ "fingerprints", FINGERPRINTS},
{ "flags", FLAGS},
{ "floating", FLOATING},
{ "flush", FLUSH},
{ "for", FOR},
{ "fragment", FRAGMENT},
{ "from", FROM},
{ "global", GLOBAL},
{ "group", GROUP},
{ "hfsc", HFSC},
{ "hogs", HOGS},
{ "hostid", HOSTID},
{ "icmp-type", ICMPTYPE},
{ "icmp6-type", ICMP6TYPE},
{ "if-bound", IFBOUND},
{ "in", IN},
{ "include", INCLUDE},
{ "inet", INET},
{ "inet6", INET6},
{ "interval", INTERVAL},
{ "keep", KEEP},
{ "label", LABEL},
{ "limit", LIMIT},
{ "linkshare", LINKSHARE},
{ "load", LOAD},
{ "log", LOG},
{ "loginterface", LOGINTERFACE},
{ "max", MAXIMUM},
{ "max-mss", MAXMSS},
{ "max-src-conn", MAXSRCCONN},
{ "max-src-conn-rate", MAXSRCCONNRATE},
{ "max-src-nodes", MAXSRCNODES},
{ "max-src-states", MAXSRCSTATES},
{ "min-ttl", MINTTL},
{ "modulate", MODULATE},
{ "nat", NAT},
{ "nat-anchor", NATANCHOR},
{ "no", NO},
{ "no-df", NODF},
{ "no-route", NOROUTE},
{ "no-sync", NOSYNC},
{ "on", ON},
{ "optimization", OPTIMIZATION},
{ "os", OS},
{ "out", OUT},
{ "overload", OVERLOAD},
{ "pass", PASS},
{ "port", PORT},
{ "prio", PRIO},
{ "priority", PRIORITY},
{ "priq", PRIQ},
{ "probability", PROBABILITY},
{ "proto", PROTO},
{ "qlimit", QLIMIT},
{ "queue", QUEUE},
{ "quick", QUICK},
{ "random", RANDOM},
{ "random-id", RANDOMID},
{ "rdr", RDR},
{ "rdr-anchor", RDRANCHOR},
{ "realtime", REALTIME},
{ "reassemble", REASSEMBLE},
{ "reply-to", REPLYTO},
{ "require-order", REQUIREORDER},
{ "return", RETURN},
{ "return-icmp", RETURNICMP},
{ "return-icmp6", RETURNICMP6},
{ "return-rst", RETURNRST},
{ "round-robin", ROUNDROBIN},
{ "route", ROUTE},
{ "route-to", ROUTETO},
{ "rtable", RTABLE},
{ "rule", RULE},
{ "ruleset-optimization", RULESET_OPTIMIZATION},
{ "scrub", SCRUB},
{ "set", SET},
{ "set-tos", SETTOS},
{ "skip", SKIP},
{ "sloppy", SLOPPY},
{ "source-hash", SOURCEHASH},
{ "source-track", SOURCETRACK},
{ "state", STATE},
{ "state-defaults", STATEDEFAULTS},
{ "state-policy", STATEPOLICY},
{ "static-port", STATICPORT},
{ "sticky-address", STICKYADDRESS},
{ "synproxy", SYNPROXY},
{ "table", TABLE},
{ "tag", TAG},
{ "tagged", TAGGED},
{ "target", TARGET},
{ "tbrsize", TBRSIZE},
{ "timeout", TIMEOUT},
{ "to", TO},
{ "tos", TOS},
{ "ttl", TTL},
{ "upperlimit", UPPERLIMIT},
{ "urpf-failed", URPFFAILED},
{ "user", USER},
};
const struct keywords *p;
p = bsearch(s, keywords, sizeof(keywords)/sizeof(keywords[0]),
sizeof(keywords[0]), kw_cmp);
if (p) {
if (debug > 1)
fprintf(stderr, "%s: %d\n", s, p->k_val);
return (p->k_val);
} else {
if (debug > 1)
fprintf(stderr, "string: %s\n", s);
return (STRING);
}
}
#define MAXPUSHBACK 128
static char *parsebuf;
static int parseindex;
static char pushback_buffer[MAXPUSHBACK];
static int pushback_index = 0;
int
lgetc(int quotec)
{
int c, next;
if (parsebuf) {
/* Read character from the parsebuffer instead of input. */
if (parseindex >= 0) {
c = parsebuf[parseindex++];
if (c != '\0')
return (c);
parsebuf = NULL;
} else
parseindex++;
}
if (pushback_index)
return (pushback_buffer[--pushback_index]);
if (quotec) {
if ((c = getc(file->stream)) == EOF) {
yyerror("reached end of file while parsing quoted string");
if (popfile() == EOF)
return (EOF);
return (quotec);
}
return (c);
}
while ((c = getc(file->stream)) == '\\') {
next = getc(file->stream);
if (next != '\n') {
c = next;
break;
}
yylval.lineno = file->lineno;
file->lineno++;
}
while (c == EOF) {
if (popfile() == EOF)
return (EOF);
c = getc(file->stream);
}
return (c);
}
int
lungetc(int c)
{
if (c == EOF)
return (EOF);
if (parsebuf) {
parseindex--;
if (parseindex >= 0)
return (c);
}
if (pushback_index < MAXPUSHBACK-1)
return (pushback_buffer[pushback_index++] = c);
else
return (EOF);
}
int
findeol(void)
{
int c;
parsebuf = NULL;
/* skip to either EOF or the first real EOL */
while (1) {
if (pushback_index)
c = pushback_buffer[--pushback_index];
else
c = lgetc(0);
if (c == '\n') {
file->lineno++;
break;
}
if (c == EOF)
break;
}
return (ERROR);
}
int
yylex(void)
{
char buf[8096];
char *p, *val;
int quotec, next, c;
int token;
top:
p = buf;
while ((c = lgetc(0)) == ' ' || c == '\t')
; /* nothing */
yylval.lineno = file->lineno;
if (c == '#')
while ((c = lgetc(0)) != '\n' && c != EOF)
; /* nothing */
if (c == '$' && parsebuf == NULL) {
while (1) {
if ((c = lgetc(0)) == EOF)
return (0);
if (p + 1 >= buf + sizeof(buf) - 1) {
yyerror("string too long");
return (findeol());
}
if (isalnum(c) || c == '_') {
*p++ = (char)c;
continue;
}
*p = '\0';
lungetc(c);
break;
}
val = symget(buf);
if (val == NULL) {
yyerror("macro '%s' not defined", buf);
return (findeol());
}
parsebuf = val;
parseindex = 0;
goto top;
}
switch (c) {
case '\'':
case '"':
quotec = c;
while (1) {
if ((c = lgetc(quotec)) == EOF)
return (0);
if (c == '\n') {
file->lineno++;
continue;
} else if (c == '\\') {
if ((next = lgetc(quotec)) == EOF)
return (0);
if (next == quotec || c == ' ' || c == '\t')
c = next;
else if (next == '\n')
continue;
else
lungetc(next);
} else if (c == quotec) {
*p = '\0';
break;
}
if (p + 1 >= buf + sizeof(buf) - 1) {
yyerror("string too long");
return (findeol());
}
*p++ = (char)c;
}
yylval.v.string = strdup(buf);
if (yylval.v.string == NULL)
err(1, "yylex: strdup");
return (STRING);
case '<':
next = lgetc(0);
if (next == '>') {
yylval.v.i = PF_OP_XRG;
return (PORTBINARY);
}
lungetc(next);
break;
case '>':
next = lgetc(0);
if (next == '<') {
yylval.v.i = PF_OP_IRG;
return (PORTBINARY);
}
lungetc(next);
break;
case '-':
next = lgetc(0);
if (next == '>')
return (ARROW);
lungetc(next);
break;
}
#define allowed_to_end_number(x) \
(isspace(x) || x == ')' || x ==',' || x == '/' || x == '}' || x == '=')
if (c == '-' || isdigit(c)) {
do {
*p++ = c;
if ((unsigned)(p-buf) >= sizeof(buf)) {
yyerror("string too long");
return (findeol());
}
} while ((c = lgetc(0)) != EOF && isdigit(c));
lungetc(c);
if (p == buf + 1 && buf[0] == '-')
goto nodigits;
if (c == EOF || allowed_to_end_number(c)) {
const char *errstr = NULL;
*p = '\0';
yylval.v.number = strtonum(buf, LLONG_MIN,
LLONG_MAX, &errstr);
if (errstr) {
yyerror("\"%s\" invalid number: %s",
buf, errstr);
return (findeol());
}
return (NUMBER);
} else {
nodigits:
while (p > buf + 1)
lungetc(*--p);
c = *--p;
if (c == '-')
return (c);
}
}
#define allowed_in_string(x) \
(isalnum(x) || (ispunct(x) && x != '(' && x != ')' && \
x != '{' && x != '}' && x != '<' && x != '>' && \
x != '!' && x != '=' && x != '/' && x != '#' && \
x != ','))
if (isalnum(c) || c == ':' || c == '_') {
do {
*p++ = c;
if ((unsigned)(p-buf) >= sizeof(buf)) {
yyerror("string too long");
return (findeol());
}
} while ((c = lgetc(0)) != EOF && (allowed_in_string(c)));
lungetc(c);
*p = '\0';
if ((token = lookup(buf)) == STRING)
if ((yylval.v.string = strdup(buf)) == NULL)
err(1, "yylex: strdup");
return (token);
}
if (c == '\n') {
yylval.lineno = file->lineno;
file->lineno++;
}
if (c == EOF)
return (0);
return (c);
}
int
check_file_secrecy(int fd, const char *fname)
{
struct stat st;
if (fstat(fd, &st)) {
warn("cannot stat %s", fname);
return (-1);
}
if (st.st_uid != 0 && st.st_uid != getuid()) {
warnx("%s: owner not root or current user", fname);
return (-1);
}
if (st.st_mode & (S_IRWXG | S_IRWXO)) {
warnx("%s: group/world readable/writeable", fname);
return (-1);
}
return (0);
}
struct file *
pushfile(const char *name, int secret)
{
struct file *nfile;
if ((nfile = calloc(1, sizeof(struct file))) == NULL ||
(nfile->name = strdup(name)) == NULL) {
warn("malloc");
return (NULL);
}
if (TAILQ_FIRST(&files) == NULL && strcmp(nfile->name, "-") == 0) {
nfile->stream = stdin;
free(nfile->name);
if ((nfile->name = strdup("stdin")) == NULL) {
warn("strdup");
free(nfile);
return (NULL);
}
} else if ((nfile->stream = fopen(nfile->name, "r")) == NULL) {
warn("%s", nfile->name);
free(nfile->name);
free(nfile);
return (NULL);
} else if (secret &&
check_file_secrecy(fileno(nfile->stream), nfile->name)) {
fclose(nfile->stream);
free(nfile->name);
free(nfile);
return (NULL);
}
nfile->lineno = 1;
TAILQ_INSERT_TAIL(&files, nfile, entry);
return (nfile);
}
int
popfile(void)
{
struct file *prev;
if ((prev = TAILQ_PREV(file, files, entry)) != NULL) {
prev->errors += file->errors;
TAILQ_REMOVE(&files, file, entry);
fclose(file->stream);
free(file->name);
free(file);
file = prev;
return (0);
}
return (EOF);
}
int
parse_config(char *filename, struct pfctl *xpf)
{
int errors = 0;
struct sym *sym;
pf = xpf;
errors = 0;
rulestate = PFCTL_STATE_NONE;
returnicmpdefault = (ICMP_UNREACH << 8) | ICMP_UNREACH_PORT;
returnicmp6default =
(ICMP6_DST_UNREACH << 8) | ICMP6_DST_UNREACH_NOPORT;
blockpolicy = PFRULE_DROP;
require_order = 1;
if ((file = pushfile(filename, 0)) == NULL) {
warn("cannot open the main config file!");
return (-1);
}
yyparse();
errors = file->errors;
popfile();
/* Free macros and check which have not been used. */
while ((sym = TAILQ_FIRST(&symhead))) {
if ((pf->opts & PF_OPT_VERBOSE2) && !sym->used)
fprintf(stderr, "warning: macro '%s' not "
"used\n", sym->nam);
free(sym->nam);
free(sym->val);
TAILQ_REMOVE(&symhead, sym, entry);
free(sym);
}
return (errors ? -1 : 0);
}
int
symset(const char *nam, const char *val, int persist)
{
struct sym *sym;
for (sym = TAILQ_FIRST(&symhead); sym && strcmp(nam, sym->nam);
sym = TAILQ_NEXT(sym, entry))
; /* nothing */
if (sym != NULL) {
if (sym->persist == 1)
return (0);
else {
free(sym->nam);
free(sym->val);
TAILQ_REMOVE(&symhead, sym, entry);
free(sym);
}
}
if ((sym = calloc(1, sizeof(*sym))) == NULL)
return (-1);
sym->nam = strdup(nam);
if (sym->nam == NULL) {
free(sym);
return (-1);
}
sym->val = strdup(val);
if (sym->val == NULL) {
free(sym->nam);
free(sym);
return (-1);
}
sym->used = 0;
sym->persist = persist;
TAILQ_INSERT_TAIL(&symhead, sym, entry);
return (0);
}
int
pfctl_cmdline_symset(char *s)
{
char *sym, *val;
int ret;
if ((val = strrchr(s, '=')) == NULL)
return (-1);
if ((sym = malloc(strlen(s) - strlen(val) + 1)) == NULL)
err(1, "pfctl_cmdline_symset: malloc");
strlcpy(sym, s, strlen(s) - strlen(val) + 1);
ret = symset(sym, val + 1, 1);
free(sym);
return (ret);
}
char *
symget(const char *nam)
{
struct sym *sym;
TAILQ_FOREACH(sym, &symhead, entry)
if (strcmp(nam, sym->nam) == 0) {
sym->used = 1;
return (sym->val);
}
return (NULL);
}
void
mv_rules(struct pf_ruleset *src, struct pf_ruleset *dst)
{
int i;
struct pf_rule *r;
for (i = 0; i < PF_RULESET_MAX; ++i) {
while ((r = TAILQ_FIRST(src->rules[i].active.ptr))
!= NULL) {
TAILQ_REMOVE(src->rules[i].active.ptr, r, entries);
TAILQ_INSERT_TAIL(dst->rules[i].active.ptr, r, entries);
dst->anchor->match++;
}
src->anchor->match = 0;
while ((r = TAILQ_FIRST(src->rules[i].inactive.ptr))
!= NULL) {
TAILQ_REMOVE(src->rules[i].inactive.ptr, r, entries);
TAILQ_INSERT_TAIL(dst->rules[i].inactive.ptr,
r, entries);
}
}
}
void
decide_address_family(struct node_host *n, sa_family_t *af)
{
if (*af != 0 || n == NULL)
return;
*af = n->af;
while ((n = n->next) != NULL) {
if (n->af != *af) {
*af = 0;
return;
}
}
}
void
remove_invalid_hosts(struct node_host **nh, sa_family_t *af)
{
struct node_host *n = *nh, *prev = NULL;
while (n != NULL) {
if (*af && n->af && n->af != *af) {
/* unlink and free n */
struct node_host *next = n->next;
/* adjust tail pointer */
if (n == (*nh)->tail)
(*nh)->tail = prev;
/* adjust previous node's next pointer */
if (prev == NULL)
*nh = next;
else
prev->next = next;
/* free node */
if (n->ifname != NULL)
free(n->ifname);
free(n);
n = next;
} else {
if (n->af && !*af)
*af = n->af;
prev = n;
n = n->next;
}
}
}
int
invalid_redirect(struct node_host *nh, sa_family_t af)
{
if (!af) {
struct node_host *n;
/* tables and dyniftl are ok without an address family */
for (n = nh; n != NULL; n = n->next) {
if (n->addr.type != PF_ADDR_TABLE &&
n->addr.type != PF_ADDR_DYNIFTL) {
yyerror("address family not given and "
"translation address expands to multiple "
"address families");
return (1);
}
}
}
if (nh == NULL) {
yyerror("no translation address with matching address family "
"found.");
return (1);
}
return (0);
}
int
atoul(char *s, u_long *ulvalp)
{
u_long ulval;
char *ep;
errno = 0;
ulval = strtoul(s, &ep, 0);
if (s[0] == '\0' || *ep != '\0')
return (-1);
if (errno == ERANGE && ulval == ULONG_MAX)
return (-1);
*ulvalp = ulval;
return (0);
}
int
getservice(char *n)
{
struct servent *s;
u_long ulval;
if (atoul(n, &ulval) == 0) {
if (ulval > 65535) {
yyerror("illegal port value %lu", ulval);
return (-1);
}
return (htons(ulval));
} else {
s = getservbyname(n, "tcp");
if (s == NULL)
s = getservbyname(n, "udp");
if (s == NULL) {
yyerror("unknown port %s", n);
return (-1);
}
return (s->s_port);
}
}
int
rule_label(struct pf_rule *r, char *s)
{
if (s) {
if (strlcpy(r->label, s, sizeof(r->label)) >=
sizeof(r->label)) {
yyerror("rule label too long (max %d chars)",
sizeof(r->label)-1);
return (-1);
}
}
return (0);
}
u_int16_t
parseicmpspec(char *w, sa_family_t af)
{
const struct icmpcodeent *p;
u_long ulval;
u_int8_t icmptype;
if (af == AF_INET)
icmptype = returnicmpdefault >> 8;
else
icmptype = returnicmp6default >> 8;
if (atoul(w, &ulval) == -1) {
if ((p = geticmpcodebyname(icmptype, w, af)) == NULL) {
yyerror("unknown icmp code %s", w);
return (0);
}
ulval = p->code;
}
if (ulval > 255) {
yyerror("invalid icmp code %lu", ulval);
return (0);
}
return (icmptype << 8 | ulval);
}
int
parseport(char *port, struct range *r, int extensions)
{
char *p = strchr(port, ':');
if (p == NULL) {
if ((r->a = getservice(port)) == -1)
return (-1);
r->b = 0;
r->t = PF_OP_NONE;
return (0);
}
if ((extensions & PPORT_STAR) && !strcmp(p+1, "*")) {
*p = 0;
if ((r->a = getservice(port)) == -1)
return (-1);
r->b = 0;
r->t = PF_OP_IRG;
return (0);
}
if ((extensions & PPORT_RANGE)) {
*p++ = 0;
if ((r->a = getservice(port)) == -1 ||
(r->b = getservice(p)) == -1)
return (-1);
if (r->a == r->b) {
r->b = 0;
r->t = PF_OP_NONE;
} else
r->t = PF_OP_RRG;
return (0);
}
return (-1);
}
int
pfctl_load_anchors(int dev, struct pfctl *pf, struct pfr_buffer *trans)
{
struct loadanchors *la;
TAILQ_FOREACH(la, &loadanchorshead, entries) {
if (pf->opts & PF_OPT_VERBOSE)
fprintf(stderr, "\nLoading anchor %s from %s\n",
la->anchorname, la->filename);
if (pfctl_rules(dev, la->filename, pf->opts, pf->optimize,
la->anchorname, trans) == -1)
return (-1);
}
return (0);
}
int
rt_tableid_max(void)
{
#ifdef __FreeBSD__
int fibs;
size_t l = sizeof(fibs);
if (sysctlbyname("net.fibs", &fibs, &l, NULL, 0) == -1)
fibs = 16; /* XXX RT_MAXFIBS, at least limit it some. */
/*
* As the OpenBSD code only compares > and not >= we need to adjust
* here given we only accept values of 0..n and want to avoid #ifdefs
* in the grammar.
*/
return (fibs - 1);
#else
return (RT_TABLEID_MAX);
#endif
}
#line 4317 "pfctly.tab.c"
#if YYDEBUG
#include <stdio.h> /* needed for printf */
#endif
#include <stdlib.h> /* needed for malloc, etc */
#include <string.h> /* needed for memset */
/* allocate initial stack or double stack size, up to YYMAXDEPTH */
static int yygrowstack(YYSTACKDATA *data)
{
int i;
unsigned newsize;
YYINT *newss;
YYSTYPE *newvs;
if ((newsize = data->stacksize) == 0)
newsize = YYINITSTACKSIZE;
else if (newsize >= YYMAXDEPTH)
return YYENOMEM;
else if ((newsize *= 2) > YYMAXDEPTH)
newsize = YYMAXDEPTH;
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
return YYENOMEM;
data->l_base = newvs;
data->l_mark = newvs + i;
data->stacksize = newsize;
data->s_last = data->s_base + newsize - 1;
return 0;
}
#if YYPURE || defined(YY_NO_LEAKS)
static void yyfreestack(YYSTACKDATA *data)
{
free(data->s_base);
free(data->l_base);
memset(data, 0, sizeof(*data));
}
#else
#define yyfreestack(data) /* nothing */
#endif
#define YYABORT goto yyabort
#define YYREJECT goto yyabort
#define YYACCEPT goto yyaccept
#define YYERROR goto yyerrlab
int
YYPARSE_DECL()
{
int yym, yyn, yystate;
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')
yydebug = yyn - '0';
}
#endif
yynerrs = 0;
yyerrflag = 0;
yychar = YYEMPTY;
yystate = 0;
#if YYPURE
memset(&yystack, 0, sizeof(yystack));
#endif
if (yystack.s_base == NULL && yygrowstack(&yystack) == YYENOMEM) goto yyoverflow;
yystack.s_mark = yystack.s_base;
yystack.l_mark = yystack.l_base;
yystate = 0;
*yystack.s_mark = 0;
yyloop:
if ((yyn = yydefred[yystate]) != 0) goto yyreduce;
if (yychar < 0)
{
if ((yychar = YYLEX) < 0) yychar = YYEOF;
#if YYDEBUG
if (yydebug)
{
yys = yyname[YYTRANSLATE(yychar)];
printf("%sdebug: state %d, reading %d (%s)\n",
YYPREFIX, yystate, yychar, yys);
}
#endif
}
if ((yyn = yysindex[yystate]) && (yyn += yychar) >= 0 &&
yyn <= YYTABLESIZE && yycheck[yyn] == yychar)
{
#if YYDEBUG
if (yydebug)
printf("%sdebug: state %d, shifting to state %d\n",
YYPREFIX, yystate, yytable[yyn]);
#endif
if (yystack.s_mark >= yystack.s_last && yygrowstack(&yystack) == YYENOMEM)
{
goto yyoverflow;
}
yystate = yytable[yyn];
*++yystack.s_mark = yytable[yyn];
*++yystack.l_mark = yylval;
yychar = YYEMPTY;
if (yyerrflag > 0) --yyerrflag;
goto yyloop;
}
if ((yyn = yyrindex[yystate]) && (yyn += yychar) >= 0 &&
yyn <= YYTABLESIZE && yycheck[yyn] == yychar)
{
yyn = yytable[yyn];
goto yyreduce;
}
if (yyerrflag) goto yyinrecovery;
YYERROR_CALL("syntax error");
goto yyerrlab;
yyerrlab:
++yynerrs;
yyinrecovery:
if (yyerrflag < 3)
{
yyerrflag = 3;
for (;;)
{
if ((yyn = yysindex[*yystack.s_mark]) && (yyn += YYERRCODE) >= 0 &&
yyn <= YYTABLESIZE && yycheck[yyn] == YYERRCODE)
{
#if YYDEBUG
if (yydebug)
printf("%sdebug: state %d, error recovery shifting\
to state %d\n", YYPREFIX, *yystack.s_mark, yytable[yyn]);
#endif
if (yystack.s_mark >= yystack.s_last && yygrowstack(&yystack) == YYENOMEM)
{
goto yyoverflow;
}
yystate = yytable[yyn];
*++yystack.s_mark = yytable[yyn];
*++yystack.l_mark = yylval;
goto yyloop;
}
else
{
#if YYDEBUG
if (yydebug)
printf("%sdebug: error recovery discarding state %d\n",
YYPREFIX, *yystack.s_mark);
#endif
if (yystack.s_mark <= yystack.s_base) goto yyabort;
--yystack.s_mark;
--yystack.l_mark;
}
}
}
else
{
if (yychar == YYEOF) goto yyabort;
#if YYDEBUG
if (yydebug)
{
yys = yyname[YYTRANSLATE(yychar)];
printf("%sdebug: state %d, error recovery discards token %d (%s)\n",
YYPREFIX, yystate, yychar, yys);
}
#endif
yychar = YYEMPTY;
goto yyloop;
}
yyreduce:
#if YYDEBUG
if (yydebug)
printf("%sdebug: state %d, reducing by rule %d (%s)\n",
YYPREFIX, yystate, yyn, yyrule[yyn]);
#endif
yym = yylen[yyn];
if (yym)
yyval = yystack.l_mark[1-yym];
else
memset(&yyval, 0, sizeof yyval);
switch (yyn)
{
case 17:
#line 553 "../../freebsd/sbin/pfctl/parse.y"
{ file->errors++; }
break;
case 18:
#line 556 "../../freebsd/sbin/pfctl/parse.y"
{
struct file *nfile;
if ((nfile = pushfile(yystack.l_mark[0].v.string, 0)) == NULL) {
yyerror("failed to include file %s", yystack.l_mark[0].v.string);
free(yystack.l_mark[0].v.string);
YYERROR;
}
free(yystack.l_mark[0].v.string);
file = nfile;
lungetc('\n');
}
break;
case 25:
#line 583 "../../freebsd/sbin/pfctl/parse.y"
{
if (!strcmp(yystack.l_mark[0].v.string, "none"))
yyval.v.i = 0;
else if (!strcmp(yystack.l_mark[0].v.string, "basic"))
yyval.v.i = PF_OPTIMIZE_BASIC;
else if (!strcmp(yystack.l_mark[0].v.string, "profile"))
yyval.v.i = PF_OPTIMIZE_BASIC | PF_OPTIMIZE_PROFILE;
else {
yyerror("unknown ruleset-optimization %s", yystack.l_mark[0].v.string);
YYERROR;
}
}
break;
case 26:
#line 597 "../../freebsd/sbin/pfctl/parse.y"
{
if (check_rulestate(PFCTL_STATE_OPTION)) {
free(yystack.l_mark[0].v.string);
YYERROR;
}
if (pfctl_set_optimization(pf, yystack.l_mark[0].v.string) != 0) {
yyerror("unknown optimization %s", yystack.l_mark[0].v.string);
free(yystack.l_mark[0].v.string);
YYERROR;
}
free(yystack.l_mark[0].v.string);
}
break;
case 27:
#line 609 "../../freebsd/sbin/pfctl/parse.y"
{
if (!(pf->opts & PF_OPT_OPTIMIZE)) {
pf->opts |= PF_OPT_OPTIMIZE;
pf->optimize = yystack.l_mark[0].v.i;
}
}
break;
case 32:
#line 619 "../../freebsd/sbin/pfctl/parse.y"
{
if (check_rulestate(PFCTL_STATE_OPTION)) {
free(yystack.l_mark[0].v.string);
YYERROR;
}
if (pfctl_set_logif(pf, yystack.l_mark[0].v.string) != 0) {
yyerror("error setting loginterface %s", yystack.l_mark[0].v.string);
free(yystack.l_mark[0].v.string);
YYERROR;
}
free(yystack.l_mark[0].v.string);
}
break;
case 33:
#line 631 "../../freebsd/sbin/pfctl/parse.y"
{
if (yystack.l_mark[0].v.number == 0 || yystack.l_mark[0].v.number > UINT_MAX) {
yyerror("hostid must be non-zero");
YYERROR;
}
if (pfctl_set_hostid(pf, yystack.l_mark[0].v.number) != 0) {
yyerror("error setting hostid %08x", yystack.l_mark[0].v.number);
YYERROR;
}
}
break;
case 34:
#line 641 "../../freebsd/sbin/pfctl/parse.y"
{
if (pf->opts & PF_OPT_VERBOSE)
printf("set block-policy drop\n");
if (check_rulestate(PFCTL_STATE_OPTION))
YYERROR;
blockpolicy = PFRULE_DROP;
}
break;
case 35:
#line 648 "../../freebsd/sbin/pfctl/parse.y"
{
if (pf->opts & PF_OPT_VERBOSE)
printf("set block-policy return\n");
if (check_rulestate(PFCTL_STATE_OPTION))
YYERROR;
blockpolicy = PFRULE_RETURN;
}
break;
case 36:
#line 655 "../../freebsd/sbin/pfctl/parse.y"
{
if (pf->opts & PF_OPT_VERBOSE)
printf("set require-order %s\n",
yystack.l_mark[0].v.number == 1 ? "yes" : "no");
require_order = yystack.l_mark[0].v.number;
}
break;
case 37:
#line 661 "../../freebsd/sbin/pfctl/parse.y"
{
if (pf->opts & PF_OPT_VERBOSE)
printf("set fingerprints \"%s\"\n", yystack.l_mark[0].v.string);
if (check_rulestate(PFCTL_STATE_OPTION)) {
free(yystack.l_mark[0].v.string);
YYERROR;
}
if (!pf->anchor->name[0]) {
if (pfctl_file_fingerprints(pf->dev,
pf->opts, yystack.l_mark[0].v.string)) {
yyerror("error loading "
"fingerprints %s", yystack.l_mark[0].v.string);
free(yystack.l_mark[0].v.string);
YYERROR;
}
}
free(yystack.l_mark[0].v.string);
}
break;
case 38:
#line 679 "../../freebsd/sbin/pfctl/parse.y"
{
if (pf->opts & PF_OPT_VERBOSE)
switch (yystack.l_mark[0].v.i) {
case 0:
printf("set state-policy floating\n");
break;
case PFRULE_IFBOUND:
printf("set state-policy if-bound\n");
break;
}
default_statelock = yystack.l_mark[0].v.i;
}
break;
case 39:
#line 691 "../../freebsd/sbin/pfctl/parse.y"
{
if (check_rulestate(PFCTL_STATE_OPTION)) {
free(yystack.l_mark[0].v.string);
YYERROR;
}
if (pfctl_set_debug(pf, yystack.l_mark[0].v.string) != 0) {
yyerror("error setting debuglevel %s", yystack.l_mark[0].v.string);
free(yystack.l_mark[0].v.string);
YYERROR;
}
free(yystack.l_mark[0].v.string);
}
break;
case 40:
#line 703 "../../freebsd/sbin/pfctl/parse.y"
{
if (expand_skip_interface(yystack.l_mark[0].v.interface) != 0) {
yyerror("error setting skip interface(s)");
YYERROR;
}
}
break;
case 41:
#line 709 "../../freebsd/sbin/pfctl/parse.y"
{
if (keep_state_defaults != NULL) {
yyerror("cannot redefine state-defaults");
YYERROR;
}
keep_state_defaults = yystack.l_mark[0].v.state_opt;
}
break;
case 42:
#line 718 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.string = yystack.l_mark[0].v.string; }
break;
case 43:
#line 719 "../../freebsd/sbin/pfctl/parse.y"
{
if ((yyval.v.string = strdup("all")) == NULL) {
err(1, "stringall: strdup");
}
}
break;
case 44:
#line 726 "../../freebsd/sbin/pfctl/parse.y"
{
if (asprintf(&yyval.v.string, "%s %s", yystack.l_mark[-1].v.string, yystack.l_mark[0].v.string) == -1)
err(1, "string: asprintf");
free(yystack.l_mark[-1].v.string);
free(yystack.l_mark[0].v.string);
}
break;
case 46:
#line 735 "../../freebsd/sbin/pfctl/parse.y"
{
if (asprintf(&yyval.v.string, "%s %s", yystack.l_mark[-1].v.string, yystack.l_mark[0].v.string) == -1)
err(1, "string: asprintf");
free(yystack.l_mark[-1].v.string);
free(yystack.l_mark[0].v.string);
}
break;
case 48:
#line 744 "../../freebsd/sbin/pfctl/parse.y"
{
char *s;
if (asprintf(&s, "%lld", (long long)yystack.l_mark[0].v.number) == -1) {
yyerror("string: asprintf");
YYERROR;
}
yyval.v.string = s;
}
break;
case 50:
#line 755 "../../freebsd/sbin/pfctl/parse.y"
{
if (pf->opts & PF_OPT_VERBOSE)
printf("%s = \"%s\"\n", yystack.l_mark[-2].v.string, yystack.l_mark[0].v.string);
if (symset(yystack.l_mark[-2].v.string, yystack.l_mark[0].v.string, 0) == -1)
err(1, "cannot store variable %s", yystack.l_mark[-2].v.string);
free(yystack.l_mark[-2].v.string);
free(yystack.l_mark[0].v.string);
}
break;
case 51:
#line 765 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.string = yystack.l_mark[0].v.string; }
break;
case 52:
#line 766 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.string = NULL; }
break;
case 57:
#line 776 "../../freebsd/sbin/pfctl/parse.y"
{
char ta[PF_ANCHOR_NAME_SIZE];
struct pf_ruleset *rs;
/* steping into a brace anchor */
pf->asd++;
pf->bn++;
pf->brace = 1;
/* create a holding ruleset in the root */
snprintf(ta, PF_ANCHOR_NAME_SIZE, "_%d", pf->bn);
rs = pf_find_or_create_ruleset(ta);
if (rs == NULL)
err(1, "pfa_anchor: pf_find_or_create_ruleset");
pf->astack[pf->asd] = rs->anchor;
pf->anchor = rs->anchor;
}
break;
case 58:
#line 793 "../../freebsd/sbin/pfctl/parse.y"
{
pf->alast = pf->anchor;
pf->asd--;
pf->anchor = pf->astack[pf->asd];
}
break;
case 60:
#line 803 "../../freebsd/sbin/pfctl/parse.y"
{
struct pf_rule r;
struct node_proto *proto;
if (check_rulestate(PFCTL_STATE_FILTER)) {
if (yystack.l_mark[-8].v.string)
free(yystack.l_mark[-8].v.string);
YYERROR;
}
if (yystack.l_mark[-8].v.string && (yystack.l_mark[-8].v.string[0] == '_' || strstr(yystack.l_mark[-8].v.string, "/_") != NULL)) {
free(yystack.l_mark[-8].v.string);
yyerror("anchor names beginning with '_' "
"are reserved for internal use");
YYERROR;
}
memset(&r, 0, sizeof(r));
if (pf->astack[pf->asd + 1]) {
/* move inline rules into relative location */
pf_anchor_setup(&r,
&pf->astack[pf->asd]->ruleset,
yystack.l_mark[-8].v.string ? yystack.l_mark[-8].v.string : pf->alast->name);
if (r.anchor == NULL)
err(1, "anchorrule: unable to "
"create ruleset");
if (pf->alast != r.anchor) {
if (r.anchor->match) {
yyerror("inline anchor '%s' "
"already exists",
r.anchor->name);
YYERROR;
}
mv_rules(&pf->alast->ruleset,
&r.anchor->ruleset);
}
pf_remove_if_empty_ruleset(&pf->alast->ruleset);
pf->alast = r.anchor;
} else {
if (!yystack.l_mark[-8].v.string) {
yyerror("anchors without explicit "
"rules must specify a name");
YYERROR;
}
}
r.direction = yystack.l_mark[-7].v.i;
r.quick = yystack.l_mark[-6].v.logquick.quick;
r.af = yystack.l_mark[-4].v.i;
r.prob = yystack.l_mark[-1].v.filter_opts.prob;
r.rtableid = yystack.l_mark[-1].v.filter_opts.rtableid;
if (yystack.l_mark[-1].v.filter_opts.tag)
if (strlcpy(r.tagname, yystack.l_mark[-1].v.filter_opts.tag,
PF_TAG_NAME_SIZE) >= PF_TAG_NAME_SIZE) {
yyerror("tag too long, max %u chars",
PF_TAG_NAME_SIZE - 1);
YYERROR;
}
if (yystack.l_mark[-1].v.filter_opts.match_tag)
if (strlcpy(r.match_tagname, yystack.l_mark[-1].v.filter_opts.match_tag,
PF_TAG_NAME_SIZE) >= PF_TAG_NAME_SIZE) {
yyerror("tag too long, max %u chars",
PF_TAG_NAME_SIZE - 1);
YYERROR;
}
r.match_tag_not = yystack.l_mark[-1].v.filter_opts.match_tag_not;
if (rule_label(&r, yystack.l_mark[-1].v.filter_opts.label))
YYERROR;
free(yystack.l_mark[-1].v.filter_opts.label);
r.flags = yystack.l_mark[-1].v.filter_opts.flags.b1;
r.flagset = yystack.l_mark[-1].v.filter_opts.flags.b2;
if ((yystack.l_mark[-1].v.filter_opts.flags.b1 & yystack.l_mark[-1].v.filter_opts.flags.b2) != yystack.l_mark[-1].v.filter_opts.flags.b1) {
yyerror("flags always false");
YYERROR;
}
if (yystack.l_mark[-1].v.filter_opts.flags.b1 || yystack.l_mark[-1].v.filter_opts.flags.b2 || yystack.l_mark[-2].v.fromto.src_os) {
for (proto = yystack.l_mark[-3].v.proto; proto != NULL &&
proto->proto != IPPROTO_TCP;
proto = proto->next)
; /* nothing */
if (proto == NULL && yystack.l_mark[-3].v.proto != NULL) {
if (yystack.l_mark[-1].v.filter_opts.flags.b1 || yystack.l_mark[-1].v.filter_opts.flags.b2)
yyerror(
"flags only apply to tcp");
if (yystack.l_mark[-2].v.fromto.src_os)
yyerror(
"OS fingerprinting only "
"applies to tcp");
YYERROR;
}
}
r.tos = yystack.l_mark[-1].v.filter_opts.tos;
if (yystack.l_mark[-1].v.filter_opts.keep.action) {
yyerror("cannot specify state handling "
"on anchors");
YYERROR;
}
if (yystack.l_mark[-1].v.filter_opts.match_tag)
if (strlcpy(r.match_tagname, yystack.l_mark[-1].v.filter_opts.match_tag,
PF_TAG_NAME_SIZE) >= PF_TAG_NAME_SIZE) {
yyerror("tag too long, max %u chars",
PF_TAG_NAME_SIZE - 1);
YYERROR;
}
r.match_tag_not = yystack.l_mark[-1].v.filter_opts.match_tag_not;
if (yystack.l_mark[-1].v.filter_opts.marker & FOM_PRIO) {
if (yystack.l_mark[-1].v.filter_opts.prio == 0)
r.prio = PF_PRIO_ZERO;
else
r.prio = yystack.l_mark[-1].v.filter_opts.prio;
}
if (yystack.l_mark[-1].v.filter_opts.marker & FOM_SETPRIO) {
r.set_prio[0] = yystack.l_mark[-1].v.filter_opts.set_prio[0];
r.set_prio[1] = yystack.l_mark[-1].v.filter_opts.set_prio[1];
r.scrub_flags |= PFSTATE_SETPRIO;
}
decide_address_family(yystack.l_mark[-2].v.fromto.src.host, &r.af);
decide_address_family(yystack.l_mark[-2].v.fromto.dst.host, &r.af);
expand_rule(&r, yystack.l_mark[-5].v.interface, NULL, yystack.l_mark[-3].v.proto, yystack.l_mark[-2].v.fromto.src_os,
yystack.l_mark[-2].v.fromto.src.host, yystack.l_mark[-2].v.fromto.src.port, yystack.l_mark[-2].v.fromto.dst.host, yystack.l_mark[-2].v.fromto.dst.port,
yystack.l_mark[-1].v.filter_opts.uid, yystack.l_mark[-1].v.filter_opts.gid, yystack.l_mark[-1].v.filter_opts.icmpspec,
pf->astack[pf->asd + 1] ? pf->alast->name : yystack.l_mark[-8].v.string);
free(yystack.l_mark[-8].v.string);
pf->astack[pf->asd + 1] = NULL;
}
break;
case 61:
#line 935 "../../freebsd/sbin/pfctl/parse.y"
{
struct pf_rule r;
if (check_rulestate(PFCTL_STATE_NAT)) {
free(yystack.l_mark[-5].v.string);
YYERROR;
}
memset(&r, 0, sizeof(r));
r.action = PF_NAT;
r.af = yystack.l_mark[-3].v.i;
r.rtableid = yystack.l_mark[0].v.rtableid;
decide_address_family(yystack.l_mark[-1].v.fromto.src.host, &r.af);
decide_address_family(yystack.l_mark[-1].v.fromto.dst.host, &r.af);
expand_rule(&r, yystack.l_mark[-4].v.interface, NULL, yystack.l_mark[-2].v.proto, yystack.l_mark[-1].v.fromto.src_os,
yystack.l_mark[-1].v.fromto.src.host, yystack.l_mark[-1].v.fromto.src.port, yystack.l_mark[-1].v.fromto.dst.host, yystack.l_mark[-1].v.fromto.dst.port,
0, 0, 0, yystack.l_mark[-5].v.string);
free(yystack.l_mark[-5].v.string);
}
break;
case 62:
#line 956 "../../freebsd/sbin/pfctl/parse.y"
{
struct pf_rule r;
if (check_rulestate(PFCTL_STATE_NAT)) {
free(yystack.l_mark[-5].v.string);
YYERROR;
}
memset(&r, 0, sizeof(r));
r.action = PF_RDR;
r.af = yystack.l_mark[-3].v.i;
r.rtableid = yystack.l_mark[0].v.rtableid;
decide_address_family(yystack.l_mark[-1].v.fromto.src.host, &r.af);
decide_address_family(yystack.l_mark[-1].v.fromto.dst.host, &r.af);
if (yystack.l_mark[-1].v.fromto.src.port != NULL) {
yyerror("source port parameter not supported"
" in rdr-anchor");
YYERROR;
}
if (yystack.l_mark[-1].v.fromto.dst.port != NULL) {
if (yystack.l_mark[-1].v.fromto.dst.port->next != NULL) {
yyerror("destination port list "
"expansion not supported in "
"rdr-anchor");
YYERROR;
} else if (yystack.l_mark[-1].v.fromto.dst.port->op != PF_OP_EQ) {
yyerror("destination port operators"
" not supported in rdr-anchor");
YYERROR;
}
r.dst.port[0] = yystack.l_mark[-1].v.fromto.dst.port->port[0];
r.dst.port[1] = yystack.l_mark[-1].v.fromto.dst.port->port[1];
r.dst.port_op = yystack.l_mark[-1].v.fromto.dst.port->op;
}
expand_rule(&r, yystack.l_mark[-4].v.interface, NULL, yystack.l_mark[-2].v.proto, yystack.l_mark[-1].v.fromto.src_os,
yystack.l_mark[-1].v.fromto.src.host, yystack.l_mark[-1].v.fromto.src.port, yystack.l_mark[-1].v.fromto.dst.host, yystack.l_mark[-1].v.fromto.dst.port,
0, 0, 0, yystack.l_mark[-5].v.string);
free(yystack.l_mark[-5].v.string);
}
break;
case 63:
#line 998 "../../freebsd/sbin/pfctl/parse.y"
{
struct pf_rule r;
if (check_rulestate(PFCTL_STATE_NAT)) {
free(yystack.l_mark[-5].v.string);
YYERROR;
}
memset(&r, 0, sizeof(r));
r.action = PF_BINAT;
r.af = yystack.l_mark[-3].v.i;
r.rtableid = yystack.l_mark[0].v.rtableid;
if (yystack.l_mark[-2].v.proto != NULL) {
if (yystack.l_mark[-2].v.proto->next != NULL) {
yyerror("proto list expansion"
" not supported in binat-anchor");
YYERROR;
}
r.proto = yystack.l_mark[-2].v.proto->proto;
free(yystack.l_mark[-2].v.proto);
}
if (yystack.l_mark[-1].v.fromto.src.host != NULL || yystack.l_mark[-1].v.fromto.src.port != NULL ||
yystack.l_mark[-1].v.fromto.dst.host != NULL || yystack.l_mark[-1].v.fromto.dst.port != NULL) {
yyerror("fromto parameter not supported"
" in binat-anchor");
YYERROR;
}
decide_address_family(yystack.l_mark[-1].v.fromto.src.host, &r.af);
decide_address_family(yystack.l_mark[-1].v.fromto.dst.host, &r.af);
pfctl_add_rule(pf, &r, yystack.l_mark[-5].v.string);
free(yystack.l_mark[-5].v.string);
}
break;
case 64:
#line 1035 "../../freebsd/sbin/pfctl/parse.y"
{
struct loadanchors *loadanchor;
if (strlen(pf->anchor->name) + 1 +
strlen(yystack.l_mark[-2].v.string) >= MAXPATHLEN) {
yyerror("anchorname %s too long, max %u\n",
yystack.l_mark[-2].v.string, MAXPATHLEN - 1);
free(yystack.l_mark[-2].v.string);
YYERROR;
}
loadanchor = calloc(1, sizeof(struct loadanchors));
if (loadanchor == NULL)
err(1, "loadrule: calloc");
if ((loadanchor->anchorname = malloc(MAXPATHLEN)) ==
NULL)
err(1, "loadrule: malloc");
if (pf->anchor->name[0])
snprintf(loadanchor->anchorname, MAXPATHLEN,
"%s/%s", pf->anchor->name, yystack.l_mark[-2].v.string);
else
strlcpy(loadanchor->anchorname, yystack.l_mark[-2].v.string, MAXPATHLEN);
if ((loadanchor->filename = strdup(yystack.l_mark[0].v.string)) == NULL)
err(1, "loadrule: strdup");
TAILQ_INSERT_TAIL(&loadanchorshead, loadanchor,
entries);
free(yystack.l_mark[-2].v.string);
free(yystack.l_mark[0].v.string);
}
break;
case 65:
#line 1066 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.b.b2 = yyval.v.b.w = 0;
if (yystack.l_mark[-1].v.i)
yyval.v.b.b1 = PF_NOSCRUB;
else
yyval.v.b.b1 = PF_SCRUB;
}
break;
case 66:
#line 1076 "../../freebsd/sbin/pfctl/parse.y"
{
struct pf_rule r;
if (check_rulestate(PFCTL_STATE_SCRUB))
YYERROR;
memset(&r, 0, sizeof(r));
r.action = yystack.l_mark[-7].v.b.b1;
r.direction = yystack.l_mark[-6].v.i;
r.log = yystack.l_mark[-5].v.logquick.log;
r.logif = yystack.l_mark[-5].v.logquick.logif;
if (yystack.l_mark[-5].v.logquick.quick) {
yyerror("scrub rules do not support 'quick'");
YYERROR;
}
r.af = yystack.l_mark[-3].v.i;
if (yystack.l_mark[0].v.scrub_opts.nodf)
r.rule_flag |= PFRULE_NODF;
if (yystack.l_mark[0].v.scrub_opts.randomid)
r.rule_flag |= PFRULE_RANDOMID;
if (yystack.l_mark[0].v.scrub_opts.reassemble_tcp) {
if (r.direction != PF_INOUT) {
yyerror("reassemble tcp rules can not "
"specify direction");
YYERROR;
}
r.rule_flag |= PFRULE_REASSEMBLE_TCP;
}
if (yystack.l_mark[0].v.scrub_opts.minttl)
r.min_ttl = yystack.l_mark[0].v.scrub_opts.minttl;
if (yystack.l_mark[0].v.scrub_opts.maxmss)
r.max_mss = yystack.l_mark[0].v.scrub_opts.maxmss;
if (yystack.l_mark[0].v.scrub_opts.marker & SOM_SETTOS) {
r.rule_flag |= PFRULE_SET_TOS;
r.set_tos = yystack.l_mark[0].v.scrub_opts.settos;
}
if (yystack.l_mark[0].v.scrub_opts.fragcache)
r.rule_flag |= yystack.l_mark[0].v.scrub_opts.fragcache;
if (yystack.l_mark[0].v.scrub_opts.match_tag)
if (strlcpy(r.match_tagname, yystack.l_mark[0].v.scrub_opts.match_tag,
PF_TAG_NAME_SIZE) >= PF_TAG_NAME_SIZE) {
yyerror("tag too long, max %u chars",
PF_TAG_NAME_SIZE - 1);
YYERROR;
}
r.match_tag_not = yystack.l_mark[0].v.scrub_opts.match_tag_not;
r.rtableid = yystack.l_mark[0].v.scrub_opts.rtableid;
expand_rule(&r, yystack.l_mark[-4].v.interface, NULL, yystack.l_mark[-2].v.proto, yystack.l_mark[-1].v.fromto.src_os,
yystack.l_mark[-1].v.fromto.src.host, yystack.l_mark[-1].v.fromto.src.port, yystack.l_mark[-1].v.fromto.dst.host, yystack.l_mark[-1].v.fromto.dst.port,
NULL, NULL, NULL, "");
}
break;
case 67:
#line 1133 "../../freebsd/sbin/pfctl/parse.y"
{
bzero(&scrub_opts, sizeof scrub_opts);
scrub_opts.rtableid = -1;
}
break;
case 68:
#line 1138 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.scrub_opts = scrub_opts; }
break;
case 69:
#line 1139 "../../freebsd/sbin/pfctl/parse.y"
{
bzero(&scrub_opts, sizeof scrub_opts);
scrub_opts.rtableid = -1;
yyval.v.scrub_opts = scrub_opts;
}
break;
case 72:
#line 1150 "../../freebsd/sbin/pfctl/parse.y"
{
if (scrub_opts.nodf) {
yyerror("no-df cannot be respecified");
YYERROR;
}
scrub_opts.nodf = 1;
}
break;
case 73:
#line 1157 "../../freebsd/sbin/pfctl/parse.y"
{
if (scrub_opts.marker & SOM_MINTTL) {
yyerror("min-ttl cannot be respecified");
YYERROR;
}
if (yystack.l_mark[0].v.number < 0 || yystack.l_mark[0].v.number > 255) {
yyerror("illegal min-ttl value %d", yystack.l_mark[0].v.number);
YYERROR;
}
scrub_opts.marker |= SOM_MINTTL;
scrub_opts.minttl = yystack.l_mark[0].v.number;
}
break;
case 74:
#line 1169 "../../freebsd/sbin/pfctl/parse.y"
{
if (scrub_opts.marker & SOM_MAXMSS) {
yyerror("max-mss cannot be respecified");
YYERROR;
}
if (yystack.l_mark[0].v.number < 0 || yystack.l_mark[0].v.number > 65535) {
yyerror("illegal max-mss value %d", yystack.l_mark[0].v.number);
YYERROR;
}
scrub_opts.marker |= SOM_MAXMSS;
scrub_opts.maxmss = yystack.l_mark[0].v.number;
}
break;
case 75:
#line 1181 "../../freebsd/sbin/pfctl/parse.y"
{
if (scrub_opts.marker & SOM_SETTOS) {
yyerror("set-tos cannot be respecified");
YYERROR;
}
scrub_opts.marker |= SOM_SETTOS;
scrub_opts.settos = yystack.l_mark[0].v.number;
}
break;
case 76:
#line 1189 "../../freebsd/sbin/pfctl/parse.y"
{
if (scrub_opts.marker & SOM_FRAGCACHE) {
yyerror("fragcache cannot be respecified");
YYERROR;
}
scrub_opts.marker |= SOM_FRAGCACHE;
scrub_opts.fragcache = yystack.l_mark[0].v.i;
}
break;
case 77:
#line 1197 "../../freebsd/sbin/pfctl/parse.y"
{
if (strcasecmp(yystack.l_mark[0].v.string, "tcp") != 0) {
yyerror("scrub reassemble supports only tcp, "
"not '%s'", yystack.l_mark[0].v.string);
free(yystack.l_mark[0].v.string);
YYERROR;
}
free(yystack.l_mark[0].v.string);
if (scrub_opts.reassemble_tcp) {
yyerror("reassemble tcp cannot be respecified");
YYERROR;
}
scrub_opts.reassemble_tcp = 1;
}
break;
case 78:
#line 1211 "../../freebsd/sbin/pfctl/parse.y"
{
if (scrub_opts.randomid) {
yyerror("random-id cannot be respecified");
YYERROR;
}
scrub_opts.randomid = 1;
}
break;
case 79:
#line 1218 "../../freebsd/sbin/pfctl/parse.y"
{
if (yystack.l_mark[0].v.number < 0 || yystack.l_mark[0].v.number > rt_tableid_max()) {
yyerror("invalid rtable id");
YYERROR;
}
scrub_opts.rtableid = yystack.l_mark[0].v.number;
}
break;
case 80:
#line 1225 "../../freebsd/sbin/pfctl/parse.y"
{
scrub_opts.match_tag = yystack.l_mark[0].v.string;
scrub_opts.match_tag_not = yystack.l_mark[-2].v.number;
}
break;
case 81:
#line 1231 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.i = 0; /* default */ }
break;
case 82:
#line 1232 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.i = 0; }
break;
case 83:
#line 1233 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.i = 0; }
break;
case 84:
#line 1236 "../../freebsd/sbin/pfctl/parse.y"
{
struct pf_rule r;
struct node_host *h = NULL, *hh;
struct node_if *i, *j;
if (check_rulestate(PFCTL_STATE_FILTER))
YYERROR;
for (i = yystack.l_mark[-2].v.interface; i; i = i->next) {
bzero(&r, sizeof(r));
r.action = PF_DROP;
r.direction = PF_IN;
r.log = yystack.l_mark[-3].v.logquick.log;
r.logif = yystack.l_mark[-3].v.logquick.logif;
r.quick = yystack.l_mark[-3].v.logquick.quick;
r.af = yystack.l_mark[-1].v.i;
if (rule_label(&r, yystack.l_mark[0].v.antispoof_opts.label))
YYERROR;
r.rtableid = yystack.l_mark[0].v.antispoof_opts.rtableid;
j = calloc(1, sizeof(struct node_if));
if (j == NULL)
err(1, "antispoof: calloc");
if (strlcpy(j->ifname, i->ifname,
sizeof(j->ifname)) >= sizeof(j->ifname)) {
free(j);
yyerror("interface name too long");
YYERROR;
}
j->not = 1;
if (i->dynamic) {
h = calloc(1, sizeof(*h));
if (h == NULL)
err(1, "address: calloc");
h->addr.type = PF_ADDR_DYNIFTL;
set_ipmask(h, 128);
if (strlcpy(h->addr.v.ifname, i->ifname,
sizeof(h->addr.v.ifname)) >=
sizeof(h->addr.v.ifname)) {
free(h);
yyerror(
"interface name too long");
YYERROR;
}
hh = malloc(sizeof(*hh));
if (hh == NULL)
err(1, "address: malloc");
bcopy(h, hh, sizeof(*hh));
h->addr.iflags = PFI_AFLAG_NETWORK;
} else {
h = ifa_lookup(j->ifname,
PFI_AFLAG_NETWORK);
hh = NULL;
}
if (h != NULL)
expand_rule(&r, j, NULL, NULL, NULL, h,
NULL, NULL, NULL, NULL, NULL,
NULL, "");
if ((i->ifa_flags & IFF_LOOPBACK) == 0) {
bzero(&r, sizeof(r));
r.action = PF_DROP;
r.direction = PF_IN;
r.log = yystack.l_mark[-3].v.logquick.log;
r.logif = yystack.l_mark[-3].v.logquick.logif;
r.quick = yystack.l_mark[-3].v.logquick.quick;
r.af = yystack.l_mark[-1].v.i;
if (rule_label(&r, yystack.l_mark[0].v.antispoof_opts.label))
YYERROR;
r.rtableid = yystack.l_mark[0].v.antispoof_opts.rtableid;
if (hh != NULL)
h = hh;
else
h = ifa_lookup(i->ifname, 0);
if (h != NULL)
expand_rule(&r, NULL, NULL,
NULL, NULL, h, NULL, NULL,
NULL, NULL, NULL, NULL, "");
} else
free(hh);
}
free(yystack.l_mark[0].v.antispoof_opts.label);
}
break;
case 85:
#line 1323 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.interface = yystack.l_mark[0].v.interface; }
break;
case 86:
#line 1324 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.interface = yystack.l_mark[-1].v.interface; }
break;
case 87:
#line 1327 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.interface = yystack.l_mark[-1].v.interface; }
break;
case 88:
#line 1328 "../../freebsd/sbin/pfctl/parse.y"
{
yystack.l_mark[-3].v.interface->tail->next = yystack.l_mark[-1].v.interface;
yystack.l_mark[-3].v.interface->tail = yystack.l_mark[-1].v.interface;
yyval.v.interface = yystack.l_mark[-3].v.interface;
}
break;
case 89:
#line 1335 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.interface = yystack.l_mark[0].v.interface; }
break;
case 90:
#line 1336 "../../freebsd/sbin/pfctl/parse.y"
{
yystack.l_mark[-1].v.interface->dynamic = 1;
yyval.v.interface = yystack.l_mark[-1].v.interface;
}
break;
case 91:
#line 1342 "../../freebsd/sbin/pfctl/parse.y"
{
bzero(&antispoof_opts, sizeof antispoof_opts);
antispoof_opts.rtableid = -1;
}
break;
case 92:
#line 1347 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.antispoof_opts = antispoof_opts; }
break;
case 93:
#line 1348 "../../freebsd/sbin/pfctl/parse.y"
{
bzero(&antispoof_opts, sizeof antispoof_opts);
antispoof_opts.rtableid = -1;
yyval.v.antispoof_opts = antispoof_opts;
}
break;
case 96:
#line 1359 "../../freebsd/sbin/pfctl/parse.y"
{
if (antispoof_opts.label) {
yyerror("label cannot be redefined");
YYERROR;
}
antispoof_opts.label = yystack.l_mark[0].v.string;
}
break;
case 97:
#line 1366 "../../freebsd/sbin/pfctl/parse.y"
{
if (yystack.l_mark[0].v.number < 0 || yystack.l_mark[0].v.number > rt_tableid_max()) {
yyerror("invalid rtable id");
YYERROR;
}
antispoof_opts.rtableid = yystack.l_mark[0].v.number;
}
break;
case 98:
#line 1375 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.number = 1; }
break;
case 99:
#line 1376 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.number = 0; }
break;
case 100:
#line 1379 "../../freebsd/sbin/pfctl/parse.y"
{
struct node_host *h, *nh;
struct node_tinit *ti, *nti;
if (strlen(yystack.l_mark[-2].v.string) >= PF_TABLE_NAME_SIZE) {
yyerror("table name too long, max %d chars",
PF_TABLE_NAME_SIZE - 1);
free(yystack.l_mark[-2].v.string);
YYERROR;
}
if (pf->loadopt & PFCTL_FLAG_TABLE)
if (process_tabledef(yystack.l_mark[-2].v.string, &yystack.l_mark[0].v.table_opts)) {
free(yystack.l_mark[-2].v.string);
YYERROR;
}
free(yystack.l_mark[-2].v.string);
for (ti = SIMPLEQ_FIRST(&yystack.l_mark[0].v.table_opts.init_nodes);
ti != SIMPLEQ_END(&yystack.l_mark[0].v.table_opts.init_nodes); ti = nti) {
if (ti->file)
free(ti->file);
for (h = ti->host; h != NULL; h = nh) {
nh = h->next;
free(h);
}
nti = SIMPLEQ_NEXT(ti, entries);
free(ti);
}
}
break;
case 101:
#line 1409 "../../freebsd/sbin/pfctl/parse.y"
{
bzero(&table_opts, sizeof table_opts);
SIMPLEQ_INIT(&table_opts.init_nodes);
}
break;
case 102:
#line 1414 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.table_opts = table_opts; }
break;
case 103:
#line 1416 "../../freebsd/sbin/pfctl/parse.y"
{
bzero(&table_opts, sizeof table_opts);
SIMPLEQ_INIT(&table_opts.init_nodes);
yyval.v.table_opts = table_opts;
}
break;
case 106:
#line 1427 "../../freebsd/sbin/pfctl/parse.y"
{
if (!strcmp(yystack.l_mark[0].v.string, "const"))
table_opts.flags |= PFR_TFLAG_CONST;
else if (!strcmp(yystack.l_mark[0].v.string, "persist"))
table_opts.flags |= PFR_TFLAG_PERSIST;
else if (!strcmp(yystack.l_mark[0].v.string, "counters"))
table_opts.flags |= PFR_TFLAG_COUNTERS;
else {
yyerror("invalid table option '%s'", yystack.l_mark[0].v.string);
free(yystack.l_mark[0].v.string);
YYERROR;
}
free(yystack.l_mark[0].v.string);
}
break;
case 107:
#line 1441 "../../freebsd/sbin/pfctl/parse.y"
{ table_opts.init_addr = 1; }
break;
case 108:
#line 1442 "../../freebsd/sbin/pfctl/parse.y"
{
struct node_host *n;
struct node_tinit *ti;
for (n = yystack.l_mark[-1].v.host; n != NULL; n = n->next) {
switch (n->addr.type) {
case PF_ADDR_ADDRMASK:
continue; /* ok */
case PF_ADDR_RANGE:
yyerror("address ranges are not "
"permitted inside tables");
break;
case PF_ADDR_DYNIFTL:
yyerror("dynamic addresses are not "
"permitted inside tables");
break;
case PF_ADDR_TABLE:
yyerror("tables cannot contain tables");
break;
case PF_ADDR_NOROUTE:
yyerror("\"no-route\" is not permitted "
"inside tables");
break;
case PF_ADDR_URPFFAILED:
yyerror("\"urpf-failed\" is not "
"permitted inside tables");
break;
default:
yyerror("unknown address type %d",
n->addr.type);
}
YYERROR;
}
if (!(ti = calloc(1, sizeof(*ti))))
err(1, "table_opt: calloc");
ti->host = yystack.l_mark[-1].v.host;
SIMPLEQ_INSERT_TAIL(&table_opts.init_nodes, ti,
entries);
table_opts.init_addr = 1;
}
break;
case 109:
#line 1482 "../../freebsd/sbin/pfctl/parse.y"
{
struct node_tinit *ti;
if (!(ti = calloc(1, sizeof(*ti))))
err(1, "table_opt: calloc");
ti->file = yystack.l_mark[0].v.string;
SIMPLEQ_INSERT_TAIL(&table_opts.init_nodes, ti,
entries);
table_opts.init_addr = 1;
}
break;
case 110:
#line 1494 "../../freebsd/sbin/pfctl/parse.y"
{
struct pf_altq a;
if (check_rulestate(PFCTL_STATE_QUEUE))
YYERROR;
memset(&a, 0, sizeof(a));
if (yystack.l_mark[-2].v.queue_opts.scheduler.qtype == ALTQT_NONE) {
yyerror("no scheduler specified!");
YYERROR;
}
a.scheduler = yystack.l_mark[-2].v.queue_opts.scheduler.qtype;
a.qlimit = yystack.l_mark[-2].v.queue_opts.qlimit;
a.tbrsize = yystack.l_mark[-2].v.queue_opts.tbrsize;
if (yystack.l_mark[0].v.queue == NULL && yystack.l_mark[-2].v.queue_opts.scheduler.qtype != ALTQT_CODEL) {
yyerror("no child queues specified");
YYERROR;
}
if (expand_altq(&a, yystack.l_mark[-3].v.interface, yystack.l_mark[0].v.queue, yystack.l_mark[-2].v.queue_opts.queue_bwspec,
&yystack.l_mark[-2].v.queue_opts.scheduler))
YYERROR;
}
break;
case 111:
#line 1518 "../../freebsd/sbin/pfctl/parse.y"
{
struct pf_altq a;
if (check_rulestate(PFCTL_STATE_QUEUE)) {
free(yystack.l_mark[-3].v.string);
YYERROR;
}
memset(&a, 0, sizeof(a));
if (strlcpy(a.qname, yystack.l_mark[-3].v.string, sizeof(a.qname)) >=
sizeof(a.qname)) {
yyerror("queue name too long (max "
"%d chars)", PF_QNAME_SIZE-1);
free(yystack.l_mark[-3].v.string);
YYERROR;
}
free(yystack.l_mark[-3].v.string);
if (yystack.l_mark[-1].v.queue_opts.tbrsize) {
yyerror("cannot specify tbrsize for queue");
YYERROR;
}
if (yystack.l_mark[-1].v.queue_opts.priority > 255) {
yyerror("priority out of range: max 255");
YYERROR;
}
a.priority = yystack.l_mark[-1].v.queue_opts.priority;
a.qlimit = yystack.l_mark[-1].v.queue_opts.qlimit;
a.scheduler = yystack.l_mark[-1].v.queue_opts.scheduler.qtype;
if (expand_queue(&a, yystack.l_mark[-2].v.interface, yystack.l_mark[0].v.queue, yystack.l_mark[-1].v.queue_opts.queue_bwspec,
&yystack.l_mark[-1].v.queue_opts.scheduler)) {
yyerror("errors in queue definition");
YYERROR;
}
}
break;
case 112:
#line 1555 "../../freebsd/sbin/pfctl/parse.y"
{
bzero(&queue_opts, sizeof queue_opts);
queue_opts.priority = DEFAULT_PRIORITY;
queue_opts.qlimit = DEFAULT_QLIMIT;
queue_opts.scheduler.qtype = ALTQT_NONE;
queue_opts.queue_bwspec.bw_percent = 100;
}
break;
case 113:
#line 1563 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.queue_opts = queue_opts; }
break;
case 114:
#line 1564 "../../freebsd/sbin/pfctl/parse.y"
{
bzero(&queue_opts, sizeof queue_opts);
queue_opts.priority = DEFAULT_PRIORITY;
queue_opts.qlimit = DEFAULT_QLIMIT;
queue_opts.scheduler.qtype = ALTQT_NONE;
queue_opts.queue_bwspec.bw_percent = 100;
yyval.v.queue_opts = queue_opts;
}
break;
case 117:
#line 1578 "../../freebsd/sbin/pfctl/parse.y"
{
if (queue_opts.marker & QOM_BWSPEC) {
yyerror("bandwidth cannot be respecified");
YYERROR;
}
queue_opts.marker |= QOM_BWSPEC;
queue_opts.queue_bwspec = yystack.l_mark[0].v.queue_bwspec;
}
break;
case 118:
#line 1586 "../../freebsd/sbin/pfctl/parse.y"
{
if (queue_opts.marker & QOM_PRIORITY) {
yyerror("priority cannot be respecified");
YYERROR;
}
if (yystack.l_mark[0].v.number < 0 || yystack.l_mark[0].v.number > 255) {
yyerror("priority out of range: max 255");
YYERROR;
}
queue_opts.marker |= QOM_PRIORITY;
queue_opts.priority = yystack.l_mark[0].v.number;
}
break;
case 119:
#line 1598 "../../freebsd/sbin/pfctl/parse.y"
{
if (queue_opts.marker & QOM_QLIMIT) {
yyerror("qlimit cannot be respecified");
YYERROR;
}
if (yystack.l_mark[0].v.number < 0 || yystack.l_mark[0].v.number > 65535) {
yyerror("qlimit out of range: max 65535");
YYERROR;
}
queue_opts.marker |= QOM_QLIMIT;
queue_opts.qlimit = yystack.l_mark[0].v.number;
}
break;
case 120:
#line 1610 "../../freebsd/sbin/pfctl/parse.y"
{
if (queue_opts.marker & QOM_SCHEDULER) {
yyerror("scheduler cannot be respecified");
YYERROR;
}
queue_opts.marker |= QOM_SCHEDULER;
queue_opts.scheduler = yystack.l_mark[0].v.queue_options;
}
break;
case 121:
#line 1618 "../../freebsd/sbin/pfctl/parse.y"
{
if (queue_opts.marker & QOM_TBRSIZE) {
yyerror("tbrsize cannot be respecified");
YYERROR;
}
if (yystack.l_mark[0].v.number < 0 || yystack.l_mark[0].v.number > 65535) {
yyerror("tbrsize too big: max 65535");
YYERROR;
}
queue_opts.marker |= QOM_TBRSIZE;
queue_opts.tbrsize = yystack.l_mark[0].v.number;
}
break;
case 122:
#line 1632 "../../freebsd/sbin/pfctl/parse.y"
{
double bps;
char *cp;
yyval.v.queue_bwspec.bw_percent = 0;
bps = strtod(yystack.l_mark[0].v.string, &cp);
if (cp != NULL) {
if (strlen(cp) > 1) {
char *cu = cp + 1;
if (!strcmp(cu, "Bit") ||
!strcmp(cu, "B") ||
!strcmp(cu, "bit") ||
!strcmp(cu, "b")) {
*cu = 0;
}
}
if (!strcmp(cp, "b"))
; /* nothing */
else if (!strcmp(cp, "K"))
bps *= 1000;
else if (!strcmp(cp, "M"))
bps *= 1000 * 1000;
else if (!strcmp(cp, "G"))
bps *= 1000 * 1000 * 1000;
else if (!strcmp(cp, "%")) {
if (bps < 0 || bps > 100) {
yyerror("bandwidth spec "
"out of range");
free(yystack.l_mark[0].v.string);
YYERROR;
}
yyval.v.queue_bwspec.bw_percent = bps;
bps = 0;
} else {
yyerror("unknown unit %s", cp);
free(yystack.l_mark[0].v.string);
YYERROR;
}
}
free(yystack.l_mark[0].v.string);
yyval.v.queue_bwspec.bw_absolute = (u_int32_t)bps;
}
break;
case 123:
#line 1675 "../../freebsd/sbin/pfctl/parse.y"
{
if (yystack.l_mark[0].v.number < 0 || yystack.l_mark[0].v.number > UINT_MAX) {
yyerror("bandwidth number too big");
YYERROR;
}
yyval.v.queue_bwspec.bw_percent = 0;
yyval.v.queue_bwspec.bw_absolute = yystack.l_mark[0].v.number;
}
break;
case 124:
#line 1685 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.queue_options.qtype = ALTQT_CBQ;
yyval.v.queue_options.data.cbq_opts.flags = 0;
}
break;
case 125:
#line 1689 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.queue_options.qtype = ALTQT_CBQ;
yyval.v.queue_options.data.cbq_opts.flags = yystack.l_mark[-1].v.number;
}
break;
case 126:
#line 1693 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.queue_options.qtype = ALTQT_PRIQ;
yyval.v.queue_options.data.priq_opts.flags = 0;
}
break;
case 127:
#line 1697 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.queue_options.qtype = ALTQT_PRIQ;
yyval.v.queue_options.data.priq_opts.flags = yystack.l_mark[-1].v.number;
}
break;
case 128:
#line 1701 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.queue_options.qtype = ALTQT_HFSC;
bzero(&yyval.v.queue_options.data.hfsc_opts,
sizeof(struct node_hfsc_opts));
}
break;
case 129:
#line 1706 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.queue_options.qtype = ALTQT_HFSC;
yyval.v.queue_options.data.hfsc_opts = yystack.l_mark[-1].v.hfsc_opts;
}
break;
case 130:
#line 1710 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.queue_options.qtype = ALTQT_FAIRQ;
bzero(&yyval.v.queue_options.data.fairq_opts,
sizeof(struct node_fairq_opts));
}
break;
case 131:
#line 1715 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.queue_options.qtype = ALTQT_FAIRQ;
yyval.v.queue_options.data.fairq_opts = yystack.l_mark[-1].v.fairq_opts;
}
break;
case 132:
#line 1719 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.queue_options.qtype = ALTQT_CODEL;
bzero(&yyval.v.queue_options.data.codel_opts,
sizeof(struct codel_opts));
}
break;
case 133:
#line 1724 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.queue_options.qtype = ALTQT_CODEL;
yyval.v.queue_options.data.codel_opts = yystack.l_mark[-1].v.codel_opts;
}
break;
case 134:
#line 1730 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.number |= yystack.l_mark[0].v.number; }
break;
case 135:
#line 1731 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.number |= yystack.l_mark[0].v.number; }
break;
case 136:
#line 1734 "../../freebsd/sbin/pfctl/parse.y"
{
if (!strcmp(yystack.l_mark[0].v.string, "default"))
yyval.v.number = CBQCLF_DEFCLASS;
else if (!strcmp(yystack.l_mark[0].v.string, "borrow"))
yyval.v.number = CBQCLF_BORROW;
else if (!strcmp(yystack.l_mark[0].v.string, "red"))
yyval.v.number = CBQCLF_RED;
else if (!strcmp(yystack.l_mark[0].v.string, "ecn"))
yyval.v.number = CBQCLF_RED|CBQCLF_ECN;
else if (!strcmp(yystack.l_mark[0].v.string, "rio"))
yyval.v.number = CBQCLF_RIO;
else if (!strcmp(yystack.l_mark[0].v.string, "codel"))
yyval.v.number = CBQCLF_CODEL;
else {
yyerror("unknown cbq flag \"%s\"", yystack.l_mark[0].v.string);
free(yystack.l_mark[0].v.string);
YYERROR;
}
free(yystack.l_mark[0].v.string);
}
break;
case 137:
#line 1756 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.number |= yystack.l_mark[0].v.number; }
break;
case 138:
#line 1757 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.number |= yystack.l_mark[0].v.number; }
break;
case 139:
#line 1760 "../../freebsd/sbin/pfctl/parse.y"
{
if (!strcmp(yystack.l_mark[0].v.string, "default"))
yyval.v.number = PRCF_DEFAULTCLASS;
else if (!strcmp(yystack.l_mark[0].v.string, "red"))
yyval.v.number = PRCF_RED;
else if (!strcmp(yystack.l_mark[0].v.string, "ecn"))
yyval.v.number = PRCF_RED|PRCF_ECN;
else if (!strcmp(yystack.l_mark[0].v.string, "rio"))
yyval.v.number = PRCF_RIO;
else if (!strcmp(yystack.l_mark[0].v.string, "codel"))
yyval.v.number = PRCF_CODEL;
else {
yyerror("unknown priq flag \"%s\"", yystack.l_mark[0].v.string);
free(yystack.l_mark[0].v.string);
YYERROR;
}
free(yystack.l_mark[0].v.string);
}
break;
case 140:
#line 1780 "../../freebsd/sbin/pfctl/parse.y"
{
bzero(&hfsc_opts,
sizeof(struct node_hfsc_opts));
}
break;
case 141:
#line 1784 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.hfsc_opts = hfsc_opts;
}
break;
case 144:
#line 1793 "../../freebsd/sbin/pfctl/parse.y"
{
if (hfsc_opts.linkshare.used) {
yyerror("linkshare already specified");
YYERROR;
}
hfsc_opts.linkshare.m2 = yystack.l_mark[0].v.queue_bwspec;
hfsc_opts.linkshare.used = 1;
}
break;
case 145:
#line 1802 "../../freebsd/sbin/pfctl/parse.y"
{
if (yystack.l_mark[-3].v.number < 0 || yystack.l_mark[-3].v.number > INT_MAX) {
yyerror("timing in curve out of range");
YYERROR;
}
if (hfsc_opts.linkshare.used) {
yyerror("linkshare already specified");
YYERROR;
}
hfsc_opts.linkshare.m1 = yystack.l_mark[-5].v.queue_bwspec;
hfsc_opts.linkshare.d = yystack.l_mark[-3].v.number;
hfsc_opts.linkshare.m2 = yystack.l_mark[-1].v.queue_bwspec;
hfsc_opts.linkshare.used = 1;
}
break;
case 146:
#line 1816 "../../freebsd/sbin/pfctl/parse.y"
{
if (hfsc_opts.realtime.used) {
yyerror("realtime already specified");
YYERROR;
}
hfsc_opts.realtime.m2 = yystack.l_mark[0].v.queue_bwspec;
hfsc_opts.realtime.used = 1;
}
break;
case 147:
#line 1825 "../../freebsd/sbin/pfctl/parse.y"
{
if (yystack.l_mark[-3].v.number < 0 || yystack.l_mark[-3].v.number > INT_MAX) {
yyerror("timing in curve out of range");
YYERROR;
}
if (hfsc_opts.realtime.used) {
yyerror("realtime already specified");
YYERROR;
}
hfsc_opts.realtime.m1 = yystack.l_mark[-5].v.queue_bwspec;
hfsc_opts.realtime.d = yystack.l_mark[-3].v.number;
hfsc_opts.realtime.m2 = yystack.l_mark[-1].v.queue_bwspec;
hfsc_opts.realtime.used = 1;
}
break;
case 148:
#line 1839 "../../freebsd/sbin/pfctl/parse.y"
{
if (hfsc_opts.upperlimit.used) {
yyerror("upperlimit already specified");
YYERROR;
}
hfsc_opts.upperlimit.m2 = yystack.l_mark[0].v.queue_bwspec;
hfsc_opts.upperlimit.used = 1;
}
break;
case 149:
#line 1848 "../../freebsd/sbin/pfctl/parse.y"
{
if (yystack.l_mark[-3].v.number < 0 || yystack.l_mark[-3].v.number > INT_MAX) {
yyerror("timing in curve out of range");
YYERROR;
}
if (hfsc_opts.upperlimit.used) {
yyerror("upperlimit already specified");
YYERROR;
}
hfsc_opts.upperlimit.m1 = yystack.l_mark[-5].v.queue_bwspec;
hfsc_opts.upperlimit.d = yystack.l_mark[-3].v.number;
hfsc_opts.upperlimit.m2 = yystack.l_mark[-1].v.queue_bwspec;
hfsc_opts.upperlimit.used = 1;
}
break;
case 150:
#line 1862 "../../freebsd/sbin/pfctl/parse.y"
{
if (!strcmp(yystack.l_mark[0].v.string, "default"))
hfsc_opts.flags |= HFCF_DEFAULTCLASS;
else if (!strcmp(yystack.l_mark[0].v.string, "red"))
hfsc_opts.flags |= HFCF_RED;
else if (!strcmp(yystack.l_mark[0].v.string, "ecn"))
hfsc_opts.flags |= HFCF_RED|HFCF_ECN;
else if (!strcmp(yystack.l_mark[0].v.string, "rio"))
hfsc_opts.flags |= HFCF_RIO;
else if (!strcmp(yystack.l_mark[0].v.string, "codel"))
hfsc_opts.flags |= HFCF_CODEL;
else {
yyerror("unknown hfsc flag \"%s\"", yystack.l_mark[0].v.string);
free(yystack.l_mark[0].v.string);
YYERROR;
}
free(yystack.l_mark[0].v.string);
}
break;
case 151:
#line 1882 "../../freebsd/sbin/pfctl/parse.y"
{
bzero(&fairq_opts,
sizeof(struct node_fairq_opts));
}
break;
case 152:
#line 1886 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.fairq_opts = fairq_opts;
}
break;
case 155:
#line 1895 "../../freebsd/sbin/pfctl/parse.y"
{
if (fairq_opts.linkshare.used) {
yyerror("linkshare already specified");
YYERROR;
}
fairq_opts.linkshare.m2 = yystack.l_mark[0].v.queue_bwspec;
fairq_opts.linkshare.used = 1;
}
break;
case 156:
#line 1903 "../../freebsd/sbin/pfctl/parse.y"
{
if (fairq_opts.linkshare.used) {
yyerror("linkshare already specified");
YYERROR;
}
fairq_opts.linkshare.m1 = yystack.l_mark[-3].v.queue_bwspec;
fairq_opts.linkshare.d = yystack.l_mark[-2].v.number;
fairq_opts.linkshare.m2 = yystack.l_mark[-1].v.queue_bwspec;
fairq_opts.linkshare.used = 1;
}
break;
case 157:
#line 1913 "../../freebsd/sbin/pfctl/parse.y"
{
fairq_opts.hogs_bw = yystack.l_mark[0].v.queue_bwspec;
}
break;
case 158:
#line 1916 "../../freebsd/sbin/pfctl/parse.y"
{
fairq_opts.nbuckets = yystack.l_mark[0].v.number;
}
break;
case 159:
#line 1919 "../../freebsd/sbin/pfctl/parse.y"
{
if (!strcmp(yystack.l_mark[0].v.string, "default"))
fairq_opts.flags |= FARF_DEFAULTCLASS;
else if (!strcmp(yystack.l_mark[0].v.string, "red"))
fairq_opts.flags |= FARF_RED;
else if (!strcmp(yystack.l_mark[0].v.string, "ecn"))
fairq_opts.flags |= FARF_RED|FARF_ECN;
else if (!strcmp(yystack.l_mark[0].v.string, "rio"))
fairq_opts.flags |= FARF_RIO;
else if (!strcmp(yystack.l_mark[0].v.string, "codel"))
fairq_opts.flags |= FARF_CODEL;
else {
yyerror("unknown fairq flag \"%s\"", yystack.l_mark[0].v.string);
free(yystack.l_mark[0].v.string);
YYERROR;
}
free(yystack.l_mark[0].v.string);
}
break;
case 160:
#line 1939 "../../freebsd/sbin/pfctl/parse.y"
{
bzero(&codel_opts,
sizeof(struct codel_opts));
}
break;
case 161:
#line 1943 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.codel_opts = codel_opts;
}
break;
case 164:
#line 1952 "../../freebsd/sbin/pfctl/parse.y"
{
if (codel_opts.interval) {
yyerror("interval already specified");
YYERROR;
}
codel_opts.interval = yystack.l_mark[0].v.number;
}
break;
case 165:
#line 1959 "../../freebsd/sbin/pfctl/parse.y"
{
if (codel_opts.target) {
yyerror("target already specified");
YYERROR;
}
codel_opts.target = yystack.l_mark[0].v.number;
}
break;
case 166:
#line 1966 "../../freebsd/sbin/pfctl/parse.y"
{
if (!strcmp(yystack.l_mark[0].v.string, "ecn"))
codel_opts.ecn = 1;
else {
yyerror("unknown codel option \"%s\"", yystack.l_mark[0].v.string);
free(yystack.l_mark[0].v.string);
YYERROR;
}
free(yystack.l_mark[0].v.string);
}
break;
case 167:
#line 1978 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.queue = NULL; }
break;
case 168:
#line 1979 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.queue = yystack.l_mark[0].v.queue; }
break;
case 169:
#line 1980 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.queue = yystack.l_mark[-1].v.queue; }
break;
case 170:
#line 1983 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.queue = yystack.l_mark[-1].v.queue; }
break;
case 171:
#line 1984 "../../freebsd/sbin/pfctl/parse.y"
{
yystack.l_mark[-3].v.queue->tail->next = yystack.l_mark[-1].v.queue;
yystack.l_mark[-3].v.queue->tail = yystack.l_mark[-1].v.queue;
yyval.v.queue = yystack.l_mark[-3].v.queue;
}
break;
case 172:
#line 1991 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.queue = calloc(1, sizeof(struct node_queue));
if (yyval.v.queue == NULL)
err(1, "qassign_item: calloc");
if (strlcpy(yyval.v.queue->queue, yystack.l_mark[0].v.string, sizeof(yyval.v.queue->queue)) >=
sizeof(yyval.v.queue->queue)) {
yyerror("queue name '%s' too long (max "
"%d chars)", yystack.l_mark[0].v.string, sizeof(yyval.v.queue->queue)-1);
free(yystack.l_mark[0].v.string);
free(yyval.v.queue);
YYERROR;
}
free(yystack.l_mark[0].v.string);
yyval.v.queue->next = NULL;
yyval.v.queue->tail = yyval.v.queue;
}
break;
case 173:
#line 2011 "../../freebsd/sbin/pfctl/parse.y"
{
struct pf_rule r;
struct node_state_opt *o;
struct node_proto *proto;
int srctrack = 0;
int statelock = 0;
int adaptive = 0;
int defaults = 0;
if (check_rulestate(PFCTL_STATE_FILTER))
YYERROR;
memset(&r, 0, sizeof(r));
r.action = yystack.l_mark[-8].v.b.b1;
switch (yystack.l_mark[-8].v.b.b2) {
case PFRULE_RETURNRST:
r.rule_flag |= PFRULE_RETURNRST;
r.return_ttl = yystack.l_mark[-8].v.b.w;
break;
case PFRULE_RETURNICMP:
r.rule_flag |= PFRULE_RETURNICMP;
r.return_icmp = yystack.l_mark[-8].v.b.w;
r.return_icmp6 = yystack.l_mark[-8].v.b.w2;
break;
case PFRULE_RETURN:
r.rule_flag |= PFRULE_RETURN;
r.return_icmp = yystack.l_mark[-8].v.b.w;
r.return_icmp6 = yystack.l_mark[-8].v.b.w2;
break;
}
r.direction = yystack.l_mark[-7].v.i;
r.log = yystack.l_mark[-6].v.logquick.log;
r.logif = yystack.l_mark[-6].v.logquick.logif;
r.quick = yystack.l_mark[-6].v.logquick.quick;
r.prob = yystack.l_mark[0].v.filter_opts.prob;
r.rtableid = yystack.l_mark[0].v.filter_opts.rtableid;
if (yystack.l_mark[0].v.filter_opts.marker & FOM_PRIO) {
if (yystack.l_mark[0].v.filter_opts.prio == 0)
r.prio = PF_PRIO_ZERO;
else
r.prio = yystack.l_mark[0].v.filter_opts.prio;
}
if (yystack.l_mark[0].v.filter_opts.marker & FOM_SETPRIO) {
r.set_prio[0] = yystack.l_mark[0].v.filter_opts.set_prio[0];
r.set_prio[1] = yystack.l_mark[0].v.filter_opts.set_prio[1];
r.scrub_flags |= PFSTATE_SETPRIO;
}
r.af = yystack.l_mark[-3].v.i;
if (yystack.l_mark[0].v.filter_opts.tag)
if (strlcpy(r.tagname, yystack.l_mark[0].v.filter_opts.tag,
PF_TAG_NAME_SIZE) >= PF_TAG_NAME_SIZE) {
yyerror("tag too long, max %u chars",
PF_TAG_NAME_SIZE - 1);
YYERROR;
}
if (yystack.l_mark[0].v.filter_opts.match_tag)
if (strlcpy(r.match_tagname, yystack.l_mark[0].v.filter_opts.match_tag,
PF_TAG_NAME_SIZE) >= PF_TAG_NAME_SIZE) {
yyerror("tag too long, max %u chars",
PF_TAG_NAME_SIZE - 1);
YYERROR;
}
r.match_tag_not = yystack.l_mark[0].v.filter_opts.match_tag_not;
if (rule_label(&r, yystack.l_mark[0].v.filter_opts.label))
YYERROR;
free(yystack.l_mark[0].v.filter_opts.label);
r.flags = yystack.l_mark[0].v.filter_opts.flags.b1;
r.flagset = yystack.l_mark[0].v.filter_opts.flags.b2;
if ((yystack.l_mark[0].v.filter_opts.flags.b1 & yystack.l_mark[0].v.filter_opts.flags.b2) != yystack.l_mark[0].v.filter_opts.flags.b1) {
yyerror("flags always false");
YYERROR;
}
if (yystack.l_mark[0].v.filter_opts.flags.b1 || yystack.l_mark[0].v.filter_opts.flags.b2 || yystack.l_mark[-1].v.fromto.src_os) {
for (proto = yystack.l_mark[-2].v.proto; proto != NULL &&
proto->proto != IPPROTO_TCP;
proto = proto->next)
; /* nothing */
if (proto == NULL && yystack.l_mark[-2].v.proto != NULL) {
if (yystack.l_mark[0].v.filter_opts.flags.b1 || yystack.l_mark[0].v.filter_opts.flags.b2)
yyerror(
"flags only apply to tcp");
if (yystack.l_mark[-1].v.fromto.src_os)
yyerror(
"OS fingerprinting only "
"apply to tcp");
YYERROR;
}
#if 0
if ((yystack.l_mark[0].v.filter_opts.flags.b1 & parse_flags("S")) == 0 &&
yystack.l_mark[-1].v.fromto.src_os) {
yyerror("OS fingerprinting requires "
"the SYN TCP flag (flags S/SA)");
YYERROR;
}
#endif
}
r.tos = yystack.l_mark[0].v.filter_opts.tos;
r.keep_state = yystack.l_mark[0].v.filter_opts.keep.action;
o = yystack.l_mark[0].v.filter_opts.keep.options;
/* 'keep state' by default on pass rules. */
if (!r.keep_state && !r.action &&
!(yystack.l_mark[0].v.filter_opts.marker & FOM_KEEP)) {
r.keep_state = PF_STATE_NORMAL;
o = keep_state_defaults;
defaults = 1;
}
while (o) {
struct node_state_opt *p = o;
switch (o->type) {
case PF_STATE_OPT_MAX:
if (r.max_states) {
yyerror("state option 'max' "
"multiple definitions");
YYERROR;
}
r.max_states = o->data.max_states;
break;
case PF_STATE_OPT_NOSYNC:
if (r.rule_flag & PFRULE_NOSYNC) {
yyerror("state option 'sync' "
"multiple definitions");
YYERROR;
}
r.rule_flag |= PFRULE_NOSYNC;
break;
case PF_STATE_OPT_SRCTRACK:
if (srctrack) {
yyerror("state option "
"'source-track' "
"multiple definitions");
YYERROR;
}
srctrack = o->data.src_track;
r.rule_flag |= PFRULE_SRCTRACK;
break;
case PF_STATE_OPT_MAX_SRC_STATES:
if (r.max_src_states) {
yyerror("state option "
"'max-src-states' "
"multiple definitions");
YYERROR;
}
if (o->data.max_src_states == 0) {
yyerror("'max-src-states' must "
"be > 0");
YYERROR;
}
r.max_src_states =
o->data.max_src_states;
r.rule_flag |= PFRULE_SRCTRACK;
break;
case PF_STATE_OPT_OVERLOAD:
if (r.overload_tblname[0]) {
yyerror("multiple 'overload' "
"table definitions");
YYERROR;
}
if (strlcpy(r.overload_tblname,
o->data.overload.tblname,
PF_TABLE_NAME_SIZE) >=
PF_TABLE_NAME_SIZE) {
yyerror("state option: "
"strlcpy");
YYERROR;
}
r.flush = o->data.overload.flush;
break;
case PF_STATE_OPT_MAX_SRC_CONN:
if (r.max_src_conn) {
yyerror("state option "
"'max-src-conn' "
"multiple definitions");
YYERROR;
}
if (o->data.max_src_conn == 0) {
yyerror("'max-src-conn' "
"must be > 0");
YYERROR;
}
r.max_src_conn =
o->data.max_src_conn;
r.rule_flag |= PFRULE_SRCTRACK |
PFRULE_RULESRCTRACK;
break;
case PF_STATE_OPT_MAX_SRC_CONN_RATE:
if (r.max_src_conn_rate.limit) {
yyerror("state option "
"'max-src-conn-rate' "
"multiple definitions");
YYERROR;
}
if (!o->data.max_src_conn_rate.limit ||
!o->data.max_src_conn_rate.seconds) {
yyerror("'max-src-conn-rate' "
"values must be > 0");
YYERROR;
}
if (o->data.max_src_conn_rate.limit >
PF_THRESHOLD_MAX) {
yyerror("'max-src-conn-rate' "
"maximum rate must be < %u",
PF_THRESHOLD_MAX);
YYERROR;
}
r.max_src_conn_rate.limit =
o->data.max_src_conn_rate.limit;
r.max_src_conn_rate.seconds =
o->data.max_src_conn_rate.seconds;
r.rule_flag |= PFRULE_SRCTRACK |
PFRULE_RULESRCTRACK;
break;
case PF_STATE_OPT_MAX_SRC_NODES:
if (r.max_src_nodes) {
yyerror("state option "
"'max-src-nodes' "
"multiple definitions");
YYERROR;
}
if (o->data.max_src_nodes == 0) {
yyerror("'max-src-nodes' must "
"be > 0");
YYERROR;
}
r.max_src_nodes =
o->data.max_src_nodes;
r.rule_flag |= PFRULE_SRCTRACK |
PFRULE_RULESRCTRACK;
break;
case PF_STATE_OPT_STATELOCK:
if (statelock) {
yyerror("state locking option: "
"multiple definitions");
YYERROR;
}
statelock = 1;
r.rule_flag |= o->data.statelock;
break;
case PF_STATE_OPT_SLOPPY:
if (r.rule_flag & PFRULE_STATESLOPPY) {
yyerror("state sloppy option: "
"multiple definitions");
YYERROR;
}
r.rule_flag |= PFRULE_STATESLOPPY;
break;
case PF_STATE_OPT_TIMEOUT:
if (o->data.timeout.number ==
PFTM_ADAPTIVE_START ||
o->data.timeout.number ==
PFTM_ADAPTIVE_END)
adaptive = 1;
if (r.timeout[o->data.timeout.number]) {
yyerror("state timeout %s "
"multiple definitions",
pf_timeouts[o->data.
timeout.number].name);
YYERROR;
}
r.timeout[o->data.timeout.number] =
o->data.timeout.seconds;
}
o = o->next;
if (!defaults)
free(p);
}
/* 'flags S/SA' by default on stateful rules */
if (!r.action && !r.flags && !r.flagset &&
!yystack.l_mark[0].v.filter_opts.fragment && !(yystack.l_mark[0].v.filter_opts.marker & FOM_FLAGS) &&
r.keep_state) {
r.flags = parse_flags("S");
r.flagset = parse_flags("SA");
}
if (!adaptive && r.max_states) {
r.timeout[PFTM_ADAPTIVE_START] =
(r.max_states / 10) * 6;
r.timeout[PFTM_ADAPTIVE_END] =
(r.max_states / 10) * 12;
}
if (r.rule_flag & PFRULE_SRCTRACK) {
if (srctrack == PF_SRCTRACK_GLOBAL &&
r.max_src_nodes) {
yyerror("'max-src-nodes' is "
"incompatible with "
"'source-track global'");
YYERROR;
}
if (srctrack == PF_SRCTRACK_GLOBAL &&
r.max_src_conn) {
yyerror("'max-src-conn' is "
"incompatible with "
"'source-track global'");
YYERROR;
}
if (srctrack == PF_SRCTRACK_GLOBAL &&
r.max_src_conn_rate.seconds) {
yyerror("'max-src-conn-rate' is "
"incompatible with "
"'source-track global'");
YYERROR;
}
if (r.timeout[PFTM_SRC_NODE] <
r.max_src_conn_rate.seconds)
r.timeout[PFTM_SRC_NODE] =
r.max_src_conn_rate.seconds;
r.rule_flag |= PFRULE_SRCTRACK;
if (srctrack == PF_SRCTRACK_RULE)
r.rule_flag |= PFRULE_RULESRCTRACK;
}
if (r.keep_state && !statelock)
r.rule_flag |= default_statelock;
if (yystack.l_mark[0].v.filter_opts.fragment)
r.rule_flag |= PFRULE_FRAGMENT;
r.allow_opts = yystack.l_mark[0].v.filter_opts.allowopts;
decide_address_family(yystack.l_mark[-1].v.fromto.src.host, &r.af);
decide_address_family(yystack.l_mark[-1].v.fromto.dst.host, &r.af);
if (yystack.l_mark[-4].v.route.rt) {
if (!r.direction) {
yyerror("direction must be explicit "
"with rules that specify routing");
YYERROR;
}
r.rt = yystack.l_mark[-4].v.route.rt;
r.rpool.opts = yystack.l_mark[-4].v.route.pool_opts;
if (yystack.l_mark[-4].v.route.key != NULL)
memcpy(&r.rpool.key, yystack.l_mark[-4].v.route.key,
sizeof(struct pf_poolhashkey));
}
if (r.rt && r.rt != PF_FASTROUTE) {
decide_address_family(yystack.l_mark[-4].v.route.host, &r.af);
remove_invalid_hosts(&yystack.l_mark[-4].v.route.host, &r.af);
if (yystack.l_mark[-4].v.route.host == NULL) {
yyerror("no routing address with "
"matching address family found.");
YYERROR;
}
if ((r.rpool.opts & PF_POOL_TYPEMASK) ==
PF_POOL_NONE && (yystack.l_mark[-4].v.route.host->next != NULL ||
yystack.l_mark[-4].v.route.host->addr.type == PF_ADDR_TABLE ||
DYNIF_MULTIADDR(yystack.l_mark[-4].v.route.host->addr)))
r.rpool.opts |= PF_POOL_ROUNDROBIN;
if ((r.rpool.opts & PF_POOL_TYPEMASK) !=
PF_POOL_ROUNDROBIN &&
disallow_table(yystack.l_mark[-4].v.route.host, "tables are only "
"supported in round-robin routing pools"))
YYERROR;
if ((r.rpool.opts & PF_POOL_TYPEMASK) !=
PF_POOL_ROUNDROBIN &&
disallow_alias(yystack.l_mark[-4].v.route.host, "interface (%s) "
"is only supported in round-robin "
"routing pools"))
YYERROR;
if (yystack.l_mark[-4].v.route.host->next != NULL) {
if ((r.rpool.opts & PF_POOL_TYPEMASK) !=
PF_POOL_ROUNDROBIN) {
yyerror("r.rpool.opts must "
"be PF_POOL_ROUNDROBIN");
YYERROR;
}
}
}
if (yystack.l_mark[0].v.filter_opts.queues.qname != NULL) {
if (strlcpy(r.qname, yystack.l_mark[0].v.filter_opts.queues.qname,
sizeof(r.qname)) >= sizeof(r.qname)) {
yyerror("rule qname too long (max "
"%d chars)", sizeof(r.qname)-1);
YYERROR;
}
free(yystack.l_mark[0].v.filter_opts.queues.qname);
}
if (yystack.l_mark[0].v.filter_opts.queues.pqname != NULL) {
if (strlcpy(r.pqname, yystack.l_mark[0].v.filter_opts.queues.pqname,
sizeof(r.pqname)) >= sizeof(r.pqname)) {
yyerror("rule pqname too long (max "
"%d chars)", sizeof(r.pqname)-1);
YYERROR;
}
free(yystack.l_mark[0].v.filter_opts.queues.pqname);
}
#ifdef __FreeBSD__
r.divert.port = yystack.l_mark[0].v.filter_opts.divert.port;
#else
if ((r.divert.port = yystack.l_mark[0].v.filter_opts.divert.port)) {
if (r.direction == PF_OUT) {
if (yystack.l_mark[0].v.filter_opts.divert.addr) {
yyerror("address specified "
"for outgoing divert");
YYERROR;
}
bzero(&r.divert.addr,
sizeof(r.divert.addr));
} else {
if (!yystack.l_mark[0].v.filter_opts.divert.addr) {
yyerror("no address specified "
"for incoming divert");
YYERROR;
}
if (yystack.l_mark[0].v.filter_opts.divert.addr->af != r.af) {
yyerror("address family "
"mismatch for divert");
YYERROR;
}
r.divert.addr =
yystack.l_mark[0].v.filter_opts.divert.addr->addr.v.a.addr;
}
}
#endif
expand_rule(&r, yystack.l_mark[-5].v.interface, yystack.l_mark[-4].v.route.host, yystack.l_mark[-2].v.proto, yystack.l_mark[-1].v.fromto.src_os,
yystack.l_mark[-1].v.fromto.src.host, yystack.l_mark[-1].v.fromto.src.port, yystack.l_mark[-1].v.fromto.dst.host, yystack.l_mark[-1].v.fromto.dst.port,
yystack.l_mark[0].v.filter_opts.uid, yystack.l_mark[0].v.filter_opts.gid, yystack.l_mark[0].v.filter_opts.icmpspec, "");
}
break;
case 174:
#line 2435 "../../freebsd/sbin/pfctl/parse.y"
{
bzero(&filter_opts, sizeof filter_opts);
filter_opts.rtableid = -1;
}
break;
case 175:
#line 2440 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.filter_opts = filter_opts; }
break;
case 176:
#line 2441 "../../freebsd/sbin/pfctl/parse.y"
{
bzero(&filter_opts, sizeof filter_opts);
filter_opts.rtableid = -1;
yyval.v.filter_opts = filter_opts;
}
break;
case 179:
#line 2452 "../../freebsd/sbin/pfctl/parse.y"
{
if (filter_opts.uid)
yystack.l_mark[0].v.uid->tail->next = filter_opts.uid;
filter_opts.uid = yystack.l_mark[0].v.uid;
}
break;
case 180:
#line 2457 "../../freebsd/sbin/pfctl/parse.y"
{
if (filter_opts.gid)
yystack.l_mark[0].v.gid->tail->next = filter_opts.gid;
filter_opts.gid = yystack.l_mark[0].v.gid;
}
break;
case 181:
#line 2462 "../../freebsd/sbin/pfctl/parse.y"
{
if (filter_opts.marker & FOM_FLAGS) {
yyerror("flags cannot be redefined");
YYERROR;
}
filter_opts.marker |= FOM_FLAGS;
filter_opts.flags.b1 |= yystack.l_mark[0].v.b.b1;
filter_opts.flags.b2 |= yystack.l_mark[0].v.b.b2;
filter_opts.flags.w |= yystack.l_mark[0].v.b.w;
filter_opts.flags.w2 |= yystack.l_mark[0].v.b.w2;
}
break;
case 182:
#line 2473 "../../freebsd/sbin/pfctl/parse.y"
{
if (filter_opts.marker & FOM_ICMP) {
yyerror("icmp-type cannot be redefined");
YYERROR;
}
filter_opts.marker |= FOM_ICMP;
filter_opts.icmpspec = yystack.l_mark[0].v.icmp;
}
break;
case 183:
#line 2481 "../../freebsd/sbin/pfctl/parse.y"
{
if (filter_opts.marker & FOM_PRIO) {
yyerror("prio cannot be redefined");
YYERROR;
}
if (yystack.l_mark[0].v.number < 0 || yystack.l_mark[0].v.number > PF_PRIO_MAX) {
yyerror("prio must be 0 - %u", PF_PRIO_MAX);
YYERROR;
}
filter_opts.marker |= FOM_PRIO;
filter_opts.prio = yystack.l_mark[0].v.number;
}
break;
case 184:
#line 2493 "../../freebsd/sbin/pfctl/parse.y"
{
if (filter_opts.marker & FOM_TOS) {
yyerror("tos cannot be redefined");
YYERROR;
}
filter_opts.marker |= FOM_TOS;
filter_opts.tos = yystack.l_mark[0].v.number;
}
break;
case 185:
#line 2501 "../../freebsd/sbin/pfctl/parse.y"
{
if (filter_opts.marker & FOM_KEEP) {
yyerror("modulate or keep cannot be redefined");
YYERROR;
}
filter_opts.marker |= FOM_KEEP;
filter_opts.keep.action = yystack.l_mark[0].v.keep_state.action;
filter_opts.keep.options = yystack.l_mark[0].v.keep_state.options;
}
break;
case 186:
#line 2510 "../../freebsd/sbin/pfctl/parse.y"
{
filter_opts.fragment = 1;
}
break;
case 187:
#line 2513 "../../freebsd/sbin/pfctl/parse.y"
{
filter_opts.allowopts = 1;
}
break;
case 188:
#line 2516 "../../freebsd/sbin/pfctl/parse.y"
{
if (filter_opts.label) {
yyerror("label cannot be redefined");
YYERROR;
}
filter_opts.label = yystack.l_mark[0].v.string;
}
break;
case 189:
#line 2523 "../../freebsd/sbin/pfctl/parse.y"
{
if (filter_opts.queues.qname) {
yyerror("queue cannot be redefined");
YYERROR;
}
filter_opts.queues = yystack.l_mark[0].v.qassign;
}
break;
case 190:
#line 2530 "../../freebsd/sbin/pfctl/parse.y"
{
filter_opts.tag = yystack.l_mark[0].v.string;
}
break;
case 191:
#line 2533 "../../freebsd/sbin/pfctl/parse.y"
{
filter_opts.match_tag = yystack.l_mark[0].v.string;
filter_opts.match_tag_not = yystack.l_mark[-2].v.number;
}
break;
case 192:
#line 2537 "../../freebsd/sbin/pfctl/parse.y"
{
double p;
p = floor(yystack.l_mark[0].v.probability * UINT_MAX + 0.5);
if (p < 0.0 || p > UINT_MAX) {
yyerror("invalid probability: %lf", p);
YYERROR;
}
filter_opts.prob = (u_int32_t)p;
if (filter_opts.prob == 0)
filter_opts.prob = 1;
}
break;
case 193:
#line 2549 "../../freebsd/sbin/pfctl/parse.y"
{
if (yystack.l_mark[0].v.number < 0 || yystack.l_mark[0].v.number > rt_tableid_max()) {
yyerror("invalid rtable id");
YYERROR;
}
filter_opts.rtableid = yystack.l_mark[0].v.number;
}
break;
case 194:
#line 2556 "../../freebsd/sbin/pfctl/parse.y"
{
#ifdef __FreeBSD__
filter_opts.divert.port = yystack.l_mark[0].v.range.a;
if (!filter_opts.divert.port) {
yyerror("invalid divert port: %u", ntohs(yystack.l_mark[0].v.range.a));
YYERROR;
}
#endif
}
break;
case 195:
#line 2565 "../../freebsd/sbin/pfctl/parse.y"
{
#ifndef __FreeBSD__
if ((filter_opts.divert.addr = host(yystack.l_mark[-2].v.string)) == NULL) {
yyerror("could not parse divert address: %s",
yystack.l_mark[-2].v.string);
free(yystack.l_mark[-2].v.string);
YYERROR;
}
#else
if (yystack.l_mark[-2].v.string)
#endif
free(yystack.l_mark[-2].v.string);
filter_opts.divert.port = yystack.l_mark[0].v.range.a;
if (!filter_opts.divert.port) {
yyerror("invalid divert port: %u", ntohs(yystack.l_mark[0].v.range.a));
YYERROR;
}
}
break;
case 196:
#line 2583 "../../freebsd/sbin/pfctl/parse.y"
{
#ifdef __FreeBSD__
yyerror("divert-reply has no meaning in FreeBSD pf(4)");
YYERROR;
#else
filter_opts.divert.port = 1; /* some random value */
#endif
}
break;
case 198:
#line 2594 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.filter_opts = filter_opts; }
break;
case 199:
#line 2595 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.filter_opts = filter_opts; }
break;
case 202:
#line 2602 "../../freebsd/sbin/pfctl/parse.y"
{
if (filter_opts.marker & FOM_SETPRIO) {
yyerror("prio cannot be redefined");
YYERROR;
}
filter_opts.marker |= FOM_SETPRIO;
filter_opts.set_prio[0] = yystack.l_mark[0].v.b.b1;
filter_opts.set_prio[1] = yystack.l_mark[0].v.b.b2;
}
break;
case 203:
#line 2611 "../../freebsd/sbin/pfctl/parse.y"
{
if (yystack.l_mark[0].v.number < 0 || yystack.l_mark[0].v.number > PF_PRIO_MAX) {
yyerror("prio must be 0 - %u", PF_PRIO_MAX);
YYERROR;
}
yyval.v.b.b1 = yyval.v.b.b2 = yystack.l_mark[0].v.number;
}
break;
case 204:
#line 2618 "../../freebsd/sbin/pfctl/parse.y"
{
if (yystack.l_mark[-3].v.number < 0 || yystack.l_mark[-3].v.number > PF_PRIO_MAX ||
yystack.l_mark[-1].v.number < 0 || yystack.l_mark[-1].v.number > PF_PRIO_MAX) {
yyerror("prio must be 0 - %u", PF_PRIO_MAX);
YYERROR;
}
yyval.v.b.b1 = yystack.l_mark[-3].v.number;
yyval.v.b.b2 = yystack.l_mark[-1].v.number;
}
break;
case 205:
#line 2629 "../../freebsd/sbin/pfctl/parse.y"
{
char *e;
double p = strtod(yystack.l_mark[0].v.string, &e);
if (*e == '%') {
p *= 0.01;
e++;
}
if (*e) {
yyerror("invalid probability: %s", yystack.l_mark[0].v.string);
free(yystack.l_mark[0].v.string);
YYERROR;
}
free(yystack.l_mark[0].v.string);
yyval.v.probability = p;
}
break;
case 206:
#line 2645 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.probability = (double)yystack.l_mark[0].v.number;
}
break;
case 207:
#line 2651 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.b.b1 = PF_PASS; yyval.v.b.b2 = yyval.v.b.w = 0; }
break;
case 208:
#line 2652 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.b = yystack.l_mark[0].v.b; yyval.v.b.b1 = PF_DROP; }
break;
case 209:
#line 2655 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.b.b2 = blockpolicy;
yyval.v.b.w = returnicmpdefault;
yyval.v.b.w2 = returnicmp6default;
}
break;
case 210:
#line 2660 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.b.b2 = PFRULE_DROP;
yyval.v.b.w = 0;
yyval.v.b.w2 = 0;
}
break;
case 211:
#line 2665 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.b.b2 = PFRULE_RETURNRST;
yyval.v.b.w = 0;
yyval.v.b.w2 = 0;
}
break;
case 212:
#line 2670 "../../freebsd/sbin/pfctl/parse.y"
{
if (yystack.l_mark[-1].v.number < 0 || yystack.l_mark[-1].v.number > 255) {
yyerror("illegal ttl value %d", yystack.l_mark[-1].v.number);
YYERROR;
}
yyval.v.b.b2 = PFRULE_RETURNRST;
yyval.v.b.w = yystack.l_mark[-1].v.number;
yyval.v.b.w2 = 0;
}
break;
case 213:
#line 2679 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.b.b2 = PFRULE_RETURNICMP;
yyval.v.b.w = returnicmpdefault;
yyval.v.b.w2 = returnicmp6default;
}
break;
case 214:
#line 2684 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.b.b2 = PFRULE_RETURNICMP;
yyval.v.b.w = returnicmpdefault;
yyval.v.b.w2 = returnicmp6default;
}
break;
case 215:
#line 2689 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.b.b2 = PFRULE_RETURNICMP;
yyval.v.b.w = yystack.l_mark[-1].v.number;
yyval.v.b.w2 = returnicmpdefault;
}
break;
case 216:
#line 2694 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.b.b2 = PFRULE_RETURNICMP;
yyval.v.b.w = returnicmpdefault;
yyval.v.b.w2 = yystack.l_mark[-1].v.number;
}
break;
case 217:
#line 2699 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.b.b2 = PFRULE_RETURNICMP;
yyval.v.b.w = yystack.l_mark[-3].v.number;
yyval.v.b.w2 = yystack.l_mark[-1].v.number;
}
break;
case 218:
#line 2704 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.b.b2 = PFRULE_RETURN;
yyval.v.b.w = returnicmpdefault;
yyval.v.b.w2 = returnicmp6default;
}
break;
case 219:
#line 2711 "../../freebsd/sbin/pfctl/parse.y"
{
if (!(yyval.v.number = parseicmpspec(yystack.l_mark[0].v.string, AF_INET))) {
free(yystack.l_mark[0].v.string);
YYERROR;
}
free(yystack.l_mark[0].v.string);
}
break;
case 220:
#line 2718 "../../freebsd/sbin/pfctl/parse.y"
{
u_int8_t icmptype;
if (yystack.l_mark[0].v.number < 0 || yystack.l_mark[0].v.number > 255) {
yyerror("invalid icmp code %lu", yystack.l_mark[0].v.number);
YYERROR;
}
icmptype = returnicmpdefault >> 8;
yyval.v.number = (icmptype << 8 | yystack.l_mark[0].v.number);
}
break;
case 221:
#line 2730 "../../freebsd/sbin/pfctl/parse.y"
{
if (!(yyval.v.number = parseicmpspec(yystack.l_mark[0].v.string, AF_INET6))) {
free(yystack.l_mark[0].v.string);
YYERROR;
}
free(yystack.l_mark[0].v.string);
}
break;
case 222:
#line 2737 "../../freebsd/sbin/pfctl/parse.y"
{
u_int8_t icmptype;
if (yystack.l_mark[0].v.number < 0 || yystack.l_mark[0].v.number > 255) {
yyerror("invalid icmp code %lu", yystack.l_mark[0].v.number);
YYERROR;
}
icmptype = returnicmp6default >> 8;
yyval.v.number = (icmptype << 8 | yystack.l_mark[0].v.number);
}
break;
case 223:
#line 2749 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.i = PF_INOUT; }
break;
case 224:
#line 2750 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.i = PF_IN; }
break;
case 225:
#line 2751 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.i = PF_OUT; }
break;
case 226:
#line 2754 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.logquick.quick = 0; }
break;
case 227:
#line 2755 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.logquick.quick = 1; }
break;
case 228:
#line 2758 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.logquick.log = 0; yyval.v.logquick.quick = 0; yyval.v.logquick.logif = 0; }
break;
case 229:
#line 2759 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.logquick = yystack.l_mark[0].v.logquick; yyval.v.logquick.quick = 0; }
break;
case 230:
#line 2760 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.logquick.quick = 1; yyval.v.logquick.log = 0; yyval.v.logquick.logif = 0; }
break;
case 231:
#line 2761 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.logquick = yystack.l_mark[-1].v.logquick; yyval.v.logquick.quick = 1; }
break;
case 232:
#line 2762 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.logquick = yystack.l_mark[0].v.logquick; yyval.v.logquick.quick = 1; }
break;
case 233:
#line 2765 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.logquick.log = PF_LOG; yyval.v.logquick.logif = 0; }
break;
case 234:
#line 2766 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.logquick.log = PF_LOG | yystack.l_mark[-1].v.logquick.log;
yyval.v.logquick.logif = yystack.l_mark[-1].v.logquick.logif;
}
break;
case 235:
#line 2772 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.logquick = yystack.l_mark[0].v.logquick; }
break;
case 236:
#line 2773 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.logquick.log = yystack.l_mark[-2].v.logquick.log | yystack.l_mark[0].v.logquick.log;
yyval.v.logquick.logif = yystack.l_mark[0].v.logquick.logif;
if (yyval.v.logquick.logif == 0)
yyval.v.logquick.logif = yystack.l_mark[-2].v.logquick.logif;
}
break;
case 237:
#line 2781 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.logquick.log = PF_LOG_ALL; yyval.v.logquick.logif = 0; }
break;
case 238:
#line 2782 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.logquick.log = PF_LOG_SOCKET_LOOKUP; yyval.v.logquick.logif = 0; }
break;
case 239:
#line 2783 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.logquick.log = PF_LOG_SOCKET_LOOKUP; yyval.v.logquick.logif = 0; }
break;
case 240:
#line 2784 "../../freebsd/sbin/pfctl/parse.y"
{
const char *errstr;
u_int i;
yyval.v.logquick.log = 0;
if (strncmp(yystack.l_mark[0].v.string, "pflog", 5)) {
yyerror("%s: should be a pflog interface", yystack.l_mark[0].v.string);
free(yystack.l_mark[0].v.string);
YYERROR;
}
i = strtonum(yystack.l_mark[0].v.string + 5, 0, 255, &errstr);
if (errstr) {
yyerror("%s: %s", yystack.l_mark[0].v.string, errstr);
free(yystack.l_mark[0].v.string);
YYERROR;
}
free(yystack.l_mark[0].v.string);
yyval.v.logquick.logif = i;
}
break;
case 241:
#line 2805 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.interface = NULL; }
break;
case 242:
#line 2806 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.interface = yystack.l_mark[0].v.interface; }
break;
case 243:
#line 2807 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.interface = yystack.l_mark[-1].v.interface; }
break;
case 244:
#line 2810 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.interface = yystack.l_mark[-1].v.interface; }
break;
case 245:
#line 2811 "../../freebsd/sbin/pfctl/parse.y"
{
yystack.l_mark[-3].v.interface->tail->next = yystack.l_mark[-1].v.interface;
yystack.l_mark[-3].v.interface->tail = yystack.l_mark[-1].v.interface;
yyval.v.interface = yystack.l_mark[-3].v.interface;
}
break;
case 246:
#line 2818 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.interface = yystack.l_mark[0].v.interface; yyval.v.interface->not = yystack.l_mark[-1].v.number; }
break;
case 247:
#line 2821 "../../freebsd/sbin/pfctl/parse.y"
{
struct node_host *n;
yyval.v.interface = calloc(1, sizeof(struct node_if));
if (yyval.v.interface == NULL)
err(1, "if_item: calloc");
if (strlcpy(yyval.v.interface->ifname, yystack.l_mark[0].v.string, sizeof(yyval.v.interface->ifname)) >=
sizeof(yyval.v.interface->ifname)) {
free(yystack.l_mark[0].v.string);
free(yyval.v.interface);
yyerror("interface name too long");
YYERROR;
}
if ((n = ifa_exists(yystack.l_mark[0].v.string)) != NULL)
yyval.v.interface->ifa_flags = n->ifa_flags;
free(yystack.l_mark[0].v.string);
yyval.v.interface->not = 0;
yyval.v.interface->next = NULL;
yyval.v.interface->tail = yyval.v.interface;
}
break;
case 248:
#line 2845 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.i = 0; }
break;
case 249:
#line 2846 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.i = AF_INET; }
break;
case 250:
#line 2847 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.i = AF_INET6; }
break;
case 251:
#line 2850 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.proto = NULL; }
break;
case 252:
#line 2851 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.proto = yystack.l_mark[0].v.proto; }
break;
case 253:
#line 2852 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.proto = yystack.l_mark[-1].v.proto; }
break;
case 254:
#line 2855 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.proto = yystack.l_mark[-1].v.proto; }
break;
case 255:
#line 2856 "../../freebsd/sbin/pfctl/parse.y"
{
yystack.l_mark[-3].v.proto->tail->next = yystack.l_mark[-1].v.proto;
yystack.l_mark[-3].v.proto->tail = yystack.l_mark[-1].v.proto;
yyval.v.proto = yystack.l_mark[-3].v.proto;
}
break;
case 256:
#line 2863 "../../freebsd/sbin/pfctl/parse.y"
{
u_int8_t pr;
pr = (u_int8_t)yystack.l_mark[0].v.number;
if (pr == 0) {
yyerror("proto 0 cannot be used");
YYERROR;
}
yyval.v.proto = calloc(1, sizeof(struct node_proto));
if (yyval.v.proto == NULL)
err(1, "proto_item: calloc");
yyval.v.proto->proto = pr;
yyval.v.proto->next = NULL;
yyval.v.proto->tail = yyval.v.proto;
}
break;
case 257:
#line 2880 "../../freebsd/sbin/pfctl/parse.y"
{
struct protoent *p;
p = getprotobyname(yystack.l_mark[0].v.string);
if (p == NULL) {
yyerror("unknown protocol %s", yystack.l_mark[0].v.string);
free(yystack.l_mark[0].v.string);
YYERROR;
}
yyval.v.number = p->p_proto;
free(yystack.l_mark[0].v.string);
}
break;
case 258:
#line 2892 "../../freebsd/sbin/pfctl/parse.y"
{
if (yystack.l_mark[0].v.number < 0 || yystack.l_mark[0].v.number > 255) {
yyerror("protocol outside range");
YYERROR;
}
}
break;
case 259:
#line 2900 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.fromto.src.host = NULL;
yyval.v.fromto.src.port = NULL;
yyval.v.fromto.dst.host = NULL;
yyval.v.fromto.dst.port = NULL;
yyval.v.fromto.src_os = NULL;
}
break;
case 260:
#line 2907 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.fromto.src = yystack.l_mark[-2].v.peer;
yyval.v.fromto.src_os = yystack.l_mark[-1].v.os;
yyval.v.fromto.dst = yystack.l_mark[0].v.peer;
}
break;
case 261:
#line 2914 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.os = NULL; }
break;
case 262:
#line 2915 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.os = yystack.l_mark[0].v.os; }
break;
case 263:
#line 2916 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.os = yystack.l_mark[-1].v.os; }
break;
case 264:
#line 2919 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.os = calloc(1, sizeof(struct node_os));
if (yyval.v.os == NULL)
err(1, "os: calloc");
yyval.v.os->os = yystack.l_mark[0].v.string;
yyval.v.os->tail = yyval.v.os;
}
break;
case 265:
#line 2928 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.os = yystack.l_mark[-1].v.os; }
break;
case 266:
#line 2929 "../../freebsd/sbin/pfctl/parse.y"
{
yystack.l_mark[-3].v.os->tail->next = yystack.l_mark[-1].v.os;
yystack.l_mark[-3].v.os->tail = yystack.l_mark[-1].v.os;
yyval.v.os = yystack.l_mark[-3].v.os;
}
break;
case 267:
#line 2936 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.peer.host = NULL;
yyval.v.peer.port = NULL;
}
break;
case 268:
#line 2940 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.peer = yystack.l_mark[0].v.peer;
}
break;
case 269:
#line 2945 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.peer.host = NULL;
yyval.v.peer.port = NULL;
}
break;
case 270:
#line 2949 "../../freebsd/sbin/pfctl/parse.y"
{
if (disallow_urpf_failed(yystack.l_mark[0].v.peer.host, "\"urpf-failed\" is "
"not permitted in a destination address"))
YYERROR;
yyval.v.peer = yystack.l_mark[0].v.peer;
}
break;
case 271:
#line 2957 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.peer.host = yystack.l_mark[0].v.host;
yyval.v.peer.port = NULL;
}
break;
case 272:
#line 2961 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.peer.host = yystack.l_mark[-2].v.host;
yyval.v.peer.port = yystack.l_mark[0].v.port;
}
break;
case 273:
#line 2965 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.peer.host = NULL;
yyval.v.peer.port = yystack.l_mark[0].v.port;
}
break;
case 276:
#line 2975 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.host = NULL; }
break;
case 277:
#line 2976 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.host = yystack.l_mark[0].v.host; }
break;
case 278:
#line 2977 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.host = yystack.l_mark[-1].v.host; }
break;
case 279:
#line 2980 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.host = yystack.l_mark[0].v.host; }
break;
case 280:
#line 2981 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.host = NULL; }
break;
case 281:
#line 2984 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.host = yystack.l_mark[-1].v.host; }
break;
case 282:
#line 2985 "../../freebsd/sbin/pfctl/parse.y"
{
if (yystack.l_mark[-1].v.host == NULL)
yyval.v.host = yystack.l_mark[-3].v.host;
else if (yystack.l_mark[-3].v.host == NULL)
yyval.v.host = yystack.l_mark[-1].v.host;
else {
yystack.l_mark[-3].v.host->tail->next = yystack.l_mark[-1].v.host;
yystack.l_mark[-3].v.host->tail = yystack.l_mark[-1].v.host->tail;
yyval.v.host = yystack.l_mark[-3].v.host;
}
}
break;
case 283:
#line 2998 "../../freebsd/sbin/pfctl/parse.y"
{
struct node_host *n;
for (n = yystack.l_mark[0].v.host; n != NULL; n = n->next)
n->not = yystack.l_mark[-1].v.number;
yyval.v.host = yystack.l_mark[0].v.host;
}
break;
case 284:
#line 3005 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.host = calloc(1, sizeof(struct node_host));
if (yyval.v.host == NULL)
err(1, "xhost: calloc");
yyval.v.host->addr.type = PF_ADDR_NOROUTE;
yyval.v.host->next = NULL;
yyval.v.host->not = yystack.l_mark[-1].v.number;
yyval.v.host->tail = yyval.v.host;
}
break;
case 285:
#line 3014 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.host = calloc(1, sizeof(struct node_host));
if (yyval.v.host == NULL)
err(1, "xhost: calloc");
yyval.v.host->addr.type = PF_ADDR_URPFFAILED;
yyval.v.host->next = NULL;
yyval.v.host->not = yystack.l_mark[-1].v.number;
yyval.v.host->tail = yyval.v.host;
}
break;
case 286:
#line 3025 "../../freebsd/sbin/pfctl/parse.y"
{
if ((yyval.v.host = host(yystack.l_mark[0].v.string)) == NULL) {
/* error. "any" is handled elsewhere */
free(yystack.l_mark[0].v.string);
yyerror("could not parse host specification");
YYERROR;
}
free(yystack.l_mark[0].v.string);
}
break;
case 287:
#line 3035 "../../freebsd/sbin/pfctl/parse.y"
{
struct node_host *b, *e;
if ((b = host(yystack.l_mark[-2].v.string)) == NULL || (e = host(yystack.l_mark[0].v.string)) == NULL) {
free(yystack.l_mark[-2].v.string);
free(yystack.l_mark[0].v.string);
yyerror("could not parse host specification");
YYERROR;
}
if (b->af != e->af ||
b->addr.type != PF_ADDR_ADDRMASK ||
e->addr.type != PF_ADDR_ADDRMASK ||
unmask(&b->addr.v.a.mask, b->af) !=
(b->af == AF_INET ? 32 : 128) ||
unmask(&e->addr.v.a.mask, e->af) !=
(e->af == AF_INET ? 32 : 128) ||
b->next != NULL || b->not ||
e->next != NULL || e->not) {
free(b);
free(e);
free(yystack.l_mark[-2].v.string);
free(yystack.l_mark[0].v.string);
yyerror("invalid address range");
YYERROR;
}
memcpy(&b->addr.v.a.mask, &e->addr.v.a.addr,
sizeof(b->addr.v.a.mask));
b->addr.type = PF_ADDR_RANGE;
yyval.v.host = b;
free(e);
free(yystack.l_mark[-2].v.string);
free(yystack.l_mark[0].v.string);
}
break;
case 288:
#line 3068 "../../freebsd/sbin/pfctl/parse.y"
{
char *buf;
if (asprintf(&buf, "%s/%lld", yystack.l_mark[-2].v.string, (long long)yystack.l_mark[0].v.number) == -1)
err(1, "host: asprintf");
free(yystack.l_mark[-2].v.string);
if ((yyval.v.host = host(buf)) == NULL) {
/* error. "any" is handled elsewhere */
free(buf);
yyerror("could not parse host specification");
YYERROR;
}
free(buf);
}
break;
case 289:
#line 3082 "../../freebsd/sbin/pfctl/parse.y"
{
char *buf;
/* ie. for 10/8 parsing */
#ifdef __FreeBSD__
if (asprintf(&buf, "%lld/%lld", (long long)yystack.l_mark[-2].v.number, (long long)yystack.l_mark[0].v.number) == -1)
#else
if (asprintf(&buf, "%lld/%lld", yystack.l_mark[-2].v.number, yystack.l_mark[0].v.number) == -1)
#endif
err(1, "host: asprintf");
if ((yyval.v.host = host(buf)) == NULL) {
/* error. "any" is handled elsewhere */
free(buf);
yyerror("could not parse host specification");
YYERROR;
}
free(buf);
}
break;
case 291:
#line 3101 "../../freebsd/sbin/pfctl/parse.y"
{
struct node_host *n;
if (yystack.l_mark[0].v.number < 0 || yystack.l_mark[0].v.number > 128) {
yyerror("bit number too big");
YYERROR;
}
yyval.v.host = yystack.l_mark[-2].v.host;
for (n = yystack.l_mark[-2].v.host; n != NULL; n = n->next)
set_ipmask(n, yystack.l_mark[0].v.number);
}
break;
case 292:
#line 3112 "../../freebsd/sbin/pfctl/parse.y"
{
if (strlen(yystack.l_mark[-1].v.string) >= PF_TABLE_NAME_SIZE) {
yyerror("table name '%s' too long", yystack.l_mark[-1].v.string);
free(yystack.l_mark[-1].v.string);
YYERROR;
}
yyval.v.host = calloc(1, sizeof(struct node_host));
if (yyval.v.host == NULL)
err(1, "host: calloc");
yyval.v.host->addr.type = PF_ADDR_TABLE;
if (strlcpy(yyval.v.host->addr.v.tblname, yystack.l_mark[-1].v.string,
sizeof(yyval.v.host->addr.v.tblname)) >=
sizeof(yyval.v.host->addr.v.tblname))
errx(1, "host: strlcpy");
free(yystack.l_mark[-1].v.string);
yyval.v.host->next = NULL;
yyval.v.host->tail = yyval.v.host;
}
break;
case 294:
#line 3133 "../../freebsd/sbin/pfctl/parse.y"
{
u_long ulval;
if (atoul(yystack.l_mark[0].v.string, &ulval) == -1) {
yyerror("%s is not a number", yystack.l_mark[0].v.string);
free(yystack.l_mark[0].v.string);
YYERROR;
} else
yyval.v.number = ulval;
free(yystack.l_mark[0].v.string);
}
break;
case 295:
#line 3146 "../../freebsd/sbin/pfctl/parse.y"
{
int flags = 0;
char *p, *op;
op = yystack.l_mark[-1].v.string;
if (!isalpha(op[0])) {
yyerror("invalid interface name '%s'", op);
free(op);
YYERROR;
}
while ((p = strrchr(yystack.l_mark[-1].v.string, ':')) != NULL) {
if (!strcmp(p+1, "network"))
flags |= PFI_AFLAG_NETWORK;
else if (!strcmp(p+1, "broadcast"))
flags |= PFI_AFLAG_BROADCAST;
else if (!strcmp(p+1, "peer"))
flags |= PFI_AFLAG_PEER;
else if (!strcmp(p+1, "0"))
flags |= PFI_AFLAG_NOALIAS;
else {
yyerror("interface %s has bad modifier",
yystack.l_mark[-1].v.string);
free(op);
YYERROR;
}
*p = '\0';
}
if (flags & (flags - 1) & PFI_AFLAG_MODEMASK) {
free(op);
yyerror("illegal combination of "
"interface modifiers");
YYERROR;
}
yyval.v.host = calloc(1, sizeof(struct node_host));
if (yyval.v.host == NULL)
err(1, "address: calloc");
yyval.v.host->af = 0;
set_ipmask(yyval.v.host, 128);
yyval.v.host->addr.type = PF_ADDR_DYNIFTL;
yyval.v.host->addr.iflags = flags;
if (strlcpy(yyval.v.host->addr.v.ifname, yystack.l_mark[-1].v.string,
sizeof(yyval.v.host->addr.v.ifname)) >=
sizeof(yyval.v.host->addr.v.ifname)) {
free(op);
free(yyval.v.host);
yyerror("interface name too long");
YYERROR;
}
free(op);
yyval.v.host->next = NULL;
yyval.v.host->tail = yyval.v.host;
}
break;
case 296:
#line 3200 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.port = yystack.l_mark[0].v.port; }
break;
case 297:
#line 3201 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.port = yystack.l_mark[-1].v.port; }
break;
case 298:
#line 3204 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.port = yystack.l_mark[-1].v.port; }
break;
case 299:
#line 3205 "../../freebsd/sbin/pfctl/parse.y"
{
yystack.l_mark[-3].v.port->tail->next = yystack.l_mark[-1].v.port;
yystack.l_mark[-3].v.port->tail = yystack.l_mark[-1].v.port;
yyval.v.port = yystack.l_mark[-3].v.port;
}
break;
case 300:
#line 3212 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.port = calloc(1, sizeof(struct node_port));
if (yyval.v.port == NULL)
err(1, "port_item: calloc");
yyval.v.port->port[0] = yystack.l_mark[0].v.range.a;
yyval.v.port->port[1] = yystack.l_mark[0].v.range.b;
if (yystack.l_mark[0].v.range.t)
yyval.v.port->op = PF_OP_RRG;
else
yyval.v.port->op = PF_OP_EQ;
yyval.v.port->next = NULL;
yyval.v.port->tail = yyval.v.port;
}
break;
case 301:
#line 3225 "../../freebsd/sbin/pfctl/parse.y"
{
if (yystack.l_mark[0].v.range.t) {
yyerror("':' cannot be used with an other "
"port operator");
YYERROR;
}
yyval.v.port = calloc(1, sizeof(struct node_port));
if (yyval.v.port == NULL)
err(1, "port_item: calloc");
yyval.v.port->port[0] = yystack.l_mark[0].v.range.a;
yyval.v.port->port[1] = yystack.l_mark[0].v.range.b;
yyval.v.port->op = yystack.l_mark[-1].v.i;
yyval.v.port->next = NULL;
yyval.v.port->tail = yyval.v.port;
}
break;
case 302:
#line 3240 "../../freebsd/sbin/pfctl/parse.y"
{
if (yystack.l_mark[-2].v.range.t || yystack.l_mark[0].v.range.t) {
yyerror("':' cannot be used with an other "
"port operator");
YYERROR;
}
yyval.v.port = calloc(1, sizeof(struct node_port));
if (yyval.v.port == NULL)
err(1, "port_item: calloc");
yyval.v.port->port[0] = yystack.l_mark[-2].v.range.a;
yyval.v.port->port[1] = yystack.l_mark[0].v.range.a;
yyval.v.port->op = yystack.l_mark[-1].v.i;
yyval.v.port->next = NULL;
yyval.v.port->tail = yyval.v.port;
}
break;
case 303:
#line 3257 "../../freebsd/sbin/pfctl/parse.y"
{
if (parseport(yystack.l_mark[0].v.string, &yyval.v.range, 0) == -1) {
free(yystack.l_mark[0].v.string);
YYERROR;
}
free(yystack.l_mark[0].v.string);
}
break;
case 304:
#line 3266 "../../freebsd/sbin/pfctl/parse.y"
{
if (parseport(yystack.l_mark[0].v.string, &yyval.v.range, PPORT_RANGE) == -1) {
free(yystack.l_mark[0].v.string);
YYERROR;
}
free(yystack.l_mark[0].v.string);
}
break;
case 305:
#line 3275 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.uid = yystack.l_mark[0].v.uid; }
break;
case 306:
#line 3276 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.uid = yystack.l_mark[-1].v.uid; }
break;
case 307:
#line 3279 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.uid = yystack.l_mark[-1].v.uid; }
break;
case 308:
#line 3280 "../../freebsd/sbin/pfctl/parse.y"
{
yystack.l_mark[-3].v.uid->tail->next = yystack.l_mark[-1].v.uid;
yystack.l_mark[-3].v.uid->tail = yystack.l_mark[-1].v.uid;
yyval.v.uid = yystack.l_mark[-3].v.uid;
}
break;
case 309:
#line 3287 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.uid = calloc(1, sizeof(struct node_uid));
if (yyval.v.uid == NULL)
err(1, "uid_item: calloc");
yyval.v.uid->uid[0] = yystack.l_mark[0].v.number;
yyval.v.uid->uid[1] = yystack.l_mark[0].v.number;
yyval.v.uid->op = PF_OP_EQ;
yyval.v.uid->next = NULL;
yyval.v.uid->tail = yyval.v.uid;
}
break;
case 310:
#line 3297 "../../freebsd/sbin/pfctl/parse.y"
{
if (yystack.l_mark[0].v.number == UID_MAX && yystack.l_mark[-1].v.i != PF_OP_EQ && yystack.l_mark[-1].v.i != PF_OP_NE) {
yyerror("user unknown requires operator = or "
"!=");
YYERROR;
}
yyval.v.uid = calloc(1, sizeof(struct node_uid));
if (yyval.v.uid == NULL)
err(1, "uid_item: calloc");
yyval.v.uid->uid[0] = yystack.l_mark[0].v.number;
yyval.v.uid->uid[1] = yystack.l_mark[0].v.number;
yyval.v.uid->op = yystack.l_mark[-1].v.i;
yyval.v.uid->next = NULL;
yyval.v.uid->tail = yyval.v.uid;
}
break;
case 311:
#line 3312 "../../freebsd/sbin/pfctl/parse.y"
{
if (yystack.l_mark[-2].v.number == UID_MAX || yystack.l_mark[0].v.number == UID_MAX) {
yyerror("user unknown requires operator = or "
"!=");
YYERROR;
}
yyval.v.uid = calloc(1, sizeof(struct node_uid));
if (yyval.v.uid == NULL)
err(1, "uid_item: calloc");
yyval.v.uid->uid[0] = yystack.l_mark[-2].v.number;
yyval.v.uid->uid[1] = yystack.l_mark[0].v.number;
yyval.v.uid->op = yystack.l_mark[-1].v.i;
yyval.v.uid->next = NULL;
yyval.v.uid->tail = yyval.v.uid;
}
break;
case 312:
#line 3329 "../../freebsd/sbin/pfctl/parse.y"
{
if (!strcmp(yystack.l_mark[0].v.string, "unknown"))
yyval.v.number = UID_MAX;
else {
struct passwd *pw;
if ((pw = getpwnam(yystack.l_mark[0].v.string)) == NULL) {
yyerror("unknown user %s", yystack.l_mark[0].v.string);
free(yystack.l_mark[0].v.string);
YYERROR;
}
yyval.v.number = pw->pw_uid;
}
free(yystack.l_mark[0].v.string);
}
break;
case 313:
#line 3344 "../../freebsd/sbin/pfctl/parse.y"
{
if (yystack.l_mark[0].v.number < 0 || yystack.l_mark[0].v.number >= UID_MAX) {
yyerror("illegal uid value %lu", yystack.l_mark[0].v.number);
YYERROR;
}
yyval.v.number = yystack.l_mark[0].v.number;
}
break;
case 314:
#line 3353 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.gid = yystack.l_mark[0].v.gid; }
break;
case 315:
#line 3354 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.gid = yystack.l_mark[-1].v.gid; }
break;
case 316:
#line 3357 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.gid = yystack.l_mark[-1].v.gid; }
break;
case 317:
#line 3358 "../../freebsd/sbin/pfctl/parse.y"
{
yystack.l_mark[-3].v.gid->tail->next = yystack.l_mark[-1].v.gid;
yystack.l_mark[-3].v.gid->tail = yystack.l_mark[-1].v.gid;
yyval.v.gid = yystack.l_mark[-3].v.gid;
}
break;
case 318:
#line 3365 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.gid = calloc(1, sizeof(struct node_gid));
if (yyval.v.gid == NULL)
err(1, "gid_item: calloc");
yyval.v.gid->gid[0] = yystack.l_mark[0].v.number;
yyval.v.gid->gid[1] = yystack.l_mark[0].v.number;
yyval.v.gid->op = PF_OP_EQ;
yyval.v.gid->next = NULL;
yyval.v.gid->tail = yyval.v.gid;
}
break;
case 319:
#line 3375 "../../freebsd/sbin/pfctl/parse.y"
{
if (yystack.l_mark[0].v.number == GID_MAX && yystack.l_mark[-1].v.i != PF_OP_EQ && yystack.l_mark[-1].v.i != PF_OP_NE) {
yyerror("group unknown requires operator = or "
"!=");
YYERROR;
}
yyval.v.gid = calloc(1, sizeof(struct node_gid));
if (yyval.v.gid == NULL)
err(1, "gid_item: calloc");
yyval.v.gid->gid[0] = yystack.l_mark[0].v.number;
yyval.v.gid->gid[1] = yystack.l_mark[0].v.number;
yyval.v.gid->op = yystack.l_mark[-1].v.i;
yyval.v.gid->next = NULL;
yyval.v.gid->tail = yyval.v.gid;
}
break;
case 320:
#line 3390 "../../freebsd/sbin/pfctl/parse.y"
{
if (yystack.l_mark[-2].v.number == GID_MAX || yystack.l_mark[0].v.number == GID_MAX) {
yyerror("group unknown requires operator = or "
"!=");
YYERROR;
}
yyval.v.gid = calloc(1, sizeof(struct node_gid));
if (yyval.v.gid == NULL)
err(1, "gid_item: calloc");
yyval.v.gid->gid[0] = yystack.l_mark[-2].v.number;
yyval.v.gid->gid[1] = yystack.l_mark[0].v.number;
yyval.v.gid->op = yystack.l_mark[-1].v.i;
yyval.v.gid->next = NULL;
yyval.v.gid->tail = yyval.v.gid;
}
break;
case 321:
#line 3407 "../../freebsd/sbin/pfctl/parse.y"
{
if (!strcmp(yystack.l_mark[0].v.string, "unknown"))
yyval.v.number = GID_MAX;
else {
struct group *grp;
if ((grp = getgrnam(yystack.l_mark[0].v.string)) == NULL) {
yyerror("unknown group %s", yystack.l_mark[0].v.string);
free(yystack.l_mark[0].v.string);
YYERROR;
}
yyval.v.number = grp->gr_gid;
}
free(yystack.l_mark[0].v.string);
}
break;
case 322:
#line 3422 "../../freebsd/sbin/pfctl/parse.y"
{
if (yystack.l_mark[0].v.number < 0 || yystack.l_mark[0].v.number >= GID_MAX) {
yyerror("illegal gid value %lu", yystack.l_mark[0].v.number);
YYERROR;
}
yyval.v.number = yystack.l_mark[0].v.number;
}
break;
case 323:
#line 3431 "../../freebsd/sbin/pfctl/parse.y"
{
int f;
if ((f = parse_flags(yystack.l_mark[0].v.string)) < 0) {
yyerror("bad flags %s", yystack.l_mark[0].v.string);
free(yystack.l_mark[0].v.string);
YYERROR;
}
free(yystack.l_mark[0].v.string);
yyval.v.b.b1 = f;
}
break;
case 324:
#line 3444 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.b.b1 = yystack.l_mark[-2].v.b.b1; yyval.v.b.b2 = yystack.l_mark[0].v.b.b1; }
break;
case 325:
#line 3445 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.b.b1 = 0; yyval.v.b.b2 = yystack.l_mark[0].v.b.b1; }
break;
case 326:
#line 3446 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.b.b1 = 0; yyval.v.b.b2 = 0; }
break;
case 327:
#line 3449 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.icmp = yystack.l_mark[0].v.icmp; }
break;
case 328:
#line 3450 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.icmp = yystack.l_mark[-1].v.icmp; }
break;
case 329:
#line 3451 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.icmp = yystack.l_mark[0].v.icmp; }
break;
case 330:
#line 3452 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.icmp = yystack.l_mark[-1].v.icmp; }
break;
case 331:
#line 3455 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.icmp = yystack.l_mark[-1].v.icmp; }
break;
case 332:
#line 3456 "../../freebsd/sbin/pfctl/parse.y"
{
yystack.l_mark[-3].v.icmp->tail->next = yystack.l_mark[-1].v.icmp;
yystack.l_mark[-3].v.icmp->tail = yystack.l_mark[-1].v.icmp;
yyval.v.icmp = yystack.l_mark[-3].v.icmp;
}
break;
case 333:
#line 3463 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.icmp = yystack.l_mark[-1].v.icmp; }
break;
case 334:
#line 3464 "../../freebsd/sbin/pfctl/parse.y"
{
yystack.l_mark[-3].v.icmp->tail->next = yystack.l_mark[-1].v.icmp;
yystack.l_mark[-3].v.icmp->tail = yystack.l_mark[-1].v.icmp;
yyval.v.icmp = yystack.l_mark[-3].v.icmp;
}
break;
case 335:
#line 3471 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.icmp = calloc(1, sizeof(struct node_icmp));
if (yyval.v.icmp == NULL)
err(1, "icmp_item: calloc");
yyval.v.icmp->type = yystack.l_mark[0].v.number;
yyval.v.icmp->code = 0;
yyval.v.icmp->proto = IPPROTO_ICMP;
yyval.v.icmp->next = NULL;
yyval.v.icmp->tail = yyval.v.icmp;
}
break;
case 336:
#line 3481 "../../freebsd/sbin/pfctl/parse.y"
{
const struct icmpcodeent *p;
if ((p = geticmpcodebyname(yystack.l_mark[-2].v.number-1, yystack.l_mark[0].v.string, AF_INET)) == NULL) {
yyerror("unknown icmp-code %s", yystack.l_mark[0].v.string);
free(yystack.l_mark[0].v.string);
YYERROR;
}
free(yystack.l_mark[0].v.string);
yyval.v.icmp = calloc(1, sizeof(struct node_icmp));
if (yyval.v.icmp == NULL)
err(1, "icmp_item: calloc");
yyval.v.icmp->type = yystack.l_mark[-2].v.number;
yyval.v.icmp->code = p->code + 1;
yyval.v.icmp->proto = IPPROTO_ICMP;
yyval.v.icmp->next = NULL;
yyval.v.icmp->tail = yyval.v.icmp;
}
break;
case 337:
#line 3500 "../../freebsd/sbin/pfctl/parse.y"
{
if (yystack.l_mark[0].v.number < 0 || yystack.l_mark[0].v.number > 255) {
yyerror("illegal icmp-code %lu", yystack.l_mark[0].v.number);
YYERROR;
}
yyval.v.icmp = calloc(1, sizeof(struct node_icmp));
if (yyval.v.icmp == NULL)
err(1, "icmp_item: calloc");
yyval.v.icmp->type = yystack.l_mark[-2].v.number;
yyval.v.icmp->code = yystack.l_mark[0].v.number + 1;
yyval.v.icmp->proto = IPPROTO_ICMP;
yyval.v.icmp->next = NULL;
yyval.v.icmp->tail = yyval.v.icmp;
}
break;
case 338:
#line 3516 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.icmp = calloc(1, sizeof(struct node_icmp));
if (yyval.v.icmp == NULL)
err(1, "icmp_item: calloc");
yyval.v.icmp->type = yystack.l_mark[0].v.number;
yyval.v.icmp->code = 0;
yyval.v.icmp->proto = IPPROTO_ICMPV6;
yyval.v.icmp->next = NULL;
yyval.v.icmp->tail = yyval.v.icmp;
}
break;
case 339:
#line 3526 "../../freebsd/sbin/pfctl/parse.y"
{
const struct icmpcodeent *p;
if ((p = geticmpcodebyname(yystack.l_mark[-2].v.number-1, yystack.l_mark[0].v.string, AF_INET6)) == NULL) {
yyerror("unknown icmp6-code %s", yystack.l_mark[0].v.string);
free(yystack.l_mark[0].v.string);
YYERROR;
}
free(yystack.l_mark[0].v.string);
yyval.v.icmp = calloc(1, sizeof(struct node_icmp));
if (yyval.v.icmp == NULL)
err(1, "icmp_item: calloc");
yyval.v.icmp->type = yystack.l_mark[-2].v.number;
yyval.v.icmp->code = p->code + 1;
yyval.v.icmp->proto = IPPROTO_ICMPV6;
yyval.v.icmp->next = NULL;
yyval.v.icmp->tail = yyval.v.icmp;
}
break;
case 340:
#line 3545 "../../freebsd/sbin/pfctl/parse.y"
{
if (yystack.l_mark[0].v.number < 0 || yystack.l_mark[0].v.number > 255) {
yyerror("illegal icmp-code %lu", yystack.l_mark[0].v.number);
YYERROR;
}
yyval.v.icmp = calloc(1, sizeof(struct node_icmp));
if (yyval.v.icmp == NULL)
err(1, "icmp_item: calloc");
yyval.v.icmp->type = yystack.l_mark[-2].v.number;
yyval.v.icmp->code = yystack.l_mark[0].v.number + 1;
yyval.v.icmp->proto = IPPROTO_ICMPV6;
yyval.v.icmp->next = NULL;
yyval.v.icmp->tail = yyval.v.icmp;
}
break;
case 341:
#line 3561 "../../freebsd/sbin/pfctl/parse.y"
{
const struct icmptypeent *p;
if ((p = geticmptypebyname(yystack.l_mark[0].v.string, AF_INET)) == NULL) {
yyerror("unknown icmp-type %s", yystack.l_mark[0].v.string);
free(yystack.l_mark[0].v.string);
YYERROR;
}
yyval.v.number = p->type + 1;
free(yystack.l_mark[0].v.string);
}
break;
case 342:
#line 3572 "../../freebsd/sbin/pfctl/parse.y"
{
if (yystack.l_mark[0].v.number < 0 || yystack.l_mark[0].v.number > 255) {
yyerror("illegal icmp-type %lu", yystack.l_mark[0].v.number);
YYERROR;
}
yyval.v.number = yystack.l_mark[0].v.number + 1;
}
break;
case 343:
#line 3581 "../../freebsd/sbin/pfctl/parse.y"
{
const struct icmptypeent *p;
if ((p = geticmptypebyname(yystack.l_mark[0].v.string, AF_INET6)) ==
NULL) {
yyerror("unknown icmp6-type %s", yystack.l_mark[0].v.string);
free(yystack.l_mark[0].v.string);
YYERROR;
}
yyval.v.number = p->type + 1;
free(yystack.l_mark[0].v.string);
}
break;
case 344:
#line 3593 "../../freebsd/sbin/pfctl/parse.y"
{
if (yystack.l_mark[0].v.number < 0 || yystack.l_mark[0].v.number > 255) {
yyerror("illegal icmp6-type %lu", yystack.l_mark[0].v.number);
YYERROR;
}
yyval.v.number = yystack.l_mark[0].v.number + 1;
}
break;
case 345:
#line 3602 "../../freebsd/sbin/pfctl/parse.y"
{
if (!strcmp(yystack.l_mark[0].v.string, "lowdelay"))
yyval.v.number = IPTOS_LOWDELAY;
else if (!strcmp(yystack.l_mark[0].v.string, "throughput"))
yyval.v.number = IPTOS_THROUGHPUT;
else if (!strcmp(yystack.l_mark[0].v.string, "reliability"))
yyval.v.number = IPTOS_RELIABILITY;
else if (yystack.l_mark[0].v.string[0] == '0' && yystack.l_mark[0].v.string[1] == 'x')
yyval.v.number = strtoul(yystack.l_mark[0].v.string, NULL, 16);
else
yyval.v.number = 256; /* flag bad argument */
if (yyval.v.number < 0 || yyval.v.number > 255) {
yyerror("illegal tos value %s", yystack.l_mark[0].v.string);
free(yystack.l_mark[0].v.string);
YYERROR;
}
free(yystack.l_mark[0].v.string);
}
break;
case 346:
#line 3620 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.number = yystack.l_mark[0].v.number;
if (yyval.v.number < 0 || yyval.v.number > 255) {
yyerror("illegal tos value %s", yystack.l_mark[0].v.number);
YYERROR;
}
}
break;
case 347:
#line 3629 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.i = PF_SRCTRACK; }
break;
case 348:
#line 3630 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.i = PF_SRCTRACK_GLOBAL; }
break;
case 349:
#line 3631 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.i = PF_SRCTRACK_RULE; }
break;
case 350:
#line 3634 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.i = PFRULE_IFBOUND;
}
break;
case 351:
#line 3637 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.i = 0;
}
break;
case 352:
#line 3642 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.keep_state.action = 0;
yyval.v.keep_state.options = NULL;
}
break;
case 353:
#line 3646 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.keep_state.action = PF_STATE_NORMAL;
yyval.v.keep_state.options = yystack.l_mark[0].v.state_opt;
}
break;
case 354:
#line 3650 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.keep_state.action = PF_STATE_MODULATE;
yyval.v.keep_state.options = yystack.l_mark[0].v.state_opt;
}
break;
case 355:
#line 3654 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.keep_state.action = PF_STATE_SYNPROXY;
yyval.v.keep_state.options = yystack.l_mark[0].v.state_opt;
}
break;
case 356:
#line 3660 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.i = 0; }
break;
case 357:
#line 3661 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.i = PF_FLUSH; }
break;
case 358:
#line 3662 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.i = PF_FLUSH | PF_FLUSH_GLOBAL;
}
break;
case 359:
#line 3667 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.state_opt = yystack.l_mark[-1].v.state_opt; }
break;
case 360:
#line 3668 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.state_opt = NULL; }
break;
case 361:
#line 3671 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.state_opt = yystack.l_mark[0].v.state_opt; }
break;
case 362:
#line 3672 "../../freebsd/sbin/pfctl/parse.y"
{
yystack.l_mark[-2].v.state_opt->tail->next = yystack.l_mark[0].v.state_opt;
yystack.l_mark[-2].v.state_opt->tail = yystack.l_mark[0].v.state_opt;
yyval.v.state_opt = yystack.l_mark[-2].v.state_opt;
}
break;
case 363:
#line 3679 "../../freebsd/sbin/pfctl/parse.y"
{
if (yystack.l_mark[0].v.number < 0 || yystack.l_mark[0].v.number > UINT_MAX) {
yyerror("only positive values permitted");
YYERROR;
}
yyval.v.state_opt = calloc(1, sizeof(struct node_state_opt));
if (yyval.v.state_opt == NULL)
err(1, "state_opt_item: calloc");
yyval.v.state_opt->type = PF_STATE_OPT_MAX;
yyval.v.state_opt->data.max_states = yystack.l_mark[0].v.number;
yyval.v.state_opt->next = NULL;
yyval.v.state_opt->tail = yyval.v.state_opt;
}
break;
case 364:
#line 3692 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.state_opt = calloc(1, sizeof(struct node_state_opt));
if (yyval.v.state_opt == NULL)
err(1, "state_opt_item: calloc");
yyval.v.state_opt->type = PF_STATE_OPT_NOSYNC;
yyval.v.state_opt->next = NULL;
yyval.v.state_opt->tail = yyval.v.state_opt;
}
break;
case 365:
#line 3700 "../../freebsd/sbin/pfctl/parse.y"
{
if (yystack.l_mark[0].v.number < 0 || yystack.l_mark[0].v.number > UINT_MAX) {
yyerror("only positive values permitted");
YYERROR;
}
yyval.v.state_opt = calloc(1, sizeof(struct node_state_opt));
if (yyval.v.state_opt == NULL)
err(1, "state_opt_item: calloc");
yyval.v.state_opt->type = PF_STATE_OPT_MAX_SRC_STATES;
yyval.v.state_opt->data.max_src_states = yystack.l_mark[0].v.number;
yyval.v.state_opt->next = NULL;
yyval.v.state_opt->tail = yyval.v.state_opt;
}
break;
case 366:
#line 3713 "../../freebsd/sbin/pfctl/parse.y"
{
if (yystack.l_mark[0].v.number < 0 || yystack.l_mark[0].v.number > UINT_MAX) {
yyerror("only positive values permitted");
YYERROR;
}
yyval.v.state_opt = calloc(1, sizeof(struct node_state_opt));
if (yyval.v.state_opt == NULL)
err(1, "state_opt_item: calloc");
yyval.v.state_opt->type = PF_STATE_OPT_MAX_SRC_CONN;
yyval.v.state_opt->data.max_src_conn = yystack.l_mark[0].v.number;
yyval.v.state_opt->next = NULL;
yyval.v.state_opt->tail = yyval.v.state_opt;
}
break;
case 367:
#line 3726 "../../freebsd/sbin/pfctl/parse.y"
{
if (yystack.l_mark[-2].v.number < 0 || yystack.l_mark[-2].v.number > UINT_MAX ||
yystack.l_mark[0].v.number < 0 || yystack.l_mark[0].v.number > UINT_MAX) {
yyerror("only positive values permitted");
YYERROR;
}
yyval.v.state_opt = calloc(1, sizeof(struct node_state_opt));
if (yyval.v.state_opt == NULL)
err(1, "state_opt_item: calloc");
yyval.v.state_opt->type = PF_STATE_OPT_MAX_SRC_CONN_RATE;
yyval.v.state_opt->data.max_src_conn_rate.limit = yystack.l_mark[-2].v.number;
yyval.v.state_opt->data.max_src_conn_rate.seconds = yystack.l_mark[0].v.number;
yyval.v.state_opt->next = NULL;
yyval.v.state_opt->tail = yyval.v.state_opt;
}
break;
case 368:
#line 3741 "../../freebsd/sbin/pfctl/parse.y"
{
if (strlen(yystack.l_mark[-2].v.string) >= PF_TABLE_NAME_SIZE) {
yyerror("table name '%s' too long", yystack.l_mark[-2].v.string);
free(yystack.l_mark[-2].v.string);
YYERROR;
}
yyval.v.state_opt = calloc(1, sizeof(struct node_state_opt));
if (yyval.v.state_opt == NULL)
err(1, "state_opt_item: calloc");
if (strlcpy(yyval.v.state_opt->data.overload.tblname, yystack.l_mark[-2].v.string,
PF_TABLE_NAME_SIZE) >= PF_TABLE_NAME_SIZE)
errx(1, "state_opt_item: strlcpy");
free(yystack.l_mark[-2].v.string);
yyval.v.state_opt->type = PF_STATE_OPT_OVERLOAD;
yyval.v.state_opt->data.overload.flush = yystack.l_mark[0].v.i;
yyval.v.state_opt->next = NULL;
yyval.v.state_opt->tail = yyval.v.state_opt;
}
break;
case 369:
#line 3759 "../../freebsd/sbin/pfctl/parse.y"
{
if (yystack.l_mark[0].v.number < 0 || yystack.l_mark[0].v.number > UINT_MAX) {
yyerror("only positive values permitted");
YYERROR;
}
yyval.v.state_opt = calloc(1, sizeof(struct node_state_opt));
if (yyval.v.state_opt == NULL)
err(1, "state_opt_item: calloc");
yyval.v.state_opt->type = PF_STATE_OPT_MAX_SRC_NODES;
yyval.v.state_opt->data.max_src_nodes = yystack.l_mark[0].v.number;
yyval.v.state_opt->next = NULL;
yyval.v.state_opt->tail = yyval.v.state_opt;
}
break;
case 370:
#line 3772 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.state_opt = calloc(1, sizeof(struct node_state_opt));
if (yyval.v.state_opt == NULL)
err(1, "state_opt_item: calloc");
yyval.v.state_opt->type = PF_STATE_OPT_SRCTRACK;
yyval.v.state_opt->data.src_track = yystack.l_mark[0].v.i;
yyval.v.state_opt->next = NULL;
yyval.v.state_opt->tail = yyval.v.state_opt;
}
break;
case 371:
#line 3781 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.state_opt = calloc(1, sizeof(struct node_state_opt));
if (yyval.v.state_opt == NULL)
err(1, "state_opt_item: calloc");
yyval.v.state_opt->type = PF_STATE_OPT_STATELOCK;
yyval.v.state_opt->data.statelock = yystack.l_mark[0].v.i;
yyval.v.state_opt->next = NULL;
yyval.v.state_opt->tail = yyval.v.state_opt;
}
break;
case 372:
#line 3790 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.state_opt = calloc(1, sizeof(struct node_state_opt));
if (yyval.v.state_opt == NULL)
err(1, "state_opt_item: calloc");
yyval.v.state_opt->type = PF_STATE_OPT_SLOPPY;
yyval.v.state_opt->next = NULL;
yyval.v.state_opt->tail = yyval.v.state_opt;
}
break;
case 373:
#line 3798 "../../freebsd/sbin/pfctl/parse.y"
{
int i;
if (yystack.l_mark[0].v.number < 0 || yystack.l_mark[0].v.number > UINT_MAX) {
yyerror("only positive values permitted");
YYERROR;
}
for (i = 0; pf_timeouts[i].name &&
strcmp(pf_timeouts[i].name, yystack.l_mark[-1].v.string); ++i)
; /* nothing */
if (!pf_timeouts[i].name) {
yyerror("illegal timeout name %s", yystack.l_mark[-1].v.string);
free(yystack.l_mark[-1].v.string);
YYERROR;
}
if (strchr(pf_timeouts[i].name, '.') == NULL) {
yyerror("illegal state timeout %s", yystack.l_mark[-1].v.string);
free(yystack.l_mark[-1].v.string);
YYERROR;
}
free(yystack.l_mark[-1].v.string);
yyval.v.state_opt = calloc(1, sizeof(struct node_state_opt));
if (yyval.v.state_opt == NULL)
err(1, "state_opt_item: calloc");
yyval.v.state_opt->type = PF_STATE_OPT_TIMEOUT;
yyval.v.state_opt->data.timeout.number = pf_timeouts[i].timeout;
yyval.v.state_opt->data.timeout.seconds = yystack.l_mark[0].v.number;
yyval.v.state_opt->next = NULL;
yyval.v.state_opt->tail = yyval.v.state_opt;
}
break;
case 374:
#line 3830 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.string = yystack.l_mark[0].v.string;
}
break;
case 375:
#line 3835 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.qassign.qname = yystack.l_mark[0].v.string;
yyval.v.qassign.pqname = NULL;
}
break;
case 376:
#line 3839 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.qassign.qname = yystack.l_mark[-1].v.string;
yyval.v.qassign.pqname = NULL;
}
break;
case 377:
#line 3843 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.qassign.qname = yystack.l_mark[-3].v.string;
yyval.v.qassign.pqname = yystack.l_mark[-1].v.string;
}
break;
case 378:
#line 3849 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.i = 0; }
break;
case 379:
#line 3850 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.i = 1; }
break;
case 380:
#line 3853 "../../freebsd/sbin/pfctl/parse.y"
{
if (parseport(yystack.l_mark[0].v.string, &yyval.v.range, PPORT_RANGE|PPORT_STAR) == -1) {
free(yystack.l_mark[0].v.string);
YYERROR;
}
free(yystack.l_mark[0].v.string);
}
break;
case 381:
#line 3862 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.host = yystack.l_mark[0].v.host; }
break;
case 382:
#line 3863 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.host = yystack.l_mark[-1].v.host; }
break;
case 383:
#line 3866 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.host = yystack.l_mark[-1].v.host; }
break;
case 384:
#line 3867 "../../freebsd/sbin/pfctl/parse.y"
{
yystack.l_mark[-3].v.host->tail->next = yystack.l_mark[-1].v.host;
yystack.l_mark[-3].v.host->tail = yystack.l_mark[-1].v.host->tail;
yyval.v.host = yystack.l_mark[-3].v.host;
}
break;
case 385:
#line 3874 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.redirection = NULL; }
break;
case 386:
#line 3875 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.redirection = calloc(1, sizeof(struct redirection));
if (yyval.v.redirection == NULL)
err(1, "redirection: calloc");
yyval.v.redirection->host = yystack.l_mark[0].v.host;
yyval.v.redirection->rport.a = yyval.v.redirection->rport.b = yyval.v.redirection->rport.t = 0;
}
break;
case 387:
#line 3882 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.redirection = calloc(1, sizeof(struct redirection));
if (yyval.v.redirection == NULL)
err(1, "redirection: calloc");
yyval.v.redirection->host = yystack.l_mark[-2].v.host;
yyval.v.redirection->rport = yystack.l_mark[0].v.range;
}
break;
case 388:
#line 3892 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.hashkey = calloc(1, sizeof(struct pf_poolhashkey));
if (yyval.v.hashkey == NULL)
err(1, "hashkey: calloc");
yyval.v.hashkey->key32[0] = arc4random();
yyval.v.hashkey->key32[1] = arc4random();
yyval.v.hashkey->key32[2] = arc4random();
yyval.v.hashkey->key32[3] = arc4random();
}
break;
case 389:
#line 3902 "../../freebsd/sbin/pfctl/parse.y"
{
if (!strncmp(yystack.l_mark[0].v.string, "0x", 2)) {
if (strlen(yystack.l_mark[0].v.string) != 34) {
free(yystack.l_mark[0].v.string);
yyerror("hex key must be 128 bits "
"(32 hex digits) long");
YYERROR;
}
yyval.v.hashkey = calloc(1, sizeof(struct pf_poolhashkey));
if (yyval.v.hashkey == NULL)
err(1, "hashkey: calloc");
if (sscanf(yystack.l_mark[0].v.string, "0x%8x%8x%8x%8x",
&yyval.v.hashkey->key32[0], &yyval.v.hashkey->key32[1],
&yyval.v.hashkey->key32[2], &yyval.v.hashkey->key32[3]) != 4) {
free(yyval.v.hashkey);
free(yystack.l_mark[0].v.string);
yyerror("invalid hex key");
YYERROR;
}
} else {
MD5_CTX context;
yyval.v.hashkey = calloc(1, sizeof(struct pf_poolhashkey));
if (yyval.v.hashkey == NULL)
err(1, "hashkey: calloc");
MD5Init(&context);
MD5Update(&context, (unsigned char *)yystack.l_mark[0].v.string,
strlen(yystack.l_mark[0].v.string));
MD5Final((unsigned char *)yyval.v.hashkey, &context);
HTONL(yyval.v.hashkey->key32[0]);
HTONL(yyval.v.hashkey->key32[1]);
HTONL(yyval.v.hashkey->key32[2]);
HTONL(yyval.v.hashkey->key32[3]);
}
free(yystack.l_mark[0].v.string);
}
break;
case 390:
#line 3941 "../../freebsd/sbin/pfctl/parse.y"
{ bzero(&pool_opts, sizeof pool_opts); }
break;
case 391:
#line 3943 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.pool_opts = pool_opts; }
break;
case 392:
#line 3944 "../../freebsd/sbin/pfctl/parse.y"
{
bzero(&pool_opts, sizeof pool_opts);
yyval.v.pool_opts = pool_opts;
}
break;
case 395:
#line 3954 "../../freebsd/sbin/pfctl/parse.y"
{
if (pool_opts.type) {
yyerror("pool type cannot be redefined");
YYERROR;
}
pool_opts.type = PF_POOL_BITMASK;
}
break;
case 396:
#line 3961 "../../freebsd/sbin/pfctl/parse.y"
{
if (pool_opts.type) {
yyerror("pool type cannot be redefined");
YYERROR;
}
pool_opts.type = PF_POOL_RANDOM;
}
break;
case 397:
#line 3968 "../../freebsd/sbin/pfctl/parse.y"
{
if (pool_opts.type) {
yyerror("pool type cannot be redefined");
YYERROR;
}
pool_opts.type = PF_POOL_SRCHASH;
pool_opts.key = yystack.l_mark[0].v.hashkey;
}
break;
case 398:
#line 3976 "../../freebsd/sbin/pfctl/parse.y"
{
if (pool_opts.type) {
yyerror("pool type cannot be redefined");
YYERROR;
}
pool_opts.type = PF_POOL_ROUNDROBIN;
}
break;
case 399:
#line 3983 "../../freebsd/sbin/pfctl/parse.y"
{
if (pool_opts.staticport) {
yyerror("static-port cannot be redefined");
YYERROR;
}
pool_opts.staticport = 1;
}
break;
case 400:
#line 3990 "../../freebsd/sbin/pfctl/parse.y"
{
if (filter_opts.marker & POM_STICKYADDRESS) {
yyerror("sticky-address cannot be redefined");
YYERROR;
}
pool_opts.marker |= POM_STICKYADDRESS;
pool_opts.opts |= PF_POOL_STICKYADDR;
}
break;
case 401:
#line 4000 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.redirection = NULL; }
break;
case 402:
#line 4001 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.redirection = calloc(1, sizeof(struct redirection));
if (yyval.v.redirection == NULL)
err(1, "redirection: calloc");
yyval.v.redirection->host = yystack.l_mark[0].v.host;
yyval.v.redirection->rport.a = yyval.v.redirection->rport.b = yyval.v.redirection->rport.t = 0;
}
break;
case 403:
#line 4008 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.redirection = calloc(1, sizeof(struct redirection));
if (yyval.v.redirection == NULL)
err(1, "redirection: calloc");
yyval.v.redirection->host = yystack.l_mark[-2].v.host;
yyval.v.redirection->rport = yystack.l_mark[0].v.range;
}
break;
case 404:
#line 4017 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.b.b1 = yyval.v.b.b2 = 0; yyval.v.b.w2 = 0; }
break;
case 405:
#line 4018 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.b.b1 = 1; yyval.v.b.b2 = 0; yyval.v.b.w2 = 0; }
break;
case 406:
#line 4019 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.b.b1 = 1; yyval.v.b.b2 = yystack.l_mark[0].v.logquick.log; yyval.v.b.w2 = yystack.l_mark[0].v.logquick.logif; }
break;
case 407:
#line 4020 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.b.b1 = 0; yyval.v.b.b2 = yystack.l_mark[0].v.logquick.log; yyval.v.b.w2 = yystack.l_mark[0].v.logquick.logif; }
break;
case 408:
#line 4023 "../../freebsd/sbin/pfctl/parse.y"
{
if (yystack.l_mark[-2].v.i && yystack.l_mark[0].v.b.b1) {
yyerror("\"pass\" not valid with \"no\"");
YYERROR;
}
if (yystack.l_mark[-2].v.i)
yyval.v.b.b1 = PF_NONAT;
else
yyval.v.b.b1 = PF_NAT;
yyval.v.b.b2 = yystack.l_mark[0].v.b.b1;
yyval.v.b.w = yystack.l_mark[0].v.b.b2;
yyval.v.b.w2 = yystack.l_mark[0].v.b.w2;
}
break;
case 409:
#line 4036 "../../freebsd/sbin/pfctl/parse.y"
{
if (yystack.l_mark[-2].v.i && yystack.l_mark[0].v.b.b1) {
yyerror("\"pass\" not valid with \"no\"");
YYERROR;
}
if (yystack.l_mark[-2].v.i)
yyval.v.b.b1 = PF_NORDR;
else
yyval.v.b.b1 = PF_RDR;
yyval.v.b.b2 = yystack.l_mark[0].v.b.b1;
yyval.v.b.w = yystack.l_mark[0].v.b.b2;
yyval.v.b.w2 = yystack.l_mark[0].v.b.w2;
}
break;
case 410:
#line 4053 "../../freebsd/sbin/pfctl/parse.y"
{
struct pf_rule r;
if (check_rulestate(PFCTL_STATE_NAT))
YYERROR;
memset(&r, 0, sizeof(r));
r.action = yystack.l_mark[-9].v.b.b1;
r.natpass = yystack.l_mark[-9].v.b.b2;
r.log = yystack.l_mark[-9].v.b.w;
r.logif = yystack.l_mark[-9].v.b.w2;
r.af = yystack.l_mark[-7].v.i;
if (!r.af) {
if (yystack.l_mark[-5].v.fromto.src.host && yystack.l_mark[-5].v.fromto.src.host->af &&
!yystack.l_mark[-5].v.fromto.src.host->ifindex)
r.af = yystack.l_mark[-5].v.fromto.src.host->af;
else if (yystack.l_mark[-5].v.fromto.dst.host && yystack.l_mark[-5].v.fromto.dst.host->af &&
!yystack.l_mark[-5].v.fromto.dst.host->ifindex)
r.af = yystack.l_mark[-5].v.fromto.dst.host->af;
}
if (yystack.l_mark[-4].v.string != NULL)
if (strlcpy(r.tagname, yystack.l_mark[-4].v.string, PF_TAG_NAME_SIZE) >=
PF_TAG_NAME_SIZE) {
yyerror("tag too long, max %u chars",
PF_TAG_NAME_SIZE - 1);
YYERROR;
}
if (yystack.l_mark[-3].v.tagged.name)
if (strlcpy(r.match_tagname, yystack.l_mark[-3].v.tagged.name,
PF_TAG_NAME_SIZE) >= PF_TAG_NAME_SIZE) {
yyerror("tag too long, max %u chars",
PF_TAG_NAME_SIZE - 1);
YYERROR;
}
r.match_tag_not = yystack.l_mark[-3].v.tagged.neg;
r.rtableid = yystack.l_mark[-2].v.rtableid;
if (r.action == PF_NONAT || r.action == PF_NORDR) {
if (yystack.l_mark[-1].v.redirection != NULL) {
yyerror("translation rule with 'no' "
"does not need '->'");
YYERROR;
}
} else {
if (yystack.l_mark[-1].v.redirection == NULL || yystack.l_mark[-1].v.redirection->host == NULL) {
yyerror("translation rule requires '-> "
"address'");
YYERROR;
}
if (!r.af && ! yystack.l_mark[-1].v.redirection->host->ifindex)
r.af = yystack.l_mark[-1].v.redirection->host->af;
remove_invalid_hosts(&yystack.l_mark[-1].v.redirection->host, &r.af);
if (invalid_redirect(yystack.l_mark[-1].v.redirection->host, r.af))
YYERROR;
if (check_netmask(yystack.l_mark[-1].v.redirection->host, r.af))
YYERROR;
r.rpool.proxy_port[0] = ntohs(yystack.l_mark[-1].v.redirection->rport.a);
switch (r.action) {
case PF_RDR:
if (!yystack.l_mark[-1].v.redirection->rport.b && yystack.l_mark[-1].v.redirection->rport.t &&
yystack.l_mark[-5].v.fromto.dst.port != NULL) {
r.rpool.proxy_port[1] =
ntohs(yystack.l_mark[-1].v.redirection->rport.a) +
(ntohs(
yystack.l_mark[-5].v.fromto.dst.port->port[1]) -
ntohs(
yystack.l_mark[-5].v.fromto.dst.port->port[0]));
} else
r.rpool.proxy_port[1] =
ntohs(yystack.l_mark[-1].v.redirection->rport.b);
break;
case PF_NAT:
r.rpool.proxy_port[1] =
ntohs(yystack.l_mark[-1].v.redirection->rport.b);
if (!r.rpool.proxy_port[0] &&
!r.rpool.proxy_port[1]) {
r.rpool.proxy_port[0] =
PF_NAT_PROXY_PORT_LOW;
r.rpool.proxy_port[1] =
PF_NAT_PROXY_PORT_HIGH;
} else if (!r.rpool.proxy_port[1])
r.rpool.proxy_port[1] =
r.rpool.proxy_port[0];
break;
default:
break;
}
r.rpool.opts = yystack.l_mark[0].v.pool_opts.type;
if ((r.rpool.opts & PF_POOL_TYPEMASK) ==
PF_POOL_NONE && (yystack.l_mark[-1].v.redirection->host->next != NULL ||
yystack.l_mark[-1].v.redirection->host->addr.type == PF_ADDR_TABLE ||
DYNIF_MULTIADDR(yystack.l_mark[-1].v.redirection->host->addr)))
r.rpool.opts = PF_POOL_ROUNDROBIN;
if ((r.rpool.opts & PF_POOL_TYPEMASK) !=
PF_POOL_ROUNDROBIN &&
disallow_table(yystack.l_mark[-1].v.redirection->host, "tables are only "
"supported in round-robin redirection "
"pools"))
YYERROR;
if ((r.rpool.opts & PF_POOL_TYPEMASK) !=
PF_POOL_ROUNDROBIN &&
disallow_alias(yystack.l_mark[-1].v.redirection->host, "interface (%s) "
"is only supported in round-robin "
"redirection pools"))
YYERROR;
if (yystack.l_mark[-1].v.redirection->host->next != NULL) {
if ((r.rpool.opts & PF_POOL_TYPEMASK) !=
PF_POOL_ROUNDROBIN) {
yyerror("only round-robin "
"valid for multiple "
"redirection addresses");
YYERROR;
}
}
}
if (yystack.l_mark[0].v.pool_opts.key != NULL)
memcpy(&r.rpool.key, yystack.l_mark[0].v.pool_opts.key,
sizeof(struct pf_poolhashkey));
if (yystack.l_mark[0].v.pool_opts.opts)
r.rpool.opts |= yystack.l_mark[0].v.pool_opts.opts;
if (yystack.l_mark[0].v.pool_opts.staticport) {
if (r.action != PF_NAT) {
yyerror("the 'static-port' option is "
"only valid with nat rules");
YYERROR;
}
if (r.rpool.proxy_port[0] !=
PF_NAT_PROXY_PORT_LOW &&
r.rpool.proxy_port[1] !=
PF_NAT_PROXY_PORT_HIGH) {
yyerror("the 'static-port' option can't"
" be used when specifying a port"
" range");
YYERROR;
}
r.rpool.proxy_port[0] = 0;
r.rpool.proxy_port[1] = 0;
}
expand_rule(&r, yystack.l_mark[-8].v.interface, yystack.l_mark[-1].v.redirection == NULL ? NULL : yystack.l_mark[-1].v.redirection->host, yystack.l_mark[-6].v.proto,
yystack.l_mark[-5].v.fromto.src_os, yystack.l_mark[-5].v.fromto.src.host, yystack.l_mark[-5].v.fromto.src.port, yystack.l_mark[-5].v.fromto.dst.host,
yystack.l_mark[-5].v.fromto.dst.port, 0, 0, 0, "");
free(yystack.l_mark[-1].v.redirection);
}
break;
case 411:
#line 4212 "../../freebsd/sbin/pfctl/parse.y"
{
struct pf_rule binat;
struct pf_pooladdr *pa;
if (check_rulestate(PFCTL_STATE_NAT))
YYERROR;
if (disallow_urpf_failed(yystack.l_mark[-4].v.host, "\"urpf-failed\" is not "
"permitted as a binat destination"))
YYERROR;
memset(&binat, 0, sizeof(binat));
if (yystack.l_mark[-12].v.i && yystack.l_mark[-10].v.b.b1) {
yyerror("\"pass\" not valid with \"no\"");
YYERROR;
}
if (yystack.l_mark[-12].v.i)
binat.action = PF_NOBINAT;
else
binat.action = PF_BINAT;
binat.natpass = yystack.l_mark[-10].v.b.b1;
binat.log = yystack.l_mark[-10].v.b.b2;
binat.logif = yystack.l_mark[-10].v.b.w2;
binat.af = yystack.l_mark[-8].v.i;
if (!binat.af && yystack.l_mark[-5].v.host != NULL && yystack.l_mark[-5].v.host->af)
binat.af = yystack.l_mark[-5].v.host->af;
if (!binat.af && yystack.l_mark[-4].v.host != NULL && yystack.l_mark[-4].v.host->af)
binat.af = yystack.l_mark[-4].v.host->af;
if (!binat.af && yystack.l_mark[0].v.redirection != NULL && yystack.l_mark[0].v.redirection->host)
binat.af = yystack.l_mark[0].v.redirection->host->af;
if (!binat.af) {
yyerror("address family (inet/inet6) "
"undefined");
YYERROR;
}
if (yystack.l_mark[-9].v.interface != NULL) {
memcpy(binat.ifname, yystack.l_mark[-9].v.interface->ifname,
sizeof(binat.ifname));
binat.ifnot = yystack.l_mark[-9].v.interface->not;
free(yystack.l_mark[-9].v.interface);
}
if (yystack.l_mark[-3].v.string != NULL)
if (strlcpy(binat.tagname, yystack.l_mark[-3].v.string,
PF_TAG_NAME_SIZE) >= PF_TAG_NAME_SIZE) {
yyerror("tag too long, max %u chars",
PF_TAG_NAME_SIZE - 1);
YYERROR;
}
if (yystack.l_mark[-2].v.tagged.name)
if (strlcpy(binat.match_tagname, yystack.l_mark[-2].v.tagged.name,
PF_TAG_NAME_SIZE) >= PF_TAG_NAME_SIZE) {
yyerror("tag too long, max %u chars",
PF_TAG_NAME_SIZE - 1);
YYERROR;
}
binat.match_tag_not = yystack.l_mark[-2].v.tagged.neg;
binat.rtableid = yystack.l_mark[-1].v.rtableid;
if (yystack.l_mark[-7].v.proto != NULL) {
binat.proto = yystack.l_mark[-7].v.proto->proto;
free(yystack.l_mark[-7].v.proto);
}
if (yystack.l_mark[-5].v.host != NULL && disallow_table(yystack.l_mark[-5].v.host, "invalid use of "
"table <%s> as the source address of a binat rule"))
YYERROR;
if (yystack.l_mark[-5].v.host != NULL && disallow_alias(yystack.l_mark[-5].v.host, "invalid use of "
"interface (%s) as the source address of a binat "
"rule"))
YYERROR;
if (yystack.l_mark[0].v.redirection != NULL && yystack.l_mark[0].v.redirection->host != NULL && disallow_table(
yystack.l_mark[0].v.redirection->host, "invalid use of table <%s> as the "
"redirect address of a binat rule"))
YYERROR;
if (yystack.l_mark[0].v.redirection != NULL && yystack.l_mark[0].v.redirection->host != NULL && disallow_alias(
yystack.l_mark[0].v.redirection->host, "invalid use of interface (%s) as the "
"redirect address of a binat rule"))
YYERROR;
if (yystack.l_mark[-5].v.host != NULL) {
if (yystack.l_mark[-5].v.host->next) {
yyerror("multiple binat ip addresses");
YYERROR;
}
if (yystack.l_mark[-5].v.host->addr.type == PF_ADDR_DYNIFTL)
yystack.l_mark[-5].v.host->af = binat.af;
if (yystack.l_mark[-5].v.host->af != binat.af) {
yyerror("binat ip versions must match");
YYERROR;
}
if (check_netmask(yystack.l_mark[-5].v.host, binat.af))
YYERROR;
memcpy(&binat.src.addr, &yystack.l_mark[-5].v.host->addr,
sizeof(binat.src.addr));
free(yystack.l_mark[-5].v.host);
}
if (yystack.l_mark[-4].v.host != NULL) {
if (yystack.l_mark[-4].v.host->next) {
yyerror("multiple binat ip addresses");
YYERROR;
}
if (yystack.l_mark[-4].v.host->af != binat.af && yystack.l_mark[-4].v.host->af) {
yyerror("binat ip versions must match");
YYERROR;
}
if (check_netmask(yystack.l_mark[-4].v.host, binat.af))
YYERROR;
memcpy(&binat.dst.addr, &yystack.l_mark[-4].v.host->addr,
sizeof(binat.dst.addr));
binat.dst.neg = yystack.l_mark[-4].v.host->not;
free(yystack.l_mark[-4].v.host);
}
if (binat.action == PF_NOBINAT) {
if (yystack.l_mark[0].v.redirection != NULL) {
yyerror("'no binat' rule does not need"
" '->'");
YYERROR;
}
} else {
if (yystack.l_mark[0].v.redirection == NULL || yystack.l_mark[0].v.redirection->host == NULL) {
yyerror("'binat' rule requires"
" '-> address'");
YYERROR;
}
remove_invalid_hosts(&yystack.l_mark[0].v.redirection->host, &binat.af);
if (invalid_redirect(yystack.l_mark[0].v.redirection->host, binat.af))
YYERROR;
if (yystack.l_mark[0].v.redirection->host->next != NULL) {
yyerror("binat rule must redirect to "
"a single address");
YYERROR;
}
if (check_netmask(yystack.l_mark[0].v.redirection->host, binat.af))
YYERROR;
if (!PF_AZERO(&binat.src.addr.v.a.mask,
binat.af) &&
!PF_AEQ(&binat.src.addr.v.a.mask,
&yystack.l_mark[0].v.redirection->host->addr.v.a.mask, binat.af)) {
yyerror("'binat' source mask and "
"redirect mask must be the same");
YYERROR;
}
TAILQ_INIT(&binat.rpool.list);
pa = calloc(1, sizeof(struct pf_pooladdr));
if (pa == NULL)
err(1, "binat: calloc");
pa->addr = yystack.l_mark[0].v.redirection->host->addr;
pa->ifname[0] = 0;
TAILQ_INSERT_TAIL(&binat.rpool.list,
pa, entries);
free(yystack.l_mark[0].v.redirection);
}
pfctl_add_rule(pf, &binat, "");
}
break;
case 412:
#line 4377 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.string = NULL; }
break;
case 413:
#line 4378 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.string = yystack.l_mark[0].v.string; }
break;
case 414:
#line 4381 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.tagged.neg = 0; yyval.v.tagged.name = NULL; }
break;
case 415:
#line 4382 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.tagged.neg = yystack.l_mark[-2].v.number; yyval.v.tagged.name = yystack.l_mark[0].v.string; }
break;
case 416:
#line 4385 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.rtableid = -1; }
break;
case 417:
#line 4386 "../../freebsd/sbin/pfctl/parse.y"
{
if (yystack.l_mark[0].v.number < 0 || yystack.l_mark[0].v.number > rt_tableid_max()) {
yyerror("invalid rtable id");
YYERROR;
}
yyval.v.rtableid = yystack.l_mark[0].v.number;
}
break;
case 418:
#line 4395 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.host = calloc(1, sizeof(struct node_host));
if (yyval.v.host == NULL)
err(1, "route_host: calloc");
yyval.v.host->ifname = yystack.l_mark[0].v.string;
set_ipmask(yyval.v.host, 128);
yyval.v.host->next = NULL;
yyval.v.host->tail = yyval.v.host;
}
break;
case 419:
#line 4404 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.host = yystack.l_mark[-1].v.host;
yyval.v.host->ifname = yystack.l_mark[-2].v.string;
}
break;
case 420:
#line 4410 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.host = yystack.l_mark[-1].v.host; }
break;
case 421:
#line 4411 "../../freebsd/sbin/pfctl/parse.y"
{
if (yystack.l_mark[-3].v.host->af == 0)
yystack.l_mark[-3].v.host->af = yystack.l_mark[-1].v.host->af;
if (yystack.l_mark[-3].v.host->af != yystack.l_mark[-1].v.host->af) {
yyerror("all pool addresses must be in the "
"same address family");
YYERROR;
}
yystack.l_mark[-3].v.host->tail->next = yystack.l_mark[-1].v.host;
yystack.l_mark[-3].v.host->tail = yystack.l_mark[-1].v.host->tail;
yyval.v.host = yystack.l_mark[-3].v.host;
}
break;
case 422:
#line 4425 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.host = yystack.l_mark[0].v.host; }
break;
case 423:
#line 4426 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.host = yystack.l_mark[-1].v.host; }
break;
case 424:
#line 4429 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.route.host = NULL;
yyval.v.route.rt = 0;
yyval.v.route.pool_opts = 0;
}
break;
case 425:
#line 4434 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.route.host = NULL;
yyval.v.route.rt = PF_FASTROUTE;
yyval.v.route.pool_opts = 0;
}
break;
case 426:
#line 4439 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.route.host = yystack.l_mark[-1].v.host;
yyval.v.route.rt = PF_ROUTETO;
yyval.v.route.pool_opts = yystack.l_mark[0].v.pool_opts.type | yystack.l_mark[0].v.pool_opts.opts;
if (yystack.l_mark[0].v.pool_opts.key != NULL)
yyval.v.route.key = yystack.l_mark[0].v.pool_opts.key;
}
break;
case 427:
#line 4446 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.route.host = yystack.l_mark[-1].v.host;
yyval.v.route.rt = PF_REPLYTO;
yyval.v.route.pool_opts = yystack.l_mark[0].v.pool_opts.type | yystack.l_mark[0].v.pool_opts.opts;
if (yystack.l_mark[0].v.pool_opts.key != NULL)
yyval.v.route.key = yystack.l_mark[0].v.pool_opts.key;
}
break;
case 428:
#line 4453 "../../freebsd/sbin/pfctl/parse.y"
{
yyval.v.route.host = yystack.l_mark[-1].v.host;
yyval.v.route.rt = PF_DUPTO;
yyval.v.route.pool_opts = yystack.l_mark[0].v.pool_opts.type | yystack.l_mark[0].v.pool_opts.opts;
if (yystack.l_mark[0].v.pool_opts.key != NULL)
yyval.v.route.key = yystack.l_mark[0].v.pool_opts.key;
}
break;
case 429:
#line 4463 "../../freebsd/sbin/pfctl/parse.y"
{
if (check_rulestate(PFCTL_STATE_OPTION)) {
free(yystack.l_mark[-1].v.string);
YYERROR;
}
if (yystack.l_mark[0].v.number < 0 || yystack.l_mark[0].v.number > UINT_MAX) {
yyerror("only positive values permitted");
YYERROR;
}
if (pfctl_set_timeout(pf, yystack.l_mark[-1].v.string, yystack.l_mark[0].v.number, 0) != 0) {
yyerror("unknown timeout %s", yystack.l_mark[-1].v.string);
free(yystack.l_mark[-1].v.string);
YYERROR;
}
free(yystack.l_mark[-1].v.string);
}
break;
case 430:
#line 4479 "../../freebsd/sbin/pfctl/parse.y"
{
if (check_rulestate(PFCTL_STATE_OPTION))
YYERROR;
if (yystack.l_mark[0].v.number < 0 || yystack.l_mark[0].v.number > UINT_MAX) {
yyerror("only positive values permitted");
YYERROR;
}
if (pfctl_set_timeout(pf, "interval", yystack.l_mark[0].v.number, 0) != 0)
YYERROR;
}
break;
case 433:
#line 4496 "../../freebsd/sbin/pfctl/parse.y"
{
if (check_rulestate(PFCTL_STATE_OPTION)) {
free(yystack.l_mark[-1].v.string);
YYERROR;
}
if (yystack.l_mark[0].v.number < 0 || yystack.l_mark[0].v.number > UINT_MAX) {
yyerror("only positive values permitted");
YYERROR;
}
if (pfctl_set_limit(pf, yystack.l_mark[-1].v.string, yystack.l_mark[0].v.number) != 0) {
yyerror("unable to set limit %s %u", yystack.l_mark[-1].v.string, yystack.l_mark[0].v.number);
free(yystack.l_mark[-1].v.string);
YYERROR;
}
free(yystack.l_mark[-1].v.string);
}
break;
case 438:
#line 4522 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.number = 0; }
break;
case 439:
#line 4523 "../../freebsd/sbin/pfctl/parse.y"
{
if (!strcmp(yystack.l_mark[0].v.string, "yes"))
yyval.v.number = 1;
else {
yyerror("invalid value '%s', expected 'yes' "
"or 'no'", yystack.l_mark[0].v.string);
free(yystack.l_mark[0].v.string);
YYERROR;
}
free(yystack.l_mark[0].v.string);
}
break;
case 440:
#line 4536 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.i = PF_OP_EQ; }
break;
case 441:
#line 4537 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.i = PF_OP_NE; }
break;
case 442:
#line 4538 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.i = PF_OP_LE; }
break;
case 443:
#line 4539 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.i = PF_OP_LT; }
break;
case 444:
#line 4540 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.i = PF_OP_GE; }
break;
case 445:
#line 4541 "../../freebsd/sbin/pfctl/parse.y"
{ yyval.v.i = PF_OP_GT; }
break;
#line 9257 "pfctly.tab.c"
}
yystack.s_mark -= yym;
yystate = *yystack.s_mark;
yystack.l_mark -= yym;
yym = yylhs[yyn];
if (yystate == 0 && yym == 0)
{
#if YYDEBUG
if (yydebug)
printf("%sdebug: after reduction, shifting from state 0 to\
state %d\n", YYPREFIX, YYFINAL);
#endif
yystate = YYFINAL;
*++yystack.s_mark = YYFINAL;
*++yystack.l_mark = yyval;
if (yychar < 0)
{
if ((yychar = YYLEX) < 0) yychar = YYEOF;
#if YYDEBUG
if (yydebug)
{
yys = yyname[YYTRANSLATE(yychar)];
printf("%sdebug: state %d, reading %d (%s)\n",
YYPREFIX, YYFINAL, yychar, yys);
}
#endif
}
if (yychar == YYEOF) goto yyaccept;
goto yyloop;
}
if ((yyn = yygindex[yym]) && (yyn += yystate) >= 0 &&
yyn <= YYTABLESIZE && yycheck[yyn] == yystate)
yystate = yytable[yyn];
else
yystate = yydgoto[yym];
#if YYDEBUG
if (yydebug)
printf("%sdebug: after reduction, shifting from state %d \
to state %d\n", YYPREFIX, *yystack.s_mark, yystate);
#endif
if (yystack.s_mark >= yystack.s_last && yygrowstack(&yystack) == YYENOMEM)
{
goto yyoverflow;
}
*++yystack.s_mark = (YYINT) yystate;
*++yystack.l_mark = yyval;
goto yyloop;
yyoverflow:
YYERROR_CALL("yacc stack overflow");
yyabort:
yyfreestack(&yystack);
return (1);
yyaccept:
yyfreestack(&yystack);
return (0);
}