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