Home | History | Annotate | Line # | Download | only in npf
npf_ctl.c revision 1.16
      1  1.16   rmind /*	$NetBSD: npf_ctl.c,v 1.16 2012/07/15 00:23:00 rmind Exp $	*/
      2   1.1   rmind 
      3   1.1   rmind /*-
      4  1.13   rmind  * Copyright (c) 2009-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  * NPF device control.
     34   1.1   rmind  *
     35   1.1   rmind  * Implementation of (re)loading, construction of tables and rules.
     36   1.1   rmind  * NPF proplib(9) dictionary consumer.
     37   1.1   rmind  */
     38   1.1   rmind 
     39   1.1   rmind #include <sys/cdefs.h>
     40  1.16   rmind __KERNEL_RCSID(0, "$NetBSD: npf_ctl.c,v 1.16 2012/07/15 00:23:00 rmind Exp $");
     41   1.1   rmind 
     42   1.1   rmind #include <sys/param.h>
     43   1.1   rmind #include <sys/conf.h>
     44   1.1   rmind 
     45   1.1   rmind #include <prop/proplib.h>
     46   1.1   rmind 
     47   1.1   rmind #include "npf_ncode.h"
     48   1.1   rmind #include "npf_impl.h"
     49   1.1   rmind 
     50  1.12   rmind #if defined(DEBUG) || defined(DIAGNOSTIC)
     51  1.12   rmind #define	NPF_ERR_DEBUG(e) \
     52  1.12   rmind 	prop_dictionary_set_cstring_nocopy((e), "source-file", __FILE__); \
     53  1.12   rmind 	prop_dictionary_set_uint32((e), "source-line", __LINE__);
     54  1.12   rmind #else
     55  1.12   rmind #define	NPF_ERR_DEBUG(e)
     56  1.12   rmind #endif
     57  1.12   rmind 
     58   1.1   rmind /*
     59   1.1   rmind  * npfctl_switch: enable or disable packet inspection.
     60   1.1   rmind  */
     61   1.1   rmind int
     62   1.1   rmind npfctl_switch(void *data)
     63   1.1   rmind {
     64   1.1   rmind 	const bool onoff = *(int *)data ? true : false;
     65   1.1   rmind 	int error;
     66   1.1   rmind 
     67   1.1   rmind 	if (onoff) {
     68   1.1   rmind 		/* Enable: add pfil hooks. */
     69  1.14   rmind 		error = npf_pfil_register();
     70   1.1   rmind 	} else {
     71   1.1   rmind 		/* Disable: remove pfil hooks. */
     72  1.14   rmind 		npf_pfil_unregister();
     73   1.1   rmind 		error = 0;
     74   1.1   rmind 	}
     75   1.1   rmind 	return error;
     76   1.1   rmind }
     77   1.1   rmind 
     78   1.6   rmind static int __noinline
     79  1.12   rmind npf_mk_tables(npf_tableset_t *tblset, prop_array_t tables,
     80  1.12   rmind     prop_dictionary_t errdict)
     81   1.1   rmind {
     82   1.1   rmind 	prop_object_iterator_t it;
     83   1.1   rmind 	prop_dictionary_t tbldict;
     84   1.1   rmind 	int error = 0;
     85   1.1   rmind 
     86   1.1   rmind 	/* Tables - array. */
     87  1.12   rmind 	if (prop_object_type(tables) != PROP_TYPE_ARRAY) {
     88  1.12   rmind 		NPF_ERR_DEBUG(errdict);
     89   1.1   rmind 		return EINVAL;
     90  1.12   rmind 	}
     91   1.1   rmind 
     92   1.1   rmind 	it = prop_array_iterator(tables);
     93   1.1   rmind 	while ((tbldict = prop_object_iterator_next(it)) != NULL) {
     94   1.1   rmind 		prop_dictionary_t ent;
     95   1.1   rmind 		prop_object_iterator_t eit;
     96   1.1   rmind 		prop_array_t entries;
     97   1.1   rmind 		npf_table_t *t;
     98   1.1   rmind 		u_int tid;
     99   1.1   rmind 		int type;
    100   1.1   rmind 
    101   1.1   rmind 		/* Table - dictionary. */
    102   1.1   rmind 		if (prop_object_type(tbldict) != PROP_TYPE_DICTIONARY) {
    103  1.12   rmind 			NPF_ERR_DEBUG(errdict);
    104   1.1   rmind 			error = EINVAL;
    105   1.1   rmind 			break;
    106   1.1   rmind 		}
    107   1.1   rmind 
    108   1.1   rmind 		/* Table ID and type. */
    109   1.6   rmind 		prop_dictionary_get_uint32(tbldict, "id", &tid);
    110   1.6   rmind 		prop_dictionary_get_int32(tbldict, "type", &type);
    111   1.6   rmind 
    112  1.12   rmind 		/* Validate them, check for duplicate IDs. */
    113   1.1   rmind 		error = npf_table_check(tblset, tid, type);
    114   1.1   rmind 		if (error)
    115   1.1   rmind 			break;
    116   1.1   rmind 
    117   1.1   rmind 		/* Create and insert the table. */
    118   1.1   rmind 		t = npf_table_create(tid, type, 1024);	/* XXX */
    119   1.1   rmind 		if (t == NULL) {
    120  1.12   rmind 			NPF_ERR_DEBUG(errdict);
    121   1.1   rmind 			error = ENOMEM;
    122   1.1   rmind 			break;
    123   1.1   rmind 		}
    124   1.1   rmind 		error = npf_tableset_insert(tblset, t);
    125   1.1   rmind 		KASSERT(error == 0);
    126   1.1   rmind 
    127   1.1   rmind 		/* Entries. */
    128   1.1   rmind 		entries = prop_dictionary_get(tbldict, "entries");
    129   1.1   rmind 		if (prop_object_type(entries) != PROP_TYPE_ARRAY) {
    130  1.12   rmind 			NPF_ERR_DEBUG(errdict);
    131   1.1   rmind 			error = EINVAL;
    132   1.1   rmind 			break;
    133   1.1   rmind 		}
    134   1.1   rmind 		eit = prop_array_iterator(entries);
    135   1.1   rmind 		while ((ent = prop_object_iterator_next(eit)) != NULL) {
    136   1.7  zoltan 			const npf_addr_t *addr;
    137   1.9   rmind 			npf_netmask_t mask;
    138  1.16   rmind 			int alen;
    139   1.1   rmind 
    140   1.6   rmind 			/* Get address and mask.  Add a table entry. */
    141  1.16   rmind 			prop_object_t obj = prop_dictionary_get(ent, "addr");
    142  1.16   rmind 			addr = (const npf_addr_t *)prop_data_data_nocopy(obj);
    143   1.7  zoltan 			prop_dictionary_get_uint8(ent, "mask", &mask);
    144  1.16   rmind 			alen = prop_data_size(obj);
    145  1.16   rmind 
    146  1.16   rmind 			error = npf_table_insert(tblset, tid, alen, addr, mask);
    147   1.1   rmind 			if (error)
    148   1.1   rmind 				break;
    149   1.1   rmind 		}
    150   1.1   rmind 		prop_object_iterator_release(eit);
    151   1.1   rmind 		if (error)
    152   1.1   rmind 			break;
    153   1.1   rmind 	}
    154   1.1   rmind 	prop_object_iterator_release(it);
    155   1.1   rmind 	/*
    156   1.4   rmind 	 * Note: in a case of error, caller will free the tableset.
    157   1.1   rmind 	 */
    158   1.1   rmind 	return error;
    159   1.1   rmind }
    160   1.1   rmind 
    161   1.5   rmind static npf_rproc_t *
    162   1.6   rmind npf_mk_rproc(prop_array_t rprocs, const char *rpname)
    163   1.5   rmind {
    164   1.5   rmind 	prop_object_iterator_t it;
    165   1.5   rmind 	prop_dictionary_t rpdict;
    166   1.5   rmind 	npf_rproc_t *rp;
    167   1.5   rmind 
    168   1.5   rmind 	it = prop_array_iterator(rprocs);
    169   1.5   rmind 	while ((rpdict = prop_object_iterator_next(it)) != NULL) {
    170   1.6   rmind 		const char *iname;
    171   1.6   rmind 		prop_dictionary_get_cstring_nocopy(rpdict, "name", &iname);
    172  1.12   rmind 		KASSERT(iname != NULL);
    173   1.6   rmind 		if (strcmp(rpname, iname) == 0)
    174   1.5   rmind 			break;
    175   1.5   rmind 	}
    176   1.6   rmind 	prop_object_iterator_release(it);
    177   1.5   rmind 	if (rpdict == NULL) {
    178   1.5   rmind 		return NULL;
    179   1.5   rmind 	}
    180   1.5   rmind 	CTASSERT(sizeof(uintptr_t) <= sizeof(uint64_t));
    181   1.6   rmind 	if (!prop_dictionary_get_uint64(rpdict, "rproc-ptr", (uint64_t *)&rp)) {
    182   1.5   rmind 		rp = npf_rproc_create(rpdict);
    183   1.6   rmind 		prop_dictionary_set_uint64(rpdict, "rproc-ptr",
    184   1.6   rmind 		    (uint64_t)(uintptr_t)rp);
    185   1.5   rmind 	}
    186   1.5   rmind 	return rp;
    187   1.5   rmind }
    188   1.5   rmind 
    189   1.6   rmind static int __noinline
    190  1.12   rmind npf_mk_ncode(prop_object_t obj, void **code, size_t *csize,
    191  1.12   rmind     prop_dictionary_t errdict)
    192  1.12   rmind {
    193  1.12   rmind 	const void *ncptr;
    194  1.12   rmind 	int nc_err, errat;
    195  1.12   rmind 	size_t nc_size;
    196  1.12   rmind 	void *nc;
    197  1.12   rmind 
    198  1.12   rmind 	/*
    199  1.12   rmind 	 * Allocate, copy and validate n-code. XXX: Inefficient.
    200  1.12   rmind 	 */
    201  1.12   rmind 	ncptr = prop_data_data_nocopy(obj);
    202  1.12   rmind 	nc_size = prop_data_size(obj);
    203  1.12   rmind 	if (ncptr == NULL || nc_size > NPF_NCODE_LIMIT) {
    204  1.12   rmind 		NPF_ERR_DEBUG(errdict);
    205  1.12   rmind 		return ERANGE;
    206  1.12   rmind 	}
    207  1.12   rmind 	nc = npf_ncode_alloc(nc_size);
    208  1.12   rmind 	if (nc == NULL) {
    209  1.12   rmind 		NPF_ERR_DEBUG(errdict);
    210  1.12   rmind 		return ENOMEM;
    211  1.12   rmind 	}
    212  1.12   rmind 	memcpy(nc, ncptr, nc_size);
    213  1.12   rmind 	nc_err = npf_ncode_validate(nc, nc_size, &errat);
    214  1.12   rmind 	if (nc_err) {
    215  1.12   rmind 		npf_ncode_free(nc, nc_size);
    216  1.12   rmind 		prop_dictionary_set_int32(errdict, "ncode-error", nc_err);
    217  1.12   rmind 		prop_dictionary_set_int32(errdict, "ncode-errat", errat);
    218  1.12   rmind 		return EINVAL;
    219  1.12   rmind 	}
    220  1.12   rmind 	*code = nc;
    221  1.12   rmind 	*csize = nc_size;
    222  1.12   rmind 	return 0;
    223  1.12   rmind }
    224  1.12   rmind 
    225  1.12   rmind static int __noinline
    226  1.12   rmind npf_mk_singlerule(prop_dictionary_t rldict, prop_array_t rps, npf_rule_t **rl,
    227  1.12   rmind     prop_dictionary_t errdict)
    228   1.1   rmind {
    229   1.6   rmind 	const char *rnm;
    230   1.5   rmind 	npf_rproc_t *rp;
    231   1.1   rmind 	prop_object_t obj;
    232   1.1   rmind 	size_t nc_size;
    233   1.1   rmind 	void *nc;
    234  1.12   rmind 	int p, error;
    235   1.1   rmind 
    236   1.1   rmind 	/* Rule - dictionary. */
    237  1.12   rmind 	if (prop_object_type(rldict) != PROP_TYPE_DICTIONARY) {
    238  1.12   rmind 		NPF_ERR_DEBUG(errdict);
    239   1.1   rmind 		return EINVAL;
    240  1.12   rmind 	}
    241   1.1   rmind 
    242  1.12   rmind 	error = 0;
    243   1.1   rmind 	obj = prop_dictionary_get(rldict, "ncode");
    244   1.1   rmind 	if (obj) {
    245  1.12   rmind 		/* N-code (binary data). */
    246  1.12   rmind 		error = npf_mk_ncode(obj, &nc, &nc_size, errdict);
    247  1.12   rmind 		if (error) {
    248  1.12   rmind 			goto err;
    249   1.4   rmind 		}
    250   1.1   rmind 	} else {
    251   1.1   rmind 		/* No n-code. */
    252   1.1   rmind 		nc = NULL;
    253   1.1   rmind 		nc_size = 0;
    254   1.1   rmind 	}
    255   1.1   rmind 
    256   1.5   rmind 	/* Check for rule procedure. */
    257   1.6   rmind 	if (rps && prop_dictionary_get_cstring_nocopy(rldict, "rproc", &rnm)) {
    258   1.6   rmind 		rp = npf_mk_rproc(rps, rnm);
    259   1.5   rmind 		if (rp == NULL) {
    260   1.5   rmind 			if (nc) {
    261   1.5   rmind 				npf_ncode_free(nc, nc_size);	/* XXX */
    262   1.5   rmind 			}
    263  1.12   rmind 			NPF_ERR_DEBUG(errdict);
    264  1.12   rmind 			error = EINVAL;
    265  1.12   rmind 			goto err;
    266   1.1   rmind 		}
    267   1.5   rmind 	} else {
    268   1.5   rmind 		rp = NULL;
    269   1.1   rmind 	}
    270   1.5   rmind 
    271   1.6   rmind 	/* Finally, allocate and return the rule. */
    272   1.6   rmind 	*rl = npf_rule_alloc(rldict, rp, nc, nc_size);
    273  1.12   rmind 	KASSERT(*rl != NULL);
    274   1.6   rmind 	return 0;
    275  1.12   rmind err:
    276  1.12   rmind 	prop_dictionary_get_int32(rldict, "priority", &p); /* XXX */
    277  1.12   rmind 	prop_dictionary_set_int32(errdict, "id", p);
    278  1.12   rmind 	return error;
    279   1.6   rmind }
    280   1.6   rmind 
    281   1.6   rmind static int __noinline
    282  1.12   rmind npf_mk_subrules(npf_ruleset_t *rlset, prop_array_t rules, prop_array_t rprocs,
    283  1.12   rmind     prop_dictionary_t errdict)
    284   1.6   rmind {
    285   1.6   rmind 	prop_object_iterator_t it;
    286   1.6   rmind 	prop_dictionary_t rldict;
    287   1.6   rmind 	int error = 0;
    288   1.6   rmind 
    289   1.6   rmind 	if (prop_object_type(rules) != PROP_TYPE_ARRAY) {
    290  1.12   rmind 		NPF_ERR_DEBUG(errdict);
    291   1.6   rmind 		return EINVAL;
    292   1.6   rmind 	}
    293   1.6   rmind 	it = prop_array_iterator(rules);
    294   1.6   rmind 	while ((rldict = prop_object_iterator_next(it)) != NULL) {
    295   1.6   rmind 		npf_rule_t *rl;
    296  1.12   rmind 		error = npf_mk_singlerule(rldict, rprocs, &rl, errdict);
    297   1.6   rmind 		if (error) {
    298   1.6   rmind 			break;
    299   1.6   rmind 		}
    300   1.6   rmind 		npf_ruleset_insert(rlset, rl);
    301   1.1   rmind 	}
    302   1.6   rmind 	prop_object_iterator_release(it);
    303   1.6   rmind 	return error;
    304   1.1   rmind }
    305   1.1   rmind 
    306   1.6   rmind static int __noinline
    307  1.12   rmind npf_mk_rules(npf_ruleset_t *rlset, prop_array_t rules, prop_array_t rprocs,
    308  1.12   rmind     prop_dictionary_t errdict)
    309   1.1   rmind {
    310   1.1   rmind 	prop_object_iterator_t it;
    311   1.5   rmind 	prop_dictionary_t rldict, rpdict;
    312   1.1   rmind 	int error;
    313   1.1   rmind 
    314   1.5   rmind 	/* Rule procedures and the ruleset - arrays. */
    315   1.5   rmind 	if (prop_object_type(rprocs) != PROP_TYPE_ARRAY ||
    316  1.12   rmind 	    prop_object_type(rules) != PROP_TYPE_ARRAY) {
    317  1.12   rmind 		NPF_ERR_DEBUG(errdict);
    318   1.1   rmind 		return EINVAL;
    319  1.12   rmind 	}
    320   1.1   rmind 
    321   1.5   rmind 	it = prop_array_iterator(rprocs);
    322   1.5   rmind 	while ((rpdict = prop_object_iterator_next(it)) != NULL) {
    323   1.6   rmind 		if (prop_dictionary_get(rpdict, "rproc-ptr")) {
    324   1.6   rmind 			prop_object_iterator_release(it);
    325  1.12   rmind 			NPF_ERR_DEBUG(errdict);
    326   1.5   rmind 			return EINVAL;
    327   1.6   rmind 		}
    328   1.5   rmind 	}
    329   1.5   rmind 	prop_object_iterator_release(it);
    330   1.5   rmind 
    331   1.4   rmind 	error = 0;
    332   1.1   rmind 	it = prop_array_iterator(rules);
    333   1.1   rmind 	while ((rldict = prop_object_iterator_next(it)) != NULL) {
    334   1.1   rmind 		prop_array_t subrules;
    335   1.6   rmind 		npf_ruleset_t *rlsetsub;
    336   1.6   rmind 		npf_rule_t *rl;
    337   1.1   rmind 
    338   1.1   rmind 		/* Generate a single rule. */
    339  1.12   rmind 		error = npf_mk_singlerule(rldict, rprocs, &rl, errdict);
    340   1.6   rmind 		if (error) {
    341   1.1   rmind 			break;
    342   1.6   rmind 		}
    343   1.6   rmind 		npf_ruleset_insert(rlset, rl);
    344   1.1   rmind 
    345   1.6   rmind 		/* Check for sub-rules and generate, if any. */
    346   1.1   rmind 		subrules = prop_dictionary_get(rldict, "subrules");
    347   1.1   rmind 		if (subrules == NULL) {
    348   1.1   rmind 			/* No subrules, next.. */
    349   1.1   rmind 			continue;
    350   1.1   rmind 		}
    351   1.6   rmind 		rlsetsub = npf_rule_subset(rl);
    352  1.12   rmind 		error = npf_mk_subrules(rlsetsub, subrules, rprocs, errdict);
    353   1.1   rmind 		if (error)
    354   1.1   rmind 			break;
    355   1.1   rmind 	}
    356   1.1   rmind 	prop_object_iterator_release(it);
    357   1.1   rmind 	/*
    358   1.4   rmind 	 * Note: in a case of error, caller will free the ruleset.
    359   1.1   rmind 	 */
    360   1.1   rmind 	return error;
    361   1.1   rmind }
    362   1.1   rmind 
    363   1.6   rmind static int __noinline
    364  1.12   rmind npf_mk_natlist(npf_ruleset_t *nset, prop_array_t natlist,
    365  1.12   rmind     prop_dictionary_t errdict)
    366   1.1   rmind {
    367   1.1   rmind 	prop_object_iterator_t it;
    368   1.1   rmind 	prop_dictionary_t natdict;
    369   1.1   rmind 	int error;
    370   1.1   rmind 
    371   1.1   rmind 	/* NAT policies - array. */
    372  1.12   rmind 	if (prop_object_type(natlist) != PROP_TYPE_ARRAY) {
    373  1.12   rmind 		NPF_ERR_DEBUG(errdict);
    374   1.1   rmind 		return EINVAL;
    375  1.12   rmind 	}
    376   1.1   rmind 
    377   1.4   rmind 	error = 0;
    378   1.1   rmind 	it = prop_array_iterator(natlist);
    379   1.1   rmind 	while ((natdict = prop_object_iterator_next(it)) != NULL) {
    380   1.1   rmind 		npf_natpolicy_t *np;
    381   1.1   rmind 		npf_rule_t *rl;
    382   1.1   rmind 
    383   1.1   rmind 		/* NAT policy - dictionary. */
    384   1.1   rmind 		if (prop_object_type(natdict) != PROP_TYPE_DICTIONARY) {
    385  1.12   rmind 			NPF_ERR_DEBUG(errdict);
    386   1.1   rmind 			error = EINVAL;
    387   1.1   rmind 			break;
    388   1.1   rmind 		}
    389   1.1   rmind 
    390   1.1   rmind 		/*
    391   1.1   rmind 		 * NAT policies are standard rules, plus additional
    392   1.1   rmind 		 * information for translation.  Make a rule.
    393   1.1   rmind 		 */
    394  1.12   rmind 		error = npf_mk_singlerule(natdict, NULL, &rl, errdict);
    395   1.6   rmind 		if (error) {
    396   1.1   rmind 			break;
    397   1.6   rmind 		}
    398   1.6   rmind 		npf_ruleset_insert(nset, rl);
    399   1.6   rmind 
    400   1.6   rmind 		/* If rule is named, it is a group with NAT policies. */
    401   1.6   rmind 		if (prop_dictionary_get(natdict, "name") &&
    402   1.6   rmind 		    prop_dictionary_get(natdict, "subrules")) {
    403   1.6   rmind 			continue;
    404   1.6   rmind 		}
    405   1.1   rmind 
    406   1.1   rmind 		/* Allocate a new NAT policy and assign to the rule. */
    407   1.5   rmind 		np = npf_nat_newpolicy(natdict, nset);
    408   1.1   rmind 		if (np == NULL) {
    409  1.12   rmind 			NPF_ERR_DEBUG(errdict);
    410   1.1   rmind 			error = ENOMEM;
    411   1.1   rmind 			break;
    412   1.1   rmind 		}
    413   1.1   rmind 		npf_rule_setnat(rl, np);
    414   1.1   rmind 	}
    415   1.1   rmind 	prop_object_iterator_release(it);
    416   1.1   rmind 	/*
    417   1.1   rmind 	 * Note: in a case of error, caller will free entire NAT ruleset
    418   1.1   rmind 	 * with assigned NAT policies.
    419   1.1   rmind 	 */
    420   1.1   rmind 	return error;
    421   1.1   rmind }
    422   1.1   rmind 
    423   1.1   rmind /*
    424   1.1   rmind  * npfctl_reload: store passed data i.e. update settings, create passed
    425   1.1   rmind  * tables, rules and atomically activate all them.
    426   1.1   rmind  */
    427   1.1   rmind int
    428   1.1   rmind npfctl_reload(u_long cmd, void *data)
    429   1.1   rmind {
    430  1.12   rmind 	struct plistref *pref = data;
    431  1.14   rmind 	prop_dictionary_t npf_dict, errdict;
    432   1.5   rmind 	prop_array_t natlist, tables, rprocs, rules;
    433   1.1   rmind 	npf_tableset_t *tblset = NULL;
    434   1.1   rmind 	npf_ruleset_t *rlset = NULL;
    435   1.1   rmind 	npf_ruleset_t *nset = NULL;
    436  1.11   rmind 	bool flush;
    437   1.1   rmind 	int error;
    438   1.1   rmind 
    439   1.1   rmind 	/* Retrieve the dictionary. */
    440  1.15   rmind #ifndef _NPF_TESTING
    441  1.14   rmind 	error = prop_dictionary_copyin_ioctl(pref, cmd, &npf_dict);
    442   1.1   rmind 	if (error)
    443   1.1   rmind 		return error;
    444   1.1   rmind #else
    445  1.15   rmind 	npf_dict = (prop_dictionary_t)pref;
    446   1.1   rmind #endif
    447  1.15   rmind 
    448  1.12   rmind 	/* Dictionary for error reporting. */
    449  1.12   rmind 	errdict = prop_dictionary_create();
    450  1.12   rmind 
    451   1.1   rmind 	/* NAT policies. */
    452   1.1   rmind 	nset = npf_ruleset_create();
    453  1.14   rmind 	natlist = prop_dictionary_get(npf_dict, "translation");
    454  1.12   rmind 	error = npf_mk_natlist(nset, natlist, errdict);
    455  1.10   rmind 	if (error) {
    456   1.1   rmind 		goto fail;
    457  1.10   rmind 	}
    458   1.1   rmind 
    459   1.1   rmind 	/* Tables. */
    460   1.1   rmind 	tblset = npf_tableset_create();
    461  1.14   rmind 	tables = prop_dictionary_get(npf_dict, "tables");
    462  1.12   rmind 	error = npf_mk_tables(tblset, tables, errdict);
    463  1.10   rmind 	if (error) {
    464   1.1   rmind 		goto fail;
    465  1.10   rmind 	}
    466   1.1   rmind 
    467   1.5   rmind 	/* Rules and rule procedures. */
    468   1.1   rmind 	rlset = npf_ruleset_create();
    469  1.14   rmind 	rprocs = prop_dictionary_get(npf_dict, "rprocs");
    470  1.14   rmind 	rules = prop_dictionary_get(npf_dict, "rules");
    471  1.12   rmind 	error = npf_mk_rules(rlset, rules, rprocs, errdict);
    472  1.10   rmind 	if (error) {
    473   1.1   rmind 		goto fail;
    474  1.10   rmind 	}
    475   1.1   rmind 
    476  1.11   rmind 	flush = false;
    477  1.14   rmind 	prop_dictionary_get_bool(npf_dict, "flush", &flush);
    478  1.11   rmind 
    479   1.1   rmind 	/*
    480   1.4   rmind 	 * Finally - reload ruleset, tableset and NAT policies.
    481   1.1   rmind 	 * Operation will be performed as a single transaction.
    482   1.1   rmind 	 */
    483  1.14   rmind 	npf_reload(npf_dict, rlset, tblset, nset, flush);
    484   1.1   rmind 
    485  1.11   rmind 	/* Turn on/off session tracking accordingly. */
    486  1.11   rmind 	npf_session_tracking(!flush);
    487  1.11   rmind 
    488   1.1   rmind 	/* Done.  Since data is consumed now, we shall not destroy it. */
    489   1.1   rmind 	tblset = NULL;
    490   1.1   rmind 	rlset = NULL;
    491   1.1   rmind 	nset = NULL;
    492   1.1   rmind fail:
    493   1.1   rmind 	/*
    494   1.1   rmind 	 * Note: destroy rulesets first, to drop references to the tableset.
    495   1.1   rmind 	 */
    496   1.1   rmind 	KASSERT(error == 0 || (nset || rlset || tblset));
    497   1.1   rmind 	if (nset) {
    498   1.1   rmind 		npf_ruleset_destroy(nset);
    499   1.1   rmind 	}
    500   1.1   rmind 	if (rlset) {
    501   1.1   rmind 		npf_ruleset_destroy(rlset);
    502   1.1   rmind 	}
    503   1.1   rmind 	if (tblset) {
    504   1.1   rmind 		npf_tableset_destroy(tblset);
    505   1.1   rmind 	}
    506  1.14   rmind 	if (error) {
    507  1.14   rmind 		prop_object_release(npf_dict);
    508  1.14   rmind 	}
    509  1.12   rmind 
    510  1.12   rmind 	/* Error report. */
    511  1.12   rmind 	prop_dictionary_set_int32(errdict, "errno", error);
    512  1.15   rmind #ifndef _NPF_TESTING
    513  1.12   rmind 	prop_dictionary_copyout_ioctl(pref, cmd, errdict);
    514  1.13   rmind #endif
    515  1.12   rmind 	prop_object_release(errdict);
    516  1.12   rmind 	return 0;
    517   1.6   rmind }
    518   1.6   rmind 
    519  1.14   rmind int
    520  1.14   rmind npfctl_getconf(u_long cmd, void *data)
    521  1.14   rmind {
    522  1.14   rmind 	struct plistref *pref = data;
    523  1.14   rmind 	prop_dictionary_t npf_dict;
    524  1.14   rmind 	int error;
    525  1.14   rmind 
    526  1.14   rmind 	npf_core_enter();
    527  1.14   rmind 	npf_dict = npf_core_dict();
    528  1.14   rmind 	prop_dictionary_set_bool(npf_dict, "active", npf_pfil_registered_p());
    529  1.14   rmind 	error = prop_dictionary_copyout_ioctl(pref, cmd, npf_dict);
    530  1.14   rmind 	npf_core_exit();
    531  1.14   rmind 
    532  1.14   rmind 	return error;
    533  1.14   rmind }
    534  1.14   rmind 
    535   1.6   rmind /*
    536   1.6   rmind  * npfctl_update_rule: reload a specific rule identified by the name.
    537   1.6   rmind  */
    538   1.6   rmind int
    539   1.6   rmind npfctl_update_rule(u_long cmd, void *data)
    540   1.6   rmind {
    541  1.12   rmind 	struct plistref *pref = data;
    542  1.12   rmind 	prop_dictionary_t dict, errdict;
    543   1.6   rmind 	prop_array_t subrules;
    544   1.6   rmind 	prop_object_t obj;
    545   1.6   rmind 	npf_ruleset_t *rlset;
    546   1.6   rmind 	const char *name;
    547   1.6   rmind 	int error;
    548   1.6   rmind 
    549   1.6   rmind 	/* Retrieve and construct the rule. */
    550   1.6   rmind 	error = prop_dictionary_copyin_ioctl(pref, cmd, &dict);
    551   1.6   rmind 	if (error) {
    552   1.6   rmind 		return error;
    553   1.6   rmind 	}
    554  1.12   rmind 
    555  1.12   rmind 	/* Dictionary for error reporting. */
    556  1.12   rmind 	errdict = prop_dictionary_create();
    557  1.12   rmind 
    558   1.6   rmind 	/* Create the ruleset and construct sub-rules. */
    559   1.6   rmind 	rlset = npf_ruleset_create();
    560   1.6   rmind 	subrules = prop_dictionary_get(dict, "subrules");
    561  1.12   rmind 	error = npf_mk_subrules(rlset, subrules, NULL, errdict);
    562   1.6   rmind 	if (error) {
    563   1.6   rmind 		goto out;
    564   1.6   rmind 	}
    565   1.6   rmind 
    566   1.6   rmind 	/* Lookup the rule by name, and replace its subset (sub-rules). */
    567   1.6   rmind 	obj = prop_dictionary_get(dict, "name");
    568   1.6   rmind 	name = prop_string_cstring_nocopy(obj);
    569   1.6   rmind 	if (npf_ruleset_replace(name, rlset) == NULL) {
    570   1.6   rmind 		/* Not found. */
    571   1.6   rmind 		error = ENOENT;
    572   1.6   rmind out:		/* Error path. */
    573   1.6   rmind 		npf_ruleset_destroy(rlset);
    574   1.6   rmind 	}
    575   1.6   rmind 	prop_object_release(dict);
    576  1.12   rmind 
    577  1.12   rmind 	/* Error report. */
    578  1.12   rmind 	prop_dictionary_set_int32(errdict, "errno", error);
    579  1.12   rmind 	prop_dictionary_copyout_ioctl(pref, cmd, errdict);
    580  1.12   rmind 	prop_object_release(errdict);
    581   1.1   rmind 	return error;
    582   1.1   rmind }
    583   1.1   rmind 
    584   1.1   rmind /*
    585   1.4   rmind  * npfctl_sessions_save: construct a list of sessions and export for saving.
    586   1.4   rmind  */
    587   1.4   rmind int
    588   1.4   rmind npfctl_sessions_save(u_long cmd, void *data)
    589   1.4   rmind {
    590   1.4   rmind 	struct plistref *pref = data;
    591   1.4   rmind 	prop_dictionary_t sesdict;
    592   1.4   rmind 	prop_array_t selist, nplist;
    593   1.4   rmind 	int error;
    594   1.4   rmind 
    595   1.4   rmind 	/* Create a dictionary and two lists. */
    596   1.4   rmind 	sesdict = prop_dictionary_create();
    597   1.4   rmind 	selist = prop_array_create();
    598   1.4   rmind 	nplist = prop_array_create();
    599   1.4   rmind 
    600   1.4   rmind 	/* Save the sessions. */
    601   1.4   rmind 	error = npf_session_save(selist, nplist);
    602   1.4   rmind 	if (error) {
    603   1.4   rmind 		goto fail;
    604   1.4   rmind 	}
    605   1.4   rmind 
    606   1.4   rmind 	/* Set the session list, NAT policy list and export the dictionary. */
    607   1.4   rmind 	prop_dictionary_set(sesdict, "session-list", selist);
    608   1.4   rmind 	prop_dictionary_set(sesdict, "nat-policy-list", nplist);
    609   1.4   rmind 	error = prop_dictionary_copyout_ioctl(pref, cmd, sesdict);
    610   1.4   rmind fail:
    611   1.4   rmind 	prop_object_release(sesdict);
    612   1.4   rmind 	return error;
    613   1.4   rmind }
    614   1.4   rmind 
    615   1.4   rmind /*
    616   1.4   rmind  * npfctl_sessions_load: import a list of sessions, reconstruct them and load.
    617   1.4   rmind  */
    618   1.4   rmind int
    619   1.4   rmind npfctl_sessions_load(u_long cmd, void *data)
    620   1.4   rmind {
    621   1.4   rmind 	const struct plistref *pref = data;
    622   1.4   rmind 	npf_sehash_t *sehasht = NULL;
    623   1.4   rmind 	prop_dictionary_t sesdict, sedict;
    624   1.4   rmind 	prop_object_iterator_t it;
    625   1.4   rmind 	prop_array_t selist;
    626   1.4   rmind 	int error;
    627   1.4   rmind 
    628   1.4   rmind 	/* Retrieve the dictionary containing session and NAT policy lists. */
    629   1.4   rmind 	error = prop_dictionary_copyin_ioctl(pref, cmd, &sesdict);
    630   1.4   rmind 	if (error)
    631   1.4   rmind 		return error;
    632  1.15   rmind 
    633   1.4   rmind 	/*
    634   1.4   rmind 	 * Note: session objects contain the references to the NAT policy
    635   1.4   rmind 	 * entries.  Therefore, no need to directly access it.
    636   1.4   rmind 	 */
    637   1.4   rmind 	selist = prop_dictionary_get(sesdict, "session-list");
    638   1.4   rmind 	if (prop_object_type(selist) != PROP_TYPE_ARRAY) {
    639   1.4   rmind 		error = EINVAL;
    640   1.4   rmind 		goto fail;
    641   1.4   rmind 	}
    642   1.4   rmind 
    643   1.4   rmind 	/* Create a session hash table. */
    644   1.4   rmind 	sehasht = sess_htable_create();
    645   1.4   rmind 	if (sehasht == NULL) {
    646   1.4   rmind 		error = ENOMEM;
    647   1.4   rmind 		goto fail;
    648   1.4   rmind 	}
    649   1.4   rmind 
    650   1.4   rmind 	/*
    651   1.4   rmind 	 * Iterate through and construct each session.
    652   1.4   rmind 	 */
    653   1.4   rmind 	error = 0;
    654   1.4   rmind 	it = prop_array_iterator(selist);
    655   1.4   rmind 	npf_core_enter();
    656   1.4   rmind 	while ((sedict = prop_object_iterator_next(it)) != NULL) {
    657   1.4   rmind 		/* Session - dictionary. */
    658   1.4   rmind 		if (prop_object_type(sedict) != PROP_TYPE_DICTIONARY) {
    659   1.4   rmind 			error = EINVAL;
    660   1.4   rmind 			goto fail;
    661   1.4   rmind 		}
    662   1.4   rmind 		/* Construct and insert real session structure. */
    663   1.4   rmind 		error = npf_session_restore(sehasht, sedict);
    664   1.4   rmind 		if (error) {
    665   1.4   rmind 			goto fail;
    666   1.4   rmind 		}
    667   1.4   rmind 	}
    668   1.4   rmind 	npf_core_exit();
    669   1.4   rmind 	sess_htable_reload(sehasht);
    670   1.4   rmind fail:
    671   1.4   rmind 	prop_object_release(selist);
    672   1.4   rmind 	if (error && sehasht) {
    673   1.4   rmind 		/* Destroy session table. */
    674   1.4   rmind 		sess_htable_destroy(sehasht);
    675   1.4   rmind 	}
    676   1.4   rmind 	return error;
    677   1.4   rmind }
    678   1.4   rmind 
    679   1.4   rmind /*
    680   1.2   rmind  * npfctl_table: add, remove or query entries in the specified table.
    681   1.1   rmind  *
    682   1.1   rmind  * For maximum performance, interface is avoiding proplib(3)'s overhead.
    683   1.1   rmind  */
    684   1.1   rmind int
    685   1.1   rmind npfctl_table(void *data)
    686   1.1   rmind {
    687   1.1   rmind 	npf_ioctl_table_t *nct = data;
    688  1.10   rmind 	npf_tableset_t *tblset;
    689   1.1   rmind 	int error;
    690   1.1   rmind 
    691   1.6   rmind 	npf_core_enter(); /* XXXSMP */
    692  1.10   rmind 	tblset = npf_core_tableset();
    693   1.1   rmind 	switch (nct->nct_action) {
    694   1.1   rmind 	case NPF_IOCTL_TBLENT_ADD:
    695  1.16   rmind 		error = npf_table_insert(tblset, nct->nct_tid,
    696  1.16   rmind 		    nct->nct_alen, &nct->nct_addr, nct->nct_mask);
    697   1.1   rmind 		break;
    698   1.1   rmind 	case NPF_IOCTL_TBLENT_REM:
    699  1.16   rmind 		error = npf_table_remove(tblset, nct->nct_tid,
    700  1.16   rmind 		    nct->nct_alen, &nct->nct_addr, nct->nct_mask);
    701   1.1   rmind 		break;
    702   1.1   rmind 	default:
    703  1.16   rmind 		error = npf_table_lookup(tblset, nct->nct_tid,
    704  1.16   rmind 		    nct->nct_alen, &nct->nct_addr);
    705   1.1   rmind 	}
    706   1.6   rmind 	npf_core_exit(); /* XXXSMP */
    707   1.1   rmind 	return error;
    708   1.1   rmind }
    709