Home | History | Annotate | Line # | Download | only in kern
uipc_usrreq.c revision 1.158
      1  1.158       rtr /*	$NetBSD: uipc_usrreq.c,v 1.158 2014/07/09 04:54:03 rtr Exp $	*/
      2   1.30   thorpej 
      3   1.30   thorpej /*-
      4  1.121       mrg  * Copyright (c) 1998, 2000, 2004, 2008, 2009 The NetBSD Foundation, Inc.
      5   1.30   thorpej  * All rights reserved.
      6   1.30   thorpej  *
      7   1.30   thorpej  * This code is derived from software contributed to The NetBSD Foundation
      8   1.30   thorpej  * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
      9  1.121       mrg  * NASA Ames Research Center, and by Andrew Doran.
     10   1.30   thorpej  *
     11   1.30   thorpej  * Redistribution and use in source and binary forms, with or without
     12   1.30   thorpej  * modification, are permitted provided that the following conditions
     13   1.30   thorpej  * are met:
     14   1.30   thorpej  * 1. Redistributions of source code must retain the above copyright
     15   1.30   thorpej  *    notice, this list of conditions and the following disclaimer.
     16   1.30   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     17   1.30   thorpej  *    notice, this list of conditions and the following disclaimer in the
     18   1.30   thorpej  *    documentation and/or other materials provided with the distribution.
     19   1.30   thorpej  *
     20   1.30   thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     21   1.30   thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     22   1.30   thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     23   1.30   thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     24   1.30   thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     25   1.30   thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     26   1.30   thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     27   1.30   thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     28   1.30   thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     29   1.30   thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     30   1.30   thorpej  * POSSIBILITY OF SUCH DAMAGE.
     31   1.30   thorpej  */
     32   1.10       cgd 
     33    1.1       cgd /*
     34    1.8   mycroft  * Copyright (c) 1982, 1986, 1989, 1991, 1993
     35    1.8   mycroft  *	The Regents of the University of California.  All rights reserved.
     36    1.1       cgd  *
     37    1.1       cgd  * Redistribution and use in source and binary forms, with or without
     38    1.1       cgd  * modification, are permitted provided that the following conditions
     39    1.1       cgd  * are met:
     40    1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     41    1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     42    1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     43    1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     44    1.1       cgd  *    documentation and/or other materials provided with the distribution.
     45   1.67       agc  * 3. Neither the name of the University nor the names of its contributors
     46   1.67       agc  *    may be used to endorse or promote products derived from this software
     47   1.67       agc  *    without specific prior written permission.
     48   1.67       agc  *
     49   1.67       agc  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     50   1.67       agc  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     51   1.67       agc  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     52   1.67       agc  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     53   1.67       agc  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     54   1.67       agc  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     55   1.67       agc  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     56   1.67       agc  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     57   1.67       agc  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     58   1.67       agc  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     59   1.67       agc  * SUCH DAMAGE.
     60   1.67       agc  *
     61   1.67       agc  *	@(#)uipc_usrreq.c	8.9 (Berkeley) 5/14/95
     62   1.67       agc  */
     63   1.67       agc 
     64   1.67       agc /*
     65   1.67       agc  * Copyright (c) 1997 Christopher G. Demetriou.  All rights reserved.
     66   1.67       agc  *
     67   1.67       agc  * Redistribution and use in source and binary forms, with or without
     68   1.67       agc  * modification, are permitted provided that the following conditions
     69   1.67       agc  * are met:
     70   1.67       agc  * 1. Redistributions of source code must retain the above copyright
     71   1.67       agc  *    notice, this list of conditions and the following disclaimer.
     72   1.67       agc  * 2. Redistributions in binary form must reproduce the above copyright
     73   1.67       agc  *    notice, this list of conditions and the following disclaimer in the
     74   1.67       agc  *    documentation and/or other materials provided with the distribution.
     75    1.1       cgd  * 3. All advertising materials mentioning features or use of this software
     76    1.1       cgd  *    must display the following acknowledgement:
     77    1.1       cgd  *	This product includes software developed by the University of
     78    1.1       cgd  *	California, Berkeley and its contributors.
     79    1.1       cgd  * 4. Neither the name of the University nor the names of its contributors
     80    1.1       cgd  *    may be used to endorse or promote products derived from this software
     81    1.1       cgd  *    without specific prior written permission.
     82    1.1       cgd  *
     83    1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     84    1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     85    1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     86    1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     87    1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     88    1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     89    1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     90    1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     91    1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     92    1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     93    1.1       cgd  * SUCH DAMAGE.
     94    1.1       cgd  *
     95   1.31      fvdl  *	@(#)uipc_usrreq.c	8.9 (Berkeley) 5/14/95
     96    1.1       cgd  */
     97   1.53     lukem 
     98   1.53     lukem #include <sys/cdefs.h>
     99  1.158       rtr __KERNEL_RCSID(0, "$NetBSD: uipc_usrreq.c,v 1.158 2014/07/09 04:54:03 rtr Exp $");
    100    1.1       cgd 
    101    1.7   mycroft #include <sys/param.h>
    102    1.8   mycroft #include <sys/systm.h>
    103    1.7   mycroft #include <sys/proc.h>
    104    1.7   mycroft #include <sys/filedesc.h>
    105    1.7   mycroft #include <sys/domain.h>
    106    1.7   mycroft #include <sys/protosw.h>
    107    1.7   mycroft #include <sys/socket.h>
    108    1.7   mycroft #include <sys/socketvar.h>
    109    1.7   mycroft #include <sys/unpcb.h>
    110    1.7   mycroft #include <sys/un.h>
    111    1.7   mycroft #include <sys/namei.h>
    112    1.7   mycroft #include <sys/vnode.h>
    113    1.7   mycroft #include <sys/file.h>
    114    1.7   mycroft #include <sys/stat.h>
    115    1.7   mycroft #include <sys/mbuf.h>
    116   1.91      elad #include <sys/kauth.h>
    117  1.101        ad #include <sys/kmem.h>
    118  1.106        ad #include <sys/atomic.h>
    119  1.119     pooka #include <sys/uidinfo.h>
    120  1.121       mrg #include <sys/kernel.h>
    121  1.121       mrg #include <sys/kthread.h>
    122    1.1       cgd 
    123    1.1       cgd /*
    124    1.1       cgd  * Unix communications domain.
    125    1.1       cgd  *
    126    1.1       cgd  * TODO:
    127  1.134      manu  *	RDM
    128    1.1       cgd  *	rethink name space problems
    129    1.1       cgd  *	need a proper out-of-band
    130  1.112        ad  *
    131  1.112        ad  * Notes on locking:
    132  1.112        ad  *
    133  1.112        ad  * The generic rules noted in uipc_socket2.c apply.  In addition:
    134  1.112        ad  *
    135  1.112        ad  * o We have a global lock, uipc_lock.
    136  1.112        ad  *
    137  1.112        ad  * o All datagram sockets are locked by uipc_lock.
    138  1.112        ad  *
    139  1.112        ad  * o For stream socketpairs, the two endpoints are created sharing the same
    140  1.112        ad  *   independent lock.  Sockets presented to PRU_CONNECT2 must already have
    141  1.112        ad  *   matching locks.
    142  1.112        ad  *
    143  1.112        ad  * o Stream sockets created via socket() start life with their own
    144  1.112        ad  *   independent lock.
    145  1.112        ad  *
    146  1.112        ad  * o Stream connections to a named endpoint are slightly more complicated.
    147  1.112        ad  *   Sockets that have called listen() have their lock pointer mutated to
    148  1.112        ad  *   the global uipc_lock.  When establishing a connection, the connecting
    149  1.112        ad  *   socket also has its lock mutated to uipc_lock, which matches the head
    150  1.112        ad  *   (listening socket).  We create a new socket for accept() to return, and
    151  1.112        ad  *   that also shares the head's lock.  Until the connection is completely
    152  1.112        ad  *   done on both ends, all three sockets are locked by uipc_lock.  Once the
    153  1.112        ad  *   connection is complete, the association with the head's lock is broken.
    154  1.112        ad  *   The connecting socket and the socket returned from accept() have their
    155  1.112        ad  *   lock pointers mutated away from uipc_lock, and back to the connecting
    156  1.112        ad  *   socket's original, independent lock.  The head continues to be locked
    157  1.112        ad  *   by uipc_lock.
    158  1.112        ad  *
    159  1.112        ad  * o If uipc_lock is determined to be a significant source of contention,
    160  1.112        ad  *   it could easily be hashed out.  It is difficult to simply make it an
    161  1.112        ad  *   independent lock because of visibility / garbage collection issues:
    162  1.112        ad  *   if a socket has been associated with a lock at any point, that lock
    163  1.112        ad  *   must remain valid until the socket is no longer visible in the system.
    164  1.112        ad  *   The lock must not be freed or otherwise destroyed until any sockets
    165  1.112        ad  *   that had referenced it have also been destroyed.
    166    1.1       cgd  */
    167   1.93  christos const struct sockaddr_un sun_noname = {
    168  1.145  christos 	.sun_len = offsetof(struct sockaddr_un, sun_path),
    169   1.93  christos 	.sun_family = AF_LOCAL,
    170   1.93  christos };
    171    1.1       cgd ino_t	unp_ino;			/* prototype for fake inode numbers */
    172    1.1       cgd 
    173  1.152     rmind static void unp_detach(struct socket *);
    174   1.92        ad struct mbuf *unp_addsockcred(struct lwp *, struct mbuf *);
    175  1.121       mrg static void unp_mark(file_t *);
    176  1.121       mrg static void unp_scan(struct mbuf *, void (*)(file_t *), int);
    177  1.121       mrg static void unp_discard_now(file_t *);
    178  1.121       mrg static void unp_discard_later(file_t *);
    179  1.121       mrg static void unp_thread(void *);
    180  1.121       mrg static void unp_thread_kick(void);
    181  1.112        ad static kmutex_t *uipc_lock;
    182  1.112        ad 
    183  1.121       mrg static kcondvar_t unp_thread_cv;
    184  1.121       mrg static lwp_t *unp_thread_lwp;
    185  1.121       mrg static SLIST_HEAD(,file) unp_thread_discard;
    186  1.121       mrg static int unp_defer;
    187  1.121       mrg 
    188  1.112        ad /*
    189  1.112        ad  * Initialize Unix protocols.
    190  1.112        ad  */
    191  1.112        ad void
    192  1.112        ad uipc_init(void)
    193  1.112        ad {
    194  1.121       mrg 	int error;
    195  1.112        ad 
    196  1.112        ad 	uipc_lock = mutex_obj_alloc(MUTEX_DEFAULT, IPL_NONE);
    197  1.121       mrg 	cv_init(&unp_thread_cv, "unpgc");
    198  1.121       mrg 
    199  1.121       mrg 	error = kthread_create(PRI_NONE, KTHREAD_MPSAFE, NULL, unp_thread,
    200  1.121       mrg 	    NULL, &unp_thread_lwp, "unpgc");
    201  1.121       mrg 	if (error != 0)
    202  1.121       mrg 		panic("uipc_init %d", error);
    203  1.112        ad }
    204  1.112        ad 
    205  1.112        ad /*
    206  1.112        ad  * A connection succeeded: disassociate both endpoints from the head's
    207  1.112        ad  * lock, and make them share their own lock.  There is a race here: for
    208  1.112        ad  * a very brief time one endpoint will be locked by a different lock
    209  1.112        ad  * than the other end.  However, since the current thread holds the old
    210  1.112        ad  * lock (the listening socket's lock, the head) access can still only be
    211  1.112        ad  * made to one side of the connection.
    212  1.112        ad  */
    213  1.112        ad static void
    214  1.112        ad unp_setpeerlocks(struct socket *so, struct socket *so2)
    215  1.112        ad {
    216  1.112        ad 	struct unpcb *unp;
    217  1.112        ad 	kmutex_t *lock;
    218  1.112        ad 
    219  1.112        ad 	KASSERT(solocked2(so, so2));
    220  1.112        ad 
    221  1.112        ad 	/*
    222  1.112        ad 	 * Bail out if either end of the socket is not yet fully
    223  1.112        ad 	 * connected or accepted.  We only break the lock association
    224  1.112        ad 	 * with the head when the pair of sockets stand completely
    225  1.112        ad 	 * on their own.
    226  1.112        ad 	 */
    227  1.125      yamt 	KASSERT(so->so_head == NULL);
    228  1.125      yamt 	if (so2->so_head != NULL)
    229  1.112        ad 		return;
    230  1.112        ad 
    231  1.112        ad 	/*
    232  1.112        ad 	 * Drop references to old lock.  A third reference (from the
    233  1.112        ad 	 * queue head) must be held as we still hold its lock.  Bonus:
    234  1.112        ad 	 * we don't need to worry about garbage collecting the lock.
    235  1.112        ad 	 */
    236  1.112        ad 	lock = so->so_lock;
    237  1.112        ad 	KASSERT(lock == uipc_lock);
    238  1.112        ad 	mutex_obj_free(lock);
    239  1.112        ad 	mutex_obj_free(lock);
    240  1.112        ad 
    241  1.112        ad 	/*
    242  1.112        ad 	 * Grab stream lock from the initiator and share between the two
    243  1.112        ad 	 * endpoints.  Issue memory barrier to ensure all modifications
    244  1.112        ad 	 * become globally visible before the lock change.  so2 is
    245  1.112        ad 	 * assumed not to have a stream lock, because it was created
    246  1.112        ad 	 * purely for the server side to accept this connection and
    247  1.112        ad 	 * started out life using the domain-wide lock.
    248  1.112        ad 	 */
    249  1.112        ad 	unp = sotounpcb(so);
    250  1.112        ad 	KASSERT(unp->unp_streamlock != NULL);
    251  1.112        ad 	KASSERT(sotounpcb(so2)->unp_streamlock == NULL);
    252  1.112        ad 	lock = unp->unp_streamlock;
    253  1.112        ad 	unp->unp_streamlock = NULL;
    254  1.112        ad 	mutex_obj_hold(lock);
    255  1.112        ad 	membar_exit();
    256  1.127    bouyer 	/*
    257  1.127    bouyer 	 * possible race if lock is not held - see comment in
    258  1.127    bouyer 	 * uipc_usrreq(PRU_ACCEPT).
    259  1.127    bouyer 	 */
    260  1.127    bouyer 	KASSERT(mutex_owned(lock));
    261  1.115        ad 	solockreset(so, lock);
    262  1.115        ad 	solockreset(so2, lock);
    263  1.112        ad }
    264  1.112        ad 
    265  1.112        ad /*
    266  1.112        ad  * Reset a socket's lock back to the domain-wide lock.
    267  1.112        ad  */
    268  1.112        ad static void
    269  1.112        ad unp_resetlock(struct socket *so)
    270  1.112        ad {
    271  1.112        ad 	kmutex_t *olock, *nlock;
    272  1.112        ad 	struct unpcb *unp;
    273  1.112        ad 
    274  1.112        ad 	KASSERT(solocked(so));
    275  1.112        ad 
    276  1.112        ad 	olock = so->so_lock;
    277  1.112        ad 	nlock = uipc_lock;
    278  1.112        ad 	if (olock == nlock)
    279  1.112        ad 		return;
    280  1.112        ad 	unp = sotounpcb(so);
    281  1.112        ad 	KASSERT(unp->unp_streamlock == NULL);
    282  1.112        ad 	unp->unp_streamlock = olock;
    283  1.112        ad 	mutex_obj_hold(nlock);
    284  1.112        ad 	mutex_enter(nlock);
    285  1.115        ad 	solockreset(so, nlock);
    286  1.112        ad 	mutex_exit(olock);
    287  1.112        ad }
    288  1.112        ad 
    289  1.112        ad static void
    290  1.112        ad unp_free(struct unpcb *unp)
    291  1.112        ad {
    292  1.112        ad 	if (unp->unp_addr)
    293  1.112        ad 		free(unp->unp_addr, M_SONAME);
    294  1.112        ad 	if (unp->unp_streamlock != NULL)
    295  1.112        ad 		mutex_obj_free(unp->unp_streamlock);
    296  1.152     rmind 	kmem_free(unp, sizeof(*unp));
    297  1.112        ad }
    298   1.30   thorpej 
    299   1.20   mycroft int
    300   1.76      matt unp_output(struct mbuf *m, struct mbuf *control, struct unpcb *unp,
    301   1.92        ad 	struct lwp *l)
    302   1.20   mycroft {
    303   1.20   mycroft 	struct socket *so2;
    304   1.77      matt 	const struct sockaddr_un *sun;
    305   1.20   mycroft 
    306  1.153  christos 	/* XXX: server side closed the socket */
    307  1.153  christos 	if (unp->unp_conn == NULL)
    308  1.153  christos 		return ECONNREFUSED;
    309   1.20   mycroft 	so2 = unp->unp_conn->unp_socket;
    310  1.112        ad 
    311  1.112        ad 	KASSERT(solocked(so2));
    312  1.112        ad 
    313   1.20   mycroft 	if (unp->unp_addr)
    314   1.20   mycroft 		sun = unp->unp_addr;
    315   1.20   mycroft 	else
    316   1.20   mycroft 		sun = &sun_noname;
    317   1.30   thorpej 	if (unp->unp_conn->unp_flags & UNP_WANTCRED)
    318   1.92        ad 		control = unp_addsockcred(l, control);
    319   1.82  christos 	if (sbappendaddr(&so2->so_rcv, (const struct sockaddr *)sun, m,
    320   1.20   mycroft 	    control) == 0) {
    321  1.112        ad 		so2->so_rcv.sb_overflowed++;
    322   1.98    martin 		unp_dispose(control);
    323   1.20   mycroft 		m_freem(control);
    324   1.20   mycroft 		m_freem(m);
    325   1.60  christos 		return (ENOBUFS);
    326   1.20   mycroft 	} else {
    327   1.20   mycroft 		sorwakeup(so2);
    328   1.20   mycroft 		return (0);
    329   1.20   mycroft 	}
    330   1.20   mycroft }
    331   1.20   mycroft 
    332   1.20   mycroft void
    333  1.112        ad unp_setaddr(struct socket *so, struct mbuf *nam, bool peeraddr)
    334   1.20   mycroft {
    335   1.77      matt 	const struct sockaddr_un *sun;
    336  1.112        ad 	struct unpcb *unp;
    337  1.112        ad 	bool ext;
    338   1.20   mycroft 
    339  1.127    bouyer 	KASSERT(solocked(so));
    340  1.112        ad 	unp = sotounpcb(so);
    341  1.112        ad 	ext = false;
    342   1.20   mycroft 
    343  1.112        ad 	for (;;) {
    344  1.112        ad 		sun = NULL;
    345  1.112        ad 		if (peeraddr) {
    346  1.112        ad 			if (unp->unp_conn && unp->unp_conn->unp_addr)
    347  1.112        ad 				sun = unp->unp_conn->unp_addr;
    348  1.112        ad 		} else {
    349  1.112        ad 			if (unp->unp_addr)
    350  1.112        ad 				sun = unp->unp_addr;
    351  1.112        ad 		}
    352  1.112        ad 		if (sun == NULL)
    353  1.112        ad 			sun = &sun_noname;
    354  1.112        ad 		nam->m_len = sun->sun_len;
    355  1.112        ad 		if (nam->m_len > MLEN && !ext) {
    356  1.112        ad 			sounlock(so);
    357  1.112        ad 			MEXTMALLOC(nam, MAXPATHLEN * 2, M_WAITOK);
    358  1.112        ad 			solock(so);
    359  1.112        ad 			ext = true;
    360  1.112        ad 		} else {
    361  1.112        ad 			KASSERT(nam->m_len <= MAXPATHLEN * 2);
    362  1.112        ad 			memcpy(mtod(nam, void *), sun, (size_t)nam->m_len);
    363  1.112        ad 			break;
    364  1.112        ad 		}
    365  1.112        ad 	}
    366   1.20   mycroft }
    367   1.20   mycroft 
    368  1.151     rmind static int
    369  1.151     rmind unp_usrreq(struct socket *so, int req, struct mbuf *m, struct mbuf *nam,
    370  1.151     rmind     struct mbuf *control, struct lwp *l)
    371    1.1       cgd {
    372  1.152     rmind 	struct unpcb *unp;
    373   1.46  augustss 	struct socket *so2;
    374   1.75  christos 	u_int newhiwat;
    375   1.46  augustss 	int error = 0;
    376    1.1       cgd 
    377  1.152     rmind 	KASSERT(req != PRU_ATTACH);
    378  1.152     rmind 	KASSERT(req != PRU_DETACH);
    379  1.154       rtr 	KASSERT(req != PRU_CONTROL);
    380  1.156       rtr 	KASSERT(req != PRU_SENSE);
    381  1.158       rtr 	KASSERT(req != PRU_PEERADDR);
    382  1.158       rtr 	KASSERT(req != PRU_SOCKADDR);
    383  1.152     rmind 
    384  1.152     rmind 	KASSERT(solocked(so));
    385  1.152     rmind 	unp = sotounpcb(so);
    386   1.20   mycroft 
    387  1.152     rmind 	KASSERT(!control || (req == PRU_SEND || req == PRU_SENDOOB));
    388  1.152     rmind 	if (unp == NULL) {
    389  1.152     rmind 		error = EINVAL;
    390  1.152     rmind 		goto release;
    391    1.1       cgd 	}
    392   1.20   mycroft 
    393    1.1       cgd 	switch (req) {
    394    1.1       cgd 	case PRU_BIND:
    395   1.90  christos 		KASSERT(l != NULL);
    396  1.112        ad 		error = unp_bind(so, nam, l);
    397    1.1       cgd 		break;
    398    1.1       cgd 
    399    1.1       cgd 	case PRU_LISTEN:
    400  1.112        ad 		/*
    401  1.112        ad 		 * If the socket can accept a connection, it must be
    402  1.112        ad 		 * locked by uipc_lock.
    403  1.112        ad 		 */
    404  1.112        ad 		unp_resetlock(so);
    405  1.122      yamt 		if (unp->unp_vnode == NULL)
    406    1.1       cgd 			error = EINVAL;
    407    1.1       cgd 		break;
    408    1.1       cgd 
    409    1.1       cgd 	case PRU_CONNECT:
    410   1.90  christos 		KASSERT(l != NULL);
    411   1.86  christos 		error = unp_connect(so, nam, l);
    412    1.1       cgd 		break;
    413    1.1       cgd 
    414    1.1       cgd 	case PRU_CONNECT2:
    415   1.72      matt 		error = unp_connect2(so, (struct socket *)nam, PRU_CONNECT2);
    416    1.1       cgd 		break;
    417    1.1       cgd 
    418    1.1       cgd 	case PRU_DISCONNECT:
    419    1.1       cgd 		unp_disconnect(unp);
    420    1.1       cgd 		break;
    421    1.1       cgd 
    422    1.1       cgd 	case PRU_ACCEPT:
    423  1.112        ad 		KASSERT(so->so_lock == uipc_lock);
    424   1.72      matt 		/*
    425   1.72      matt 		 * Mark the initiating STREAM socket as connected *ONLY*
    426   1.72      matt 		 * after it's been accepted.  This prevents a client from
    427   1.72      matt 		 * overrunning a server and receiving ECONNREFUSED.
    428   1.72      matt 		 */
    429  1.145  christos 		if (unp->unp_conn == NULL) {
    430  1.145  christos 			/*
    431  1.145  christos 			 * This will use the empty socket and will not
    432  1.145  christos 			 * allocate.
    433  1.145  christos 			 */
    434  1.145  christos 			unp_setaddr(so, nam, true);
    435  1.112        ad 			break;
    436  1.145  christos 		}
    437  1.112        ad 		so2 = unp->unp_conn->unp_socket;
    438  1.112        ad 		if (so2->so_state & SS_ISCONNECTING) {
    439  1.112        ad 			KASSERT(solocked2(so, so->so_head));
    440  1.112        ad 			KASSERT(solocked2(so2, so->so_head));
    441  1.112        ad 			soisconnected(so2);
    442  1.112        ad 		}
    443  1.112        ad 		/*
    444  1.112        ad 		 * If the connection is fully established, break the
    445  1.112        ad 		 * association with uipc_lock and give the connected
    446  1.152     rmind 		 * pair a separate lock to share.
    447  1.127    bouyer 		 * There is a race here: sotounpcb(so2)->unp_streamlock
    448  1.127    bouyer 		 * is not locked, so when changing so2->so_lock
    449  1.127    bouyer 		 * another thread can grab it while so->so_lock is still
    450  1.127    bouyer 		 * pointing to the (locked) uipc_lock.
    451  1.129       wiz 		 * this should be harmless, except that this makes
    452  1.127    bouyer 		 * solocked2() and solocked() unreliable.
    453  1.127    bouyer 		 * Another problem is that unp_setaddr() expects the
    454  1.127    bouyer 		 * the socket locked. Grabing sotounpcb(so2)->unp_streamlock
    455  1.127    bouyer 		 * fixes both issues.
    456  1.112        ad 		 */
    457  1.127    bouyer 		mutex_enter(sotounpcb(so2)->unp_streamlock);
    458  1.112        ad 		unp_setpeerlocks(so2, so);
    459  1.112        ad 		/*
    460  1.112        ad 		 * Only now return peer's address, as we may need to
    461  1.112        ad 		 * block in order to allocate memory.
    462  1.112        ad 		 *
    463  1.112        ad 		 * XXX Minor race: connection can be broken while
    464  1.112        ad 		 * lock is dropped in unp_setaddr().  We will return
    465  1.112        ad 		 * error == 0 and sun_noname as the peer address.
    466  1.112        ad 		 */
    467  1.112        ad 		unp_setaddr(so, nam, true);
    468  1.127    bouyer 		/* so_lock now points to unp_streamlock */
    469  1.127    bouyer 		mutex_exit(so2->so_lock);
    470    1.1       cgd 		break;
    471    1.1       cgd 
    472    1.1       cgd 	case PRU_SHUTDOWN:
    473    1.1       cgd 		socantsendmore(so);
    474    1.1       cgd 		unp_shutdown(unp);
    475    1.1       cgd 		break;
    476    1.1       cgd 
    477    1.1       cgd 	case PRU_RCVD:
    478    1.1       cgd 		switch (so->so_type) {
    479    1.1       cgd 
    480    1.1       cgd 		case SOCK_DGRAM:
    481    1.1       cgd 			panic("uipc 1");
    482    1.1       cgd 			/*NOTREACHED*/
    483    1.1       cgd 
    484  1.134      manu 		case SOCK_SEQPACKET: /* FALLTHROUGH */
    485    1.1       cgd 		case SOCK_STREAM:
    486    1.1       cgd #define	rcv (&so->so_rcv)
    487    1.1       cgd #define snd (&so2->so_snd)
    488    1.1       cgd 			if (unp->unp_conn == 0)
    489    1.1       cgd 				break;
    490    1.1       cgd 			so2 = unp->unp_conn->unp_socket;
    491  1.112        ad 			KASSERT(solocked2(so, so2));
    492    1.1       cgd 			/*
    493    1.1       cgd 			 * Adjust backpressure on sender
    494    1.1       cgd 			 * and wakeup any waiting to write.
    495    1.1       cgd 			 */
    496    1.1       cgd 			snd->sb_mbmax += unp->unp_mbcnt - rcv->sb_mbcnt;
    497    1.1       cgd 			unp->unp_mbcnt = rcv->sb_mbcnt;
    498   1.75  christos 			newhiwat = snd->sb_hiwat + unp->unp_cc - rcv->sb_cc;
    499   1.81  christos 			(void)chgsbsize(so2->so_uidinfo,
    500   1.75  christos 			    &snd->sb_hiwat, newhiwat, RLIM_INFINITY);
    501    1.1       cgd 			unp->unp_cc = rcv->sb_cc;
    502    1.1       cgd 			sowwakeup(so2);
    503    1.1       cgd #undef snd
    504    1.1       cgd #undef rcv
    505    1.1       cgd 			break;
    506    1.1       cgd 
    507    1.1       cgd 		default:
    508    1.1       cgd 			panic("uipc 2");
    509    1.1       cgd 		}
    510    1.1       cgd 		break;
    511    1.1       cgd 
    512    1.1       cgd 	case PRU_SEND:
    513   1.30   thorpej 		/*
    514   1.30   thorpej 		 * Note: unp_internalize() rejects any control message
    515   1.30   thorpej 		 * other than SCM_RIGHTS, and only allows one.  This
    516   1.30   thorpej 		 * has the side-effect of preventing a caller from
    517   1.30   thorpej 		 * forging SCM_CREDS.
    518   1.30   thorpej 		 */
    519   1.90  christos 		if (control) {
    520  1.112        ad 			sounlock(so);
    521  1.112        ad 			error = unp_internalize(&control);
    522  1.112        ad 			solock(so);
    523  1.112        ad 			if (error != 0) {
    524  1.111   mlelstv 				m_freem(control);
    525  1.111   mlelstv 				m_freem(m);
    526  1.111   mlelstv 				break;
    527  1.111   mlelstv 			}
    528   1.83      yamt 		}
    529    1.1       cgd 		switch (so->so_type) {
    530    1.1       cgd 
    531    1.1       cgd 		case SOCK_DGRAM: {
    532  1.112        ad 			KASSERT(so->so_lock == uipc_lock);
    533    1.1       cgd 			if (nam) {
    534  1.111   mlelstv 				if ((so->so_state & SS_ISCONNECTED) != 0)
    535    1.1       cgd 					error = EISCONN;
    536  1.111   mlelstv 				else {
    537  1.112        ad 					/*
    538  1.112        ad 					 * Note: once connected, the
    539  1.112        ad 					 * socket's lock must not be
    540  1.112        ad 					 * dropped until we have sent
    541  1.112        ad 					 * the message and disconnected.
    542  1.112        ad 					 * This is necessary to prevent
    543  1.112        ad 					 * intervening control ops, like
    544  1.112        ad 					 * another connection.
    545  1.112        ad 					 */
    546  1.111   mlelstv 					error = unp_connect(so, nam, l);
    547   1.20   mycroft 				}
    548    1.1       cgd 			} else {
    549  1.111   mlelstv 				if ((so->so_state & SS_ISCONNECTED) == 0)
    550    1.1       cgd 					error = ENOTCONN;
    551  1.111   mlelstv 			}
    552  1.111   mlelstv 			if (error) {
    553  1.111   mlelstv 				unp_dispose(control);
    554  1.111   mlelstv 				m_freem(control);
    555  1.111   mlelstv 				m_freem(m);
    556  1.111   mlelstv 				break;
    557    1.1       cgd 			}
    558  1.147    martin 			KASSERT(l != NULL);
    559   1.92        ad 			error = unp_output(m, control, unp, l);
    560    1.1       cgd 			if (nam)
    561    1.1       cgd 				unp_disconnect(unp);
    562    1.1       cgd 			break;
    563    1.1       cgd 		}
    564    1.1       cgd 
    565  1.134      manu 		case SOCK_SEQPACKET: /* FALLTHROUGH */
    566    1.1       cgd 		case SOCK_STREAM:
    567    1.1       cgd #define	rcv (&so2->so_rcv)
    568    1.1       cgd #define	snd (&so->so_snd)
    569   1.87  christos 			if (unp->unp_conn == NULL) {
    570   1.87  christos 				error = ENOTCONN;
    571   1.87  christos 				break;
    572   1.87  christos 			}
    573    1.1       cgd 			so2 = unp->unp_conn->unp_socket;
    574  1.112        ad 			KASSERT(solocked2(so, so2));
    575   1.30   thorpej 			if (unp->unp_conn->unp_flags & UNP_WANTCRED) {
    576   1.30   thorpej 				/*
    577   1.30   thorpej 				 * Credentials are passed only once on
    578  1.134      manu 				 * SOCK_STREAM and SOCK_SEQPACKET.
    579   1.30   thorpej 				 */
    580   1.30   thorpej 				unp->unp_conn->unp_flags &= ~UNP_WANTCRED;
    581   1.92        ad 				control = unp_addsockcred(l, control);
    582   1.30   thorpej 			}
    583    1.1       cgd 			/*
    584    1.1       cgd 			 * Send to paired receive port, and then reduce
    585    1.1       cgd 			 * send buffer hiwater marks to maintain backpressure.
    586    1.1       cgd 			 * Wake up readers.
    587    1.1       cgd 			 */
    588    1.1       cgd 			if (control) {
    589  1.112        ad 				if (sbappendcontrol(rcv, m, control) != 0)
    590  1.112        ad 					control = NULL;
    591  1.134      manu 			} else {
    592  1.134      manu 				switch(so->so_type) {
    593  1.134      manu 				case SOCK_SEQPACKET:
    594  1.134      manu 					sbappendrecord(rcv, m);
    595  1.134      manu 					break;
    596  1.134      manu 				case SOCK_STREAM:
    597  1.134      manu 					sbappend(rcv, m);
    598  1.134      manu 					break;
    599  1.134      manu 				default:
    600  1.134      manu 					panic("uipc_usrreq");
    601  1.134      manu 					break;
    602  1.134      manu 				}
    603  1.134      manu 			}
    604    1.1       cgd 			snd->sb_mbmax -=
    605    1.1       cgd 			    rcv->sb_mbcnt - unp->unp_conn->unp_mbcnt;
    606    1.1       cgd 			unp->unp_conn->unp_mbcnt = rcv->sb_mbcnt;
    607   1.75  christos 			newhiwat = snd->sb_hiwat -
    608   1.75  christos 			    (rcv->sb_cc - unp->unp_conn->unp_cc);
    609   1.81  christos 			(void)chgsbsize(so->so_uidinfo,
    610   1.75  christos 			    &snd->sb_hiwat, newhiwat, RLIM_INFINITY);
    611    1.1       cgd 			unp->unp_conn->unp_cc = rcv->sb_cc;
    612    1.1       cgd 			sorwakeup(so2);
    613    1.1       cgd #undef snd
    614    1.1       cgd #undef rcv
    615  1.112        ad 			if (control != NULL) {
    616  1.112        ad 				unp_dispose(control);
    617  1.112        ad 				m_freem(control);
    618  1.112        ad 			}
    619    1.1       cgd 			break;
    620    1.1       cgd 
    621    1.1       cgd 		default:
    622    1.1       cgd 			panic("uipc 4");
    623    1.1       cgd 		}
    624    1.1       cgd 		break;
    625    1.1       cgd 
    626    1.1       cgd 	case PRU_ABORT:
    627  1.112        ad 		(void)unp_drop(unp, ECONNABORTED);
    628   1.88      matt 		KASSERT(so->so_head == NULL);
    629  1.152     rmind 		KASSERT(so->so_pcb != NULL);
    630  1.152     rmind 		unp_detach(so);
    631    1.1       cgd 		break;
    632    1.1       cgd 
    633    1.1       cgd 	case PRU_RCVOOB:
    634   1.20   mycroft 		error = EOPNOTSUPP;
    635   1.20   mycroft 		break;
    636    1.1       cgd 
    637    1.1       cgd 	case PRU_SENDOOB:
    638   1.22   mycroft 		m_freem(control);
    639   1.20   mycroft 		m_freem(m);
    640    1.1       cgd 		error = EOPNOTSUPP;
    641    1.1       cgd 		break;
    642    1.1       cgd 
    643    1.1       cgd 	default:
    644    1.1       cgd 		panic("piusrreq");
    645    1.1       cgd 	}
    646   1.20   mycroft 
    647    1.1       cgd release:
    648    1.1       cgd 	return (error);
    649    1.1       cgd }
    650    1.1       cgd 
    651    1.1       cgd /*
    652   1.30   thorpej  * Unix domain socket option processing.
    653   1.30   thorpej  */
    654   1.30   thorpej int
    655  1.118    plunky uipc_ctloutput(int op, struct socket *so, struct sockopt *sopt)
    656   1.30   thorpej {
    657   1.30   thorpej 	struct unpcb *unp = sotounpcb(so);
    658   1.30   thorpej 	int optval = 0, error = 0;
    659   1.30   thorpej 
    660  1.112        ad 	KASSERT(solocked(so));
    661  1.112        ad 
    662  1.118    plunky 	if (sopt->sopt_level != 0) {
    663  1.100    dyoung 		error = ENOPROTOOPT;
    664   1.30   thorpej 	} else switch (op) {
    665   1.30   thorpej 
    666   1.30   thorpej 	case PRCO_SETOPT:
    667  1.118    plunky 		switch (sopt->sopt_name) {
    668   1.30   thorpej 		case LOCAL_CREDS:
    669   1.72      matt 		case LOCAL_CONNWAIT:
    670  1.118    plunky 			error = sockopt_getint(sopt, &optval);
    671  1.118    plunky 			if (error)
    672  1.118    plunky 				break;
    673  1.118    plunky 			switch (sopt->sopt_name) {
    674   1.30   thorpej #define	OPTSET(bit) \
    675   1.30   thorpej 	if (optval) \
    676   1.30   thorpej 		unp->unp_flags |= (bit); \
    677   1.30   thorpej 	else \
    678   1.30   thorpej 		unp->unp_flags &= ~(bit);
    679   1.30   thorpej 
    680  1.118    plunky 			case LOCAL_CREDS:
    681  1.118    plunky 				OPTSET(UNP_WANTCRED);
    682  1.118    plunky 				break;
    683  1.118    plunky 			case LOCAL_CONNWAIT:
    684  1.118    plunky 				OPTSET(UNP_CONNWAIT);
    685  1.118    plunky 				break;
    686   1.30   thorpej 			}
    687   1.30   thorpej 			break;
    688   1.30   thorpej #undef OPTSET
    689   1.30   thorpej 
    690   1.30   thorpej 		default:
    691   1.30   thorpej 			error = ENOPROTOOPT;
    692   1.30   thorpej 			break;
    693   1.30   thorpej 		}
    694   1.30   thorpej 		break;
    695   1.30   thorpej 
    696   1.30   thorpej 	case PRCO_GETOPT:
    697  1.112        ad 		sounlock(so);
    698  1.118    plunky 		switch (sopt->sopt_name) {
    699   1.99        he 		case LOCAL_PEEREID:
    700   1.99        he 			if (unp->unp_flags & UNP_EIDSVALID) {
    701  1.118    plunky 				error = sockopt_set(sopt,
    702  1.118    plunky 				    &unp->unp_connid, sizeof(unp->unp_connid));
    703   1.99        he 			} else {
    704   1.99        he 				error = EINVAL;
    705   1.99        he 			}
    706   1.99        he 			break;
    707   1.30   thorpej 		case LOCAL_CREDS:
    708   1.30   thorpej #define	OPTBIT(bit)	(unp->unp_flags & (bit) ? 1 : 0)
    709   1.30   thorpej 
    710   1.99        he 			optval = OPTBIT(UNP_WANTCRED);
    711  1.118    plunky 			error = sockopt_setint(sopt, optval);
    712   1.30   thorpej 			break;
    713   1.30   thorpej #undef OPTBIT
    714   1.30   thorpej 
    715   1.30   thorpej 		default:
    716   1.30   thorpej 			error = ENOPROTOOPT;
    717   1.30   thorpej 			break;
    718   1.30   thorpej 		}
    719  1.112        ad 		solock(so);
    720   1.30   thorpej 		break;
    721   1.30   thorpej 	}
    722   1.30   thorpej 	return (error);
    723   1.30   thorpej }
    724   1.30   thorpej 
    725   1.30   thorpej /*
    726    1.1       cgd  * Both send and receive buffers are allocated PIPSIZ bytes of buffering
    727    1.1       cgd  * for stream sockets, although the total for sender and receiver is
    728    1.1       cgd  * actually only PIPSIZ.
    729    1.1       cgd  * Datagram sockets really use the sendspace as the maximum datagram size,
    730    1.1       cgd  * and don't really want to reserve the sendspace.  Their recvspace should
    731    1.1       cgd  * be large enough for at least one max-size datagram plus address.
    732    1.1       cgd  */
    733    1.1       cgd #define	PIPSIZ	4096
    734    1.1       cgd u_long	unpst_sendspace = PIPSIZ;
    735    1.1       cgd u_long	unpst_recvspace = PIPSIZ;
    736    1.1       cgd u_long	unpdg_sendspace = 2*1024;	/* really max datagram size */
    737    1.1       cgd u_long	unpdg_recvspace = 4*1024;
    738    1.1       cgd 
    739  1.121       mrg u_int	unp_rights;			/* files in flight */
    740  1.121       mrg u_int	unp_rights_ratio = 2;		/* limit, fraction of maxfiles */
    741    1.1       cgd 
    742  1.152     rmind static int
    743  1.152     rmind unp_attach(struct socket *so, int proto)
    744    1.1       cgd {
    745  1.152     rmind 	struct unpcb *unp = sotounpcb(so);
    746  1.152     rmind 	u_long sndspc, rcvspc;
    747    1.1       cgd 	int error;
    748   1.80     perry 
    749  1.152     rmind 	KASSERT(unp == NULL);
    750  1.152     rmind 
    751  1.112        ad 	switch (so->so_type) {
    752  1.152     rmind 	case SOCK_SEQPACKET:
    753  1.152     rmind 		/* FALLTHROUGH */
    754  1.112        ad 	case SOCK_STREAM:
    755  1.112        ad 		if (so->so_lock == NULL) {
    756  1.112        ad 			so->so_lock = mutex_obj_alloc(MUTEX_DEFAULT, IPL_NONE);
    757  1.112        ad 			solock(so);
    758  1.112        ad 		}
    759  1.152     rmind 		sndspc = unpst_sendspace;
    760  1.152     rmind 		rcvspc = unpst_recvspace;
    761  1.112        ad 		break;
    762    1.1       cgd 
    763  1.112        ad 	case SOCK_DGRAM:
    764  1.112        ad 		if (so->so_lock == NULL) {
    765  1.112        ad 			mutex_obj_hold(uipc_lock);
    766  1.112        ad 			so->so_lock = uipc_lock;
    767  1.112        ad 			solock(so);
    768  1.112        ad 		}
    769  1.152     rmind 		sndspc = unpdg_sendspace;
    770  1.152     rmind 		rcvspc = unpdg_recvspace;
    771  1.112        ad 		break;
    772    1.8   mycroft 
    773  1.112        ad 	default:
    774  1.112        ad 		panic("unp_attach");
    775    1.1       cgd 	}
    776  1.152     rmind 
    777  1.152     rmind 	if (so->so_snd.sb_hiwat == 0 || so->so_rcv.sb_hiwat == 0) {
    778  1.152     rmind 		error = soreserve(so, sndspc, rcvspc);
    779  1.152     rmind 		if (error) {
    780  1.152     rmind 			return error;
    781  1.152     rmind 		}
    782  1.152     rmind 	}
    783  1.152     rmind 
    784  1.152     rmind 	unp = kmem_zalloc(sizeof(*unp), KM_SLEEP);
    785  1.152     rmind 	nanotime(&unp->unp_ctime);
    786   1.14   mycroft 	unp->unp_socket = so;
    787   1.15   mycroft 	so->so_pcb = unp;
    788  1.152     rmind 
    789  1.152     rmind 	KASSERT(solocked(so));
    790  1.152     rmind 	return 0;
    791    1.1       cgd }
    792    1.1       cgd 
    793  1.152     rmind static void
    794  1.152     rmind unp_detach(struct socket *so)
    795    1.1       cgd {
    796  1.152     rmind 	struct unpcb *unp;
    797  1.112        ad 	vnode_t *vp;
    798  1.112        ad 
    799  1.152     rmind 	unp = sotounpcb(so);
    800  1.152     rmind 	KASSERT(unp != NULL);
    801  1.152     rmind 	KASSERT(solocked(so));
    802  1.112        ad  retry:
    803  1.112        ad 	if ((vp = unp->unp_vnode) != NULL) {
    804  1.112        ad 		sounlock(so);
    805  1.112        ad 		/* Acquire v_interlock to protect against unp_connect(). */
    806  1.113        ad 		/* XXXAD racy */
    807  1.135     rmind 		mutex_enter(vp->v_interlock);
    808  1.112        ad 		vp->v_socket = NULL;
    809  1.148   hannken 		mutex_exit(vp->v_interlock);
    810  1.148   hannken 		vrele(vp);
    811  1.112        ad 		solock(so);
    812  1.112        ad 		unp->unp_vnode = NULL;
    813    1.1       cgd 	}
    814    1.1       cgd 	if (unp->unp_conn)
    815    1.1       cgd 		unp_disconnect(unp);
    816  1.112        ad 	while (unp->unp_refs) {
    817  1.112        ad 		KASSERT(solocked2(so, unp->unp_refs->unp_socket));
    818  1.112        ad 		if (unp_drop(unp->unp_refs, ECONNRESET)) {
    819  1.112        ad 			solock(so);
    820  1.112        ad 			goto retry;
    821  1.112        ad 		}
    822  1.112        ad 	}
    823  1.112        ad 	soisdisconnected(so);
    824  1.112        ad 	so->so_pcb = NULL;
    825    1.8   mycroft 	if (unp_rights) {
    826    1.8   mycroft 		/*
    827  1.121       mrg 		 * Normally the receive buffer is flushed later, in sofree,
    828  1.121       mrg 		 * but if our receive buffer holds references to files that
    829  1.121       mrg 		 * are now garbage, we will enqueue those file references to
    830  1.121       mrg 		 * the garbage collector and kick it into action.
    831    1.8   mycroft 		 */
    832  1.112        ad 		sorflush(so);
    833  1.112        ad 		unp_free(unp);
    834  1.121       mrg 		unp_thread_kick();
    835   1.14   mycroft 	} else
    836  1.112        ad 		unp_free(unp);
    837    1.1       cgd }
    838    1.1       cgd 
    839  1.154       rtr static int
    840  1.155       rtr unp_ioctl(struct socket *so, u_long cmd, void *nam, struct ifnet *ifp)
    841  1.154       rtr {
    842  1.154       rtr 	return EOPNOTSUPP;
    843  1.154       rtr }
    844  1.154       rtr 
    845  1.156       rtr static int
    846  1.156       rtr unp_stat(struct socket *so, struct stat *ub)
    847  1.156       rtr {
    848  1.156       rtr 	struct unpcb *unp;
    849  1.156       rtr 	struct socket *so2;
    850  1.156       rtr 
    851  1.157       rtr 	KASSERT(solocked(so));
    852  1.157       rtr 
    853  1.156       rtr 	unp = sotounpcb(so);
    854  1.156       rtr 	if (unp == NULL)
    855  1.156       rtr 		return EINVAL;
    856  1.156       rtr 
    857  1.156       rtr 	ub->st_blksize = so->so_snd.sb_hiwat;
    858  1.156       rtr 	switch (so->so_type) {
    859  1.156       rtr 	case SOCK_SEQPACKET: /* FALLTHROUGH */
    860  1.156       rtr 	case SOCK_STREAM:
    861  1.156       rtr 		if (unp->unp_conn == 0)
    862  1.156       rtr 			break;
    863  1.156       rtr 
    864  1.156       rtr 		so2 = unp->unp_conn->unp_socket;
    865  1.156       rtr 		KASSERT(solocked2(so, so2));
    866  1.156       rtr 		ub->st_blksize += so2->so_rcv.sb_cc;
    867  1.156       rtr 		break;
    868  1.156       rtr 	default:
    869  1.156       rtr 		break;
    870  1.156       rtr 	}
    871  1.156       rtr 	ub->st_dev = NODEV;
    872  1.156       rtr 	if (unp->unp_ino == 0)
    873  1.156       rtr 		unp->unp_ino = unp_ino++;
    874  1.156       rtr 	ub->st_atimespec = ub->st_mtimespec = ub->st_ctimespec = unp->unp_ctime;
    875  1.156       rtr 	ub->st_ino = unp->unp_ino;
    876  1.156       rtr 	return (0);
    877  1.156       rtr }
    878  1.156       rtr 
    879  1.158       rtr static int
    880  1.158       rtr unp_peeraddr(struct socket *so, struct mbuf *nam)
    881  1.158       rtr {
    882  1.158       rtr 	KASSERT(solocked(so));
    883  1.158       rtr 	KASSERT(sotounpcb(so) != NULL);
    884  1.158       rtr 	KASSERT(nam != NULL);
    885  1.158       rtr 
    886  1.158       rtr 	unp_setaddr(so, nam, true);
    887  1.158       rtr 	return 0;
    888  1.158       rtr }
    889  1.158       rtr 
    890  1.158       rtr static int
    891  1.158       rtr unp_sockaddr(struct socket *so, struct mbuf *nam)
    892  1.158       rtr {
    893  1.158       rtr 	KASSERT(solocked(so));
    894  1.158       rtr 	KASSERT(sotounpcb(so) != NULL);
    895  1.158       rtr 	KASSERT(nam != NULL);
    896  1.158       rtr 
    897  1.158       rtr 	unp_setaddr(so, nam, false);
    898  1.158       rtr 	return 0;
    899  1.158       rtr }
    900  1.158       rtr 
    901  1.146  christos /*
    902  1.146  christos  * Allocate the new sockaddr.  We have to allocate one
    903  1.146  christos  * extra byte so that we can ensure that the pathname
    904  1.146  christos  * is nul-terminated. Note that unlike linux, we don't
    905  1.146  christos  * include in the address length the NUL in the path
    906  1.146  christos  * component, because doing so, would exceed sizeof(sockaddr_un)
    907  1.146  christos  * for fully occupied pathnames. Linux is also inconsistent,
    908  1.146  christos  * because it does not include the NUL in the length of
    909  1.146  christos  * what it calls "abstract" unix sockets.
    910  1.146  christos  */
    911  1.146  christos static struct sockaddr_un *
    912  1.146  christos makeun(struct mbuf *nam, size_t *addrlen) {
    913  1.146  christos 	struct sockaddr_un *sun;
    914  1.146  christos 
    915  1.146  christos 	*addrlen = nam->m_len + 1;
    916  1.146  christos 	sun = malloc(*addrlen, M_SONAME, M_WAITOK);
    917  1.146  christos 	m_copydata(nam, 0, nam->m_len, (void *)sun);
    918  1.146  christos 	*(((char *)sun) + nam->m_len) = '\0';
    919  1.146  christos 	sun->sun_len = strlen(sun->sun_path) +
    920  1.146  christos 	    offsetof(struct sockaddr_un, sun_path);
    921  1.146  christos 	return sun;
    922  1.146  christos }
    923  1.146  christos 
    924    1.5    andrew int
    925  1.112        ad unp_bind(struct socket *so, struct mbuf *nam, struct lwp *l)
    926    1.1       cgd {
    927   1.27   thorpej 	struct sockaddr_un *sun;
    928  1.112        ad 	struct unpcb *unp;
    929  1.106        ad 	vnode_t *vp;
    930    1.1       cgd 	struct vattr vattr;
    931   1.27   thorpej 	size_t addrlen;
    932    1.1       cgd 	int error;
    933  1.133  dholland 	struct pathbuf *pb;
    934    1.1       cgd 	struct nameidata nd;
    935  1.112        ad 	proc_t *p;
    936    1.1       cgd 
    937  1.112        ad 	unp = sotounpcb(so);
    938  1.112        ad 	if (unp->unp_vnode != NULL)
    939   1.20   mycroft 		return (EINVAL);
    940  1.109        ad 	if ((unp->unp_flags & UNP_BUSY) != 0) {
    941  1.109        ad 		/*
    942  1.109        ad 		 * EALREADY may not be strictly accurate, but since this
    943  1.109        ad 		 * is a major application error it's hardly a big deal.
    944  1.109        ad 		 */
    945  1.109        ad 		return (EALREADY);
    946  1.109        ad 	}
    947  1.109        ad 	unp->unp_flags |= UNP_BUSY;
    948  1.112        ad 	sounlock(so);
    949  1.109        ad 
    950  1.112        ad 	p = l->l_proc;
    951  1.146  christos 	sun = makeun(nam, &addrlen);
    952   1.27   thorpej 
    953  1.133  dholland 	pb = pathbuf_create(sun->sun_path);
    954  1.133  dholland 	if (pb == NULL) {
    955  1.133  dholland 		error = ENOMEM;
    956  1.133  dholland 		goto bad;
    957  1.133  dholland 	}
    958  1.133  dholland 	NDINIT(&nd, CREATE, FOLLOW | LOCKPARENT | TRYEMULROOT, pb);
    959   1.27   thorpej 
    960    1.1       cgd /* SHOULD BE ABLE TO ADOPT EXISTING AND wakeup() ALA FIFO's */
    961  1.133  dholland 	if ((error = namei(&nd)) != 0) {
    962  1.133  dholland 		pathbuf_destroy(pb);
    963   1.27   thorpej 		goto bad;
    964  1.133  dholland 	}
    965    1.9   mycroft 	vp = nd.ni_vp;
    966   1.96   hannken 	if (vp != NULL) {
    967    1.9   mycroft 		VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
    968    1.9   mycroft 		if (nd.ni_dvp == vp)
    969    1.9   mycroft 			vrele(nd.ni_dvp);
    970    1.1       cgd 		else
    971    1.9   mycroft 			vput(nd.ni_dvp);
    972    1.1       cgd 		vrele(vp);
    973  1.133  dholland 		pathbuf_destroy(pb);
    974   1.96   hannken 		error = EADDRINUSE;
    975   1.96   hannken 		goto bad;
    976    1.1       cgd 	}
    977  1.128     pooka 	vattr_null(&vattr);
    978    1.1       cgd 	vattr.va_type = VSOCK;
    979   1.84      jmmv 	vattr.va_mode = ACCESSPERMS & ~(p->p_cwdi->cwdi_cmask);
    980   1.16  christos 	error = VOP_CREATE(nd.ni_dvp, &nd.ni_vp, &nd.ni_cnd, &vattr);
    981  1.133  dholland 	if (error) {
    982  1.149   hannken 		vput(nd.ni_dvp);
    983  1.133  dholland 		pathbuf_destroy(pb);
    984   1.27   thorpej 		goto bad;
    985  1.133  dholland 	}
    986    1.9   mycroft 	vp = nd.ni_vp;
    987  1.150   hannken 	vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
    988  1.112        ad 	solock(so);
    989    1.1       cgd 	vp->v_socket = unp->unp_socket;
    990    1.1       cgd 	unp->unp_vnode = vp;
    991   1.27   thorpej 	unp->unp_addrlen = addrlen;
    992   1.27   thorpej 	unp->unp_addr = sun;
    993   1.99        he 	unp->unp_connid.unp_pid = p->p_pid;
    994  1.112        ad 	unp->unp_connid.unp_euid = kauth_cred_geteuid(l->l_cred);
    995  1.112        ad 	unp->unp_connid.unp_egid = kauth_cred_getegid(l->l_cred);
    996   1.99        he 	unp->unp_flags |= UNP_EIDSBIND;
    997  1.130   hannken 	VOP_UNLOCK(vp);
    998  1.149   hannken 	vput(nd.ni_dvp);
    999  1.109        ad 	unp->unp_flags &= ~UNP_BUSY;
   1000  1.133  dholland 	pathbuf_destroy(pb);
   1001    1.1       cgd 	return (0);
   1002   1.27   thorpej 
   1003   1.27   thorpej  bad:
   1004   1.27   thorpej 	free(sun, M_SONAME);
   1005  1.112        ad 	solock(so);
   1006  1.109        ad 	unp->unp_flags &= ~UNP_BUSY;
   1007   1.27   thorpej 	return (error);
   1008    1.1       cgd }
   1009    1.1       cgd 
   1010    1.5    andrew int
   1011   1.86  christos unp_connect(struct socket *so, struct mbuf *nam, struct lwp *l)
   1012    1.1       cgd {
   1013   1.46  augustss 	struct sockaddr_un *sun;
   1014  1.106        ad 	vnode_t *vp;
   1015   1.46  augustss 	struct socket *so2, *so3;
   1016   1.99        he 	struct unpcb *unp, *unp2, *unp3;
   1017   1.27   thorpej 	size_t addrlen;
   1018    1.1       cgd 	int error;
   1019  1.133  dholland 	struct pathbuf *pb;
   1020    1.1       cgd 	struct nameidata nd;
   1021    1.1       cgd 
   1022  1.109        ad 	unp = sotounpcb(so);
   1023  1.109        ad 	if ((unp->unp_flags & UNP_BUSY) != 0) {
   1024  1.109        ad 		/*
   1025  1.109        ad 		 * EALREADY may not be strictly accurate, but since this
   1026  1.109        ad 		 * is a major application error it's hardly a big deal.
   1027  1.109        ad 		 */
   1028  1.109        ad 		return (EALREADY);
   1029  1.109        ad 	}
   1030  1.109        ad 	unp->unp_flags |= UNP_BUSY;
   1031  1.112        ad 	sounlock(so);
   1032  1.109        ad 
   1033  1.146  christos 	sun = makeun(nam, &addrlen);
   1034  1.133  dholland 	pb = pathbuf_create(sun->sun_path);
   1035  1.133  dholland 	if (pb == NULL) {
   1036  1.133  dholland 		error = ENOMEM;
   1037  1.133  dholland 		goto bad2;
   1038  1.133  dholland 	}
   1039   1.27   thorpej 
   1040  1.133  dholland 	NDINIT(&nd, LOOKUP, FOLLOW | LOCKLEAF | TRYEMULROOT, pb);
   1041  1.133  dholland 
   1042  1.133  dholland 	if ((error = namei(&nd)) != 0) {
   1043  1.133  dholland 		pathbuf_destroy(pb);
   1044   1.27   thorpej 		goto bad2;
   1045  1.133  dholland 	}
   1046    1.9   mycroft 	vp = nd.ni_vp;
   1047    1.1       cgd 	if (vp->v_type != VSOCK) {
   1048    1.1       cgd 		error = ENOTSOCK;
   1049    1.1       cgd 		goto bad;
   1050    1.1       cgd 	}
   1051  1.133  dholland 	pathbuf_destroy(pb);
   1052  1.102     pooka 	if ((error = VOP_ACCESS(vp, VWRITE, l->l_cred)) != 0)
   1053    1.1       cgd 		goto bad;
   1054  1.112        ad 	/* Acquire v_interlock to protect against unp_detach(). */
   1055  1.135     rmind 	mutex_enter(vp->v_interlock);
   1056    1.1       cgd 	so2 = vp->v_socket;
   1057  1.112        ad 	if (so2 == NULL) {
   1058  1.135     rmind 		mutex_exit(vp->v_interlock);
   1059    1.1       cgd 		error = ECONNREFUSED;
   1060    1.1       cgd 		goto bad;
   1061    1.1       cgd 	}
   1062    1.1       cgd 	if (so->so_type != so2->so_type) {
   1063  1.135     rmind 		mutex_exit(vp->v_interlock);
   1064    1.1       cgd 		error = EPROTOTYPE;
   1065    1.1       cgd 		goto bad;
   1066    1.1       cgd 	}
   1067  1.112        ad 	solock(so);
   1068  1.112        ad 	unp_resetlock(so);
   1069  1.135     rmind 	mutex_exit(vp->v_interlock);
   1070  1.112        ad 	if ((so->so_proto->pr_flags & PR_CONNREQUIRED) != 0) {
   1071  1.112        ad 		/*
   1072  1.112        ad 		 * This may seem somewhat fragile but is OK: if we can
   1073  1.112        ad 		 * see SO_ACCEPTCONN set on the endpoint, then it must
   1074  1.112        ad 		 * be locked by the domain-wide uipc_lock.
   1075  1.112        ad 		 */
   1076  1.132      yamt 		KASSERT((so2->so_options & SO_ACCEPTCONN) == 0 ||
   1077  1.112        ad 		    so2->so_lock == uipc_lock);
   1078    1.1       cgd 		if ((so2->so_options & SO_ACCEPTCONN) == 0 ||
   1079  1.144     rmind 		    (so3 = sonewconn(so2, false)) == NULL) {
   1080    1.1       cgd 			error = ECONNREFUSED;
   1081  1.112        ad 			sounlock(so);
   1082    1.1       cgd 			goto bad;
   1083    1.1       cgd 		}
   1084    1.1       cgd 		unp2 = sotounpcb(so2);
   1085    1.1       cgd 		unp3 = sotounpcb(so3);
   1086   1.26   thorpej 		if (unp2->unp_addr) {
   1087   1.26   thorpej 			unp3->unp_addr = malloc(unp2->unp_addrlen,
   1088   1.26   thorpej 			    M_SONAME, M_WAITOK);
   1089   1.36     perry 			memcpy(unp3->unp_addr, unp2->unp_addr,
   1090   1.26   thorpej 			    unp2->unp_addrlen);
   1091   1.26   thorpej 			unp3->unp_addrlen = unp2->unp_addrlen;
   1092   1.26   thorpej 		}
   1093   1.30   thorpej 		unp3->unp_flags = unp2->unp_flags;
   1094  1.112        ad 		unp3->unp_connid.unp_pid = l->l_proc->p_pid;
   1095  1.112        ad 		unp3->unp_connid.unp_euid = kauth_cred_geteuid(l->l_cred);
   1096  1.112        ad 		unp3->unp_connid.unp_egid = kauth_cred_getegid(l->l_cred);
   1097   1.99        he 		unp3->unp_flags |= UNP_EIDSVALID;
   1098   1.99        he 		if (unp2->unp_flags & UNP_EIDSBIND) {
   1099   1.99        he 			unp->unp_connid = unp2->unp_connid;
   1100   1.99        he 			unp->unp_flags |= UNP_EIDSVALID;
   1101   1.99        he 		}
   1102  1.112        ad 		so2 = so3;
   1103   1.33   thorpej 	}
   1104   1.72      matt 	error = unp_connect2(so, so2, PRU_CONNECT);
   1105  1.112        ad 	sounlock(so);
   1106   1.27   thorpej  bad:
   1107    1.1       cgd 	vput(vp);
   1108   1.27   thorpej  bad2:
   1109   1.27   thorpej 	free(sun, M_SONAME);
   1110  1.112        ad 	solock(so);
   1111  1.109        ad 	unp->unp_flags &= ~UNP_BUSY;
   1112    1.1       cgd 	return (error);
   1113    1.1       cgd }
   1114    1.1       cgd 
   1115    1.5    andrew int
   1116   1.76      matt unp_connect2(struct socket *so, struct socket *so2, int req)
   1117    1.1       cgd {
   1118   1.46  augustss 	struct unpcb *unp = sotounpcb(so);
   1119   1.46  augustss 	struct unpcb *unp2;
   1120    1.1       cgd 
   1121    1.1       cgd 	if (so2->so_type != so->so_type)
   1122    1.1       cgd 		return (EPROTOTYPE);
   1123  1.112        ad 
   1124  1.112        ad 	/*
   1125  1.112        ad 	 * All three sockets involved must be locked by same lock:
   1126  1.112        ad 	 *
   1127  1.112        ad 	 * local endpoint (so)
   1128  1.112        ad 	 * remote endpoint (so2)
   1129  1.131      yamt 	 * queue head (so2->so_head, only if PR_CONNREQUIRED)
   1130  1.112        ad 	 */
   1131  1.112        ad 	KASSERT(solocked2(so, so2));
   1132  1.125      yamt 	KASSERT(so->so_head == NULL);
   1133  1.125      yamt 	if (so2->so_head != NULL) {
   1134  1.125      yamt 		KASSERT(so2->so_lock == uipc_lock);
   1135  1.125      yamt 		KASSERT(solocked2(so2, so2->so_head));
   1136  1.112        ad 	}
   1137  1.112        ad 
   1138    1.1       cgd 	unp2 = sotounpcb(so2);
   1139    1.1       cgd 	unp->unp_conn = unp2;
   1140    1.1       cgd 	switch (so->so_type) {
   1141    1.1       cgd 
   1142    1.1       cgd 	case SOCK_DGRAM:
   1143    1.1       cgd 		unp->unp_nextref = unp2->unp_refs;
   1144    1.1       cgd 		unp2->unp_refs = unp;
   1145    1.1       cgd 		soisconnected(so);
   1146    1.1       cgd 		break;
   1147    1.1       cgd 
   1148  1.134      manu 	case SOCK_SEQPACKET: /* FALLTHROUGH */
   1149    1.1       cgd 	case SOCK_STREAM:
   1150    1.1       cgd 		unp2->unp_conn = unp;
   1151   1.72      matt 		if (req == PRU_CONNECT &&
   1152   1.72      matt 		    ((unp->unp_flags | unp2->unp_flags) & UNP_CONNWAIT))
   1153   1.72      matt 			soisconnecting(so);
   1154   1.72      matt 		else
   1155   1.72      matt 			soisconnected(so);
   1156    1.1       cgd 		soisconnected(so2);
   1157  1.112        ad 		/*
   1158  1.112        ad 		 * If the connection is fully established, break the
   1159  1.112        ad 		 * association with uipc_lock and give the connected
   1160  1.112        ad 		 * pair a seperate lock to share.  For CONNECT2, we
   1161  1.112        ad 		 * require that the locks already match (the sockets
   1162  1.112        ad 		 * are created that way).
   1163  1.112        ad 		 */
   1164  1.125      yamt 		if (req == PRU_CONNECT) {
   1165  1.125      yamt 			KASSERT(so2->so_head != NULL);
   1166  1.112        ad 			unp_setpeerlocks(so, so2);
   1167  1.125      yamt 		}
   1168    1.1       cgd 		break;
   1169    1.1       cgd 
   1170    1.1       cgd 	default:
   1171    1.1       cgd 		panic("unp_connect2");
   1172    1.1       cgd 	}
   1173    1.1       cgd 	return (0);
   1174    1.1       cgd }
   1175    1.1       cgd 
   1176    1.5    andrew void
   1177   1.76      matt unp_disconnect(struct unpcb *unp)
   1178    1.1       cgd {
   1179   1.46  augustss 	struct unpcb *unp2 = unp->unp_conn;
   1180  1.112        ad 	struct socket *so;
   1181    1.1       cgd 
   1182    1.1       cgd 	if (unp2 == 0)
   1183    1.1       cgd 		return;
   1184    1.1       cgd 	unp->unp_conn = 0;
   1185  1.112        ad 	so = unp->unp_socket;
   1186  1.112        ad 	switch (so->so_type) {
   1187    1.1       cgd 	case SOCK_DGRAM:
   1188    1.1       cgd 		if (unp2->unp_refs == unp)
   1189    1.1       cgd 			unp2->unp_refs = unp->unp_nextref;
   1190    1.1       cgd 		else {
   1191    1.1       cgd 			unp2 = unp2->unp_refs;
   1192    1.1       cgd 			for (;;) {
   1193  1.112        ad 				KASSERT(solocked2(so, unp2->unp_socket));
   1194    1.1       cgd 				if (unp2 == 0)
   1195    1.1       cgd 					panic("unp_disconnect");
   1196    1.1       cgd 				if (unp2->unp_nextref == unp)
   1197    1.1       cgd 					break;
   1198    1.1       cgd 				unp2 = unp2->unp_nextref;
   1199    1.1       cgd 			}
   1200    1.1       cgd 			unp2->unp_nextref = unp->unp_nextref;
   1201    1.1       cgd 		}
   1202    1.1       cgd 		unp->unp_nextref = 0;
   1203  1.112        ad 		so->so_state &= ~SS_ISCONNECTED;
   1204    1.1       cgd 		break;
   1205    1.1       cgd 
   1206  1.134      manu 	case SOCK_SEQPACKET: /* FALLTHROUGH */
   1207    1.1       cgd 	case SOCK_STREAM:
   1208  1.112        ad 		KASSERT(solocked2(so, unp2->unp_socket));
   1209  1.112        ad 		soisdisconnected(so);
   1210    1.1       cgd 		unp2->unp_conn = 0;
   1211    1.1       cgd 		soisdisconnected(unp2->unp_socket);
   1212    1.1       cgd 		break;
   1213    1.1       cgd 	}
   1214    1.1       cgd }
   1215    1.1       cgd 
   1216    1.5    andrew void
   1217   1.76      matt unp_shutdown(struct unpcb *unp)
   1218    1.1       cgd {
   1219    1.1       cgd 	struct socket *so;
   1220    1.1       cgd 
   1221  1.134      manu 	switch(unp->unp_socket->so_type) {
   1222  1.134      manu 	case SOCK_SEQPACKET: /* FALLTHROUGH */
   1223  1.134      manu 	case SOCK_STREAM:
   1224  1.134      manu 		if (unp->unp_conn && (so = unp->unp_conn->unp_socket))
   1225  1.134      manu 			socantrcvmore(so);
   1226  1.134      manu 		break;
   1227  1.134      manu 	default:
   1228  1.134      manu 		break;
   1229  1.134      manu 	}
   1230    1.1       cgd }
   1231    1.1       cgd 
   1232  1.112        ad bool
   1233   1.76      matt unp_drop(struct unpcb *unp, int errno)
   1234    1.1       cgd {
   1235    1.1       cgd 	struct socket *so = unp->unp_socket;
   1236    1.1       cgd 
   1237  1.112        ad 	KASSERT(solocked(so));
   1238  1.112        ad 
   1239    1.1       cgd 	so->so_error = errno;
   1240    1.1       cgd 	unp_disconnect(unp);
   1241    1.1       cgd 	if (so->so_head) {
   1242  1.112        ad 		so->so_pcb = NULL;
   1243  1.112        ad 		/* sofree() drops the socket lock */
   1244   1.14   mycroft 		sofree(so);
   1245  1.112        ad 		unp_free(unp);
   1246  1.112        ad 		return true;
   1247    1.1       cgd 	}
   1248  1.112        ad 	return false;
   1249    1.1       cgd }
   1250    1.1       cgd 
   1251    1.1       cgd #ifdef notdef
   1252   1.76      matt unp_drain(void)
   1253    1.1       cgd {
   1254    1.1       cgd 
   1255    1.1       cgd }
   1256    1.1       cgd #endif
   1257    1.1       cgd 
   1258    1.5    andrew int
   1259  1.136  christos unp_externalize(struct mbuf *rights, struct lwp *l, int flags)
   1260    1.1       cgd {
   1261  1.138  christos 	struct cmsghdr * const cm = mtod(rights, struct cmsghdr *);
   1262  1.138  christos 	struct proc * const p = l->l_proc;
   1263  1.106        ad 	file_t **rp;
   1264  1.138  christos 	int error = 0;
   1265   1.47   thorpej 
   1266  1.138  christos 	const size_t nfds = (cm->cmsg_len - CMSG_ALIGN(sizeof(*cm))) /
   1267  1.106        ad 	    sizeof(file_t *);
   1268  1.143  drochner 	if (nfds == 0)
   1269  1.143  drochner 		goto noop;
   1270    1.1       cgd 
   1271  1.138  christos 	int * const fdp = kmem_alloc(nfds * sizeof(int), KM_SLEEP);
   1272  1.101        ad 	rw_enter(&p->p_cwdi->cwdi_lock, RW_READER);
   1273   1.50   thorpej 
   1274  1.121       mrg 	/* Make sure the recipient should be able to see the files.. */
   1275  1.140  christos 	rp = (file_t **)CMSG_DATA(cm);
   1276  1.140  christos 	for (size_t i = 0; i < nfds; i++) {
   1277  1.140  christos 		file_t * const fp = *rp++;
   1278  1.140  christos 		if (fp == NULL) {
   1279  1.140  christos 			error = EINVAL;
   1280  1.140  christos 			goto out;
   1281  1.140  christos 		}
   1282  1.140  christos 		/*
   1283  1.140  christos 		 * If we are in a chroot'ed directory, and
   1284  1.140  christos 		 * someone wants to pass us a directory, make
   1285  1.140  christos 		 * sure it's inside the subtree we're allowed
   1286  1.140  christos 		 * to access.
   1287  1.140  christos 		 */
   1288  1.140  christos 		if (p->p_cwdi->cwdi_rdir != NULL && fp->f_type == DTYPE_VNODE) {
   1289  1.140  christos 			vnode_t *vp = (vnode_t *)fp->f_data;
   1290  1.140  christos 			if ((vp->v_type == VDIR) &&
   1291  1.140  christos 			    !vn_isunder(vp, p->p_cwdi->cwdi_rdir, l)) {
   1292  1.140  christos 				error = EPERM;
   1293  1.140  christos 				goto out;
   1294   1.39  sommerfe 			}
   1295   1.39  sommerfe 		}
   1296   1.39  sommerfe 	}
   1297   1.50   thorpej 
   1298   1.50   thorpej  restart:
   1299   1.24       cgd 	/*
   1300   1.50   thorpej 	 * First loop -- allocate file descriptor table slots for the
   1301  1.121       mrg 	 * new files.
   1302   1.24       cgd 	 */
   1303  1.138  christos 	for (size_t i = 0; i < nfds; i++) {
   1304  1.106        ad 		if ((error = fd_alloc(p, 0, &fdp[i])) != 0) {
   1305   1.49   thorpej 			/*
   1306   1.50   thorpej 			 * Back out what we've done so far.
   1307   1.49   thorpej 			 */
   1308  1.138  christos 			while (i-- > 0) {
   1309  1.106        ad 				fd_abort(p, NULL, fdp[i]);
   1310  1.106        ad 			}
   1311   1.50   thorpej 			if (error == ENOSPC) {
   1312  1.106        ad 				fd_tryexpand(p);
   1313   1.50   thorpej 				error = 0;
   1314  1.138  christos 				goto restart;
   1315   1.50   thorpej 			}
   1316  1.138  christos 			/*
   1317  1.138  christos 			 * This is the error that has historically
   1318  1.138  christos 			 * been returned, and some callers may
   1319  1.138  christos 			 * expect it.
   1320  1.138  christos 			 */
   1321  1.138  christos 			error = EMSGSIZE;
   1322  1.138  christos 			goto out;
   1323   1.49   thorpej 		}
   1324    1.1       cgd 	}
   1325   1.24       cgd 
   1326   1.24       cgd 	/*
   1327   1.50   thorpej 	 * Now that adding them has succeeded, update all of the
   1328  1.121       mrg 	 * file passing state and affix the descriptors.
   1329  1.112        ad 	 */
   1330  1.106        ad 	rp = (file_t **)CMSG_DATA(cm);
   1331  1.138  christos 	int *ofdp = (int *)CMSG_DATA(cm);
   1332  1.138  christos 	for (size_t i = 0; i < nfds; i++) {
   1333  1.138  christos 		file_t * const fp = *rp++;
   1334  1.138  christos 		const int fd = fdp[i];
   1335  1.106        ad 		atomic_dec_uint(&unp_rights);
   1336  1.136  christos 		fd_set_exclose(l, fd, (flags & O_CLOEXEC) != 0);
   1337  1.136  christos 		fd_affix(p, fp, fd);
   1338  1.138  christos 		/*
   1339  1.138  christos 		 * Done with this file pointer, replace it with a fd;
   1340  1.138  christos 		 */
   1341  1.138  christos 		*ofdp++ = fd;
   1342  1.106        ad 		mutex_enter(&fp->f_lock);
   1343   1.50   thorpej 		fp->f_msgcount--;
   1344  1.106        ad 		mutex_exit(&fp->f_lock);
   1345  1.106        ad 		/*
   1346  1.106        ad 		 * Note that fd_affix() adds a reference to the file.
   1347  1.106        ad 		 * The file may already have been closed by another
   1348  1.106        ad 		 * LWP in the process, so we must drop the reference
   1349  1.106        ad 		 * added by unp_internalize() with closef().
   1350  1.106        ad 		 */
   1351  1.106        ad 		closef(fp);
   1352   1.50   thorpej 	}
   1353   1.50   thorpej 
   1354   1.50   thorpej 	/*
   1355  1.138  christos 	 * Adjust length, in case of transition from large file_t
   1356  1.138  christos 	 * pointers to ints.
   1357   1.50   thorpej 	 */
   1358  1.138  christos 	if (sizeof(file_t *) != sizeof(int)) {
   1359  1.138  christos 		cm->cmsg_len = CMSG_LEN(nfds * sizeof(int));
   1360  1.138  christos 		rights->m_len = CMSG_SPACE(nfds * sizeof(int));
   1361  1.138  christos 	}
   1362   1.50   thorpej  out:
   1363  1.138  christos 	if (__predict_false(error != 0)) {
   1364  1.141  riastrad 		file_t **const fpp = (file_t **)CMSG_DATA(cm);
   1365  1.141  riastrad 		for (size_t i = 0; i < nfds; i++)
   1366  1.141  riastrad 			unp_discard_now(fpp[i]);
   1367  1.141  riastrad 		/*
   1368  1.141  riastrad 		 * Truncate the array so that nobody will try to interpret
   1369  1.141  riastrad 		 * what is now garbage in it.
   1370  1.141  riastrad 		 */
   1371  1.141  riastrad 		cm->cmsg_len = CMSG_LEN(0);
   1372  1.141  riastrad 		rights->m_len = CMSG_SPACE(0);
   1373  1.138  christos 	}
   1374  1.143  drochner 	rw_exit(&p->p_cwdi->cwdi_lock);
   1375  1.143  drochner 	kmem_free(fdp, nfds * sizeof(int));
   1376  1.138  christos 
   1377  1.143  drochner  noop:
   1378  1.141  riastrad 	/*
   1379  1.141  riastrad 	 * Don't disclose kernel memory in the alignment space.
   1380  1.141  riastrad 	 */
   1381  1.141  riastrad 	KASSERT(cm->cmsg_len <= rights->m_len);
   1382  1.141  riastrad 	memset(&mtod(rights, char *)[cm->cmsg_len], 0, rights->m_len -
   1383  1.141  riastrad 	    cm->cmsg_len);
   1384  1.139  christos 	return error;
   1385    1.1       cgd }
   1386    1.1       cgd 
   1387    1.5    andrew int
   1388  1.112        ad unp_internalize(struct mbuf **controlp)
   1389    1.1       cgd {
   1390  1.121       mrg 	filedesc_t *fdescp = curlwp->l_fd;
   1391  1.108      yamt 	struct mbuf *control = *controlp;
   1392   1.73    martin 	struct cmsghdr *newcm, *cm = mtod(control, struct cmsghdr *);
   1393  1.106        ad 	file_t **rp, **files;
   1394  1.106        ad 	file_t *fp;
   1395   1.46  augustss 	int i, fd, *fdp;
   1396  1.106        ad 	int nfds, error;
   1397  1.121       mrg 	u_int maxmsg;
   1398  1.106        ad 
   1399  1.106        ad 	error = 0;
   1400  1.106        ad 	newcm = NULL;
   1401   1.38   thorpej 
   1402  1.106        ad 	/* Sanity check the control message header. */
   1403   1.66  jdolecek 	if (cm->cmsg_type != SCM_RIGHTS || cm->cmsg_level != SOL_SOCKET ||
   1404  1.117  christos 	    cm->cmsg_len > control->m_len ||
   1405  1.117  christos 	    cm->cmsg_len < CMSG_ALIGN(sizeof(*cm)))
   1406    1.1       cgd 		return (EINVAL);
   1407   1.24       cgd 
   1408  1.106        ad 	/*
   1409  1.106        ad 	 * Verify that the file descriptors are valid, and acquire
   1410  1.106        ad 	 * a reference to each.
   1411  1.106        ad 	 */
   1412   1.47   thorpej 	nfds = (cm->cmsg_len - CMSG_ALIGN(sizeof(*cm))) / sizeof(int);
   1413   1.47   thorpej 	fdp = (int *)CMSG_DATA(cm);
   1414  1.121       mrg 	maxmsg = maxfiles / unp_rights_ratio;
   1415   1.24       cgd 	for (i = 0; i < nfds; i++) {
   1416   1.24       cgd 		fd = *fdp++;
   1417  1.121       mrg 		if (atomic_inc_uint_nv(&unp_rights) > maxmsg) {
   1418  1.121       mrg 			atomic_dec_uint(&unp_rights);
   1419  1.121       mrg 			nfds = i;
   1420  1.121       mrg 			error = EAGAIN;
   1421  1.121       mrg 			goto out;
   1422  1.121       mrg 		}
   1423  1.137    martin 		if ((fp = fd_getfile(fd)) == NULL
   1424  1.137    martin 		    || fp->f_type == DTYPE_KQUEUE) {
   1425  1.137    martin 		    	if (fp)
   1426  1.137    martin 		    		fd_putfile(fd);
   1427  1.121       mrg 			atomic_dec_uint(&unp_rights);
   1428  1.120     pooka 			nfds = i;
   1429  1.106        ad 			error = EBADF;
   1430  1.106        ad 			goto out;
   1431  1.101        ad 		}
   1432   1.24       cgd 	}
   1433   1.24       cgd 
   1434  1.106        ad 	/* Allocate new space and copy header into it. */
   1435  1.106        ad 	newcm = malloc(CMSG_SPACE(nfds * sizeof(file_t *)), M_MBUF, M_WAITOK);
   1436  1.106        ad 	if (newcm == NULL) {
   1437  1.106        ad 		error = E2BIG;
   1438  1.106        ad 		goto out;
   1439  1.106        ad 	}
   1440  1.106        ad 	memcpy(newcm, cm, sizeof(struct cmsghdr));
   1441  1.106        ad 	files = (file_t **)CMSG_DATA(newcm);
   1442  1.106        ad 
   1443   1.24       cgd 	/*
   1444  1.106        ad 	 * Transform the file descriptors into file_t pointers, in
   1445   1.24       cgd 	 * reverse order so that if pointers are bigger than ints, the
   1446  1.106        ad 	 * int won't get until we're done.  No need to lock, as we have
   1447  1.106        ad 	 * already validated the descriptors with fd_getfile().
   1448   1.24       cgd 	 */
   1449   1.94    cbiere 	fdp = (int *)CMSG_DATA(cm) + nfds;
   1450   1.94    cbiere 	rp = files + nfds;
   1451   1.24       cgd 	for (i = 0; i < nfds; i++) {
   1452  1.126        ad 		fp = fdescp->fd_dt->dt_ff[*--fdp]->ff_file;
   1453  1.106        ad 		KASSERT(fp != NULL);
   1454  1.106        ad 		mutex_enter(&fp->f_lock);
   1455   1.94    cbiere 		*--rp = fp;
   1456    1.1       cgd 		fp->f_count++;
   1457    1.1       cgd 		fp->f_msgcount++;
   1458  1.106        ad 		mutex_exit(&fp->f_lock);
   1459  1.106        ad 	}
   1460  1.106        ad 
   1461  1.106        ad  out:
   1462  1.106        ad  	/* Release descriptor references. */
   1463  1.106        ad 	fdp = (int *)CMSG_DATA(cm);
   1464  1.106        ad 	for (i = 0; i < nfds; i++) {
   1465  1.106        ad 		fd_putfile(*fdp++);
   1466  1.121       mrg 		if (error != 0) {
   1467  1.121       mrg 			atomic_dec_uint(&unp_rights);
   1468  1.121       mrg 		}
   1469    1.1       cgd 	}
   1470   1.73    martin 
   1471  1.106        ad 	if (error == 0) {
   1472  1.108      yamt 		if (control->m_flags & M_EXT) {
   1473  1.108      yamt 			m_freem(control);
   1474  1.108      yamt 			*controlp = control = m_get(M_WAIT, MT_CONTROL);
   1475  1.108      yamt 		}
   1476  1.106        ad 		MEXTADD(control, newcm, CMSG_SPACE(nfds * sizeof(file_t *)),
   1477   1.73    martin 		    M_MBUF, NULL, NULL);
   1478   1.73    martin 		cm = newcm;
   1479  1.106        ad 		/*
   1480  1.106        ad 		 * Adjust message & mbuf to note amount of space
   1481  1.106        ad 		 * actually used.
   1482  1.106        ad 		 */
   1483  1.106        ad 		cm->cmsg_len = CMSG_LEN(nfds * sizeof(file_t *));
   1484  1.106        ad 		control->m_len = CMSG_SPACE(nfds * sizeof(file_t *));
   1485   1.73    martin 	}
   1486   1.73    martin 
   1487  1.106        ad 	return error;
   1488   1.30   thorpej }
   1489   1.30   thorpej 
   1490   1.30   thorpej struct mbuf *
   1491   1.92        ad unp_addsockcred(struct lwp *l, struct mbuf *control)
   1492   1.30   thorpej {
   1493   1.30   thorpej 	struct sockcred *sc;
   1494  1.142  christos 	struct mbuf *m;
   1495  1.142  christos 	void *p;
   1496   1.30   thorpej 
   1497  1.142  christos 	m = sbcreatecontrol1(&p, SOCKCREDSIZE(kauth_cred_ngroups(l->l_cred)),
   1498  1.142  christos 		SCM_CREDS, SOL_SOCKET, M_WAITOK);
   1499  1.142  christos 	if (m == NULL)
   1500  1.142  christos 		return control;
   1501  1.142  christos 
   1502  1.142  christos 	sc = p;
   1503   1.92        ad 	sc->sc_uid = kauth_cred_getuid(l->l_cred);
   1504   1.92        ad 	sc->sc_euid = kauth_cred_geteuid(l->l_cred);
   1505   1.92        ad 	sc->sc_gid = kauth_cred_getgid(l->l_cred);
   1506   1.92        ad 	sc->sc_egid = kauth_cred_getegid(l->l_cred);
   1507   1.92        ad 	sc->sc_ngroups = kauth_cred_ngroups(l->l_cred);
   1508  1.142  christos 
   1509  1.142  christos 	for (int i = 0; i < sc->sc_ngroups; i++)
   1510   1.92        ad 		sc->sc_groups[i] = kauth_cred_group(l->l_cred, i);
   1511   1.30   thorpej 
   1512  1.142  christos 	return m_add(control, m);
   1513    1.1       cgd }
   1514    1.1       cgd 
   1515   1.39  sommerfe /*
   1516  1.121       mrg  * Do a mark-sweep GC of files in the system, to free up any which are
   1517  1.121       mrg  * caught in flight to an about-to-be-closed socket.  Additionally,
   1518  1.121       mrg  * process deferred file closures.
   1519   1.39  sommerfe  */
   1520  1.121       mrg static void
   1521  1.121       mrg unp_gc(file_t *dp)
   1522    1.1       cgd {
   1523  1.121       mrg 	extern	struct domain unixdomain;
   1524  1.121       mrg 	file_t *fp, *np;
   1525   1.46  augustss 	struct socket *so, *so1;
   1526  1.121       mrg 	u_int i, old, new;
   1527  1.121       mrg 	bool didwork;
   1528    1.1       cgd 
   1529  1.121       mrg 	KASSERT(curlwp == unp_thread_lwp);
   1530  1.121       mrg 	KASSERT(mutex_owned(&filelist_lock));
   1531  1.106        ad 
   1532  1.121       mrg 	/*
   1533  1.121       mrg 	 * First, process deferred file closures.
   1534  1.121       mrg 	 */
   1535  1.121       mrg 	while (!SLIST_EMPTY(&unp_thread_discard)) {
   1536  1.121       mrg 		fp = SLIST_FIRST(&unp_thread_discard);
   1537  1.121       mrg 		KASSERT(fp->f_unpcount > 0);
   1538  1.121       mrg 		KASSERT(fp->f_count > 0);
   1539  1.121       mrg 		KASSERT(fp->f_msgcount > 0);
   1540  1.121       mrg 		KASSERT(fp->f_count >= fp->f_unpcount);
   1541  1.121       mrg 		KASSERT(fp->f_count >= fp->f_msgcount);
   1542  1.121       mrg 		KASSERT(fp->f_msgcount >= fp->f_unpcount);
   1543  1.121       mrg 		SLIST_REMOVE_HEAD(&unp_thread_discard, f_unplist);
   1544  1.121       mrg 		i = fp->f_unpcount;
   1545  1.121       mrg 		fp->f_unpcount = 0;
   1546  1.121       mrg 		mutex_exit(&filelist_lock);
   1547  1.121       mrg 		for (; i != 0; i--) {
   1548  1.121       mrg 			unp_discard_now(fp);
   1549  1.121       mrg 		}
   1550  1.121       mrg 		mutex_enter(&filelist_lock);
   1551  1.121       mrg 	}
   1552   1.39  sommerfe 
   1553  1.121       mrg 	/*
   1554  1.121       mrg 	 * Clear mark bits.  Ensure that we don't consider new files
   1555  1.121       mrg 	 * entering the file table during this loop (they will not have
   1556  1.121       mrg 	 * FSCAN set).
   1557  1.121       mrg 	 */
   1558  1.106        ad 	unp_defer = 0;
   1559  1.106        ad 	LIST_FOREACH(fp, &filehead, f_list) {
   1560  1.121       mrg 		for (old = fp->f_flag;; old = new) {
   1561  1.121       mrg 			new = atomic_cas_uint(&fp->f_flag, old,
   1562  1.121       mrg 			    (old | FSCAN) & ~(FMARK|FDEFER));
   1563  1.121       mrg 			if (__predict_true(old == new)) {
   1564  1.121       mrg 				break;
   1565  1.121       mrg 			}
   1566  1.121       mrg 		}
   1567  1.106        ad 	}
   1568   1.39  sommerfe 
   1569   1.39  sommerfe 	/*
   1570  1.121       mrg 	 * Iterate over the set of sockets, marking ones believed (based on
   1571  1.121       mrg 	 * refcount) to be referenced from a process, and marking for rescan
   1572  1.121       mrg 	 * sockets which are queued on a socket.  Recan continues descending
   1573  1.121       mrg 	 * and searching for sockets referenced by sockets (FDEFER), until
   1574  1.121       mrg 	 * there are no more socket->socket references to be discovered.
   1575   1.39  sommerfe 	 */
   1576    1.1       cgd 	do {
   1577  1.121       mrg 		didwork = false;
   1578  1.121       mrg 		for (fp = LIST_FIRST(&filehead); fp != NULL; fp = np) {
   1579  1.121       mrg 			KASSERT(mutex_owned(&filelist_lock));
   1580  1.121       mrg 			np = LIST_NEXT(fp, f_list);
   1581  1.106        ad 			mutex_enter(&fp->f_lock);
   1582  1.121       mrg 			if ((fp->f_flag & FDEFER) != 0) {
   1583  1.106        ad 				atomic_and_uint(&fp->f_flag, ~FDEFER);
   1584    1.1       cgd 				unp_defer--;
   1585  1.106        ad 				KASSERT(fp->f_count != 0);
   1586    1.1       cgd 			} else {
   1587  1.101        ad 				if (fp->f_count == 0 ||
   1588  1.121       mrg 				    (fp->f_flag & FMARK) != 0 ||
   1589  1.121       mrg 				    fp->f_count == fp->f_msgcount ||
   1590  1.121       mrg 				    fp->f_unpcount != 0) {
   1591  1.106        ad 					mutex_exit(&fp->f_lock);
   1592    1.1       cgd 					continue;
   1593  1.101        ad 				}
   1594    1.1       cgd 			}
   1595  1.106        ad 			atomic_or_uint(&fp->f_flag, FMARK);
   1596   1.39  sommerfe 
   1597    1.1       cgd 			if (fp->f_type != DTYPE_SOCKET ||
   1598  1.112        ad 			    (so = fp->f_data) == NULL ||
   1599  1.101        ad 			    so->so_proto->pr_domain != &unixdomain ||
   1600  1.121       mrg 			    (so->so_proto->pr_flags & PR_RIGHTS) == 0) {
   1601  1.106        ad 				mutex_exit(&fp->f_lock);
   1602    1.1       cgd 				continue;
   1603  1.101        ad 			}
   1604  1.121       mrg 
   1605  1.121       mrg 			/* Gain file ref, mark our position, and unlock. */
   1606  1.121       mrg 			didwork = true;
   1607  1.121       mrg 			LIST_INSERT_AFTER(fp, dp, f_list);
   1608  1.121       mrg 			fp->f_count++;
   1609  1.106        ad 			mutex_exit(&fp->f_lock);
   1610  1.121       mrg 			mutex_exit(&filelist_lock);
   1611  1.101        ad 
   1612  1.112        ad 			/*
   1613  1.121       mrg 			 * Mark files referenced from sockets queued on the
   1614  1.121       mrg 			 * accept queue as well.
   1615  1.112        ad 			 */
   1616  1.112        ad 			solock(so);
   1617   1.39  sommerfe 			unp_scan(so->so_rcv.sb_mb, unp_mark, 0);
   1618  1.121       mrg 			if ((so->so_options & SO_ACCEPTCONN) != 0) {
   1619   1.54      matt 				TAILQ_FOREACH(so1, &so->so_q0, so_qe) {
   1620   1.39  sommerfe 					unp_scan(so1->so_rcv.sb_mb, unp_mark, 0);
   1621   1.39  sommerfe 				}
   1622   1.54      matt 				TAILQ_FOREACH(so1, &so->so_q, so_qe) {
   1623   1.39  sommerfe 					unp_scan(so1->so_rcv.sb_mb, unp_mark, 0);
   1624   1.39  sommerfe 				}
   1625   1.39  sommerfe 			}
   1626  1.112        ad 			sounlock(so);
   1627  1.121       mrg 
   1628  1.121       mrg 			/* Re-lock and restart from where we left off. */
   1629  1.121       mrg 			closef(fp);
   1630  1.121       mrg 			mutex_enter(&filelist_lock);
   1631  1.121       mrg 			np = LIST_NEXT(dp, f_list);
   1632  1.121       mrg 			LIST_REMOVE(dp, f_list);
   1633    1.1       cgd 		}
   1634  1.121       mrg 		/*
   1635  1.121       mrg 		 * Bail early if we did nothing in the loop above.  Could
   1636  1.121       mrg 		 * happen because of concurrent activity causing unp_defer
   1637  1.121       mrg 		 * to get out of sync.
   1638  1.121       mrg 		 */
   1639  1.121       mrg 	} while (unp_defer != 0 && didwork);
   1640  1.101        ad 
   1641    1.8   mycroft 	/*
   1642  1.121       mrg 	 * Sweep pass.
   1643    1.8   mycroft 	 *
   1644  1.121       mrg 	 * We grab an extra reference to each of the files that are
   1645  1.121       mrg 	 * not otherwise accessible and then free the rights that are
   1646  1.121       mrg 	 * stored in messages on them.
   1647    1.8   mycroft 	 */
   1648  1.121       mrg 	for (fp = LIST_FIRST(&filehead); fp != NULL; fp = np) {
   1649  1.121       mrg 		KASSERT(mutex_owned(&filelist_lock));
   1650  1.121       mrg 		np = LIST_NEXT(fp, f_list);
   1651  1.106        ad 		mutex_enter(&fp->f_lock);
   1652  1.121       mrg 
   1653  1.121       mrg 		/*
   1654  1.121       mrg 		 * Ignore non-sockets.
   1655  1.121       mrg 		 * Ignore dead sockets, or sockets with pending close.
   1656  1.121       mrg 		 * Ignore sockets obviously referenced elsewhere.
   1657  1.121       mrg 		 * Ignore sockets marked as referenced by our scan.
   1658  1.121       mrg 		 * Ignore new sockets that did not exist during the scan.
   1659  1.121       mrg 		 */
   1660  1.121       mrg 		if (fp->f_type != DTYPE_SOCKET ||
   1661  1.121       mrg 		    fp->f_count == 0 || fp->f_unpcount != 0 ||
   1662  1.121       mrg 		    fp->f_count != fp->f_msgcount ||
   1663  1.121       mrg 		    (fp->f_flag & (FMARK | FSCAN)) != FSCAN) {
   1664  1.121       mrg 			mutex_exit(&fp->f_lock);
   1665  1.121       mrg 			continue;
   1666    1.8   mycroft 		}
   1667  1.121       mrg 
   1668  1.121       mrg 		/* Gain file ref, mark our position, and unlock. */
   1669  1.121       mrg 		LIST_INSERT_AFTER(fp, dp, f_list);
   1670  1.121       mrg 		fp->f_count++;
   1671  1.106        ad 		mutex_exit(&fp->f_lock);
   1672  1.121       mrg 		mutex_exit(&filelist_lock);
   1673  1.121       mrg 
   1674  1.121       mrg 		/*
   1675  1.121       mrg 		 * Flush all data from the socket's receive buffer.
   1676  1.121       mrg 		 * This will cause files referenced only by the
   1677  1.121       mrg 		 * socket to be queued for close.
   1678  1.121       mrg 		 */
   1679  1.121       mrg 		so = fp->f_data;
   1680  1.121       mrg 		solock(so);
   1681  1.121       mrg 		sorflush(so);
   1682  1.121       mrg 		sounlock(so);
   1683  1.121       mrg 
   1684  1.121       mrg 		/* Re-lock and restart from where we left off. */
   1685  1.121       mrg 		closef(fp);
   1686  1.121       mrg 		mutex_enter(&filelist_lock);
   1687  1.121       mrg 		np = LIST_NEXT(dp, f_list);
   1688  1.121       mrg 		LIST_REMOVE(dp, f_list);
   1689  1.121       mrg 	}
   1690  1.121       mrg }
   1691  1.121       mrg 
   1692  1.121       mrg /*
   1693  1.121       mrg  * Garbage collector thread.  While SCM_RIGHTS messages are in transit,
   1694  1.121       mrg  * wake once per second to garbage collect.  Run continually while we
   1695  1.121       mrg  * have deferred closes to process.
   1696  1.121       mrg  */
   1697  1.121       mrg static void
   1698  1.121       mrg unp_thread(void *cookie)
   1699  1.121       mrg {
   1700  1.121       mrg 	file_t *dp;
   1701  1.121       mrg 
   1702  1.121       mrg 	/* Allocate a dummy file for our scans. */
   1703  1.121       mrg 	if ((dp = fgetdummy()) == NULL) {
   1704  1.121       mrg 		panic("unp_thread");
   1705    1.1       cgd 	}
   1706  1.101        ad 
   1707  1.121       mrg 	mutex_enter(&filelist_lock);
   1708  1.121       mrg 	for (;;) {
   1709  1.121       mrg 		KASSERT(mutex_owned(&filelist_lock));
   1710  1.121       mrg 		if (SLIST_EMPTY(&unp_thread_discard)) {
   1711  1.121       mrg 			if (unp_rights != 0) {
   1712  1.121       mrg 				(void)cv_timedwait(&unp_thread_cv,
   1713  1.121       mrg 				    &filelist_lock, hz);
   1714  1.121       mrg 			} else {
   1715  1.121       mrg 				cv_wait(&unp_thread_cv, &filelist_lock);
   1716  1.121       mrg 			}
   1717  1.112        ad 		}
   1718  1.121       mrg 		unp_gc(dp);
   1719   1.39  sommerfe 	}
   1720  1.121       mrg 	/* NOTREACHED */
   1721  1.121       mrg }
   1722  1.121       mrg 
   1723  1.121       mrg /*
   1724  1.121       mrg  * Kick the garbage collector into action if there is something for
   1725  1.121       mrg  * it to process.
   1726  1.121       mrg  */
   1727  1.121       mrg static void
   1728  1.121       mrg unp_thread_kick(void)
   1729  1.121       mrg {
   1730  1.121       mrg 
   1731  1.121       mrg 	if (!SLIST_EMPTY(&unp_thread_discard) || unp_rights != 0) {
   1732  1.121       mrg 		mutex_enter(&filelist_lock);
   1733  1.121       mrg 		cv_signal(&unp_thread_cv);
   1734  1.121       mrg 		mutex_exit(&filelist_lock);
   1735   1.44   thorpej 	}
   1736    1.1       cgd }
   1737    1.1       cgd 
   1738    1.5    andrew void
   1739   1.76      matt unp_dispose(struct mbuf *m)
   1740    1.1       cgd {
   1741    1.8   mycroft 
   1742    1.1       cgd 	if (m)
   1743  1.121       mrg 		unp_scan(m, unp_discard_later, 1);
   1744    1.1       cgd }
   1745    1.1       cgd 
   1746    1.5    andrew void
   1747  1.106        ad unp_scan(struct mbuf *m0, void (*op)(file_t *), int discard)
   1748    1.1       cgd {
   1749   1.46  augustss 	struct mbuf *m;
   1750  1.121       mrg 	file_t **rp, *fp;
   1751   1.46  augustss 	struct cmsghdr *cm;
   1752  1.121       mrg 	int i, qfds;
   1753    1.1       cgd 
   1754    1.1       cgd 	while (m0) {
   1755   1.48   thorpej 		for (m = m0; m; m = m->m_next) {
   1756  1.121       mrg 			if (m->m_type != MT_CONTROL ||
   1757  1.121       mrg 			    m->m_len < sizeof(*cm)) {
   1758  1.121       mrg 			    	continue;
   1759  1.121       mrg 			}
   1760  1.121       mrg 			cm = mtod(m, struct cmsghdr *);
   1761  1.121       mrg 			if (cm->cmsg_level != SOL_SOCKET ||
   1762  1.121       mrg 			    cm->cmsg_type != SCM_RIGHTS)
   1763  1.121       mrg 				continue;
   1764  1.121       mrg 			qfds = (cm->cmsg_len - CMSG_ALIGN(sizeof(*cm)))
   1765  1.121       mrg 			    / sizeof(file_t *);
   1766  1.121       mrg 			rp = (file_t **)CMSG_DATA(cm);
   1767  1.121       mrg 			for (i = 0; i < qfds; i++) {
   1768  1.121       mrg 				fp = *rp;
   1769  1.121       mrg 				if (discard) {
   1770  1.121       mrg 					*rp = 0;
   1771   1.39  sommerfe 				}
   1772  1.121       mrg 				(*op)(fp);
   1773  1.121       mrg 				rp++;
   1774    1.1       cgd 			}
   1775   1.48   thorpej 		}
   1776   1.52   thorpej 		m0 = m0->m_nextpkt;
   1777    1.1       cgd 	}
   1778    1.1       cgd }
   1779    1.1       cgd 
   1780    1.5    andrew void
   1781  1.106        ad unp_mark(file_t *fp)
   1782    1.1       cgd {
   1783  1.101        ad 
   1784   1.39  sommerfe 	if (fp == NULL)
   1785   1.39  sommerfe 		return;
   1786   1.80     perry 
   1787   1.39  sommerfe 	/* If we're already deferred, don't screw up the defer count */
   1788  1.106        ad 	mutex_enter(&fp->f_lock);
   1789  1.101        ad 	if (fp->f_flag & (FMARK | FDEFER)) {
   1790  1.106        ad 		mutex_exit(&fp->f_lock);
   1791    1.1       cgd 		return;
   1792  1.101        ad 	}
   1793   1.39  sommerfe 
   1794   1.39  sommerfe 	/*
   1795  1.121       mrg 	 * Minimize the number of deferrals...  Sockets are the only type of
   1796  1.121       mrg 	 * file which can hold references to another file, so just mark
   1797  1.121       mrg 	 * other files, and defer unmarked sockets for the next pass.
   1798   1.39  sommerfe 	 */
   1799   1.39  sommerfe 	if (fp->f_type == DTYPE_SOCKET) {
   1800   1.39  sommerfe 		unp_defer++;
   1801  1.106        ad 		KASSERT(fp->f_count != 0);
   1802  1.106        ad 		atomic_or_uint(&fp->f_flag, FDEFER);
   1803   1.39  sommerfe 	} else {
   1804  1.106        ad 		atomic_or_uint(&fp->f_flag, FMARK);
   1805   1.39  sommerfe 	}
   1806  1.106        ad 	mutex_exit(&fp->f_lock);
   1807    1.1       cgd }
   1808    1.1       cgd 
   1809  1.121       mrg static void
   1810  1.121       mrg unp_discard_now(file_t *fp)
   1811    1.1       cgd {
   1812  1.106        ad 
   1813   1.39  sommerfe 	if (fp == NULL)
   1814   1.39  sommerfe 		return;
   1815  1.106        ad 
   1816  1.121       mrg 	KASSERT(fp->f_count > 0);
   1817  1.121       mrg 	KASSERT(fp->f_msgcount > 0);
   1818  1.121       mrg 
   1819  1.106        ad 	mutex_enter(&fp->f_lock);
   1820    1.1       cgd 	fp->f_msgcount--;
   1821  1.106        ad 	mutex_exit(&fp->f_lock);
   1822  1.106        ad 	atomic_dec_uint(&unp_rights);
   1823  1.106        ad 	(void)closef(fp);
   1824    1.1       cgd }
   1825  1.121       mrg 
   1826  1.121       mrg static void
   1827  1.121       mrg unp_discard_later(file_t *fp)
   1828  1.121       mrg {
   1829  1.121       mrg 
   1830  1.121       mrg 	if (fp == NULL)
   1831  1.121       mrg 		return;
   1832  1.121       mrg 
   1833  1.121       mrg 	KASSERT(fp->f_count > 0);
   1834  1.121       mrg 	KASSERT(fp->f_msgcount > 0);
   1835  1.121       mrg 
   1836  1.121       mrg 	mutex_enter(&filelist_lock);
   1837  1.121       mrg 	if (fp->f_unpcount++ == 0) {
   1838  1.121       mrg 		SLIST_INSERT_HEAD(&unp_thread_discard, fp, f_unplist);
   1839  1.121       mrg 	}
   1840  1.121       mrg 	mutex_exit(&filelist_lock);
   1841  1.121       mrg }
   1842  1.151     rmind 
   1843  1.151     rmind const struct pr_usrreqs unp_usrreqs = {
   1844  1.152     rmind 	.pr_attach	= unp_attach,
   1845  1.152     rmind 	.pr_detach	= unp_detach,
   1846  1.154       rtr 	.pr_ioctl	= unp_ioctl,
   1847  1.156       rtr 	.pr_stat	= unp_stat,
   1848  1.158       rtr 	.pr_peeraddr	= unp_peeraddr,
   1849  1.158       rtr 	.pr_sockaddr	= unp_sockaddr,
   1850  1.151     rmind 	.pr_generic	= unp_usrreq,
   1851  1.151     rmind };
   1852