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