Home | History | Annotate | Line # | Download | only in npf
npf.c revision 1.5.4.4
      1  1.5.4.4   yamt /*	$NetBSD: npf.c,v 1.5.4.4 2014/05/22 11:41:09 yamt Exp $	*/
      2      1.1  rmind 
      3      1.1  rmind /*-
      4  1.5.4.4   yamt  * Copyright (c) 2009-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 /*
     33      1.1  rmind  * NPF main: dynamic load/initialisation and unload routines.
     34      1.1  rmind  */
     35      1.1  rmind 
     36      1.1  rmind #include <sys/cdefs.h>
     37  1.5.4.4   yamt __KERNEL_RCSID(0, "$NetBSD: npf.c,v 1.5.4.4 2014/05/22 11:41:09 yamt Exp $");
     38      1.1  rmind 
     39      1.1  rmind #include <sys/param.h>
     40      1.1  rmind #include <sys/types.h>
     41      1.1  rmind 
     42      1.2  rmind #include <sys/atomic.h>
     43      1.1  rmind #include <sys/conf.h>
     44      1.1  rmind #include <sys/kauth.h>
     45      1.2  rmind #include <sys/kmem.h>
     46      1.1  rmind #include <sys/lwp.h>
     47      1.1  rmind #include <sys/module.h>
     48      1.2  rmind #include <sys/percpu.h>
     49      1.2  rmind #include <sys/rwlock.h>
     50      1.1  rmind #include <sys/socketvar.h>
     51  1.5.4.3   yamt #include <sys/sysctl.h>
     52      1.1  rmind #include <sys/uio.h>
     53      1.1  rmind 
     54      1.1  rmind #include "npf_impl.h"
     55      1.1  rmind 
     56      1.1  rmind /*
     57      1.1  rmind  * Module and device structures.
     58      1.1  rmind  */
     59  1.5.4.1   yamt MODULE(MODULE_CLASS_DRIVER, npf, NULL);
     60      1.1  rmind 
     61      1.1  rmind void		npfattach(int);
     62      1.1  rmind 
     63      1.5   yamt static int	npf_fini(void);
     64      1.1  rmind static int	npf_dev_open(dev_t, int, int, lwp_t *);
     65      1.1  rmind static int	npf_dev_close(dev_t, int, int, lwp_t *);
     66      1.1  rmind static int	npf_dev_ioctl(dev_t, u_long, void *, int, lwp_t *);
     67      1.1  rmind static int	npf_dev_poll(dev_t, int, lwp_t *);
     68      1.1  rmind static int	npf_dev_read(dev_t, struct uio *, int);
     69      1.1  rmind 
     70      1.2  rmind static int	npfctl_stats(void *);
     71      1.2  rmind 
     72      1.2  rmind static percpu_t *		npf_stats_percpu	__read_mostly;
     73  1.5.4.3   yamt static struct sysctllog *	npf_sysctl		__read_mostly;
     74      1.2  rmind 
     75      1.1  rmind const struct cdevsw npf_cdevsw = {
     76  1.5.4.4   yamt 	.d_open = npf_dev_open,
     77  1.5.4.4   yamt 	.d_close = npf_dev_close,
     78  1.5.4.4   yamt 	.d_read = npf_dev_read,
     79  1.5.4.4   yamt 	.d_write = nowrite,
     80  1.5.4.4   yamt 	.d_ioctl = npf_dev_ioctl,
     81  1.5.4.4   yamt 	.d_stop = nostop,
     82  1.5.4.4   yamt 	.d_tty = notty,
     83  1.5.4.4   yamt 	.d_poll = npf_dev_poll,
     84  1.5.4.4   yamt 	.d_mmap = nommap,
     85  1.5.4.4   yamt 	.d_kqfilter = nokqfilter,
     86  1.5.4.4   yamt 	.d_flag = D_OTHER | D_MPSAFE
     87      1.1  rmind };
     88      1.1  rmind 
     89      1.1  rmind static int
     90      1.1  rmind npf_init(void)
     91      1.1  rmind {
     92      1.1  rmind #ifdef _MODULE
     93      1.1  rmind 	devmajor_t bmajor = NODEVMAJOR, cmajor = NODEVMAJOR;
     94      1.1  rmind #endif
     95      1.2  rmind 	int error = 0;
     96      1.2  rmind 
     97      1.2  rmind 	npf_stats_percpu = percpu_alloc(NPF_STATS_SIZE);
     98  1.5.4.3   yamt 	npf_sysctl = NULL;
     99  1.5.4.3   yamt 
    100  1.5.4.4   yamt 	npf_bpf_sysinit();
    101  1.5.4.4   yamt 	npf_worker_sysinit();
    102      1.2  rmind 	npf_tableset_sysinit();
    103      1.2  rmind 	npf_session_sysinit();
    104      1.1  rmind 	npf_nat_sysinit();
    105      1.1  rmind 	npf_alg_sysinit();
    106  1.5.4.3   yamt 	npf_ext_sysinit();
    107      1.2  rmind 
    108      1.2  rmind 	/* Load empty configuration. */
    109  1.5.4.4   yamt 	npf_pfil_register(true);
    110  1.5.4.4   yamt 	npf_config_init();
    111      1.1  rmind 
    112      1.1  rmind #ifdef _MODULE
    113      1.1  rmind 	/* Attach /dev/npf device. */
    114      1.1  rmind 	error = devsw_attach("npf", NULL, &bmajor, &npf_cdevsw, &cmajor);
    115      1.1  rmind 	if (error) {
    116      1.2  rmind 		/* It will call devsw_detach(), which is safe. */
    117      1.2  rmind 		(void)npf_fini();
    118      1.1  rmind 	}
    119      1.1  rmind #endif
    120      1.1  rmind 	return error;
    121      1.1  rmind }
    122      1.1  rmind 
    123      1.1  rmind static int
    124      1.1  rmind npf_fini(void)
    125      1.1  rmind {
    126  1.5.4.2   yamt 	/* At first, detach device and remove pfil hooks. */
    127      1.1  rmind #ifdef _MODULE
    128      1.1  rmind 	devsw_detach(NULL, &npf_cdevsw);
    129      1.1  rmind #endif
    130  1.5.4.4   yamt 	npf_pfil_unregister(true);
    131      1.2  rmind 
    132  1.5.4.2   yamt 	/* Flush all sessions, destroy configuration (ruleset, etc). */
    133  1.5.4.2   yamt 	npf_session_tracking(false);
    134  1.5.4.4   yamt 	npf_config_fini();
    135  1.5.4.2   yamt 
    136  1.5.4.2   yamt 	/* Finally, safe to destroy the subsystems. */
    137  1.5.4.3   yamt 	npf_ext_sysfini();
    138      1.1  rmind 	npf_alg_sysfini();
    139  1.5.4.2   yamt 	npf_nat_sysfini();
    140      1.1  rmind 	npf_session_sysfini();
    141      1.1  rmind 	npf_tableset_sysfini();
    142  1.5.4.4   yamt 	npf_bpf_sysfini();
    143  1.5.4.4   yamt 
    144  1.5.4.4   yamt 	/* Note: worker is the last. */
    145  1.5.4.4   yamt 	npf_worker_sysfini();
    146  1.5.4.3   yamt 
    147  1.5.4.3   yamt 	if (npf_sysctl) {
    148  1.5.4.3   yamt 		sysctl_teardown(&npf_sysctl);
    149  1.5.4.3   yamt 	}
    150      1.2  rmind 	percpu_free(npf_stats_percpu, NPF_STATS_SIZE);
    151      1.1  rmind 
    152      1.1  rmind 	return 0;
    153      1.1  rmind }
    154      1.1  rmind 
    155      1.1  rmind /*
    156      1.1  rmind  * Module interface.
    157      1.1  rmind  */
    158      1.1  rmind static int
    159      1.1  rmind npf_modcmd(modcmd_t cmd, void *arg)
    160      1.1  rmind {
    161      1.1  rmind 
    162      1.1  rmind 	switch (cmd) {
    163      1.1  rmind 	case MODULE_CMD_INIT:
    164      1.1  rmind 		return npf_init();
    165      1.1  rmind 	case MODULE_CMD_FINI:
    166      1.1  rmind 		return npf_fini();
    167  1.5.4.3   yamt 	case MODULE_CMD_AUTOUNLOAD:
    168  1.5.4.3   yamt 		if (npf_autounload_p()) {
    169  1.5.4.3   yamt 			return EBUSY;
    170  1.5.4.3   yamt 		}
    171  1.5.4.3   yamt 		break;
    172      1.1  rmind 	default:
    173      1.1  rmind 		return ENOTTY;
    174      1.1  rmind 	}
    175      1.1  rmind 	return 0;
    176      1.1  rmind }
    177      1.1  rmind 
    178      1.1  rmind void
    179      1.1  rmind npfattach(int nunits)
    180      1.1  rmind {
    181      1.1  rmind 
    182      1.1  rmind 	/* Void. */
    183      1.1  rmind }
    184      1.1  rmind 
    185      1.1  rmind static int
    186      1.1  rmind npf_dev_open(dev_t dev, int flag, int mode, lwp_t *l)
    187      1.1  rmind {
    188      1.1  rmind 
    189      1.1  rmind 	/* Available only for super-user. */
    190  1.5.4.2   yamt 	if (kauth_authorize_network(l->l_cred, KAUTH_NETWORK_FIREWALL,
    191  1.5.4.2   yamt 	    KAUTH_REQ_NETWORK_FIREWALL_FW, NULL, NULL, NULL)) {
    192      1.1  rmind 		return EPERM;
    193      1.1  rmind 	}
    194      1.1  rmind 	return 0;
    195      1.1  rmind }
    196      1.1  rmind 
    197      1.1  rmind static int
    198      1.1  rmind npf_dev_close(dev_t dev, int flag, int mode, lwp_t *l)
    199      1.1  rmind {
    200      1.1  rmind 
    201      1.1  rmind 	return 0;
    202      1.1  rmind }
    203      1.1  rmind 
    204      1.1  rmind static int
    205      1.1  rmind npf_dev_ioctl(dev_t dev, u_long cmd, void *data, int flag, lwp_t *l)
    206      1.1  rmind {
    207      1.1  rmind 	int error;
    208      1.1  rmind 
    209      1.1  rmind 	/* Available only for super-user. */
    210  1.5.4.2   yamt 	if (kauth_authorize_network(l->l_cred, KAUTH_NETWORK_FIREWALL,
    211  1.5.4.2   yamt 	    KAUTH_REQ_NETWORK_FIREWALL_FW, NULL, NULL, NULL)) {
    212      1.1  rmind 		return EPERM;
    213      1.1  rmind 	}
    214      1.1  rmind 
    215      1.1  rmind 	switch (cmd) {
    216  1.5.4.4   yamt 	case IOC_NPF_TABLE:
    217  1.5.4.4   yamt 		error = npfctl_table(data);
    218      1.1  rmind 		break;
    219  1.5.4.4   yamt 	case IOC_NPF_RULE:
    220  1.5.4.4   yamt 		error = npfctl_rule(cmd, data);
    221      1.1  rmind 		break;
    222  1.5.4.2   yamt 	case IOC_NPF_GETCONF:
    223  1.5.4.2   yamt 		error = npfctl_getconf(cmd, data);
    224  1.5.4.2   yamt 		break;
    225      1.2  rmind 	case IOC_NPF_STATS:
    226      1.2  rmind 		error = npfctl_stats(data);
    227      1.2  rmind 		break;
    228      1.2  rmind 	case IOC_NPF_SESSIONS_SAVE:
    229      1.2  rmind 		error = npfctl_sessions_save(cmd, data);
    230      1.2  rmind 		break;
    231      1.2  rmind 	case IOC_NPF_SESSIONS_LOAD:
    232      1.2  rmind 		error = npfctl_sessions_load(cmd, data);
    233      1.2  rmind 		break;
    234  1.5.4.4   yamt 	case IOC_NPF_SWITCH:
    235  1.5.4.4   yamt 		error = npfctl_switch(data);
    236  1.5.4.4   yamt 		break;
    237  1.5.4.4   yamt 	case IOC_NPF_RELOAD:
    238  1.5.4.4   yamt 		error = npfctl_reload(cmd, data);
    239  1.5.4.4   yamt 		break;
    240  1.5.4.4   yamt 	case IOC_NPF_VERSION:
    241  1.5.4.4   yamt 		*(int *)data = NPF_VERSION;
    242  1.5.4.4   yamt 		error = 0;
    243      1.4  rmind 		break;
    244      1.1  rmind 	default:
    245      1.1  rmind 		error = ENOTTY;
    246      1.1  rmind 		break;
    247      1.1  rmind 	}
    248      1.1  rmind 	return error;
    249      1.1  rmind }
    250      1.1  rmind 
    251      1.1  rmind static int
    252      1.1  rmind npf_dev_poll(dev_t dev, int events, lwp_t *l)
    253      1.1  rmind {
    254      1.1  rmind 
    255      1.1  rmind 	return ENOTSUP;
    256      1.1  rmind }
    257      1.1  rmind 
    258      1.1  rmind static int
    259      1.1  rmind npf_dev_read(dev_t dev, struct uio *uio, int flag)
    260      1.1  rmind {
    261      1.1  rmind 
    262      1.1  rmind 	return ENOTSUP;
    263      1.1  rmind }
    264      1.2  rmind 
    265  1.5.4.3   yamt bool
    266  1.5.4.3   yamt npf_autounload_p(void)
    267  1.5.4.3   yamt {
    268  1.5.4.3   yamt 	return !npf_pfil_registered_p() && npf_default_pass();
    269  1.5.4.3   yamt }
    270  1.5.4.3   yamt 
    271      1.2  rmind /*
    272      1.2  rmind  * NPF statistics interface.
    273      1.2  rmind  */
    274      1.2  rmind 
    275      1.2  rmind void
    276      1.2  rmind npf_stats_inc(npf_stats_t st)
    277      1.2  rmind {
    278      1.2  rmind 	uint64_t *stats = percpu_getref(npf_stats_percpu);
    279      1.2  rmind 	stats[st]++;
    280      1.2  rmind 	percpu_putref(npf_stats_percpu);
    281      1.2  rmind }
    282      1.2  rmind 
    283      1.2  rmind void
    284      1.2  rmind npf_stats_dec(npf_stats_t st)
    285      1.2  rmind {
    286      1.2  rmind 	uint64_t *stats = percpu_getref(npf_stats_percpu);
    287      1.2  rmind 	stats[st]--;
    288      1.2  rmind 	percpu_putref(npf_stats_percpu);
    289      1.2  rmind }
    290      1.2  rmind 
    291      1.2  rmind static void
    292      1.2  rmind npf_stats_collect(void *mem, void *arg, struct cpu_info *ci)
    293      1.2  rmind {
    294      1.2  rmind 	uint64_t *percpu_stats = mem, *full_stats = arg;
    295      1.2  rmind 	int i;
    296      1.2  rmind 
    297      1.2  rmind 	for (i = 0; i < NPF_STATS_COUNT; i++) {
    298      1.2  rmind 		full_stats[i] += percpu_stats[i];
    299      1.2  rmind 	}
    300      1.2  rmind }
    301      1.2  rmind 
    302      1.2  rmind /*
    303      1.2  rmind  * npfctl_stats: export collected statistics.
    304      1.2  rmind  */
    305      1.2  rmind static int
    306      1.2  rmind npfctl_stats(void *data)
    307      1.2  rmind {
    308      1.2  rmind 	uint64_t *fullst, *uptr = *(uint64_t **)data;
    309      1.2  rmind 	int error;
    310      1.2  rmind 
    311      1.2  rmind 	fullst = kmem_zalloc(NPF_STATS_SIZE, KM_SLEEP);
    312      1.2  rmind 	percpu_foreach(npf_stats_percpu, npf_stats_collect, fullst);
    313      1.2  rmind 	error = copyout(fullst, uptr, NPF_STATS_SIZE);
    314      1.2  rmind 	kmem_free(fullst, NPF_STATS_SIZE);
    315      1.2  rmind 	return error;
    316      1.2  rmind }
    317