Home | History | Annotate | Line # | Download | only in kern
uipc_domain.c revision 1.107.2.1
      1  1.107.2.1   thorpej /*	$NetBSD: uipc_domain.c,v 1.107.2.1 2020/12/14 14:38:14 thorpej Exp $	*/
      2       1.12       cgd 
      3        1.1       cgd /*
      4       1.11   mycroft  * Copyright (c) 1982, 1986, 1993
      5       1.11   mycroft  *	The Regents of the University of California.  All rights reserved.
      6        1.1       cgd  *
      7        1.1       cgd  * Redistribution and use in source and binary forms, with or without
      8        1.1       cgd  * modification, are permitted provided that the following conditions
      9        1.1       cgd  * are met:
     10        1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     11        1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     12        1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     13        1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     14        1.1       cgd  *    documentation and/or other materials provided with the distribution.
     15       1.43       agc  * 3. Neither the name of the University nor the names of its contributors
     16        1.1       cgd  *    may be used to endorse or promote products derived from this software
     17        1.1       cgd  *    without specific prior written permission.
     18        1.1       cgd  *
     19        1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     20        1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     21        1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     22        1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     23        1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     24        1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     25        1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     26        1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     27        1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28        1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29        1.1       cgd  * SUCH DAMAGE.
     30        1.1       cgd  *
     31       1.18      fvdl  *	@(#)uipc_domain.c	8.3 (Berkeley) 2/14/95
     32        1.1       cgd  */
     33       1.36     lukem 
     34       1.36     lukem #include <sys/cdefs.h>
     35  1.107.2.1   thorpej __KERNEL_RCSID(0, "$NetBSD: uipc_domain.c,v 1.107.2.1 2020/12/14 14:38:14 thorpej Exp $");
     36        1.1       cgd 
     37        1.5   mycroft #include <sys/param.h>
     38        1.5   mycroft #include <sys/socket.h>
     39       1.50    atatat #include <sys/socketvar.h>
     40        1.5   mycroft #include <sys/protosw.h>
     41        1.5   mycroft #include <sys/domain.h>
     42        1.5   mycroft #include <sys/mbuf.h>
     43        1.5   mycroft #include <sys/time.h>
     44        1.5   mycroft #include <sys/kernel.h>
     45       1.11   mycroft #include <sys/systm.h>
     46       1.30   thorpej #include <sys/callout.h>
     47       1.49      matt #include <sys/queue.h>
     48       1.10       cgd #include <sys/proc.h>
     49       1.10       cgd #include <sys/sysctl.h>
     50       1.50    atatat #include <sys/un.h>
     51       1.50    atatat #include <sys/unpcb.h>
     52       1.50    atatat #include <sys/file.h>
     53       1.72        ad #include <sys/filedesc.h>
     54       1.57      elad #include <sys/kauth.h>
     55       1.96  christos 
     56       1.96  christos #include <netatalk/at.h>
     57       1.96  christos #include <net/if_dl.h>
     58       1.88     joerg #include <netinet/in.h>
     59       1.13  christos 
     60       1.69    dyoung MALLOC_DECLARE(M_SOCKADDR);
     61       1.69    dyoung 
     62       1.69    dyoung MALLOC_DEFINE(M_SOCKADDR, "sockaddr", "socket endpoints");
     63       1.69    dyoung 
     64       1.45  junyoung void	pffasttimo(void *);
     65       1.45  junyoung void	pfslowtimo(void *);
     66       1.37      matt 
     67       1.49      matt struct domainhead domains = STAILQ_HEAD_INITIALIZER(domains);
     68       1.64    dyoung static struct domain *domain_array[AF_MAX];
     69       1.11   mycroft 
     70       1.66        ad callout_t pffasttimo_ch, pfslowtimo_ch;
     71       1.30   thorpej 
     72       1.19   thorpej /*
     73       1.19   thorpej  * Current time values for fast and slow timeouts.  We can use u_int
     74       1.19   thorpej  * relatively safely.  The fast timer will roll over in 27 years and
     75       1.19   thorpej  * the slow timer in 68 years.
     76       1.19   thorpej  */
     77       1.19   thorpej u_int	pfslowtimo_now;
     78       1.19   thorpej u_int	pffasttimo_now;
     79       1.19   thorpej 
     80       1.77     pooka static struct sysctllog *domain_sysctllog;
     81       1.77     pooka static void sysctl_net_setup(void);
     82       1.77     pooka 
     83       1.93     pooka /* ensure successful linkage even without any domains in link sets */
     84       1.93     pooka static struct domain domain_dummy;
     85       1.93     pooka __link_set_add_rodata(domains,domain_dummy);
     86       1.93     pooka 
     87      1.101     ozaki static void
     88      1.101     ozaki domain_init_timers(void)
     89      1.101     ozaki {
     90      1.101     ozaki 
     91      1.101     ozaki 	callout_init(&pffasttimo_ch, CALLOUT_MPSAFE);
     92      1.101     ozaki 	callout_init(&pfslowtimo_ch, CALLOUT_MPSAFE);
     93      1.101     ozaki 
     94      1.101     ozaki 	callout_reset(&pffasttimo_ch, 1, pffasttimo, NULL);
     95      1.101     ozaki 	callout_reset(&pfslowtimo_ch, 1, pfslowtimo, NULL);
     96      1.101     ozaki }
     97      1.101     ozaki 
     98       1.49      matt void
     99       1.94     pooka domaininit(bool attach)
    100       1.49      matt {
    101       1.49      matt 	__link_set_decl(domains, struct domain);
    102       1.49      matt 	struct domain * const * dpp;
    103       1.49      matt 	struct domain *rt_domain = NULL;
    104       1.49      matt 
    105       1.77     pooka 	sysctl_net_setup();
    106       1.77     pooka 
    107       1.49      matt 	/*
    108       1.49      matt 	 * Add all of the domains.  Make sure the PF_ROUTE
    109       1.49      matt 	 * domain is added last.
    110       1.49      matt 	 */
    111       1.94     pooka 	if (attach) {
    112       1.94     pooka 		__link_set_foreach(dpp, domains) {
    113       1.94     pooka 			if (*dpp == &domain_dummy)
    114       1.94     pooka 				continue;
    115       1.94     pooka 			if ((*dpp)->dom_family == PF_ROUTE)
    116       1.94     pooka 				rt_domain = *dpp;
    117       1.94     pooka 			else
    118       1.94     pooka 				domain_attach(*dpp);
    119       1.94     pooka 		}
    120       1.94     pooka 		if (rt_domain)
    121       1.94     pooka 			domain_attach(rt_domain);
    122      1.101     ozaki 
    123      1.101     ozaki 		domain_init_timers();
    124       1.49      matt 	}
    125      1.101     ozaki }
    126       1.49      matt 
    127      1.101     ozaki /*
    128      1.101     ozaki  * Must be called only if domaininit has been called with false and
    129      1.101     ozaki  * after all domains have been attached.
    130      1.101     ozaki  */
    131      1.101     ozaki void
    132      1.101     ozaki domaininit_post(void)
    133      1.101     ozaki {
    134       1.49      matt 
    135      1.101     ozaki 	domain_init_timers();
    136        1.1       cgd }
    137        1.1       cgd 
    138        1.4    andrew void
    139       1.49      matt domain_attach(struct domain *dp)
    140        1.1       cgd {
    141       1.47      matt 	const struct protosw *pr;
    142        1.1       cgd 
    143       1.49      matt 	STAILQ_INSERT_TAIL(&domains, dp, dom_link);
    144       1.64    dyoung 	if (dp->dom_family < __arraycount(domain_array))
    145       1.64    dyoung 		domain_array[dp->dom_family] = dp;
    146       1.49      matt 
    147       1.49      matt 	if (dp->dom_init)
    148       1.49      matt 		(*dp->dom_init)();
    149        1.1       cgd 
    150       1.38      matt #ifdef MBUFTRACE
    151       1.49      matt 	if (dp->dom_mowner.mo_name[0] == '\0') {
    152       1.49      matt 		strncpy(dp->dom_mowner.mo_name, dp->dom_name,
    153       1.49      matt 		    sizeof(dp->dom_mowner.mo_name));
    154       1.49      matt 		MOWNER_ATTACH(&dp->dom_mowner);
    155       1.49      matt 	}
    156       1.38      matt #endif
    157       1.49      matt 	for (pr = dp->dom_protosw; pr < dp->dom_protoswNPROTOSW; pr++) {
    158       1.49      matt 		if (pr->pr_init)
    159       1.49      matt 			(*pr->pr_init)();
    160        1.1       cgd 	}
    161        1.1       cgd 
    162       1.16  explorer 	if (max_linkhdr < 16)		/* XXX */
    163       1.16  explorer 		max_linkhdr = 16;
    164        1.1       cgd 	max_hdr = max_linkhdr + max_protohdr;
    165        1.1       cgd 	max_datalen = MHLEN - max_hdr;
    166        1.1       cgd }
    167        1.1       cgd 
    168       1.29   thorpej struct domain *
    169       1.49      matt pffinddomain(int family)
    170       1.29   thorpej {
    171       1.29   thorpej 	struct domain *dp;
    172       1.29   thorpej 
    173       1.64    dyoung 	if (family < __arraycount(domain_array) && domain_array[family] != NULL)
    174       1.64    dyoung 		return domain_array[family];
    175       1.64    dyoung 
    176       1.49      matt 	DOMAIN_FOREACH(dp)
    177       1.29   thorpej 		if (dp->dom_family == family)
    178       1.81    dyoung 			return dp;
    179       1.81    dyoung 	return NULL;
    180       1.29   thorpej }
    181       1.29   thorpej 
    182       1.47      matt const struct protosw *
    183       1.49      matt pffindtype(int family, int type)
    184        1.1       cgd {
    185       1.29   thorpej 	struct domain *dp;
    186       1.47      matt 	const struct protosw *pr;
    187       1.29   thorpej 
    188       1.29   thorpej 	dp = pffinddomain(family);
    189       1.29   thorpej 	if (dp == NULL)
    190       1.81    dyoung 		return NULL;
    191        1.1       cgd 
    192        1.1       cgd 	for (pr = dp->dom_protosw; pr < dp->dom_protoswNPROTOSW; pr++)
    193        1.1       cgd 		if (pr->pr_type && pr->pr_type == type)
    194       1.81    dyoung 			return pr;
    195       1.29   thorpej 
    196       1.81    dyoung 	return NULL;
    197        1.1       cgd }
    198        1.1       cgd 
    199       1.47      matt const struct protosw *
    200       1.49      matt pffindproto(int family, int protocol, int type)
    201        1.1       cgd {
    202       1.29   thorpej 	struct domain *dp;
    203       1.47      matt 	const struct protosw *pr;
    204       1.47      matt 	const struct protosw *maybe = NULL;
    205        1.1       cgd 
    206        1.1       cgd 	if (family == 0)
    207       1.81    dyoung 		return NULL;
    208       1.29   thorpej 
    209       1.29   thorpej 	dp = pffinddomain(family);
    210       1.29   thorpej 	if (dp == NULL)
    211       1.81    dyoung 		return NULL;
    212       1.29   thorpej 
    213        1.1       cgd 	for (pr = dp->dom_protosw; pr < dp->dom_protoswNPROTOSW; pr++) {
    214        1.1       cgd 		if ((pr->pr_protocol == protocol) && (pr->pr_type == type))
    215       1.81    dyoung 			return pr;
    216        1.1       cgd 
    217        1.1       cgd 		if (type == SOCK_RAW && pr->pr_type == SOCK_RAW &&
    218       1.29   thorpej 		    pr->pr_protocol == 0 && maybe == NULL)
    219        1.1       cgd 			maybe = pr;
    220        1.1       cgd 	}
    221       1.81    dyoung 	return maybe;
    222       1.10       cgd }
    223       1.10       cgd 
    224       1.71    dyoung void *
    225       1.71    dyoung sockaddr_addr(struct sockaddr *sa, socklen_t *slenp)
    226       1.71    dyoung {
    227       1.71    dyoung 	const struct domain *dom;
    228       1.71    dyoung 
    229       1.71    dyoung 	if ((dom = pffinddomain(sa->sa_family)) == NULL ||
    230       1.71    dyoung 	    dom->dom_sockaddr_addr == NULL)
    231       1.71    dyoung 		return NULL;
    232       1.71    dyoung 
    233       1.71    dyoung 	return (*dom->dom_sockaddr_addr)(sa, slenp);
    234       1.71    dyoung }
    235       1.71    dyoung 
    236       1.71    dyoung const void *
    237       1.71    dyoung sockaddr_const_addr(const struct sockaddr *sa, socklen_t *slenp)
    238       1.71    dyoung {
    239       1.71    dyoung 	const struct domain *dom;
    240       1.83    dyoung 
    241       1.71    dyoung 	if ((dom = pffinddomain(sa->sa_family)) == NULL ||
    242       1.71    dyoung 	    dom->dom_sockaddr_const_addr == NULL)
    243       1.71    dyoung 		return NULL;
    244       1.71    dyoung 
    245       1.71    dyoung 	return (*dom->dom_sockaddr_const_addr)(sa, slenp);
    246       1.71    dyoung }
    247       1.71    dyoung 
    248       1.71    dyoung const struct sockaddr *
    249       1.97  christos sockaddr_any_by_family(sa_family_t family)
    250       1.71    dyoung {
    251       1.71    dyoung 	const struct domain *dom;
    252       1.83    dyoung 
    253       1.80    dyoung 	if ((dom = pffinddomain(family)) == NULL)
    254       1.71    dyoung 		return NULL;
    255       1.71    dyoung 
    256       1.71    dyoung 	return dom->dom_sa_any;
    257       1.71    dyoung }
    258       1.71    dyoung 
    259       1.80    dyoung const struct sockaddr *
    260       1.80    dyoung sockaddr_any(const struct sockaddr *sa)
    261       1.80    dyoung {
    262       1.80    dyoung 	return sockaddr_any_by_family(sa->sa_family);
    263       1.80    dyoung }
    264       1.80    dyoung 
    265       1.71    dyoung const void *
    266       1.71    dyoung sockaddr_anyaddr(const struct sockaddr *sa, socklen_t *slenp)
    267       1.71    dyoung {
    268       1.71    dyoung 	const struct sockaddr *any;
    269       1.71    dyoung 
    270       1.71    dyoung 	if ((any = sockaddr_any(sa)) == NULL)
    271       1.71    dyoung 		return NULL;
    272       1.71    dyoung 
    273       1.71    dyoung 	return sockaddr_const_addr(any, slenp);
    274       1.71    dyoung }
    275       1.71    dyoung 
    276       1.97  christos socklen_t
    277       1.97  christos sockaddr_getsize_by_family(sa_family_t af)
    278       1.96  christos {
    279       1.97  christos 	switch (af) {
    280       1.96  christos 	case AF_INET:
    281       1.97  christos 		return sizeof(struct sockaddr_in);
    282       1.96  christos 	case AF_INET6:
    283       1.97  christos 		return sizeof(struct sockaddr_in6);
    284       1.96  christos 	case AF_UNIX:
    285       1.97  christos 		return sizeof(struct sockaddr_un);
    286       1.96  christos 	case AF_LINK:
    287       1.97  christos 		return sizeof(struct sockaddr_dl);
    288       1.96  christos 	case AF_APPLETALK:
    289       1.97  christos 		return sizeof(struct sockaddr_at);
    290       1.96  christos 	default:
    291       1.97  christos #ifdef DIAGNOSTIC
    292      1.102       mrg 		printf("%s: (%s:%u:%u) Unhandled address family=%hhu\n",
    293      1.102       mrg 		    __func__, curlwp->l_proc->p_comm,
    294      1.102       mrg 		    curlwp->l_proc->p_pid, curlwp->l_lid, af);
    295       1.97  christos #endif
    296       1.97  christos 		return 0;
    297       1.97  christos 	}
    298       1.97  christos }
    299       1.97  christos 
    300       1.97  christos #ifdef DIAGNOSTIC
    301       1.97  christos static void
    302       1.97  christos sockaddr_checklen(const struct sockaddr *sa)
    303       1.97  christos {
    304       1.99  christos 	// Can't tell how much was allocated, if it was allocated.
    305       1.99  christos 	if (sa->sa_family == AF_LINK)
    306       1.99  christos 		return;
    307       1.99  christos 
    308       1.97  christos 	socklen_t len = sockaddr_getsize_by_family(sa->sa_family);
    309       1.97  christos 	if (len == 0 || len == sa->sa_len)
    310       1.96  christos 		return;
    311       1.97  christos 
    312       1.97  christos 	char buf[512];
    313       1.97  christos 	sockaddr_format(sa, buf, sizeof(buf));
    314       1.97  christos 	printf("%s: %p bad len af=%hhu socklen=%hhu len=%u [%s]\n",
    315       1.97  christos 	    __func__, sa, sa->sa_family, sa->sa_len, (unsigned)len, buf);
    316       1.96  christos }
    317       1.96  christos #else
    318       1.96  christos #define sockaddr_checklen(sa) ((void)0)
    319       1.96  christos #endif
    320       1.96  christos 
    321       1.64    dyoung struct sockaddr *
    322       1.69    dyoung sockaddr_alloc(sa_family_t af, socklen_t socklen, int flags)
    323       1.64    dyoung {
    324       1.64    dyoung 	struct sockaddr *sa;
    325       1.69    dyoung 	socklen_t reallen = MAX(socklen, offsetof(struct sockaddr, sa_data[0]));
    326       1.64    dyoung 
    327       1.69    dyoung 	if ((sa = malloc(reallen, M_SOCKADDR, flags)) == NULL)
    328       1.64    dyoung 		return NULL;
    329       1.64    dyoung 
    330       1.64    dyoung 	sa->sa_family = af;
    331       1.69    dyoung 	sa->sa_len = reallen;
    332       1.96  christos 	sockaddr_checklen(sa);
    333       1.64    dyoung 	return sa;
    334       1.64    dyoung }
    335       1.64    dyoung 
    336       1.64    dyoung struct sockaddr *
    337       1.69    dyoung sockaddr_copy(struct sockaddr *dst, socklen_t socklen,
    338       1.69    dyoung     const struct sockaddr *src)
    339       1.64    dyoung {
    340       1.70    dyoung 	if (__predict_false(socklen < src->sa_len)) {
    341       1.70    dyoung 		panic("%s: source too long, %d < %d bytes", __func__, socklen,
    342       1.70    dyoung 		    src->sa_len);
    343       1.70    dyoung 	}
    344       1.96  christos 	sockaddr_checklen(src);
    345       1.70    dyoung 	return memcpy(dst, src, src->sa_len);
    346       1.64    dyoung }
    347       1.64    dyoung 
    348       1.84    dyoung struct sockaddr *
    349       1.84    dyoung sockaddr_externalize(struct sockaddr *dst, socklen_t socklen,
    350       1.84    dyoung     const struct sockaddr *src)
    351       1.84    dyoung {
    352       1.84    dyoung 	struct domain *dom;
    353       1.84    dyoung 
    354       1.84    dyoung 	dom = pffinddomain(src->sa_family);
    355       1.84    dyoung 
    356       1.84    dyoung 	if (dom != NULL && dom->dom_sockaddr_externalize != NULL)
    357       1.84    dyoung 		return (*dom->dom_sockaddr_externalize)(dst, socklen, src);
    358       1.84    dyoung 
    359       1.84    dyoung 	return sockaddr_copy(dst, socklen, src);
    360       1.84    dyoung }
    361       1.84    dyoung 
    362       1.64    dyoung int
    363       1.64    dyoung sockaddr_cmp(const struct sockaddr *sa1, const struct sockaddr *sa2)
    364       1.64    dyoung {
    365       1.65    dyoung 	int len, rc;
    366       1.64    dyoung 	struct domain *dom;
    367       1.64    dyoung 
    368       1.64    dyoung 	if (sa1->sa_family != sa2->sa_family)
    369       1.64    dyoung 		return sa1->sa_family - sa2->sa_family;
    370       1.64    dyoung 
    371       1.65    dyoung 	dom = pffinddomain(sa1->sa_family);
    372       1.65    dyoung 
    373       1.65    dyoung 	if (dom != NULL && dom->dom_sockaddr_cmp != NULL)
    374       1.64    dyoung 		return (*dom->dom_sockaddr_cmp)(sa1, sa2);
    375       1.64    dyoung 
    376       1.65    dyoung 	len = MIN(sa1->sa_len, sa2->sa_len);
    377       1.65    dyoung 
    378       1.65    dyoung 	if (dom == NULL || dom->dom_sa_cmplen == 0) {
    379       1.65    dyoung 		if ((rc = memcmp(sa1, sa2, len)) != 0)
    380       1.65    dyoung 			return rc;
    381       1.65    dyoung 		return sa1->sa_len - sa2->sa_len;
    382       1.65    dyoung 	}
    383       1.65    dyoung 
    384       1.65    dyoung 	if ((rc = memcmp((const char *)sa1 + dom->dom_sa_cmpofs,
    385       1.65    dyoung 		         (const char *)sa2 + dom->dom_sa_cmpofs,
    386       1.65    dyoung 			 MIN(dom->dom_sa_cmplen,
    387       1.65    dyoung 			     len - MIN(len, dom->dom_sa_cmpofs)))) != 0)
    388       1.64    dyoung 		return rc;
    389       1.64    dyoung 
    390       1.65    dyoung 	return MIN(dom->dom_sa_cmplen + dom->dom_sa_cmpofs, sa1->sa_len) -
    391       1.65    dyoung 	       MIN(dom->dom_sa_cmplen + dom->dom_sa_cmpofs, sa2->sa_len);
    392       1.64    dyoung }
    393       1.64    dyoung 
    394       1.64    dyoung struct sockaddr *
    395       1.64    dyoung sockaddr_dup(const struct sockaddr *src, int flags)
    396       1.64    dyoung {
    397       1.64    dyoung 	struct sockaddr *dst;
    398       1.64    dyoung 
    399       1.69    dyoung 	if ((dst = sockaddr_alloc(src->sa_family, src->sa_len, flags)) == NULL)
    400       1.64    dyoung 		return NULL;
    401       1.64    dyoung 
    402       1.69    dyoung 	return sockaddr_copy(dst, dst->sa_len, src);
    403       1.64    dyoung }
    404       1.64    dyoung 
    405       1.64    dyoung void
    406       1.64    dyoung sockaddr_free(struct sockaddr *sa)
    407       1.64    dyoung {
    408       1.69    dyoung 	free(sa, M_SOCKADDR);
    409       1.64    dyoung }
    410       1.64    dyoung 
    411       1.96  christos static int
    412       1.96  christos sun_print(char *buf, size_t len, const void *v)
    413       1.96  christos {
    414       1.96  christos 	const struct sockaddr_un *sun = v;
    415      1.107   mlelstv 	size_t plen;
    416      1.107   mlelstv 
    417      1.107   mlelstv 	KASSERT(sun->sun_len >= offsetof(struct sockaddr_un, sun_path[0]));
    418      1.107   mlelstv 	plen = sun->sun_len - offsetof(struct sockaddr_un, sun_path[0]);
    419      1.107   mlelstv 
    420      1.107   mlelstv 	len = MIN(len, plen);
    421      1.107   mlelstv 
    422       1.96  christos 	return snprintf(buf, len, "%s", sun->sun_path);
    423       1.96  christos }
    424       1.96  christos 
    425       1.96  christos int
    426       1.88     joerg sockaddr_format(const struct sockaddr *sa, char *buf, size_t len)
    427       1.88     joerg {
    428       1.96  christos 	size_t plen = 0;
    429       1.88     joerg 
    430       1.96  christos 	if (sa == NULL)
    431       1.96  christos 		return strlcpy(buf, "(null)", len);
    432       1.88     joerg 
    433       1.88     joerg 	switch (sa->sa_family) {
    434       1.88     joerg 	case AF_LOCAL:
    435       1.96  christos 		plen = strlcpy(buf, "unix: ", len);
    436       1.96  christos 		break;
    437       1.88     joerg 	case AF_INET:
    438       1.96  christos 		plen = strlcpy(buf, "inet: ", len);
    439       1.88     joerg 		break;
    440       1.88     joerg 	case AF_INET6:
    441       1.96  christos 		plen = strlcpy(buf, "inet6: ", len);
    442       1.96  christos 		break;
    443       1.96  christos 	case AF_LINK:
    444       1.96  christos 		plen = strlcpy(buf, "link: ", len);
    445       1.96  christos 		break;
    446       1.96  christos 	case AF_APPLETALK:
    447       1.96  christos 		plen = strlcpy(buf, "atalk: ", len);
    448       1.88     joerg 		break;
    449       1.96  christos 	default:
    450       1.96  christos 		return snprintf(buf, len, "(unknown socket family %d)",
    451       1.96  christos 		    (int)sa->sa_family);
    452       1.88     joerg 	}
    453       1.96  christos 
    454       1.96  christos 	buf += plen;
    455       1.96  christos 	if (plen > len)
    456       1.96  christos 		len = 0;
    457       1.96  christos 	else
    458       1.96  christos 		len -= plen;
    459       1.96  christos 
    460       1.96  christos 	switch (sa->sa_family) {
    461       1.96  christos 	case AF_LOCAL:
    462       1.96  christos 		return sun_print(buf, len, sa);
    463       1.96  christos 	case AF_INET:
    464       1.96  christos 		return sin_print(buf, len, sa);
    465       1.96  christos 	case AF_INET6:
    466       1.96  christos 		return sin6_print(buf, len, sa);
    467       1.96  christos 	case AF_LINK:
    468       1.96  christos 		return sdl_print(buf, len, sa);
    469       1.96  christos 	case AF_APPLETALK:
    470       1.96  christos 		return sat_print(buf, len, sa);
    471       1.96  christos 	default:
    472       1.96  christos 		panic("bad family %hhu", sa->sa_family);
    473       1.88     joerg 	}
    474       1.88     joerg }
    475       1.88     joerg 
    476       1.50    atatat /*
    477       1.50    atatat  * sysctl helper to stuff PF_LOCAL pcbs into sysctl structures
    478       1.50    atatat  */
    479       1.50    atatat static void
    480       1.50    atatat sysctl_dounpcb(struct kinfo_pcb *pcb, const struct socket *so)
    481       1.50    atatat {
    482      1.105      maxv 	const bool allowaddr = get_expose_address(curproc);
    483       1.50    atatat 	struct unpcb *unp = sotounpcb(so);
    484       1.50    atatat 	struct sockaddr_un *un = unp->unp_addr;
    485       1.50    atatat 
    486       1.50    atatat 	memset(pcb, 0, sizeof(*pcb));
    487       1.50    atatat 
    488       1.50    atatat 	pcb->ki_family = so->so_proto->pr_domain->dom_family;
    489       1.50    atatat 	pcb->ki_type = so->so_proto->pr_type;
    490       1.50    atatat 	pcb->ki_protocol = so->so_proto->pr_protocol;
    491       1.50    atatat 	pcb->ki_pflags = unp->unp_flags;
    492       1.50    atatat 
    493      1.105      maxv 	COND_SET_VALUE(pcb->ki_pcbaddr, PTRTOUINT64(unp), allowaddr);
    494       1.50    atatat 	/* pcb->ki_ppcbaddr = unp has no ppcb... */
    495      1.105      maxv 	COND_SET_VALUE(pcb->ki_sockaddr, PTRTOUINT64(so), allowaddr);
    496       1.50    atatat 
    497       1.50    atatat 	pcb->ki_sostate = so->so_state;
    498       1.50    atatat 	/* pcb->ki_prstate = unp has no state... */
    499       1.50    atatat 
    500       1.50    atatat 	pcb->ki_rcvq = so->so_rcv.sb_cc;
    501       1.50    atatat 	pcb->ki_sndq = so->so_snd.sb_cc;
    502       1.50    atatat 
    503       1.92  christos 	un = (struct sockaddr_un *)pcb->ki_spad;
    504       1.50    atatat 	/*
    505       1.50    atatat 	 * local domain sockets may bind without having a local
    506       1.50    atatat 	 * endpoint.  bleah!
    507       1.50    atatat 	 */
    508       1.50    atatat 	if (unp->unp_addr != NULL) {
    509       1.91     seanb 		/*
    510       1.91     seanb 		 * We've added one to sun_len when allocating to
    511       1.91     seanb 		 * hold terminating NUL which we want here.  See
    512       1.91     seanb 		 * makeun().
    513       1.91     seanb 		 */
    514       1.91     seanb 		memcpy(un, unp->unp_addr,
    515      1.104  riastrad 		    uimin(sizeof(pcb->ki_spad), unp->unp_addr->sun_len + 1));
    516       1.50    atatat 	}
    517       1.50    atatat 	else {
    518       1.50    atatat 		un->sun_len = offsetof(struct sockaddr_un, sun_path);
    519       1.50    atatat 		un->sun_family = pcb->ki_family;
    520       1.50    atatat 	}
    521       1.50    atatat 	if (unp->unp_conn != NULL) {
    522       1.92  christos 		un = (struct sockaddr_un *)pcb->ki_dpad;
    523       1.50    atatat 		if (unp->unp_conn->unp_addr != NULL) {
    524       1.91     seanb 			memcpy(un, unp->unp_conn->unp_addr,
    525      1.104  riastrad 			    uimin(sizeof(pcb->ki_dpad), unp->unp_conn->unp_addr->sun_len + 1));
    526       1.50    atatat 		}
    527       1.50    atatat 		else {
    528       1.50    atatat 			un->sun_len = offsetof(struct sockaddr_un, sun_path);
    529       1.50    atatat 			un->sun_family = pcb->ki_family;
    530       1.50    atatat 		}
    531       1.50    atatat 	}
    532       1.50    atatat 
    533       1.50    atatat 	pcb->ki_inode = unp->unp_ino;
    534      1.105      maxv 	COND_SET_VALUE(pcb->ki_vnode, PTRTOUINT64(unp->unp_vnode), allowaddr);
    535      1.105      maxv 	COND_SET_VALUE(pcb->ki_conn, PTRTOUINT64(unp->unp_conn), allowaddr);
    536      1.105      maxv 	COND_SET_VALUE(pcb->ki_refs, PTRTOUINT64(unp->unp_refs), allowaddr);
    537      1.105      maxv 	COND_SET_VALUE(pcb->ki_nextref, PTRTOUINT64(unp->unp_nextref),
    538      1.105      maxv 	    allowaddr);
    539       1.50    atatat }
    540       1.50    atatat 
    541       1.50    atatat static int
    542       1.50    atatat sysctl_unpcblist(SYSCTLFN_ARGS)
    543       1.50    atatat {
    544      1.106      maxv 	struct file *fp, *np, *dfp;
    545       1.50    atatat 	struct socket *so;
    546       1.50    atatat 	struct kinfo_pcb pcb;
    547       1.50    atatat 	char *dp;
    548       1.50    atatat 	size_t len, needed, elem_size, out_size;
    549       1.89    martin 	int error, elem_count, pf, type;
    550       1.50    atatat 
    551       1.50    atatat 	if (namelen == 1 && name[0] == CTL_QUERY)
    552       1.81    dyoung 		return sysctl_query(SYSCTLFN_CALL(rnode));
    553       1.50    atatat 
    554       1.50    atatat 	if (namelen != 4)
    555       1.81    dyoung 		return EINVAL;
    556       1.50    atatat 
    557       1.56  christos 	if (oldp != NULL) {
    558       1.56  christos 		len = *oldlenp;
    559       1.56  christos 		elem_size = name[2];
    560       1.56  christos 		elem_count = name[3];
    561       1.56  christos 		if (elem_size != sizeof(pcb))
    562       1.56  christos 			return EINVAL;
    563       1.56  christos 	} else {
    564       1.56  christos 		len = 0;
    565       1.56  christos 		elem_size = sizeof(pcb);
    566       1.56  christos 		elem_count = INT_MAX;
    567       1.56  christos 	}
    568       1.50    atatat 	error = 0;
    569       1.50    atatat 	dp = oldp;
    570       1.56  christos 	out_size = elem_size;
    571       1.50    atatat 	needed = 0;
    572       1.50    atatat 
    573       1.50    atatat 	if (name - oname != 4)
    574       1.81    dyoung 		return EINVAL;
    575       1.50    atatat 
    576       1.50    atatat 	pf = oname[1];
    577       1.50    atatat 	type = oname[2];
    578       1.50    atatat 
    579       1.50    atatat 	/*
    580       1.74        ad 	 * allocate dummy file descriptor to make position in list.
    581       1.74        ad 	 */
    582       1.74        ad 	sysctl_unlock();
    583       1.74        ad 	if ((dfp = fgetdummy()) == NULL) {
    584       1.74        ad 	 	sysctl_relock();
    585       1.74        ad 		return ENOMEM;
    586       1.74        ad 	}
    587       1.74        ad 
    588       1.74        ad 	/*
    589       1.50    atatat 	 * there's no "list" of local domain sockets, so we have
    590       1.50    atatat 	 * to walk the file list looking for them.  :-/
    591       1.50    atatat 	 */
    592       1.72        ad 	mutex_enter(&filelist_lock);
    593      1.106      maxv 	LIST_FOREACH_SAFE(fp, &filehead, f_list, np) {
    594       1.74        ad 		if (fp->f_count == 0 || fp->f_type != DTYPE_SOCKET ||
    595       1.95      matt 		    fp->f_socket == NULL)
    596       1.74        ad 			continue;
    597       1.95      matt 		so = fp->f_socket;
    598       1.50    atatat 		if (so->so_type != type)
    599       1.50    atatat 			continue;
    600       1.50    atatat 		if (so->so_proto->pr_domain->dom_family != pf)
    601       1.50    atatat 			continue;
    602       1.85      elad 		if (kauth_authorize_network(l->l_cred, KAUTH_NETWORK_SOCKET,
    603       1.85      elad 		    KAUTH_REQ_NETWORK_SOCKET_CANSEE, so, NULL, NULL) != 0)
    604       1.85      elad 			continue;
    605       1.50    atatat 		if (len >= elem_size && elem_count > 0) {
    606       1.75        ad 			mutex_enter(&fp->f_lock);
    607      1.100     joerg 			/*
    608      1.100     joerg 			 * Do not add references, if the count reached 0.
    609      1.100     joerg 			 * Since the check above has been performed without
    610      1.100     joerg 			 * locking, it must be rechecked here as a concurrent
    611      1.100     joerg 			 * closef could have reduced it.
    612      1.100     joerg 			 */
    613      1.100     joerg 			if (fp->f_count == 0) {
    614      1.100     joerg 				mutex_exit(&fp->f_lock);
    615      1.100     joerg 				continue;
    616      1.100     joerg 			}
    617       1.75        ad 			fp->f_count++;
    618       1.75        ad 			mutex_exit(&fp->f_lock);
    619       1.74        ad 			LIST_INSERT_AFTER(fp, dfp, f_list);
    620       1.72        ad 			mutex_exit(&filelist_lock);
    621       1.50    atatat 			sysctl_dounpcb(&pcb, so);
    622       1.50    atatat 			error = copyout(&pcb, dp, out_size);
    623       1.75        ad 			closef(fp);
    624       1.72        ad 			mutex_enter(&filelist_lock);
    625      1.106      maxv 			np = LIST_NEXT(dfp, f_list);
    626       1.74        ad 			LIST_REMOVE(dfp, f_list);
    627       1.50    atatat 			if (error)
    628       1.50    atatat 				break;
    629       1.50    atatat 			dp += elem_size;
    630       1.50    atatat 			len -= elem_size;
    631       1.50    atatat 		}
    632       1.78       mrg 		needed += elem_size;
    633       1.78       mrg 		if (elem_count > 0 && elem_count != INT_MAX)
    634       1.78       mrg 			elem_count--;
    635       1.50    atatat 	}
    636       1.72        ad 	mutex_exit(&filelist_lock);
    637       1.74        ad 	fputdummy(dfp);
    638       1.74        ad  	*oldlenp = needed;
    639       1.50    atatat 	if (oldp == NULL)
    640       1.50    atatat 		*oldlenp += PCB_SLOP * sizeof(struct kinfo_pcb);
    641       1.74        ad  	sysctl_relock();
    642       1.50    atatat 
    643       1.81    dyoung 	return error;
    644       1.50    atatat }
    645       1.50    atatat 
    646       1.77     pooka static void
    647       1.79    cegger sysctl_net_setup(void)
    648       1.10       cgd {
    649       1.77     pooka 
    650       1.77     pooka 	KASSERT(domain_sysctllog == NULL);
    651       1.77     pooka 	sysctl_createv(&domain_sysctllog, 0, NULL, NULL,
    652       1.46    atatat 		       CTLFLAG_PERMANENT,
    653       1.48    atatat 		       CTLTYPE_NODE, "local",
    654       1.48    atatat 		       SYSCTL_DESCR("PF_LOCAL related settings"),
    655       1.44    atatat 		       NULL, 0, NULL, 0,
    656       1.44    atatat 		       CTL_NET, PF_LOCAL, CTL_EOL);
    657       1.77     pooka 	sysctl_createv(&domain_sysctllog, 0, NULL, NULL,
    658       1.50    atatat 		       CTLFLAG_PERMANENT,
    659       1.50    atatat 		       CTLTYPE_NODE, "stream",
    660       1.50    atatat 		       SYSCTL_DESCR("SOCK_STREAM settings"),
    661       1.50    atatat 		       NULL, 0, NULL, 0,
    662       1.50    atatat 		       CTL_NET, PF_LOCAL, SOCK_STREAM, CTL_EOL);
    663       1.77     pooka 	sysctl_createv(&domain_sysctllog, 0, NULL, NULL,
    664       1.50    atatat 		       CTLFLAG_PERMANENT,
    665       1.86      manu 		       CTLTYPE_NODE, "seqpacket",
    666       1.86      manu 		       SYSCTL_DESCR("SOCK_SEQPACKET settings"),
    667       1.86      manu 		       NULL, 0, NULL, 0,
    668       1.86      manu 		       CTL_NET, PF_LOCAL, SOCK_SEQPACKET, CTL_EOL);
    669       1.86      manu 	sysctl_createv(&domain_sysctllog, 0, NULL, NULL,
    670       1.86      manu 		       CTLFLAG_PERMANENT,
    671       1.50    atatat 		       CTLTYPE_NODE, "dgram",
    672       1.50    atatat 		       SYSCTL_DESCR("SOCK_DGRAM settings"),
    673       1.50    atatat 		       NULL, 0, NULL, 0,
    674       1.50    atatat 		       CTL_NET, PF_LOCAL, SOCK_DGRAM, CTL_EOL);
    675       1.10       cgd 
    676       1.77     pooka 	sysctl_createv(&domain_sysctllog, 0, NULL, NULL,
    677       1.50    atatat 		       CTLFLAG_PERMANENT,
    678       1.50    atatat 		       CTLTYPE_STRUCT, "pcblist",
    679       1.50    atatat 		       SYSCTL_DESCR("SOCK_STREAM protocol control block list"),
    680       1.50    atatat 		       sysctl_unpcblist, 0, NULL, 0,
    681       1.50    atatat 		       CTL_NET, PF_LOCAL, SOCK_STREAM, CTL_CREATE, CTL_EOL);
    682       1.77     pooka 	sysctl_createv(&domain_sysctllog, 0, NULL, NULL,
    683       1.50    atatat 		       CTLFLAG_PERMANENT,
    684       1.50    atatat 		       CTLTYPE_STRUCT, "pcblist",
    685       1.86      manu 		       SYSCTL_DESCR("SOCK_SEQPACKET protocol control "
    686       1.86      manu 				    "block list"),
    687       1.86      manu 		       sysctl_unpcblist, 0, NULL, 0,
    688       1.86      manu 		       CTL_NET, PF_LOCAL, SOCK_SEQPACKET, CTL_CREATE, CTL_EOL);
    689       1.86      manu 	sysctl_createv(&domain_sysctllog, 0, NULL, NULL,
    690       1.86      manu 		       CTLFLAG_PERMANENT,
    691       1.86      manu 		       CTLTYPE_STRUCT, "pcblist",
    692       1.50    atatat 		       SYSCTL_DESCR("SOCK_DGRAM protocol control block list"),
    693       1.50    atatat 		       sysctl_unpcblist, 0, NULL, 0,
    694       1.50    atatat 		       CTL_NET, PF_LOCAL, SOCK_DGRAM, CTL_CREATE, CTL_EOL);
    695        1.1       cgd }
    696        1.1       cgd 
    697        1.4    andrew void
    698       1.63    dyoung pfctlinput(int cmd, const struct sockaddr *sa)
    699        1.1       cgd {
    700       1.31  augustss 	struct domain *dp;
    701       1.47      matt 	const struct protosw *pr;
    702        1.1       cgd 
    703       1.63    dyoung 	DOMAIN_FOREACH(dp) {
    704       1.63    dyoung 		for (pr = dp->dom_protosw; pr < dp->dom_protoswNPROTOSW; pr++) {
    705       1.63    dyoung 			if (pr->pr_ctlinput != NULL)
    706       1.13  christos 				(*pr->pr_ctlinput)(cmd, sa, NULL);
    707       1.63    dyoung 		}
    708       1.63    dyoung 	}
    709       1.34    itojun }
    710       1.34    itojun 
    711       1.34    itojun void
    712       1.63    dyoung pfctlinput2(int cmd, const struct sockaddr *sa, void *ctlparam)
    713       1.34    itojun {
    714       1.34    itojun 	struct domain *dp;
    715       1.47      matt 	const struct protosw *pr;
    716       1.34    itojun 
    717       1.63    dyoung 	if (sa == NULL)
    718       1.34    itojun 		return;
    719       1.49      matt 
    720       1.49      matt 	DOMAIN_FOREACH(dp) {
    721       1.34    itojun 		/*
    722       1.34    itojun 		 * the check must be made by xx_ctlinput() anyways, to
    723       1.34    itojun 		 * make sure we use data item pointed to by ctlparam in
    724       1.34    itojun 		 * correct way.  the following check is made just for safety.
    725       1.34    itojun 		 */
    726       1.34    itojun 		if (dp->dom_family != sa->sa_family)
    727       1.34    itojun 			continue;
    728       1.34    itojun 
    729       1.63    dyoung 		for (pr = dp->dom_protosw; pr < dp->dom_protoswNPROTOSW; pr++) {
    730       1.63    dyoung 			if (pr->pr_ctlinput != NULL)
    731       1.34    itojun 				(*pr->pr_ctlinput)(cmd, sa, ctlparam);
    732       1.63    dyoung 		}
    733       1.34    itojun 	}
    734        1.1       cgd }
    735        1.1       cgd 
    736        1.4    andrew void
    737       1.62      yamt pfslowtimo(void *arg)
    738        1.1       cgd {
    739       1.31  augustss 	struct domain *dp;
    740       1.47      matt 	const struct protosw *pr;
    741        1.1       cgd 
    742       1.19   thorpej 	pfslowtimo_now++;
    743       1.19   thorpej 
    744       1.49      matt 	DOMAIN_FOREACH(dp) {
    745        1.1       cgd 		for (pr = dp->dom_protosw; pr < dp->dom_protoswNPROTOSW; pr++)
    746        1.1       cgd 			if (pr->pr_slowtimo)
    747        1.1       cgd 				(*pr->pr_slowtimo)();
    748       1.49      matt 	}
    749       1.87     seanb 	callout_schedule(&pfslowtimo_ch, hz / PR_SLOWHZ);
    750        1.1       cgd }
    751        1.1       cgd 
    752        1.4    andrew void
    753       1.62      yamt pffasttimo(void *arg)
    754        1.1       cgd {
    755       1.31  augustss 	struct domain *dp;
    756       1.47      matt 	const struct protosw *pr;
    757       1.19   thorpej 
    758       1.19   thorpej 	pffasttimo_now++;
    759        1.1       cgd 
    760       1.49      matt 	DOMAIN_FOREACH(dp) {
    761        1.1       cgd 		for (pr = dp->dom_protosw; pr < dp->dom_protoswNPROTOSW; pr++)
    762        1.1       cgd 			if (pr->pr_fasttimo)
    763        1.1       cgd 				(*pr->pr_fasttimo)();
    764       1.49      matt 	}
    765       1.87     seanb 	callout_schedule(&pffasttimo_ch, hz / PR_FASTHZ);
    766        1.1       cgd }
    767