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