xref: /freebsd/sys/kern/uipc_socket.c (revision 5521ff5a4d1929056e7ffc982fac3341ca54df7c)
1 /*
2  * Copyright (c) 1982, 1986, 1988, 1990, 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  *	@(#)uipc_socket.c	8.3 (Berkeley) 4/15/94
34  * $FreeBSD$
35  */
36 
37 #include "opt_inet.h"
38 
39 #include <sys/param.h>
40 #include <sys/systm.h>
41 #include <sys/fcntl.h>
42 #include <sys/lock.h>
43 #include <sys/malloc.h>
44 #include <sys/mbuf.h>
45 #include <sys/mutex.h>
46 #include <sys/domain.h>
47 #include <sys/file.h>			/* for struct knote */
48 #include <sys/kernel.h>
49 #include <sys/malloc.h>
50 #include <sys/event.h>
51 #include <sys/poll.h>
52 #include <sys/proc.h>
53 #include <sys/protosw.h>
54 #include <sys/socket.h>
55 #include <sys/socketvar.h>
56 #include <sys/resourcevar.h>
57 #include <sys/signalvar.h>
58 #include <sys/sysctl.h>
59 #include <sys/uio.h>
60 #include <sys/jail.h>
61 
62 #include <vm/vm_zone.h>
63 
64 #include <machine/limits.h>
65 
66 #ifdef INET
67 static int	 do_setopt_accept_filter(struct socket *so, struct sockopt *sopt);
68 #endif
69 
70 static void 	filt_sordetach(struct knote *kn);
71 static int 	filt_soread(struct knote *kn, long hint);
72 static void 	filt_sowdetach(struct knote *kn);
73 static int	filt_sowrite(struct knote *kn, long hint);
74 static int	filt_solisten(struct knote *kn, long hint);
75 
76 static struct filterops solisten_filtops =
77 	{ 1, NULL, filt_sordetach, filt_solisten };
78 static struct filterops soread_filtops =
79 	{ 1, NULL, filt_sordetach, filt_soread };
80 static struct filterops sowrite_filtops =
81 	{ 1, NULL, filt_sowdetach, filt_sowrite };
82 
83 struct	vm_zone *socket_zone;
84 so_gen_t	so_gencnt;	/* generation count for sockets */
85 
86 MALLOC_DEFINE(M_SONAME, "soname", "socket name");
87 MALLOC_DEFINE(M_PCB, "pcb", "protocol control block");
88 
89 SYSCTL_DECL(_kern_ipc);
90 
91 static int somaxconn = SOMAXCONN;
92 SYSCTL_INT(_kern_ipc, KIPC_SOMAXCONN, somaxconn, CTLFLAG_RW,
93     &somaxconn, 0, "Maximum pending socket connection queue size");
94 
95 /*
96  * Socket operation routines.
97  * These routines are called by the routines in
98  * sys_socket.c or from a system process, and
99  * implement the semantics of socket operations by
100  * switching out to the protocol specific routines.
101  */
102 
103 /*
104  * Get a socket structure from our zone, and initialize it.
105  * We don't implement `waitok' yet (see comments in uipc_domain.c).
106  * Note that it would probably be better to allocate socket
107  * and PCB at the same time, but I'm not convinced that all
108  * the protocols can be easily modified to do this.
109  */
110 struct socket *
111 soalloc(waitok)
112 	int waitok;
113 {
114 	struct socket *so;
115 
116 	so = zalloc(socket_zone);
117 	if (so) {
118 		/* XXX race condition for reentrant kernel */
119 		bzero(so, sizeof *so);
120 		so->so_gencnt = ++so_gencnt;
121 		so->so_zone = socket_zone;
122 		TAILQ_INIT(&so->so_aiojobq);
123 	}
124 	return so;
125 }
126 
127 int
128 socreate(dom, aso, type, proto, p)
129 	int dom;
130 	struct socket **aso;
131 	register int type;
132 	int proto;
133 	struct proc *p;
134 {
135 	register struct protosw *prp;
136 	register struct socket *so;
137 	register int error;
138 
139 	if (proto)
140 		prp = pffindproto(dom, proto, type);
141 	else
142 		prp = pffindtype(dom, type);
143 
144 	if (prp == 0 || prp->pr_usrreqs->pru_attach == 0)
145 		return (EPROTONOSUPPORT);
146 
147 	if (jailed(p->p_ucred) && jail_socket_unixiproute_only &&
148 	    prp->pr_domain->dom_family != PF_LOCAL &&
149 	    prp->pr_domain->dom_family != PF_INET &&
150 	    prp->pr_domain->dom_family != PF_ROUTE) {
151 		return (EPROTONOSUPPORT);
152 	}
153 
154 	if (prp->pr_type != type)
155 		return (EPROTOTYPE);
156 	so = soalloc(p != 0);
157 	if (so == 0)
158 		return (ENOBUFS);
159 
160 	TAILQ_INIT(&so->so_incomp);
161 	TAILQ_INIT(&so->so_comp);
162 	so->so_type = type;
163 	so->so_cred = p->p_ucred;
164 	crhold(so->so_cred);
165 	so->so_proto = prp;
166 	error = (*prp->pr_usrreqs->pru_attach)(so, proto, p);
167 	if (error) {
168 		so->so_state |= SS_NOFDREF;
169 		sofree(so);
170 		return (error);
171 	}
172 	*aso = so;
173 	return (0);
174 }
175 
176 int
177 sobind(so, nam, p)
178 	struct socket *so;
179 	struct sockaddr *nam;
180 	struct proc *p;
181 {
182 	int s = splnet();
183 	int error;
184 
185 	error = (*so->so_proto->pr_usrreqs->pru_bind)(so, nam, p);
186 	splx(s);
187 	return (error);
188 }
189 
190 void
191 sodealloc(so)
192 	struct socket *so;
193 {
194 
195 	so->so_gencnt = ++so_gencnt;
196 	if (so->so_rcv.sb_hiwat)
197 		(void)chgsbsize(so->so_cred->cr_uidinfo,
198 		    &so->so_rcv.sb_hiwat, 0, RLIM_INFINITY);
199 	if (so->so_snd.sb_hiwat)
200 		(void)chgsbsize(so->so_cred->cr_uidinfo,
201 		    &so->so_snd.sb_hiwat, 0, RLIM_INFINITY);
202 #ifdef INET
203 	if (so->so_accf != NULL) {
204 		if (so->so_accf->so_accept_filter != NULL &&
205 			so->so_accf->so_accept_filter->accf_destroy != NULL) {
206 			so->so_accf->so_accept_filter->accf_destroy(so);
207 		}
208 		if (so->so_accf->so_accept_filter_str != NULL)
209 			FREE(so->so_accf->so_accept_filter_str, M_ACCF);
210 		FREE(so->so_accf, M_ACCF);
211 	}
212 #endif
213 	crfree(so->so_cred);
214 	zfree(so->so_zone, so);
215 }
216 
217 int
218 solisten(so, backlog, p)
219 	register struct socket *so;
220 	int backlog;
221 	struct proc *p;
222 {
223 	int s, error;
224 
225 	s = splnet();
226 	error = (*so->so_proto->pr_usrreqs->pru_listen)(so, p);
227 	if (error) {
228 		splx(s);
229 		return (error);
230 	}
231 	if (TAILQ_EMPTY(&so->so_comp))
232 		so->so_options |= SO_ACCEPTCONN;
233 	if (backlog < 0 || backlog > somaxconn)
234 		backlog = somaxconn;
235 	so->so_qlimit = backlog;
236 	splx(s);
237 	return (0);
238 }
239 
240 void
241 sofree(so)
242 	register struct socket *so;
243 {
244 	struct socket *head = so->so_head;
245 
246 	if (so->so_pcb || (so->so_state & SS_NOFDREF) == 0)
247 		return;
248 	if (head != NULL) {
249 		if (so->so_state & SS_INCOMP) {
250 			TAILQ_REMOVE(&head->so_incomp, so, so_list);
251 			head->so_incqlen--;
252 		} else if (so->so_state & SS_COMP) {
253 			/*
254 			 * We must not decommission a socket that's
255 			 * on the accept(2) queue.  If we do, then
256 			 * accept(2) may hang after select(2) indicated
257 			 * that the listening socket was ready.
258 			 */
259 			return;
260 		} else {
261 			panic("sofree: not queued");
262 		}
263 		head->so_qlen--;
264 		so->so_state &= ~SS_INCOMP;
265 		so->so_head = NULL;
266 	}
267 	sbrelease(&so->so_snd, so);
268 	sorflush(so);
269 	sodealloc(so);
270 }
271 
272 /*
273  * Close a socket on last file table reference removal.
274  * Initiate disconnect if connected.
275  * Free socket when disconnect complete.
276  */
277 int
278 soclose(so)
279 	register struct socket *so;
280 {
281 	int s = splnet();		/* conservative */
282 	int error = 0;
283 
284 	funsetown(so->so_sigio);
285 	if (so->so_options & SO_ACCEPTCONN) {
286 		struct socket *sp, *sonext;
287 
288 		sp = TAILQ_FIRST(&so->so_incomp);
289 		for (; sp != NULL; sp = sonext) {
290 			sonext = TAILQ_NEXT(sp, so_list);
291 			(void) soabort(sp);
292 		}
293 		for (sp = TAILQ_FIRST(&so->so_comp); sp != NULL; sp = sonext) {
294 			sonext = TAILQ_NEXT(sp, so_list);
295 			/* Dequeue from so_comp since sofree() won't do it */
296 			TAILQ_REMOVE(&so->so_comp, sp, so_list);
297 			so->so_qlen--;
298 			sp->so_state &= ~SS_COMP;
299 			sp->so_head = NULL;
300 			(void) soabort(sp);
301 		}
302 	}
303 	if (so->so_pcb == 0)
304 		goto discard;
305 	if (so->so_state & SS_ISCONNECTED) {
306 		if ((so->so_state & SS_ISDISCONNECTING) == 0) {
307 			error = sodisconnect(so);
308 			if (error)
309 				goto drop;
310 		}
311 		if (so->so_options & SO_LINGER) {
312 			if ((so->so_state & SS_ISDISCONNECTING) &&
313 			    (so->so_state & SS_NBIO))
314 				goto drop;
315 			while (so->so_state & SS_ISCONNECTED) {
316 				error = tsleep((caddr_t)&so->so_timeo,
317 				    PSOCK | PCATCH, "soclos", so->so_linger * hz);
318 				if (error)
319 					break;
320 			}
321 		}
322 	}
323 drop:
324 	if (so->so_pcb) {
325 		int error2 = (*so->so_proto->pr_usrreqs->pru_detach)(so);
326 		if (error == 0)
327 			error = error2;
328 	}
329 discard:
330 	if (so->so_state & SS_NOFDREF)
331 		panic("soclose: NOFDREF");
332 	so->so_state |= SS_NOFDREF;
333 	sofree(so);
334 	splx(s);
335 	return (error);
336 }
337 
338 /*
339  * Must be called at splnet...
340  */
341 int
342 soabort(so)
343 	struct socket *so;
344 {
345 	int error;
346 
347 	error = (*so->so_proto->pr_usrreqs->pru_abort)(so);
348 	if (error) {
349 		sofree(so);
350 		return error;
351 	}
352 	return (0);
353 }
354 
355 int
356 soaccept(so, nam)
357 	register struct socket *so;
358 	struct sockaddr **nam;
359 {
360 	int s = splnet();
361 	int error;
362 
363 	if ((so->so_state & SS_NOFDREF) == 0)
364 		panic("soaccept: !NOFDREF");
365 	so->so_state &= ~SS_NOFDREF;
366 	error = (*so->so_proto->pr_usrreqs->pru_accept)(so, nam);
367 	splx(s);
368 	return (error);
369 }
370 
371 int
372 soconnect(so, nam, p)
373 	register struct socket *so;
374 	struct sockaddr *nam;
375 	struct proc *p;
376 {
377 	int s;
378 	int error;
379 
380 	if (so->so_options & SO_ACCEPTCONN)
381 		return (EOPNOTSUPP);
382 	s = splnet();
383 	/*
384 	 * If protocol is connection-based, can only connect once.
385 	 * Otherwise, if connected, try to disconnect first.
386 	 * This allows user to disconnect by connecting to, e.g.,
387 	 * a null address.
388 	 */
389 	if (so->so_state & (SS_ISCONNECTED|SS_ISCONNECTING) &&
390 	    ((so->so_proto->pr_flags & PR_CONNREQUIRED) ||
391 	    (error = sodisconnect(so))))
392 		error = EISCONN;
393 	else
394 		error = (*so->so_proto->pr_usrreqs->pru_connect)(so, nam, p);
395 	splx(s);
396 	return (error);
397 }
398 
399 int
400 soconnect2(so1, so2)
401 	register struct socket *so1;
402 	struct socket *so2;
403 {
404 	int s = splnet();
405 	int error;
406 
407 	error = (*so1->so_proto->pr_usrreqs->pru_connect2)(so1, so2);
408 	splx(s);
409 	return (error);
410 }
411 
412 int
413 sodisconnect(so)
414 	register struct socket *so;
415 {
416 	int s = splnet();
417 	int error;
418 
419 	if ((so->so_state & SS_ISCONNECTED) == 0) {
420 		error = ENOTCONN;
421 		goto bad;
422 	}
423 	if (so->so_state & SS_ISDISCONNECTING) {
424 		error = EALREADY;
425 		goto bad;
426 	}
427 	error = (*so->so_proto->pr_usrreqs->pru_disconnect)(so);
428 bad:
429 	splx(s);
430 	return (error);
431 }
432 
433 #define	SBLOCKWAIT(f)	(((f) & MSG_DONTWAIT) ? M_NOWAIT : M_WAITOK)
434 /*
435  * Send on a socket.
436  * If send must go all at once and message is larger than
437  * send buffering, then hard error.
438  * Lock against other senders.
439  * If must go all at once and not enough room now, then
440  * inform user that this would block and do nothing.
441  * Otherwise, if nonblocking, send as much as possible.
442  * The data to be sent is described by "uio" if nonzero,
443  * otherwise by the mbuf chain "top" (which must be null
444  * if uio is not).  Data provided in mbuf chain must be small
445  * enough to send all at once.
446  *
447  * Returns nonzero on error, timeout or signal; callers
448  * must check for short counts if EINTR/ERESTART are returned.
449  * Data and control buffers are freed on return.
450  */
451 int
452 sosend(so, addr, uio, top, control, flags, p)
453 	register struct socket *so;
454 	struct sockaddr *addr;
455 	struct uio *uio;
456 	struct mbuf *top;
457 	struct mbuf *control;
458 	int flags;
459 	struct proc *p;
460 {
461 	struct mbuf **mp;
462 	register struct mbuf *m;
463 	register long space, len, resid;
464 	int clen = 0, error, s, dontroute, mlen;
465 	int atomic = sosendallatonce(so) || top;
466 
467 	if (uio)
468 		resid = uio->uio_resid;
469 	else
470 		resid = top->m_pkthdr.len;
471 	/*
472 	 * In theory resid should be unsigned.
473 	 * However, space must be signed, as it might be less than 0
474 	 * if we over-committed, and we must use a signed comparison
475 	 * of space and resid.  On the other hand, a negative resid
476 	 * causes us to loop sending 0-length segments to the protocol.
477 	 *
478 	 * Also check to make sure that MSG_EOR isn't used on SOCK_STREAM
479 	 * type sockets since that's an error.
480 	 */
481 	if (resid < 0 || (so->so_type == SOCK_STREAM && (flags & MSG_EOR))) {
482 		error = EINVAL;
483 		goto out;
484 	}
485 
486 	dontroute =
487 	    (flags & MSG_DONTROUTE) && (so->so_options & SO_DONTROUTE) == 0 &&
488 	    (so->so_proto->pr_flags & PR_ATOMIC);
489 	if (p)
490 		p->p_stats->p_ru.ru_msgsnd++;
491 	if (control)
492 		clen = control->m_len;
493 #define	snderr(errno)	{ error = errno; splx(s); goto release; }
494 
495 restart:
496 	error = sblock(&so->so_snd, SBLOCKWAIT(flags));
497 	if (error)
498 		goto out;
499 	do {
500 		s = splnet();
501 		if (so->so_state & SS_CANTSENDMORE)
502 			snderr(EPIPE);
503 		if (so->so_error) {
504 			error = so->so_error;
505 			so->so_error = 0;
506 			splx(s);
507 			goto release;
508 		}
509 		if ((so->so_state & SS_ISCONNECTED) == 0) {
510 			/*
511 			 * `sendto' and `sendmsg' is allowed on a connection-
512 			 * based socket if it supports implied connect.
513 			 * Return ENOTCONN if not connected and no address is
514 			 * supplied.
515 			 */
516 			if ((so->so_proto->pr_flags & PR_CONNREQUIRED) &&
517 			    (so->so_proto->pr_flags & PR_IMPLOPCL) == 0) {
518 				if ((so->so_state & SS_ISCONFIRMING) == 0 &&
519 				    !(resid == 0 && clen != 0))
520 					snderr(ENOTCONN);
521 			} else if (addr == 0)
522 			    snderr(so->so_proto->pr_flags & PR_CONNREQUIRED ?
523 				   ENOTCONN : EDESTADDRREQ);
524 		}
525 		space = sbspace(&so->so_snd);
526 		if (flags & MSG_OOB)
527 			space += 1024;
528 		if ((atomic && resid > so->so_snd.sb_hiwat) ||
529 		    clen > so->so_snd.sb_hiwat)
530 			snderr(EMSGSIZE);
531 		if (space < resid + clen && uio &&
532 		    (atomic || space < so->so_snd.sb_lowat || space < clen)) {
533 			if (so->so_state & SS_NBIO)
534 				snderr(EWOULDBLOCK);
535 			sbunlock(&so->so_snd);
536 			error = sbwait(&so->so_snd);
537 			splx(s);
538 			if (error)
539 				goto out;
540 			goto restart;
541 		}
542 		splx(s);
543 		mp = &top;
544 		space -= clen;
545 		do {
546 		    if (uio == NULL) {
547 			/*
548 			 * Data is prepackaged in "top".
549 			 */
550 			resid = 0;
551 			if (flags & MSG_EOR)
552 				top->m_flags |= M_EOR;
553 		    } else do {
554 			if (top == 0) {
555 				MGETHDR(m, M_TRYWAIT, MT_DATA);
556 				if (m == NULL) {
557 					error = ENOBUFS;
558 					goto release;
559 				}
560 				mlen = MHLEN;
561 				m->m_pkthdr.len = 0;
562 				m->m_pkthdr.rcvif = (struct ifnet *)0;
563 			} else {
564 				MGET(m, M_TRYWAIT, MT_DATA);
565 				if (m == NULL) {
566 					error = ENOBUFS;
567 					goto release;
568 				}
569 				mlen = MLEN;
570 			}
571 			if (resid >= MINCLSIZE) {
572 				MCLGET(m, M_TRYWAIT);
573 				if ((m->m_flags & M_EXT) == 0)
574 					goto nopages;
575 				mlen = MCLBYTES;
576 				len = min(min(mlen, resid), space);
577 			} else {
578 nopages:
579 				len = min(min(mlen, resid), space);
580 				/*
581 				 * For datagram protocols, leave room
582 				 * for protocol headers in first mbuf.
583 				 */
584 				if (atomic && top == 0 && len < mlen)
585 					MH_ALIGN(m, len);
586 			}
587 			space -= len;
588 			error = uiomove(mtod(m, caddr_t), (int)len, uio);
589 			resid = uio->uio_resid;
590 			m->m_len = len;
591 			*mp = m;
592 			top->m_pkthdr.len += len;
593 			if (error)
594 				goto release;
595 			mp = &m->m_next;
596 			if (resid <= 0) {
597 				if (flags & MSG_EOR)
598 					top->m_flags |= M_EOR;
599 				break;
600 			}
601 		    } while (space > 0 && atomic);
602 		    if (dontroute)
603 			    so->so_options |= SO_DONTROUTE;
604 		    s = splnet();				/* XXX */
605 		    /*
606 		     * XXX all the SS_CANTSENDMORE checks previously
607 		     * done could be out of date.  We could have recieved
608 		     * a reset packet in an interrupt or maybe we slept
609 		     * while doing page faults in uiomove() etc. We could
610 		     * probably recheck again inside the splnet() protection
611 		     * here, but there are probably other places that this
612 		     * also happens.  We must rethink this.
613 		     */
614 		    error = (*so->so_proto->pr_usrreqs->pru_send)(so,
615 			(flags & MSG_OOB) ? PRUS_OOB :
616 			/*
617 			 * If the user set MSG_EOF, the protocol
618 			 * understands this flag and nothing left to
619 			 * send then use PRU_SEND_EOF instead of PRU_SEND.
620 			 */
621 			((flags & MSG_EOF) &&
622 			 (so->so_proto->pr_flags & PR_IMPLOPCL) &&
623 			 (resid <= 0)) ?
624 				PRUS_EOF :
625 			/* If there is more to send set PRUS_MORETOCOME */
626 			(resid > 0 && space > 0) ? PRUS_MORETOCOME : 0,
627 			top, addr, control, p);
628 		    splx(s);
629 		    if (dontroute)
630 			    so->so_options &= ~SO_DONTROUTE;
631 		    clen = 0;
632 		    control = 0;
633 		    top = 0;
634 		    mp = &top;
635 		    if (error)
636 			goto release;
637 		} while (resid && space > 0);
638 	} while (resid);
639 
640 release:
641 	sbunlock(&so->so_snd);
642 out:
643 	if (top)
644 		m_freem(top);
645 	if (control)
646 		m_freem(control);
647 	return (error);
648 }
649 
650 /*
651  * Implement receive operations on a socket.
652  * We depend on the way that records are added to the sockbuf
653  * by sbappend*.  In particular, each record (mbufs linked through m_next)
654  * must begin with an address if the protocol so specifies,
655  * followed by an optional mbuf or mbufs containing ancillary data,
656  * and then zero or more mbufs of data.
657  * In order to avoid blocking network interrupts for the entire time here,
658  * we splx() while doing the actual copy to user space.
659  * Although the sockbuf is locked, new data may still be appended,
660  * and thus we must maintain consistency of the sockbuf during that time.
661  *
662  * The caller may receive the data as a single mbuf chain by supplying
663  * an mbuf **mp0 for use in returning the chain.  The uio is then used
664  * only for the count in uio_resid.
665  */
666 int
667 soreceive(so, psa, uio, mp0, controlp, flagsp)
668 	register struct socket *so;
669 	struct sockaddr **psa;
670 	struct uio *uio;
671 	struct mbuf **mp0;
672 	struct mbuf **controlp;
673 	int *flagsp;
674 {
675 	register struct mbuf *m, **mp;
676 	register int flags, len, error, s, offset;
677 	struct protosw *pr = so->so_proto;
678 	struct mbuf *nextrecord;
679 	int moff, type = 0;
680 	int orig_resid = uio->uio_resid;
681 
682 	mp = mp0;
683 	if (psa)
684 		*psa = 0;
685 	if (controlp)
686 		*controlp = 0;
687 	if (flagsp)
688 		flags = *flagsp &~ MSG_EOR;
689 	else
690 		flags = 0;
691 	if (flags & MSG_OOB) {
692 		m = m_get(M_TRYWAIT, MT_DATA);
693 		if (m == NULL)
694 			return (ENOBUFS);
695 		error = (*pr->pr_usrreqs->pru_rcvoob)(so, m, flags & MSG_PEEK);
696 		if (error)
697 			goto bad;
698 		do {
699 			error = uiomove(mtod(m, caddr_t),
700 			    (int) min(uio->uio_resid, m->m_len), uio);
701 			m = m_free(m);
702 		} while (uio->uio_resid && error == 0 && m);
703 bad:
704 		if (m)
705 			m_freem(m);
706 		return (error);
707 	}
708 	if (mp)
709 		*mp = (struct mbuf *)0;
710 	if (so->so_state & SS_ISCONFIRMING && uio->uio_resid)
711 		(*pr->pr_usrreqs->pru_rcvd)(so, 0);
712 
713 restart:
714 	error = sblock(&so->so_rcv, SBLOCKWAIT(flags));
715 	if (error)
716 		return (error);
717 	s = splnet();
718 
719 	m = so->so_rcv.sb_mb;
720 	/*
721 	 * If we have less data than requested, block awaiting more
722 	 * (subject to any timeout) if:
723 	 *   1. the current count is less than the low water mark, or
724 	 *   2. MSG_WAITALL is set, and it is possible to do the entire
725 	 *	receive operation at once if we block (resid <= hiwat).
726 	 *   3. MSG_DONTWAIT is not set
727 	 * If MSG_WAITALL is set but resid is larger than the receive buffer,
728 	 * we have to do the receive in sections, and thus risk returning
729 	 * a short count if a timeout or signal occurs after we start.
730 	 */
731 	if (m == 0 || (((flags & MSG_DONTWAIT) == 0 &&
732 	    so->so_rcv.sb_cc < uio->uio_resid) &&
733 	    (so->so_rcv.sb_cc < so->so_rcv.sb_lowat ||
734 	    ((flags & MSG_WAITALL) && uio->uio_resid <= so->so_rcv.sb_hiwat)) &&
735 	    m->m_nextpkt == 0 && (pr->pr_flags & PR_ATOMIC) == 0)) {
736 		KASSERT(m != 0 || !so->so_rcv.sb_cc,
737 		    ("receive: m == %p so->so_rcv.sb_cc == %lu",
738 		    m, so->so_rcv.sb_cc));
739 		if (so->so_error) {
740 			if (m)
741 				goto dontblock;
742 			error = so->so_error;
743 			if ((flags & MSG_PEEK) == 0)
744 				so->so_error = 0;
745 			goto release;
746 		}
747 		if (so->so_state & SS_CANTRCVMORE) {
748 			if (m)
749 				goto dontblock;
750 			else
751 				goto release;
752 		}
753 		for (; m; m = m->m_next)
754 			if (m->m_type == MT_OOBDATA  || (m->m_flags & M_EOR)) {
755 				m = so->so_rcv.sb_mb;
756 				goto dontblock;
757 			}
758 		if ((so->so_state & (SS_ISCONNECTED|SS_ISCONNECTING)) == 0 &&
759 		    (so->so_proto->pr_flags & PR_CONNREQUIRED)) {
760 			error = ENOTCONN;
761 			goto release;
762 		}
763 		if (uio->uio_resid == 0)
764 			goto release;
765 		if ((so->so_state & SS_NBIO) || (flags & MSG_DONTWAIT)) {
766 			error = EWOULDBLOCK;
767 			goto release;
768 		}
769 		sbunlock(&so->so_rcv);
770 		error = sbwait(&so->so_rcv);
771 		splx(s);
772 		if (error)
773 			return (error);
774 		goto restart;
775 	}
776 dontblock:
777 	if (uio->uio_procp)
778 		uio->uio_procp->p_stats->p_ru.ru_msgrcv++;
779 	nextrecord = m->m_nextpkt;
780 	if (pr->pr_flags & PR_ADDR) {
781 		KASSERT(m->m_type == MT_SONAME, ("receive 1a"));
782 		orig_resid = 0;
783 		if (psa)
784 			*psa = dup_sockaddr(mtod(m, struct sockaddr *),
785 					    mp0 == 0);
786 		if (flags & MSG_PEEK) {
787 			m = m->m_next;
788 		} else {
789 			sbfree(&so->so_rcv, m);
790 			MFREE(m, so->so_rcv.sb_mb);
791 			m = so->so_rcv.sb_mb;
792 		}
793 	}
794 	while (m && m->m_type == MT_CONTROL && error == 0) {
795 		if (flags & MSG_PEEK) {
796 			if (controlp)
797 				*controlp = m_copy(m, 0, m->m_len);
798 			m = m->m_next;
799 		} else {
800 			sbfree(&so->so_rcv, m);
801 			if (controlp) {
802 				if (pr->pr_domain->dom_externalize &&
803 				    mtod(m, struct cmsghdr *)->cmsg_type ==
804 				    SCM_RIGHTS)
805 				   error = (*pr->pr_domain->dom_externalize)(m);
806 				*controlp = m;
807 				so->so_rcv.sb_mb = m->m_next;
808 				m->m_next = 0;
809 				m = so->so_rcv.sb_mb;
810 			} else {
811 				MFREE(m, so->so_rcv.sb_mb);
812 				m = so->so_rcv.sb_mb;
813 			}
814 		}
815 		if (controlp) {
816 			orig_resid = 0;
817 			controlp = &(*controlp)->m_next;
818 		}
819 	}
820 	if (m) {
821 		if ((flags & MSG_PEEK) == 0)
822 			m->m_nextpkt = nextrecord;
823 		type = m->m_type;
824 		if (type == MT_OOBDATA)
825 			flags |= MSG_OOB;
826 	}
827 	moff = 0;
828 	offset = 0;
829 	while (m && uio->uio_resid > 0 && error == 0) {
830 		if (m->m_type == MT_OOBDATA) {
831 			if (type != MT_OOBDATA)
832 				break;
833 		} else if (type == MT_OOBDATA)
834 			break;
835 		else
836 		    KASSERT(m->m_type == MT_DATA || m->m_type == MT_HEADER,
837 			("receive 3"));
838 		so->so_state &= ~SS_RCVATMARK;
839 		len = uio->uio_resid;
840 		if (so->so_oobmark && len > so->so_oobmark - offset)
841 			len = so->so_oobmark - offset;
842 		if (len > m->m_len - moff)
843 			len = m->m_len - moff;
844 		/*
845 		 * If mp is set, just pass back the mbufs.
846 		 * Otherwise copy them out via the uio, then free.
847 		 * Sockbuf must be consistent here (points to current mbuf,
848 		 * it points to next record) when we drop priority;
849 		 * we must note any additions to the sockbuf when we
850 		 * block interrupts again.
851 		 */
852 		if (mp == 0) {
853 			splx(s);
854 			error = uiomove(mtod(m, caddr_t) + moff, (int)len, uio);
855 			s = splnet();
856 			if (error)
857 				goto release;
858 		} else
859 			uio->uio_resid -= len;
860 		if (len == m->m_len - moff) {
861 			if (m->m_flags & M_EOR)
862 				flags |= MSG_EOR;
863 			if (flags & MSG_PEEK) {
864 				m = m->m_next;
865 				moff = 0;
866 			} else {
867 				nextrecord = m->m_nextpkt;
868 				sbfree(&so->so_rcv, m);
869 				if (mp) {
870 					*mp = m;
871 					mp = &m->m_next;
872 					so->so_rcv.sb_mb = m = m->m_next;
873 					*mp = (struct mbuf *)0;
874 				} else {
875 					MFREE(m, so->so_rcv.sb_mb);
876 					m = so->so_rcv.sb_mb;
877 				}
878 				if (m)
879 					m->m_nextpkt = nextrecord;
880 			}
881 		} else {
882 			if (flags & MSG_PEEK)
883 				moff += len;
884 			else {
885 				if (mp)
886 					*mp = m_copym(m, 0, len, M_TRYWAIT);
887 				m->m_data += len;
888 				m->m_len -= len;
889 				so->so_rcv.sb_cc -= len;
890 			}
891 		}
892 		if (so->so_oobmark) {
893 			if ((flags & MSG_PEEK) == 0) {
894 				so->so_oobmark -= len;
895 				if (so->so_oobmark == 0) {
896 					so->so_state |= SS_RCVATMARK;
897 					break;
898 				}
899 			} else {
900 				offset += len;
901 				if (offset == so->so_oobmark)
902 					break;
903 			}
904 		}
905 		if (flags & MSG_EOR)
906 			break;
907 		/*
908 		 * If the MSG_WAITALL flag is set (for non-atomic socket),
909 		 * we must not quit until "uio->uio_resid == 0" or an error
910 		 * termination.  If a signal/timeout occurs, return
911 		 * with a short count but without error.
912 		 * Keep sockbuf locked against other readers.
913 		 */
914 		while (flags & MSG_WAITALL && m == 0 && uio->uio_resid > 0 &&
915 		    !sosendallatonce(so) && !nextrecord) {
916 			if (so->so_error || so->so_state & SS_CANTRCVMORE)
917 				break;
918 			/*
919 			 * Notify the protocol that some data has been
920 			 * drained before blocking.
921 			 */
922 			if (pr->pr_flags & PR_WANTRCVD && so->so_pcb)
923 				(*pr->pr_usrreqs->pru_rcvd)(so, flags);
924 			error = sbwait(&so->so_rcv);
925 			if (error) {
926 				sbunlock(&so->so_rcv);
927 				splx(s);
928 				return (0);
929 			}
930 			m = so->so_rcv.sb_mb;
931 			if (m)
932 				nextrecord = m->m_nextpkt;
933 		}
934 	}
935 
936 	if (m && pr->pr_flags & PR_ATOMIC) {
937 		flags |= MSG_TRUNC;
938 		if ((flags & MSG_PEEK) == 0)
939 			(void) sbdroprecord(&so->so_rcv);
940 	}
941 	if ((flags & MSG_PEEK) == 0) {
942 		if (m == 0)
943 			so->so_rcv.sb_mb = nextrecord;
944 		if (pr->pr_flags & PR_WANTRCVD && so->so_pcb)
945 			(*pr->pr_usrreqs->pru_rcvd)(so, flags);
946 	}
947 	if (orig_resid == uio->uio_resid && orig_resid &&
948 	    (flags & MSG_EOR) == 0 && (so->so_state & SS_CANTRCVMORE) == 0) {
949 		sbunlock(&so->so_rcv);
950 		splx(s);
951 		goto restart;
952 	}
953 
954 	if (flagsp)
955 		*flagsp |= flags;
956 release:
957 	sbunlock(&so->so_rcv);
958 	splx(s);
959 	return (error);
960 }
961 
962 int
963 soshutdown(so, how)
964 	register struct socket *so;
965 	register int how;
966 {
967 	register struct protosw *pr = so->so_proto;
968 
969 	if (!(how == SHUT_RD || how == SHUT_WR || how == SHUT_RDWR))
970 		return (EINVAL);
971 
972 	if (how != SHUT_WR)
973 		sorflush(so);
974 	if (how != SHUT_RD)
975 		return ((*pr->pr_usrreqs->pru_shutdown)(so));
976 	return (0);
977 }
978 
979 void
980 sorflush(so)
981 	register struct socket *so;
982 {
983 	register struct sockbuf *sb = &so->so_rcv;
984 	register struct protosw *pr = so->so_proto;
985 	register int s;
986 	struct sockbuf asb;
987 
988 	sb->sb_flags |= SB_NOINTR;
989 	(void) sblock(sb, M_WAITOK);
990 	s = splimp();
991 	socantrcvmore(so);
992 	sbunlock(sb);
993 	asb = *sb;
994 	bzero((caddr_t)sb, sizeof (*sb));
995 	splx(s);
996 	if (pr->pr_flags & PR_RIGHTS && pr->pr_domain->dom_dispose)
997 		(*pr->pr_domain->dom_dispose)(asb.sb_mb);
998 	sbrelease(&asb, so);
999 }
1000 
1001 #ifdef INET
1002 static int
1003 do_setopt_accept_filter(so, sopt)
1004 	struct	socket *so;
1005 	struct	sockopt *sopt;
1006 {
1007 	struct accept_filter_arg	*afap = NULL;
1008 	struct accept_filter	*afp;
1009 	struct so_accf	*af = so->so_accf;
1010 	int	error = 0;
1011 
1012 	/* do not set/remove accept filters on non listen sockets */
1013 	if ((so->so_options & SO_ACCEPTCONN) == 0) {
1014 		error = EINVAL;
1015 		goto out;
1016 	}
1017 
1018 	/* removing the filter */
1019 	if (sopt == NULL) {
1020 		if (af != NULL) {
1021 			if (af->so_accept_filter != NULL &&
1022 				af->so_accept_filter->accf_destroy != NULL) {
1023 				af->so_accept_filter->accf_destroy(so);
1024 			}
1025 			if (af->so_accept_filter_str != NULL) {
1026 				FREE(af->so_accept_filter_str, M_ACCF);
1027 			}
1028 			FREE(af, M_ACCF);
1029 			so->so_accf = NULL;
1030 		}
1031 		so->so_options &= ~SO_ACCEPTFILTER;
1032 		return (0);
1033 	}
1034 	/* adding a filter */
1035 	/* must remove previous filter first */
1036 	if (af != NULL) {
1037 		error = EINVAL;
1038 		goto out;
1039 	}
1040 	/* don't put large objects on the kernel stack */
1041 	MALLOC(afap, struct accept_filter_arg *, sizeof(*afap), M_TEMP, M_WAITOK);
1042 	error = sooptcopyin(sopt, afap, sizeof *afap, sizeof *afap);
1043 	afap->af_name[sizeof(afap->af_name)-1] = '\0';
1044 	afap->af_arg[sizeof(afap->af_arg)-1] = '\0';
1045 	if (error)
1046 		goto out;
1047 	afp = accept_filt_get(afap->af_name);
1048 	if (afp == NULL) {
1049 		error = ENOENT;
1050 		goto out;
1051 	}
1052 	MALLOC(af, struct so_accf *, sizeof(*af), M_ACCF, M_WAITOK | M_ZERO);
1053 	if (afp->accf_create != NULL) {
1054 		if (afap->af_name[0] != '\0') {
1055 			int len = strlen(afap->af_name) + 1;
1056 
1057 			MALLOC(af->so_accept_filter_str, char *, len, M_ACCF, M_WAITOK);
1058 			strcpy(af->so_accept_filter_str, afap->af_name);
1059 		}
1060 		af->so_accept_filter_arg = afp->accf_create(so, afap->af_arg);
1061 		if (af->so_accept_filter_arg == NULL) {
1062 			FREE(af->so_accept_filter_str, M_ACCF);
1063 			FREE(af, M_ACCF);
1064 			so->so_accf = NULL;
1065 			error = EINVAL;
1066 			goto out;
1067 		}
1068 	}
1069 	af->so_accept_filter = afp;
1070 	so->so_accf = af;
1071 	so->so_options |= SO_ACCEPTFILTER;
1072 out:
1073 	if (afap != NULL)
1074 		FREE(afap, M_TEMP);
1075 	return (error);
1076 }
1077 #endif /* INET */
1078 
1079 /*
1080  * Perhaps this routine, and sooptcopyout(), below, ought to come in
1081  * an additional variant to handle the case where the option value needs
1082  * to be some kind of integer, but not a specific size.
1083  * In addition to their use here, these functions are also called by the
1084  * protocol-level pr_ctloutput() routines.
1085  */
1086 int
1087 sooptcopyin(sopt, buf, len, minlen)
1088 	struct	sockopt *sopt;
1089 	void	*buf;
1090 	size_t	len;
1091 	size_t	minlen;
1092 {
1093 	size_t	valsize;
1094 
1095 	/*
1096 	 * If the user gives us more than we wanted, we ignore it,
1097 	 * but if we don't get the minimum length the caller
1098 	 * wants, we return EINVAL.  On success, sopt->sopt_valsize
1099 	 * is set to however much we actually retrieved.
1100 	 */
1101 	if ((valsize = sopt->sopt_valsize) < minlen)
1102 		return EINVAL;
1103 	if (valsize > len)
1104 		sopt->sopt_valsize = valsize = len;
1105 
1106 	if (sopt->sopt_p != 0)
1107 		return (copyin(sopt->sopt_val, buf, valsize));
1108 
1109 	bcopy(sopt->sopt_val, buf, valsize);
1110 	return 0;
1111 }
1112 
1113 int
1114 sosetopt(so, sopt)
1115 	struct socket *so;
1116 	struct sockopt *sopt;
1117 {
1118 	int	error, optval;
1119 	struct	linger l;
1120 	struct	timeval tv;
1121 	u_long  val;
1122 
1123 	error = 0;
1124 	if (sopt->sopt_level != SOL_SOCKET) {
1125 		if (so->so_proto && so->so_proto->pr_ctloutput)
1126 			return ((*so->so_proto->pr_ctloutput)
1127 				  (so, sopt));
1128 		error = ENOPROTOOPT;
1129 	} else {
1130 		switch (sopt->sopt_name) {
1131 #ifdef INET
1132 		case SO_ACCEPTFILTER:
1133 			error = do_setopt_accept_filter(so, sopt);
1134 			if (error)
1135 				goto bad;
1136 			break;
1137 #endif
1138 		case SO_LINGER:
1139 			error = sooptcopyin(sopt, &l, sizeof l, sizeof l);
1140 			if (error)
1141 				goto bad;
1142 
1143 			so->so_linger = l.l_linger;
1144 			if (l.l_onoff)
1145 				so->so_options |= SO_LINGER;
1146 			else
1147 				so->so_options &= ~SO_LINGER;
1148 			break;
1149 
1150 		case SO_DEBUG:
1151 		case SO_KEEPALIVE:
1152 		case SO_DONTROUTE:
1153 		case SO_USELOOPBACK:
1154 		case SO_BROADCAST:
1155 		case SO_REUSEADDR:
1156 		case SO_REUSEPORT:
1157 		case SO_OOBINLINE:
1158 		case SO_TIMESTAMP:
1159 			error = sooptcopyin(sopt, &optval, sizeof optval,
1160 					    sizeof optval);
1161 			if (error)
1162 				goto bad;
1163 			if (optval)
1164 				so->so_options |= sopt->sopt_name;
1165 			else
1166 				so->so_options &= ~sopt->sopt_name;
1167 			break;
1168 
1169 		case SO_SNDBUF:
1170 		case SO_RCVBUF:
1171 		case SO_SNDLOWAT:
1172 		case SO_RCVLOWAT:
1173 			error = sooptcopyin(sopt, &optval, sizeof optval,
1174 					    sizeof optval);
1175 			if (error)
1176 				goto bad;
1177 
1178 			/*
1179 			 * Values < 1 make no sense for any of these
1180 			 * options, so disallow them.
1181 			 */
1182 			if (optval < 1) {
1183 				error = EINVAL;
1184 				goto bad;
1185 			}
1186 
1187 			switch (sopt->sopt_name) {
1188 			case SO_SNDBUF:
1189 			case SO_RCVBUF:
1190 				if (sbreserve(sopt->sopt_name == SO_SNDBUF ?
1191 				    &so->so_snd : &so->so_rcv, (u_long)optval,
1192 				    so, curproc) == 0) {
1193 					error = ENOBUFS;
1194 					goto bad;
1195 				}
1196 				break;
1197 
1198 			/*
1199 			 * Make sure the low-water is never greater than
1200 			 * the high-water.
1201 			 */
1202 			case SO_SNDLOWAT:
1203 				so->so_snd.sb_lowat =
1204 				    (optval > so->so_snd.sb_hiwat) ?
1205 				    so->so_snd.sb_hiwat : optval;
1206 				break;
1207 			case SO_RCVLOWAT:
1208 				so->so_rcv.sb_lowat =
1209 				    (optval > so->so_rcv.sb_hiwat) ?
1210 				    so->so_rcv.sb_hiwat : optval;
1211 				break;
1212 			}
1213 			break;
1214 
1215 		case SO_SNDTIMEO:
1216 		case SO_RCVTIMEO:
1217 			error = sooptcopyin(sopt, &tv, sizeof tv,
1218 					    sizeof tv);
1219 			if (error)
1220 				goto bad;
1221 
1222 			/* assert(hz > 0); */
1223 			if (tv.tv_sec < 0 || tv.tv_sec > SHRT_MAX / hz ||
1224 			    tv.tv_usec < 0 || tv.tv_usec >= 1000000) {
1225 				error = EDOM;
1226 				goto bad;
1227 			}
1228 			/* assert(tick > 0); */
1229 			/* assert(ULONG_MAX - SHRT_MAX >= 1000000); */
1230 			val = (u_long)(tv.tv_sec * hz) + tv.tv_usec / tick;
1231 			if (val > SHRT_MAX) {
1232 				error = EDOM;
1233 				goto bad;
1234 			}
1235 
1236 			switch (sopt->sopt_name) {
1237 			case SO_SNDTIMEO:
1238 				so->so_snd.sb_timeo = val;
1239 				break;
1240 			case SO_RCVTIMEO:
1241 				so->so_rcv.sb_timeo = val;
1242 				break;
1243 			}
1244 			break;
1245 		default:
1246 			error = ENOPROTOOPT;
1247 			break;
1248 		}
1249 		if (error == 0 && so->so_proto && so->so_proto->pr_ctloutput) {
1250 			(void) ((*so->so_proto->pr_ctloutput)
1251 				  (so, sopt));
1252 		}
1253 	}
1254 bad:
1255 	return (error);
1256 }
1257 
1258 /* Helper routine for getsockopt */
1259 int
1260 sooptcopyout(sopt, buf, len)
1261 	struct	sockopt *sopt;
1262 	void	*buf;
1263 	size_t	len;
1264 {
1265 	int	error;
1266 	size_t	valsize;
1267 
1268 	error = 0;
1269 
1270 	/*
1271 	 * Documented get behavior is that we always return a value,
1272 	 * possibly truncated to fit in the user's buffer.
1273 	 * Traditional behavior is that we always tell the user
1274 	 * precisely how much we copied, rather than something useful
1275 	 * like the total amount we had available for her.
1276 	 * Note that this interface is not idempotent; the entire answer must
1277 	 * generated ahead of time.
1278 	 */
1279 	valsize = min(len, sopt->sopt_valsize);
1280 	sopt->sopt_valsize = valsize;
1281 	if (sopt->sopt_val != 0) {
1282 		if (sopt->sopt_p != 0)
1283 			error = copyout(buf, sopt->sopt_val, valsize);
1284 		else
1285 			bcopy(buf, sopt->sopt_val, valsize);
1286 	}
1287 	return error;
1288 }
1289 
1290 int
1291 sogetopt(so, sopt)
1292 	struct socket *so;
1293 	struct sockopt *sopt;
1294 {
1295 	int	error, optval;
1296 	struct	linger l;
1297 	struct	timeval tv;
1298 #ifdef INET
1299 	struct accept_filter_arg *afap;
1300 #endif
1301 
1302 	error = 0;
1303 	if (sopt->sopt_level != SOL_SOCKET) {
1304 		if (so->so_proto && so->so_proto->pr_ctloutput) {
1305 			return ((*so->so_proto->pr_ctloutput)
1306 				  (so, sopt));
1307 		} else
1308 			return (ENOPROTOOPT);
1309 	} else {
1310 		switch (sopt->sopt_name) {
1311 #ifdef INET
1312 		case SO_ACCEPTFILTER:
1313 			if ((so->so_options & SO_ACCEPTCONN) == 0)
1314 				return (EINVAL);
1315 			MALLOC(afap, struct accept_filter_arg *, sizeof(*afap),
1316 				M_TEMP, M_WAITOK | M_ZERO);
1317 			if ((so->so_options & SO_ACCEPTFILTER) != 0) {
1318 				strcpy(afap->af_name, so->so_accf->so_accept_filter->accf_name);
1319 				if (so->so_accf->so_accept_filter_str != NULL)
1320 					strcpy(afap->af_arg, so->so_accf->so_accept_filter_str);
1321 			}
1322 			error = sooptcopyout(sopt, afap, sizeof(*afap));
1323 			FREE(afap, M_TEMP);
1324 			break;
1325 #endif
1326 
1327 		case SO_LINGER:
1328 			l.l_onoff = so->so_options & SO_LINGER;
1329 			l.l_linger = so->so_linger;
1330 			error = sooptcopyout(sopt, &l, sizeof l);
1331 			break;
1332 
1333 		case SO_USELOOPBACK:
1334 		case SO_DONTROUTE:
1335 		case SO_DEBUG:
1336 		case SO_KEEPALIVE:
1337 		case SO_REUSEADDR:
1338 		case SO_REUSEPORT:
1339 		case SO_BROADCAST:
1340 		case SO_OOBINLINE:
1341 		case SO_TIMESTAMP:
1342 			optval = so->so_options & sopt->sopt_name;
1343 integer:
1344 			error = sooptcopyout(sopt, &optval, sizeof optval);
1345 			break;
1346 
1347 		case SO_TYPE:
1348 			optval = so->so_type;
1349 			goto integer;
1350 
1351 		case SO_ERROR:
1352 			optval = so->so_error;
1353 			so->so_error = 0;
1354 			goto integer;
1355 
1356 		case SO_SNDBUF:
1357 			optval = so->so_snd.sb_hiwat;
1358 			goto integer;
1359 
1360 		case SO_RCVBUF:
1361 			optval = so->so_rcv.sb_hiwat;
1362 			goto integer;
1363 
1364 		case SO_SNDLOWAT:
1365 			optval = so->so_snd.sb_lowat;
1366 			goto integer;
1367 
1368 		case SO_RCVLOWAT:
1369 			optval = so->so_rcv.sb_lowat;
1370 			goto integer;
1371 
1372 		case SO_SNDTIMEO:
1373 		case SO_RCVTIMEO:
1374 			optval = (sopt->sopt_name == SO_SNDTIMEO ?
1375 				  so->so_snd.sb_timeo : so->so_rcv.sb_timeo);
1376 
1377 			tv.tv_sec = optval / hz;
1378 			tv.tv_usec = (optval % hz) * tick;
1379 			error = sooptcopyout(sopt, &tv, sizeof tv);
1380 			break;
1381 
1382 		default:
1383 			error = ENOPROTOOPT;
1384 			break;
1385 		}
1386 		return (error);
1387 	}
1388 }
1389 
1390 /* XXX; prepare mbuf for (__FreeBSD__ < 3) routines. */
1391 int
1392 soopt_getm(struct sockopt *sopt, struct mbuf **mp)
1393 {
1394 	struct mbuf *m, *m_prev;
1395 	int sopt_size = sopt->sopt_valsize;
1396 
1397 	MGET(m, sopt->sopt_p ? M_TRYWAIT : M_DONTWAIT, MT_DATA);
1398 	if (m == 0)
1399 		return ENOBUFS;
1400 	if (sopt_size > MLEN) {
1401 		MCLGET(m, sopt->sopt_p ? M_TRYWAIT : M_DONTWAIT);
1402 		if ((m->m_flags & M_EXT) == 0) {
1403 			m_free(m);
1404 			return ENOBUFS;
1405 		}
1406 		m->m_len = min(MCLBYTES, sopt_size);
1407 	} else {
1408 		m->m_len = min(MLEN, sopt_size);
1409 	}
1410 	sopt_size -= m->m_len;
1411 	*mp = m;
1412 	m_prev = m;
1413 
1414 	while (sopt_size) {
1415 		MGET(m, sopt->sopt_p ? M_TRYWAIT : M_DONTWAIT, MT_DATA);
1416 		if (m == 0) {
1417 			m_freem(*mp);
1418 			return ENOBUFS;
1419 		}
1420 		if (sopt_size > MLEN) {
1421 			MCLGET(m, sopt->sopt_p ? M_TRYWAIT : M_DONTWAIT);
1422 			if ((m->m_flags & M_EXT) == 0) {
1423 				m_freem(*mp);
1424 				return ENOBUFS;
1425 			}
1426 			m->m_len = min(MCLBYTES, sopt_size);
1427 		} else {
1428 			m->m_len = min(MLEN, sopt_size);
1429 		}
1430 		sopt_size -= m->m_len;
1431 		m_prev->m_next = m;
1432 		m_prev = m;
1433 	}
1434 	return 0;
1435 }
1436 
1437 /* XXX; copyin sopt data into mbuf chain for (__FreeBSD__ < 3) routines. */
1438 int
1439 soopt_mcopyin(struct sockopt *sopt, struct mbuf *m)
1440 {
1441 	struct mbuf *m0 = m;
1442 
1443 	if (sopt->sopt_val == NULL)
1444 		return 0;
1445 	while (m != NULL && sopt->sopt_valsize >= m->m_len) {
1446 		if (sopt->sopt_p != NULL) {
1447 			int error;
1448 
1449 			error = copyin(sopt->sopt_val, mtod(m, char *),
1450 				       m->m_len);
1451 			if (error != 0) {
1452 				m_freem(m0);
1453 				return(error);
1454 			}
1455 		} else
1456 			bcopy(sopt->sopt_val, mtod(m, char *), m->m_len);
1457 		sopt->sopt_valsize -= m->m_len;
1458 		(caddr_t)sopt->sopt_val += m->m_len;
1459 		m = m->m_next;
1460 	}
1461 	if (m != NULL) /* should be allocated enoughly at ip6_sooptmcopyin() */
1462 		panic("ip6_sooptmcopyin");
1463 	return 0;
1464 }
1465 
1466 /* XXX; copyout mbuf chain data into soopt for (__FreeBSD__ < 3) routines. */
1467 int
1468 soopt_mcopyout(struct sockopt *sopt, struct mbuf *m)
1469 {
1470 	struct mbuf *m0 = m;
1471 	size_t valsize = 0;
1472 
1473 	if (sopt->sopt_val == NULL)
1474 		return 0;
1475 	while (m != NULL && sopt->sopt_valsize >= m->m_len) {
1476 		if (sopt->sopt_p != NULL) {
1477 			int error;
1478 
1479 			error = copyout(mtod(m, char *), sopt->sopt_val,
1480 				       m->m_len);
1481 			if (error != 0) {
1482 				m_freem(m0);
1483 				return(error);
1484 			}
1485 		} else
1486 			bcopy(mtod(m, char *), sopt->sopt_val, m->m_len);
1487 	       sopt->sopt_valsize -= m->m_len;
1488 	       (caddr_t)sopt->sopt_val += m->m_len;
1489 	       valsize += m->m_len;
1490 	       m = m->m_next;
1491 	}
1492 	if (m != NULL) {
1493 		/* enough soopt buffer should be given from user-land */
1494 		m_freem(m0);
1495 		return(EINVAL);
1496 	}
1497 	sopt->sopt_valsize = valsize;
1498 	return 0;
1499 }
1500 
1501 void
1502 sohasoutofband(so)
1503 	register struct socket *so;
1504 {
1505 	if (so->so_sigio != NULL)
1506 		pgsigio(so->so_sigio, SIGURG, 0);
1507 	selwakeup(&so->so_rcv.sb_sel);
1508 }
1509 
1510 int
1511 sopoll(struct socket *so, int events, struct ucred *cred, struct proc *p)
1512 {
1513 	int revents = 0;
1514 	int s = splnet();
1515 
1516 	if (events & (POLLIN | POLLRDNORM))
1517 		if (soreadable(so))
1518 			revents |= events & (POLLIN | POLLRDNORM);
1519 
1520 	if (events & (POLLOUT | POLLWRNORM))
1521 		if (sowriteable(so))
1522 			revents |= events & (POLLOUT | POLLWRNORM);
1523 
1524 	if (events & (POLLPRI | POLLRDBAND))
1525 		if (so->so_oobmark || (so->so_state & SS_RCVATMARK))
1526 			revents |= events & (POLLPRI | POLLRDBAND);
1527 
1528 	if (revents == 0) {
1529 		if (events & (POLLIN | POLLPRI | POLLRDNORM | POLLRDBAND)) {
1530 			selrecord(p, &so->so_rcv.sb_sel);
1531 			so->so_rcv.sb_flags |= SB_SEL;
1532 		}
1533 
1534 		if (events & (POLLOUT | POLLWRNORM)) {
1535 			selrecord(p, &so->so_snd.sb_sel);
1536 			so->so_snd.sb_flags |= SB_SEL;
1537 		}
1538 	}
1539 
1540 	splx(s);
1541 	return (revents);
1542 }
1543 
1544 int
1545 sokqfilter(struct file *fp, struct knote *kn)
1546 {
1547 	struct socket *so = (struct socket *)kn->kn_fp->f_data;
1548 	struct sockbuf *sb;
1549 	int s;
1550 
1551 	switch (kn->kn_filter) {
1552 	case EVFILT_READ:
1553 		if (so->so_options & SO_ACCEPTCONN)
1554 			kn->kn_fop = &solisten_filtops;
1555 		else
1556 			kn->kn_fop = &soread_filtops;
1557 		sb = &so->so_rcv;
1558 		break;
1559 	case EVFILT_WRITE:
1560 		kn->kn_fop = &sowrite_filtops;
1561 		sb = &so->so_snd;
1562 		break;
1563 	default:
1564 		return (1);
1565 	}
1566 
1567 	s = splnet();
1568 	SLIST_INSERT_HEAD(&sb->sb_sel.si_note, kn, kn_selnext);
1569 	sb->sb_flags |= SB_KNOTE;
1570 	splx(s);
1571 	return (0);
1572 }
1573 
1574 static void
1575 filt_sordetach(struct knote *kn)
1576 {
1577 	struct socket *so = (struct socket *)kn->kn_fp->f_data;
1578 	int s = splnet();
1579 
1580 	SLIST_REMOVE(&so->so_rcv.sb_sel.si_note, kn, knote, kn_selnext);
1581 	if (SLIST_EMPTY(&so->so_rcv.sb_sel.si_note))
1582 		so->so_rcv.sb_flags &= ~SB_KNOTE;
1583 	splx(s);
1584 }
1585 
1586 /*ARGSUSED*/
1587 static int
1588 filt_soread(struct knote *kn, long hint)
1589 {
1590 	struct socket *so = (struct socket *)kn->kn_fp->f_data;
1591 
1592 	kn->kn_data = so->so_rcv.sb_cc;
1593 	if (so->so_state & SS_CANTRCVMORE) {
1594 		kn->kn_flags |= EV_EOF;
1595 		kn->kn_fflags = so->so_error;
1596 		return (1);
1597 	}
1598 	if (so->so_error)	/* temporary udp error */
1599 		return (1);
1600 	if (kn->kn_sfflags & NOTE_LOWAT)
1601 		return (kn->kn_data >= kn->kn_sdata);
1602 	return (kn->kn_data >= so->so_rcv.sb_lowat);
1603 }
1604 
1605 static void
1606 filt_sowdetach(struct knote *kn)
1607 {
1608 	struct socket *so = (struct socket *)kn->kn_fp->f_data;
1609 	int s = splnet();
1610 
1611 	SLIST_REMOVE(&so->so_snd.sb_sel.si_note, kn, knote, kn_selnext);
1612 	if (SLIST_EMPTY(&so->so_snd.sb_sel.si_note))
1613 		so->so_snd.sb_flags &= ~SB_KNOTE;
1614 	splx(s);
1615 }
1616 
1617 /*ARGSUSED*/
1618 static int
1619 filt_sowrite(struct knote *kn, long hint)
1620 {
1621 	struct socket *so = (struct socket *)kn->kn_fp->f_data;
1622 
1623 	kn->kn_data = sbspace(&so->so_snd);
1624 	if (so->so_state & SS_CANTSENDMORE) {
1625 		kn->kn_flags |= EV_EOF;
1626 		kn->kn_fflags = so->so_error;
1627 		return (1);
1628 	}
1629 	if (so->so_error)	/* temporary udp error */
1630 		return (1);
1631 	if (((so->so_state & SS_ISCONNECTED) == 0) &&
1632 	    (so->so_proto->pr_flags & PR_CONNREQUIRED))
1633 		return (0);
1634 	if (kn->kn_sfflags & NOTE_LOWAT)
1635 		return (kn->kn_data >= kn->kn_sdata);
1636 	return (kn->kn_data >= so->so_snd.sb_lowat);
1637 }
1638 
1639 /*ARGSUSED*/
1640 static int
1641 filt_solisten(struct knote *kn, long hint)
1642 {
1643 	struct socket *so = (struct socket *)kn->kn_fp->f_data;
1644 
1645 	kn->kn_data = so->so_qlen - so->so_incqlen;
1646 	return (! TAILQ_EMPTY(&so->so_comp));
1647 }
1648