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