Home | History | Annotate | Line # | Download | only in kern
uipc_accf.c revision 1.7
      1 /*	$NetBSD: uipc_accf.c,v 1.7 2008/11/12 12:36:16 ad Exp $	*/
      2 
      3 /*-
      4  * Copyright (c) 2008 The NetBSD Foundation, Inc.
      5  * All rights reserved.
      6  *
      7  * This code is derived from software developed for The NetBSD Foundation
      8  * by Andrew Doran.
      9  *
     10  * Redistribution and use in source and binary forms, with or without
     11  * modification, are permitted provided that the following conditions
     12  * are met:
     13  * 1. Redistributions of source code must retain the above copyright
     14  *    notice, this list of conditions and the following disclaimer.
     15  * 2. Redistributions in binary form must reproduce the above copyright
     16  *    notice, this list of conditions and the following disclaimer in the
     17  *    documentation and/or other materials provided with the distribution.
     18  *
     19  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29  * POSSIBILITY OF SUCH DAMAGE.
     30  */
     31 
     32 /*-
     33  * Copyright (c) 2000 Paycounter, Inc.
     34  * Copyright (c) 2005 Robert N. M. Watson
     35  * Author: Alfred Perlstein <alfred (at) paycounter.com>, <alfred (at) FreeBSD.org>
     36  * All rights reserved.
     37  *
     38  * Redistribution and use in source and binary forms, with or without
     39  * modification, are permitted provided that the following conditions
     40  * are met:
     41  * 1. Redistributions of source code must retain the above copyright
     42  *    notice, this list of conditions and the following disclaimer.
     43  * 2. Redistributions in binary form must reproduce the above copyright
     44  *    notice, this list of conditions and the following disclaimer in the
     45  *    documentation and/or other materials provided with the distribution.
     46  *
     47  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
     48  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     49  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     50  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
     51  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     52  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     53  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     54  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     55  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     56  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     57  * SUCH DAMAGE.
     58  */
     59 
     60 #include <sys/cdefs.h>
     61 __KERNEL_RCSID(0, "$NetBSD: uipc_accf.c,v 1.7 2008/11/12 12:36:16 ad Exp $");
     62 
     63 #define ACCEPT_FILTER_MOD
     64 
     65 #include <sys/param.h>
     66 #include <sys/systm.h>
     67 #include <sys/domain.h>
     68 #include <sys/kernel.h>
     69 #include <sys/lock.h>
     70 #include <sys/kmem.h>
     71 #include <sys/mbuf.h>
     72 #include <sys/rwlock.h>
     73 #include <sys/protosw.h>
     74 #include <sys/sysctl.h>
     75 #include <sys/socket.h>
     76 #include <sys/socketvar.h>
     77 #include <sys/queue.h>
     78 #include <sys/once.h>
     79 #include <sys/atomic.h>
     80 
     81 static krwlock_t accept_filter_lock;
     82 
     83 static LIST_HEAD(, accept_filter) accept_filtlsthd =
     84     LIST_HEAD_INITIALIZER(&accept_filtlsthd);
     85 
     86 /*
     87  * Names of Accept filter sysctl objects
     88  */
     89 SYSCTL_SETUP(sysctl_net_inet_accf_setup, "sysctl net.inet.accf subtree setup")
     90 {
     91 
     92 	sysctl_createv(clog, 0, NULL, NULL,
     93 		       CTLFLAG_PERMANENT,
     94 		       CTLTYPE_NODE, "net", NULL,
     95 		       NULL, 0, NULL, 0,
     96 		       CTL_NET, CTL_EOL);
     97 	sysctl_createv(clog, 0, NULL, NULL,
     98 		       CTLFLAG_PERMANENT,
     99 		       CTLTYPE_NODE, "inet", NULL,
    100 		       NULL, 0, NULL, 0,
    101 		       CTL_NET, PF_INET, CTL_EOL);
    102 	sysctl_createv(clog, 0, NULL, NULL,
    103 		       CTLFLAG_PERMANENT,
    104 		       CTLTYPE_NODE, "accf",
    105 		       SYSCTL_DESCR("Accept filters"),
    106 		       NULL, 0, NULL, 0,
    107 		       CTL_NET, PF_INET, SO_ACCEPTFILTER, CTL_EOL);
    108 }
    109 
    110 int
    111 accept_filt_add(struct accept_filter *filt)
    112 {
    113 	struct accept_filter *p;
    114 
    115 	accept_filter_init();
    116 
    117 	rw_enter(&accept_filter_lock, RW_WRITER);
    118 	LIST_FOREACH(p, &accept_filtlsthd, accf_next) {
    119 		if (strcmp(p->accf_name, filt->accf_name) == 0)  {
    120 			rw_exit(&accept_filter_lock);
    121 			return EEXIST;
    122 		}
    123 	}
    124 	LIST_INSERT_HEAD(&accept_filtlsthd, filt, accf_next);
    125 	rw_exit(&accept_filter_lock);
    126 
    127 	return 0;
    128 }
    129 
    130 int
    131 accept_filt_del(struct accept_filter *p)
    132 {
    133 
    134 	rw_enter(&accept_filter_lock, RW_WRITER);
    135 	if (p->accf_refcnt != 0) {
    136 		rw_exit(&accept_filter_lock);
    137 		return EBUSY;
    138 	}
    139 	LIST_REMOVE(p, accf_next);
    140 	rw_exit(&accept_filter_lock);
    141 
    142 	return 0;
    143 }
    144 
    145 struct accept_filter *
    146 accept_filt_get(char *name)
    147 {
    148 	struct accept_filter *p;
    149 
    150 	rw_enter(&accept_filter_lock, RW_READER);
    151 	LIST_FOREACH(p, &accept_filtlsthd, accf_next) {
    152 		if (strcmp(p->accf_name, name) == 0) {
    153 			atomic_inc_uint(&p->accf_refcnt);
    154 			break;
    155 		}
    156 	}
    157 	rw_exit(&accept_filter_lock);
    158 
    159 	return p;
    160 }
    161 
    162 /*
    163  * Accept filter initialization routine.
    164  * This should be called only once.
    165  */
    166 
    167 static int
    168 accept_filter_init0(void)
    169 {
    170 
    171 	rw_init(&accept_filter_lock);
    172 
    173 	return 0;
    174 }
    175 
    176 /*
    177  * Initialization routine: This can also be replaced with
    178  * accept_filt_generic_mod_event for attaching new accept filter.
    179  */
    180 
    181 void
    182 accept_filter_init(void)
    183 {
    184 	static ONCE_DECL(accept_filter_init_once);
    185 
    186 	RUN_ONCE(&accept_filter_init_once, accept_filter_init0);
    187 }
    188 
    189 int
    190 accept_filt_getopt(struct socket *so, struct sockopt *sopt)
    191 {
    192 	struct accept_filter_arg afa;
    193 	int error;
    194 
    195 	KASSERT(solocked(so));
    196 
    197 	if ((so->so_options & SO_ACCEPTCONN) == 0) {
    198 		error = EINVAL;
    199 		goto out;
    200 	}
    201 	if ((so->so_options & SO_ACCEPTFILTER) == 0) {
    202 		error = EINVAL;
    203 		goto out;
    204 	}
    205 
    206 	memset(&afa, 0, sizeof(afa));
    207 	strcpy(afa.af_name, so->so_accf->so_accept_filter->accf_name);
    208 	if (so->so_accf->so_accept_filter_str != NULL)
    209 		strcpy(afa.af_arg, so->so_accf->so_accept_filter_str);
    210 	error = sockopt_set(sopt, &afa, sizeof(afa));
    211 out:
    212 	return error;
    213 }
    214 
    215 /*
    216  * Simple delete case, with socket locked.
    217  */
    218 int
    219 accept_filt_clear(struct socket *so)
    220 {
    221 	struct accept_filter_arg afa;
    222 	struct accept_filter *afp;
    223 	struct socket *so2, *next;
    224 	struct so_accf *af;
    225 
    226 	KASSERT(solocked(so));
    227 
    228 	if ((so->so_options & SO_ACCEPTCONN) == 0) {
    229 		return EINVAL;
    230 	}
    231 	if (so->so_accf != NULL) {
    232 		/* Break in-flight processing. */
    233 		for (so2 = TAILQ_FIRST(&so->so_q0); so2 != NULL; so2 = next) {
    234 			next = TAILQ_NEXT(so2, so_qe);
    235 			if (so2->so_upcall == NULL) {
    236 				continue;
    237 			}
    238 			so2->so_upcall = NULL;
    239 			so2->so_upcallarg = NULL;
    240 			so2->so_options &= ~SO_ACCEPTFILTER;
    241 			so2->so_rcv.sb_flags &= ~SB_UPCALL;
    242 			soisconnected(so2);
    243 		}
    244 		af = so->so_accf;
    245 		afp = af->so_accept_filter;
    246 		if (afp != NULL && afp->accf_destroy != NULL) {
    247 			(*afp->accf_destroy)(so);
    248 		}
    249 		if (af->so_accept_filter_str != NULL) {
    250 			kmem_free(af->so_accept_filter_str,
    251 			    sizeof(afa.af_name));
    252 		}
    253 		kmem_free(af, sizeof(*af));
    254 		so->so_accf = NULL;
    255 		atomic_dec_uint(&afp->accf_refcnt);
    256 	}
    257 	so->so_options &= ~SO_ACCEPTFILTER;
    258 	return 0;
    259 }
    260 
    261 /*
    262  * setsockopt() for accept filters.  Called with the socket unlocked,
    263  * will always return it locked.
    264  */
    265 int
    266 accept_filt_setopt(struct socket *so, const struct sockopt *sopt)
    267 {
    268 	struct accept_filter_arg afa;
    269 	struct accept_filter *afp;
    270 	struct so_accf *newaf;
    271 	int error;
    272 
    273 	if (sopt == NULL || sopt->sopt_size == 0) {
    274 		solock(so);
    275 		return accept_filt_clear(so);
    276 	}
    277 
    278 	/*
    279 	 * Pre-allocate any memory we may need later to avoid blocking at
    280 	 * untimely moments.  This does not optimize for invalid arguments.
    281 	 */
    282 	error = sockopt_get(sopt, &afa, sizeof(afa));
    283 	if (error) {
    284 		solock(so);
    285 		return error;
    286 	}
    287 	afa.af_name[sizeof(afa.af_name)-1] = '\0';
    288 	afa.af_arg[sizeof(afa.af_arg)-1] = '\0';
    289 	afp = accept_filt_get(afa.af_name);
    290 	if (afp == NULL) {
    291 		solock(so);
    292 		return ENOENT;
    293 	}
    294 	/*
    295 	 * Allocate the new accept filter instance storage.  We may
    296 	 * have to free it again later if we fail to attach it.  If
    297 	 * attached properly, 'newaf' is NULLed to avoid a free()
    298 	 * while in use.
    299 	 */
    300 	newaf = kmem_zalloc(sizeof(*newaf), KM_SLEEP);
    301 	if (afp->accf_create != NULL && afa.af_name[0] != '\0') {
    302 		/*
    303 		 * FreeBSD did a variable-size allocation here
    304 		 * with the actual string length from afa.af_name
    305 		 * but it is so short, why bother tracking it?
    306 		 * XXX as others have noted, this is an API mistake;
    307 		 * XXX accept_filter_arg should have a mandatory namelen.
    308 		 * XXX (but it's a bit too late to fix that now)
    309 		 */
    310 		newaf->so_accept_filter_str =
    311 		    kmem_alloc(sizeof(afa.af_name), KM_SLEEP);
    312 		strcpy(newaf->so_accept_filter_str, afa.af_name);
    313 	}
    314 
    315 	/*
    316 	 * Require a listen socket; don't try to replace an existing filter
    317 	 * without first removing it.
    318 	 */
    319 	solock(so);
    320 	if ((so->so_options & SO_ACCEPTCONN) == 0 || so->so_accf != NULL) {
    321 		error = EINVAL;
    322 		goto out;
    323 	}
    324 
    325 	/*
    326 	 * Invoke the accf_create() method of the filter if required.  The
    327 	 * socket lock is held over this call, so create methods for filters
    328 	 * shouldn't block.
    329 	 */
    330 	if (afp->accf_create != NULL) {
    331 		newaf->so_accept_filter_arg =
    332 		    (*afp->accf_create)(so, afa.af_arg);
    333 		if (newaf->so_accept_filter_arg == NULL) {
    334 			error = EINVAL;
    335 			goto out;
    336 		}
    337 	}
    338 	newaf->so_accept_filter = afp;
    339 	so->so_accf = newaf;
    340 	so->so_options |= SO_ACCEPTFILTER;
    341 	newaf = NULL;
    342 out:
    343 	if (newaf != NULL) {
    344 		if (newaf->so_accept_filter_str != NULL)
    345 			kmem_free(newaf->so_accept_filter_str,
    346 			    sizeof(afa.af_name));
    347 		kmem_free(newaf, sizeof(*newaf));
    348 		atomic_dec_uint(&afp->accf_refcnt);
    349 	}
    350 	return error;
    351 }
    352