uipc_usrreq.c revision 35256
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 *	$Id: uipc_usrreq.c,v 1.32 1998/02/06 12:13:28 eivind Exp $
35 */
36
37#include <sys/param.h>
38#include <sys/systm.h>
39#include <sys/kernel.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/mbuf.h>
46#include <sys/namei.h>
47#include <sys/proc.h>
48#include <sys/protosw.h>
49#include <sys/socket.h>
50#include <sys/socketvar.h>
51#include <sys/stat.h>
52#include <sys/sysctl.h>
53#include <sys/un.h>
54#include <sys/vnode.h>
55
56/*
57 * Unix communications domain.
58 *
59 * TODO:
60 *	SEQPACKET, RDM
61 *	rethink name space problems
62 *	need a proper out-of-band
63 */
64static struct	sockaddr sun_noname = { sizeof(sun_noname), AF_LOCAL };
65static ino_t	unp_ino;		/* prototype for fake inode numbers */
66
67static int     unp_attach __P((struct socket *));
68static void    unp_detach __P((struct unpcb *));
69static int     unp_bind __P((struct unpcb *,struct sockaddr *, struct proc *));
70static int     unp_connect __P((struct socket *,struct sockaddr *,
71				struct proc *));
72static void    unp_disconnect __P((struct unpcb *));
73static void    unp_shutdown __P((struct unpcb *));
74static void    unp_drop __P((struct unpcb *, int));
75static void    unp_gc __P((void));
76static void    unp_scan __P((struct mbuf *, void (*)(struct file *)));
77static void    unp_mark __P((struct file *));
78static void    unp_discard __P((struct file *));
79static int     unp_internalize __P((struct mbuf *, struct proc *));
80
81static int
82uipc_abort(struct socket *so)
83{
84	struct unpcb *unp = sotounpcb(so);
85
86	if (unp == 0)
87		return EINVAL;
88	unp_drop(unp, ECONNABORTED);
89	return 0;
90}
91
92static int
93uipc_accept(struct socket *so, struct sockaddr **nam)
94{
95	struct unpcb *unp = sotounpcb(so);
96
97	if (unp == 0)
98		return EINVAL;
99
100	/*
101	 * Pass back name of connected socket,
102	 * if it was bound and we are still connected
103	 * (our peer may have closed already!).
104	 */
105	if (unp->unp_conn && unp->unp_conn->unp_addr) {
106		*nam = dup_sockaddr((struct sockaddr *)unp->unp_conn->unp_addr,
107				    1);
108	} else {
109		*nam = dup_sockaddr((struct sockaddr *)&sun_noname, 1);
110	}
111	return 0;
112}
113
114static int
115uipc_attach(struct socket *so, int proto, struct proc *p)
116{
117	struct unpcb *unp = sotounpcb(so);
118
119	if (unp != 0)
120		return EISCONN;
121	return unp_attach(so);
122}
123
124static int
125uipc_bind(struct socket *so, struct sockaddr *nam, struct proc *p)
126{
127	struct unpcb *unp = sotounpcb(so);
128
129	if (unp == 0)
130		return EINVAL;
131
132	return unp_bind(unp, nam, p);
133}
134
135static int
136uipc_connect(struct socket *so, struct sockaddr *nam, struct proc *p)
137{
138	struct unpcb *unp = sotounpcb(so);
139
140	if (unp == 0)
141		return EINVAL;
142	return unp_connect(so, nam, curproc);
143}
144
145static int
146uipc_connect2(struct socket *so1, struct socket *so2)
147{
148	struct unpcb *unp = sotounpcb(so1);
149
150	if (unp == 0)
151		return EINVAL;
152
153	return unp_connect2(so1, so2);
154}
155
156/* control is EOPNOTSUPP */
157
158static int
159uipc_detach(struct socket *so)
160{
161	struct unpcb *unp = sotounpcb(so);
162
163	if (unp == 0)
164		return EINVAL;
165
166	unp_detach(unp);
167	return 0;
168}
169
170static int
171uipc_disconnect(struct socket *so)
172{
173	struct unpcb *unp = sotounpcb(so);
174
175	if (unp == 0)
176		return EINVAL;
177	unp_disconnect(unp);
178	return 0;
179}
180
181static int
182uipc_listen(struct socket *so, struct proc *p)
183{
184	struct unpcb *unp = sotounpcb(so);
185
186	if (unp == 0 || unp->unp_vnode == 0)
187		return EINVAL;
188	return 0;
189}
190
191static int
192uipc_peeraddr(struct socket *so, struct sockaddr **nam)
193{
194	struct unpcb *unp = sotounpcb(so);
195
196	if (unp == 0)
197		return EINVAL;
198	if (unp->unp_conn && unp->unp_conn->unp_addr)
199		*nam = dup_sockaddr((struct sockaddr *)unp->unp_conn->unp_addr,
200				    1);
201	return 0;
202}
203
204static int
205uipc_rcvd(struct socket *so, int flags)
206{
207	struct unpcb *unp = sotounpcb(so);
208	struct socket *so2;
209
210	if (unp == 0)
211		return EINVAL;
212	switch (so->so_type) {
213	case SOCK_DGRAM:
214		panic("uipc_rcvd DGRAM?");
215		/*NOTREACHED*/
216
217	case SOCK_STREAM:
218#define	rcv (&so->so_rcv)
219#define snd (&so2->so_snd)
220		if (unp->unp_conn == 0)
221			break;
222		so2 = unp->unp_conn->unp_socket;
223		/*
224		 * Adjust backpressure on sender
225		 * and wakeup any waiting to write.
226		 */
227		snd->sb_mbmax += unp->unp_mbcnt - rcv->sb_mbcnt;
228		unp->unp_mbcnt = rcv->sb_mbcnt;
229		snd->sb_hiwat += unp->unp_cc - rcv->sb_cc;
230		unp->unp_cc = rcv->sb_cc;
231		sowwakeup(so2);
232#undef snd
233#undef rcv
234		break;
235
236	default:
237		panic("uipc_rcvd unknown socktype");
238	}
239	return 0;
240}
241
242/* pru_rcvoob is EOPNOTSUPP */
243
244static int
245uipc_send(struct socket *so, int flags, struct mbuf *m, struct sockaddr *nam,
246	  struct mbuf *control, struct proc *p)
247{
248	int error = 0;
249	struct unpcb *unp = sotounpcb(so);
250	struct socket *so2;
251
252	if (unp == 0) {
253		error = EINVAL;
254		goto release;
255	}
256	if (flags & PRUS_OOB) {
257		error = EOPNOTSUPP;
258		goto release;
259	}
260
261	if (control && (error = unp_internalize(control, p)))
262		goto release;
263
264	switch (so->so_type) {
265	case SOCK_DGRAM:
266	{
267		struct sockaddr *from;
268
269		if (nam) {
270			if (unp->unp_conn) {
271				error = EISCONN;
272				break;
273			}
274			error = unp_connect(so, nam, p);
275			if (error)
276				break;
277		} else {
278			if (unp->unp_conn == 0) {
279				error = ENOTCONN;
280				break;
281			}
282		}
283		so2 = unp->unp_conn->unp_socket;
284		if (unp->unp_addr)
285			from = (struct sockaddr *)unp->unp_addr;
286		else
287			from = &sun_noname;
288		if (sbappendaddr(&so2->so_rcv, from, m, control)) {
289			sorwakeup(so2);
290			m = 0;
291			control = 0;
292		} else
293			error = ENOBUFS;
294		if (nam)
295			unp_disconnect(unp);
296		break;
297	}
298
299	case SOCK_STREAM:
300#define	rcv (&so2->so_rcv)
301#define	snd (&so->so_snd)
302		/* Connect if not connected yet. */
303		/*
304		 * Note: A better implementation would complain
305		 * if not equal to the peer's address.
306		 */
307		if ((so->so_state & SS_ISCONNECTED) == 0) {
308			if (nam) {
309				error = unp_connect(so, nam, p);
310				if (error)
311					break;	/* XXX */
312			} else {
313				error = ENOTCONN;
314				break;
315			}
316		}
317
318		if (so->so_state & SS_CANTSENDMORE) {
319			error = EPIPE;
320			break;
321		}
322		if (unp->unp_conn == 0)
323			panic("uipc_send connected but no connection?");
324		so2 = unp->unp_conn->unp_socket;
325		/*
326		 * Send to paired receive port, and then reduce
327		 * send buffer hiwater marks to maintain backpressure.
328		 * Wake up readers.
329		 */
330		if (control) {
331			if (sbappendcontrol(rcv, m, control))
332				control = 0;
333		} else
334			sbappend(rcv, m);
335		snd->sb_mbmax -=
336			rcv->sb_mbcnt - unp->unp_conn->unp_mbcnt;
337		unp->unp_conn->unp_mbcnt = rcv->sb_mbcnt;
338		snd->sb_hiwat -= rcv->sb_cc - unp->unp_conn->unp_cc;
339		unp->unp_conn->unp_cc = rcv->sb_cc;
340		sorwakeup(so2);
341		m = 0;
342#undef snd
343#undef rcv
344		break;
345
346	default:
347		panic("uipc_send unknown socktype");
348	}
349
350	/*
351	 * SEND_EOF is equivalent to a SEND followed by
352	 * a SHUTDOWN.
353	 */
354	if (flags & PRUS_EOF) {
355		socantsendmore(so);
356		unp_shutdown(unp);
357	}
358
359release:
360	if (control)
361		m_freem(control);
362	if (m)
363		m_freem(m);
364	return error;
365}
366
367static int
368uipc_sense(struct socket *so, struct stat *sb)
369{
370	struct unpcb *unp = sotounpcb(so);
371	struct socket *so2;
372
373	if (unp == 0)
374		return EINVAL;
375	sb->st_blksize = so->so_snd.sb_hiwat;
376	if (so->so_type == SOCK_STREAM && unp->unp_conn != 0) {
377		so2 = unp->unp_conn->unp_socket;
378		sb->st_blksize += so2->so_rcv.sb_cc;
379	}
380	sb->st_dev = NODEV;
381	if (unp->unp_ino == 0)
382		unp->unp_ino = unp_ino++;
383	sb->st_ino = unp->unp_ino;
384	return (0);
385}
386
387static int
388uipc_shutdown(struct socket *so)
389{
390	struct unpcb *unp = sotounpcb(so);
391
392	if (unp == 0)
393		return EINVAL;
394	socantsendmore(so);
395	unp_shutdown(unp);
396	return 0;
397}
398
399static int
400uipc_sockaddr(struct socket *so, struct sockaddr **nam)
401{
402	struct unpcb *unp = sotounpcb(so);
403
404	if (unp == 0)
405		return EINVAL;
406	if (unp->unp_addr)
407		*nam = dup_sockaddr((struct sockaddr *)unp->unp_addr, 1);
408	return 0;
409}
410
411struct pr_usrreqs uipc_usrreqs = {
412	uipc_abort, uipc_accept, uipc_attach, uipc_bind, uipc_connect,
413	uipc_connect2, pru_control_notsupp, uipc_detach, uipc_disconnect,
414	uipc_listen, uipc_peeraddr, uipc_rcvd, pru_rcvoob_notsupp,
415	uipc_send, uipc_sense, uipc_shutdown, uipc_sockaddr,
416	sosend, soreceive, sopoll
417};
418
419/*
420 * Both send and receive buffers are allocated PIPSIZ bytes of buffering
421 * for stream sockets, although the total for sender and receiver is
422 * actually only PIPSIZ.
423 * Datagram sockets really use the sendspace as the maximum datagram size,
424 * and don't really want to reserve the sendspace.  Their recvspace should
425 * be large enough for at least one max-size datagram plus address.
426 */
427#ifndef PIPSIZ
428#define	PIPSIZ	8192
429#endif
430static u_long	unpst_sendspace = PIPSIZ;
431static u_long	unpst_recvspace = PIPSIZ;
432static u_long	unpdg_sendspace = 2*1024;	/* really max datagram size */
433static u_long	unpdg_recvspace = 4*1024;
434
435static int	unp_rights;			/* file descriptors in flight */
436
437SYSCTL_INT(_net_local_stream, OID_AUTO, sendspace, CTLFLAG_RW,
438	   &unpst_sendspace, 0, "");
439SYSCTL_INT(_net_local_stream, OID_AUTO, recvspace, CTLFLAG_RW,
440	   &unpst_recvspace, 0, "");
441SYSCTL_INT(_net_local_dgram, OID_AUTO, maxdgram, CTLFLAG_RW,
442	   &unpdg_sendspace, 0, "");
443SYSCTL_INT(_net_local_dgram, OID_AUTO, recvspace, CTLFLAG_RW,
444	   &unpdg_recvspace, 0, "");
445SYSCTL_INT(_net_local, OID_AUTO, inflight, CTLFLAG_RD, &unp_rights, 0, "");
446
447static int
448unp_attach(so)
449	struct socket *so;
450{
451	register struct unpcb *unp;
452	int error;
453
454	if (so->so_snd.sb_hiwat == 0 || so->so_rcv.sb_hiwat == 0) {
455		switch (so->so_type) {
456
457		case SOCK_STREAM:
458			error = soreserve(so, unpst_sendspace, unpst_recvspace);
459			break;
460
461		case SOCK_DGRAM:
462			error = soreserve(so, unpdg_sendspace, unpdg_recvspace);
463			break;
464
465		default:
466			panic("unp_attach");
467		}
468		if (error)
469			return (error);
470	}
471	MALLOC(unp, struct unpcb *, sizeof *unp, M_PCB, M_NOWAIT);
472	if (unp == NULL)
473		return (ENOBUFS);
474	bzero(unp, sizeof *unp);
475	so->so_pcb = (caddr_t)unp;
476	unp->unp_socket = so;
477	return (0);
478}
479
480static void
481unp_detach(unp)
482	register struct unpcb *unp;
483{
484	if (unp->unp_vnode) {
485		unp->unp_vnode->v_socket = 0;
486		vrele(unp->unp_vnode);
487		unp->unp_vnode = 0;
488	}
489	if (unp->unp_conn)
490		unp_disconnect(unp);
491	while (unp->unp_refs)
492		unp_drop(unp->unp_refs, ECONNRESET);
493	soisdisconnected(unp->unp_socket);
494	unp->unp_socket->so_pcb = 0;
495	if (unp_rights) {
496		/*
497		 * Normally the receive buffer is flushed later,
498		 * in sofree, but if our receive buffer holds references
499		 * to descriptors that are now garbage, we will dispose
500		 * of those descriptor references after the garbage collector
501		 * gets them (resulting in a "panic: closef: count < 0").
502		 */
503		sorflush(unp->unp_socket);
504		unp_gc();
505	}
506	if (unp->unp_addr)
507		FREE(unp->unp_addr, M_SONAME);
508	FREE(unp, M_PCB);
509}
510
511static int
512unp_bind(unp, nam, p)
513	struct unpcb *unp;
514	struct sockaddr *nam;
515	struct proc *p;
516{
517	struct sockaddr_un *soun = (struct sockaddr_un *)nam;
518	register struct vnode *vp;
519	struct vattr vattr;
520	int error, namelen;
521	struct nameidata nd;
522	char buf[SOCK_MAXADDRLEN];
523
524	if (unp->unp_vnode != NULL)
525		return (EINVAL);
526#define offsetof(s, e) ((char *)&((s *)0)->e - (char *)((s *)0))
527	namelen = soun->sun_len - offsetof(struct sockaddr_un, sun_path);
528	if (namelen <= 0)
529		return EINVAL;
530	strncpy(buf, soun->sun_path, namelen);
531	buf[namelen] = 0;	/* null-terminate the string */
532	NDINIT(&nd, CREATE, FOLLOW | LOCKPARENT, UIO_SYSSPACE,
533	    buf, p);
534/* SHOULD BE ABLE TO ADOPT EXISTING AND wakeup() ALA FIFO's */
535	error = namei(&nd);
536	if (error)
537		return (error);
538	vp = nd.ni_vp;
539	if (vp != NULL) {
540		VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
541		if (nd.ni_dvp == vp)
542			vrele(nd.ni_dvp);
543		else
544			vput(nd.ni_dvp);
545		vrele(vp);
546		return (EADDRINUSE);
547	}
548	VATTR_NULL(&vattr);
549	vattr.va_type = VSOCK;
550	vattr.va_mode = (ACCESSPERMS & ~p->p_fd->fd_cmask);
551	VOP_LEASE(nd.ni_dvp, p, p->p_ucred, LEASE_WRITE);
552	if (error = VOP_CREATE(nd.ni_dvp, &nd.ni_vp, &nd.ni_cnd, &vattr))
553		return (error);
554	vp = nd.ni_vp;
555	vp->v_socket = unp->unp_socket;
556	unp->unp_vnode = vp;
557	unp->unp_addr = (struct sockaddr_un *)dup_sockaddr(nam, 1);
558	VOP_UNLOCK(vp, 0, p);
559	return (0);
560}
561
562static int
563unp_connect(so, nam, p)
564	struct socket *so;
565	struct sockaddr *nam;
566	struct proc *p;
567{
568	register struct sockaddr_un *soun = (struct sockaddr_un *)nam;
569	register struct vnode *vp;
570	register struct socket *so2, *so3;
571	struct unpcb *unp2, *unp3;
572	int error, len;
573	struct nameidata nd;
574	char buf[SOCK_MAXADDRLEN];
575
576	len = nam->sa_len - offsetof(struct sockaddr_un, sun_path);
577	if (len <= 0)
578		return EINVAL;
579	strncpy(buf, soun->sun_path, len);
580	buf[len] = 0;
581
582	NDINIT(&nd, LOOKUP, FOLLOW | LOCKLEAF, UIO_SYSSPACE, buf, p);
583	error = namei(&nd);
584	if (error)
585		return (error);
586	vp = nd.ni_vp;
587	if (vp->v_type != VSOCK) {
588		error = ENOTSOCK;
589		goto bad;
590	}
591	error = VOP_ACCESS(vp, VWRITE, p->p_ucred, p);
592	if (error)
593		goto bad;
594	so2 = vp->v_socket;
595	if (so2 == 0) {
596		error = ECONNREFUSED;
597		goto bad;
598	}
599	if (so->so_type != so2->so_type) {
600		error = EPROTOTYPE;
601		goto bad;
602	}
603	if (so->so_proto->pr_flags & PR_CONNREQUIRED) {
604		if ((so2->so_options & SO_ACCEPTCONN) == 0 ||
605		    (so3 = sonewconn(so2, 0)) == 0) {
606			error = ECONNREFUSED;
607			goto bad;
608		}
609		unp2 = sotounpcb(so2);
610		unp3 = sotounpcb(so3);
611		if (unp2->unp_addr)
612			unp3->unp_addr = (struct sockaddr_un *)
613				dup_sockaddr((struct sockaddr *)
614					     unp2->unp_addr, 1);
615		so2 = so3;
616	}
617	error = unp_connect2(so, so2);
618bad:
619	vput(vp);
620	return (error);
621}
622
623int
624unp_connect2(so, so2)
625	register struct socket *so;
626	register struct socket *so2;
627{
628	register struct unpcb *unp = sotounpcb(so);
629	register struct unpcb *unp2;
630
631	if (so2->so_type != so->so_type)
632		return (EPROTOTYPE);
633	unp2 = sotounpcb(so2);
634	unp->unp_conn = unp2;
635	switch (so->so_type) {
636
637	case SOCK_DGRAM:
638		unp->unp_nextref = unp2->unp_refs;
639		unp2->unp_refs = unp;
640		soisconnected(so);
641		break;
642
643	case SOCK_STREAM:
644		unp2->unp_conn = unp;
645		soisconnected(so);
646		soisconnected(so2);
647		break;
648
649	default:
650		panic("unp_connect2");
651	}
652	return (0);
653}
654
655static void
656unp_disconnect(unp)
657	struct unpcb *unp;
658{
659	register struct unpcb *unp2 = unp->unp_conn;
660
661	if (unp2 == 0)
662		return;
663	unp->unp_conn = 0;
664	switch (unp->unp_socket->so_type) {
665
666	case SOCK_DGRAM:
667		if (unp2->unp_refs == unp)
668			unp2->unp_refs = unp->unp_nextref;
669		else {
670			unp2 = unp2->unp_refs;
671			for (;;) {
672				if (unp2 == 0)
673					panic("unp_disconnect");
674				if (unp2->unp_nextref == unp)
675					break;
676				unp2 = unp2->unp_nextref;
677			}
678			unp2->unp_nextref = unp->unp_nextref;
679		}
680		unp->unp_nextref = 0;
681		unp->unp_socket->so_state &= ~SS_ISCONNECTED;
682		break;
683
684	case SOCK_STREAM:
685		soisdisconnected(unp->unp_socket);
686		unp2->unp_conn = 0;
687		soisdisconnected(unp2->unp_socket);
688		break;
689	}
690}
691
692#ifdef notdef
693void
694unp_abort(unp)
695	struct unpcb *unp;
696{
697
698	unp_detach(unp);
699}
700#endif
701
702static void
703unp_shutdown(unp)
704	struct unpcb *unp;
705{
706	struct socket *so;
707
708	if (unp->unp_socket->so_type == SOCK_STREAM && unp->unp_conn &&
709	    (so = unp->unp_conn->unp_socket))
710		socantrcvmore(so);
711}
712
713static void
714unp_drop(unp, errno)
715	struct unpcb *unp;
716	int errno;
717{
718	struct socket *so = unp->unp_socket;
719
720	so->so_error = errno;
721	unp_disconnect(unp);
722	if (so->so_head) {
723		so->so_pcb = (caddr_t) 0;
724		if (unp->unp_addr)
725			FREE(unp->unp_addr, M_SONAME);
726		FREE(unp, M_PCB);
727		sofree(so);
728	}
729}
730
731#ifdef notdef
732void
733unp_drain()
734{
735
736}
737#endif
738
739int
740unp_externalize(rights)
741	struct mbuf *rights;
742{
743	struct proc *p = curproc;		/* XXX */
744	register int i;
745	register struct cmsghdr *cm = mtod(rights, struct cmsghdr *);
746	register struct file **rp = (struct file **)(cm + 1);
747	register struct file *fp;
748	int newfds = (cm->cmsg_len - sizeof(*cm)) / sizeof (int);
749	int f;
750
751	/*
752	 * if the new FD's will not fit, then we free them all
753	 */
754	if (!fdavail(p, newfds)) {
755		for (i = 0; i < newfds; i++) {
756			fp = *rp;
757			unp_discard(fp);
758			*rp++ = 0;
759		}
760		return (EMSGSIZE);
761	}
762	/*
763	 * now change each pointer to an fd in the global table to
764	 * an integer that is the index to the local fd table entry
765	 * that we set up to point to the global one we are transferring.
766	 * XXX this assumes a pointer and int are the same size...!
767	 */
768	for (i = 0; i < newfds; i++) {
769		if (fdalloc(p, 0, &f))
770			panic("unp_externalize");
771		fp = *rp;
772		p->p_fd->fd_ofiles[f] = fp;
773		fp->f_msgcount--;
774		unp_rights--;
775		*(int *)rp++ = f;
776	}
777	return (0);
778}
779
780#ifndef MIN
781#define	MIN(a,b) (((a)<(b))?(a):(b))
782#endif
783
784static int
785unp_internalize(control, p)
786	struct mbuf *control;
787	struct proc *p;
788{
789	struct filedesc *fdp = p->p_fd;
790	register struct cmsghdr *cm = mtod(control, struct cmsghdr *);
791	register struct file **rp;
792	register struct file *fp;
793	register int i, fd;
794	register struct cmsgcred *cmcred;
795	int oldfds;
796
797	if ((cm->cmsg_type != SCM_RIGHTS && cm->cmsg_type != SCM_CREDS) ||
798	    cm->cmsg_level != SOL_SOCKET || cm->cmsg_len != control->m_len)
799		return (EINVAL);
800
801	/*
802	 * Fill in credential information.
803	 */
804	if (cm->cmsg_type == SCM_CREDS) {
805		cmcred = (struct cmsgcred *)(cm + 1);
806		cmcred->cmcred_pid = p->p_pid;
807		cmcred->cmcred_uid = p->p_cred->p_ruid;
808		cmcred->cmcred_gid = p->p_cred->p_rgid;
809		cmcred->cmcred_euid = p->p_ucred->cr_uid;
810		cmcred->cmcred_ngroups = MIN(p->p_ucred->cr_ngroups,
811							CMGROUP_MAX);
812		for (i = 0; i < cmcred->cmcred_ngroups; i++)
813			cmcred->cmcred_groups[i] = p->p_ucred->cr_groups[i];
814		return(0);
815	}
816
817	oldfds = (cm->cmsg_len - sizeof (*cm)) / sizeof (int);
818	/*
819	 * check that all the FDs passed in refer to legal OPEN files
820	 * If not, reject the entire operation.
821	 */
822	rp = (struct file **)(cm + 1);
823	for (i = 0; i < oldfds; i++) {
824		fd = *(int *)rp++;
825		if ((unsigned)fd >= fdp->fd_nfiles ||
826		    fdp->fd_ofiles[fd] == NULL)
827			return (EBADF);
828	}
829	/*
830	 * Now replace the integer FDs with pointers to
831	 * the associated global file table entry..
832	 * XXX this assumes a pointer and an int are the same size!
833	 */
834	rp = (struct file **)(cm + 1);
835	for (i = 0; i < oldfds; i++) {
836		fp = fdp->fd_ofiles[*(int *)rp];
837		*rp++ = fp;
838		fp->f_count++;
839		fp->f_msgcount++;
840		unp_rights++;
841	}
842	return (0);
843}
844
845static int	unp_defer, unp_gcing;
846
847static void
848unp_gc()
849{
850	register struct file *fp, *nextfp;
851	register struct socket *so;
852	struct file **extra_ref, **fpp;
853	int nunref, i;
854
855	if (unp_gcing)
856		return;
857	unp_gcing = 1;
858	unp_defer = 0;
859	/*
860	 * before going through all this, set all FDs to
861	 * be NOT defered and NOT externally accessible
862	 */
863	for (fp = filehead.lh_first; fp != 0; fp = fp->f_list.le_next)
864		fp->f_flag &= ~(FMARK|FDEFER);
865	do {
866		for (fp = filehead.lh_first; fp != 0; fp = fp->f_list.le_next) {
867			/*
868			 * If the file is not open, skip it
869			 */
870			if (fp->f_count == 0)
871				continue;
872			/*
873			 * If we already marked it as 'defer'  in a
874			 * previous pass, then try process it this time
875			 * and un-mark it
876			 */
877			if (fp->f_flag & FDEFER) {
878				fp->f_flag &= ~FDEFER;
879				unp_defer--;
880			} else {
881				/*
882				 * if it's not defered, then check if it's
883				 * already marked.. if so skip it
884				 */
885				if (fp->f_flag & FMARK)
886					continue;
887				/*
888				 * If all references are from messages
889				 * in transit, then skip it. it's not
890				 * externally accessible.
891				 */
892				if (fp->f_count == fp->f_msgcount)
893					continue;
894				/*
895				 * If it got this far then it must be
896				 * externally accessible.
897				 */
898				fp->f_flag |= FMARK;
899			}
900			/*
901			 * either it was defered, or it is externally
902			 * accessible and not already marked so.
903			 * Now check if it is possibly one of OUR sockets.
904			 */
905			if (fp->f_type != DTYPE_SOCKET ||
906			    (so = (struct socket *)fp->f_data) == 0)
907				continue;
908			if (so->so_proto->pr_domain != &localdomain ||
909			    (so->so_proto->pr_flags&PR_RIGHTS) == 0)
910				continue;
911#ifdef notdef
912			if (so->so_rcv.sb_flags & SB_LOCK) {
913				/*
914				 * This is problematical; it's not clear
915				 * we need to wait for the sockbuf to be
916				 * unlocked (on a uniprocessor, at least),
917				 * and it's also not clear what to do
918				 * if sbwait returns an error due to receipt
919				 * of a signal.  If sbwait does return
920				 * an error, we'll go into an infinite
921				 * loop.  Delete all of this for now.
922				 */
923				(void) sbwait(&so->so_rcv);
924				goto restart;
925			}
926#endif
927			/*
928			 * So, Ok, it's one of our sockets and it IS externally
929			 * accessible (or was defered). Now we look
930			 * to see if we hold any file descriptors in its
931			 * message buffers. Follow those links and mark them
932			 * as accessible too.
933			 */
934			unp_scan(so->so_rcv.sb_mb, unp_mark);
935		}
936	} while (unp_defer);
937	/*
938	 * We grab an extra reference to each of the file table entries
939	 * that are not otherwise accessible and then free the rights
940	 * that are stored in messages on them.
941	 *
942	 * The bug in the orginal code is a little tricky, so I'll describe
943	 * what's wrong with it here.
944	 *
945	 * It is incorrect to simply unp_discard each entry for f_msgcount
946	 * times -- consider the case of sockets A and B that contain
947	 * references to each other.  On a last close of some other socket,
948	 * we trigger a gc since the number of outstanding rights (unp_rights)
949	 * is non-zero.  If during the sweep phase the gc code un_discards,
950	 * we end up doing a (full) closef on the descriptor.  A closef on A
951	 * results in the following chain.  Closef calls soo_close, which
952	 * calls soclose.   Soclose calls first (through the switch
953	 * uipc_usrreq) unp_detach, which re-invokes unp_gc.  Unp_gc simply
954	 * returns because the previous instance had set unp_gcing, and
955	 * we return all the way back to soclose, which marks the socket
956	 * with SS_NOFDREF, and then calls sofree.  Sofree calls sorflush
957	 * to free up the rights that are queued in messages on the socket A,
958	 * i.e., the reference on B.  The sorflush calls via the dom_dispose
959	 * switch unp_dispose, which unp_scans with unp_discard.  This second
960	 * instance of unp_discard just calls closef on B.
961	 *
962	 * Well, a similar chain occurs on B, resulting in a sorflush on B,
963	 * which results in another closef on A.  Unfortunately, A is already
964	 * being closed, and the descriptor has already been marked with
965	 * SS_NOFDREF, and soclose panics at this point.
966	 *
967	 * Here, we first take an extra reference to each inaccessible
968	 * descriptor.  Then, we call sorflush ourself, since we know
969	 * it is a Unix domain socket anyhow.  After we destroy all the
970	 * rights carried in messages, we do a last closef to get rid
971	 * of our extra reference.  This is the last close, and the
972	 * unp_detach etc will shut down the socket.
973	 *
974	 * 91/09/19, bsy@cs.cmu.edu
975	 */
976	extra_ref = malloc(nfiles * sizeof(struct file *), M_FILE, M_WAITOK);
977	for (nunref = 0, fp = filehead.lh_first, fpp = extra_ref; fp != 0;
978	    fp = nextfp) {
979		nextfp = fp->f_list.le_next;
980		/*
981		 * If it's not open, skip it
982		 */
983		if (fp->f_count == 0)
984			continue;
985		/*
986		 * If all refs are from msgs, and it's not marked accessible
987		 * then it must be referenced from some unreachable cycle
988		 * of (shut-down) FDs, so include it in our
989		 * list of FDs to remove
990		 */
991		if (fp->f_count == fp->f_msgcount && !(fp->f_flag & FMARK)) {
992			*fpp++ = fp;
993			nunref++;
994			fp->f_count++;
995		}
996	}
997	/*
998	 * for each FD on our hit list, do the following two things
999	 */
1000	for (i = nunref, fpp = extra_ref; --i >= 0; ++fpp)
1001		sorflush((struct socket *)(*fpp)->f_data);
1002	for (i = nunref, fpp = extra_ref; --i >= 0; ++fpp)
1003		closef(*fpp, (struct proc *) NULL);
1004	free((caddr_t)extra_ref, M_FILE);
1005	unp_gcing = 0;
1006}
1007
1008void
1009unp_dispose(m)
1010	struct mbuf *m;
1011{
1012
1013	if (m)
1014		unp_scan(m, unp_discard);
1015}
1016
1017static void
1018unp_scan(m0, op)
1019	register struct mbuf *m0;
1020	void (*op) __P((struct file *));
1021{
1022	register struct mbuf *m;
1023	register struct file **rp;
1024	register struct cmsghdr *cm;
1025	register int i;
1026	int qfds;
1027
1028	while (m0) {
1029		for (m = m0; m; m = m->m_next)
1030			if (m->m_type == MT_CONTROL &&
1031			    m->m_len >= sizeof(*cm)) {
1032				cm = mtod(m, struct cmsghdr *);
1033				if (cm->cmsg_level != SOL_SOCKET ||
1034				    cm->cmsg_type != SCM_RIGHTS)
1035					continue;
1036				qfds = (cm->cmsg_len - sizeof *cm)
1037						/ sizeof (struct file *);
1038				rp = (struct file **)(cm + 1);
1039				for (i = 0; i < qfds; i++)
1040					(*op)(*rp++);
1041				break;		/* XXX, but saves time */
1042			}
1043		m0 = m0->m_act;
1044	}
1045}
1046
1047static void
1048unp_mark(fp)
1049	struct file *fp;
1050{
1051
1052	if (fp->f_flag & FMARK)
1053		return;
1054	unp_defer++;
1055	fp->f_flag |= (FMARK|FDEFER);
1056}
1057
1058static void
1059unp_discard(fp)
1060	struct file *fp;
1061{
1062
1063	fp->f_msgcount--;
1064	unp_rights--;
1065	(void) closef(fp, (struct proc *)NULL);
1066}
1067