Home | History | Annotate | Line # | Download | only in npfctl
npf_build.c revision 1.4.2.3
      1  1.4.2.3    riz /*	$NetBSD: npf_build.c,v 1.4.2.3 2012/07/05 17:48:44 riz Exp $	*/
      2      1.1  rmind 
      3      1.1  rmind /*-
      4      1.1  rmind  * Copyright (c) 2011-2012 The NetBSD Foundation, Inc.
      5      1.1  rmind  * All rights reserved.
      6      1.1  rmind  *
      7      1.1  rmind  * This material is based upon work partially supported by The
      8      1.1  rmind  * NetBSD Foundation under a contract with Mindaugas Rasiukevicius.
      9      1.1  rmind  *
     10      1.1  rmind  * Redistribution and use in source and binary forms, with or without
     11      1.1  rmind  * modification, are permitted provided that the following conditions
     12      1.1  rmind  * are met:
     13      1.1  rmind  * 1. Redistributions of source code must retain the above copyright
     14      1.1  rmind  *    notice, this list of conditions and the following disclaimer.
     15      1.1  rmind  * 2. Redistributions in binary form must reproduce the above copyright
     16      1.1  rmind  *    notice, this list of conditions and the following disclaimer in the
     17      1.1  rmind  *    documentation and/or other materials provided with the distribution.
     18      1.1  rmind  *
     19      1.1  rmind  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20      1.1  rmind  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21      1.1  rmind  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22      1.1  rmind  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23      1.1  rmind  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24      1.1  rmind  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25      1.1  rmind  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26      1.1  rmind  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27      1.1  rmind  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28      1.1  rmind  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29      1.1  rmind  * POSSIBILITY OF SUCH DAMAGE.
     30      1.1  rmind  */
     31      1.1  rmind 
     32      1.1  rmind /*
     33      1.1  rmind  * npfctl(8) building of the configuration.
     34      1.1  rmind  */
     35      1.1  rmind 
     36      1.1  rmind #include <sys/cdefs.h>
     37  1.4.2.3    riz __RCSID("$NetBSD: npf_build.c,v 1.4.2.3 2012/07/05 17:48:44 riz Exp $");
     38      1.1  rmind 
     39      1.1  rmind #include <sys/types.h>
     40      1.1  rmind #include <sys/ioctl.h>
     41      1.1  rmind 
     42      1.1  rmind #include <stdlib.h>
     43      1.1  rmind #include <inttypes.h>
     44      1.1  rmind #include <string.h>
     45      1.1  rmind #include <assert.h>
     46      1.1  rmind #include <err.h>
     47      1.1  rmind 
     48      1.1  rmind #include "npfctl.h"
     49      1.1  rmind 
     50      1.1  rmind static nl_config_t *		npf_conf = NULL;
     51      1.1  rmind static nl_rule_t *		current_group = NULL;
     52      1.1  rmind static bool			npf_debug = false;
     53      1.1  rmind static bool			defgroup_set = false;
     54      1.1  rmind 
     55      1.1  rmind void
     56      1.1  rmind npfctl_config_init(bool debug)
     57      1.1  rmind {
     58      1.1  rmind 
     59      1.1  rmind 	npf_conf = npf_config_create();
     60      1.1  rmind 	if (npf_conf == NULL) {
     61      1.1  rmind 		errx(EXIT_FAILURE, "npf_config_create failed");
     62      1.1  rmind 	}
     63      1.1  rmind 	npf_debug = debug;
     64      1.1  rmind }
     65      1.1  rmind 
     66      1.1  rmind int
     67      1.1  rmind npfctl_config_send(int fd)
     68      1.1  rmind {
     69      1.1  rmind 	int error;
     70      1.1  rmind 
     71      1.1  rmind 	if (!fd) {
     72  1.4.2.3    riz 		const char *outconf = "/tmp/npf.plist";
     73  1.4.2.3    riz 		_npf_config_setsubmit(npf_conf, outconf);
     74  1.4.2.3    riz 		printf("\nSaving to %s\n", outconf);
     75      1.1  rmind 	}
     76      1.1  rmind 	if (!defgroup_set) {
     77      1.1  rmind 		errx(EXIT_FAILURE, "default group was not defined");
     78      1.1  rmind 	}
     79      1.1  rmind 	error = npf_config_submit(npf_conf, fd);
     80      1.3  rmind 	if (error) {
     81      1.3  rmind 		nl_error_t ne;
     82      1.3  rmind 		_npf_config_error(npf_conf, &ne);
     83      1.3  rmind 		npfctl_print_error(&ne);
     84      1.3  rmind 	}
     85      1.1  rmind 	npf_config_destroy(npf_conf);
     86      1.1  rmind 	return error;
     87      1.1  rmind }
     88      1.1  rmind 
     89      1.1  rmind bool
     90      1.1  rmind npfctl_table_exists_p(const char *id)
     91      1.1  rmind {
     92      1.1  rmind 	return npf_table_exists_p(npf_conf, atoi(id));
     93      1.1  rmind }
     94      1.1  rmind 
     95  1.4.2.2    riz static in_port_t
     96      1.1  rmind npfctl_get_singleport(const npfvar_t *vp)
     97      1.1  rmind {
     98      1.1  rmind 	port_range_t *pr;
     99  1.4.2.2    riz 	in_port_t *port;
    100      1.1  rmind 
    101      1.1  rmind 	if (npfvar_get_count(vp) > 1) {
    102      1.1  rmind 		yyerror("multiple ports are not valid");
    103      1.1  rmind 	}
    104      1.1  rmind 	pr = npfvar_get_data(vp, NPFVAR_PORT_RANGE, 0);
    105      1.1  rmind 	if (pr->pr_start != pr->pr_end) {
    106      1.1  rmind 		yyerror("port range is not valid");
    107      1.1  rmind 	}
    108  1.4.2.2    riz 	port = &pr->pr_start;
    109  1.4.2.2    riz 	return *port;
    110      1.1  rmind }
    111      1.1  rmind 
    112      1.1  rmind static fam_addr_mask_t *
    113      1.1  rmind npfctl_get_singlefam(const npfvar_t *vp)
    114      1.1  rmind {
    115      1.1  rmind 	if (npfvar_get_count(vp) > 1) {
    116      1.1  rmind 		yyerror("multiple addresses are not valid");
    117      1.1  rmind 	}
    118      1.1  rmind 	return npfvar_get_data(vp, NPFVAR_FAM, 0);
    119      1.1  rmind }
    120      1.1  rmind 
    121  1.4.2.3    riz static bool
    122      1.1  rmind npfctl_build_fam(nc_ctx_t *nc, sa_family_t family,
    123      1.1  rmind     fam_addr_mask_t *fam, int opts)
    124      1.1  rmind {
    125      1.1  rmind 	/*
    126      1.1  rmind 	 * If family is specified, address does not match it and the
    127      1.1  rmind 	 * address is extracted from the interface, then simply ignore.
    128      1.1  rmind 	 * Otherwise, address of invalid family was passed manually.
    129      1.1  rmind 	 */
    130      1.1  rmind 	if (family != AF_UNSPEC && family != fam->fam_family) {
    131      1.1  rmind 		if (!fam->fam_interface) {
    132      1.1  rmind 			yyerror("specified address is not of the required "
    133      1.1  rmind 			    "family %d", family);
    134      1.1  rmind 		}
    135  1.4.2.3    riz 		return false;
    136      1.1  rmind 	}
    137      1.1  rmind 
    138      1.1  rmind 	/*
    139      1.1  rmind 	 * Optimise 0.0.0.0/0 case to be NOP.  Otherwise, address with
    140      1.1  rmind 	 * zero mask would never match and therefore is not valid.
    141      1.1  rmind 	 */
    142      1.1  rmind 	if (fam->fam_mask == 0) {
    143      1.1  rmind 		npf_addr_t zero;
    144  1.4.2.3    riz 
    145      1.1  rmind 		memset(&zero, 0, sizeof(npf_addr_t));
    146      1.1  rmind 		if (memcmp(&fam->fam_addr, &zero, sizeof(npf_addr_t))) {
    147      1.1  rmind 			yyerror("filter criterion would never match");
    148      1.1  rmind 		}
    149  1.4.2.3    riz 		return false;
    150      1.1  rmind 	}
    151      1.1  rmind 
    152      1.1  rmind 	switch (fam->fam_family) {
    153      1.1  rmind 	case AF_INET:
    154      1.1  rmind 		npfctl_gennc_v4cidr(nc, opts,
    155      1.1  rmind 		    &fam->fam_addr, fam->fam_mask);
    156      1.1  rmind 		break;
    157      1.1  rmind 	case AF_INET6:
    158      1.1  rmind 		npfctl_gennc_v6cidr(nc, opts,
    159      1.1  rmind 		    &fam->fam_addr, fam->fam_mask);
    160      1.1  rmind 		break;
    161      1.1  rmind 	default:
    162      1.1  rmind 		yyerror("family %d is not supported", fam->fam_family);
    163      1.1  rmind 	}
    164  1.4.2.3    riz 	return true;
    165      1.1  rmind }
    166      1.1  rmind 
    167      1.1  rmind static void
    168      1.1  rmind npfctl_build_vars(nc_ctx_t *nc, sa_family_t family, npfvar_t *vars, int opts)
    169      1.1  rmind {
    170  1.4.2.2    riz 	const int type = npfvar_get_type(vars, 0);
    171      1.1  rmind 	size_t i;
    172      1.1  rmind 
    173      1.1  rmind 	npfctl_ncgen_group(nc);
    174      1.1  rmind 	for (i = 0; i < npfvar_get_count(vars); i++) {
    175      1.1  rmind 		void *data = npfvar_get_data(vars, type, i);
    176      1.1  rmind 		assert(data != NULL);
    177      1.1  rmind 
    178      1.1  rmind 		switch (type) {
    179      1.1  rmind 		case NPFVAR_FAM: {
    180      1.1  rmind 			fam_addr_mask_t *fam = data;
    181      1.1  rmind 			npfctl_build_fam(nc, family, fam, opts);
    182      1.1  rmind 			break;
    183      1.1  rmind 		}
    184      1.1  rmind 		case NPFVAR_PORT_RANGE: {
    185      1.1  rmind 			port_range_t *pr = data;
    186      1.1  rmind 			if (opts & NC_MATCH_TCP) {
    187      1.1  rmind 				npfctl_gennc_ports(nc, opts & ~NC_MATCH_UDP,
    188      1.1  rmind 				    pr->pr_start, pr->pr_end);
    189      1.1  rmind 			}
    190      1.1  rmind 			if (opts & NC_MATCH_UDP) {
    191      1.1  rmind 				npfctl_gennc_ports(nc, opts & ~NC_MATCH_TCP,
    192      1.1  rmind 				    pr->pr_start, pr->pr_end);
    193      1.1  rmind 			}
    194      1.1  rmind 			break;
    195      1.1  rmind 		}
    196      1.1  rmind 		case NPFVAR_TABLE: {
    197      1.1  rmind 			u_int tid = atoi(data);
    198      1.1  rmind 			npfctl_gennc_tbl(nc, opts, tid);
    199      1.1  rmind 			break;
    200      1.1  rmind 		}
    201      1.1  rmind 		default:
    202      1.1  rmind 			assert(false);
    203      1.1  rmind 		}
    204      1.1  rmind 	}
    205      1.1  rmind 	npfctl_ncgen_endgroup(nc);
    206      1.1  rmind }
    207      1.1  rmind 
    208      1.1  rmind static int
    209  1.4.2.3    riz npfctl_build_proto(nc_ctx_t *nc, sa_family_t family,
    210  1.4.2.3    riz     const opt_proto_t *op, bool nof, bool nop)
    211      1.1  rmind {
    212      1.1  rmind 	const npfvar_t *popts = op->op_opts;
    213  1.4.2.3    riz 	const int proto = op->op_proto;
    214      1.1  rmind 	int pflag = 0;
    215      1.1  rmind 
    216  1.4.2.3    riz 	switch (proto) {
    217      1.1  rmind 	case IPPROTO_TCP:
    218      1.1  rmind 		pflag = NC_MATCH_TCP;
    219      1.1  rmind 		if (!popts) {
    220      1.1  rmind 			break;
    221      1.1  rmind 		}
    222      1.1  rmind 		assert(npfvar_get_count(popts) == 2);
    223      1.1  rmind 
    224      1.1  rmind 		/* Build TCP flags block (optional). */
    225      1.1  rmind 		uint8_t *tf, *tf_mask;
    226      1.1  rmind 
    227      1.1  rmind 		tf = npfvar_get_data(popts, NPFVAR_TCPFLAG, 0);
    228      1.1  rmind 		tf_mask = npfvar_get_data(popts, NPFVAR_TCPFLAG, 1);
    229      1.1  rmind 		npfctl_gennc_tcpfl(nc, *tf, *tf_mask);
    230  1.4.2.3    riz 		nop = false;
    231      1.1  rmind 		break;
    232      1.1  rmind 	case IPPROTO_UDP:
    233      1.1  rmind 		pflag = NC_MATCH_UDP;
    234      1.1  rmind 		break;
    235      1.1  rmind 	case IPPROTO_ICMP:
    236      1.1  rmind 		/*
    237      1.1  rmind 		 * Build ICMP block.
    238      1.1  rmind 		 */
    239  1.4.2.3    riz 		if (!nop) {
    240  1.4.2.3    riz 			goto invop;
    241  1.4.2.3    riz 		}
    242      1.1  rmind 		assert(npfvar_get_count(popts) == 2);
    243      1.1  rmind 
    244      1.1  rmind 		int *icmp_type, *icmp_code;
    245      1.1  rmind 		icmp_type = npfvar_get_data(popts, NPFVAR_ICMP, 0);
    246      1.1  rmind 		icmp_code = npfvar_get_data(popts, NPFVAR_ICMP, 1);
    247      1.1  rmind 		npfctl_gennc_icmp(nc, *icmp_type, *icmp_code);
    248  1.4.2.3    riz 		nop = false;
    249      1.1  rmind 		break;
    250      1.1  rmind 	case -1:
    251      1.1  rmind 		pflag = NC_MATCH_TCP | NC_MATCH_UDP;
    252  1.4.2.3    riz 		nop = false;
    253      1.1  rmind 		break;
    254      1.1  rmind 	default:
    255  1.4.2.3    riz 		/*
    256  1.4.2.3    riz 		 * No filter options are supported for other protcols.
    257  1.4.2.3    riz 		 */
    258  1.4.2.3    riz 		if (nof && nop) {
    259  1.4.2.3    riz 			break;
    260  1.4.2.3    riz 		}
    261  1.4.2.3    riz invop:
    262  1.4.2.3    riz 		yyerror("invalid filter options for protocol %d", proto);
    263  1.4.2.3    riz 	}
    264  1.4.2.3    riz 
    265  1.4.2.3    riz 	/*
    266  1.4.2.3    riz 	 * Build the protocol block, unless other blocks will implicitly
    267  1.4.2.3    riz 	 * perform the family/protocol checks for us.
    268  1.4.2.3    riz 	 */
    269  1.4.2.3    riz 	if ((family != AF_UNSPEC && nof) || (proto != -1 && nop)) {
    270  1.4.2.3    riz 		uint8_t addrlen;
    271  1.4.2.3    riz 
    272  1.4.2.3    riz 		switch (family) {
    273  1.4.2.3    riz 		case AF_INET:
    274  1.4.2.3    riz 			addrlen = sizeof(struct in_addr);
    275  1.4.2.3    riz 			break;
    276  1.4.2.3    riz 		case AF_INET6:
    277  1.4.2.3    riz 			addrlen = sizeof(struct in6_addr);
    278  1.4.2.3    riz 			break;
    279  1.4.2.3    riz 		default:
    280  1.4.2.3    riz 			addrlen = 0;
    281  1.4.2.3    riz 		}
    282  1.4.2.3    riz 		npfctl_gennc_proto(nc, nof ? addrlen : 0, nop ? proto : 0xff);
    283      1.1  rmind 	}
    284      1.1  rmind 	return pflag;
    285      1.1  rmind }
    286      1.1  rmind 
    287      1.1  rmind static bool
    288      1.1  rmind npfctl_build_ncode(nl_rule_t *rl, sa_family_t family, const opt_proto_t *op,
    289      1.1  rmind     const filt_opts_t *fopts, bool invert)
    290      1.1  rmind {
    291  1.4.2.2    riz 	const addr_port_t *apfrom = &fopts->fo_from;
    292  1.4.2.2    riz 	const addr_port_t *apto = &fopts->fo_to;
    293  1.4.2.3    riz 	const int proto = op->op_proto;
    294  1.4.2.3    riz 	bool nof, nop;
    295      1.1  rmind 	nc_ctx_t *nc;
    296      1.1  rmind 	void *code;
    297      1.1  rmind 	size_t len;
    298      1.1  rmind 
    299  1.4.2.3    riz 	/*
    300  1.4.2.3    riz 	 * If none specified, no n-code.
    301  1.4.2.3    riz 	 */
    302  1.4.2.3    riz 	nof = !apfrom->ap_netaddr && !apto->ap_netaddr;
    303  1.4.2.3    riz 	nop = !apfrom->ap_portrange && !apto->ap_portrange;
    304  1.4.2.3    riz 	if (family == AF_UNSPEC && proto == -1 && !op->op_opts && nof && nop)
    305      1.1  rmind 		return false;
    306      1.1  rmind 
    307      1.1  rmind 	int srcflag = NC_MATCH_SRC;
    308      1.1  rmind 	int dstflag = NC_MATCH_DST;
    309      1.1  rmind 
    310      1.1  rmind 	if (invert) {
    311      1.1  rmind 		srcflag = NC_MATCH_DST;
    312      1.1  rmind 		dstflag = NC_MATCH_SRC;
    313      1.1  rmind 	}
    314      1.1  rmind 
    315      1.1  rmind 	nc = npfctl_ncgen_create();
    316      1.1  rmind 
    317  1.4.2.3    riz 	/* Build layer 4 protocol blocks. */
    318  1.4.2.3    riz 	int pflag = npfctl_build_proto(nc, family, op, nof, nop);
    319  1.4.2.3    riz 
    320      1.1  rmind 	/* Build IP address blocks. */
    321  1.4.2.2    riz 	npfctl_build_vars(nc, family, apfrom->ap_netaddr, srcflag);
    322  1.4.2.2    riz 	npfctl_build_vars(nc, family, apto->ap_netaddr, dstflag);
    323      1.1  rmind 
    324      1.1  rmind 	/* Build port-range blocks. */
    325  1.4.2.3    riz 	npfctl_build_vars(nc, family, apfrom->ap_portrange, srcflag | pflag);
    326  1.4.2.3    riz 	npfctl_build_vars(nc, family, apto->ap_portrange, dstflag | pflag);
    327      1.1  rmind 
    328      1.1  rmind 	/*
    329      1.1  rmind 	 * Complete n-code (destroys the context) and pass to the rule.
    330      1.1  rmind 	 */
    331      1.1  rmind 	code = npfctl_ncgen_complete(nc, &len);
    332      1.1  rmind 	if (npf_debug) {
    333      1.1  rmind 		extern int yylineno;
    334  1.4.2.2    riz 		printf("RULE AT LINE %d\n", yylineno);
    335      1.1  rmind 		npfctl_ncgen_print(code, len);
    336      1.1  rmind 	}
    337  1.4.2.3    riz 	assert(code && len > 0);
    338  1.4.2.3    riz 
    339      1.1  rmind 	if (npf_rule_setcode(rl, NPF_CODE_NCODE, code, len) == -1) {
    340      1.1  rmind 		errx(EXIT_FAILURE, "npf_rule_setcode failed");
    341      1.1  rmind 	}
    342      1.1  rmind 	free(code);
    343      1.1  rmind 	return true;
    344      1.1  rmind }
    345      1.1  rmind 
    346      1.4  rmind static void
    347      1.4  rmind npfctl_build_rpcall(nl_rproc_t *rp, const char *name, npfvar_t *args)
    348      1.4  rmind {
    349      1.4  rmind 	/*
    350      1.4  rmind 	 * XXX/TODO: Hardcoded for the first release.  However,
    351      1.4  rmind 	 * rule procedures will become fully dynamic modules.
    352      1.4  rmind 	 */
    353      1.4  rmind 
    354      1.4  rmind 	bool log = false, norm = false;
    355      1.4  rmind 	bool rnd = false, no_df = false;
    356      1.4  rmind 	int minttl = 0, maxmss = 0;
    357      1.4  rmind 
    358      1.4  rmind 	if (strcmp(name, "log") == 0) {
    359      1.4  rmind 		log = true;
    360      1.4  rmind 	} else if (strcmp(name, "normalise") == 0) {
    361      1.4  rmind 		norm = true;
    362      1.4  rmind 	} else {
    363      1.4  rmind 		yyerror("unknown rule procedure '%s'", name);
    364      1.4  rmind 	}
    365      1.4  rmind 
    366      1.4  rmind 	for (size_t i = 0; i < npfvar_get_count(args); i++) {
    367      1.4  rmind 		module_arg_t *arg;
    368      1.4  rmind 		const char *aval;
    369      1.4  rmind 
    370      1.4  rmind 		arg = npfvar_get_data(args, NPFVAR_MODULE_ARG, i);
    371      1.4  rmind 		aval = arg->ma_name;
    372      1.4  rmind 
    373      1.4  rmind 		if (log) {
    374      1.4  rmind 			u_int if_idx = npfctl_find_ifindex(aval);
    375      1.4  rmind 			if (!if_idx) {
    376      1.4  rmind 				yyerror("unknown interface '%s'", aval);
    377      1.4  rmind 			}
    378      1.4  rmind 			_npf_rproc_setlog(rp, if_idx);
    379      1.4  rmind 			return;
    380      1.4  rmind 		}
    381      1.4  rmind 
    382  1.4.2.2    riz 		const int type = npfvar_get_type(arg->ma_opts, 0);
    383      1.4  rmind 		if (type != -1 && type != NPFVAR_NUM) {
    384      1.4  rmind 			yyerror("option '%s' is not numeric", aval);
    385      1.4  rmind 		}
    386      1.4  rmind 		unsigned long *opt;
    387      1.4  rmind 
    388      1.4  rmind 		if (strcmp(aval, "random-id") == 0) {
    389      1.4  rmind 			rnd = true;
    390      1.4  rmind 		} else if (strcmp(aval, "min-ttl") == 0) {
    391      1.4  rmind 			opt = npfvar_get_data(arg->ma_opts, NPFVAR_NUM, 0);
    392      1.4  rmind 			minttl = *opt;
    393      1.4  rmind 		} else if (strcmp(aval, "max-mss") == 0) {
    394      1.4  rmind 			opt = npfvar_get_data(arg->ma_opts, NPFVAR_NUM, 0);
    395      1.4  rmind 			maxmss = *opt;
    396      1.4  rmind 		} else if (strcmp(aval, "no-df") == 0) {
    397      1.4  rmind 			no_df = true;
    398      1.4  rmind 		} else {
    399      1.4  rmind 			yyerror("unknown argument '%s'", aval);
    400      1.4  rmind 		}
    401      1.4  rmind 	}
    402      1.4  rmind 	assert(norm == true);
    403      1.4  rmind 	_npf_rproc_setnorm(rp, rnd, no_df, minttl, maxmss);
    404      1.4  rmind }
    405      1.4  rmind 
    406      1.1  rmind /*
    407      1.1  rmind  * npfctl_build_rproc: create and insert a rule procedure.
    408      1.1  rmind  */
    409      1.1  rmind void
    410      1.4  rmind npfctl_build_rproc(const char *name, npfvar_t *procs)
    411      1.1  rmind {
    412      1.1  rmind 	nl_rproc_t *rp;
    413      1.4  rmind 	size_t i;
    414      1.1  rmind 
    415      1.1  rmind 	rp = npf_rproc_create(name);
    416      1.1  rmind 	if (rp == NULL) {
    417      1.1  rmind 		errx(EXIT_FAILURE, "npf_rproc_create failed");
    418      1.1  rmind 	}
    419      1.1  rmind 	npf_rproc_insert(npf_conf, rp);
    420      1.4  rmind 
    421      1.4  rmind 	for (i = 0; i < npfvar_get_count(procs); i++) {
    422      1.4  rmind 		proc_op_t *po = npfvar_get_data(procs, NPFVAR_PROC_OP, i);
    423      1.4  rmind 		npfctl_build_rpcall(rp, po->po_name, po->po_opts);
    424      1.4  rmind 	}
    425      1.1  rmind }
    426      1.1  rmind 
    427      1.1  rmind /*
    428      1.1  rmind  * npfctl_build_group: create a group, insert into the global ruleset
    429      1.1  rmind  * and update the current group pointer.
    430      1.1  rmind  */
    431      1.1  rmind void
    432      1.1  rmind npfctl_build_group(const char *name, int attr, u_int if_idx)
    433      1.1  rmind {
    434      1.1  rmind 	const int attr_di = (NPF_RULE_IN | NPF_RULE_OUT);
    435      1.1  rmind 	nl_rule_t *rl;
    436      1.1  rmind 
    437      1.1  rmind 	if (attr & NPF_RULE_DEFAULT) {
    438      1.1  rmind 		if (defgroup_set) {
    439      1.1  rmind 			yyerror("multiple default groups are not valid");
    440      1.1  rmind 		}
    441      1.1  rmind 		defgroup_set = true;
    442      1.1  rmind 		attr |= attr_di;
    443      1.1  rmind 
    444      1.1  rmind 	} else if ((attr & attr_di) == 0) {
    445      1.1  rmind 		attr |= attr_di;
    446      1.1  rmind 	}
    447      1.1  rmind 
    448  1.4.2.1    riz 	rl = npf_rule_create(name, attr | NPF_RULE_FINAL, if_idx);
    449      1.1  rmind 	npf_rule_insert(npf_conf, NULL, rl, NPF_PRI_NEXT);
    450      1.1  rmind 	current_group = rl;
    451      1.1  rmind }
    452      1.1  rmind 
    453      1.1  rmind /*
    454      1.1  rmind  * npfctl_build_rule: create a rule, build n-code from filter options,
    455      1.1  rmind  * if any, and insert into the ruleset of current group.
    456      1.1  rmind  */
    457      1.1  rmind void
    458      1.1  rmind npfctl_build_rule(int attr, u_int if_idx, sa_family_t family,
    459      1.1  rmind     const opt_proto_t *op, const filt_opts_t *fopts, const char *rproc)
    460      1.1  rmind {
    461      1.1  rmind 	nl_rule_t *rl;
    462      1.1  rmind 
    463      1.1  rmind 	rl = npf_rule_create(NULL, attr, if_idx);
    464      1.1  rmind 	npfctl_build_ncode(rl, family, op, fopts, false);
    465      1.1  rmind 	if (rproc && npf_rule_setproc(npf_conf, rl, rproc) != 0) {
    466      1.1  rmind 		yyerror("rule procedure '%s' is not defined", rproc);
    467      1.1  rmind 	}
    468      1.1  rmind 	assert(current_group != NULL);
    469      1.1  rmind 	npf_rule_insert(npf_conf, current_group, rl, NPF_PRI_NEXT);
    470      1.1  rmind }
    471      1.1  rmind 
    472      1.1  rmind /*
    473      1.1  rmind  * npfctl_build_nat: create a NAT policy of a specified type with a
    474      1.1  rmind  * given filter options.
    475      1.1  rmind  */
    476      1.1  rmind void
    477  1.4.2.2    riz npfctl_build_nat(int sd, int type, u_int if_idx, const addr_port_t *ap1,
    478  1.4.2.2    riz     const addr_port_t *ap2, const filt_opts_t *fopts)
    479      1.1  rmind {
    480  1.4.2.2    riz 	const opt_proto_t op = { .op_proto = -1, .op_opts = NULL };
    481  1.4.2.3    riz 	fam_addr_mask_t *am1 = NULL, *am2 = NULL;
    482  1.4.2.2    riz 	filt_opts_t imfopts;
    483  1.4.2.2    riz 	sa_family_t family;
    484      1.1  rmind 	nl_nat_t *nat;
    485      1.1  rmind 
    486  1.4.2.2    riz 	if (sd == NPFCTL_NAT_STATIC) {
    487  1.4.2.2    riz 		yyerror("static NAT is not yet supported");
    488  1.4.2.2    riz 	}
    489  1.4.2.2    riz 	assert(sd == NPFCTL_NAT_DYNAMIC);
    490  1.4.2.2    riz 	assert(if_idx != 0);
    491  1.4.2.2    riz 
    492  1.4.2.2    riz 	family = AF_INET;
    493      1.1  rmind 
    494  1.4.2.2    riz 	if (type & NPF_NATIN) {
    495  1.4.2.2    riz 		if (!ap1->ap_netaddr) {
    496  1.4.2.2    riz 			yyerror("inbound network segment is not specified");
    497  1.4.2.2    riz 		}
    498  1.4.2.2    riz 		am1 = npfctl_get_singlefam(ap1->ap_netaddr);
    499  1.4.2.3    riz 		if (am1->fam_family != family) {
    500  1.4.2.2    riz 			yyerror("IPv6 NAT is not supported");
    501  1.4.2.2    riz 		}
    502  1.4.2.2    riz 		assert(am1 != NULL);
    503  1.4.2.3    riz 	}
    504  1.4.2.2    riz 
    505  1.4.2.2    riz 	if (type & NPF_NATOUT) {
    506  1.4.2.2    riz 		if (!ap2->ap_netaddr) {
    507  1.4.2.2    riz 			yyerror("outbound network segment is not specified");
    508  1.4.2.2    riz 		}
    509  1.4.2.2    riz 		am2 = npfctl_get_singlefam(ap2->ap_netaddr);
    510  1.4.2.2    riz 		if (am2->fam_family != family) {
    511  1.4.2.2    riz 			yyerror("IPv6 NAT is not supported");
    512  1.4.2.2    riz 		}
    513  1.4.2.2    riz 		assert(am2 != NULL);
    514  1.4.2.3    riz 	}
    515  1.4.2.2    riz 
    516  1.4.2.2    riz 	/*
    517  1.4.2.2    riz 	 * If filter criteria is not specified explicitly, apply implicit
    518  1.4.2.2    riz 	 * filtering according to the given network segements.
    519  1.4.2.2    riz 	 */
    520  1.4.2.2    riz 	if (!fopts) {
    521  1.4.2.2    riz 		memset(&imfopts, 0, sizeof(filt_opts_t));
    522  1.4.2.2    riz 		if (type & NPF_NATOUT) {
    523  1.4.2.2    riz 			memcpy(&imfopts.fo_from, ap1, sizeof(addr_port_t));
    524  1.4.2.2    riz 		}
    525  1.4.2.2    riz 		if (type & NPF_NATIN) {
    526  1.4.2.2    riz 			memcpy(&imfopts.fo_to, ap2, sizeof(addr_port_t));
    527  1.4.2.2    riz 		}
    528  1.4.2.2    riz 		fopts = &imfopts;
    529      1.1  rmind 	}
    530      1.1  rmind 
    531      1.1  rmind 	switch (type) {
    532  1.4.2.2    riz 	case NPF_NATIN:
    533  1.4.2.2    riz 		assert(am1 != NULL);
    534      1.1  rmind 		/*
    535      1.1  rmind 		 * Redirection: an inbound NAT with a specific port.
    536      1.1  rmind 		 */
    537  1.4.2.2    riz 		if (!ap1->ap_portrange) {
    538  1.4.2.2    riz 			yyerror("inbound port is not specified");
    539  1.4.2.2    riz 		}
    540  1.4.2.2    riz 		in_port_t port = npfctl_get_singleport(ap1->ap_portrange);
    541      1.1  rmind 		nat = npf_nat_create(NPF_NATIN, NPF_NAT_PORTS,
    542  1.4.2.2    riz 		    if_idx, &am1->fam_addr, am1->fam_family, port);
    543      1.1  rmind 		break;
    544  1.4.2.2    riz 
    545  1.4.2.2    riz 	case (NPF_NATIN | NPF_NATOUT):
    546  1.4.2.2    riz 		assert(am1 != NULL);
    547      1.1  rmind 		/*
    548      1.1  rmind 		 * Bi-directional NAT: a combination of inbound NAT and
    549      1.1  rmind 		 * outbound NAT policies.  Note that the translation address
    550      1.1  rmind 		 * is local IP and filter criteria is inverted accordingly.
    551      1.1  rmind 		 */
    552      1.1  rmind 		nat = npf_nat_create(NPF_NATIN, 0, if_idx,
    553  1.4.2.2    riz 		    &am1->fam_addr, am1->fam_family, 0);
    554  1.4.2.2    riz 		npfctl_build_ncode(nat, family, &op, fopts, true);
    555      1.1  rmind 		npf_nat_insert(npf_conf, nat, NPF_PRI_NEXT);
    556      1.1  rmind 		/* FALLTHROUGH */
    557  1.4.2.2    riz 
    558  1.4.2.2    riz 	case NPF_NATOUT:
    559  1.4.2.2    riz 		assert(am2 != NULL);
    560      1.1  rmind 		/*
    561      1.1  rmind 		 * Traditional NAPT: an outbound NAT policy with port.
    562  1.4.2.2    riz 		 * If this is another half for bi-directional NAT, then
    563      1.1  rmind 		 * no port translation with mapping.
    564      1.1  rmind 		 */
    565  1.4.2.2    riz 		nat = npf_nat_create(NPF_NATOUT, type == NPF_NATOUT ?
    566      1.1  rmind 		    (NPF_NAT_PORTS | NPF_NAT_PORTMAP) : 0,
    567  1.4.2.2    riz 		    if_idx, &am2->fam_addr, am2->fam_family, 0);
    568      1.1  rmind 		break;
    569  1.4.2.2    riz 
    570      1.1  rmind 	default:
    571      1.1  rmind 		assert(false);
    572      1.1  rmind 	}
    573  1.4.2.2    riz 	npfctl_build_ncode(nat, family, &op, fopts, false);
    574      1.1  rmind 	npf_nat_insert(npf_conf, nat, NPF_PRI_NEXT);
    575      1.1  rmind }
    576      1.1  rmind 
    577      1.1  rmind /*
    578      1.1  rmind  * npfctl_fill_table: fill NPF table with entries from a specified file.
    579      1.1  rmind  */
    580      1.1  rmind static void
    581      1.1  rmind npfctl_fill_table(nl_table_t *tl, const char *fname)
    582      1.1  rmind {
    583      1.1  rmind 	char *buf = NULL;
    584      1.1  rmind 	int l = 0;
    585      1.1  rmind 	FILE *fp;
    586      1.1  rmind 	size_t n;
    587      1.1  rmind 
    588      1.1  rmind 	fp = fopen(fname, "r");
    589      1.1  rmind 	if (fp == NULL) {
    590      1.1  rmind 		err(EXIT_FAILURE, "open '%s'", fname);
    591      1.1  rmind 	}
    592      1.1  rmind 	while (l++, getline(&buf, &n, fp) != -1) {
    593      1.1  rmind 		fam_addr_mask_t *fam;
    594      1.1  rmind 
    595      1.1  rmind 		if (*buf == '\n' || *buf == '#') {
    596      1.1  rmind 			continue;
    597      1.1  rmind 		}
    598      1.1  rmind 		fam = npfctl_parse_cidr(buf);
    599      1.1  rmind 		if (fam == NULL) {
    600      1.1  rmind 			errx(EXIT_FAILURE, "%s:%d: invalid table entry",
    601      1.1  rmind 			    fname, l);
    602      1.1  rmind 		}
    603      1.1  rmind 
    604      1.1  rmind 		/* Create and add a table entry. */
    605      1.1  rmind 		npf_table_add_entry(tl, &fam->fam_addr, fam->fam_mask);
    606      1.1  rmind 	}
    607      1.1  rmind 	if (buf != NULL) {
    608      1.1  rmind 		free(buf);
    609      1.1  rmind 	}
    610      1.1  rmind }
    611      1.1  rmind 
    612      1.1  rmind /*
    613      1.1  rmind  * npfctl_build_table: create an NPF table, add to the configuration and,
    614      1.1  rmind  * if required, fill with contents from a file.
    615      1.1  rmind  */
    616      1.1  rmind void
    617      1.1  rmind npfctl_build_table(const char *tid, u_int type, const char *fname)
    618      1.1  rmind {
    619      1.1  rmind 	nl_table_t *tl;
    620      1.1  rmind 	u_int id;
    621      1.1  rmind 
    622      1.1  rmind 	id = atoi(tid);
    623      1.1  rmind 	tl = npf_table_create(id, type);
    624      1.1  rmind 	assert(tl != NULL);
    625      1.1  rmind 
    626      1.1  rmind 	if (npf_table_insert(npf_conf, tl)) {
    627      1.1  rmind 		errx(EXIT_FAILURE, "table '%d' is already defined\n", id);
    628      1.1  rmind 	}
    629      1.1  rmind 
    630      1.1  rmind 	if (fname) {
    631      1.1  rmind 		npfctl_fill_table(tl, fname);
    632      1.1  rmind 	}
    633      1.1  rmind }
    634