Home | History | Annotate | Line # | Download | only in libnpf
npf.c revision 1.18
      1  1.18     rmind /*	$NetBSD: npf.c,v 1.18 2013/02/16 21:11:16 rmind Exp $	*/
      2   1.1     rmind 
      3   1.1     rmind /*-
      4  1.16     rmind  * Copyright (c) 2010-2013 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 #include <sys/cdefs.h>
     33  1.18     rmind __KERNEL_RCSID(0, "$NetBSD: npf.c,v 1.18 2013/02/16 21:11:16 rmind Exp $");
     34   1.1     rmind 
     35   1.1     rmind #include <sys/types.h>
     36   1.1     rmind #include <netinet/in_systm.h>
     37   1.1     rmind #include <netinet/in.h>
     38  1.11     rmind #include <net/if.h>
     39   1.1     rmind #include <prop/proplib.h>
     40   1.1     rmind 
     41   1.1     rmind #include <stdlib.h>
     42   1.1     rmind #include <string.h>
     43   1.7     rmind #include <assert.h>
     44   1.1     rmind #include <errno.h>
     45   1.1     rmind #include <err.h>
     46   1.1     rmind 
     47   1.1     rmind #define	_NPF_PRIVATE
     48   1.1     rmind #include "npf.h"
     49   1.1     rmind 
     50   1.1     rmind struct nl_config {
     51   1.1     rmind 	/* Rules, translations, tables, procedures. */
     52   1.8     rmind 	prop_dictionary_t	ncf_dict;
     53   1.1     rmind 	prop_array_t		ncf_rules_list;
     54   1.1     rmind 	prop_array_t		ncf_rproc_list;
     55   1.1     rmind 	prop_array_t		ncf_table_list;
     56   1.1     rmind 	prop_array_t		ncf_nat_list;
     57  1.11     rmind 	/* Debug information. */
     58  1.11     rmind 	prop_dictionary_t	ncf_debug;
     59   1.7     rmind 	/* Error report. */
     60   1.7     rmind 	prop_dictionary_t	ncf_err;
     61   1.4     rmind 	/* Custom file to externalise property-list. */
     62   1.4     rmind 	const char *		ncf_plist;
     63   1.6     rmind 	bool			ncf_flush;
     64   1.1     rmind };
     65   1.1     rmind 
     66   1.1     rmind struct nl_rule {
     67   1.1     rmind 	prop_dictionary_t	nrl_dict;
     68   1.1     rmind };
     69   1.1     rmind 
     70   1.1     rmind struct nl_rproc {
     71   1.1     rmind 	prop_dictionary_t	nrp_dict;
     72   1.1     rmind };
     73   1.1     rmind 
     74   1.1     rmind struct nl_table {
     75   1.1     rmind 	prop_dictionary_t	ntl_dict;
     76   1.1     rmind };
     77   1.1     rmind 
     78  1.13     rmind struct nl_ext {
     79  1.13     rmind 	const char *		nxt_name;
     80  1.13     rmind 	prop_dictionary_t	nxt_dict;
     81  1.13     rmind };
     82  1.13     rmind 
     83  1.16     rmind static prop_array_t	_npf_ruleset_transform(prop_array_t);
     84  1.16     rmind 
     85   1.1     rmind /*
     86   1.1     rmind  * CONFIGURATION INTERFACE.
     87   1.1     rmind  */
     88   1.1     rmind 
     89   1.1     rmind nl_config_t *
     90   1.1     rmind npf_config_create(void)
     91   1.1     rmind {
     92   1.1     rmind 	nl_config_t *ncf;
     93   1.1     rmind 
     94   1.7     rmind 	ncf = calloc(1, sizeof(*ncf));
     95   1.1     rmind 	if (ncf == NULL) {
     96   1.1     rmind 		return NULL;
     97   1.1     rmind 	}
     98   1.1     rmind 	ncf->ncf_rules_list = prop_array_create();
     99   1.1     rmind 	ncf->ncf_rproc_list = prop_array_create();
    100   1.1     rmind 	ncf->ncf_table_list = prop_array_create();
    101   1.1     rmind 	ncf->ncf_nat_list = prop_array_create();
    102   1.1     rmind 
    103   1.4     rmind 	ncf->ncf_plist = NULL;
    104   1.6     rmind 	ncf->ncf_flush = false;
    105   1.4     rmind 
    106   1.1     rmind 	return ncf;
    107   1.1     rmind }
    108   1.1     rmind 
    109   1.1     rmind int
    110   1.1     rmind npf_config_submit(nl_config_t *ncf, int fd)
    111   1.1     rmind {
    112   1.7     rmind 	const char *plist = ncf->ncf_plist;
    113   1.1     rmind 	prop_dictionary_t npf_dict;
    114  1.16     rmind 	prop_array_t rlset;
    115   1.1     rmind 	int error = 0;
    116   1.1     rmind 
    117   1.1     rmind 	npf_dict = prop_dictionary_create();
    118   1.1     rmind 	if (npf_dict == NULL) {
    119   1.1     rmind 		return ENOMEM;
    120   1.1     rmind 	}
    121  1.15     rmind 	prop_dictionary_set_uint32(npf_dict, "version", NPF_VERSION);
    122  1.16     rmind 
    123  1.16     rmind 	rlset = _npf_ruleset_transform(ncf->ncf_rules_list);
    124  1.16     rmind 	if (rlset == NULL) {
    125  1.16     rmind 		prop_object_release(npf_dict);
    126  1.16     rmind 		return ENOMEM;
    127  1.16     rmind 	}
    128  1.16     rmind 	prop_dictionary_set(npf_dict, "rules", rlset);
    129  1.16     rmind 	prop_object_release(rlset);
    130  1.16     rmind 
    131   1.1     rmind 	prop_dictionary_set(npf_dict, "rprocs", ncf->ncf_rproc_list);
    132   1.1     rmind 	prop_dictionary_set(npf_dict, "tables", ncf->ncf_table_list);
    133   1.1     rmind 	prop_dictionary_set(npf_dict, "translation", ncf->ncf_nat_list);
    134   1.6     rmind 	prop_dictionary_set_bool(npf_dict, "flush", ncf->ncf_flush);
    135  1.15     rmind 	if (ncf->ncf_debug) {
    136  1.15     rmind 		prop_dictionary_set(npf_dict, "debug", ncf->ncf_debug);
    137  1.15     rmind 	}
    138   1.1     rmind 
    139   1.4     rmind 	if (plist) {
    140   1.4     rmind 		if (!prop_dictionary_externalize_to_file(npf_dict, plist)) {
    141   1.4     rmind 			error = errno;
    142   1.4     rmind 		}
    143   1.7     rmind 		prop_object_release(npf_dict);
    144   1.7     rmind 		return error;
    145   1.7     rmind 	}
    146   1.7     rmind 
    147   1.7     rmind 	error = prop_dictionary_sendrecv_ioctl(npf_dict, fd,
    148   1.7     rmind 	    IOC_NPF_RELOAD, &ncf->ncf_err);
    149   1.7     rmind 	if (error) {
    150   1.7     rmind 		prop_object_release(npf_dict);
    151   1.7     rmind 		assert(ncf->ncf_err == NULL);
    152   1.7     rmind 		return error;
    153   1.1     rmind 	}
    154   1.7     rmind 
    155   1.7     rmind 	prop_dictionary_get_int32(ncf->ncf_err, "errno", &error);
    156   1.1     rmind 	prop_object_release(npf_dict);
    157   1.1     rmind 	return error;
    158   1.1     rmind }
    159   1.1     rmind 
    160   1.8     rmind nl_config_t *
    161   1.8     rmind npf_config_retrieve(int fd, bool *active, bool *loaded)
    162   1.8     rmind {
    163   1.8     rmind 	prop_dictionary_t npf_dict;
    164   1.8     rmind 	nl_config_t *ncf;
    165   1.8     rmind 	int error;
    166   1.8     rmind 
    167   1.8     rmind 	error = prop_dictionary_recv_ioctl(fd, IOC_NPF_GETCONF, &npf_dict);
    168   1.8     rmind 	if (error) {
    169   1.8     rmind 		return NULL;
    170   1.8     rmind 	}
    171   1.8     rmind 	ncf = calloc(1, sizeof(*ncf));
    172   1.8     rmind 	if (ncf == NULL) {
    173   1.8     rmind 		prop_object_release(npf_dict);
    174   1.8     rmind 		return NULL;
    175   1.8     rmind 	}
    176   1.8     rmind 	ncf->ncf_dict = npf_dict;
    177   1.8     rmind 	ncf->ncf_rules_list = prop_dictionary_get(npf_dict, "rules");
    178   1.8     rmind 	ncf->ncf_rproc_list = prop_dictionary_get(npf_dict, "rprocs");
    179   1.8     rmind 	ncf->ncf_table_list = prop_dictionary_get(npf_dict, "tables");
    180   1.8     rmind 	ncf->ncf_nat_list = prop_dictionary_get(npf_dict, "translation");
    181   1.8     rmind 
    182   1.8     rmind 	prop_dictionary_get_bool(npf_dict, "active", active);
    183   1.8     rmind 	*loaded = (ncf->ncf_rules_list != NULL);
    184   1.8     rmind 	return ncf;
    185   1.8     rmind }
    186   1.8     rmind 
    187   1.6     rmind int
    188   1.6     rmind npf_config_flush(int fd)
    189   1.6     rmind {
    190   1.6     rmind 	nl_config_t *ncf;
    191   1.6     rmind 	int error;
    192   1.6     rmind 
    193   1.6     rmind 	ncf = npf_config_create();
    194   1.6     rmind 	if (ncf == NULL) {
    195   1.6     rmind 		return ENOMEM;
    196   1.6     rmind 	}
    197   1.6     rmind 	ncf->ncf_flush = true;
    198   1.6     rmind 	error = npf_config_submit(ncf, fd);
    199   1.6     rmind 	npf_config_destroy(ncf);
    200   1.6     rmind 	return error;
    201   1.6     rmind }
    202   1.6     rmind 
    203   1.1     rmind void
    204   1.7     rmind _npf_config_error(nl_config_t *ncf, nl_error_t *ne)
    205   1.7     rmind {
    206   1.7     rmind 	memset(ne, 0, sizeof(*ne));
    207   1.7     rmind 	prop_dictionary_get_int32(ncf->ncf_err, "id", &ne->ne_id);
    208   1.7     rmind 	prop_dictionary_get_cstring(ncf->ncf_err,
    209   1.7     rmind 	    "source-file", &ne->ne_source_file);
    210   1.7     rmind 	prop_dictionary_get_uint32(ncf->ncf_err,
    211   1.7     rmind 	    "source-line", &ne->ne_source_line);
    212   1.7     rmind 	prop_dictionary_get_int32(ncf->ncf_err,
    213  1.16     rmind 	    "code-error", &ne->ne_ncode_error);
    214   1.7     rmind 	prop_dictionary_get_int32(ncf->ncf_err,
    215  1.16     rmind 	    "code-errat", &ne->ne_ncode_errat);
    216   1.7     rmind }
    217   1.7     rmind 
    218   1.7     rmind void
    219   1.1     rmind npf_config_destroy(nl_config_t *ncf)
    220   1.1     rmind {
    221   1.1     rmind 
    222  1.14     rmind 	if (!ncf->ncf_dict) {
    223   1.8     rmind 		prop_object_release(ncf->ncf_rules_list);
    224   1.8     rmind 		prop_object_release(ncf->ncf_rproc_list);
    225   1.8     rmind 		prop_object_release(ncf->ncf_table_list);
    226   1.8     rmind 		prop_object_release(ncf->ncf_nat_list);
    227   1.8     rmind 	}
    228   1.7     rmind 	if (ncf->ncf_err) {
    229   1.7     rmind 		prop_object_release(ncf->ncf_err);
    230   1.7     rmind 	}
    231  1.11     rmind 	if (ncf->ncf_debug) {
    232  1.11     rmind 		prop_object_release(ncf->ncf_debug);
    233  1.11     rmind 	}
    234   1.1     rmind 	free(ncf);
    235   1.1     rmind }
    236   1.1     rmind 
    237   1.4     rmind void
    238   1.4     rmind _npf_config_setsubmit(nl_config_t *ncf, const char *plist_file)
    239   1.4     rmind {
    240   1.4     rmind 
    241   1.4     rmind 	ncf->ncf_plist = plist_file;
    242   1.4     rmind }
    243   1.4     rmind 
    244   1.1     rmind static bool
    245   1.1     rmind _npf_prop_array_lookup(prop_array_t array, const char *key, const char *name)
    246   1.1     rmind {
    247   1.1     rmind 	prop_dictionary_t dict;
    248   1.1     rmind 	prop_object_iterator_t it;
    249   1.1     rmind 
    250   1.1     rmind 	it = prop_array_iterator(array);
    251   1.1     rmind 	while ((dict = prop_object_iterator_next(it)) != NULL) {
    252   1.1     rmind 		const char *lname;
    253   1.1     rmind 		prop_dictionary_get_cstring_nocopy(dict, key, &lname);
    254   1.1     rmind 		if (strcmp(name, lname) == 0)
    255   1.1     rmind 			break;
    256   1.1     rmind 	}
    257   1.1     rmind 	prop_object_iterator_release(it);
    258   1.1     rmind 	return dict ? true : false;
    259   1.1     rmind }
    260   1.1     rmind 
    261   1.1     rmind /*
    262  1.16     rmind  * DYNAMIC RULESET INTERFACE.
    263  1.16     rmind  */
    264  1.16     rmind 
    265  1.16     rmind int
    266  1.18     rmind npf_ruleset_add(int fd, const char *rname, nl_rule_t *rl, uint64_t *id)
    267  1.16     rmind {
    268  1.16     rmind 	prop_dictionary_t rldict = rl->nrl_dict;
    269  1.16     rmind 	prop_dictionary_t ret;
    270  1.16     rmind 	int error;
    271  1.16     rmind 
    272  1.16     rmind 	prop_dictionary_set_cstring(rldict, "ruleset-name", rname);
    273  1.16     rmind 	prop_dictionary_set_uint32(rldict, "command", NPF_CMD_RULE_ADD);
    274  1.16     rmind 	error = prop_dictionary_sendrecv_ioctl(rldict, fd, IOC_NPF_RULE, &ret);
    275  1.16     rmind 	if (!error) {
    276  1.18     rmind 		prop_dictionary_get_uint64(ret, "id", id);
    277  1.16     rmind 	}
    278  1.16     rmind 	return error;
    279  1.16     rmind }
    280  1.16     rmind 
    281  1.16     rmind int
    282  1.18     rmind npf_ruleset_remove(int fd, const char *rname, uint64_t id)
    283  1.16     rmind {
    284  1.16     rmind 	prop_dictionary_t rldict;
    285  1.16     rmind 
    286  1.16     rmind 	rldict = prop_dictionary_create();
    287  1.16     rmind 	if (rldict == NULL) {
    288  1.16     rmind 		return ENOMEM;
    289  1.16     rmind 	}
    290  1.16     rmind 	prop_dictionary_set_cstring(rldict, "ruleset-name", rname);
    291  1.16     rmind 	prop_dictionary_set_uint32(rldict, "command", NPF_CMD_RULE_REMOVE);
    292  1.18     rmind 	prop_dictionary_set_uint64(rldict, "id", id);
    293  1.16     rmind 	return prop_dictionary_send_ioctl(rldict, fd, IOC_NPF_RULE);
    294  1.16     rmind }
    295  1.16     rmind 
    296  1.16     rmind int
    297  1.16     rmind npf_ruleset_remkey(int fd, const char *rname, const void *key, size_t len)
    298  1.16     rmind {
    299  1.16     rmind 	prop_dictionary_t rldict;
    300  1.16     rmind 	prop_data_t keyobj;
    301  1.16     rmind 
    302  1.16     rmind 	rldict = prop_dictionary_create();
    303  1.16     rmind 	if (rldict == NULL) {
    304  1.16     rmind 		return ENOMEM;
    305  1.16     rmind 	}
    306  1.16     rmind 	prop_dictionary_set_cstring(rldict, "ruleset-name", rname);
    307  1.16     rmind 	prop_dictionary_set_uint32(rldict, "command", NPF_CMD_RULE_REMKEY);
    308  1.16     rmind 
    309  1.16     rmind 	keyobj = prop_data_create_data(key, len);
    310  1.16     rmind 	if (keyobj == NULL) {
    311  1.16     rmind 		prop_object_release(rldict);
    312  1.16     rmind 		return ENOMEM;
    313  1.16     rmind 	}
    314  1.16     rmind 	prop_dictionary_set(rldict, "key", keyobj);
    315  1.16     rmind 	prop_object_release(keyobj);
    316  1.16     rmind 
    317  1.16     rmind 	return prop_dictionary_send_ioctl(rldict, fd, IOC_NPF_RULE);
    318  1.16     rmind }
    319  1.16     rmind 
    320  1.17     rmind int
    321  1.17     rmind npf_ruleset_flush(int fd, const char *rname)
    322  1.17     rmind {
    323  1.17     rmind 	prop_dictionary_t rldict;
    324  1.17     rmind 
    325  1.17     rmind 	rldict = prop_dictionary_create();
    326  1.17     rmind 	if (rldict == NULL) {
    327  1.17     rmind 		return ENOMEM;
    328  1.17     rmind 	}
    329  1.17     rmind 	prop_dictionary_set_cstring(rldict, "ruleset-name", rname);
    330  1.17     rmind 	prop_dictionary_set_uint32(rldict, "command", NPF_CMD_RULE_FLUSH);
    331  1.17     rmind 	return prop_dictionary_send_ioctl(rldict, fd, IOC_NPF_RULE);
    332  1.17     rmind }
    333  1.17     rmind 
    334  1.16     rmind /*
    335  1.16     rmind  * _npf_ruleset_transform: transform the ruleset representing nested
    336  1.16     rmind  * rules with lists into an array.
    337  1.16     rmind  */
    338  1.16     rmind 
    339  1.16     rmind static void
    340  1.16     rmind _npf_ruleset_transform1(prop_array_t rlset, prop_array_t rules)
    341  1.16     rmind {
    342  1.16     rmind 	prop_object_iterator_t it;
    343  1.16     rmind 	prop_dictionary_t rldict;
    344  1.16     rmind 	prop_array_t subrlset;
    345  1.16     rmind 
    346  1.16     rmind 	it = prop_array_iterator(rules);
    347  1.16     rmind 	while ((rldict = prop_object_iterator_next(it)) != NULL) {
    348  1.16     rmind 		unsigned idx;
    349  1.16     rmind 
    350  1.16     rmind 		/* Add rules to the array (reference is retained). */
    351  1.16     rmind 		prop_array_add(rlset, rldict);
    352  1.16     rmind 
    353  1.16     rmind 		subrlset = prop_dictionary_get(rldict, "subrules");
    354  1.16     rmind 		if (subrlset) {
    355  1.16     rmind 			/* Process subrules recursively. */
    356  1.16     rmind 			_npf_ruleset_transform1(rlset, subrlset);
    357  1.16     rmind 			/* Add the skip-to position. */
    358  1.16     rmind 			idx = prop_array_count(rlset);
    359  1.16     rmind 			prop_dictionary_set_uint32(rldict, "skip-to", idx);
    360  1.16     rmind 			prop_dictionary_remove(rldict, "subrules");
    361  1.16     rmind 		}
    362  1.16     rmind 	}
    363  1.16     rmind 	prop_object_iterator_release(it);
    364  1.16     rmind }
    365  1.16     rmind 
    366  1.16     rmind static prop_array_t
    367  1.16     rmind _npf_ruleset_transform(prop_array_t rlset)
    368  1.16     rmind {
    369  1.16     rmind 	prop_array_t nrlset;
    370  1.16     rmind 
    371  1.16     rmind 	nrlset = prop_array_create();
    372  1.16     rmind 	_npf_ruleset_transform1(nrlset, rlset);
    373  1.16     rmind 	return nrlset;
    374  1.16     rmind }
    375  1.16     rmind 
    376  1.16     rmind /*
    377  1.13     rmind  * NPF EXTENSION INTERFACE.
    378  1.13     rmind  */
    379  1.13     rmind 
    380  1.13     rmind nl_ext_t *
    381  1.13     rmind npf_ext_construct(const char *name)
    382  1.13     rmind {
    383  1.13     rmind 	nl_ext_t *ext;
    384  1.13     rmind 
    385  1.13     rmind 	ext = malloc(sizeof(*ext));
    386  1.13     rmind 	if (ext == NULL) {
    387  1.13     rmind 		return NULL;
    388  1.13     rmind 	}
    389  1.13     rmind 	ext->nxt_name = strdup(name);
    390  1.13     rmind 	if (ext->nxt_name == NULL) {
    391  1.13     rmind 		free(ext);
    392  1.13     rmind 		return NULL;
    393  1.13     rmind 	}
    394  1.13     rmind 	ext->nxt_dict = prop_dictionary_create();
    395  1.13     rmind 
    396  1.13     rmind 	return ext;
    397  1.13     rmind }
    398  1.13     rmind 
    399  1.13     rmind void
    400  1.13     rmind npf_ext_param_u32(nl_ext_t *ext, const char *key, uint32_t val)
    401  1.13     rmind {
    402  1.13     rmind 	prop_dictionary_t extdict = ext->nxt_dict;
    403  1.13     rmind 	prop_dictionary_set_uint32(extdict, key, val);
    404  1.13     rmind }
    405  1.13     rmind 
    406  1.13     rmind void
    407  1.13     rmind npf_ext_param_bool(nl_ext_t *ext, const char *key, bool val)
    408  1.13     rmind {
    409  1.13     rmind 	prop_dictionary_t extdict = ext->nxt_dict;
    410  1.13     rmind 	prop_dictionary_set_bool(extdict, key, val);
    411  1.13     rmind }
    412  1.13     rmind 
    413  1.13     rmind /*
    414   1.1     rmind  * RULE INTERFACE.
    415   1.1     rmind  */
    416   1.1     rmind 
    417   1.1     rmind nl_rule_t *
    418   1.1     rmind npf_rule_create(const char *name, uint32_t attr, u_int if_idx)
    419   1.1     rmind {
    420   1.1     rmind 	prop_dictionary_t rldict;
    421   1.1     rmind 	nl_rule_t *rl;
    422   1.1     rmind 
    423   1.5  christos 	rl = malloc(sizeof(*rl));
    424   1.1     rmind 	if (rl == NULL) {
    425   1.1     rmind 		return NULL;
    426   1.1     rmind 	}
    427   1.1     rmind 	rldict = prop_dictionary_create();
    428   1.1     rmind 	if (rldict == NULL) {
    429   1.1     rmind 		free(rl);
    430   1.1     rmind 		return NULL;
    431   1.1     rmind 	}
    432   1.1     rmind 	if (name) {
    433   1.1     rmind 		prop_dictionary_set_cstring(rldict, "name", name);
    434   1.1     rmind 	}
    435   1.1     rmind 	prop_dictionary_set_uint32(rldict, "attributes", attr);
    436   1.1     rmind 
    437   1.1     rmind 	if (if_idx) {
    438   1.1     rmind 		prop_dictionary_set_uint32(rldict, "interface", if_idx);
    439   1.1     rmind 	}
    440   1.1     rmind 	rl->nrl_dict = rldict;
    441   1.1     rmind 	return rl;
    442   1.1     rmind }
    443   1.1     rmind 
    444   1.1     rmind int
    445  1.16     rmind npf_rule_setcode(nl_rule_t *rl, int type, const void *code, size_t len)
    446   1.1     rmind {
    447   1.1     rmind 	prop_dictionary_t rldict = rl->nrl_dict;
    448   1.1     rmind 	prop_data_t cdata;
    449   1.1     rmind 
    450  1.16     rmind 	switch (type) {
    451  1.16     rmind 	case NPF_CODE_NC:
    452  1.16     rmind 	case NPF_CODE_BPF:
    453  1.16     rmind 		break;
    454  1.16     rmind 	default:
    455   1.1     rmind 		return ENOTSUP;
    456   1.1     rmind 	}
    457  1.16     rmind 	prop_dictionary_set_uint32(rldict, "code-type", type);
    458  1.16     rmind 	if ((cdata = prop_data_create_data(code, len)) == NULL) {
    459   1.1     rmind 		return ENOMEM;
    460   1.1     rmind 	}
    461  1.16     rmind 	prop_dictionary_set(rldict, "code", cdata);
    462   1.1     rmind 	prop_object_release(cdata);
    463   1.1     rmind 	return 0;
    464   1.1     rmind }
    465   1.1     rmind 
    466   1.1     rmind int
    467  1.16     rmind npf_rule_setkey(nl_rule_t *rl, const void *key, size_t len)
    468   1.1     rmind {
    469   1.1     rmind 	prop_dictionary_t rldict = rl->nrl_dict;
    470  1.16     rmind 	prop_data_t kdata;
    471   1.1     rmind 
    472  1.16     rmind 	if ((kdata = prop_data_create_data(key, len)) == NULL) {
    473  1.16     rmind 		return ENOMEM;
    474   1.1     rmind 	}
    475  1.16     rmind 	prop_dictionary_set(rldict, "key", kdata);
    476  1.16     rmind 	prop_object_release(kdata);
    477  1.16     rmind 	return 0;
    478  1.16     rmind }
    479  1.16     rmind 
    480  1.16     rmind int
    481  1.16     rmind npf_rule_setprio(nl_rule_t *rl, pri_t pri)
    482  1.16     rmind {
    483  1.16     rmind 	prop_dictionary_t rldict = rl->nrl_dict;
    484  1.16     rmind 
    485  1.16     rmind 	prop_dictionary_set_int32(rldict, "priority", pri);
    486  1.16     rmind 	return 0;
    487  1.16     rmind }
    488  1.16     rmind 
    489  1.16     rmind int
    490  1.16     rmind npf_rule_setproc(nl_rule_t *rl, const char *name)
    491  1.16     rmind {
    492  1.16     rmind 	prop_dictionary_t rldict = rl->nrl_dict;
    493  1.16     rmind 
    494   1.1     rmind 	prop_dictionary_set_cstring(rldict, "rproc", name);
    495   1.1     rmind 	return 0;
    496   1.1     rmind }
    497   1.1     rmind 
    498  1.16     rmind void *
    499  1.16     rmind npf_rule_export(nl_rule_t *rl, size_t *length)
    500  1.16     rmind {
    501  1.16     rmind 	prop_dictionary_t rldict = rl->nrl_dict;
    502  1.16     rmind 	void *xml;
    503  1.16     rmind 
    504  1.16     rmind 	if ((xml = prop_dictionary_externalize(rldict)) == NULL) {
    505  1.16     rmind 		return NULL;
    506  1.16     rmind 	}
    507  1.16     rmind 	*length = strlen(xml);
    508  1.16     rmind 	return xml;
    509  1.16     rmind }
    510  1.16     rmind 
    511   1.1     rmind bool
    512   1.1     rmind npf_rule_exists_p(nl_config_t *ncf, const char *name)
    513   1.1     rmind {
    514   1.1     rmind 	return _npf_prop_array_lookup(ncf->ncf_rules_list, "name", name);
    515   1.1     rmind }
    516   1.1     rmind 
    517   1.1     rmind int
    518  1.16     rmind npf_rule_insert(nl_config_t *ncf, nl_rule_t *parent, nl_rule_t *rl)
    519   1.1     rmind {
    520   1.1     rmind 	prop_dictionary_t rldict = rl->nrl_dict;
    521   1.1     rmind 	prop_array_t rlset;
    522   1.1     rmind 
    523   1.1     rmind 	if (parent) {
    524   1.1     rmind 		prop_dictionary_t pdict = parent->nrl_dict;
    525   1.1     rmind 		rlset = prop_dictionary_get(pdict, "subrules");
    526   1.1     rmind 		if (rlset == NULL) {
    527   1.1     rmind 			rlset = prop_array_create();
    528   1.1     rmind 			prop_dictionary_set(pdict, "subrules", rlset);
    529   1.1     rmind 			prop_object_release(rlset);
    530   1.1     rmind 		}
    531   1.1     rmind 	} else {
    532   1.1     rmind 		rlset = ncf->ncf_rules_list;
    533   1.1     rmind 	}
    534   1.1     rmind 	prop_array_add(rlset, rldict);
    535   1.1     rmind 	return 0;
    536   1.1     rmind }
    537   1.1     rmind 
    538   1.8     rmind static int
    539  1.16     rmind _npf_rule_foreach1(prop_array_t rules, nl_rule_callback_t func)
    540   1.8     rmind {
    541   1.8     rmind 	prop_dictionary_t rldict;
    542   1.8     rmind 	prop_object_iterator_t it;
    543  1.16     rmind 	unsigned reduce[16], n;
    544  1.16     rmind 	unsigned nlevel;
    545   1.8     rmind 
    546   1.8     rmind 	if (!rules || prop_object_type(rules) != PROP_TYPE_ARRAY) {
    547   1.8     rmind 		return ENOENT;
    548   1.8     rmind 	}
    549   1.8     rmind 	it = prop_array_iterator(rules);
    550   1.8     rmind 	if (it == NULL) {
    551   1.8     rmind 		return ENOMEM;
    552   1.8     rmind 	}
    553  1.16     rmind 
    554  1.16     rmind 	nlevel = 0;
    555  1.16     rmind 	reduce[nlevel] = 0;
    556  1.16     rmind 	n = 0;
    557  1.16     rmind 
    558   1.8     rmind 	while ((rldict = prop_object_iterator_next(it)) != NULL) {
    559  1.16     rmind 		nl_rule_t nrl = { .nrl_dict = rldict };
    560  1.16     rmind 		uint32_t skipto = 0;
    561   1.8     rmind 
    562  1.16     rmind 		prop_dictionary_get_uint32(rldict, "skip-to", &skipto);
    563   1.8     rmind 		(*func)(&nrl, nlevel);
    564  1.16     rmind 		if (skipto) {
    565  1.16     rmind 			nlevel++;
    566  1.16     rmind 			reduce[nlevel] = skipto;
    567  1.16     rmind 		}
    568  1.16     rmind 		if (reduce[nlevel] == ++n) {
    569  1.16     rmind 			assert(nlevel > 0);
    570  1.16     rmind 			nlevel--;
    571  1.14     rmind 		}
    572   1.8     rmind 	}
    573   1.8     rmind 	prop_object_iterator_release(it);
    574   1.8     rmind 	return 0;
    575   1.8     rmind }
    576   1.8     rmind 
    577   1.8     rmind int
    578   1.8     rmind _npf_rule_foreach(nl_config_t *ncf, nl_rule_callback_t func)
    579   1.8     rmind {
    580  1.16     rmind 	return _npf_rule_foreach1(ncf->ncf_rules_list, func);
    581   1.8     rmind }
    582   1.8     rmind 
    583  1.17     rmind int
    584  1.17     rmind _npf_ruleset_list(int fd, const char *rname, nl_config_t *ncf)
    585  1.17     rmind {
    586  1.17     rmind 	prop_dictionary_t rldict, ret;
    587  1.17     rmind 	int error;
    588  1.17     rmind 
    589  1.17     rmind 	rldict = prop_dictionary_create();
    590  1.17     rmind 	if (rldict == NULL) {
    591  1.17     rmind 		return ENOMEM;
    592  1.17     rmind 	}
    593  1.17     rmind 	prop_dictionary_set_cstring(rldict, "ruleset-name", rname);
    594  1.17     rmind 	prop_dictionary_set_uint32(rldict, "command", NPF_CMD_RULE_LIST);
    595  1.17     rmind 	error = prop_dictionary_sendrecv_ioctl(rldict, fd, IOC_NPF_RULE, &ret);
    596  1.17     rmind 	if (!error) {
    597  1.17     rmind 		prop_array_t rules;
    598  1.17     rmind 
    599  1.17     rmind 		rules = prop_dictionary_get(ret, "rules");
    600  1.17     rmind 		if (rules == NULL) {
    601  1.17     rmind 			return EINVAL;
    602  1.17     rmind 		}
    603  1.17     rmind 		prop_object_release(ncf->ncf_rules_list);
    604  1.17     rmind 		ncf->ncf_rules_list = rules;
    605  1.17     rmind 	}
    606  1.17     rmind 	return error;
    607  1.17     rmind }
    608  1.17     rmind 
    609   1.8     rmind pri_t
    610   1.8     rmind _npf_rule_getinfo(nl_rule_t *nrl, const char **rname, uint32_t *attr,
    611   1.8     rmind     u_int *if_idx)
    612   1.8     rmind {
    613   1.8     rmind 	prop_dictionary_t rldict = nrl->nrl_dict;
    614   1.8     rmind 	pri_t prio;
    615   1.8     rmind 
    616   1.8     rmind 	prop_dictionary_get_cstring_nocopy(rldict, "name", rname);
    617   1.8     rmind 	prop_dictionary_get_uint32(rldict, "attributes", attr);
    618   1.8     rmind 	prop_dictionary_get_int32(rldict, "priority", &prio);
    619   1.8     rmind 	prop_dictionary_get_uint32(rldict, "interface", if_idx);
    620   1.8     rmind 	return prio;
    621   1.8     rmind }
    622   1.8     rmind 
    623   1.8     rmind const void *
    624   1.8     rmind _npf_rule_ncode(nl_rule_t *nrl, size_t *size)
    625   1.8     rmind {
    626   1.8     rmind 	prop_dictionary_t rldict = nrl->nrl_dict;
    627  1.16     rmind 	prop_object_t obj = prop_dictionary_get(rldict, "code");
    628   1.8     rmind 	*size = prop_data_size(obj);
    629   1.8     rmind 	return prop_data_data_nocopy(obj);
    630   1.8     rmind }
    631   1.8     rmind 
    632   1.8     rmind const char *
    633   1.8     rmind _npf_rule_rproc(nl_rule_t *nrl)
    634   1.8     rmind {
    635   1.8     rmind 	prop_dictionary_t rldict = nrl->nrl_dict;
    636   1.8     rmind 	const char *rpname = NULL;
    637   1.8     rmind 
    638   1.8     rmind 	prop_dictionary_get_cstring_nocopy(rldict, "rproc", &rpname);
    639   1.8     rmind 	return rpname;
    640   1.8     rmind }
    641   1.8     rmind 
    642   1.1     rmind void
    643   1.1     rmind npf_rule_destroy(nl_rule_t *rl)
    644   1.1     rmind {
    645   1.1     rmind 
    646   1.1     rmind 	prop_object_release(rl->nrl_dict);
    647   1.1     rmind 	free(rl);
    648   1.1     rmind }
    649   1.1     rmind 
    650   1.1     rmind /*
    651   1.1     rmind  * RULE PROCEDURE INTERFACE.
    652   1.1     rmind  */
    653   1.1     rmind 
    654   1.1     rmind nl_rproc_t *
    655   1.1     rmind npf_rproc_create(const char *name)
    656   1.1     rmind {
    657   1.1     rmind 	prop_dictionary_t rpdict;
    658  1.13     rmind 	prop_array_t extcalls;
    659   1.1     rmind 	nl_rproc_t *nrp;
    660   1.1     rmind 
    661   1.1     rmind 	nrp = malloc(sizeof(nl_rproc_t));
    662   1.1     rmind 	if (nrp == NULL) {
    663   1.1     rmind 		return NULL;
    664   1.1     rmind 	}
    665   1.1     rmind 	rpdict = prop_dictionary_create();
    666   1.1     rmind 	if (rpdict == NULL) {
    667   1.1     rmind 		free(nrp);
    668   1.1     rmind 		return NULL;
    669   1.1     rmind 	}
    670   1.1     rmind 	prop_dictionary_set_cstring(rpdict, "name", name);
    671  1.13     rmind 
    672  1.13     rmind 	extcalls = prop_array_create();
    673  1.13     rmind 	if (extcalls == NULL) {
    674  1.13     rmind 		prop_object_release(rpdict);
    675  1.13     rmind 		free(nrp);
    676  1.13     rmind 		return NULL;
    677  1.13     rmind 	}
    678  1.13     rmind 	prop_dictionary_set(rpdict, "extcalls", extcalls);
    679  1.13     rmind 	prop_object_release(extcalls);
    680  1.13     rmind 
    681   1.1     rmind 	nrp->nrp_dict = rpdict;
    682   1.1     rmind 	return nrp;
    683   1.1     rmind }
    684   1.1     rmind 
    685   1.1     rmind int
    686  1.13     rmind npf_rproc_extcall(nl_rproc_t *rp, nl_ext_t *ext)
    687   1.1     rmind {
    688   1.1     rmind 	prop_dictionary_t rpdict = rp->nrp_dict;
    689  1.13     rmind 	prop_dictionary_t extdict = ext->nxt_dict;
    690  1.13     rmind 	prop_array_t extcalls;
    691   1.1     rmind 
    692  1.13     rmind 	extcalls = prop_dictionary_get(rpdict, "extcalls");
    693  1.13     rmind 	if (_npf_prop_array_lookup(extcalls, "name", ext->nxt_name)) {
    694  1.13     rmind 		return EEXIST;
    695  1.13     rmind 	}
    696  1.13     rmind 	prop_dictionary_set_cstring(extdict, "name", ext->nxt_name);
    697  1.13     rmind 	prop_array_add(extcalls, extdict);
    698   1.1     rmind 	return 0;
    699   1.1     rmind }
    700   1.1     rmind 
    701  1.13     rmind bool
    702  1.13     rmind npf_rproc_exists_p(nl_config_t *ncf, const char *name)
    703   1.1     rmind {
    704   1.1     rmind 
    705  1.13     rmind 	return _npf_prop_array_lookup(ncf->ncf_rproc_list, "name", name);
    706   1.1     rmind }
    707   1.1     rmind 
    708   1.1     rmind int
    709   1.1     rmind npf_rproc_insert(nl_config_t *ncf, nl_rproc_t *rp)
    710   1.1     rmind {
    711   1.1     rmind 	prop_dictionary_t rpdict = rp->nrp_dict;
    712   1.1     rmind 	const char *name;
    713   1.1     rmind 
    714   1.1     rmind 	if (!prop_dictionary_get_cstring_nocopy(rpdict, "name", &name)) {
    715   1.1     rmind 		return EINVAL;
    716   1.1     rmind 	}
    717   1.1     rmind 	if (npf_rproc_exists_p(ncf, name)) {
    718   1.1     rmind 		return EEXIST;
    719   1.1     rmind 	}
    720   1.1     rmind 	prop_array_add(ncf->ncf_rproc_list, rpdict);
    721   1.1     rmind 	return 0;
    722   1.1     rmind }
    723   1.1     rmind 
    724   1.1     rmind /*
    725   1.1     rmind  * TRANSLATION INTERFACE.
    726   1.1     rmind  */
    727   1.1     rmind 
    728   1.1     rmind nl_nat_t *
    729   1.5  christos npf_nat_create(int type, u_int flags, u_int if_idx,
    730   1.1     rmind     npf_addr_t *addr, int af, in_port_t port)
    731   1.1     rmind {
    732   1.1     rmind 	nl_rule_t *rl;
    733   1.1     rmind 	prop_dictionary_t rldict;
    734   1.1     rmind 	prop_data_t addrdat;
    735   1.1     rmind 	uint32_t attr;
    736   1.1     rmind 	size_t sz;
    737   1.1     rmind 
    738   1.1     rmind 	if (af == AF_INET) {
    739   1.1     rmind 		sz = sizeof(struct in_addr);
    740   1.1     rmind 	} else if (af == AF_INET6) {
    741   1.1     rmind 		sz = sizeof(struct in6_addr);
    742   1.1     rmind 	} else {
    743   1.1     rmind 		return NULL;
    744   1.1     rmind 	}
    745   1.1     rmind 
    746   1.1     rmind 	attr = NPF_RULE_PASS | NPF_RULE_FINAL |
    747   1.2     rmind 	    (type == NPF_NATOUT ? NPF_RULE_OUT : NPF_RULE_IN);
    748   1.1     rmind 
    749   1.1     rmind 	/* Create a rule for NAT policy.  Next, will add translation data. */
    750   1.1     rmind 	rl = npf_rule_create(NULL, attr, if_idx);
    751   1.1     rmind 	if (rl == NULL) {
    752   1.1     rmind 		return NULL;
    753   1.1     rmind 	}
    754   1.1     rmind 	rldict = rl->nrl_dict;
    755   1.1     rmind 
    756   1.1     rmind 	/* Translation type and flags. */
    757   1.1     rmind 	prop_dictionary_set_int32(rldict, "type", type);
    758   1.1     rmind 	prop_dictionary_set_uint32(rldict, "flags", flags);
    759   1.1     rmind 
    760   1.1     rmind 	/* Translation IP. */
    761   1.1     rmind 	addrdat = prop_data_create_data(addr, sz);
    762   1.1     rmind 	if (addrdat == NULL) {
    763   1.1     rmind 		npf_rule_destroy(rl);
    764   1.1     rmind 		return NULL;
    765   1.1     rmind 	}
    766   1.1     rmind 	prop_dictionary_set(rldict, "translation-ip", addrdat);
    767   1.1     rmind 	prop_object_release(addrdat);
    768   1.1     rmind 
    769   1.1     rmind 	/* Translation port (for redirect case). */
    770   1.1     rmind 	prop_dictionary_set_uint16(rldict, "translation-port", port);
    771   1.1     rmind 
    772   1.1     rmind 	return (nl_nat_t *)rl;
    773   1.1     rmind }
    774   1.1     rmind 
    775   1.1     rmind int
    776   1.1     rmind npf_nat_insert(nl_config_t *ncf, nl_nat_t *nt, pri_t pri)
    777   1.1     rmind {
    778   1.1     rmind 	prop_dictionary_t rldict = nt->nrl_dict;
    779   1.1     rmind 
    780  1.16     rmind 	prop_dictionary_set_int32(rldict, "priority", NPF_PRI_LAST);
    781   1.1     rmind 	prop_array_add(ncf->ncf_nat_list, rldict);
    782   1.1     rmind 	return 0;
    783   1.1     rmind }
    784   1.1     rmind 
    785   1.9     rmind int
    786   1.9     rmind _npf_nat_foreach(nl_config_t *ncf, nl_rule_callback_t func)
    787   1.9     rmind {
    788  1.16     rmind 	return _npf_rule_foreach1(ncf->ncf_nat_list, func);
    789   1.9     rmind }
    790   1.9     rmind 
    791   1.9     rmind void
    792   1.9     rmind _npf_nat_getinfo(nl_nat_t *nt, int *type, u_int *flags, npf_addr_t *addr,
    793   1.9     rmind     size_t *alen, in_port_t *port)
    794   1.9     rmind {
    795   1.9     rmind 	prop_dictionary_t rldict = nt->nrl_dict;
    796   1.9     rmind 
    797   1.9     rmind 	prop_dictionary_get_int32(rldict, "type", type);
    798   1.9     rmind 	prop_dictionary_get_uint32(rldict, "flags", flags);
    799   1.9     rmind 
    800   1.9     rmind 	prop_object_t obj = prop_dictionary_get(rldict, "translation-ip");
    801   1.9     rmind 	*alen = prop_data_size(obj);
    802   1.9     rmind 	memcpy(addr, prop_data_data_nocopy(obj), *alen);
    803   1.9     rmind 
    804   1.9     rmind 	prop_dictionary_get_uint16(rldict, "translation-port", port);
    805   1.9     rmind }
    806   1.9     rmind 
    807   1.1     rmind /*
    808   1.1     rmind  * TABLE INTERFACE.
    809   1.1     rmind  */
    810   1.1     rmind 
    811   1.1     rmind nl_table_t *
    812   1.5  christos npf_table_create(u_int id, int type)
    813   1.1     rmind {
    814   1.1     rmind 	prop_dictionary_t tldict;
    815   1.1     rmind 	prop_array_t tblents;
    816   1.1     rmind 	nl_table_t *tl;
    817   1.1     rmind 
    818   1.5  christos 	tl = malloc(sizeof(*tl));
    819   1.1     rmind 	if (tl == NULL) {
    820   1.1     rmind 		return NULL;
    821   1.1     rmind 	}
    822   1.1     rmind 	tldict = prop_dictionary_create();
    823   1.1     rmind 	if (tldict == NULL) {
    824   1.1     rmind 		free(tl);
    825   1.1     rmind 		return NULL;
    826   1.1     rmind 	}
    827   1.1     rmind 	prop_dictionary_set_uint32(tldict, "id", id);
    828   1.1     rmind 	prop_dictionary_set_int32(tldict, "type", type);
    829   1.1     rmind 
    830   1.1     rmind 	tblents = prop_array_create();
    831   1.1     rmind 	if (tblents == NULL) {
    832   1.1     rmind 		prop_object_release(tldict);
    833   1.1     rmind 		free(tl);
    834   1.1     rmind 		return NULL;
    835   1.1     rmind 	}
    836   1.1     rmind 	prop_dictionary_set(tldict, "entries", tblents);
    837   1.1     rmind 	prop_object_release(tblents);
    838   1.1     rmind 
    839   1.1     rmind 	tl->ntl_dict = tldict;
    840   1.1     rmind 	return tl;
    841   1.1     rmind }
    842   1.1     rmind 
    843   1.1     rmind int
    844  1.15     rmind npf_table_add_entry(nl_table_t *tl, int af, const npf_addr_t *addr,
    845  1.15     rmind     const npf_netmask_t mask)
    846   1.1     rmind {
    847   1.1     rmind 	prop_dictionary_t tldict = tl->ntl_dict, entdict;
    848   1.1     rmind 	prop_array_t tblents;
    849   1.3    zoltan 	prop_data_t addrdata;
    850  1.15     rmind 	unsigned alen;
    851   1.1     rmind 
    852   1.1     rmind 	/* Create the table entry. */
    853   1.1     rmind 	entdict = prop_dictionary_create();
    854  1.10     rmind 	if (entdict == NULL) {
    855   1.1     rmind 		return ENOMEM;
    856   1.1     rmind 	}
    857  1.15     rmind 
    858  1.15     rmind 	switch (af) {
    859  1.15     rmind 	case AF_INET:
    860  1.15     rmind 		alen = sizeof(struct in_addr);
    861  1.15     rmind 		break;
    862  1.15     rmind 	case AF_INET6:
    863  1.15     rmind 		alen = sizeof(struct in6_addr);
    864  1.15     rmind 		break;
    865  1.15     rmind 	default:
    866  1.15     rmind 		return EINVAL;
    867  1.15     rmind 	}
    868  1.15     rmind 
    869  1.10     rmind 	addrdata = prop_data_create_data(addr, alen);
    870   1.3    zoltan 	prop_dictionary_set(entdict, "addr", addrdata);
    871   1.3    zoltan 	prop_dictionary_set_uint8(entdict, "mask", mask);
    872   1.3    zoltan 	prop_object_release(addrdata);
    873   1.1     rmind 
    874   1.1     rmind 	tblents = prop_dictionary_get(tldict, "entries");
    875   1.1     rmind 	prop_array_add(tblents, entdict);
    876   1.1     rmind 	prop_object_release(entdict);
    877   1.1     rmind 	return 0;
    878   1.1     rmind }
    879   1.1     rmind 
    880   1.1     rmind bool
    881   1.1     rmind npf_table_exists_p(nl_config_t *ncf, u_int tid)
    882   1.1     rmind {
    883   1.1     rmind 	prop_dictionary_t tldict;
    884   1.1     rmind 	prop_object_iterator_t it;
    885   1.1     rmind 
    886   1.1     rmind 	it = prop_array_iterator(ncf->ncf_table_list);
    887   1.1     rmind 	while ((tldict = prop_object_iterator_next(it)) != NULL) {
    888   1.1     rmind 		u_int i;
    889   1.1     rmind 		if (prop_dictionary_get_uint32(tldict, "id", &i) && tid == i)
    890   1.1     rmind 			break;
    891   1.1     rmind 	}
    892   1.1     rmind 	prop_object_iterator_release(it);
    893   1.1     rmind 	return tldict ? true : false;
    894   1.1     rmind }
    895   1.1     rmind 
    896   1.1     rmind int
    897   1.1     rmind npf_table_insert(nl_config_t *ncf, nl_table_t *tl)
    898   1.1     rmind {
    899   1.1     rmind 	prop_dictionary_t tldict = tl->ntl_dict;
    900   1.1     rmind 	u_int tid;
    901   1.1     rmind 
    902   1.1     rmind 	if (!prop_dictionary_get_uint32(tldict, "id", &tid)) {
    903   1.1     rmind 		return EINVAL;
    904   1.1     rmind 	}
    905   1.1     rmind 	if (npf_table_exists_p(ncf, tid)) {
    906   1.1     rmind 		return EEXIST;
    907   1.1     rmind 	}
    908   1.1     rmind 	prop_array_add(ncf->ncf_table_list, tldict);
    909   1.1     rmind 	return 0;
    910   1.1     rmind }
    911   1.1     rmind 
    912   1.1     rmind void
    913   1.1     rmind npf_table_destroy(nl_table_t *tl)
    914   1.1     rmind {
    915   1.1     rmind 
    916   1.1     rmind 	prop_object_release(tl->ntl_dict);
    917   1.1     rmind 	free(tl);
    918   1.1     rmind }
    919   1.1     rmind 
    920   1.9     rmind void
    921   1.9     rmind _npf_table_foreach(nl_config_t *ncf, nl_table_callback_t func)
    922   1.9     rmind {
    923   1.9     rmind 	prop_dictionary_t tldict;
    924   1.9     rmind 	prop_object_iterator_t it;
    925   1.9     rmind 
    926   1.9     rmind 	it = prop_array_iterator(ncf->ncf_table_list);
    927   1.9     rmind 	while ((tldict = prop_object_iterator_next(it)) != NULL) {
    928   1.9     rmind 		u_int id;
    929   1.9     rmind 		int type;
    930   1.9     rmind 
    931   1.9     rmind 		prop_dictionary_get_uint32(tldict, "id", &id);
    932   1.9     rmind 		prop_dictionary_get_int32(tldict, "type", &type);
    933   1.9     rmind 		(*func)(id, type);
    934   1.9     rmind 	}
    935   1.9     rmind 	prop_object_iterator_release(it);
    936   1.9     rmind }
    937   1.9     rmind 
    938   1.1     rmind /*
    939   1.1     rmind  * MISC.
    940   1.1     rmind  */
    941   1.1     rmind 
    942   1.1     rmind int
    943   1.1     rmind npf_sessions_recv(int fd, const char *fpath)
    944   1.1     rmind {
    945   1.1     rmind 	prop_dictionary_t sdict;
    946   1.1     rmind 	int error;
    947   1.1     rmind 
    948   1.1     rmind 	error = prop_dictionary_recv_ioctl(fd, IOC_NPF_SESSIONS_SAVE, &sdict);
    949   1.1     rmind 	if (error) {
    950   1.1     rmind 		return error;
    951   1.1     rmind 	}
    952   1.1     rmind 	if (!prop_dictionary_externalize_to_file(sdict, fpath)) {
    953   1.1     rmind 		error = errno;
    954   1.1     rmind 	}
    955   1.1     rmind 	prop_object_release(sdict);
    956   1.1     rmind 	return error;
    957   1.1     rmind }
    958   1.1     rmind 
    959   1.1     rmind int
    960   1.1     rmind npf_sessions_send(int fd, const char *fpath)
    961   1.1     rmind {
    962   1.1     rmind 	prop_dictionary_t sdict;
    963   1.1     rmind 	int error;
    964   1.1     rmind 
    965   1.1     rmind 	if (fpath) {
    966   1.1     rmind 		sdict = prop_dictionary_internalize_from_file(fpath);
    967   1.1     rmind 		if (sdict == NULL) {
    968   1.1     rmind 			return errno;
    969   1.1     rmind 		}
    970   1.1     rmind 	} else {
    971   1.1     rmind 		/* Empty: will flush the sessions. */
    972   1.1     rmind 		prop_array_t selist = prop_array_create();
    973   1.1     rmind 		sdict = prop_dictionary_create();
    974   1.1     rmind 		prop_dictionary_set(sdict, "session-list", selist);
    975   1.1     rmind 		prop_object_release(selist);
    976   1.1     rmind 	}
    977   1.1     rmind 	error = prop_dictionary_send_ioctl(sdict, fd, IOC_NPF_SESSIONS_LOAD);
    978   1.1     rmind 	prop_object_release(sdict);
    979   1.1     rmind 	return error;
    980   1.1     rmind }
    981  1.11     rmind 
    982  1.11     rmind static prop_dictionary_t
    983  1.11     rmind _npf_debug_initonce(nl_config_t *ncf)
    984  1.11     rmind {
    985  1.11     rmind 	if (!ncf->ncf_debug) {
    986  1.11     rmind 		prop_array_t iflist = prop_array_create();
    987  1.11     rmind 		ncf->ncf_debug = prop_dictionary_create();
    988  1.11     rmind 		prop_dictionary_set(ncf->ncf_debug, "interfaces", iflist);
    989  1.11     rmind 		prop_object_release(iflist);
    990  1.11     rmind 	}
    991  1.11     rmind 	return ncf->ncf_debug;
    992  1.11     rmind }
    993  1.11     rmind 
    994  1.11     rmind void
    995  1.11     rmind _npf_debug_addif(nl_config_t *ncf, struct ifaddrs *ifa, u_int if_idx)
    996  1.11     rmind {
    997  1.11     rmind 	prop_dictionary_t ifdict, dbg = _npf_debug_initonce(ncf);
    998  1.11     rmind 	prop_array_t iflist = prop_dictionary_get(dbg, "interfaces");
    999  1.11     rmind 
   1000  1.11     rmind 	if (_npf_prop_array_lookup(iflist, "name", ifa->ifa_name)) {
   1001  1.11     rmind 		return;
   1002  1.11     rmind 	}
   1003  1.11     rmind 
   1004  1.11     rmind 	ifdict = prop_dictionary_create();
   1005  1.11     rmind 	prop_dictionary_set_cstring(ifdict, "name", ifa->ifa_name);
   1006  1.11     rmind 	prop_dictionary_set_uint32(ifdict, "flags", ifa->ifa_flags);
   1007  1.11     rmind 	if (!if_idx) {
   1008  1.11     rmind 		if_idx = if_nametoindex(ifa->ifa_name);
   1009  1.11     rmind 	}
   1010  1.11     rmind 	prop_dictionary_set_uint32(ifdict, "idx", if_idx);
   1011  1.11     rmind 
   1012  1.11     rmind 	const struct sockaddr *sa = ifa->ifa_addr;
   1013  1.11     rmind 	npf_addr_t addr;
   1014  1.11     rmind 	size_t alen = 0;
   1015  1.11     rmind 
   1016  1.11     rmind 	switch (sa ? sa->sa_family : -1) {
   1017  1.11     rmind 	case AF_INET: {
   1018  1.11     rmind 		const struct sockaddr_in *sin = (const void *)sa;
   1019  1.11     rmind 		alen = sizeof(sin->sin_addr);
   1020  1.11     rmind 		memcpy(&addr, &sin->sin_addr, alen);
   1021  1.11     rmind 		break;
   1022  1.11     rmind 	}
   1023  1.11     rmind 	case AF_INET6: {
   1024  1.11     rmind 		const struct sockaddr_in6 *sin6 = (const void *)sa;
   1025  1.11     rmind 		alen = sizeof(sin6->sin6_addr);
   1026  1.11     rmind 		memcpy(&addr, &sin6->sin6_addr, alen);
   1027  1.11     rmind 		break;
   1028  1.11     rmind 	}
   1029  1.11     rmind 	default:
   1030  1.11     rmind 		break;
   1031  1.11     rmind 	}
   1032  1.11     rmind 
   1033  1.11     rmind 	if (alen) {
   1034  1.11     rmind 		prop_data_t addrdata = prop_data_create_data(&addr, alen);
   1035  1.11     rmind 		prop_dictionary_set(ifdict, "addr", addrdata);
   1036  1.11     rmind 		prop_object_release(addrdata);
   1037  1.11     rmind 	}
   1038  1.11     rmind 	prop_array_add(iflist, ifdict);
   1039  1.11     rmind 	prop_object_release(ifdict);
   1040  1.11     rmind }
   1041