2af3c652017914adbd05fe002637b86c677590a9
[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                     if (flags & MSG_SYNC)
958                         async = 0;
959
960                     /*
961                      * XXX all the SS_CANTSENDMORE checks previously
962                      * done could be out of date.  We could have recieved
963                      * a reset packet in an interrupt or maybe we slept
964                      * while doing page faults in uiomove() etc. We could
965                      * probably recheck again inside the splnet() protection
966                      * here, but there are probably other places that this
967                      * also happens.  We must rethink this.
968                      */
969                     if (!async) {
970                             error = so_pru_send(so, pru_flags, top,
971                                 NULL, NULL, td);
972                     } else {
973                             so_pru_send_async(so, pru_flags, top,
974                                 NULL, NULL, td);
975                             error = 0;
976                     }
977
978                     top = NULL;
979                     mp = &top;
980                     if (error)
981                             goto release;
982                 } while (resid && space > 0);
983         } while (resid);
984
985 release:
986         ssb_unlock(&so->so_snd);
987 out:
988         if (top)
989                 m_freem(top);
990         if (control)
991                 m_freem(control);
992         return (error);
993 }
994
995 /*
996  * Implement receive operations on a socket.
997  *
998  * We depend on the way that records are added to the signalsockbuf
999  * by sbappend*.  In particular, each record (mbufs linked through m_next)
1000  * must begin with an address if the protocol so specifies,
1001  * followed by an optional mbuf or mbufs containing ancillary data,
1002  * and then zero or more mbufs of data.
1003  *
1004  * Although the signalsockbuf is locked, new data may still be appended.
1005  * A token inside the ssb_lock deals with MP issues and still allows
1006  * the network to access the socket if we block in a uio.
1007  *
1008  * The caller may receive the data as a single mbuf chain by supplying
1009  * an mbuf **mp0 for use in returning the chain.  The uio is then used
1010  * only for the count in uio_resid.
1011  */
1012 int
1013 soreceive(struct socket *so, struct sockaddr **psa, struct uio *uio,
1014           struct sockbuf *sio, struct mbuf **controlp, int *flagsp)
1015 {
1016         struct mbuf *m, *n;
1017         struct mbuf *free_chain = NULL;
1018         int flags, len, error, offset;
1019         struct protosw *pr = so->so_proto;
1020         int moff, type = 0;
1021         size_t resid, orig_resid;
1022
1023         if (uio)
1024                 resid = uio->uio_resid;
1025         else
1026                 resid = (size_t)(sio->sb_climit - sio->sb_cc);
1027         orig_resid = resid;
1028
1029         if (psa)
1030                 *psa = NULL;
1031         if (controlp)
1032                 *controlp = NULL;
1033         if (flagsp)
1034                 flags = *flagsp &~ MSG_EOR;
1035         else
1036                 flags = 0;
1037         if (flags & MSG_OOB) {
1038                 m = m_get(MB_WAIT, MT_DATA);
1039                 if (m == NULL)
1040                         return (ENOBUFS);
1041                 error = so_pru_rcvoob(so, m, flags & MSG_PEEK);
1042                 if (error)
1043                         goto bad;
1044                 if (sio) {
1045                         do {
1046                                 sbappend(sio, m);
1047                                 KKASSERT(resid >= (size_t)m->m_len);
1048                                 resid -= (size_t)m->m_len;
1049                         } while (resid > 0 && m);
1050                 } else {
1051                         do {
1052                                 uio->uio_resid = resid;
1053                                 error = uiomove(mtod(m, caddr_t),
1054                                                 (int)szmin(resid, m->m_len),
1055                                                 uio);
1056                                 resid = uio->uio_resid;
1057                                 m = m_free(m);
1058                         } while (uio->uio_resid && error == 0 && m);
1059                 }
1060 bad:
1061                 if (m)
1062                         m_freem(m);
1063                 return (error);
1064         }
1065         if ((so->so_state & SS_ISCONFIRMING) && resid)
1066                 so_pru_rcvd(so, 0);
1067
1068         /*
1069          * The token interlocks against the protocol thread while
1070          * ssb_lock is a blocking lock against other userland entities.
1071          */
1072         lwkt_gettoken(&so->so_rcv.ssb_token);
1073 restart:
1074         error = ssb_lock(&so->so_rcv, SBLOCKWAIT(flags));
1075         if (error)
1076                 goto done;
1077
1078         m = so->so_rcv.ssb_mb;
1079         /*
1080          * If we have less data than requested, block awaiting more
1081          * (subject to any timeout) if:
1082          *   1. the current count is less than the low water mark, or
1083          *   2. MSG_WAITALL is set, and it is possible to do the entire
1084          *      receive operation at once if we block (resid <= hiwat).
1085          *   3. MSG_DONTWAIT is not set
1086          * If MSG_WAITALL is set but resid is larger than the receive buffer,
1087          * we have to do the receive in sections, and thus risk returning
1088          * a short count if a timeout or signal occurs after we start.
1089          */
1090         if (m == NULL || (((flags & MSG_DONTWAIT) == 0 &&
1091             (size_t)so->so_rcv.ssb_cc < resid) &&
1092             (so->so_rcv.ssb_cc < so->so_rcv.ssb_lowat ||
1093             ((flags & MSG_WAITALL) && resid <= (size_t)so->so_rcv.ssb_hiwat)) &&
1094             m->m_nextpkt == 0 && (pr->pr_flags & PR_ATOMIC) == 0)) {
1095                 KASSERT(m != NULL || !so->so_rcv.ssb_cc, ("receive 1"));
1096                 if (so->so_error) {
1097                         if (m)
1098                                 goto dontblock;
1099                         error = so->so_error;
1100                         if ((flags & MSG_PEEK) == 0)
1101                                 so->so_error = 0;
1102                         goto release;
1103                 }
1104                 if (so->so_state & SS_CANTRCVMORE) {
1105                         if (m)
1106                                 goto dontblock;
1107                         else
1108                                 goto release;
1109                 }
1110                 for (; m; m = m->m_next) {
1111                         if (m->m_type == MT_OOBDATA  || (m->m_flags & M_EOR)) {
1112                                 m = so->so_rcv.ssb_mb;
1113                                 goto dontblock;
1114                         }
1115                 }
1116                 if ((so->so_state & (SS_ISCONNECTED|SS_ISCONNECTING)) == 0 &&
1117                     (pr->pr_flags & PR_CONNREQUIRED)) {
1118                         error = ENOTCONN;
1119                         goto release;
1120                 }
1121                 if (resid == 0)
1122                         goto release;
1123                 if (flags & (MSG_FNONBLOCKING|MSG_DONTWAIT)) {
1124                         error = EWOULDBLOCK;
1125                         goto release;
1126                 }
1127                 ssb_unlock(&so->so_rcv);
1128                 error = ssb_wait(&so->so_rcv);
1129                 if (error)
1130                         goto done;
1131                 goto restart;
1132         }
1133 dontblock:
1134         if (uio && uio->uio_td && uio->uio_td->td_proc)
1135                 uio->uio_td->td_lwp->lwp_ru.ru_msgrcv++;
1136
1137         /*
1138          * note: m should be == sb_mb here.  Cache the next record while
1139          * cleaning up.  Note that calling m_free*() will break out critical
1140          * section.
1141          */
1142         KKASSERT(m == so->so_rcv.ssb_mb);
1143
1144         /*
1145          * Skip any address mbufs prepending the record.
1146          */
1147         if (pr->pr_flags & PR_ADDR) {
1148                 KASSERT(m->m_type == MT_SONAME, ("receive 1a"));
1149                 orig_resid = 0;
1150                 if (psa)
1151                         *psa = dup_sockaddr(mtod(m, struct sockaddr *));
1152                 if (flags & MSG_PEEK)
1153                         m = m->m_next;
1154                 else
1155                         m = sbunlinkmbuf(&so->so_rcv.sb, m, &free_chain);
1156         }
1157
1158         /*
1159          * Skip any control mbufs prepending the record.
1160          */
1161 #ifdef SCTP
1162         if (pr->pr_flags & PR_ADDR_OPT) {
1163                 /*
1164                  * For SCTP we may be getting a
1165                  * whole message OR a partial delivery.
1166                  */
1167                 if (m && m->m_type == MT_SONAME) {
1168                         orig_resid = 0;
1169                         if (psa)
1170                                 *psa = dup_sockaddr(mtod(m, struct sockaddr *));
1171                         if (flags & MSG_PEEK)
1172                                 m = m->m_next;
1173                         else
1174                                 m = sbunlinkmbuf(&so->so_rcv.sb, m, &free_chain);
1175                 }
1176         }
1177 #endif /* SCTP */
1178         while (m && m->m_type == MT_CONTROL && error == 0) {
1179                 if (flags & MSG_PEEK) {
1180                         if (controlp)
1181                                 *controlp = m_copy(m, 0, m->m_len);
1182                         m = m->m_next;  /* XXX race */
1183                 } else {
1184                         if (controlp) {
1185                                 n = sbunlinkmbuf(&so->so_rcv.sb, m, NULL);
1186                                 if (pr->pr_domain->dom_externalize &&
1187                                     mtod(m, struct cmsghdr *)->cmsg_type ==
1188                                     SCM_RIGHTS)
1189                                    error = (*pr->pr_domain->dom_externalize)(m);
1190                                 *controlp = m;
1191                                 m = n;
1192                         } else {
1193                                 m = sbunlinkmbuf(&so->so_rcv.sb, m, &free_chain);
1194                         }
1195                 }
1196                 if (controlp && *controlp) {
1197                         orig_resid = 0;
1198                         controlp = &(*controlp)->m_next;
1199                 }
1200         }
1201
1202         /*
1203          * flag OOB data.
1204          */
1205         if (m) {
1206                 type = m->m_type;
1207                 if (type == MT_OOBDATA)
1208                         flags |= MSG_OOB;
1209         }
1210
1211         /*
1212          * Copy to the UIO or mbuf return chain (*mp).
1213          */
1214         moff = 0;
1215         offset = 0;
1216         while (m && resid > 0 && error == 0) {
1217                 if (m->m_type == MT_OOBDATA) {
1218                         if (type != MT_OOBDATA)
1219                                 break;
1220                 } else if (type == MT_OOBDATA)
1221                         break;
1222                 else
1223                     KASSERT(m->m_type == MT_DATA || m->m_type == MT_HEADER,
1224                         ("receive 3"));
1225                 soclrstate(so, SS_RCVATMARK);
1226                 len = (resid > INT_MAX) ? INT_MAX : resid;
1227                 if (so->so_oobmark && len > so->so_oobmark - offset)
1228                         len = so->so_oobmark - offset;
1229                 if (len > m->m_len - moff)
1230                         len = m->m_len - moff;
1231
1232                 /*
1233                  * Copy out to the UIO or pass the mbufs back to the SIO.
1234                  * The SIO is dealt with when we eat the mbuf, but deal
1235                  * with the resid here either way.
1236                  */
1237                 if (uio) {
1238                         uio->uio_resid = resid;
1239                         error = uiomove(mtod(m, caddr_t) + moff, len, uio);
1240                         resid = uio->uio_resid;
1241                         if (error)
1242                                 goto release;
1243                 } else {
1244                         resid -= (size_t)len;
1245                 }
1246
1247                 /*
1248                  * Eat the entire mbuf or just a piece of it
1249                  */
1250                 if (len == m->m_len - moff) {
1251                         if (m->m_flags & M_EOR)
1252                                 flags |= MSG_EOR;
1253 #ifdef SCTP
1254                         if (m->m_flags & M_NOTIFICATION)
1255                                 flags |= MSG_NOTIFICATION;
1256 #endif /* SCTP */
1257                         if (flags & MSG_PEEK) {
1258                                 m = m->m_next;
1259                                 moff = 0;
1260                         } else {
1261                                 if (sio) {
1262                                         n = sbunlinkmbuf(&so->so_rcv.sb, m, NULL);
1263                                         sbappend(sio, m);
1264                                         m = n;
1265                                 } else {
1266                                         m = sbunlinkmbuf(&so->so_rcv.sb, m, &free_chain);
1267                                 }
1268                         }
1269                 } else {
1270                         if (flags & MSG_PEEK) {
1271                                 moff += len;
1272                         } else {
1273                                 if (sio) {
1274                                         n = m_copym(m, 0, len, MB_WAIT);
1275                                         if (n)
1276                                                 sbappend(sio, n);
1277                                 }
1278                                 m->m_data += len;
1279                                 m->m_len -= len;
1280                                 so->so_rcv.ssb_cc -= len;
1281                         }
1282                 }
1283                 if (so->so_oobmark) {
1284                         if ((flags & MSG_PEEK) == 0) {
1285                                 so->so_oobmark -= len;
1286                                 if (so->so_oobmark == 0) {
1287                                         sosetstate(so, SS_RCVATMARK);
1288                                         break;
1289                                 }
1290                         } else {
1291                                 offset += len;
1292                                 if (offset == so->so_oobmark)
1293                                         break;
1294                         }
1295                 }
1296                 if (flags & MSG_EOR)
1297                         break;
1298                 /*
1299                  * If the MSG_WAITALL flag is set (for non-atomic socket),
1300                  * we must not quit until resid == 0 or an error
1301                  * termination.  If a signal/timeout occurs, return
1302                  * with a short count but without error.
1303                  * Keep signalsockbuf locked against other readers.
1304                  */
1305                 while ((flags & MSG_WAITALL) && m == NULL && 
1306                        resid > 0 && !sosendallatonce(so) && 
1307                        so->so_rcv.ssb_mb == NULL) {
1308                         if (so->so_error || so->so_state & SS_CANTRCVMORE)
1309                                 break;
1310                         /*
1311                          * The window might have closed to zero, make
1312                          * sure we send an ack now that we've drained
1313                          * the buffer or we might end up blocking until
1314                          * the idle takes over (5 seconds).
1315                          */
1316                         if (pr->pr_flags & PR_WANTRCVD && so->so_pcb)
1317                                 so_pru_rcvd(so, flags);
1318                         error = ssb_wait(&so->so_rcv);
1319                         if (error) {
1320                                 ssb_unlock(&so->so_rcv);
1321                                 error = 0;
1322                                 goto done;
1323                         }
1324                         m = so->so_rcv.ssb_mb;
1325                 }
1326         }
1327
1328         /*
1329          * If an atomic read was requested but unread data still remains
1330          * in the record, set MSG_TRUNC.
1331          */
1332         if (m && pr->pr_flags & PR_ATOMIC)
1333                 flags |= MSG_TRUNC;
1334
1335         /*
1336          * Cleanup.  If an atomic read was requested drop any unread data.
1337          */
1338         if ((flags & MSG_PEEK) == 0) {
1339                 if (m && (pr->pr_flags & PR_ATOMIC))
1340                         sbdroprecord(&so->so_rcv.sb);
1341                 if ((pr->pr_flags & PR_WANTRCVD) && so->so_pcb)
1342                         so_pru_rcvd(so, flags);
1343         }
1344
1345         if (orig_resid == resid && orig_resid &&
1346             (flags & MSG_EOR) == 0 && (so->so_state & SS_CANTRCVMORE) == 0) {
1347                 ssb_unlock(&so->so_rcv);
1348                 goto restart;
1349         }
1350
1351         if (flagsp)
1352                 *flagsp |= flags;
1353 release:
1354         ssb_unlock(&so->so_rcv);
1355 done:
1356         lwkt_reltoken(&so->so_rcv.ssb_token);
1357         if (free_chain)
1358                 m_freem(free_chain);
1359         return (error);
1360 }
1361
1362 /*
1363  * Shut a socket down.  Note that we do not get a frontend lock as we
1364  * want to be able to shut the socket down even if another thread is
1365  * blocked in a read(), thus waking it up.
1366  */
1367 int
1368 soshutdown(struct socket *so, int how)
1369 {
1370         if (!(how == SHUT_RD || how == SHUT_WR || how == SHUT_RDWR))
1371                 return (EINVAL);
1372
1373         if (how != SHUT_WR) {
1374                 /*ssb_lock(&so->so_rcv, M_WAITOK);*/
1375                 sorflush(so);
1376                 /*ssb_unlock(&so->so_rcv);*/
1377         }
1378         if (how != SHUT_RD)
1379                 return (so_pru_shutdown(so));
1380         return (0);
1381 }
1382
1383 void
1384 sorflush(struct socket *so)
1385 {
1386         struct signalsockbuf *ssb = &so->so_rcv;
1387         struct protosw *pr = so->so_proto;
1388         struct signalsockbuf asb;
1389
1390         atomic_set_int(&ssb->ssb_flags, SSB_NOINTR);
1391
1392         lwkt_gettoken(&ssb->ssb_token);
1393         socantrcvmore(so);
1394         asb = *ssb;
1395
1396         /*
1397          * Can't just blow up the ssb structure here
1398          */
1399         bzero(&ssb->sb, sizeof(ssb->sb));
1400         ssb->ssb_timeo = 0;
1401         ssb->ssb_lowat = 0;
1402         ssb->ssb_hiwat = 0;
1403         ssb->ssb_mbmax = 0;
1404         atomic_clear_int(&ssb->ssb_flags, SSB_CLEAR_MASK);
1405
1406         if ((pr->pr_flags & PR_RIGHTS) && pr->pr_domain->dom_dispose)
1407                 (*pr->pr_domain->dom_dispose)(asb.ssb_mb);
1408         ssb_release(&asb, so);
1409
1410         lwkt_reltoken(&ssb->ssb_token);
1411 }
1412
1413 #ifdef INET
1414 static int
1415 do_setopt_accept_filter(struct socket *so, struct sockopt *sopt)
1416 {
1417         struct accept_filter_arg        *afap = NULL;
1418         struct accept_filter    *afp;
1419         struct so_accf  *af = so->so_accf;
1420         int     error = 0;
1421
1422         /* do not set/remove accept filters on non listen sockets */
1423         if ((so->so_options & SO_ACCEPTCONN) == 0) {
1424                 error = EINVAL;
1425                 goto out;
1426         }
1427
1428         /* removing the filter */
1429         if (sopt == NULL) {
1430                 if (af != NULL) {
1431                         if (af->so_accept_filter != NULL && 
1432                                 af->so_accept_filter->accf_destroy != NULL) {
1433                                 af->so_accept_filter->accf_destroy(so);
1434                         }
1435                         if (af->so_accept_filter_str != NULL) {
1436                                 FREE(af->so_accept_filter_str, M_ACCF);
1437                         }
1438                         FREE(af, M_ACCF);
1439                         so->so_accf = NULL;
1440                 }
1441                 so->so_options &= ~SO_ACCEPTFILTER;
1442                 return (0);
1443         }
1444         /* adding a filter */
1445         /* must remove previous filter first */
1446         if (af != NULL) {
1447                 error = EINVAL;
1448                 goto out;
1449         }
1450         /* don't put large objects on the kernel stack */
1451         MALLOC(afap, struct accept_filter_arg *, sizeof(*afap), M_TEMP, M_WAITOK);
1452         error = sooptcopyin(sopt, afap, sizeof *afap, sizeof *afap);
1453         afap->af_name[sizeof(afap->af_name)-1] = '\0';
1454         afap->af_arg[sizeof(afap->af_arg)-1] = '\0';
1455         if (error)
1456                 goto out;
1457         afp = accept_filt_get(afap->af_name);
1458         if (afp == NULL) {
1459                 error = ENOENT;
1460                 goto out;
1461         }
1462         MALLOC(af, struct so_accf *, sizeof(*af), M_ACCF, M_WAITOK | M_ZERO);
1463         if (afp->accf_create != NULL) {
1464                 if (afap->af_name[0] != '\0') {
1465                         int len = strlen(afap->af_name) + 1;
1466
1467                         MALLOC(af->so_accept_filter_str, char *, len, M_ACCF, M_WAITOK);
1468                         strcpy(af->so_accept_filter_str, afap->af_name);
1469                 }
1470                 af->so_accept_filter_arg = afp->accf_create(so, afap->af_arg);
1471                 if (af->so_accept_filter_arg == NULL) {
1472                         FREE(af->so_accept_filter_str, M_ACCF);
1473                         FREE(af, M_ACCF);
1474                         so->so_accf = NULL;
1475                         error = EINVAL;
1476                         goto out;
1477                 }
1478         }
1479         af->so_accept_filter = afp;
1480         so->so_accf = af;
1481         so->so_options |= SO_ACCEPTFILTER;
1482 out:
1483         if (afap != NULL)
1484                 FREE(afap, M_TEMP);
1485         return (error);
1486 }
1487 #endif /* INET */
1488
1489 /*
1490  * Perhaps this routine, and sooptcopyout(), below, ought to come in
1491  * an additional variant to handle the case where the option value needs
1492  * to be some kind of integer, but not a specific size.
1493  * In addition to their use here, these functions are also called by the
1494  * protocol-level pr_ctloutput() routines.
1495  */
1496 int
1497 sooptcopyin(struct sockopt *sopt, void *buf, size_t len, size_t minlen)
1498 {
1499         return soopt_to_kbuf(sopt, buf, len, minlen);
1500 }
1501
1502 int
1503 soopt_to_kbuf(struct sockopt *sopt, void *buf, size_t len, size_t minlen)
1504 {
1505         size_t  valsize;
1506
1507         KKASSERT(!sopt->sopt_val || kva_p(sopt->sopt_val));
1508         KKASSERT(kva_p(buf));
1509
1510         /*
1511          * If the user gives us more than we wanted, we ignore it,
1512          * but if we don't get the minimum length the caller
1513          * wants, we return EINVAL.  On success, sopt->sopt_valsize
1514          * is set to however much we actually retrieved.
1515          */
1516         if ((valsize = sopt->sopt_valsize) < minlen)
1517                 return EINVAL;
1518         if (valsize > len)
1519                 sopt->sopt_valsize = valsize = len;
1520
1521         bcopy(sopt->sopt_val, buf, valsize);
1522         return 0;
1523 }
1524
1525
1526 int
1527 sosetopt(struct socket *so, struct sockopt *sopt)
1528 {
1529         int     error, optval;
1530         struct  linger l;
1531         struct  timeval tv;
1532         u_long  val;
1533         struct signalsockbuf *sotmp;
1534
1535         error = 0;
1536         sopt->sopt_dir = SOPT_SET;
1537         if (sopt->sopt_level != SOL_SOCKET) {
1538                 if (so->so_proto && so->so_proto->pr_ctloutput) {
1539                         return (so_pr_ctloutput(so, sopt));
1540                 }
1541                 error = ENOPROTOOPT;
1542         } else {
1543                 switch (sopt->sopt_name) {
1544 #ifdef INET
1545                 case SO_ACCEPTFILTER:
1546                         error = do_setopt_accept_filter(so, sopt);
1547                         if (error)
1548                                 goto bad;
1549                         break;
1550 #endif /* INET */
1551                 case SO_LINGER:
1552                         error = sooptcopyin(sopt, &l, sizeof l, sizeof l);
1553                         if (error)
1554                                 goto bad;
1555
1556                         so->so_linger = l.l_linger;
1557                         if (l.l_onoff)
1558                                 so->so_options |= SO_LINGER;
1559                         else
1560                                 so->so_options &= ~SO_LINGER;
1561                         break;
1562
1563                 case SO_DEBUG:
1564                 case SO_KEEPALIVE:
1565                 case SO_DONTROUTE:
1566                 case SO_USELOOPBACK:
1567                 case SO_BROADCAST:
1568                 case SO_REUSEADDR:
1569                 case SO_REUSEPORT:
1570                 case SO_OOBINLINE:
1571                 case SO_TIMESTAMP:
1572                         error = sooptcopyin(sopt, &optval, sizeof optval,
1573                                             sizeof optval);
1574                         if (error)
1575                                 goto bad;
1576                         if (optval)
1577                                 so->so_options |= sopt->sopt_name;
1578                         else
1579                                 so->so_options &= ~sopt->sopt_name;
1580                         break;
1581
1582                 case SO_SNDBUF:
1583                 case SO_RCVBUF:
1584                 case SO_SNDLOWAT:
1585                 case SO_RCVLOWAT:
1586                         error = sooptcopyin(sopt, &optval, sizeof optval,
1587                                             sizeof optval);
1588                         if (error)
1589                                 goto bad;
1590
1591                         /*
1592                          * Values < 1 make no sense for any of these
1593                          * options, so disallow them.
1594                          */
1595                         if (optval < 1) {
1596                                 error = EINVAL;
1597                                 goto bad;
1598                         }
1599
1600                         switch (sopt->sopt_name) {
1601                         case SO_SNDBUF:
1602                         case SO_RCVBUF:
1603                                 if (ssb_reserve(sopt->sopt_name == SO_SNDBUF ?
1604                                     &so->so_snd : &so->so_rcv, (u_long)optval,
1605                                     so,
1606                                     &curproc->p_rlimit[RLIMIT_SBSIZE]) == 0) {
1607                                         error = ENOBUFS;
1608                                         goto bad;
1609                                 }
1610                                 sotmp = (sopt->sopt_name == SO_SNDBUF) ?
1611                                                 &so->so_snd : &so->so_rcv;
1612                                 atomic_clear_int(&sotmp->ssb_flags,
1613                                                  SSB_AUTOSIZE);
1614                                 break;
1615
1616                         /*
1617                          * Make sure the low-water is never greater than
1618                          * the high-water.
1619                          */
1620                         case SO_SNDLOWAT:
1621                                 so->so_snd.ssb_lowat =
1622                                     (optval > so->so_snd.ssb_hiwat) ?
1623                                     so->so_snd.ssb_hiwat : optval;
1624                                 atomic_clear_int(&so->so_snd.ssb_flags,
1625                                                  SSB_AUTOLOWAT);
1626                                 break;
1627                         case SO_RCVLOWAT:
1628                                 so->so_rcv.ssb_lowat =
1629                                     (optval > so->so_rcv.ssb_hiwat) ?
1630                                     so->so_rcv.ssb_hiwat : optval;
1631                                 atomic_clear_int(&so->so_rcv.ssb_flags,
1632                                                  SSB_AUTOLOWAT);
1633                                 break;
1634                         }
1635                         break;
1636
1637                 case SO_SNDTIMEO:
1638                 case SO_RCVTIMEO:
1639                         error = sooptcopyin(sopt, &tv, sizeof tv,
1640                                             sizeof tv);
1641                         if (error)
1642                                 goto bad;
1643
1644                         /* assert(hz > 0); */
1645                         if (tv.tv_sec < 0 || tv.tv_sec > INT_MAX / hz ||
1646                             tv.tv_usec < 0 || tv.tv_usec >= 1000000) {
1647                                 error = EDOM;
1648                                 goto bad;
1649                         }
1650                         /* assert(tick > 0); */
1651                         /* assert(ULONG_MAX - INT_MAX >= 1000000); */
1652                         val = (u_long)(tv.tv_sec * hz) + tv.tv_usec / ustick;
1653                         if (val > INT_MAX) {
1654                                 error = EDOM;
1655                                 goto bad;
1656                         }
1657                         if (val == 0 && tv.tv_usec != 0)
1658                                 val = 1;
1659
1660                         switch (sopt->sopt_name) {
1661                         case SO_SNDTIMEO:
1662                                 so->so_snd.ssb_timeo = val;
1663                                 break;
1664                         case SO_RCVTIMEO:
1665                                 so->so_rcv.ssb_timeo = val;
1666                                 break;
1667                         }
1668                         break;
1669                 default:
1670                         error = ENOPROTOOPT;
1671                         break;
1672                 }
1673                 if (error == 0 && so->so_proto && so->so_proto->pr_ctloutput) {
1674                         (void) so_pr_ctloutput(so, sopt);
1675                 }
1676         }
1677 bad:
1678         return (error);
1679 }
1680
1681 /* Helper routine for getsockopt */
1682 int
1683 sooptcopyout(struct sockopt *sopt, const void *buf, size_t len)
1684 {
1685         soopt_from_kbuf(sopt, buf, len);
1686         return 0;
1687 }
1688
1689 void
1690 soopt_from_kbuf(struct sockopt *sopt, const void *buf, size_t len)
1691 {
1692         size_t  valsize;
1693
1694         if (len == 0) {
1695                 sopt->sopt_valsize = 0;
1696                 return;
1697         }
1698
1699         KKASSERT(!sopt->sopt_val || kva_p(sopt->sopt_val));
1700         KKASSERT(kva_p(buf));
1701
1702         /*
1703          * Documented get behavior is that we always return a value,
1704          * possibly truncated to fit in the user's buffer.
1705          * Traditional behavior is that we always tell the user
1706          * precisely how much we copied, rather than something useful
1707          * like the total amount we had available for her.
1708          * Note that this interface is not idempotent; the entire answer must
1709          * generated ahead of time.
1710          */
1711         valsize = szmin(len, sopt->sopt_valsize);
1712         sopt->sopt_valsize = valsize;
1713         if (sopt->sopt_val != 0) {
1714                 bcopy(buf, sopt->sopt_val, valsize);
1715         }
1716 }
1717
1718 int
1719 sogetopt(struct socket *so, struct sockopt *sopt)
1720 {
1721         int     error, optval;
1722         long    optval_l;
1723         struct  linger l;
1724         struct  timeval tv;
1725 #ifdef INET
1726         struct accept_filter_arg *afap;
1727 #endif
1728
1729         error = 0;
1730         sopt->sopt_dir = SOPT_GET;
1731         if (sopt->sopt_level != SOL_SOCKET) {
1732                 if (so->so_proto && so->so_proto->pr_ctloutput) {
1733                         return (so_pr_ctloutput(so, sopt));
1734                 } else
1735                         return (ENOPROTOOPT);
1736         } else {
1737                 switch (sopt->sopt_name) {
1738 #ifdef INET
1739                 case SO_ACCEPTFILTER:
1740                         if ((so->so_options & SO_ACCEPTCONN) == 0)
1741                                 return (EINVAL);
1742                         MALLOC(afap, struct accept_filter_arg *, sizeof(*afap),
1743                                 M_TEMP, M_WAITOK | M_ZERO);
1744                         if ((so->so_options & SO_ACCEPTFILTER) != 0) {
1745                                 strcpy(afap->af_name, so->so_accf->so_accept_filter->accf_name);
1746                                 if (so->so_accf->so_accept_filter_str != NULL)
1747                                         strcpy(afap->af_arg, so->so_accf->so_accept_filter_str);
1748                         }
1749                         error = sooptcopyout(sopt, afap, sizeof(*afap));
1750                         FREE(afap, M_TEMP);
1751                         break;
1752 #endif /* INET */
1753                         
1754                 case SO_LINGER:
1755                         l.l_onoff = so->so_options & SO_LINGER;
1756                         l.l_linger = so->so_linger;
1757                         error = sooptcopyout(sopt, &l, sizeof l);
1758                         break;
1759
1760                 case SO_USELOOPBACK:
1761                 case SO_DONTROUTE:
1762                 case SO_DEBUG:
1763                 case SO_KEEPALIVE:
1764                 case SO_REUSEADDR:
1765                 case SO_REUSEPORT:
1766                 case SO_BROADCAST:
1767                 case SO_OOBINLINE:
1768                 case SO_TIMESTAMP:
1769                         optval = so->so_options & sopt->sopt_name;
1770 integer:
1771                         error = sooptcopyout(sopt, &optval, sizeof optval);
1772                         break;
1773
1774                 case SO_TYPE:
1775                         optval = so->so_type;
1776                         goto integer;
1777
1778                 case SO_ERROR:
1779                         optval = so->so_error;
1780                         so->so_error = 0;
1781                         goto integer;
1782
1783                 case SO_SNDBUF:
1784                         optval = so->so_snd.ssb_hiwat;
1785                         goto integer;
1786
1787                 case SO_RCVBUF:
1788                         optval = so->so_rcv.ssb_hiwat;
1789                         goto integer;
1790
1791                 case SO_SNDLOWAT:
1792                         optval = so->so_snd.ssb_lowat;
1793                         goto integer;
1794
1795                 case SO_RCVLOWAT:
1796                         optval = so->so_rcv.ssb_lowat;
1797                         goto integer;
1798
1799                 case SO_SNDTIMEO:
1800                 case SO_RCVTIMEO:
1801                         optval = (sopt->sopt_name == SO_SNDTIMEO ?
1802                                   so->so_snd.ssb_timeo : so->so_rcv.ssb_timeo);
1803
1804                         tv.tv_sec = optval / hz;
1805                         tv.tv_usec = (optval % hz) * ustick;
1806                         error = sooptcopyout(sopt, &tv, sizeof tv);
1807                         break;                  
1808
1809                 case SO_SNDSPACE:
1810                         optval_l = ssb_space(&so->so_snd);
1811                         error = sooptcopyout(sopt, &optval_l, sizeof(optval_l));
1812                         break;
1813
1814                 default:
1815                         error = ENOPROTOOPT;
1816                         break;
1817                 }
1818                 return (error);
1819         }
1820 }
1821
1822 /* XXX; prepare mbuf for (__FreeBSD__ < 3) routines. */
1823 int
1824 soopt_getm(struct sockopt *sopt, struct mbuf **mp)
1825 {
1826         struct mbuf *m, *m_prev;
1827         int sopt_size = sopt->sopt_valsize, msize;
1828
1829         m = m_getl(sopt_size, sopt->sopt_td ? MB_WAIT : MB_DONTWAIT, MT_DATA,
1830                    0, &msize);
1831         if (m == NULL)
1832                 return (ENOBUFS);
1833         m->m_len = min(msize, sopt_size);
1834         sopt_size -= m->m_len;
1835         *mp = m;
1836         m_prev = m;
1837
1838         while (sopt_size > 0) {
1839                 m = m_getl(sopt_size, sopt->sopt_td ? MB_WAIT : MB_DONTWAIT,
1840                            MT_DATA, 0, &msize);
1841                 if (m == NULL) {
1842                         m_freem(*mp);
1843                         return (ENOBUFS);
1844                 }
1845                 m->m_len = min(msize, sopt_size);
1846                 sopt_size -= m->m_len;
1847                 m_prev->m_next = m;
1848                 m_prev = m;
1849         }
1850         return (0);
1851 }
1852
1853 /* XXX; copyin sopt data into mbuf chain for (__FreeBSD__ < 3) routines. */
1854 int
1855 soopt_mcopyin(struct sockopt *sopt, struct mbuf *m)
1856 {
1857         soopt_to_mbuf(sopt, m);
1858         return 0;
1859 }
1860
1861 void
1862 soopt_to_mbuf(struct sockopt *sopt, struct mbuf *m)
1863 {
1864         size_t valsize;
1865         void *val;
1866
1867         KKASSERT(!sopt->sopt_val || kva_p(sopt->sopt_val));
1868         KKASSERT(kva_p(m));
1869         if (sopt->sopt_val == NULL)
1870                 return;
1871         val = sopt->sopt_val;
1872         valsize = sopt->sopt_valsize;
1873         while (m != NULL && valsize >= m->m_len) {
1874                 bcopy(val, mtod(m, char *), m->m_len);
1875                 valsize -= m->m_len;
1876                 val = (caddr_t)val + m->m_len;
1877                 m = m->m_next;
1878         }
1879         if (m != NULL) /* should be allocated enoughly at ip6_sooptmcopyin() */
1880                 panic("ip6_sooptmcopyin");
1881 }
1882
1883 /* XXX; copyout mbuf chain data into soopt for (__FreeBSD__ < 3) routines. */
1884 int
1885 soopt_mcopyout(struct sockopt *sopt, struct mbuf *m)
1886 {
1887         return soopt_from_mbuf(sopt, m);
1888 }
1889
1890 int
1891 soopt_from_mbuf(struct sockopt *sopt, struct mbuf *m)
1892 {
1893         struct mbuf *m0 = m;
1894         size_t valsize = 0;
1895         size_t maxsize;
1896         void *val;
1897
1898         KKASSERT(!sopt->sopt_val || kva_p(sopt->sopt_val));
1899         KKASSERT(kva_p(m));
1900         if (sopt->sopt_val == NULL)
1901                 return 0;
1902         val = sopt->sopt_val;
1903         maxsize = sopt->sopt_valsize;
1904         while (m != NULL && maxsize >= m->m_len) {
1905                 bcopy(mtod(m, char *), val, m->m_len);
1906                maxsize -= m->m_len;
1907                val = (caddr_t)val + m->m_len;
1908                valsize += m->m_len;
1909                m = m->m_next;
1910         }
1911         if (m != NULL) {
1912                 /* enough soopt buffer should be given from user-land */
1913                 m_freem(m0);
1914                 return (EINVAL);
1915         }
1916         sopt->sopt_valsize = valsize;
1917         return 0;
1918 }
1919
1920 void
1921 sohasoutofband(struct socket *so)
1922 {
1923         if (so->so_sigio != NULL)
1924                 pgsigio(so->so_sigio, SIGURG, 0);
1925         KNOTE(&so->so_rcv.ssb_kq.ki_note, NOTE_OOB);
1926 }
1927
1928 int
1929 sokqfilter(struct file *fp, struct knote *kn)
1930 {
1931         struct socket *so = (struct socket *)kn->kn_fp->f_data;
1932         struct signalsockbuf *ssb;
1933
1934         switch (kn->kn_filter) {
1935         case EVFILT_READ:
1936                 if (so->so_options & SO_ACCEPTCONN)
1937                         kn->kn_fop = &solisten_filtops;
1938                 else
1939                         kn->kn_fop = &soread_filtops;
1940                 ssb = &so->so_rcv;
1941                 break;
1942         case EVFILT_WRITE:
1943                 kn->kn_fop = &sowrite_filtops;
1944                 ssb = &so->so_snd;
1945                 break;
1946         case EVFILT_EXCEPT:
1947                 kn->kn_fop = &soexcept_filtops;
1948                 ssb = &so->so_rcv;
1949                 break;
1950         default:
1951                 return (EOPNOTSUPP);
1952         }
1953
1954         knote_insert(&ssb->ssb_kq.ki_note, kn);
1955         atomic_set_int(&ssb->ssb_flags, SSB_KNOTE);
1956         return (0);
1957 }
1958
1959 static void
1960 filt_sordetach(struct knote *kn)
1961 {
1962         struct socket *so = (struct socket *)kn->kn_fp->f_data;
1963
1964         knote_remove(&so->so_rcv.ssb_kq.ki_note, kn);
1965         if (SLIST_EMPTY(&so->so_rcv.ssb_kq.ki_note))
1966                 atomic_clear_int(&so->so_rcv.ssb_flags, SSB_KNOTE);
1967 }
1968
1969 /*ARGSUSED*/
1970 static int
1971 filt_soread(struct knote *kn, long hint)
1972 {
1973         struct socket *so = (struct socket *)kn->kn_fp->f_data;
1974
1975         if (kn->kn_sfflags & NOTE_OOB) {
1976                 if ((so->so_oobmark || (so->so_state & SS_RCVATMARK))) {
1977                         kn->kn_fflags |= NOTE_OOB;
1978                         return (1);
1979                 }
1980                 return (0);
1981         }
1982         kn->kn_data = so->so_rcv.ssb_cc;
1983
1984         if (so->so_state & SS_CANTRCVMORE) {
1985                 /*
1986                  * Only set NODATA if all data has been exhausted.
1987                  */
1988                 if (kn->kn_data == 0)
1989                         kn->kn_flags |= EV_NODATA;
1990                 kn->kn_flags |= EV_EOF; 
1991                 kn->kn_fflags = so->so_error;
1992                 return (1);
1993         }
1994         if (so->so_error)       /* temporary udp error */
1995                 return (1);
1996         if (kn->kn_sfflags & NOTE_LOWAT)
1997                 return (kn->kn_data >= kn->kn_sdata);
1998         return ((kn->kn_data >= so->so_rcv.ssb_lowat) ||
1999                 !TAILQ_EMPTY(&so->so_comp));
2000 }
2001
2002 static void
2003 filt_sowdetach(struct knote *kn)
2004 {
2005         struct socket *so = (struct socket *)kn->kn_fp->f_data;
2006
2007         knote_remove(&so->so_snd.ssb_kq.ki_note, kn);
2008         if (SLIST_EMPTY(&so->so_snd.ssb_kq.ki_note))
2009                 atomic_clear_int(&so->so_snd.ssb_flags, SSB_KNOTE);
2010 }
2011
2012 /*ARGSUSED*/
2013 static int
2014 filt_sowrite(struct knote *kn, long hint)
2015 {
2016         struct socket *so = (struct socket *)kn->kn_fp->f_data;
2017
2018         kn->kn_data = ssb_space(&so->so_snd);
2019         if (so->so_state & SS_CANTSENDMORE) {
2020                 kn->kn_flags |= (EV_EOF | EV_NODATA);
2021                 kn->kn_fflags = so->so_error;
2022                 return (1);
2023         }
2024         if (so->so_error)       /* temporary udp error */
2025                 return (1);
2026         if (((so->so_state & SS_ISCONNECTED) == 0) &&
2027             (so->so_proto->pr_flags & PR_CONNREQUIRED))
2028                 return (0);
2029         if (kn->kn_sfflags & NOTE_LOWAT)
2030                 return (kn->kn_data >= kn->kn_sdata);
2031         return (kn->kn_data >= so->so_snd.ssb_lowat);
2032 }
2033
2034 /*ARGSUSED*/
2035 static int
2036 filt_solisten(struct knote *kn, long hint)
2037 {
2038         struct socket *so = (struct socket *)kn->kn_fp->f_data;
2039
2040         kn->kn_data = so->so_qlen;
2041         return (! TAILQ_EMPTY(&so->so_comp));
2042 }