xref: /freebsd/sys/kern/uipc_usrreq.c (revision 4b2eaea43fec8e8792be611dea204071a10b655a)
1 /*
2  * Copyright (c) 1982, 1986, 1989, 1991, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *	This product includes software developed by the University of
16  *	California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  *
33  *	From: @(#)uipc_usrreq.c	8.3 (Berkeley) 1/4/94
34  * $FreeBSD$
35  */
36 
37 #include "opt_mac.h"
38 
39 #include <sys/param.h>
40 #include <sys/domain.h>
41 #include <sys/fcntl.h>
42 #include <sys/malloc.h>		/* XXX must be before <sys/file.h> */
43 #include <sys/file.h>
44 #include <sys/filedesc.h>
45 #include <sys/jail.h>
46 #include <sys/kernel.h>
47 #include <sys/lock.h>
48 #include <sys/mac.h>
49 #include <sys/mbuf.h>
50 #include <sys/mutex.h>
51 #include <sys/namei.h>
52 #include <sys/proc.h>
53 #include <sys/protosw.h>
54 #include <sys/resourcevar.h>
55 #include <sys/socket.h>
56 #include <sys/socketvar.h>
57 #include <sys/signalvar.h>
58 #include <sys/stat.h>
59 #include <sys/sx.h>
60 #include <sys/sysctl.h>
61 #include <sys/systm.h>
62 #include <sys/un.h>
63 #include <sys/unpcb.h>
64 #include <sys/vnode.h>
65 
66 #include <vm/uma.h>
67 
68 static uma_zone_t unp_zone;
69 static	unp_gen_t unp_gencnt;
70 static	u_int unp_count;
71 
72 static	struct unp_head unp_shead, unp_dhead;
73 
74 /*
75  * Unix communications domain.
76  *
77  * TODO:
78  *	SEQPACKET, RDM
79  *	rethink name space problems
80  *	need a proper out-of-band
81  *	lock pushdown
82  */
83 static struct	sockaddr sun_noname = { sizeof(sun_noname), AF_LOCAL };
84 static ino_t	unp_ino;		/* prototype for fake inode numbers */
85 
86 static int     unp_attach(struct socket *);
87 static void    unp_detach(struct unpcb *);
88 static int     unp_bind(struct unpcb *,struct sockaddr *, struct thread *);
89 static int     unp_connect(struct socket *,struct sockaddr *, struct thread *);
90 static void    unp_disconnect(struct unpcb *);
91 static void    unp_shutdown(struct unpcb *);
92 static void    unp_drop(struct unpcb *, int);
93 static void    unp_gc(void);
94 static void    unp_scan(struct mbuf *, void (*)(struct file *));
95 static void    unp_mark(struct file *);
96 static void    unp_discard(struct file *);
97 static void    unp_freerights(struct file **, int);
98 static int     unp_internalize(struct mbuf **, struct thread *);
99 static int     unp_listen(struct unpcb *, struct thread *);
100 
101 static int
102 uipc_abort(struct socket *so)
103 {
104 	struct unpcb *unp = sotounpcb(so);
105 
106 	if (unp == 0)
107 		return EINVAL;
108 	unp_drop(unp, ECONNABORTED);
109 	unp_detach(unp);
110 	sotryfree(so);
111 	return 0;
112 }
113 
114 static int
115 uipc_accept(struct socket *so, struct sockaddr **nam)
116 {
117 	struct unpcb *unp = sotounpcb(so);
118 
119 	if (unp == 0)
120 		return EINVAL;
121 
122 	/*
123 	 * Pass back name of connected socket,
124 	 * if it was bound and we are still connected
125 	 * (our peer may have closed already!).
126 	 */
127 	if (unp->unp_conn && unp->unp_conn->unp_addr) {
128 		*nam = dup_sockaddr((struct sockaddr *)unp->unp_conn->unp_addr,
129 				    1);
130 	} else {
131 		*nam = dup_sockaddr((struct sockaddr *)&sun_noname, 1);
132 	}
133 	return 0;
134 }
135 
136 static int
137 uipc_attach(struct socket *so, int proto, struct thread *td)
138 {
139 	struct unpcb *unp = sotounpcb(so);
140 
141 	if (unp != 0)
142 		return EISCONN;
143 	return unp_attach(so);
144 }
145 
146 static int
147 uipc_bind(struct socket *so, struct sockaddr *nam, struct thread *td)
148 {
149 	struct unpcb *unp = sotounpcb(so);
150 
151 	if (unp == 0)
152 		return EINVAL;
153 
154 	return unp_bind(unp, nam, td);
155 }
156 
157 static int
158 uipc_connect(struct socket *so, struct sockaddr *nam, struct thread *td)
159 {
160 	struct unpcb *unp = sotounpcb(so);
161 
162 	if (unp == 0)
163 		return EINVAL;
164 	return unp_connect(so, nam, curthread);
165 }
166 
167 static int
168 uipc_connect2(struct socket *so1, struct socket *so2)
169 {
170 	struct unpcb *unp = sotounpcb(so1);
171 
172 	if (unp == 0)
173 		return EINVAL;
174 
175 	return unp_connect2(so1, so2);
176 }
177 
178 /* control is EOPNOTSUPP */
179 
180 static int
181 uipc_detach(struct socket *so)
182 {
183 	struct unpcb *unp = sotounpcb(so);
184 
185 	if (unp == 0)
186 		return EINVAL;
187 
188 	unp_detach(unp);
189 	return 0;
190 }
191 
192 static int
193 uipc_disconnect(struct socket *so)
194 {
195 	struct unpcb *unp = sotounpcb(so);
196 
197 	if (unp == 0)
198 		return EINVAL;
199 	unp_disconnect(unp);
200 	return 0;
201 }
202 
203 static int
204 uipc_listen(struct socket *so, struct thread *td)
205 {
206 	struct unpcb *unp = sotounpcb(so);
207 
208 	if (unp == 0 || unp->unp_vnode == 0)
209 		return EINVAL;
210 	return unp_listen(unp, td);
211 }
212 
213 static int
214 uipc_peeraddr(struct socket *so, struct sockaddr **nam)
215 {
216 	struct unpcb *unp = sotounpcb(so);
217 
218 	if (unp == 0)
219 		return EINVAL;
220 	if (unp->unp_conn && unp->unp_conn->unp_addr)
221 		*nam = dup_sockaddr((struct sockaddr *)unp->unp_conn->unp_addr,
222 				    1);
223 	else {
224 		/*
225 		 * XXX: It seems that this test always fails even when
226 		 * connection is established.  So, this else clause is
227 		 * added as workaround to return PF_LOCAL sockaddr.
228 		 */
229 		*nam = dup_sockaddr((struct sockaddr *)&sun_noname, 1);
230 	}
231 	return 0;
232 }
233 
234 static int
235 uipc_rcvd(struct socket *so, int flags)
236 {
237 	struct unpcb *unp = sotounpcb(so);
238 	struct socket *so2;
239 	u_long newhiwat;
240 
241 	if (unp == 0)
242 		return EINVAL;
243 	switch (so->so_type) {
244 	case SOCK_DGRAM:
245 		panic("uipc_rcvd DGRAM?");
246 		/*NOTREACHED*/
247 
248 	case SOCK_STREAM:
249 		if (unp->unp_conn == 0)
250 			break;
251 		so2 = unp->unp_conn->unp_socket;
252 		/*
253 		 * Adjust backpressure on sender
254 		 * and wakeup any waiting to write.
255 		 */
256 		so2->so_snd.sb_mbmax += unp->unp_mbcnt - so->so_rcv.sb_mbcnt;
257 		unp->unp_mbcnt = so->so_rcv.sb_mbcnt;
258 		newhiwat = so2->so_snd.sb_hiwat + unp->unp_cc -
259 		    so->so_rcv.sb_cc;
260 		(void)chgsbsize(so2->so_cred->cr_uidinfo, &so2->so_snd.sb_hiwat,
261 		    newhiwat, RLIM_INFINITY);
262 		unp->unp_cc = so->so_rcv.sb_cc;
263 		sowwakeup(so2);
264 		break;
265 
266 	default:
267 		panic("uipc_rcvd unknown socktype");
268 	}
269 	return 0;
270 }
271 
272 /* pru_rcvoob is EOPNOTSUPP */
273 
274 static int
275 uipc_send(struct socket *so, int flags, struct mbuf *m, struct sockaddr *nam,
276 	  struct mbuf *control, struct thread *td)
277 {
278 	int error = 0;
279 	struct unpcb *unp = sotounpcb(so);
280 	struct socket *so2;
281 	u_long newhiwat;
282 
283 	if (unp == 0) {
284 		error = EINVAL;
285 		goto release;
286 	}
287 	if (flags & PRUS_OOB) {
288 		error = EOPNOTSUPP;
289 		goto release;
290 	}
291 
292 	if (control && (error = unp_internalize(&control, td)))
293 		goto release;
294 
295 	switch (so->so_type) {
296 	case SOCK_DGRAM:
297 	{
298 		struct sockaddr *from;
299 
300 		if (nam) {
301 			if (unp->unp_conn) {
302 				error = EISCONN;
303 				break;
304 			}
305 			error = unp_connect(so, nam, td);
306 			if (error)
307 				break;
308 		} else {
309 			if (unp->unp_conn == 0) {
310 				error = ENOTCONN;
311 				break;
312 			}
313 		}
314 		so2 = unp->unp_conn->unp_socket;
315 		if (unp->unp_addr)
316 			from = (struct sockaddr *)unp->unp_addr;
317 		else
318 			from = &sun_noname;
319 		if (sbappendaddr(&so2->so_rcv, from, m, control)) {
320 			sorwakeup(so2);
321 			m = 0;
322 			control = 0;
323 		} else
324 			error = ENOBUFS;
325 		if (nam)
326 			unp_disconnect(unp);
327 		break;
328 	}
329 
330 	case SOCK_STREAM:
331 		/* Connect if not connected yet. */
332 		/*
333 		 * Note: A better implementation would complain
334 		 * if not equal to the peer's address.
335 		 */
336 		if ((so->so_state & SS_ISCONNECTED) == 0) {
337 			if (nam) {
338 				error = unp_connect(so, nam, td);
339 				if (error)
340 					break;	/* XXX */
341 			} else {
342 				error = ENOTCONN;
343 				break;
344 			}
345 		}
346 
347 		if (so->so_state & SS_CANTSENDMORE) {
348 			error = EPIPE;
349 			break;
350 		}
351 		if (unp->unp_conn == 0)
352 			panic("uipc_send connected but no connection?");
353 		so2 = unp->unp_conn->unp_socket;
354 		/*
355 		 * Send to paired receive port, and then reduce
356 		 * send buffer hiwater marks to maintain backpressure.
357 		 * Wake up readers.
358 		 */
359 		if (control) {
360 			if (sbappendcontrol(&so2->so_rcv, m, control))
361 				control = 0;
362 		} else
363 			sbappend(&so2->so_rcv, m);
364 		so->so_snd.sb_mbmax -=
365 			so2->so_rcv.sb_mbcnt - unp->unp_conn->unp_mbcnt;
366 		unp->unp_conn->unp_mbcnt = so2->so_rcv.sb_mbcnt;
367 		newhiwat = so->so_snd.sb_hiwat -
368 		    (so2->so_rcv.sb_cc - unp->unp_conn->unp_cc);
369 		(void)chgsbsize(so->so_cred->cr_uidinfo, &so->so_snd.sb_hiwat,
370 		    newhiwat, RLIM_INFINITY);
371 		unp->unp_conn->unp_cc = so2->so_rcv.sb_cc;
372 		sorwakeup(so2);
373 		m = 0;
374 		break;
375 
376 	default:
377 		panic("uipc_send unknown socktype");
378 	}
379 
380 	/*
381 	 * SEND_EOF is equivalent to a SEND followed by
382 	 * a SHUTDOWN.
383 	 */
384 	if (flags & PRUS_EOF) {
385 		socantsendmore(so);
386 		unp_shutdown(unp);
387 	}
388 
389 	if (control && error != 0)
390 		unp_dispose(control);
391 
392 release:
393 	if (control)
394 		m_freem(control);
395 	if (m)
396 		m_freem(m);
397 	return error;
398 }
399 
400 static int
401 uipc_sense(struct socket *so, struct stat *sb)
402 {
403 	struct unpcb *unp = sotounpcb(so);
404 	struct socket *so2;
405 
406 	if (unp == 0)
407 		return EINVAL;
408 	sb->st_blksize = so->so_snd.sb_hiwat;
409 	if (so->so_type == SOCK_STREAM && unp->unp_conn != 0) {
410 		so2 = unp->unp_conn->unp_socket;
411 		sb->st_blksize += so2->so_rcv.sb_cc;
412 	}
413 	sb->st_dev = NOUDEV;
414 	if (unp->unp_ino == 0)
415 		unp->unp_ino = (++unp_ino == 0) ? ++unp_ino : unp_ino;
416 	sb->st_ino = unp->unp_ino;
417 	return (0);
418 }
419 
420 static int
421 uipc_shutdown(struct socket *so)
422 {
423 	struct unpcb *unp = sotounpcb(so);
424 
425 	if (unp == 0)
426 		return EINVAL;
427 	socantsendmore(so);
428 	unp_shutdown(unp);
429 	return 0;
430 }
431 
432 static int
433 uipc_sockaddr(struct socket *so, struct sockaddr **nam)
434 {
435 	struct unpcb *unp = sotounpcb(so);
436 
437 	if (unp == 0)
438 		return EINVAL;
439 	if (unp->unp_addr)
440 		*nam = dup_sockaddr((struct sockaddr *)unp->unp_addr, 1);
441 	else
442 		*nam = dup_sockaddr((struct sockaddr *)&sun_noname, 1);
443 	return 0;
444 }
445 
446 struct pr_usrreqs uipc_usrreqs = {
447 	uipc_abort, uipc_accept, uipc_attach, uipc_bind, uipc_connect,
448 	uipc_connect2, pru_control_notsupp, uipc_detach, uipc_disconnect,
449 	uipc_listen, uipc_peeraddr, uipc_rcvd, pru_rcvoob_notsupp,
450 	uipc_send, uipc_sense, uipc_shutdown, uipc_sockaddr,
451 	sosend, soreceive, sopoll
452 };
453 
454 int
455 uipc_ctloutput(so, sopt)
456 	struct socket *so;
457 	struct sockopt *sopt;
458 {
459 	struct unpcb *unp = sotounpcb(so);
460 	int error;
461 
462 	switch (sopt->sopt_dir) {
463 	case SOPT_GET:
464 		switch (sopt->sopt_name) {
465 		case LOCAL_PEERCRED:
466 			if (unp->unp_flags & UNP_HAVEPC)
467 				error = sooptcopyout(sopt, &unp->unp_peercred,
468 				    sizeof(unp->unp_peercred));
469 			else {
470 				if (so->so_type == SOCK_STREAM)
471 					error = ENOTCONN;
472 				else
473 					error = EINVAL;
474 			}
475 			break;
476 		default:
477 			error = EOPNOTSUPP;
478 			break;
479 		}
480 		break;
481 	case SOPT_SET:
482 	default:
483 		error = EOPNOTSUPP;
484 		break;
485 	}
486 	return (error);
487 }
488 
489 /*
490  * Both send and receive buffers are allocated PIPSIZ bytes of buffering
491  * for stream sockets, although the total for sender and receiver is
492  * actually only PIPSIZ.
493  * Datagram sockets really use the sendspace as the maximum datagram size,
494  * and don't really want to reserve the sendspace.  Their recvspace should
495  * be large enough for at least one max-size datagram plus address.
496  */
497 #ifndef PIPSIZ
498 #define	PIPSIZ	8192
499 #endif
500 static u_long	unpst_sendspace = PIPSIZ;
501 static u_long	unpst_recvspace = PIPSIZ;
502 static u_long	unpdg_sendspace = 2*1024;	/* really max datagram size */
503 static u_long	unpdg_recvspace = 4*1024;
504 
505 static int	unp_rights;			/* file descriptors in flight */
506 
507 SYSCTL_DECL(_net_local_stream);
508 SYSCTL_INT(_net_local_stream, OID_AUTO, sendspace, CTLFLAG_RW,
509 	   &unpst_sendspace, 0, "");
510 SYSCTL_INT(_net_local_stream, OID_AUTO, recvspace, CTLFLAG_RW,
511 	   &unpst_recvspace, 0, "");
512 SYSCTL_DECL(_net_local_dgram);
513 SYSCTL_INT(_net_local_dgram, OID_AUTO, maxdgram, CTLFLAG_RW,
514 	   &unpdg_sendspace, 0, "");
515 SYSCTL_INT(_net_local_dgram, OID_AUTO, recvspace, CTLFLAG_RW,
516 	   &unpdg_recvspace, 0, "");
517 SYSCTL_DECL(_net_local);
518 SYSCTL_INT(_net_local, OID_AUTO, inflight, CTLFLAG_RD, &unp_rights, 0, "");
519 
520 static int
521 unp_attach(so)
522 	struct socket *so;
523 {
524 	register struct unpcb *unp;
525 	int error;
526 
527 	if (so->so_snd.sb_hiwat == 0 || so->so_rcv.sb_hiwat == 0) {
528 		switch (so->so_type) {
529 
530 		case SOCK_STREAM:
531 			error = soreserve(so, unpst_sendspace, unpst_recvspace);
532 			break;
533 
534 		case SOCK_DGRAM:
535 			error = soreserve(so, unpdg_sendspace, unpdg_recvspace);
536 			break;
537 
538 		default:
539 			panic("unp_attach");
540 		}
541 		if (error)
542 			return (error);
543 	}
544 	unp = uma_zalloc(unp_zone, 0);
545 	if (unp == NULL)
546 		return (ENOBUFS);
547 	bzero(unp, sizeof *unp);
548 	unp->unp_gencnt = ++unp_gencnt;
549 	unp_count++;
550 	LIST_INIT(&unp->unp_refs);
551 	unp->unp_socket = so;
552 	unp->unp_rvnode = curthread->td_proc->p_fd->fd_rdir;
553 	LIST_INSERT_HEAD(so->so_type == SOCK_DGRAM ? &unp_dhead
554 			 : &unp_shead, unp, unp_link);
555 	so->so_pcb = unp;
556 	return (0);
557 }
558 
559 static void
560 unp_detach(unp)
561 	register struct unpcb *unp;
562 {
563 	LIST_REMOVE(unp, unp_link);
564 	unp->unp_gencnt = ++unp_gencnt;
565 	--unp_count;
566 	if (unp->unp_vnode) {
567 		unp->unp_vnode->v_socket = 0;
568 		vrele(unp->unp_vnode);
569 		unp->unp_vnode = 0;
570 	}
571 	if (unp->unp_conn)
572 		unp_disconnect(unp);
573 	while (!LIST_EMPTY(&unp->unp_refs))
574 		unp_drop(LIST_FIRST(&unp->unp_refs), ECONNRESET);
575 	soisdisconnected(unp->unp_socket);
576 	unp->unp_socket->so_pcb = 0;
577 	if (unp_rights) {
578 		/*
579 		 * Normally the receive buffer is flushed later,
580 		 * in sofree, but if our receive buffer holds references
581 		 * to descriptors that are now garbage, we will dispose
582 		 * of those descriptor references after the garbage collector
583 		 * gets them (resulting in a "panic: closef: count < 0").
584 		 */
585 		sorflush(unp->unp_socket);
586 		unp_gc();
587 	}
588 	if (unp->unp_addr)
589 		FREE(unp->unp_addr, M_SONAME);
590 	uma_zfree(unp_zone, unp);
591 }
592 
593 static int
594 unp_bind(unp, nam, td)
595 	struct unpcb *unp;
596 	struct sockaddr *nam;
597 	struct thread *td;
598 {
599 	struct sockaddr_un *soun = (struct sockaddr_un *)nam;
600 	struct vnode *vp;
601 	struct mount *mp;
602 	struct vattr vattr;
603 	int error, namelen;
604 	struct nameidata nd;
605 	char *buf;
606 
607 	if (unp->unp_vnode != NULL)
608 		return (EINVAL);
609 
610 	namelen = soun->sun_len - offsetof(struct sockaddr_un, sun_path);
611 	if (namelen <= 0)
612 		return EINVAL;
613 
614 	buf = malloc(namelen + 1, M_TEMP, 0);
615 	strlcpy(buf, soun->sun_path, namelen + 1);
616 
617 restart:
618 	NDINIT(&nd, CREATE, NOFOLLOW | LOCKPARENT | SAVENAME, UIO_SYSSPACE,
619 	    buf, td);
620 /* SHOULD BE ABLE TO ADOPT EXISTING AND wakeup() ALA FIFO's */
621 	error = namei(&nd);
622 	if (error) {
623 		free(buf, M_TEMP);
624 		return (error);
625 	}
626 	vp = nd.ni_vp;
627 	if (vp != NULL || vn_start_write(nd.ni_dvp, &mp, V_NOWAIT) != 0) {
628 		NDFREE(&nd, NDF_ONLY_PNBUF);
629 		if (nd.ni_dvp == vp)
630 			vrele(nd.ni_dvp);
631 		else
632 			vput(nd.ni_dvp);
633 		if (vp != NULL) {
634 			vrele(vp);
635 			free(buf, M_TEMP);
636 			return (EADDRINUSE);
637 		}
638 		error = vn_start_write(NULL, &mp, V_XSLEEP | PCATCH);
639 		if (error) {
640 			free(buf, M_TEMP);
641 			return (error);
642 		}
643 		goto restart;
644 	}
645 	VATTR_NULL(&vattr);
646 	vattr.va_type = VSOCK;
647 	vattr.va_mode = (ACCESSPERMS & ~td->td_proc->p_fd->fd_cmask);
648 #ifdef MAC
649 	error = mac_check_vnode_create(td->td_ucred, nd.ni_dvp, &nd.ni_cnd,
650 	    &vattr);
651 #endif
652 	if (error == 0) {
653 		VOP_LEASE(nd.ni_dvp, td, td->td_ucred, LEASE_WRITE);
654 		error = VOP_CREATE(nd.ni_dvp, &nd.ni_vp, &nd.ni_cnd, &vattr);
655 	}
656 	NDFREE(&nd, NDF_ONLY_PNBUF);
657 	vput(nd.ni_dvp);
658 	if (error) {
659 		free(buf, M_TEMP);
660 		return (error);
661 	}
662 	vp = nd.ni_vp;
663 	vp->v_socket = unp->unp_socket;
664 	unp->unp_vnode = vp;
665 	unp->unp_addr = (struct sockaddr_un *)dup_sockaddr(nam, 1);
666 	VOP_UNLOCK(vp, 0, td);
667 	vn_finished_write(mp);
668 	free(buf, M_TEMP);
669 	return (0);
670 }
671 
672 static int
673 unp_connect(so, nam, td)
674 	struct socket *so;
675 	struct sockaddr *nam;
676 	struct thread *td;
677 {
678 	register struct sockaddr_un *soun = (struct sockaddr_un *)nam;
679 	register struct vnode *vp;
680 	register struct socket *so2, *so3;
681 	struct unpcb *unp, *unp2, *unp3;
682 	int error, len;
683 	struct nameidata nd;
684 	char buf[SOCK_MAXADDRLEN];
685 
686 	len = nam->sa_len - offsetof(struct sockaddr_un, sun_path);
687 	if (len <= 0)
688 		return EINVAL;
689 	strlcpy(buf, soun->sun_path, len + 1);
690 
691 	NDINIT(&nd, LOOKUP, FOLLOW | LOCKLEAF, UIO_SYSSPACE, buf, td);
692 	error = namei(&nd);
693 	if (error)
694 		return (error);
695 	vp = nd.ni_vp;
696 	NDFREE(&nd, NDF_ONLY_PNBUF);
697 	if (vp->v_type != VSOCK) {
698 		error = ENOTSOCK;
699 		goto bad;
700 	}
701 	error = VOP_ACCESS(vp, VWRITE, td->td_ucred, td);
702 	if (error)
703 		goto bad;
704 	so2 = vp->v_socket;
705 	if (so2 == 0) {
706 		error = ECONNREFUSED;
707 		goto bad;
708 	}
709 	if (so->so_type != so2->so_type) {
710 		error = EPROTOTYPE;
711 		goto bad;
712 	}
713 	if (so->so_proto->pr_flags & PR_CONNREQUIRED) {
714 		if ((so2->so_options & SO_ACCEPTCONN) == 0 ||
715 		    (so3 = sonewconn(so2, 0)) == 0) {
716 			error = ECONNREFUSED;
717 			goto bad;
718 		}
719 		unp = sotounpcb(so);
720 		unp2 = sotounpcb(so2);
721 		unp3 = sotounpcb(so3);
722 		if (unp2->unp_addr)
723 			unp3->unp_addr = (struct sockaddr_un *)
724 				dup_sockaddr((struct sockaddr *)
725 					     unp2->unp_addr, 1);
726 
727 		/*
728 		 * unp_peercred management:
729 		 *
730 		 * The connecter's (client's) credentials are copied
731 		 * from its process structure at the time of connect()
732 		 * (which is now).
733 		 */
734 		cru2x(td->td_ucred, &unp3->unp_peercred);
735 		unp3->unp_flags |= UNP_HAVEPC;
736 		/*
737 		 * The receiver's (server's) credentials are copied
738 		 * from the unp_peercred member of socket on which the
739 		 * former called listen(); unp_listen() cached that
740 		 * process's credentials at that time so we can use
741 		 * them now.
742 		 */
743 		KASSERT(unp2->unp_flags & UNP_HAVEPCCACHED,
744 		    ("unp_connect: listener without cached peercred"));
745 		memcpy(&unp->unp_peercred, &unp2->unp_peercred,
746 		    sizeof(unp->unp_peercred));
747 		unp->unp_flags |= UNP_HAVEPC;
748 #ifdef MAC
749 		mac_set_socket_peer_from_socket(so, so3);
750 		mac_set_socket_peer_from_socket(so3, so);
751 #endif
752 
753 		so2 = so3;
754 	}
755 	error = unp_connect2(so, so2);
756 bad:
757 	vput(vp);
758 	return (error);
759 }
760 
761 int
762 unp_connect2(so, so2)
763 	register struct socket *so;
764 	register struct socket *so2;
765 {
766 	register struct unpcb *unp = sotounpcb(so);
767 	register struct unpcb *unp2;
768 
769 	if (so2->so_type != so->so_type)
770 		return (EPROTOTYPE);
771 	unp2 = sotounpcb(so2);
772 	unp->unp_conn = unp2;
773 	switch (so->so_type) {
774 
775 	case SOCK_DGRAM:
776 		LIST_INSERT_HEAD(&unp2->unp_refs, unp, unp_reflink);
777 		soisconnected(so);
778 		break;
779 
780 	case SOCK_STREAM:
781 		unp2->unp_conn = unp;
782 		soisconnected(so);
783 		soisconnected(so2);
784 		break;
785 
786 	default:
787 		panic("unp_connect2");
788 	}
789 	return (0);
790 }
791 
792 static void
793 unp_disconnect(unp)
794 	struct unpcb *unp;
795 {
796 	register struct unpcb *unp2 = unp->unp_conn;
797 
798 	if (unp2 == 0)
799 		return;
800 	unp->unp_conn = 0;
801 	switch (unp->unp_socket->so_type) {
802 
803 	case SOCK_DGRAM:
804 		LIST_REMOVE(unp, unp_reflink);
805 		unp->unp_socket->so_state &= ~SS_ISCONNECTED;
806 		break;
807 
808 	case SOCK_STREAM:
809 		soisdisconnected(unp->unp_socket);
810 		unp2->unp_conn = 0;
811 		soisdisconnected(unp2->unp_socket);
812 		break;
813 	}
814 }
815 
816 #ifdef notdef
817 void
818 unp_abort(unp)
819 	struct unpcb *unp;
820 {
821 
822 	unp_detach(unp);
823 }
824 #endif
825 
826 static int
827 unp_pcblist(SYSCTL_HANDLER_ARGS)
828 {
829 	int error, i, n;
830 	struct unpcb *unp, **unp_list;
831 	unp_gen_t gencnt;
832 	struct xunpgen *xug;
833 	struct unp_head *head;
834 	struct xunpcb *xu;
835 
836 	head = ((intptr_t)arg1 == SOCK_DGRAM ? &unp_dhead : &unp_shead);
837 
838 	/*
839 	 * The process of preparing the PCB list is too time-consuming and
840 	 * resource-intensive to repeat twice on every request.
841 	 */
842 	if (req->oldptr == 0) {
843 		n = unp_count;
844 		req->oldidx = 2 * (sizeof *xug)
845 			+ (n + n/8) * sizeof(struct xunpcb);
846 		return 0;
847 	}
848 
849 	if (req->newptr != 0)
850 		return EPERM;
851 
852 	/*
853 	 * OK, now we're committed to doing something.
854 	 */
855 	xug = malloc(sizeof(*xug), M_TEMP, 0);
856 	gencnt = unp_gencnt;
857 	n = unp_count;
858 
859 	xug->xug_len = sizeof *xug;
860 	xug->xug_count = n;
861 	xug->xug_gen = gencnt;
862 	xug->xug_sogen = so_gencnt;
863 	error = SYSCTL_OUT(req, xug, sizeof *xug);
864 	if (error) {
865 		free(xug, M_TEMP);
866 		return error;
867 	}
868 
869 	unp_list = malloc(n * sizeof *unp_list, M_TEMP, 0);
870 
871 	for (unp = LIST_FIRST(head), i = 0; unp && i < n;
872 	     unp = LIST_NEXT(unp, unp_link)) {
873 		if (unp->unp_gencnt <= gencnt) {
874 			if (cr_cansee(req->td->td_ucred,
875 			    unp->unp_socket->so_cred))
876 				continue;
877 			unp_list[i++] = unp;
878 		}
879 	}
880 	n = i;			/* in case we lost some during malloc */
881 
882 	error = 0;
883 	xu = malloc(sizeof(*xu), M_TEMP, 0);
884 	for (i = 0; i < n; i++) {
885 		unp = unp_list[i];
886 		if (unp->unp_gencnt <= gencnt) {
887 			xu->xu_len = sizeof *xu;
888 			xu->xu_unpp = unp;
889 			/*
890 			 * XXX - need more locking here to protect against
891 			 * connect/disconnect races for SMP.
892 			 */
893 			if (unp->unp_addr)
894 				bcopy(unp->unp_addr, &xu->xu_addr,
895 				      unp->unp_addr->sun_len);
896 			if (unp->unp_conn && unp->unp_conn->unp_addr)
897 				bcopy(unp->unp_conn->unp_addr,
898 				      &xu->xu_caddr,
899 				      unp->unp_conn->unp_addr->sun_len);
900 			bcopy(unp, &xu->xu_unp, sizeof *unp);
901 			sotoxsocket(unp->unp_socket, &xu->xu_socket);
902 			error = SYSCTL_OUT(req, xu, sizeof *xu);
903 		}
904 	}
905 	free(xu, M_TEMP);
906 	if (!error) {
907 		/*
908 		 * Give the user an updated idea of our state.
909 		 * If the generation differs from what we told
910 		 * her before, she knows that something happened
911 		 * while we were processing this request, and it
912 		 * might be necessary to retry.
913 		 */
914 		xug->xug_gen = unp_gencnt;
915 		xug->xug_sogen = so_gencnt;
916 		xug->xug_count = unp_count;
917 		error = SYSCTL_OUT(req, xug, sizeof *xug);
918 	}
919 	free(unp_list, M_TEMP);
920 	free(xug, M_TEMP);
921 	return error;
922 }
923 
924 SYSCTL_PROC(_net_local_dgram, OID_AUTO, pcblist, CTLFLAG_RD,
925 	    (caddr_t)(long)SOCK_DGRAM, 0, unp_pcblist, "S,xunpcb",
926 	    "List of active local datagram sockets");
927 SYSCTL_PROC(_net_local_stream, OID_AUTO, pcblist, CTLFLAG_RD,
928 	    (caddr_t)(long)SOCK_STREAM, 0, unp_pcblist, "S,xunpcb",
929 	    "List of active local stream sockets");
930 
931 static void
932 unp_shutdown(unp)
933 	struct unpcb *unp;
934 {
935 	struct socket *so;
936 
937 	if (unp->unp_socket->so_type == SOCK_STREAM && unp->unp_conn &&
938 	    (so = unp->unp_conn->unp_socket))
939 		socantrcvmore(so);
940 }
941 
942 static void
943 unp_drop(unp, errno)
944 	struct unpcb *unp;
945 	int errno;
946 {
947 	struct socket *so = unp->unp_socket;
948 
949 	so->so_error = errno;
950 	unp_disconnect(unp);
951 }
952 
953 #ifdef notdef
954 void
955 unp_drain()
956 {
957 
958 }
959 #endif
960 
961 static void
962 unp_freerights(rp, fdcount)
963 	struct file **rp;
964 	int fdcount;
965 {
966 	int i;
967 	struct file *fp;
968 
969 	for (i = 0; i < fdcount; i++) {
970 		fp = *rp;
971 		/*
972 		 * zero the pointer before calling
973 		 * unp_discard since it may end up
974 		 * in unp_gc()..
975 		 */
976 		*rp++ = 0;
977 		unp_discard(fp);
978 	}
979 }
980 
981 int
982 unp_externalize(control, controlp)
983 	struct mbuf *control, **controlp;
984 {
985 	struct thread *td = curthread;		/* XXX */
986 	struct cmsghdr *cm = mtod(control, struct cmsghdr *);
987 	int i;
988 	int *fdp;
989 	struct file **rp;
990 	struct file *fp;
991 	void *data;
992 	socklen_t clen = control->m_len, datalen;
993 	int error, newfds;
994 	int f;
995 	u_int newlen;
996 
997 	error = 0;
998 	if (controlp != NULL) /* controlp == NULL => free control messages */
999 		*controlp = NULL;
1000 
1001 	while (cm != NULL) {
1002 		if (sizeof(*cm) > clen || cm->cmsg_len > clen) {
1003 			error = EINVAL;
1004 			break;
1005 		}
1006 
1007 		data = CMSG_DATA(cm);
1008 		datalen = (caddr_t)cm + cm->cmsg_len - (caddr_t)data;
1009 
1010 		if (cm->cmsg_level == SOL_SOCKET
1011 		    && cm->cmsg_type == SCM_RIGHTS) {
1012 			newfds = datalen / sizeof(struct file *);
1013 			rp = data;
1014 
1015 			/* If we're not outputting the discriptors free them. */
1016 			if (error || controlp == NULL) {
1017 				unp_freerights(rp, newfds);
1018 				goto next;
1019 			}
1020 			FILEDESC_LOCK(td->td_proc->p_fd);
1021 			/* if the new FD's will not fit free them.  */
1022 			if (!fdavail(td, newfds)) {
1023 				FILEDESC_UNLOCK(td->td_proc->p_fd);
1024 				error = EMSGSIZE;
1025 				unp_freerights(rp, newfds);
1026 				goto next;
1027 			}
1028 			/*
1029 			 * now change each pointer to an fd in the global
1030 			 * table to an integer that is the index to the
1031 			 * local fd table entry that we set up to point
1032 			 * to the global one we are transferring.
1033 			 */
1034 			newlen = newfds * sizeof(int);
1035 			*controlp = sbcreatecontrol(NULL, newlen,
1036 			    SCM_RIGHTS, SOL_SOCKET);
1037 			if (*controlp == NULL) {
1038 				FILEDESC_UNLOCK(td->td_proc->p_fd);
1039 				error = E2BIG;
1040 				unp_freerights(rp, newfds);
1041 				goto next;
1042 			}
1043 
1044 			fdp = (int *)
1045 			    CMSG_DATA(mtod(*controlp, struct cmsghdr *));
1046 			for (i = 0; i < newfds; i++) {
1047 				if (fdalloc(td, 0, &f))
1048 					panic("unp_externalize fdalloc failed");
1049 				fp = *rp++;
1050 				td->td_proc->p_fd->fd_ofiles[f] = fp;
1051 				FILE_LOCK(fp);
1052 				fp->f_msgcount--;
1053 				FILE_UNLOCK(fp);
1054 				unp_rights--;
1055 				*fdp++ = f;
1056 			}
1057 			FILEDESC_UNLOCK(td->td_proc->p_fd);
1058 		} else { /* We can just copy anything else across */
1059 			if (error || controlp == NULL)
1060 				goto next;
1061 			*controlp = sbcreatecontrol(NULL, datalen,
1062 			    cm->cmsg_type, cm->cmsg_level);
1063 			if (*controlp == NULL) {
1064 				error = ENOBUFS;
1065 				goto next;
1066 			}
1067 			bcopy(data,
1068 			    CMSG_DATA(mtod(*controlp, struct cmsghdr *)),
1069 			    datalen);
1070 		}
1071 
1072 		controlp = &(*controlp)->m_next;
1073 
1074 next:
1075 		if (CMSG_SPACE(datalen) < clen) {
1076 			clen -= CMSG_SPACE(datalen);
1077 			cm = (struct cmsghdr *)
1078 			    ((caddr_t)cm + CMSG_SPACE(datalen));
1079 		} else {
1080 			clen = 0;
1081 			cm = NULL;
1082 		}
1083 	}
1084 
1085 	m_freem(control);
1086 
1087 	return (error);
1088 }
1089 
1090 void
1091 unp_init(void)
1092 {
1093 	unp_zone = uma_zcreate("unpcb", sizeof(struct unpcb), NULL, NULL,
1094 	    NULL, NULL, UMA_ALIGN_PTR, UMA_ZONE_NOFREE);
1095 	uma_zone_set_max(unp_zone, nmbclusters);
1096 	if (unp_zone == 0)
1097 		panic("unp_init");
1098 	LIST_INIT(&unp_dhead);
1099 	LIST_INIT(&unp_shead);
1100 }
1101 
1102 #ifndef MIN
1103 #define	MIN(a,b) (((a)<(b))?(a):(b))
1104 #endif
1105 
1106 static int
1107 unp_internalize(controlp, td)
1108 	struct mbuf **controlp;
1109 	struct thread *td;
1110 {
1111 	struct mbuf *control = *controlp;
1112 	struct proc *p = td->td_proc;
1113 	struct filedesc *fdescp = p->p_fd;
1114 	struct cmsghdr *cm = mtod(control, struct cmsghdr *);
1115 	struct cmsgcred *cmcred;
1116 	struct file **rp;
1117 	struct file *fp;
1118 	struct timeval *tv;
1119 	int i, fd, *fdp;
1120 	void *data;
1121 	socklen_t clen = control->m_len, datalen;
1122 	int error, oldfds;
1123 	u_int newlen;
1124 
1125 	error = 0;
1126 	*controlp = NULL;
1127 
1128 	while (cm != NULL) {
1129 		if (sizeof(*cm) > clen || cm->cmsg_level != SOL_SOCKET
1130 		    || cm->cmsg_len > clen) {
1131 			error = EINVAL;
1132 			goto out;
1133 		}
1134 
1135 		data = CMSG_DATA(cm);
1136 		datalen = (caddr_t)cm + cm->cmsg_len - (caddr_t)data;
1137 
1138 		switch (cm->cmsg_type) {
1139 		/*
1140 		 * Fill in credential information.
1141 		 */
1142 		case SCM_CREDS:
1143 			*controlp = sbcreatecontrol(NULL, sizeof(*cmcred),
1144 			    SCM_CREDS, SOL_SOCKET);
1145 			if (*controlp == NULL) {
1146 				error = ENOBUFS;
1147 				goto out;
1148 			}
1149 
1150 			cmcred = (struct cmsgcred *)
1151 			    CMSG_DATA(mtod(*controlp, struct cmsghdr *));
1152 			cmcred->cmcred_pid = p->p_pid;
1153 			cmcred->cmcred_uid = td->td_ucred->cr_ruid;
1154 			cmcred->cmcred_gid = td->td_ucred->cr_rgid;
1155 			cmcred->cmcred_euid = td->td_ucred->cr_uid;
1156 			cmcred->cmcred_ngroups = MIN(td->td_ucred->cr_ngroups,
1157 							CMGROUP_MAX);
1158 			for (i = 0; i < cmcred->cmcred_ngroups; i++)
1159 				cmcred->cmcred_groups[i] =
1160 				    td->td_ucred->cr_groups[i];
1161 			break;
1162 
1163 		case SCM_RIGHTS:
1164 			oldfds = datalen / sizeof (int);
1165 			/*
1166 			 * check that all the FDs passed in refer to legal files
1167 			 * If not, reject the entire operation.
1168 			 */
1169 			fdp = data;
1170 			FILEDESC_LOCK(fdescp);
1171 			for (i = 0; i < oldfds; i++) {
1172 				fd = *fdp++;
1173 				if ((unsigned)fd >= fdescp->fd_nfiles ||
1174 				    fdescp->fd_ofiles[fd] == NULL) {
1175 					FILEDESC_UNLOCK(fdescp);
1176 					error = EBADF;
1177 					goto out;
1178 				}
1179 			}
1180 			/*
1181 			 * Now replace the integer FDs with pointers to
1182 			 * the associated global file table entry..
1183 			 */
1184 			newlen = oldfds * sizeof(struct file *);
1185 			*controlp = sbcreatecontrol(NULL, newlen,
1186 			    SCM_RIGHTS, SOL_SOCKET);
1187 			if (*controlp == NULL) {
1188 				FILEDESC_UNLOCK(fdescp);
1189 				error = E2BIG;
1190 				goto out;
1191 			}
1192 
1193 			fdp = data;
1194 			rp = (struct file **)
1195 			    CMSG_DATA(mtod(*controlp, struct cmsghdr *));
1196 			for (i = 0; i < oldfds; i++) {
1197 				fp = fdescp->fd_ofiles[*fdp++];
1198 				*rp++ = fp;
1199 				FILE_LOCK(fp);
1200 				fp->f_count++;
1201 				fp->f_msgcount++;
1202 				FILE_UNLOCK(fp);
1203 				unp_rights++;
1204 			}
1205 			FILEDESC_UNLOCK(fdescp);
1206 			break;
1207 
1208 		case SCM_TIMESTAMP:
1209 			*controlp = sbcreatecontrol(NULL, sizeof(*tv),
1210 			    SCM_TIMESTAMP, SOL_SOCKET);
1211 			if (*controlp == NULL) {
1212 				error = ENOBUFS;
1213 				goto out;
1214 			}
1215 			tv = (struct timeval *)
1216 			    CMSG_DATA(mtod(*controlp, struct cmsghdr *));
1217 			microtime(tv);
1218 			break;
1219 
1220 		default:
1221 			error = EINVAL;
1222 			goto out;
1223 		}
1224 
1225 		controlp = &(*controlp)->m_next;
1226 
1227 		if (CMSG_SPACE(datalen) < clen) {
1228 			clen -= CMSG_SPACE(datalen);
1229 			cm = (struct cmsghdr *)
1230 			    ((caddr_t)cm + CMSG_SPACE(datalen));
1231 		} else {
1232 			clen = 0;
1233 			cm = NULL;
1234 		}
1235 	}
1236 
1237 out:
1238 	m_freem(control);
1239 
1240 	return (error);
1241 }
1242 
1243 static int	unp_defer, unp_gcing;
1244 
1245 static void
1246 unp_gc()
1247 {
1248 	register struct file *fp, *nextfp;
1249 	register struct socket *so;
1250 	struct file **extra_ref, **fpp;
1251 	int nunref, i;
1252 
1253 	if (unp_gcing)
1254 		return;
1255 	unp_gcing = 1;
1256 	unp_defer = 0;
1257 	/*
1258 	 * before going through all this, set all FDs to
1259 	 * be NOT defered and NOT externally accessible
1260 	 */
1261 	sx_slock(&filelist_lock);
1262 	LIST_FOREACH(fp, &filehead, f_list)
1263 		fp->f_gcflag &= ~(FMARK|FDEFER);
1264 	do {
1265 		LIST_FOREACH(fp, &filehead, f_list) {
1266 			FILE_LOCK(fp);
1267 			/*
1268 			 * If the file is not open, skip it
1269 			 */
1270 			if (fp->f_count == 0) {
1271 				FILE_UNLOCK(fp);
1272 				continue;
1273 			}
1274 			/*
1275 			 * If we already marked it as 'defer'  in a
1276 			 * previous pass, then try process it this time
1277 			 * and un-mark it
1278 			 */
1279 			if (fp->f_gcflag & FDEFER) {
1280 				fp->f_gcflag &= ~FDEFER;
1281 				unp_defer--;
1282 			} else {
1283 				/*
1284 				 * if it's not defered, then check if it's
1285 				 * already marked.. if so skip it
1286 				 */
1287 				if (fp->f_gcflag & FMARK) {
1288 					FILE_UNLOCK(fp);
1289 					continue;
1290 				}
1291 				/*
1292 				 * If all references are from messages
1293 				 * in transit, then skip it. it's not
1294 				 * externally accessible.
1295 				 */
1296 				if (fp->f_count == fp->f_msgcount) {
1297 					FILE_UNLOCK(fp);
1298 					continue;
1299 				}
1300 				/*
1301 				 * If it got this far then it must be
1302 				 * externally accessible.
1303 				 */
1304 				fp->f_gcflag |= FMARK;
1305 			}
1306 			/*
1307 			 * either it was defered, or it is externally
1308 			 * accessible and not already marked so.
1309 			 * Now check if it is possibly one of OUR sockets.
1310 			 */
1311 			if (fp->f_type != DTYPE_SOCKET ||
1312 			    (so = fp->f_data) == NULL) {
1313 				FILE_UNLOCK(fp);
1314 				continue;
1315 			}
1316 			FILE_UNLOCK(fp);
1317 			if (so->so_proto->pr_domain != &localdomain ||
1318 			    (so->so_proto->pr_flags&PR_RIGHTS) == 0)
1319 				continue;
1320 #ifdef notdef
1321 			if (so->so_rcv.sb_flags & SB_LOCK) {
1322 				/*
1323 				 * This is problematical; it's not clear
1324 				 * we need to wait for the sockbuf to be
1325 				 * unlocked (on a uniprocessor, at least),
1326 				 * and it's also not clear what to do
1327 				 * if sbwait returns an error due to receipt
1328 				 * of a signal.  If sbwait does return
1329 				 * an error, we'll go into an infinite
1330 				 * loop.  Delete all of this for now.
1331 				 */
1332 				(void) sbwait(&so->so_rcv);
1333 				goto restart;
1334 			}
1335 #endif
1336 			/*
1337 			 * So, Ok, it's one of our sockets and it IS externally
1338 			 * accessible (or was defered). Now we look
1339 			 * to see if we hold any file descriptors in its
1340 			 * message buffers. Follow those links and mark them
1341 			 * as accessible too.
1342 			 */
1343 			unp_scan(so->so_rcv.sb_mb, unp_mark);
1344 		}
1345 	} while (unp_defer);
1346 	sx_sunlock(&filelist_lock);
1347 	/*
1348 	 * We grab an extra reference to each of the file table entries
1349 	 * that are not otherwise accessible and then free the rights
1350 	 * that are stored in messages on them.
1351 	 *
1352 	 * The bug in the orginal code is a little tricky, so I'll describe
1353 	 * what's wrong with it here.
1354 	 *
1355 	 * It is incorrect to simply unp_discard each entry for f_msgcount
1356 	 * times -- consider the case of sockets A and B that contain
1357 	 * references to each other.  On a last close of some other socket,
1358 	 * we trigger a gc since the number of outstanding rights (unp_rights)
1359 	 * is non-zero.  If during the sweep phase the gc code un_discards,
1360 	 * we end up doing a (full) closef on the descriptor.  A closef on A
1361 	 * results in the following chain.  Closef calls soo_close, which
1362 	 * calls soclose.   Soclose calls first (through the switch
1363 	 * uipc_usrreq) unp_detach, which re-invokes unp_gc.  Unp_gc simply
1364 	 * returns because the previous instance had set unp_gcing, and
1365 	 * we return all the way back to soclose, which marks the socket
1366 	 * with SS_NOFDREF, and then calls sofree.  Sofree calls sorflush
1367 	 * to free up the rights that are queued in messages on the socket A,
1368 	 * i.e., the reference on B.  The sorflush calls via the dom_dispose
1369 	 * switch unp_dispose, which unp_scans with unp_discard.  This second
1370 	 * instance of unp_discard just calls closef on B.
1371 	 *
1372 	 * Well, a similar chain occurs on B, resulting in a sorflush on B,
1373 	 * which results in another closef on A.  Unfortunately, A is already
1374 	 * being closed, and the descriptor has already been marked with
1375 	 * SS_NOFDREF, and soclose panics at this point.
1376 	 *
1377 	 * Here, we first take an extra reference to each inaccessible
1378 	 * descriptor.  Then, we call sorflush ourself, since we know
1379 	 * it is a Unix domain socket anyhow.  After we destroy all the
1380 	 * rights carried in messages, we do a last closef to get rid
1381 	 * of our extra reference.  This is the last close, and the
1382 	 * unp_detach etc will shut down the socket.
1383 	 *
1384 	 * 91/09/19, bsy@cs.cmu.edu
1385 	 */
1386 	extra_ref = malloc(nfiles * sizeof(struct file *), M_TEMP, 0);
1387 	sx_slock(&filelist_lock);
1388 	for (nunref = 0, fp = LIST_FIRST(&filehead), fpp = extra_ref; fp != 0;
1389 	    fp = nextfp) {
1390 		nextfp = LIST_NEXT(fp, f_list);
1391 		FILE_LOCK(fp);
1392 		/*
1393 		 * If it's not open, skip it
1394 		 */
1395 		if (fp->f_count == 0) {
1396 			FILE_UNLOCK(fp);
1397 			continue;
1398 		}
1399 		/*
1400 		 * If all refs are from msgs, and it's not marked accessible
1401 		 * then it must be referenced from some unreachable cycle
1402 		 * of (shut-down) FDs, so include it in our
1403 		 * list of FDs to remove
1404 		 */
1405 		if (fp->f_count == fp->f_msgcount && !(fp->f_gcflag & FMARK)) {
1406 			*fpp++ = fp;
1407 			nunref++;
1408 			fp->f_count++;
1409 		}
1410 		FILE_UNLOCK(fp);
1411 	}
1412 	sx_sunlock(&filelist_lock);
1413 	/*
1414 	 * for each FD on our hit list, do the following two things
1415 	 */
1416 	for (i = nunref, fpp = extra_ref; --i >= 0; ++fpp) {
1417 		struct file *tfp = *fpp;
1418 		FILE_LOCK(tfp);
1419 		if (tfp->f_type == DTYPE_SOCKET &&
1420 		    tfp->f_data != NULL) {
1421 			FILE_UNLOCK(tfp);
1422 			sorflush(tfp->f_data);
1423 		} else
1424 			FILE_UNLOCK(tfp);
1425 	}
1426 	for (i = nunref, fpp = extra_ref; --i >= 0; ++fpp)
1427 		closef(*fpp, (struct thread *) NULL);
1428 	free(extra_ref, M_TEMP);
1429 	unp_gcing = 0;
1430 }
1431 
1432 void
1433 unp_dispose(m)
1434 	struct mbuf *m;
1435 {
1436 
1437 	if (m)
1438 		unp_scan(m, unp_discard);
1439 }
1440 
1441 static int
1442 unp_listen(unp, td)
1443 	struct unpcb *unp;
1444 	struct thread *td;
1445 {
1446 
1447 	cru2x(td->td_ucred, &unp->unp_peercred);
1448 	unp->unp_flags |= UNP_HAVEPCCACHED;
1449 	return (0);
1450 }
1451 
1452 static void
1453 unp_scan(m0, op)
1454 	register struct mbuf *m0;
1455 	void (*op)(struct file *);
1456 {
1457 	struct mbuf *m;
1458 	struct file **rp;
1459 	struct cmsghdr *cm;
1460 	void *data;
1461 	int i;
1462 	socklen_t clen, datalen;
1463 	int qfds;
1464 
1465 	while (m0) {
1466 		for (m = m0; m; m = m->m_next) {
1467 			if (m->m_type != MT_CONTROL)
1468 				continue;
1469 
1470 			cm = mtod(m, struct cmsghdr *);
1471 			clen = m->m_len;
1472 
1473 			while (cm != NULL) {
1474 				if (sizeof(*cm) > clen || cm->cmsg_len > clen)
1475 					break;
1476 
1477 				data = CMSG_DATA(cm);
1478 				datalen = (caddr_t)cm + cm->cmsg_len
1479 				    - (caddr_t)data;
1480 
1481 				if (cm->cmsg_level == SOL_SOCKET &&
1482 				    cm->cmsg_type == SCM_RIGHTS) {
1483 					qfds = datalen / sizeof (struct file *);
1484 					rp = data;
1485 					for (i = 0; i < qfds; i++)
1486 						(*op)(*rp++);
1487 				}
1488 
1489 				if (CMSG_SPACE(datalen) < clen) {
1490 					clen -= CMSG_SPACE(datalen);
1491 					cm = (struct cmsghdr *)
1492 					    ((caddr_t)cm + CMSG_SPACE(datalen));
1493 				} else {
1494 					clen = 0;
1495 					cm = NULL;
1496 				}
1497 			}
1498 		}
1499 		m0 = m0->m_act;
1500 	}
1501 }
1502 
1503 static void
1504 unp_mark(fp)
1505 	struct file *fp;
1506 {
1507 	if (fp->f_gcflag & FMARK)
1508 		return;
1509 	unp_defer++;
1510 	fp->f_gcflag |= (FMARK|FDEFER);
1511 }
1512 
1513 static void
1514 unp_discard(fp)
1515 	struct file *fp;
1516 {
1517 	FILE_LOCK(fp);
1518 	fp->f_msgcount--;
1519 	unp_rights--;
1520 	FILE_UNLOCK(fp);
1521 	(void) closef(fp, (struct thread *)NULL);
1522 }
1523