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