udp: Prepare for the asynchronized pru_send 2
[dragonfly.git] / sys / kern / uipc_socket.c
1 /*
2  * Copyright (c) 2004 Jeffrey M. Hsu.  All rights reserved.
3  * Copyright (c) 2004 The DragonFly Project.  All rights reserved.
4  * 
5  * This code is derived from software contributed to The DragonFly Project
6  * by Jeffrey M. Hsu.
7  * 
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. Neither the name of The DragonFly Project nor the names of its
17  *    contributors may be used to endorse or promote products derived
18  *    from this software without specific, prior written permission.
19  * 
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
24  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
25  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
26  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
27  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
28  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
29  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
30  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  */
33
34 /*
35  * Copyright (c) 1982, 1986, 1988, 1990, 1993
36  *      The Regents of the University of California.  All rights reserved.
37  *
38  * Redistribution and use in source and binary forms, with or without
39  * modification, are permitted provided that the following conditions
40  * are met:
41  * 1. Redistributions of source code must retain the above copyright
42  *    notice, this list of conditions and the following disclaimer.
43  * 2. Redistributions in binary form must reproduce the above copyright
44  *    notice, this list of conditions and the following disclaimer in the
45  *    documentation and/or other materials provided with the distribution.
46  * 3. All advertising materials mentioning features or use of this software
47  *    must display the following acknowledgement:
48  *      This product includes software developed by the University of
49  *      California, Berkeley and its contributors.
50  * 4. Neither the name of the University nor the names of its contributors
51  *    may be used to endorse or promote products derived from this software
52  *    without specific prior written permission.
53  *
54  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
55  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
56  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
57  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
58  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
59  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
60  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
61  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
62  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
63  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
64  * SUCH DAMAGE.
65  *
66  *      @(#)uipc_socket.c       8.3 (Berkeley) 4/15/94
67  * $FreeBSD: src/sys/kern/uipc_socket.c,v 1.68.2.24 2003/11/11 17:18:18 silby Exp $
68  */
69
70 #include "opt_inet.h"
71 #include "opt_sctp.h"
72
73 #include <sys/param.h>
74 #include <sys/systm.h>
75 #include <sys/fcntl.h>
76 #include <sys/malloc.h>
77 #include <sys/mbuf.h>
78 #include <sys/domain.h>
79 #include <sys/file.h>                   /* for struct knote */
80 #include <sys/kernel.h>
81 #include <sys/event.h>
82 #include <sys/proc.h>
83 #include <sys/protosw.h>
84 #include <sys/socket.h>
85 #include <sys/socketvar.h>
86 #include <sys/socketops.h>
87 #include <sys/resourcevar.h>
88 #include <sys/signalvar.h>
89 #include <sys/sysctl.h>
90 #include <sys/uio.h>
91 #include <sys/jail.h>
92 #include <vm/vm_zone.h>
93 #include <vm/pmap.h>
94 #include <net/netmsg2.h>
95
96 #include <sys/thread2.h>
97 #include <sys/socketvar2.h>
98
99 #include <machine/limits.h>
100
101 extern int tcp_sosnd_agglim;
102 extern int tcp_sosnd_async;
103
104 #ifdef INET
105 static int       do_setopt_accept_filter(struct socket *so, struct sockopt *sopt);
106 #endif /* INET */
107
108 static void     filt_sordetach(struct knote *kn);
109 static int      filt_soread(struct knote *kn, long hint);
110 static void     filt_sowdetach(struct knote *kn);
111 static int      filt_sowrite(struct knote *kn, long hint);
112 static int      filt_solisten(struct knote *kn, long hint);
113
114 static void     sodiscard(struct socket *so);
115 static int      soclose_sync(struct socket *so, int fflag);
116 static void     soclose_fast(struct socket *so);
117
118 static struct filterops solisten_filtops = 
119         { FILTEROP_ISFD|FILTEROP_MPSAFE, NULL, filt_sordetach, filt_solisten };
120 static struct filterops soread_filtops =
121         { FILTEROP_ISFD|FILTEROP_MPSAFE, NULL, filt_sordetach, filt_soread };
122 static struct filterops sowrite_filtops = 
123         { FILTEROP_ISFD|FILTEROP_MPSAFE, NULL, filt_sowdetach, filt_sowrite };
124 static struct filterops soexcept_filtops =
125         { FILTEROP_ISFD|FILTEROP_MPSAFE, NULL, filt_sordetach, filt_soread };
126
127 MALLOC_DEFINE(M_SOCKET, "socket", "socket struct");
128 MALLOC_DEFINE(M_SONAME, "soname", "socket name");
129 MALLOC_DEFINE(M_PCB, "pcb", "protocol control block");
130
131
132 static int somaxconn = SOMAXCONN;
133 SYSCTL_INT(_kern_ipc, KIPC_SOMAXCONN, somaxconn, CTLFLAG_RW,
134     &somaxconn, 0, "Maximum pending socket connection queue size");
135
136 static int use_soclose_fast = 1;
137 SYSCTL_INT(_kern_ipc, OID_AUTO, soclose_fast, CTLFLAG_RW,
138     &use_soclose_fast, 0, "Fast socket close");
139
140 int use_soaccept_pred_fast = 1;
141 SYSCTL_INT(_kern_ipc, OID_AUTO, soaccept_pred_fast, CTLFLAG_RW,
142     &use_soaccept_pred_fast, 0, "Fast socket accept predication");
143
144 /*
145  * Socket operation routines.
146  * These routines are called by the routines in
147  * sys_socket.c or from a system process, and
148  * implement the semantics of socket operations by
149  * switching out to the protocol specific routines.
150  */
151
152 /*
153  * Get a socket structure, and initialize it.
154  * Note that it would probably be better to allocate socket
155  * and PCB at the same time, but I'm not convinced that all
156  * the protocols can be easily modified to do this.
157  */
158 struct socket *
159 soalloc(int waitok)
160 {
161         struct socket *so;
162         unsigned waitmask;
163
164         waitmask = waitok ? M_WAITOK : M_NOWAIT;
165         so = kmalloc(sizeof(struct socket), M_SOCKET, M_ZERO|waitmask);
166         if (so) {
167                 /* XXX race condition for reentrant kernel */
168                 TAILQ_INIT(&so->so_aiojobq);
169                 TAILQ_INIT(&so->so_rcv.ssb_kq.ki_mlist);
170                 TAILQ_INIT(&so->so_snd.ssb_kq.ki_mlist);
171                 lwkt_token_init(&so->so_rcv.ssb_token, "rcvtok");
172                 lwkt_token_init(&so->so_snd.ssb_token, "sndtok");
173                 so->so_state = SS_NOFDREF;
174                 so->so_refs = 1;
175         }
176         return so;
177 }
178
179 int
180 socreate(int dom, struct socket **aso, int type,
181         int proto, struct thread *td)
182 {
183         struct proc *p = td->td_proc;
184         struct protosw *prp;
185         struct socket *so;
186         struct pru_attach_info ai;
187         int error;
188
189         if (proto)
190                 prp = pffindproto(dom, proto, type);
191         else
192                 prp = pffindtype(dom, type);
193
194         if (prp == 0 || prp->pr_usrreqs->pru_attach == 0)
195                 return (EPROTONOSUPPORT);
196
197         if (p->p_ucred->cr_prison && jail_socket_unixiproute_only &&
198             prp->pr_domain->dom_family != PF_LOCAL &&
199             prp->pr_domain->dom_family != PF_INET &&
200             prp->pr_domain->dom_family != PF_INET6 &&
201             prp->pr_domain->dom_family != PF_ROUTE) {
202                 return (EPROTONOSUPPORT);
203         }
204
205         if (prp->pr_type != type)
206                 return (EPROTOTYPE);
207         so = soalloc(p != 0);
208         if (so == NULL)
209                 return (ENOBUFS);
210
211         /*
212          * Callers of socreate() presumably will connect up a descriptor
213          * and call soclose() if they cannot.  This represents our so_refs
214          * (which should be 1) from soalloc().
215          */
216         soclrstate(so, SS_NOFDREF);
217
218         /*
219          * Set a default port for protocol processing.  No action will occur
220          * on the socket on this port until an inpcb is attached to it and
221          * is able to match incoming packets, or until the socket becomes
222          * available to userland.
223          *
224          * We normally default the socket to the protocol thread on cpu 0.
225          * If PR_SYNC_PORT is set (unix domain sockets) there is no protocol
226          * thread and all pr_*()/pru_*() calls are executed synchronously.
227          */
228         if (prp->pr_flags & PR_SYNC_PORT)
229                 so->so_port = &netisr_sync_port;
230         else
231                 so->so_port = cpu_portfn(0);
232
233         TAILQ_INIT(&so->so_incomp);
234         TAILQ_INIT(&so->so_comp);
235         so->so_type = type;
236         so->so_cred = crhold(p->p_ucred);
237         so->so_proto = prp;
238         ai.sb_rlimit = &p->p_rlimit[RLIMIT_SBSIZE];
239         ai.p_ucred = p->p_ucred;
240         ai.fd_rdir = p->p_fd->fd_rdir;
241
242         /*
243          * Auto-sizing of socket buffers is managed by the protocols and
244          * the appropriate flags must be set in the pru_attach function.
245          */
246         error = so_pru_attach(so, proto, &ai);
247         if (error) {
248                 sosetstate(so, SS_NOFDREF);
249                 sofree(so);     /* from soalloc */
250                 return error;
251         }
252
253         /*
254          * NOTE: Returns referenced socket.
255          */
256         *aso = so;
257         return (0);
258 }
259
260 int
261 sobind(struct socket *so, struct sockaddr *nam, struct thread *td)
262 {
263         int error;
264
265         error = so_pru_bind(so, nam, td);
266         return (error);
267 }
268
269 static void
270 sodealloc(struct socket *so)
271 {
272         if (so->so_rcv.ssb_hiwat)
273                 (void)chgsbsize(so->so_cred->cr_uidinfo,
274                     &so->so_rcv.ssb_hiwat, 0, RLIM_INFINITY);
275         if (so->so_snd.ssb_hiwat)
276                 (void)chgsbsize(so->so_cred->cr_uidinfo,
277                     &so->so_snd.ssb_hiwat, 0, RLIM_INFINITY);
278 #ifdef INET
279         /* remove accept filter if present */
280         if (so->so_accf != NULL)
281                 do_setopt_accept_filter(so, NULL);
282 #endif /* INET */
283         crfree(so->so_cred);
284         if (so->so_faddr != NULL)
285                 kfree(so->so_faddr, M_SONAME);
286         kfree(so, M_SOCKET);
287 }
288
289 int
290 solisten(struct socket *so, int backlog, struct thread *td)
291 {
292         int error;
293 #ifdef SCTP
294         short oldopt, oldqlimit;
295 #endif /* SCTP */
296
297         if (so->so_state & (SS_ISCONNECTED | SS_ISCONNECTING))
298                 return (EINVAL);
299
300 #ifdef SCTP
301         oldopt = so->so_options;
302         oldqlimit = so->so_qlimit;
303 #endif /* SCTP */
304
305         lwkt_gettoken(&so->so_rcv.ssb_token);
306         if (TAILQ_EMPTY(&so->so_comp))
307                 so->so_options |= SO_ACCEPTCONN;
308         lwkt_reltoken(&so->so_rcv.ssb_token);
309         if (backlog < 0 || backlog > somaxconn)
310                 backlog = somaxconn;
311         so->so_qlimit = backlog;
312         /* SCTP needs to look at tweak both the inbound backlog parameter AND
313          * the so_options (UDP model both connect's and gets inbound
314          * connections .. implicitly).
315          */
316         error = so_pru_listen(so, td);
317         if (error) {
318 #ifdef SCTP
319                 /* Restore the params */
320                 so->so_options = oldopt;
321                 so->so_qlimit = oldqlimit;
322 #endif /* SCTP */
323                 return (error);
324         }
325         return (0);
326 }
327
328 /*
329  * Destroy a disconnected socket.  This routine is a NOP if entities
330  * still have a reference on the socket:
331  *
332  *      so_pcb -        The protocol stack still has a reference
333  *      SS_NOFDREF -    There is no longer a file pointer reference
334  */
335 void
336 sofree(struct socket *so)
337 {
338         struct socket *head;
339
340         /*
341          * This is a bit hackish at the moment.  We need to interlock
342          * any accept queue we are on before we potentially lose the
343          * last reference to avoid races against a re-reference from
344          * someone operating on the queue.
345          */
346         while ((head = so->so_head) != NULL) {
347                 lwkt_getpooltoken(head);
348                 if (so->so_head == head)
349                         break;
350                 lwkt_relpooltoken(head);
351         }
352
353         /*
354          * Arbitrage the last free.
355          */
356         KKASSERT(so->so_refs > 0);
357         if (atomic_fetchadd_int(&so->so_refs, -1) != 1) {
358                 if (head)
359                         lwkt_relpooltoken(head);
360                 return;
361         }
362
363         KKASSERT(so->so_pcb == NULL && (so->so_state & SS_NOFDREF));
364         KKASSERT((so->so_state & SS_ASSERTINPROG) == 0);
365
366         /*
367          * We're done, remove ourselves from the accept queue we are
368          * on, if we are on one.
369          */
370         if (head != NULL) {
371                 if (so->so_state & SS_INCOMP) {
372                         TAILQ_REMOVE(&head->so_incomp, so, so_list);
373                         head->so_incqlen--;
374                 } else if (so->so_state & SS_COMP) {
375                         /*
376                          * We must not decommission a socket that's
377                          * on the accept(2) queue.  If we do, then
378                          * accept(2) may hang after select(2) indicated
379                          * that the listening socket was ready.
380                          */
381                         lwkt_relpooltoken(head);
382                         return;
383                 } else {
384                         panic("sofree: not queued");
385                 }
386                 soclrstate(so, SS_INCOMP);
387                 so->so_head = NULL;
388                 lwkt_relpooltoken(head);
389         }
390         ssb_release(&so->so_snd, so);
391         sorflush(so);
392         sodealloc(so);
393 }
394
395 /*
396  * Close a socket on last file table reference removal.
397  * Initiate disconnect if connected.
398  * Free socket when disconnect complete.
399  */
400 int
401 soclose(struct socket *so, int fflag)
402 {
403         int error;
404
405         funsetown(&so->so_sigio);
406         if (!use_soclose_fast ||
407             (so->so_proto->pr_flags & PR_SYNC_PORT) ||
408             (so->so_options & SO_LINGER)) {
409                 error = soclose_sync(so, fflag);
410         } else {
411                 soclose_fast(so);
412                 error = 0;
413         }
414         return error;
415 }
416
417 static void
418 sodiscard(struct socket *so)
419 {
420         lwkt_getpooltoken(so);
421         if (so->so_options & SO_ACCEPTCONN) {
422                 struct socket *sp;
423
424                 while ((sp = TAILQ_FIRST(&so->so_incomp)) != NULL) {
425                         TAILQ_REMOVE(&so->so_incomp, sp, so_list);
426                         soclrstate(sp, SS_INCOMP);
427                         sp->so_head = NULL;
428                         so->so_incqlen--;
429                         soaborta(sp);
430                 }
431                 while ((sp = TAILQ_FIRST(&so->so_comp)) != NULL) {
432                         TAILQ_REMOVE(&so->so_comp, sp, so_list);
433                         soclrstate(sp, SS_COMP);
434                         sp->so_head = NULL;
435                         so->so_qlen--;
436                         soaborta(sp);
437                 }
438         }
439         lwkt_relpooltoken(so);
440
441         if (so->so_state & SS_NOFDREF)
442                 panic("soclose: NOFDREF");
443         sosetstate(so, SS_NOFDREF);     /* take ref */
444 }
445
446 static int
447 soclose_sync(struct socket *so, int fflag)
448 {
449         int error = 0;
450
451         if (so->so_pcb == NULL)
452                 goto discard;
453         if (so->so_state & SS_ISCONNECTED) {
454                 if ((so->so_state & SS_ISDISCONNECTING) == 0) {
455                         error = sodisconnect(so);
456                         if (error)
457                                 goto drop;
458                 }
459                 if (so->so_options & SO_LINGER) {
460                         if ((so->so_state & SS_ISDISCONNECTING) &&
461                             (fflag & FNONBLOCK))
462                                 goto drop;
463                         while (so->so_state & SS_ISCONNECTED) {
464                                 error = tsleep(&so->so_timeo, PCATCH,
465                                                "soclos", so->so_linger * hz);
466                                 if (error)
467                                         break;
468                         }
469                 }
470         }
471 drop:
472         if (so->so_pcb) {
473                 int error2;
474
475                 error2 = so_pru_detach(so);
476                 if (error == 0)
477                         error = error2;
478         }
479 discard:
480         sodiscard(so);
481         so_pru_sync(so);        /* unpend async sending */
482         sofree(so);             /* dispose of ref */
483
484         return (error);
485 }
486
487 static void
488 soclose_sofree_async_handler(netmsg_t msg)
489 {
490         sofree(msg->base.nm_so);
491 }
492
493 static void
494 soclose_sofree_async(struct socket *so)
495 {
496         struct netmsg_base *base = &so->so_clomsg;
497
498         netmsg_init(base, so, &netisr_apanic_rport, 0,
499             soclose_sofree_async_handler);
500         lwkt_sendmsg(so->so_port, &base->lmsg);
501 }
502
503 static void
504 soclose_disconn_async_handler(netmsg_t msg)
505 {
506         struct socket *so = msg->base.nm_so;
507
508         if ((so->so_state & SS_ISCONNECTED) &&
509             (so->so_state & SS_ISDISCONNECTING) == 0)
510                 so_pru_disconnect_direct(so);
511
512         if (so->so_pcb)
513                 so_pru_detach_direct(so);
514
515         sodiscard(so);
516         sofree(so);
517 }
518
519 static void
520 soclose_disconn_async(struct socket *so)
521 {
522         struct netmsg_base *base = &so->so_clomsg;
523
524         netmsg_init(base, so, &netisr_apanic_rport, 0,
525             soclose_disconn_async_handler);
526         lwkt_sendmsg(so->so_port, &base->lmsg);
527 }
528
529 static void
530 soclose_detach_async_handler(netmsg_t msg)
531 {
532         struct socket *so = msg->base.nm_so;
533
534         if (so->so_pcb)
535                 so_pru_detach_direct(so);
536
537         sodiscard(so);
538         sofree(so);
539 }
540
541 static void
542 soclose_detach_async(struct socket *so)
543 {
544         struct netmsg_base *base = &so->so_clomsg;
545
546         netmsg_init(base, so, &netisr_apanic_rport, 0,
547             soclose_detach_async_handler);
548         lwkt_sendmsg(so->so_port, &base->lmsg);
549 }
550
551 static void
552 soclose_fast(struct socket *so)
553 {
554         if (so->so_pcb == NULL)
555                 goto discard;
556
557         if ((so->so_state & SS_ISCONNECTED) &&
558             (so->so_state & SS_ISDISCONNECTING) == 0) {
559                 soclose_disconn_async(so);
560                 return;
561         }
562
563         if (so->so_pcb) {
564                 soclose_detach_async(so);
565                 return;
566         }
567
568 discard:
569         sodiscard(so);
570         soclose_sofree_async(so);
571 }
572
573 /*
574  * Abort and destroy a socket.  Only one abort can be in progress
575  * at any given moment.
576  */
577 void
578 soabort(struct socket *so)
579 {
580         soreference(so);
581         so_pru_abort(so);
582 }
583
584 void
585 soaborta(struct socket *so)
586 {
587         soreference(so);
588         so_pru_aborta(so);
589 }
590
591 void
592 soabort_oncpu(struct socket *so)
593 {
594         soreference(so);
595         so_pru_abort_oncpu(so);
596 }
597
598 /*
599  * so is passed in ref'd, which becomes owned by
600  * the cleared SS_NOFDREF flag.
601  */
602 void
603 soaccept_generic(struct socket *so)
604 {
605         if ((so->so_state & SS_NOFDREF) == 0)
606                 panic("soaccept: !NOFDREF");
607         soclrstate(so, SS_NOFDREF);     /* owned by lack of SS_NOFDREF */
608 }
609
610 int
611 soaccept(struct socket *so, struct sockaddr **nam)
612 {
613         int error;
614
615         soaccept_generic(so);
616         error = so_pru_accept(so, nam);
617         return (error);
618 }
619
620 int
621 soconnect(struct socket *so, struct sockaddr *nam, struct thread *td)
622 {
623         int error;
624
625         if (so->so_options & SO_ACCEPTCONN)
626                 return (EOPNOTSUPP);
627         /*
628          * If protocol is connection-based, can only connect once.
629          * Otherwise, if connected, try to disconnect first.
630          * This allows user to disconnect by connecting to, e.g.,
631          * a null address.
632          */
633         if (so->so_state & (SS_ISCONNECTED|SS_ISCONNECTING) &&
634             ((so->so_proto->pr_flags & PR_CONNREQUIRED) ||
635             (error = sodisconnect(so)))) {
636                 error = EISCONN;
637         } else {
638                 /*
639                  * Prevent accumulated error from previous connection
640                  * from biting us.
641                  */
642                 so->so_error = 0;
643                 error = so_pru_connect(so, nam, td);
644         }
645         return (error);
646 }
647
648 int
649 soconnect2(struct socket *so1, struct socket *so2)
650 {
651         int error;
652
653         error = so_pru_connect2(so1, so2);
654         return (error);
655 }
656
657 int
658 sodisconnect(struct socket *so)
659 {
660         int error;
661
662         if ((so->so_state & SS_ISCONNECTED) == 0) {
663                 error = ENOTCONN;
664                 goto bad;
665         }
666         if (so->so_state & SS_ISDISCONNECTING) {
667                 error = EALREADY;
668                 goto bad;
669         }
670         error = so_pru_disconnect(so);
671 bad:
672         return (error);
673 }
674
675 #define SBLOCKWAIT(f)   (((f) & MSG_DONTWAIT) ? M_NOWAIT : M_WAITOK)
676 /*
677  * Send on a socket.
678  * If send must go all at once and message is larger than
679  * send buffering, then hard error.
680  * Lock against other senders.
681  * If must go all at once and not enough room now, then
682  * inform user that this would block and do nothing.
683  * Otherwise, if nonblocking, send as much as possible.
684  * The data to be sent is described by "uio" if nonzero,
685  * otherwise by the mbuf chain "top" (which must be null
686  * if uio is not).  Data provided in mbuf chain must be small
687  * enough to send all at once.
688  *
689  * Returns nonzero on error, timeout or signal; callers
690  * must check for short counts if EINTR/ERESTART are returned.
691  * Data and control buffers are freed on return.
692  */
693 int
694 sosend(struct socket *so, struct sockaddr *addr, struct uio *uio,
695         struct mbuf *top, struct mbuf *control, int flags,
696         struct thread *td)
697 {
698         struct mbuf **mp;
699         struct mbuf *m;
700         size_t resid;
701         int space, len;
702         int clen = 0, error, dontroute, mlen;
703         int atomic = sosendallatonce(so) || top;
704         int pru_flags;
705
706         if (uio) {
707                 resid = uio->uio_resid;
708         } else {
709                 resid = (size_t)top->m_pkthdr.len;
710 #ifdef INVARIANTS
711                 len = 0;
712                 for (m = top; m; m = m->m_next)
713                         len += m->m_len;
714                 KKASSERT(top->m_pkthdr.len == len);
715 #endif
716         }
717
718         /*
719          * WARNING!  resid is unsigned, space and len are signed.  space
720          *           can wind up negative if the sockbuf is overcommitted.
721          *
722          * Also check to make sure that MSG_EOR isn't used on SOCK_STREAM
723          * type sockets since that's an error.
724          */
725         if (so->so_type == SOCK_STREAM && (flags & MSG_EOR)) {
726                 error = EINVAL;
727                 goto out;
728         }
729
730         dontroute =
731             (flags & MSG_DONTROUTE) && (so->so_options & SO_DONTROUTE) == 0 &&
732             (so->so_proto->pr_flags & PR_ATOMIC);
733         if (td->td_lwp != NULL)
734                 td->td_lwp->lwp_ru.ru_msgsnd++;
735         if (control)
736                 clen = control->m_len;
737 #define gotoerr(errcode)        { error = errcode; goto release; }
738
739 restart:
740         error = ssb_lock(&so->so_snd, SBLOCKWAIT(flags));
741         if (error)
742                 goto out;
743
744         do {
745                 if (so->so_state & SS_CANTSENDMORE)
746                         gotoerr(EPIPE);
747                 if (so->so_error) {
748                         error = so->so_error;
749                         so->so_error = 0;
750                         goto release;
751                 }
752                 if ((so->so_state & SS_ISCONNECTED) == 0) {
753                         /*
754                          * `sendto' and `sendmsg' is allowed on a connection-
755                          * based socket if it supports implied connect.
756                          * Return ENOTCONN if not connected and no address is
757                          * supplied.
758                          */
759                         if ((so->so_proto->pr_flags & PR_CONNREQUIRED) &&
760                             (so->so_proto->pr_flags & PR_IMPLOPCL) == 0) {
761                                 if ((so->so_state & SS_ISCONFIRMING) == 0 &&
762                                     !(resid == 0 && clen != 0))
763                                         gotoerr(ENOTCONN);
764                         } else if (addr == 0)
765                             gotoerr(so->so_proto->pr_flags & PR_CONNREQUIRED ?
766                                    ENOTCONN : EDESTADDRREQ);
767                 }
768                 if ((atomic && resid > so->so_snd.ssb_hiwat) ||
769                     clen > so->so_snd.ssb_hiwat) {
770                         gotoerr(EMSGSIZE);
771                 }
772                 space = ssb_space(&so->so_snd);
773                 if (flags & MSG_OOB)
774                         space += 1024;
775                 if ((space < 0 || (size_t)space < resid + clen) && uio &&
776                     (atomic || space < so->so_snd.ssb_lowat || space < clen)) {
777                         if (flags & (MSG_FNONBLOCKING|MSG_DONTWAIT))
778                                 gotoerr(EWOULDBLOCK);
779                         ssb_unlock(&so->so_snd);
780                         error = ssb_wait(&so->so_snd);
781                         if (error)
782                                 goto out;
783                         goto restart;
784                 }
785                 mp = &top;
786                 space -= clen;
787                 do {
788                     if (uio == NULL) {
789                         /*
790                          * Data is prepackaged in "top".
791                          */
792                         resid = 0;
793                         if (flags & MSG_EOR)
794                                 top->m_flags |= M_EOR;
795                     } else do {
796                         if (resid > INT_MAX)
797                                 resid = INT_MAX;
798                         m = m_getl((int)resid, MB_WAIT, MT_DATA,
799                                    top == NULL ? M_PKTHDR : 0, &mlen);
800                         if (top == NULL) {
801                                 m->m_pkthdr.len = 0;
802                                 m->m_pkthdr.rcvif = NULL;
803                         }
804                         len = imin((int)szmin(mlen, resid), space);
805                         if (resid < MINCLSIZE) {
806                                 /*
807                                  * For datagram protocols, leave room
808                                  * for protocol headers in first mbuf.
809                                  */
810                                 if (atomic && top == 0 && len < mlen)
811                                         MH_ALIGN(m, len);
812                         }
813                         space -= len;
814                         error = uiomove(mtod(m, caddr_t), (size_t)len, uio);
815                         resid = uio->uio_resid;
816                         m->m_len = len;
817                         *mp = m;
818                         top->m_pkthdr.len += len;
819                         if (error)
820                                 goto release;
821                         mp = &m->m_next;
822                         if (resid == 0) {
823                                 if (flags & MSG_EOR)
824                                         top->m_flags |= M_EOR;
825                                 break;
826                         }
827                     } while (space > 0 && atomic);
828                     if (dontroute)
829                             so->so_options |= SO_DONTROUTE;
830                     if (flags & MSG_OOB) {
831                             pru_flags = PRUS_OOB;
832                     } else if ((flags & MSG_EOF) &&
833                                (so->so_proto->pr_flags & PR_IMPLOPCL) &&
834                                (resid == 0)) {
835                             /*
836                              * If the user set MSG_EOF, the protocol
837                              * understands this flag and nothing left to
838                              * send then use PRU_SEND_EOF instead of PRU_SEND.
839                              */
840                             pru_flags = PRUS_EOF;
841                     } else if (resid > 0 && space > 0) {
842                             /* If there is more to send, set PRUS_MORETOCOME */
843                             pru_flags = PRUS_MORETOCOME;
844                     } else {
845                             pru_flags = 0;
846                     }
847                     /*
848                      * XXX all the SS_CANTSENDMORE checks previously
849                      * done could be out of date.  We could have recieved
850                      * a reset packet in an interrupt or maybe we slept
851                      * while doing page faults in uiomove() etc. We could
852                      * probably recheck again inside the splnet() protection
853                      * here, but there are probably other places that this
854                      * also happens.  We must rethink this.
855                      */
856                     error = so_pru_send(so, pru_flags, top, addr, control, td);
857                     if (dontroute)
858                             so->so_options &= ~SO_DONTROUTE;
859                     clen = 0;
860                     control = 0;
861                     top = NULL;
862                     mp = &top;
863                     if (error)
864                             goto release;
865                 } while (resid && space > 0);
866         } while (resid);
867
868 release:
869         ssb_unlock(&so->so_snd);
870 out:
871         if (top)
872                 m_freem(top);
873         if (control)
874                 m_freem(control);
875         return (error);
876 }
877
878 /*
879  * A specialization of sosend() for UDP based on protocol-specific knowledge:
880  *   so->so_proto->pr_flags has the PR_ATOMIC field set.  This means that
881  *      sosendallatonce() returns true,
882  *      the "atomic" variable is true,
883  *      and sosendudp() blocks until space is available for the entire send.
884  *   so->so_proto->pr_flags does not have the PR_CONNREQUIRED or
885  *      PR_IMPLOPCL flags set.
886  *   UDP has no out-of-band data.
887  *   UDP has no control data.
888  *   UDP does not support MSG_EOR.
889  */
890 int
891 sosendudp(struct socket *so, struct sockaddr *addr, struct uio *uio,
892           struct mbuf *top, struct mbuf *control, int flags, struct thread *td)
893 {
894         size_t resid;
895         int error, pru_flags = 0;
896         int space;
897
898         if (td->td_lwp != NULL)
899                 td->td_lwp->lwp_ru.ru_msgsnd++;
900         if (control)
901                 m_freem(control);
902
903         KASSERT((uio && !top) || (top && !uio), ("bad arguments to sosendudp"));
904         resid = uio ? uio->uio_resid : (size_t)top->m_pkthdr.len;
905
906 restart:
907         error = ssb_lock(&so->so_snd, SBLOCKWAIT(flags));
908         if (error)
909                 goto out;
910
911         if (so->so_state & SS_CANTSENDMORE)
912                 gotoerr(EPIPE);
913         if (so->so_error) {
914                 error = so->so_error;
915                 so->so_error = 0;
916                 goto release;
917         }
918         if (!(so->so_state & SS_ISCONNECTED) && addr == NULL)
919                 gotoerr(EDESTADDRREQ);
920         if (resid > so->so_snd.ssb_hiwat)
921                 gotoerr(EMSGSIZE);
922         space = ssb_space(&so->so_snd);
923         if (uio && (space < 0 || (size_t)space < resid)) {
924                 if (flags & (MSG_FNONBLOCKING|MSG_DONTWAIT))
925                         gotoerr(EWOULDBLOCK);
926                 ssb_unlock(&so->so_snd);
927                 error = ssb_wait(&so->so_snd);
928                 if (error)
929                         goto out;
930                 goto restart;
931         }
932
933         if (uio) {
934                 top = m_uiomove(uio);
935                 if (top == NULL)
936                         goto release;
937         }
938
939         if (flags & MSG_DONTROUTE)
940                 pru_flags |= PRUS_DONTROUTE;
941
942         error = so_pru_send(so, pru_flags, top, addr, NULL, td);
943         top = NULL;             /* sent or freed in lower layer */
944
945 release:
946         ssb_unlock(&so->so_snd);
947 out:
948         if (top)
949                 m_freem(top);
950         return (error);
951 }
952
953 int
954 sosendtcp(struct socket *so, struct sockaddr *addr, struct uio *uio,
955         struct mbuf *top, struct mbuf *control, int flags,
956         struct thread *td)
957 {
958         struct mbuf **mp;
959         struct mbuf *m;
960         size_t resid;
961         int space, len;
962         int error, mlen;
963         int allatonce;
964         int pru_flags;
965
966         if (uio) {
967                 KKASSERT(top == NULL);
968                 allatonce = 0;
969                 resid = uio->uio_resid;
970         } else {
971                 allatonce = 1;
972                 resid = (size_t)top->m_pkthdr.len;
973 #ifdef INVARIANTS
974                 len = 0;
975                 for (m = top; m; m = m->m_next)
976                         len += m->m_len;
977                 KKASSERT(top->m_pkthdr.len == len);
978 #endif
979         }
980
981         /*
982          * WARNING!  resid is unsigned, space and len are signed.  space
983          *           can wind up negative if the sockbuf is overcommitted.
984          *
985          * Also check to make sure that MSG_EOR isn't used on TCP
986          */
987         if (flags & MSG_EOR) {
988                 error = EINVAL;
989                 goto out;
990         }
991
992         if (control) {
993                 /* TCP doesn't do control messages (rights, creds, etc) */
994                 if (control->m_len) {
995                         error = EINVAL;
996                         goto out;
997                 }
998                 m_freem(control);       /* empty control, just free it */
999                 control = NULL;
1000         }
1001
1002         if (td->td_lwp != NULL)
1003                 td->td_lwp->lwp_ru.ru_msgsnd++;
1004
1005 #define gotoerr(errcode)        { error = errcode; goto release; }
1006
1007 restart:
1008         error = ssb_lock(&so->so_snd, SBLOCKWAIT(flags));
1009         if (error)
1010                 goto out;
1011
1012         do {
1013                 if (so->so_state & SS_CANTSENDMORE)
1014                         gotoerr(EPIPE);
1015                 if (so->so_error) {
1016                         error = so->so_error;
1017                         so->so_error = 0;
1018                         goto release;
1019                 }
1020                 if ((so->so_state & SS_ISCONNECTED) == 0 &&
1021                     (so->so_state & SS_ISCONFIRMING) == 0)
1022                         gotoerr(ENOTCONN);
1023                 if (allatonce && resid > so->so_snd.ssb_hiwat)
1024                         gotoerr(EMSGSIZE);
1025
1026                 space = ssb_space(&so->so_snd);
1027                 if (flags & MSG_OOB)
1028                         space += 1024;
1029                 if ((space < 0 || (size_t)space < resid) && !allatonce &&
1030                     space < so->so_snd.ssb_lowat) {
1031                         if (flags & (MSG_FNONBLOCKING|MSG_DONTWAIT))
1032                                 gotoerr(EWOULDBLOCK);
1033                         ssb_unlock(&so->so_snd);
1034                         error = ssb_wait(&so->so_snd);
1035                         if (error)
1036                                 goto out;
1037                         goto restart;
1038                 }
1039                 mp = &top;
1040                 do {
1041                     int cnt = 0, async = 0;
1042
1043                     if (uio == NULL) {
1044                         /*
1045                          * Data is prepackaged in "top".
1046                          */
1047                         resid = 0;
1048                     } else do {
1049                         if (resid > INT_MAX)
1050                                 resid = INT_MAX;
1051                         m = m_getl((int)resid, MB_WAIT, MT_DATA,
1052                                    top == NULL ? M_PKTHDR : 0, &mlen);
1053                         if (top == NULL) {
1054                                 m->m_pkthdr.len = 0;
1055                                 m->m_pkthdr.rcvif = NULL;
1056                         }
1057                         len = imin((int)szmin(mlen, resid), space);
1058                         space -= len;
1059                         error = uiomove(mtod(m, caddr_t), (size_t)len, uio);
1060                         resid = uio->uio_resid;
1061                         m->m_len = len;
1062                         *mp = m;
1063                         top->m_pkthdr.len += len;
1064                         if (error)
1065                                 goto release;
1066                         mp = &m->m_next;
1067                         if (resid == 0)
1068                                 break;
1069                         ++cnt;
1070                     } while (space > 0 && cnt < tcp_sosnd_agglim);
1071
1072                     if (tcp_sosnd_async)
1073                             async = 1;
1074
1075                     if (flags & MSG_OOB) {
1076                             pru_flags = PRUS_OOB;
1077                             async = 0;
1078                     } else if ((flags & MSG_EOF) && resid == 0) {
1079                             pru_flags = PRUS_EOF;
1080                     } else if (resid > 0 && space > 0) {
1081                             /* If there is more to send, set PRUS_MORETOCOME */
1082                             pru_flags = PRUS_MORETOCOME;
1083                             async = 1;
1084                     } else {
1085                             pru_flags = 0;
1086                     }
1087
1088                     if (flags & MSG_SYNC)
1089                             async = 0;
1090
1091                     /*
1092                      * XXX all the SS_CANTSENDMORE checks previously
1093                      * done could be out of date.  We could have recieved
1094                      * a reset packet in an interrupt or maybe we slept
1095                      * while doing page faults in uiomove() etc. We could
1096                      * probably recheck again inside the splnet() protection
1097                      * here, but there are probably other places that this
1098                      * also happens.  We must rethink this.
1099                      */
1100                     if (!async) {
1101                             error = so_pru_send(so, pru_flags, top,
1102                                 NULL, NULL, td);
1103                     } else {
1104                             so_pru_send_async(so, pru_flags, top,
1105                                 NULL, NULL, td);
1106                             error = 0;
1107                     }
1108
1109                     top = NULL;
1110                     mp = &top;
1111                     if (error)
1112                             goto release;
1113                 } while (resid && space > 0);
1114         } while (resid);
1115
1116 release:
1117         ssb_unlock(&so->so_snd);
1118 out:
1119         if (top)
1120                 m_freem(top);
1121         if (control)
1122                 m_freem(control);
1123         return (error);
1124 }
1125
1126 /*
1127  * Implement receive operations on a socket.
1128  *
1129  * We depend on the way that records are added to the signalsockbuf
1130  * by sbappend*.  In particular, each record (mbufs linked through m_next)
1131  * must begin with an address if the protocol so specifies,
1132  * followed by an optional mbuf or mbufs containing ancillary data,
1133  * and then zero or more mbufs of data.
1134  *
1135  * Although the signalsockbuf is locked, new data may still be appended.
1136  * A token inside the ssb_lock deals with MP issues and still allows
1137  * the network to access the socket if we block in a uio.
1138  *
1139  * The caller may receive the data as a single mbuf chain by supplying
1140  * an mbuf **mp0 for use in returning the chain.  The uio is then used
1141  * only for the count in uio_resid.
1142  */
1143 int
1144 soreceive(struct socket *so, struct sockaddr **psa, struct uio *uio,
1145           struct sockbuf *sio, struct mbuf **controlp, int *flagsp)
1146 {
1147         struct mbuf *m, *n;
1148         struct mbuf *free_chain = NULL;
1149         int flags, len, error, offset;
1150         struct protosw *pr = so->so_proto;
1151         int moff, type = 0;
1152         size_t resid, orig_resid;
1153
1154         if (uio)
1155                 resid = uio->uio_resid;
1156         else
1157                 resid = (size_t)(sio->sb_climit - sio->sb_cc);
1158         orig_resid = resid;
1159
1160         if (psa)
1161                 *psa = NULL;
1162         if (controlp)
1163                 *controlp = NULL;
1164         if (flagsp)
1165                 flags = *flagsp &~ MSG_EOR;
1166         else
1167                 flags = 0;
1168         if (flags & MSG_OOB) {
1169                 m = m_get(MB_WAIT, MT_DATA);
1170                 if (m == NULL)
1171                         return (ENOBUFS);
1172                 error = so_pru_rcvoob(so, m, flags & MSG_PEEK);
1173                 if (error)
1174                         goto bad;
1175                 if (sio) {
1176                         do {
1177                                 sbappend(sio, m);
1178                                 KKASSERT(resid >= (size_t)m->m_len);
1179                                 resid -= (size_t)m->m_len;
1180                         } while (resid > 0 && m);
1181                 } else {
1182                         do {
1183                                 uio->uio_resid = resid;
1184                                 error = uiomove(mtod(m, caddr_t),
1185                                                 (int)szmin(resid, m->m_len),
1186                                                 uio);
1187                                 resid = uio->uio_resid;
1188                                 m = m_free(m);
1189                         } while (uio->uio_resid && error == 0 && m);
1190                 }
1191 bad:
1192                 if (m)
1193                         m_freem(m);
1194                 return (error);
1195         }
1196         if ((so->so_state & SS_ISCONFIRMING) && resid)
1197                 so_pru_rcvd(so, 0);
1198
1199         /*
1200          * The token interlocks against the protocol thread while
1201          * ssb_lock is a blocking lock against other userland entities.
1202          */
1203         lwkt_gettoken(&so->so_rcv.ssb_token);
1204 restart:
1205         error = ssb_lock(&so->so_rcv, SBLOCKWAIT(flags));
1206         if (error)
1207                 goto done;
1208
1209         m = so->so_rcv.ssb_mb;
1210         /*
1211          * If we have less data than requested, block awaiting more
1212          * (subject to any timeout) if:
1213          *   1. the current count is less than the low water mark, or
1214          *   2. MSG_WAITALL is set, and it is possible to do the entire
1215          *      receive operation at once if we block (resid <= hiwat).
1216          *   3. MSG_DONTWAIT is not set
1217          * If MSG_WAITALL is set but resid is larger than the receive buffer,
1218          * we have to do the receive in sections, and thus risk returning
1219          * a short count if a timeout or signal occurs after we start.
1220          */
1221         if (m == NULL || (((flags & MSG_DONTWAIT) == 0 &&
1222             (size_t)so->so_rcv.ssb_cc < resid) &&
1223             (so->so_rcv.ssb_cc < so->so_rcv.ssb_lowat ||
1224             ((flags & MSG_WAITALL) && resid <= (size_t)so->so_rcv.ssb_hiwat)) &&
1225             m->m_nextpkt == 0 && (pr->pr_flags & PR_ATOMIC) == 0)) {
1226                 KASSERT(m != NULL || !so->so_rcv.ssb_cc, ("receive 1"));
1227                 if (so->so_error) {
1228                         if (m)
1229                                 goto dontblock;
1230                         error = so->so_error;
1231                         if ((flags & MSG_PEEK) == 0)
1232                                 so->so_error = 0;
1233                         goto release;
1234                 }
1235                 if (so->so_state & SS_CANTRCVMORE) {
1236                         if (m)
1237                                 goto dontblock;
1238                         else
1239                                 goto release;
1240                 }
1241                 for (; m; m = m->m_next) {
1242                         if (m->m_type == MT_OOBDATA  || (m->m_flags & M_EOR)) {
1243                                 m = so->so_rcv.ssb_mb;
1244                                 goto dontblock;
1245                         }
1246                 }
1247                 if ((so->so_state & (SS_ISCONNECTED|SS_ISCONNECTING)) == 0 &&
1248                     (pr->pr_flags & PR_CONNREQUIRED)) {
1249                         error = ENOTCONN;
1250                         goto release;
1251                 }
1252                 if (resid == 0)
1253                         goto release;
1254                 if (flags & (MSG_FNONBLOCKING|MSG_DONTWAIT)) {
1255                         error = EWOULDBLOCK;
1256                         goto release;
1257                 }
1258                 ssb_unlock(&so->so_rcv);
1259                 error = ssb_wait(&so->so_rcv);
1260                 if (error)
1261                         goto done;
1262                 goto restart;
1263         }
1264 dontblock:
1265         if (uio && uio->uio_td && uio->uio_td->td_proc)
1266                 uio->uio_td->td_lwp->lwp_ru.ru_msgrcv++;
1267
1268         /*
1269          * note: m should be == sb_mb here.  Cache the next record while
1270          * cleaning up.  Note that calling m_free*() will break out critical
1271          * section.
1272          */
1273         KKASSERT(m == so->so_rcv.ssb_mb);
1274
1275         /*
1276          * Skip any address mbufs prepending the record.
1277          */
1278         if (pr->pr_flags & PR_ADDR) {
1279                 KASSERT(m->m_type == MT_SONAME, ("receive 1a"));
1280                 orig_resid = 0;
1281                 if (psa)
1282                         *psa = dup_sockaddr(mtod(m, struct sockaddr *));
1283                 if (flags & MSG_PEEK)
1284                         m = m->m_next;
1285                 else
1286                         m = sbunlinkmbuf(&so->so_rcv.sb, m, &free_chain);
1287         }
1288
1289         /*
1290          * Skip any control mbufs prepending the record.
1291          */
1292 #ifdef SCTP
1293         if (pr->pr_flags & PR_ADDR_OPT) {
1294                 /*
1295                  * For SCTP we may be getting a
1296                  * whole message OR a partial delivery.
1297                  */
1298                 if (m && m->m_type == MT_SONAME) {
1299                         orig_resid = 0;
1300                         if (psa)
1301                                 *psa = dup_sockaddr(mtod(m, struct sockaddr *));
1302                         if (flags & MSG_PEEK)
1303                                 m = m->m_next;
1304                         else
1305                                 m = sbunlinkmbuf(&so->so_rcv.sb, m, &free_chain);
1306                 }
1307         }
1308 #endif /* SCTP */
1309         while (m && m->m_type == MT_CONTROL && error == 0) {
1310                 if (flags & MSG_PEEK) {
1311                         if (controlp)
1312                                 *controlp = m_copy(m, 0, m->m_len);
1313                         m = m->m_next;  /* XXX race */
1314                 } else {
1315                         if (controlp) {
1316                                 n = sbunlinkmbuf(&so->so_rcv.sb, m, NULL);
1317                                 if (pr->pr_domain->dom_externalize &&
1318                                     mtod(m, struct cmsghdr *)->cmsg_type ==
1319                                     SCM_RIGHTS)
1320                                    error = (*pr->pr_domain->dom_externalize)(m);
1321                                 *controlp = m;
1322                                 m = n;
1323                         } else {
1324                                 m = sbunlinkmbuf(&so->so_rcv.sb, m, &free_chain);
1325                         }
1326                 }
1327                 if (controlp && *controlp) {
1328                         orig_resid = 0;
1329                         controlp = &(*controlp)->m_next;
1330                 }
1331         }
1332
1333         /*
1334          * flag OOB data.
1335          */
1336         if (m) {
1337                 type = m->m_type;
1338                 if (type == MT_OOBDATA)
1339                         flags |= MSG_OOB;
1340         }
1341
1342         /*
1343          * Copy to the UIO or mbuf return chain (*mp).
1344          */
1345         moff = 0;
1346         offset = 0;
1347         while (m && resid > 0 && error == 0) {
1348                 if (m->m_type == MT_OOBDATA) {
1349                         if (type != MT_OOBDATA)
1350                                 break;
1351                 } else if (type == MT_OOBDATA)
1352                         break;
1353                 else
1354                     KASSERT(m->m_type == MT_DATA || m->m_type == MT_HEADER,
1355                         ("receive 3"));
1356                 soclrstate(so, SS_RCVATMARK);
1357                 len = (resid > INT_MAX) ? INT_MAX : resid;
1358                 if (so->so_oobmark && len > so->so_oobmark - offset)
1359                         len = so->so_oobmark - offset;
1360                 if (len > m->m_len - moff)
1361                         len = m->m_len - moff;
1362
1363                 /*
1364                  * Copy out to the UIO or pass the mbufs back to the SIO.
1365                  * The SIO is dealt with when we eat the mbuf, but deal
1366                  * with the resid here either way.
1367                  */
1368                 if (uio) {
1369                         uio->uio_resid = resid;
1370                         error = uiomove(mtod(m, caddr_t) + moff, len, uio);
1371                         resid = uio->uio_resid;
1372                         if (error)
1373                                 goto release;
1374                 } else {
1375                         resid -= (size_t)len;
1376                 }
1377
1378                 /*
1379                  * Eat the entire mbuf or just a piece of it
1380                  */
1381                 if (len == m->m_len - moff) {
1382                         if (m->m_flags & M_EOR)
1383                                 flags |= MSG_EOR;
1384 #ifdef SCTP
1385                         if (m->m_flags & M_NOTIFICATION)
1386                                 flags |= MSG_NOTIFICATION;
1387 #endif /* SCTP */
1388                         if (flags & MSG_PEEK) {
1389                                 m = m->m_next;
1390                                 moff = 0;
1391                         } else {
1392                                 if (sio) {
1393                                         n = sbunlinkmbuf(&so->so_rcv.sb, m, NULL);
1394                                         sbappend(sio, m);
1395                                         m = n;
1396                                 } else {
1397                                         m = sbunlinkmbuf(&so->so_rcv.sb, m, &free_chain);
1398                                 }
1399                         }
1400                 } else {
1401                         if (flags & MSG_PEEK) {
1402                                 moff += len;
1403                         } else {
1404                                 if (sio) {
1405                                         n = m_copym(m, 0, len, MB_WAIT);
1406                                         if (n)
1407                                                 sbappend(sio, n);
1408                                 }
1409                                 m->m_data += len;
1410                                 m->m_len -= len;
1411                                 so->so_rcv.ssb_cc -= len;
1412                         }
1413                 }
1414                 if (so->so_oobmark) {
1415                         if ((flags & MSG_PEEK) == 0) {
1416                                 so->so_oobmark -= len;
1417                                 if (so->so_oobmark == 0) {
1418                                         sosetstate(so, SS_RCVATMARK);
1419                                         break;
1420                                 }
1421                         } else {
1422                                 offset += len;
1423                                 if (offset == so->so_oobmark)
1424                                         break;
1425                         }
1426                 }
1427                 if (flags & MSG_EOR)
1428                         break;
1429                 /*
1430                  * If the MSG_WAITALL flag is set (for non-atomic socket),
1431                  * we must not quit until resid == 0 or an error
1432                  * termination.  If a signal/timeout occurs, return
1433                  * with a short count but without error.
1434                  * Keep signalsockbuf locked against other readers.
1435                  */
1436                 while ((flags & MSG_WAITALL) && m == NULL && 
1437                        resid > 0 && !sosendallatonce(so) && 
1438                        so->so_rcv.ssb_mb == NULL) {
1439                         if (so->so_error || so->so_state & SS_CANTRCVMORE)
1440                                 break;
1441                         /*
1442                          * The window might have closed to zero, make
1443                          * sure we send an ack now that we've drained
1444                          * the buffer or we might end up blocking until
1445                          * the idle takes over (5 seconds).
1446                          */
1447                         if (pr->pr_flags & PR_WANTRCVD && so->so_pcb)
1448                                 so_pru_rcvd(so, flags);
1449                         error = ssb_wait(&so->so_rcv);
1450                         if (error) {
1451                                 ssb_unlock(&so->so_rcv);
1452                                 error = 0;
1453                                 goto done;
1454                         }
1455                         m = so->so_rcv.ssb_mb;
1456                 }
1457         }
1458
1459         /*
1460          * If an atomic read was requested but unread data still remains
1461          * in the record, set MSG_TRUNC.
1462          */
1463         if (m && pr->pr_flags & PR_ATOMIC)
1464                 flags |= MSG_TRUNC;
1465
1466         /*
1467          * Cleanup.  If an atomic read was requested drop any unread data.
1468          */
1469         if ((flags & MSG_PEEK) == 0) {
1470                 if (m && (pr->pr_flags & PR_ATOMIC))
1471                         sbdroprecord(&so->so_rcv.sb);
1472                 if ((pr->pr_flags & PR_WANTRCVD) && so->so_pcb)
1473                         so_pru_rcvd(so, flags);
1474         }
1475
1476         if (orig_resid == resid && orig_resid &&
1477             (flags & MSG_EOR) == 0 && (so->so_state & SS_CANTRCVMORE) == 0) {
1478                 ssb_unlock(&so->so_rcv);
1479                 goto restart;
1480         }
1481
1482         if (flagsp)
1483                 *flagsp |= flags;
1484 release:
1485         ssb_unlock(&so->so_rcv);
1486 done:
1487         lwkt_reltoken(&so->so_rcv.ssb_token);
1488         if (free_chain)
1489                 m_freem(free_chain);
1490         return (error);
1491 }
1492
1493 /*
1494  * Shut a socket down.  Note that we do not get a frontend lock as we
1495  * want to be able to shut the socket down even if another thread is
1496  * blocked in a read(), thus waking it up.
1497  */
1498 int
1499 soshutdown(struct socket *so, int how)
1500 {
1501         if (!(how == SHUT_RD || how == SHUT_WR || how == SHUT_RDWR))
1502                 return (EINVAL);
1503
1504         if (how != SHUT_WR) {
1505                 /*ssb_lock(&so->so_rcv, M_WAITOK);*/
1506                 sorflush(so);
1507                 /*ssb_unlock(&so->so_rcv);*/
1508         }
1509         if (how != SHUT_RD)
1510                 return (so_pru_shutdown(so));
1511         return (0);
1512 }
1513
1514 void
1515 sorflush(struct socket *so)
1516 {
1517         struct signalsockbuf *ssb = &so->so_rcv;
1518         struct protosw *pr = so->so_proto;
1519         struct signalsockbuf asb;
1520
1521         atomic_set_int(&ssb->ssb_flags, SSB_NOINTR);
1522
1523         lwkt_gettoken(&ssb->ssb_token);
1524         socantrcvmore(so);
1525         asb = *ssb;
1526
1527         /*
1528          * Can't just blow up the ssb structure here
1529          */
1530         bzero(&ssb->sb, sizeof(ssb->sb));
1531         ssb->ssb_timeo = 0;
1532         ssb->ssb_lowat = 0;
1533         ssb->ssb_hiwat = 0;
1534         ssb->ssb_mbmax = 0;
1535         atomic_clear_int(&ssb->ssb_flags, SSB_CLEAR_MASK);
1536
1537         if ((pr->pr_flags & PR_RIGHTS) && pr->pr_domain->dom_dispose)
1538                 (*pr->pr_domain->dom_dispose)(asb.ssb_mb);
1539         ssb_release(&asb, so);
1540
1541         lwkt_reltoken(&ssb->ssb_token);
1542 }
1543
1544 #ifdef INET
1545 static int
1546 do_setopt_accept_filter(struct socket *so, struct sockopt *sopt)
1547 {
1548         struct accept_filter_arg        *afap = NULL;
1549         struct accept_filter    *afp;
1550         struct so_accf  *af = so->so_accf;
1551         int     error = 0;
1552
1553         /* do not set/remove accept filters on non listen sockets */
1554         if ((so->so_options & SO_ACCEPTCONN) == 0) {
1555                 error = EINVAL;
1556                 goto out;
1557         }
1558
1559         /* removing the filter */
1560         if (sopt == NULL) {
1561                 if (af != NULL) {
1562                         if (af->so_accept_filter != NULL && 
1563                                 af->so_accept_filter->accf_destroy != NULL) {
1564                                 af->so_accept_filter->accf_destroy(so);
1565                         }
1566                         if (af->so_accept_filter_str != NULL) {
1567                                 FREE(af->so_accept_filter_str, M_ACCF);
1568                         }
1569                         FREE(af, M_ACCF);
1570                         so->so_accf = NULL;
1571                 }
1572                 so->so_options &= ~SO_ACCEPTFILTER;
1573                 return (0);
1574         }
1575         /* adding a filter */
1576         /* must remove previous filter first */
1577         if (af != NULL) {
1578                 error = EINVAL;
1579                 goto out;
1580         }
1581         /* don't put large objects on the kernel stack */
1582         MALLOC(afap, struct accept_filter_arg *, sizeof(*afap), M_TEMP, M_WAITOK);
1583         error = sooptcopyin(sopt, afap, sizeof *afap, sizeof *afap);
1584         afap->af_name[sizeof(afap->af_name)-1] = '\0';
1585         afap->af_arg[sizeof(afap->af_arg)-1] = '\0';
1586         if (error)
1587                 goto out;
1588         afp = accept_filt_get(afap->af_name);
1589         if (afp == NULL) {
1590                 error = ENOENT;
1591                 goto out;
1592         }
1593         MALLOC(af, struct so_accf *, sizeof(*af), M_ACCF, M_WAITOK | M_ZERO);
1594         if (afp->accf_create != NULL) {
1595                 if (afap->af_name[0] != '\0') {
1596                         int len = strlen(afap->af_name) + 1;
1597
1598                         MALLOC(af->so_accept_filter_str, char *, len, M_ACCF, M_WAITOK);
1599                         strcpy(af->so_accept_filter_str, afap->af_name);
1600                 }
1601                 af->so_accept_filter_arg = afp->accf_create(so, afap->af_arg);
1602                 if (af->so_accept_filter_arg == NULL) {
1603                         FREE(af->so_accept_filter_str, M_ACCF);
1604                         FREE(af, M_ACCF);
1605                         so->so_accf = NULL;
1606                         error = EINVAL;
1607                         goto out;
1608                 }
1609         }
1610         af->so_accept_filter = afp;
1611         so->so_accf = af;
1612         so->so_options |= SO_ACCEPTFILTER;
1613 out:
1614         if (afap != NULL)
1615                 FREE(afap, M_TEMP);
1616         return (error);
1617 }
1618 #endif /* INET */
1619
1620 /*
1621  * Perhaps this routine, and sooptcopyout(), below, ought to come in
1622  * an additional variant to handle the case where the option value needs
1623  * to be some kind of integer, but not a specific size.
1624  * In addition to their use here, these functions are also called by the
1625  * protocol-level pr_ctloutput() routines.
1626  */
1627 int
1628 sooptcopyin(struct sockopt *sopt, void *buf, size_t len, size_t minlen)
1629 {
1630         return soopt_to_kbuf(sopt, buf, len, minlen);
1631 }
1632
1633 int
1634 soopt_to_kbuf(struct sockopt *sopt, void *buf, size_t len, size_t minlen)
1635 {
1636         size_t  valsize;
1637
1638         KKASSERT(!sopt->sopt_val || kva_p(sopt->sopt_val));
1639         KKASSERT(kva_p(buf));
1640
1641         /*
1642          * If the user gives us more than we wanted, we ignore it,
1643          * but if we don't get the minimum length the caller
1644          * wants, we return EINVAL.  On success, sopt->sopt_valsize
1645          * is set to however much we actually retrieved.
1646          */
1647         if ((valsize = sopt->sopt_valsize) < minlen)
1648                 return EINVAL;
1649         if (valsize > len)
1650                 sopt->sopt_valsize = valsize = len;
1651
1652         bcopy(sopt->sopt_val, buf, valsize);
1653         return 0;
1654 }
1655
1656
1657 int
1658 sosetopt(struct socket *so, struct sockopt *sopt)
1659 {
1660         int     error, optval;
1661         struct  linger l;
1662         struct  timeval tv;
1663         u_long  val;
1664         struct signalsockbuf *sotmp;
1665
1666         error = 0;
1667         sopt->sopt_dir = SOPT_SET;
1668         if (sopt->sopt_level != SOL_SOCKET) {
1669                 if (so->so_proto && so->so_proto->pr_ctloutput) {
1670                         return (so_pr_ctloutput(so, sopt));
1671                 }
1672                 error = ENOPROTOOPT;
1673         } else {
1674                 switch (sopt->sopt_name) {
1675 #ifdef INET
1676                 case SO_ACCEPTFILTER:
1677                         error = do_setopt_accept_filter(so, sopt);
1678                         if (error)
1679                                 goto bad;
1680                         break;
1681 #endif /* INET */
1682                 case SO_LINGER:
1683                         error = sooptcopyin(sopt, &l, sizeof l, sizeof l);
1684                         if (error)
1685                                 goto bad;
1686
1687                         so->so_linger = l.l_linger;
1688                         if (l.l_onoff)
1689                                 so->so_options |= SO_LINGER;
1690                         else
1691                                 so->so_options &= ~SO_LINGER;
1692                         break;
1693
1694                 case SO_DEBUG:
1695                 case SO_KEEPALIVE:
1696                 case SO_DONTROUTE:
1697                 case SO_USELOOPBACK:
1698                 case SO_BROADCAST:
1699                 case SO_REUSEADDR:
1700                 case SO_REUSEPORT:
1701                 case SO_OOBINLINE:
1702                 case SO_TIMESTAMP:
1703                         error = sooptcopyin(sopt, &optval, sizeof optval,
1704                                             sizeof optval);
1705                         if (error)
1706                                 goto bad;
1707                         if (optval)
1708                                 so->so_options |= sopt->sopt_name;
1709                         else
1710                                 so->so_options &= ~sopt->sopt_name;
1711                         break;
1712
1713                 case SO_SNDBUF:
1714                 case SO_RCVBUF:
1715                 case SO_SNDLOWAT:
1716                 case SO_RCVLOWAT:
1717                         error = sooptcopyin(sopt, &optval, sizeof optval,
1718                                             sizeof optval);
1719                         if (error)
1720                                 goto bad;
1721
1722                         /*
1723                          * Values < 1 make no sense for any of these
1724                          * options, so disallow them.
1725                          */
1726                         if (optval < 1) {
1727                                 error = EINVAL;
1728                                 goto bad;
1729                         }
1730
1731                         switch (sopt->sopt_name) {
1732                         case SO_SNDBUF:
1733                         case SO_RCVBUF:
1734                                 if (ssb_reserve(sopt->sopt_name == SO_SNDBUF ?
1735                                     &so->so_snd : &so->so_rcv, (u_long)optval,
1736                                     so,
1737                                     &curproc->p_rlimit[RLIMIT_SBSIZE]) == 0) {
1738                                         error = ENOBUFS;
1739                                         goto bad;
1740                                 }
1741                                 sotmp = (sopt->sopt_name == SO_SNDBUF) ?
1742                                                 &so->so_snd : &so->so_rcv;
1743                                 atomic_clear_int(&sotmp->ssb_flags,
1744                                                  SSB_AUTOSIZE);
1745                                 break;
1746
1747                         /*
1748                          * Make sure the low-water is never greater than
1749                          * the high-water.
1750                          */
1751                         case SO_SNDLOWAT:
1752                                 so->so_snd.ssb_lowat =
1753                                     (optval > so->so_snd.ssb_hiwat) ?
1754                                     so->so_snd.ssb_hiwat : optval;
1755                                 atomic_clear_int(&so->so_snd.ssb_flags,
1756                                                  SSB_AUTOLOWAT);
1757                                 break;
1758                         case SO_RCVLOWAT:
1759                                 so->so_rcv.ssb_lowat =
1760                                     (optval > so->so_rcv.ssb_hiwat) ?
1761                                     so->so_rcv.ssb_hiwat : optval;
1762                                 atomic_clear_int(&so->so_rcv.ssb_flags,
1763                                                  SSB_AUTOLOWAT);
1764                                 break;
1765                         }
1766                         break;
1767
1768                 case SO_SNDTIMEO:
1769                 case SO_RCVTIMEO:
1770                         error = sooptcopyin(sopt, &tv, sizeof tv,
1771                                             sizeof tv);
1772                         if (error)
1773                                 goto bad;
1774
1775                         /* assert(hz > 0); */
1776                         if (tv.tv_sec < 0 || tv.tv_sec > INT_MAX / hz ||
1777                             tv.tv_usec < 0 || tv.tv_usec >= 1000000) {
1778                                 error = EDOM;
1779                                 goto bad;
1780                         }
1781                         /* assert(tick > 0); */
1782                         /* assert(ULONG_MAX - INT_MAX >= 1000000); */
1783                         val = (u_long)(tv.tv_sec * hz) + tv.tv_usec / ustick;
1784                         if (val > INT_MAX) {
1785                                 error = EDOM;
1786                                 goto bad;
1787                         }
1788                         if (val == 0 && tv.tv_usec != 0)
1789                                 val = 1;
1790
1791                         switch (sopt->sopt_name) {
1792                         case SO_SNDTIMEO:
1793                                 so->so_snd.ssb_timeo = val;
1794                                 break;
1795                         case SO_RCVTIMEO:
1796                                 so->so_rcv.ssb_timeo = val;
1797                                 break;
1798                         }
1799                         break;
1800                 default:
1801                         error = ENOPROTOOPT;
1802                         break;
1803                 }
1804                 if (error == 0 && so->so_proto && so->so_proto->pr_ctloutput) {
1805                         (void) so_pr_ctloutput(so, sopt);
1806                 }
1807         }
1808 bad:
1809         return (error);
1810 }
1811
1812 /* Helper routine for getsockopt */
1813 int
1814 sooptcopyout(struct sockopt *sopt, const void *buf, size_t len)
1815 {
1816         soopt_from_kbuf(sopt, buf, len);
1817         return 0;
1818 }
1819
1820 void
1821 soopt_from_kbuf(struct sockopt *sopt, const void *buf, size_t len)
1822 {
1823         size_t  valsize;
1824
1825         if (len == 0) {
1826                 sopt->sopt_valsize = 0;
1827                 return;
1828         }
1829
1830         KKASSERT(!sopt->sopt_val || kva_p(sopt->sopt_val));
1831         KKASSERT(kva_p(buf));
1832
1833         /*
1834          * Documented get behavior is that we always return a value,
1835          * possibly truncated to fit in the user's buffer.
1836          * Traditional behavior is that we always tell the user
1837          * precisely how much we copied, rather than something useful
1838          * like the total amount we had available for her.
1839          * Note that this interface is not idempotent; the entire answer must
1840          * generated ahead of time.
1841          */
1842         valsize = szmin(len, sopt->sopt_valsize);
1843         sopt->sopt_valsize = valsize;
1844         if (sopt->sopt_val != 0) {
1845                 bcopy(buf, sopt->sopt_val, valsize);
1846         }
1847 }
1848
1849 int
1850 sogetopt(struct socket *so, struct sockopt *sopt)
1851 {
1852         int     error, optval;
1853         long    optval_l;
1854         struct  linger l;
1855         struct  timeval tv;
1856 #ifdef INET
1857         struct accept_filter_arg *afap;
1858 #endif
1859
1860         error = 0;
1861         sopt->sopt_dir = SOPT_GET;
1862         if (sopt->sopt_level != SOL_SOCKET) {
1863                 if (so->so_proto && so->so_proto->pr_ctloutput) {
1864                         return (so_pr_ctloutput(so, sopt));
1865                 } else
1866                         return (ENOPROTOOPT);
1867         } else {
1868                 switch (sopt->sopt_name) {
1869 #ifdef INET
1870                 case SO_ACCEPTFILTER:
1871                         if ((so->so_options & SO_ACCEPTCONN) == 0)
1872                                 return (EINVAL);
1873                         MALLOC(afap, struct accept_filter_arg *, sizeof(*afap),
1874                                 M_TEMP, M_WAITOK | M_ZERO);
1875                         if ((so->so_options & SO_ACCEPTFILTER) != 0) {
1876                                 strcpy(afap->af_name, so->so_accf->so_accept_filter->accf_name);
1877                                 if (so->so_accf->so_accept_filter_str != NULL)
1878                                         strcpy(afap->af_arg, so->so_accf->so_accept_filter_str);
1879                         }
1880                         error = sooptcopyout(sopt, afap, sizeof(*afap));
1881                         FREE(afap, M_TEMP);
1882                         break;
1883 #endif /* INET */
1884                         
1885                 case SO_LINGER:
1886                         l.l_onoff = so->so_options & SO_LINGER;
1887                         l.l_linger = so->so_linger;
1888                         error = sooptcopyout(sopt, &l, sizeof l);
1889                         break;
1890
1891                 case SO_USELOOPBACK:
1892                 case SO_DONTROUTE:
1893                 case SO_DEBUG:
1894                 case SO_KEEPALIVE:
1895                 case SO_REUSEADDR:
1896                 case SO_REUSEPORT:
1897                 case SO_BROADCAST:
1898                 case SO_OOBINLINE:
1899                 case SO_TIMESTAMP:
1900                         optval = so->so_options & sopt->sopt_name;
1901 integer:
1902                         error = sooptcopyout(sopt, &optval, sizeof optval);
1903                         break;
1904
1905                 case SO_TYPE:
1906                         optval = so->so_type;
1907                         goto integer;
1908
1909                 case SO_ERROR:
1910                         optval = so->so_error;
1911                         so->so_error = 0;
1912                         goto integer;
1913
1914                 case SO_SNDBUF:
1915                         optval = so->so_snd.ssb_hiwat;
1916                         goto integer;
1917
1918                 case SO_RCVBUF:
1919                         optval = so->so_rcv.ssb_hiwat;
1920                         goto integer;
1921
1922                 case SO_SNDLOWAT:
1923                         optval = so->so_snd.ssb_lowat;
1924                         goto integer;
1925
1926                 case SO_RCVLOWAT:
1927                         optval = so->so_rcv.ssb_lowat;
1928                         goto integer;
1929
1930                 case SO_SNDTIMEO:
1931                 case SO_RCVTIMEO:
1932                         optval = (sopt->sopt_name == SO_SNDTIMEO ?
1933                                   so->so_snd.ssb_timeo : so->so_rcv.ssb_timeo);
1934
1935                         tv.tv_sec = optval / hz;
1936                         tv.tv_usec = (optval % hz) * ustick;
1937                         error = sooptcopyout(sopt, &tv, sizeof tv);
1938                         break;                  
1939
1940                 case SO_SNDSPACE:
1941                         optval_l = ssb_space(&so->so_snd);
1942                         error = sooptcopyout(sopt, &optval_l, sizeof(optval_l));
1943                         break;
1944
1945                 default:
1946                         error = ENOPROTOOPT;
1947                         break;
1948                 }
1949                 return (error);
1950         }
1951 }
1952
1953 /* XXX; prepare mbuf for (__FreeBSD__ < 3) routines. */
1954 int
1955 soopt_getm(struct sockopt *sopt, struct mbuf **mp)
1956 {
1957         struct mbuf *m, *m_prev;
1958         int sopt_size = sopt->sopt_valsize, msize;
1959
1960         m = m_getl(sopt_size, sopt->sopt_td ? MB_WAIT : MB_DONTWAIT, MT_DATA,
1961                    0, &msize);
1962         if (m == NULL)
1963                 return (ENOBUFS);
1964         m->m_len = min(msize, sopt_size);
1965         sopt_size -= m->m_len;
1966         *mp = m;
1967         m_prev = m;
1968
1969         while (sopt_size > 0) {
1970                 m = m_getl(sopt_size, sopt->sopt_td ? MB_WAIT : MB_DONTWAIT,
1971                            MT_DATA, 0, &msize);
1972                 if (m == NULL) {
1973                         m_freem(*mp);
1974                         return (ENOBUFS);
1975                 }
1976                 m->m_len = min(msize, sopt_size);
1977                 sopt_size -= m->m_len;
1978                 m_prev->m_next = m;
1979                 m_prev = m;
1980         }
1981         return (0);
1982 }
1983
1984 /* XXX; copyin sopt data into mbuf chain for (__FreeBSD__ < 3) routines. */
1985 int
1986 soopt_mcopyin(struct sockopt *sopt, struct mbuf *m)
1987 {
1988         soopt_to_mbuf(sopt, m);
1989         return 0;
1990 }
1991
1992 void
1993 soopt_to_mbuf(struct sockopt *sopt, struct mbuf *m)
1994 {
1995         size_t valsize;
1996         void *val;
1997
1998         KKASSERT(!sopt->sopt_val || kva_p(sopt->sopt_val));
1999         KKASSERT(kva_p(m));
2000         if (sopt->sopt_val == NULL)
2001                 return;
2002         val = sopt->sopt_val;
2003         valsize = sopt->sopt_valsize;
2004         while (m != NULL && valsize >= m->m_len) {
2005                 bcopy(val, mtod(m, char *), m->m_len);
2006                 valsize -= m->m_len;
2007                 val = (caddr_t)val + m->m_len;
2008                 m = m->m_next;
2009         }
2010         if (m != NULL) /* should be allocated enoughly at ip6_sooptmcopyin() */
2011                 panic("ip6_sooptmcopyin");
2012 }
2013
2014 /* XXX; copyout mbuf chain data into soopt for (__FreeBSD__ < 3) routines. */
2015 int
2016 soopt_mcopyout(struct sockopt *sopt, struct mbuf *m)
2017 {
2018         return soopt_from_mbuf(sopt, m);
2019 }
2020
2021 int
2022 soopt_from_mbuf(struct sockopt *sopt, struct mbuf *m)
2023 {
2024         struct mbuf *m0 = m;
2025         size_t valsize = 0;
2026         size_t maxsize;
2027         void *val;
2028
2029         KKASSERT(!sopt->sopt_val || kva_p(sopt->sopt_val));
2030         KKASSERT(kva_p(m));
2031         if (sopt->sopt_val == NULL)
2032                 return 0;
2033         val = sopt->sopt_val;
2034         maxsize = sopt->sopt_valsize;
2035         while (m != NULL && maxsize >= m->m_len) {
2036                 bcopy(mtod(m, char *), val, m->m_len);
2037                maxsize -= m->m_len;
2038                val = (caddr_t)val + m->m_len;
2039                valsize += m->m_len;
2040                m = m->m_next;
2041         }
2042         if (m != NULL) {
2043                 /* enough soopt buffer should be given from user-land */
2044                 m_freem(m0);
2045                 return (EINVAL);
2046         }
2047         sopt->sopt_valsize = valsize;
2048         return 0;
2049 }
2050
2051 void
2052 sohasoutofband(struct socket *so)
2053 {
2054         if (so->so_sigio != NULL)
2055                 pgsigio(so->so_sigio, SIGURG, 0);
2056         KNOTE(&so->so_rcv.ssb_kq.ki_note, NOTE_OOB);
2057 }
2058
2059 int
2060 sokqfilter(struct file *fp, struct knote *kn)
2061 {
2062         struct socket *so = (struct socket *)kn->kn_fp->f_data;
2063         struct signalsockbuf *ssb;
2064
2065         switch (kn->kn_filter) {
2066         case EVFILT_READ:
2067                 if (so->so_options & SO_ACCEPTCONN)
2068                         kn->kn_fop = &solisten_filtops;
2069                 else
2070                         kn->kn_fop = &soread_filtops;
2071                 ssb = &so->so_rcv;
2072                 break;
2073         case EVFILT_WRITE:
2074                 kn->kn_fop = &sowrite_filtops;
2075                 ssb = &so->so_snd;
2076                 break;
2077         case EVFILT_EXCEPT:
2078                 kn->kn_fop = &soexcept_filtops;
2079                 ssb = &so->so_rcv;
2080                 break;
2081         default:
2082                 return (EOPNOTSUPP);
2083         }
2084
2085         knote_insert(&ssb->ssb_kq.ki_note, kn);
2086         atomic_set_int(&ssb->ssb_flags, SSB_KNOTE);
2087         return (0);
2088 }
2089
2090 static void
2091 filt_sordetach(struct knote *kn)
2092 {
2093         struct socket *so = (struct socket *)kn->kn_fp->f_data;
2094
2095         knote_remove(&so->so_rcv.ssb_kq.ki_note, kn);
2096         if (SLIST_EMPTY(&so->so_rcv.ssb_kq.ki_note))
2097                 atomic_clear_int(&so->so_rcv.ssb_flags, SSB_KNOTE);
2098 }
2099
2100 /*ARGSUSED*/
2101 static int
2102 filt_soread(struct knote *kn, long hint)
2103 {
2104         struct socket *so = (struct socket *)kn->kn_fp->f_data;
2105
2106         if (kn->kn_sfflags & NOTE_OOB) {
2107                 if ((so->so_oobmark || (so->so_state & SS_RCVATMARK))) {
2108                         kn->kn_fflags |= NOTE_OOB;
2109                         return (1);
2110                 }
2111                 return (0);
2112         }
2113         kn->kn_data = so->so_rcv.ssb_cc;
2114
2115         if (so->so_state & SS_CANTRCVMORE) {
2116                 /*
2117                  * Only set NODATA if all data has been exhausted.
2118                  */
2119                 if (kn->kn_data == 0)
2120                         kn->kn_flags |= EV_NODATA;
2121                 kn->kn_flags |= EV_EOF; 
2122                 kn->kn_fflags = so->so_error;
2123                 return (1);
2124         }
2125         if (so->so_error)       /* temporary udp error */
2126                 return (1);
2127         if (kn->kn_sfflags & NOTE_LOWAT)
2128                 return (kn->kn_data >= kn->kn_sdata);
2129         return ((kn->kn_data >= so->so_rcv.ssb_lowat) ||
2130                 !TAILQ_EMPTY(&so->so_comp));
2131 }
2132
2133 static void
2134 filt_sowdetach(struct knote *kn)
2135 {
2136         struct socket *so = (struct socket *)kn->kn_fp->f_data;
2137
2138         knote_remove(&so->so_snd.ssb_kq.ki_note, kn);
2139         if (SLIST_EMPTY(&so->so_snd.ssb_kq.ki_note))
2140                 atomic_clear_int(&so->so_snd.ssb_flags, SSB_KNOTE);
2141 }
2142
2143 /*ARGSUSED*/
2144 static int
2145 filt_sowrite(struct knote *kn, long hint)
2146 {
2147         struct socket *so = (struct socket *)kn->kn_fp->f_data;
2148
2149         kn->kn_data = ssb_space(&so->so_snd);
2150         if (so->so_state & SS_CANTSENDMORE) {
2151                 kn->kn_flags |= (EV_EOF | EV_NODATA);
2152                 kn->kn_fflags = so->so_error;
2153                 return (1);
2154         }
2155         if (so->so_error)       /* temporary udp error */
2156                 return (1);
2157         if (((so->so_state & SS_ISCONNECTED) == 0) &&
2158             (so->so_proto->pr_flags & PR_CONNREQUIRED))
2159                 return (0);
2160         if (kn->kn_sfflags & NOTE_LOWAT)
2161                 return (kn->kn_data >= kn->kn_sdata);
2162         return (kn->kn_data >= so->so_snd.ssb_lowat);
2163 }
2164
2165 /*ARGSUSED*/
2166 static int
2167 filt_solisten(struct knote *kn, long hint)
2168 {
2169         struct socket *so = (struct socket *)kn->kn_fp->f_data;
2170
2171         kn->kn_data = so->so_qlen;
2172         return (! TAILQ_EMPTY(&so->so_comp));
2173 }