Home | History | Annotate | Line # | Download | only in npfctl
npf_parse.y revision 1.52
      1   1.1     rmind /*-
      2  1.51     rmind  * Copyright (c) 2011-2020 The NetBSD Foundation, Inc.
      3   1.1     rmind  * All rights reserved.
      4   1.1     rmind  *
      5   1.1     rmind  * This code is derived from software contributed to The NetBSD Foundation
      6  1.26     rmind  * by Martin Husemann, Christos Zoulas and Mindaugas Rasiukevicius.
      7   1.1     rmind  *
      8   1.1     rmind  * Redistribution and use in source and binary forms, with or without
      9   1.1     rmind  * modification, are permitted provided that the following conditions
     10   1.1     rmind  * are met:
     11   1.1     rmind  * 1. Redistributions of source code must retain the above copyright
     12   1.1     rmind  *    notice, this list of conditions and the following disclaimer.
     13   1.1     rmind  * 2. Redistributions in binary form must reproduce the above copyright
     14   1.1     rmind  *    notice, this list of conditions and the following disclaimer in the
     15   1.1     rmind  *    documentation and/or other materials provided with the distribution.
     16   1.1     rmind  *
     17   1.1     rmind  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     18   1.1     rmind  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     19   1.1     rmind  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     20   1.1     rmind  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     21   1.1     rmind  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     22   1.1     rmind  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     23   1.1     rmind  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     24   1.1     rmind  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     25   1.1     rmind  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     26   1.1     rmind  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     27   1.1     rmind  * POSSIBILITY OF SUCH DAMAGE.
     28   1.1     rmind  */
     29   1.1     rmind 
     30   1.1     rmind %{
     31   1.1     rmind 
     32  1.37     joerg #include <err.h>
     33  1.37     joerg #include <netdb.h>
     34   1.1     rmind #include <stdio.h>
     35  1.37     joerg #include <stdlib.h>
     36  1.37     joerg #include <string.h>
     37  1.42     rmind #ifdef __NetBSD__
     38   1.1     rmind #include <vis.h>
     39  1.42     rmind #endif
     40   1.1     rmind 
     41   1.1     rmind #include "npfctl.h"
     42   1.1     rmind 
     43  1.12     rmind #define	YYSTACKSIZE	4096
     44  1.12     rmind 
     45  1.50     rmind int			yystarttoken;
     46   1.1     rmind const char *		yyfilename;
     47   1.1     rmind 
     48   1.1     rmind extern int		yylineno, yycolumn;
     49  1.50     rmind extern int		yylex(int);
     50   1.1     rmind 
     51   1.1     rmind void
     52   1.1     rmind yyerror(const char *fmt, ...)
     53   1.1     rmind {
     54   1.1     rmind 	extern int yyleng;
     55   1.1     rmind 	extern char *yytext;
     56   1.1     rmind 
     57  1.15     rmind 	char *msg, *context = estrndup(yytext, yyleng);
     58  1.14     rmind 	bool eol = (*context == '\n');
     59   1.1     rmind 	va_list ap;
     60   1.1     rmind 
     61   1.1     rmind 	va_start(ap, fmt);
     62   1.1     rmind 	vasprintf(&msg, fmt, ap);
     63   1.1     rmind 	va_end(ap);
     64   1.1     rmind 
     65  1.14     rmind 	fprintf(stderr, "%s:%d:%d: %s", yyfilename,
     66  1.14     rmind 	    yylineno - (int)eol, yycolumn, msg);
     67  1.14     rmind 	if (!eol) {
     68  1.42     rmind #ifdef __NetBSD__
     69  1.14     rmind 		size_t len = strlen(context);
     70  1.16     rmind 		char *dst = ecalloc(1, len * 4 + 1);
     71  1.14     rmind 
     72  1.14     rmind 		strvisx(dst, context, len, VIS_WHITE|VIS_CSTYLE);
     73  1.43       kre 		context = dst;
     74  1.42     rmind #endif
     75  1.42     rmind 		fprintf(stderr, " near '%s'", context);
     76  1.14     rmind 	}
     77  1.14     rmind 	fprintf(stderr, "\n");
     78   1.1     rmind 	exit(EXIT_FAILURE);
     79   1.1     rmind }
     80   1.1     rmind 
     81   1.1     rmind %}
     82   1.1     rmind 
     83  1.48     rmind /*
     84  1.48     rmind  * No conflicts allowed.  Keep it this way.
     85  1.48     rmind  */
     86  1.48     rmind %expect 0
     87  1.48     rmind %expect-rr 0
     88  1.48     rmind 
     89  1.50     rmind /*
     90  1.50     rmind  * Depending on the mode of operation, set a different start symbol.
     91  1.50     rmind  * Workaround yacc limitation by passing the start token.
     92  1.50     rmind  */
     93  1.50     rmind %start input
     94  1.50     rmind %token RULE_ENTRY_TOKEN MAP_ENTRY_TOKEN
     95  1.50     rmind %lex-param { int yystarttoken }
     96  1.50     rmind 
     97  1.50     rmind /*
     98  1.50     rmind  * General tokens.
     99  1.50     rmind  */
    100  1.22  christos %token			ALG
    101  1.32     rmind %token			ALGO
    102   1.1     rmind %token			ALL
    103   1.1     rmind %token			ANY
    104   1.1     rmind %token			APPLY
    105   1.8     rmind %token			ARROWBOTH
    106   1.8     rmind %token			ARROWLEFT
    107   1.8     rmind %token			ARROWRIGHT
    108   1.1     rmind %token			BLOCK
    109  1.30     rmind %token			CDB
    110  1.48     rmind %token			CONST
    111   1.1     rmind %token			CURLY_CLOSE
    112   1.1     rmind %token			CURLY_OPEN
    113   1.1     rmind %token			CODE
    114   1.1     rmind %token			COLON
    115   1.1     rmind %token			COMMA
    116   1.1     rmind %token			DEFAULT
    117   1.1     rmind %token			TDYNAMIC
    118   1.8     rmind %token			TSTATIC
    119   1.1     rmind %token			EQ
    120  1.39     rmind %token			EXCL_MARK
    121   1.1     rmind %token			TFILE
    122   1.1     rmind %token			FLAGS
    123   1.1     rmind %token			FROM
    124   1.1     rmind %token			GROUP
    125   1.1     rmind %token			HASH
    126   1.1     rmind %token			ICMPTYPE
    127   1.1     rmind %token			ID
    128  1.48     rmind %token			IFADDRS
    129   1.1     rmind %token			IN
    130  1.29     rmind %token			INET4
    131   1.1     rmind %token			INET6
    132   1.1     rmind %token			INTERFACE
    133  1.51     rmind %token			INVALID
    134  1.48     rmind %token			IPHASH
    135  1.48     rmind %token			IPSET
    136  1.48     rmind %token			LPM
    137   1.8     rmind %token			MAP
    138  1.52  christos %token			NEWLINE
    139  1.46     rmind %token			NO_PORTS
    140   1.1     rmind %token			MINUS
    141   1.1     rmind %token			NAME
    142  1.48     rmind %token			NETMAP
    143  1.32     rmind %token			NPT66
    144   1.1     rmind %token			ON
    145  1.36  christos %token			OFF
    146   1.1     rmind %token			OUT
    147   1.1     rmind %token			PAR_CLOSE
    148   1.1     rmind %token			PAR_OPEN
    149   1.1     rmind %token			PASS
    150  1.26     rmind %token			PCAP_FILTER
    151   1.1     rmind %token			PORT
    152   1.1     rmind %token			PROCEDURE
    153   1.1     rmind %token			PROTO
    154   1.1     rmind %token			FAMILY
    155   1.7     rmind %token			FINAL
    156  1.18     rmind %token			FORW
    157   1.1     rmind %token			RETURN
    158   1.1     rmind %token			RETURNICMP
    159   1.1     rmind %token			RETURNRST
    160  1.48     rmind %token			ROUNDROBIN
    161  1.21     rmind %token			RULESET
    162  1.52  christos %token			SEMICOLON
    163  1.36  christos %token			SET
    164   1.1     rmind %token			SLASH
    165   1.7     rmind %token			STATEFUL
    166  1.49     rmind %token			STATEFUL_ALL
    167   1.1     rmind %token			TABLE
    168   1.1     rmind %token			TCP
    169   1.1     rmind %token			TO
    170   1.1     rmind %token			TREE
    171   1.1     rmind %token			TYPE
    172  1.11       spz %token	<num>		ICMP
    173  1.11       spz %token	<num>		ICMP6
    174   1.1     rmind 
    175   1.1     rmind %token	<num>		HEX
    176   1.1     rmind %token	<str>		IDENTIFIER
    177   1.1     rmind %token	<str>		IPV4ADDR
    178   1.1     rmind %token	<str>		IPV6ADDR
    179   1.1     rmind %token	<num>		NUM
    180  1.13     rmind %token	<fpnum>		FPNUM
    181   1.1     rmind %token	<str>		STRING
    182  1.49     rmind %token	<str>		PARAM
    183   1.1     rmind %token	<str>		TABLE_ID
    184   1.1     rmind %token	<str>		VAR_ID
    185   1.1     rmind 
    186  1.48     rmind %type	<str>		addr some_name table_store dynamic_ifaddrs
    187  1.48     rmind %type	<str>		proc_param_val opt_apply ifname on_ifname ifref
    188  1.48     rmind %type	<num>		port opt_final number afamily opt_family
    189  1.48     rmind %type	<num>		block_or_pass rule_dir group_dir block_opts
    190  1.48     rmind %type	<num>		maybe_not opt_stateful icmp_type table_type
    191  1.48     rmind %type	<num>		map_sd map_algo map_flags map_type
    192  1.49     rmind %type	<num>		param_val
    193  1.51     rmind %type	<var>		static_ifaddrs filt_addr_element
    194  1.51     rmind %type	<var>		filt_port filt_port_list port_range icmp_type_and_code
    195  1.48     rmind %type	<var>		filt_addr addr_and_mask tcp_flags tcp_flags_and_mask
    196  1.48     rmind %type	<var>		procs proc_call proc_param_list proc_param
    197  1.52  christos %type	<var>		element list_elems list_trail list value filt_addr_list
    198  1.51     rmind %type	<var>		opt_proto proto proto_elems
    199   1.8     rmind %type	<addrport>	mapseg
    200  1.48     rmind %type	<filtopts>	filt_opts all_or_filt_opts
    201  1.51     rmind %type	<optproto>	rawproto
    202  1.26     rmind %type	<rulegroup>	group_opts
    203   1.1     rmind 
    204   1.1     rmind %union {
    205   1.1     rmind 	char *		str;
    206   1.1     rmind 	unsigned long	num;
    207  1.13     rmind 	double		fpnum;
    208  1.17     rmind 	npfvar_t *	var;
    209   1.8     rmind 	addr_port_t	addrport;
    210   1.1     rmind 	filt_opts_t	filtopts;
    211   1.1     rmind 	opt_proto_t	optproto;
    212   1.1     rmind 	rule_group_t	rulegroup;
    213   1.1     rmind }
    214   1.1     rmind 
    215   1.1     rmind %%
    216   1.1     rmind 
    217   1.1     rmind input
    218  1.50     rmind 	: lines
    219  1.50     rmind 	| RULE_ENTRY_TOKEN	rule
    220  1.50     rmind 	| MAP_ENTRY_TOKEN	map
    221   1.1     rmind 	;
    222   1.1     rmind 
    223   1.1     rmind lines
    224  1.52  christos 	: lines sepline line
    225   1.1     rmind 	| line
    226   1.1     rmind 	;
    227   1.1     rmind 
    228   1.1     rmind line
    229  1.28     rmind 	: vardef
    230   1.1     rmind 	| table
    231   1.8     rmind 	| map
    232   1.1     rmind 	| group
    233   1.1     rmind 	| rproc
    234  1.22  christos 	| alg
    235  1.36  christos 	| set
    236   1.1     rmind 	|
    237   1.1     rmind 	;
    238   1.1     rmind 
    239  1.28     rmind alg
    240  1.28     rmind 	: ALG STRING
    241  1.28     rmind 	{
    242  1.28     rmind 		npfctl_build_alg($2);
    243  1.28     rmind 	}
    244  1.28     rmind 	;
    245  1.28     rmind 
    246  1.52  christos sepline
    247  1.52  christos 	: NEWLINE
    248  1.52  christos 	| SEMICOLON
    249  1.52  christos 	;
    250  1.52  christos 
    251  1.49     rmind param_val
    252  1.49     rmind 	: number	{ $$ = $1; }
    253  1.49     rmind 	| ON		{ $$ = true; }
    254  1.49     rmind 	| OFF		{ $$ = false; }
    255  1.36  christos 	;
    256  1.36  christos 
    257  1.36  christos set
    258  1.49     rmind 	: SET PARAM param_val {
    259  1.49     rmind 		npfctl_setparam($2, $3);
    260  1.36  christos 	}
    261  1.36  christos 	;
    262  1.36  christos 
    263  1.28     rmind /*
    264  1.28     rmind  * A value - an element or a list of elements.
    265  1.28     rmind  * Can be assigned to a variable or used inline.
    266  1.28     rmind  */
    267  1.28     rmind 
    268  1.28     rmind vardef
    269  1.29     rmind 	: VAR_ID EQ value
    270   1.1     rmind 	{
    271  1.29     rmind 		npfvar_add($3, $1);
    272   1.1     rmind 	}
    273   1.1     rmind 	;
    274   1.1     rmind 
    275  1.28     rmind value
    276  1.28     rmind 	: element
    277  1.28     rmind 	| list
    278   1.1     rmind 	;
    279   1.1     rmind 
    280  1.28     rmind list
    281  1.52  christos 	: CURLY_OPEN opt_nl list_elems CURLY_CLOSE
    282  1.29     rmind 	{
    283  1.52  christos 		$$ = $3;
    284  1.29     rmind 	}
    285   1.1     rmind 	;
    286   1.1     rmind 
    287   1.1     rmind list_elems
    288  1.52  christos 	: element list_trail
    289  1.29     rmind 	{
    290  1.52  christos 		$$ = npfvar_add_elements($1, $2);
    291  1.29     rmind 	}
    292   1.1     rmind 	;
    293   1.1     rmind 
    294  1.28     rmind element
    295   1.1     rmind 	: IDENTIFIER
    296   1.1     rmind 	{
    297  1.29     rmind 		$$ = npfvar_create_from_string(NPFVAR_IDENTIFIER, $1);
    298   1.1     rmind 	}
    299   1.1     rmind 	| STRING
    300   1.1     rmind 	{
    301  1.29     rmind 		$$ = npfvar_create_from_string(NPFVAR_STRING, $1);
    302   1.1     rmind 	}
    303  1.23  christos 	| number MINUS number
    304   1.5  christos 	{
    305  1.29     rmind 		$$ = npfctl_parse_port_range($1, $3);
    306   1.5  christos 	}
    307  1.23  christos 	| number
    308   1.1     rmind 	{
    309  1.29     rmind 		$$ = npfvar_create_element(NPFVAR_NUM, &$1, sizeof($1));
    310   1.1     rmind 	}
    311   1.1     rmind 	| VAR_ID
    312   1.1     rmind 	{
    313  1.29     rmind 		$$ = npfvar_create_from_string(NPFVAR_VAR_ID, $1);
    314   1.1     rmind 	}
    315  1.29     rmind 	| TABLE_ID		{ $$ = npfctl_parse_table_id($1); }
    316  1.40     rmind 	| dynamic_ifaddrs	{ $$ = npfctl_ifnet_table($1); }
    317  1.40     rmind 	| static_ifaddrs	{ $$ = $1; }
    318  1.29     rmind 	| addr_and_mask		{ $$ = $1; }
    319   1.1     rmind 	;
    320   1.1     rmind 
    321  1.52  christos list_trail
    322  1.52  christos 	: element_sep element list_trail
    323  1.52  christos 	{
    324  1.52  christos 		$$ = npfvar_add_elements($2, $3);
    325  1.52  christos 	}
    326  1.52  christos 	| opt_nl 		{ $$ = NULL; }
    327  1.52  christos 	| element_sep 		{ $$ = NULL; }
    328  1.52  christos 	;
    329  1.52  christos 
    330  1.52  christos element_sep
    331  1.52  christos 	: opt_nl COMMA opt_nl
    332  1.52  christos 	;
    333  1.52  christos 
    334  1.52  christos opt_nl
    335  1.52  christos 	: opt_nl NEWLINE
    336  1.52  christos 	|
    337  1.52  christos 	;
    338  1.52  christos 
    339  1.28     rmind /*
    340  1.28     rmind  * Table definition.
    341  1.28     rmind  */
    342  1.28     rmind 
    343   1.1     rmind table
    344   1.1     rmind 	: TABLE TABLE_ID TYPE table_type table_store
    345   1.1     rmind 	{
    346   1.1     rmind 		npfctl_build_table($2, $4, $5);
    347   1.1     rmind 	}
    348   1.1     rmind 	;
    349   1.1     rmind 
    350   1.1     rmind table_type
    351  1.48     rmind 	: IPSET		{ $$ = NPF_TABLE_IPSET; }
    352  1.48     rmind 	| HASH
    353  1.48     rmind 	{
    354  1.48     rmind 		warnx("warning - table type \"hash\" is deprecated and may be "
    355  1.48     rmind 		    "deleted in\nthe future; please use the \"ipset\" type "
    356  1.48     rmind 		    "instead.");
    357  1.48     rmind 		$$ = NPF_TABLE_IPSET;
    358  1.48     rmind 	}
    359  1.48     rmind 	| LPM		{ $$ = NPF_TABLE_LPM; }
    360  1.48     rmind 	| TREE
    361  1.48     rmind 	{
    362  1.48     rmind 		warnx("warning - table type \"tree\" is deprecated and may be "
    363  1.48     rmind 		    "deleted in\nthe future; please use the \"lpm\" type "
    364  1.48     rmind 		    "instead.");
    365  1.48     rmind 		$$ = NPF_TABLE_LPM;
    366  1.48     rmind 	}
    367  1.48     rmind 	| CONST		{ $$ = NPF_TABLE_CONST; }
    368  1.48     rmind 	| CDB
    369  1.48     rmind 	{
    370  1.48     rmind 		warnx("warning -- table type \"cdb\" is deprecated and may be "
    371  1.48     rmind 		    "deleted in\nthe future; please use the \"const\" type "
    372  1.48     rmind 		    "instead.");
    373  1.48     rmind 		$$ = NPF_TABLE_CONST;
    374  1.48     rmind 	}
    375   1.1     rmind 	;
    376   1.1     rmind 
    377   1.1     rmind table_store
    378  1.48     rmind 	: TFILE STRING	{ $$ = $2; }
    379  1.48     rmind 	| TDYNAMIC
    380  1.48     rmind 	{
    381  1.48     rmind 		warnx("warning - the \"dynamic\" keyword for tables is obsolete");
    382  1.48     rmind 		$$ = NULL;
    383  1.48     rmind 	}
    384  1.48     rmind 	|		{ $$ = NULL; }
    385   1.1     rmind 	;
    386   1.1     rmind 
    387  1.28     rmind /*
    388  1.28     rmind  * Map definition.
    389  1.28     rmind  */
    390  1.28     rmind 
    391   1.8     rmind map_sd
    392   1.8     rmind 	: TSTATIC	{ $$ = NPFCTL_NAT_STATIC; }
    393   1.8     rmind 	| TDYNAMIC	{ $$ = NPFCTL_NAT_DYNAMIC; }
    394   1.8     rmind 	|		{ $$ = NPFCTL_NAT_DYNAMIC; }
    395   1.1     rmind 	;
    396   1.1     rmind 
    397  1.32     rmind map_algo
    398  1.48     rmind 	: ALGO NETMAP		{ $$ = NPF_ALGO_NETMAP; }
    399  1.48     rmind 	| ALGO IPHASH		{ $$ = NPF_ALGO_IPHASH; }
    400  1.48     rmind 	| ALGO ROUNDROBIN	{ $$ = NPF_ALGO_RR; }
    401  1.48     rmind 	| ALGO NPT66		{ $$ = NPF_ALGO_NPT66; }
    402  1.48     rmind 	|			{ $$ = 0; }
    403  1.32     rmind 	;
    404  1.32     rmind 
    405  1.46     rmind map_flags
    406  1.46     rmind 	: NO_PORTS	{ $$ = NPF_NAT_PORTS; }
    407  1.46     rmind 	|		{ $$ = 0; }
    408  1.46     rmind 	;
    409  1.46     rmind 
    410   1.8     rmind map_type
    411   1.8     rmind 	: ARROWBOTH	{ $$ = NPF_NATIN | NPF_NATOUT; }
    412   1.8     rmind 	| ARROWLEFT	{ $$ = NPF_NATIN; }
    413   1.8     rmind 	| ARROWRIGHT	{ $$ = NPF_NATOUT; }
    414   1.8     rmind 	;
    415   1.8     rmind 
    416   1.8     rmind mapseg
    417  1.51     rmind 	: filt_addr filt_port
    418   1.1     rmind 	{
    419   1.8     rmind 		$$.ap_netaddr = $1;
    420   1.8     rmind 		$$.ap_portrange = $2;
    421   1.1     rmind 	}
    422   1.1     rmind 	;
    423   1.1     rmind 
    424   1.8     rmind map
    425  1.46     rmind 	: MAP ifref map_sd map_algo map_flags mapseg map_type mapseg
    426  1.48     rmind 	  PASS opt_family opt_proto all_or_filt_opts
    427   1.1     rmind 	{
    428  1.51     rmind 		npfctl_build_natseg($3, $7, $5, $2, &$6, &$8, $11, &$12, $4);
    429   1.1     rmind 	}
    430  1.46     rmind 	| MAP ifref map_sd map_algo map_flags mapseg map_type mapseg
    431  1.44     rmind 	{
    432  1.46     rmind 		npfctl_build_natseg($3, $7, $5, $2, &$6, &$8, NULL, NULL, $4);
    433  1.44     rmind 	}
    434  1.46     rmind 	| MAP ifref map_sd map_algo map_flags proto mapseg map_type mapseg
    435   1.1     rmind 	{
    436  1.51     rmind 		npfctl_build_natseg($3, $8, $5, $2, &$7, &$9, $6, NULL, $4);
    437   1.1     rmind 	}
    438  1.26     rmind 	| MAP RULESET group_opts
    439  1.21     rmind 	{
    440  1.27     rmind 		npfctl_build_maprset($3.rg_name, $3.rg_attr, $3.rg_ifname);
    441  1.21     rmind 	}
    442   1.1     rmind 	;
    443   1.1     rmind 
    444  1.28     rmind /*
    445  1.28     rmind  * Rule procedure definition and its parameters.
    446  1.28     rmind  */
    447  1.28     rmind 
    448   1.1     rmind rproc
    449   1.1     rmind 	: PROCEDURE STRING CURLY_OPEN procs CURLY_CLOSE
    450   1.1     rmind 	{
    451   1.1     rmind 		npfctl_build_rproc($2, $4);
    452   1.1     rmind 	}
    453   1.1     rmind 	;
    454   1.1     rmind 
    455   1.1     rmind procs
    456  1.52  christos 	: procs sepline proc_call
    457  1.13     rmind 	{
    458  1.13     rmind 		$$ = npfvar_add_elements($1, $3);
    459  1.13     rmind 	}
    460  1.13     rmind 	| proc_call	{ $$ = $1; }
    461   1.1     rmind 	;
    462   1.1     rmind 
    463  1.13     rmind proc_call
    464  1.13     rmind 	: IDENTIFIER COLON proc_param_list
    465   1.1     rmind 	{
    466  1.13     rmind 		proc_call_t pc;
    467   1.1     rmind 
    468  1.15     rmind 		pc.pc_name = estrdup($1);
    469  1.13     rmind 		pc.pc_opts = $3;
    470  1.29     rmind 
    471  1.29     rmind 		$$ = npfvar_create_element(NPFVAR_PROC, &pc, sizeof(pc));
    472   1.1     rmind 	}
    473  1.29     rmind 	|		{ $$ = NULL; }
    474   1.1     rmind 	;
    475   1.1     rmind 
    476  1.13     rmind proc_param_list
    477  1.35  riastrad 	: proc_param_list COMMA proc_param
    478   1.1     rmind 	{
    479   1.1     rmind 		$$ = npfvar_add_elements($1, $3);
    480   1.1     rmind 	}
    481  1.13     rmind 	| proc_param	{ $$ = $1; }
    482   1.1     rmind 	|		{ $$ = NULL; }
    483   1.1     rmind 	;
    484   1.1     rmind 
    485  1.13     rmind proc_param
    486  1.13     rmind 	: some_name proc_param_val
    487   1.1     rmind 	{
    488  1.13     rmind 		proc_param_t pp;
    489   1.1     rmind 
    490  1.15     rmind 		pp.pp_param = estrdup($1);
    491  1.15     rmind 		pp.pp_value = $2 ? estrdup($2) : NULL;
    492  1.29     rmind 
    493  1.29     rmind 		$$ = npfvar_create_element(NPFVAR_PROC_PARAM, &pp, sizeof(pp));
    494   1.1     rmind 	}
    495   1.1     rmind 	;
    496   1.1     rmind 
    497  1.13     rmind proc_param_val
    498  1.13     rmind 	: some_name	{ $$ = $1; }
    499  1.23  christos 	| number	{ (void)asprintf(&$$, "%ld", $1); }
    500  1.13     rmind 	| FPNUM		{ (void)asprintf(&$$, "%lf", $1); }
    501  1.13     rmind 	|		{ $$ = NULL; }
    502   1.1     rmind 	;
    503   1.1     rmind 
    504  1.28     rmind /*
    505  1.28     rmind  * Group and dynamic ruleset definition.
    506  1.28     rmind  */
    507  1.28     rmind 
    508   1.1     rmind group
    509  1.26     rmind 	: GROUP group_opts
    510   1.1     rmind 	{
    511  1.29     rmind 		/* Build a group.  Increase the nesting level. */
    512  1.26     rmind 		npfctl_build_group($2.rg_name, $2.rg_attr,
    513  1.27     rmind 		    $2.rg_ifname, $2.rg_default);
    514  1.18     rmind 	}
    515  1.18     rmind 	  ruleset_block
    516  1.18     rmind 	{
    517  1.18     rmind 		/* Decrease the nesting level. */
    518  1.18     rmind 		npfctl_build_group_end();
    519   1.1     rmind 	}
    520   1.1     rmind 	;
    521   1.1     rmind 
    522  1.21     rmind ruleset
    523  1.26     rmind 	: RULESET group_opts
    524  1.21     rmind 	{
    525  1.21     rmind 		/* Ruleset is a dynamic group. */
    526  1.26     rmind 		npfctl_build_group($2.rg_name, $2.rg_attr | NPF_RULE_DYNAMIC,
    527  1.27     rmind 		    $2.rg_ifname, $2.rg_default);
    528  1.21     rmind 		npfctl_build_group_end();
    529  1.21     rmind 	}
    530  1.26     rmind 	;
    531  1.21     rmind 
    532  1.26     rmind group_dir
    533  1.26     rmind 	: FORW		{ $$ = NPF_RULE_FORW; }
    534  1.26     rmind 	| rule_dir
    535   1.1     rmind 	;
    536   1.1     rmind 
    537  1.26     rmind group_opts
    538   1.1     rmind 	: DEFAULT
    539   1.1     rmind 	{
    540  1.18     rmind 		memset(&$$, 0, sizeof(rule_group_t));
    541  1.18     rmind 		$$.rg_default = true;
    542   1.1     rmind 	}
    543  1.27     rmind 	| STRING group_dir on_ifname
    544   1.1     rmind 	{
    545  1.18     rmind 		memset(&$$, 0, sizeof(rule_group_t));
    546  1.26     rmind 		$$.rg_name = $1;
    547  1.26     rmind 		$$.rg_attr = $2;
    548  1.27     rmind 		$$.rg_ifname = $3;
    549   1.1     rmind 	}
    550   1.1     rmind 	;
    551   1.1     rmind 
    552  1.18     rmind ruleset_block
    553  1.21     rmind 	: CURLY_OPEN ruleset_def CURLY_CLOSE
    554  1.18     rmind 	;
    555  1.18     rmind 
    556  1.21     rmind ruleset_def
    557  1.52  christos 	: ruleset_def sepline rule_group
    558  1.18     rmind 	| rule_group
    559   1.1     rmind 	;
    560   1.1     rmind 
    561  1.18     rmind rule_group
    562  1.18     rmind 	: rule
    563  1.18     rmind 	| group
    564  1.21     rmind 	| ruleset
    565  1.18     rmind 	|
    566  1.24     rmind 	;
    567   1.1     rmind 
    568  1.28     rmind /*
    569  1.28     rmind  * Rule and misc.
    570  1.28     rmind  */
    571  1.28     rmind 
    572   1.1     rmind rule
    573  1.27     rmind 	: block_or_pass opt_stateful rule_dir opt_final on_ifname
    574  1.17     rmind 	  opt_family opt_proto all_or_filt_opts opt_apply
    575   1.1     rmind 	{
    576   1.7     rmind 		npfctl_build_rule($1 | $2 | $3 | $4, $5,
    577  1.51     rmind 		    $6, $7, &$8, NULL, $9);
    578  1.26     rmind 	}
    579  1.27     rmind 	| block_or_pass opt_stateful rule_dir opt_final on_ifname
    580  1.26     rmind 	  PCAP_FILTER STRING opt_apply
    581  1.26     rmind 	{
    582  1.26     rmind 		npfctl_build_rule($1 | $2 | $3 | $4, $5,
    583  1.26     rmind 		    AF_UNSPEC, NULL, NULL, $7, $8);
    584   1.1     rmind 	}
    585   1.1     rmind 	;
    586   1.1     rmind 
    587   1.1     rmind block_or_pass
    588   1.1     rmind 	: BLOCK block_opts	{ $$ = $2; }
    589   1.1     rmind 	| PASS			{ $$ = NPF_RULE_PASS; }
    590   1.1     rmind 	;
    591   1.1     rmind 
    592   1.1     rmind rule_dir
    593   1.1     rmind 	: IN			{ $$ = NPF_RULE_IN; }
    594   1.1     rmind 	| OUT			{ $$ = NPF_RULE_OUT; }
    595   1.1     rmind 	|			{ $$ = NPF_RULE_IN | NPF_RULE_OUT; }
    596   1.1     rmind 	;
    597   1.1     rmind 
    598   1.7     rmind opt_final
    599   1.7     rmind 	: FINAL			{ $$ = NPF_RULE_FINAL; }
    600   1.1     rmind 	|			{ $$ = 0; }
    601   1.1     rmind 	;
    602   1.1     rmind 
    603  1.27     rmind on_ifname
    604  1.29     rmind 	: ON ifref		{ $$ = $2; }
    605  1.27     rmind 	|			{ $$ = NULL; }
    606   1.1     rmind 	;
    607   1.1     rmind 
    608  1.17     rmind afamily
    609  1.29     rmind 	: INET4			{ $$ = AF_INET; }
    610  1.17     rmind 	| INET6			{ $$ = AF_INET6; }
    611  1.17     rmind 	;
    612  1.17     rmind 
    613  1.39     rmind maybe_not
    614  1.39     rmind 	: EXCL_MARK		{ $$ = true; }
    615  1.39     rmind 	|			{ $$ = false; }
    616  1.39     rmind 	;
    617  1.39     rmind 
    618   1.9     rmind opt_family
    619  1.17     rmind 	: FAMILY afamily	{ $$ = $2; }
    620   1.9     rmind 	|			{ $$ = AF_UNSPEC; }
    621   1.1     rmind 	;
    622   1.1     rmind 
    623  1.51     rmind rawproto
    624  1.51     rmind 	: TCP tcp_flags_and_mask
    625   1.1     rmind 	{
    626   1.1     rmind 		$$.op_proto = IPPROTO_TCP;
    627  1.51     rmind 		$$.op_opts = $2;
    628   1.1     rmind 	}
    629  1.51     rmind 	| ICMP icmp_type_and_code
    630   1.1     rmind 	{
    631   1.1     rmind 		$$.op_proto = IPPROTO_ICMP;
    632  1.51     rmind 		$$.op_opts = $2;
    633   1.1     rmind 	}
    634  1.51     rmind 	| ICMP6 icmp_type_and_code
    635  1.11       spz 	{
    636  1.11       spz 		$$.op_proto = IPPROTO_ICMPV6;
    637  1.51     rmind 		$$.op_opts = $2;
    638  1.11       spz 	}
    639  1.51     rmind 	| some_name
    640   1.9     rmind 	{
    641  1.51     rmind 		$$.op_proto = npfctl_protono($1);
    642   1.9     rmind 		$$.op_opts = NULL;
    643   1.9     rmind 	}
    644  1.51     rmind 	| number
    645   1.1     rmind 	{
    646  1.51     rmind 		$$.op_proto = $1;
    647   1.1     rmind 		$$.op_opts = NULL;
    648   1.1     rmind 	}
    649  1.44     rmind 	;
    650  1.44     rmind 
    651  1.51     rmind proto_elems
    652  1.51     rmind 	: proto_elems COMMA rawproto
    653  1.51     rmind 	{
    654  1.51     rmind 		npfvar_t *pvar = npfvar_create_element(
    655  1.51     rmind 		    NPFVAR_PROTO, &$3, sizeof($3));
    656  1.51     rmind 		$$ = npfvar_add_elements($1, pvar);
    657  1.51     rmind 	}
    658  1.51     rmind 	| rawproto
    659  1.51     rmind 	{
    660  1.51     rmind 		$$ = npfvar_create_element(NPFVAR_PROTO, &$1, sizeof($1));
    661  1.51     rmind 	}
    662  1.51     rmind 	;
    663  1.51     rmind 
    664  1.51     rmind proto
    665  1.51     rmind 	: PROTO rawproto
    666  1.51     rmind 	{
    667  1.51     rmind 		$$ = npfvar_create_element(NPFVAR_PROTO, &$2, sizeof($2));
    668  1.51     rmind 	}
    669  1.51     rmind 	| PROTO CURLY_OPEN proto_elems CURLY_CLOSE
    670  1.51     rmind 	{
    671  1.51     rmind 		$$ = $3;
    672  1.51     rmind 	}
    673  1.51     rmind 	;
    674  1.51     rmind 
    675  1.44     rmind opt_proto
    676  1.44     rmind 	: proto			{ $$ = $1; }
    677  1.51     rmind 	|			{ $$ = NULL; }
    678   1.1     rmind 	;
    679   1.1     rmind 
    680   1.1     rmind all_or_filt_opts
    681   1.1     rmind 	: ALL
    682   1.1     rmind 	{
    683  1.39     rmind 		$$.fo_finvert = false;
    684   1.8     rmind 		$$.fo_from.ap_netaddr = NULL;
    685   1.8     rmind 		$$.fo_from.ap_portrange = NULL;
    686  1.39     rmind 		$$.fo_tinvert = false;
    687   1.8     rmind 		$$.fo_to.ap_netaddr = NULL;
    688   1.8     rmind 		$$.fo_to.ap_portrange = NULL;
    689   1.1     rmind 	}
    690   1.1     rmind 	| filt_opts	{ $$ = $1; }
    691   1.1     rmind 	;
    692   1.1     rmind 
    693   1.7     rmind opt_stateful
    694   1.9     rmind 	: STATEFUL	{ $$ = NPF_RULE_STATEFUL; }
    695  1.49     rmind 	| STATEFUL_ALL	{ $$ = NPF_RULE_STATEFUL | NPF_RULE_GSTATEFUL; }
    696   1.1     rmind 	|		{ $$ = 0; }
    697   1.1     rmind 	;
    698   1.1     rmind 
    699   1.1     rmind opt_apply
    700   1.1     rmind 	: APPLY STRING	{ $$ = $2; }
    701   1.1     rmind 	|		{ $$ = NULL; }
    702   1.1     rmind 	;
    703   1.1     rmind 
    704   1.1     rmind block_opts
    705   1.1     rmind 	: RETURNRST	{ $$ = NPF_RULE_RETRST; }
    706   1.1     rmind 	| RETURNICMP	{ $$ = NPF_RULE_RETICMP; }
    707   1.1     rmind 	| RETURN	{ $$ = NPF_RULE_RETRST | NPF_RULE_RETICMP; }
    708   1.1     rmind 	|		{ $$ = 0; }
    709   1.1     rmind 	;
    710   1.1     rmind 
    711   1.1     rmind filt_opts
    712  1.51     rmind 	: FROM maybe_not filt_addr filt_port TO maybe_not filt_addr filt_port
    713   1.1     rmind 	{
    714  1.39     rmind 		$$.fo_finvert = $2;
    715  1.39     rmind 		$$.fo_from.ap_netaddr = $3;
    716  1.39     rmind 		$$.fo_from.ap_portrange = $4;
    717  1.39     rmind 		$$.fo_tinvert = $6;
    718  1.39     rmind 		$$.fo_to.ap_netaddr = $7;
    719  1.39     rmind 		$$.fo_to.ap_portrange = $8;
    720  1.39     rmind 	}
    721  1.51     rmind 	| FROM maybe_not filt_addr filt_port
    722  1.39     rmind 	{
    723  1.39     rmind 		$$.fo_finvert = $2;
    724  1.39     rmind 		$$.fo_from.ap_netaddr = $3;
    725  1.39     rmind 		$$.fo_from.ap_portrange = $4;
    726  1.39     rmind 		$$.fo_tinvert = false;
    727   1.8     rmind 		$$.fo_to.ap_netaddr = NULL;
    728   1.8     rmind 		$$.fo_to.ap_portrange = NULL;
    729   1.1     rmind 	}
    730  1.51     rmind 	| TO maybe_not filt_addr filt_port
    731   1.1     rmind 	{
    732  1.39     rmind 		$$.fo_finvert = false;
    733   1.8     rmind 		$$.fo_from.ap_netaddr = NULL;
    734   1.8     rmind 		$$.fo_from.ap_portrange = NULL;
    735  1.39     rmind 		$$.fo_tinvert = $2;
    736  1.39     rmind 		$$.fo_to.ap_netaddr = $3;
    737  1.39     rmind 		$$.fo_to.ap_portrange = $4;
    738   1.1     rmind 	}
    739   1.1     rmind 	;
    740   1.1     rmind 
    741  1.51     rmind filt_addr_list
    742  1.51     rmind 	: filt_addr_list COMMA filt_addr_element
    743  1.51     rmind 	{
    744  1.51     rmind 		npfvar_add_elements($1, $3);
    745  1.51     rmind 	}
    746  1.51     rmind 	| filt_addr_element
    747  1.51     rmind 	;
    748  1.51     rmind 
    749   1.1     rmind filt_addr
    750  1.51     rmind 	: CURLY_OPEN filt_addr_list CURLY_CLOSE
    751  1.51     rmind 	{
    752  1.51     rmind 		$$ = $2;
    753  1.51     rmind 	}
    754  1.51     rmind 	| filt_addr_element	{ $$ = $1; }
    755   1.4     rmind 	| ANY			{ $$ = NULL; }
    756   1.1     rmind 	;
    757   1.1     rmind 
    758   1.1     rmind addr_and_mask
    759  1.23  christos 	: addr SLASH number
    760   1.1     rmind 	{
    761   1.1     rmind 		$$ = npfctl_parse_fam_addr_mask($1, NULL, &$3);
    762   1.1     rmind 	}
    763   1.1     rmind 	| addr SLASH addr
    764   1.1     rmind 	{
    765   1.1     rmind 		$$ = npfctl_parse_fam_addr_mask($1, $3, NULL);
    766   1.1     rmind 	}
    767   1.1     rmind 	| addr
    768   1.1     rmind 	{
    769   1.1     rmind 		$$ = npfctl_parse_fam_addr_mask($1, NULL, NULL);
    770   1.1     rmind 	}
    771   1.1     rmind 	;
    772   1.1     rmind 
    773  1.51     rmind filt_addr_element
    774  1.48     rmind 	: addr_and_mask		{ assert($1 != NULL); $$ = $1; }
    775  1.40     rmind 	| static_ifaddrs
    776   1.4     rmind 	{
    777  1.41  christos 		if (npfvar_get_count($1) != 1)
    778  1.41  christos 			yyerror("multiple interfaces are not supported");
    779  1.17     rmind 		ifnet_addr_t *ifna = npfvar_get_data($1, NPFVAR_INTERFACE, 0);
    780  1.17     rmind 		$$ = ifna->ifna_addrs;
    781   1.4     rmind 	}
    782  1.48     rmind 	| dynamic_ifaddrs	{ $$ = npfctl_ifnet_table($1); }
    783  1.48     rmind 	| TABLE_ID		{ $$ = npfctl_parse_table_id($1); }
    784   1.4     rmind 	| VAR_ID
    785   1.4     rmind 	{
    786   1.4     rmind 		npfvar_t *vp = npfvar_lookup($1);
    787  1.19  christos 		int type = npfvar_get_type(vp, 0);
    788  1.17     rmind 		ifnet_addr_t *ifna;
    789  1.19  christos again:
    790   1.4     rmind 		switch (type) {
    791  1.19  christos 		case NPFVAR_IDENTIFIER:
    792  1.19  christos 		case NPFVAR_STRING:
    793  1.19  christos 			vp = npfctl_parse_ifnet(npfvar_expand_string(vp),
    794  1.19  christos 			    AF_UNSPEC);
    795  1.19  christos 			type = npfvar_get_type(vp, 0);
    796  1.19  christos 			goto again;
    797   1.4     rmind 		case NPFVAR_FAM:
    798  1.40     rmind 		case NPFVAR_TABLE:
    799   1.4     rmind 			$$ = vp;
    800   1.4     rmind 			break;
    801  1.17     rmind 		case NPFVAR_INTERFACE:
    802  1.33     rmind 			$$ = NULL;
    803  1.33     rmind 			for (u_int i = 0; i < npfvar_get_count(vp); i++) {
    804  1.33     rmind 				ifna = npfvar_get_data(vp, type, i);
    805  1.33     rmind 				$$ = npfvar_add_elements($$, ifna->ifna_addrs);
    806  1.33     rmind 			}
    807  1.17     rmind 			break;
    808   1.4     rmind 		case -1:
    809  1.17     rmind 			yyerror("undefined variable '%s'", $1);
    810   1.4     rmind 			break;
    811   1.4     rmind 		default:
    812  1.17     rmind 			yyerror("wrong variable '%s' type '%s' for address "
    813  1.17     rmind 			    "or interface", $1, npfvar_type(type));
    814   1.4     rmind 			break;
    815   1.4     rmind 		}
    816   1.4     rmind 	}
    817   1.1     rmind 	;
    818   1.1     rmind 
    819   1.1     rmind addr
    820   1.1     rmind 	: IPV4ADDR	{ $$ = $1; }
    821   1.1     rmind 	| IPV6ADDR	{ $$ = $1; }
    822   1.1     rmind 	;
    823   1.1     rmind 
    824  1.51     rmind filt_port
    825  1.51     rmind 	: PORT CURLY_OPEN filt_port_list CURLY_CLOSE
    826  1.51     rmind 	{
    827  1.51     rmind 		$$ = npfctl_parse_port_range_variable(NULL, $3);
    828  1.51     rmind 	}
    829  1.51     rmind 	| PORT port_range	{ $$ = $2; }
    830  1.51     rmind 	|			{ $$ = NULL; }
    831  1.51     rmind 	;
    832  1.51     rmind 
    833  1.51     rmind filt_port_list
    834  1.51     rmind 	: filt_port_list COMMA port_range
    835   1.1     rmind 	{
    836  1.51     rmind 		npfvar_add_elements($1, $3);
    837   1.1     rmind 	}
    838  1.51     rmind 	| port_range
    839  1.51     rmind 	;
    840  1.51     rmind 
    841  1.51     rmind port_range
    842  1.51     rmind 	: port		/* just port */
    843   1.1     rmind 	{
    844  1.51     rmind 		$$ = npfctl_parse_port_range($1, $1);
    845   1.1     rmind 	}
    846  1.51     rmind 	| port MINUS port	/* port from-to */
    847   1.8     rmind 	{
    848  1.51     rmind 		$$ = npfctl_parse_port_range($1, $3);
    849   1.5  christos 	}
    850  1.51     rmind 	| VAR_ID
    851   1.1     rmind 	{
    852  1.51     rmind 		npfvar_t *vp = npfvar_lookup($1);
    853  1.51     rmind 		$$ = npfctl_parse_port_range_variable($1, vp);
    854   1.1     rmind 	}
    855   1.1     rmind 	;
    856   1.1     rmind 
    857   1.1     rmind port
    858  1.23  christos 	: number	{ $$ = $1; }
    859   1.1     rmind 	| IDENTIFIER	{ $$ = npfctl_portno($1); }
    860  1.20  christos 	| STRING	{ $$ = npfctl_portno($1); }
    861   1.1     rmind 	;
    862   1.1     rmind 
    863   1.1     rmind icmp_type_and_code
    864   1.1     rmind 	: ICMPTYPE icmp_type
    865   1.1     rmind 	{
    866  1.11       spz 		$$ = npfctl_parse_icmp($<num>0, $2, -1);
    867   1.1     rmind 	}
    868  1.23  christos 	| ICMPTYPE icmp_type CODE number
    869   1.1     rmind 	{
    870  1.11       spz 		$$ = npfctl_parse_icmp($<num>0, $2, $4);
    871   1.1     rmind 	}
    872   1.1     rmind 	| ICMPTYPE icmp_type CODE IDENTIFIER
    873   1.1     rmind 	{
    874  1.17     rmind 		$$ = npfctl_parse_icmp($<num>0, $2,
    875  1.17     rmind 		    npfctl_icmpcode($<num>0, $2, $4));
    876   1.1     rmind 	}
    877   1.1     rmind 	| ICMPTYPE icmp_type CODE VAR_ID
    878   1.1     rmind 	{
    879   1.1     rmind 		char *s = npfvar_expand_string(npfvar_lookup($4));
    880  1.17     rmind 		$$ = npfctl_parse_icmp($<num>0, $2,
    881  1.17     rmind 		    npfctl_icmpcode($<num>0, $2, s));
    882   1.1     rmind 	}
    883  1.25     rmind 	|		{ $$ = NULL; }
    884   1.1     rmind 	;
    885   1.1     rmind 
    886   1.1     rmind tcp_flags_and_mask
    887   1.1     rmind 	: FLAGS tcp_flags SLASH tcp_flags
    888   1.1     rmind 	{
    889   1.1     rmind 		npfvar_add_elements($2, $4);
    890   1.1     rmind 		$$ = $2;
    891   1.1     rmind 	}
    892   1.1     rmind 	| FLAGS tcp_flags
    893   1.1     rmind 	{
    894  1.41  christos 		if (npfvar_get_count($2) != 1)
    895  1.41  christos 			yyerror("multiple tcpflags are not supported");
    896   1.1     rmind 		char *s = npfvar_get_data($2, NPFVAR_TCPFLAG, 0);
    897   1.1     rmind 		npfvar_add_elements($2, npfctl_parse_tcpflag(s));
    898   1.1     rmind 		$$ = $2;
    899   1.1     rmind 	}
    900   1.1     rmind 	|		{ $$ = NULL; }
    901   1.1     rmind 	;
    902   1.1     rmind 
    903   1.1     rmind tcp_flags
    904   1.1     rmind 	: IDENTIFIER	{ $$ = npfctl_parse_tcpflag($1); }
    905   1.1     rmind 	;
    906   1.1     rmind 
    907   1.1     rmind icmp_type
    908  1.23  christos 	: number	{ $$ = $1; }
    909  1.11       spz 	| IDENTIFIER	{ $$ = npfctl_icmptype($<num>-1, $1); }
    910   1.1     rmind 	| VAR_ID
    911   1.1     rmind 	{
    912   1.1     rmind 		char *s = npfvar_expand_string(npfvar_lookup($1));
    913  1.11       spz 		$$ = npfctl_icmptype($<num>-1, s);
    914   1.1     rmind 	}
    915   1.1     rmind 	;
    916   1.1     rmind 
    917  1.29     rmind ifname
    918  1.29     rmind 	: some_name
    919  1.19  christos 	{
    920  1.29     rmind 		npfctl_note_interface($1);
    921  1.19  christos 		$$ = $1;
    922  1.19  christos 	}
    923  1.19  christos 	| VAR_ID
    924  1.19  christos 	{
    925  1.19  christos 		npfvar_t *vp = npfvar_lookup($1);
    926  1.19  christos 		const int type = npfvar_get_type(vp, 0);
    927  1.29     rmind 		ifnet_addr_t *ifna;
    928  1.48     rmind 		const char *name;
    929  1.48     rmind 		unsigned *tid;
    930  1.48     rmind 		bool ifaddr;
    931  1.19  christos 
    932  1.19  christos 		switch (type) {
    933  1.19  christos 		case NPFVAR_STRING:
    934  1.19  christos 		case NPFVAR_IDENTIFIER:
    935  1.19  christos 			$$ = npfvar_expand_string(vp);
    936  1.19  christos 			break;
    937  1.29     rmind 		case NPFVAR_INTERFACE:
    938  1.41  christos 			if (npfvar_get_count(vp) != 1)
    939  1.41  christos 				yyerror(
    940  1.41  christos 				    "multiple interfaces are not supported");
    941  1.29     rmind 			ifna = npfvar_get_data(vp, type, 0);
    942  1.29     rmind 			$$ = ifna->ifna_name;
    943  1.29     rmind 			break;
    944  1.48     rmind 		case NPFVAR_TABLE:
    945  1.48     rmind 			tid = npfvar_get_data(vp, type, 0);
    946  1.48     rmind 			name = npfctl_table_getname(npfctl_config_ref(),
    947  1.48     rmind 			    *tid, &ifaddr);
    948  1.48     rmind 			if (!ifaddr) {
    949  1.48     rmind 				yyerror("variable '%s' references a table "
    950  1.48     rmind 				    "%s instead of an interface", $1, name);
    951  1.48     rmind 			}
    952  1.48     rmind 			$$ = estrdup(name);
    953  1.48     rmind 			break;
    954  1.19  christos 		case -1:
    955  1.19  christos 			yyerror("undefined variable '%s' for interface", $1);
    956  1.19  christos 			break;
    957  1.19  christos 		default:
    958  1.29     rmind 			yyerror("wrong variable '%s' type '%s' for interface",
    959  1.19  christos 			    $1, npfvar_type(type));
    960  1.19  christos 			break;
    961  1.19  christos 		}
    962  1.29     rmind 		npfctl_note_interface($$);
    963  1.19  christos 	}
    964  1.19  christos 	;
    965  1.19  christos 
    966  1.40     rmind static_ifaddrs
    967  1.29     rmind 	: afamily PAR_OPEN ifname PAR_CLOSE
    968  1.17     rmind 	{
    969  1.17     rmind 		$$ = npfctl_parse_ifnet($3, $1);
    970  1.17     rmind 	}
    971  1.19  christos 	;
    972  1.17     rmind 
    973  1.40     rmind dynamic_ifaddrs
    974  1.40     rmind 	: IFADDRS PAR_OPEN ifname PAR_CLOSE
    975  1.40     rmind 	{
    976  1.40     rmind 		$$ = $3;
    977  1.40     rmind 	}
    978  1.40     rmind 	;
    979  1.40     rmind 
    980  1.29     rmind ifref
    981  1.29     rmind 	: ifname
    982  1.40     rmind 	| dynamic_ifaddrs
    983  1.40     rmind 	| static_ifaddrs
    984  1.17     rmind 	{
    985  1.49     rmind 		ifnet_addr_t *ifna;
    986  1.49     rmind 
    987  1.49     rmind 		if (npfvar_get_count($1) != 1) {
    988  1.41  christos 			yyerror("multiple interfaces are not supported");
    989  1.49     rmind 		}
    990  1.49     rmind 		ifna = npfvar_get_data($1, NPFVAR_INTERFACE, 0);
    991  1.27     rmind 		npfctl_note_interface(ifna->ifna_name);
    992  1.27     rmind 		$$ = ifna->ifna_name;
    993  1.17     rmind 	}
    994   1.1     rmind 	;
    995   1.1     rmind 
    996  1.23  christos number
    997  1.23  christos 	: HEX		{ $$ = $1; }
    998  1.23  christos 	| NUM		{ $$ = $1; }
    999  1.23  christos 	;
   1000  1.23  christos 
   1001   1.9     rmind some_name
   1002   1.1     rmind 	: IDENTIFIER	{ $$ = $1; }
   1003   1.1     rmind 	| STRING	{ $$ = $1; }
   1004   1.1     rmind 	;
   1005   1.1     rmind 
   1006   1.1     rmind %%
   1007