]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/kern/uipc_socket.c
Correct an uninitialized variable use, which, unlike most times, is
[FreeBSD/FreeBSD.git] / sys / kern / uipc_socket.c
1 /*
2  * Copyright (c) 1982, 1986, 1988, 1990, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by the University of
16  *      California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  *
33  *      @(#)uipc_socket.c       8.3 (Berkeley) 4/15/94
34  * $FreeBSD$
35  */
36
37 #include <sys/param.h>
38 #include <sys/systm.h>
39 #include <sys/fcntl.h>
40 #include <sys/malloc.h>
41 #include <sys/mbuf.h>
42 #include <sys/domain.h>
43 #include <sys/kernel.h>
44 #include <sys/malloc.h>
45 #include <sys/poll.h>
46 #include <sys/proc.h>
47 #include <sys/protosw.h>
48 #include <sys/socket.h>
49 #include <sys/socketvar.h>
50 #include <sys/resourcevar.h>
51 #include <sys/signalvar.h>
52 #include <sys/sysctl.h>
53 #include <sys/uio.h>
54 #include <vm/vm_zone.h>
55
56 #include <machine/limits.h>
57
58 struct  vm_zone *socket_zone;
59 so_gen_t        so_gencnt;      /* generation count for sockets */
60
61 MALLOC_DEFINE(M_SONAME, "soname", "socket name");
62 MALLOC_DEFINE(M_PCB, "pcb", "protocol control block");
63
64 SYSCTL_DECL(_kern_ipc);
65
66 static int somaxconn = SOMAXCONN;
67 SYSCTL_INT(_kern_ipc, KIPC_SOMAXCONN, somaxconn, CTLFLAG_RW,
68     &somaxconn, 0, "Maximum pending socket connection queue size");
69
70 /*
71  * Socket operation routines.
72  * These routines are called by the routines in
73  * sys_socket.c or from a system process, and
74  * implement the semantics of socket operations by
75  * switching out to the protocol specific routines.
76  */
77
78 /*
79  * Get a socket structure from our zone, and initialize it.
80  * We don't implement `waitok' yet (see comments in uipc_domain.c).
81  * Note that it would probably be better to allocate socket
82  * and PCB at the same time, but I'm not convinced that all
83  * the protocols can be easily modified to do this.
84  */
85 struct socket *
86 soalloc(waitok)
87         int waitok;
88 {
89         struct socket *so;
90
91         so = zalloci(socket_zone);
92         if (so) {
93                 /* XXX race condition for reentrant kernel */
94                 bzero(so, sizeof *so);
95                 so->so_gencnt = ++so_gencnt;
96                 so->so_zone = socket_zone;
97         }
98         return so;
99 }
100
101 int
102 socreate(dom, aso, type, proto, p)
103         int dom;
104         struct socket **aso;
105         register int type;
106         int proto;
107         struct proc *p;
108 {
109         register struct protosw *prp;
110         register struct socket *so;
111         register int error;
112
113         if (proto)
114                 prp = pffindproto(dom, proto, type);
115         else
116                 prp = pffindtype(dom, type);
117         if (prp == 0 || prp->pr_usrreqs->pru_attach == 0)
118                 return (EPROTONOSUPPORT);
119         if (prp->pr_type != type)
120                 return (EPROTOTYPE);
121         so = soalloc(p != 0);
122         if (so == 0)
123                 return (ENOBUFS);
124
125         TAILQ_INIT(&so->so_incomp);
126         TAILQ_INIT(&so->so_comp);
127         so->so_type = type;
128         so->so_cred = p->p_ucred;
129         crhold(so->so_cred);
130         so->so_proto = prp;
131         error = (*prp->pr_usrreqs->pru_attach)(so, proto, p);
132         if (error) {
133                 so->so_state |= SS_NOFDREF;
134                 sofree(so);
135                 return (error);
136         }
137         *aso = so;
138         return (0);
139 }
140
141 int
142 sobind(so, nam, p)
143         struct socket *so;
144         struct sockaddr *nam;
145         struct proc *p;
146 {
147         int s = splnet();
148         int error;
149
150         error = (*so->so_proto->pr_usrreqs->pru_bind)(so, nam, p);
151         splx(s);
152         return (error);
153 }
154
155 void
156 sodealloc(so)
157         struct socket *so;
158 {
159
160         so->so_gencnt = ++so_gencnt;
161         if (so->so_rcv.sb_hiwat)
162                 (void)chgsbsize(so->so_cred->cr_uid,
163                     -(rlim_t)so->so_rcv.sb_hiwat);
164         if (so->so_snd.sb_hiwat)
165                 (void)chgsbsize(so->so_cred->cr_uid,
166                     -(rlim_t)so->so_snd.sb_hiwat);
167         crfree(so->so_cred);
168         zfreei(so->so_zone, so);
169 }
170
171 int
172 solisten(so, backlog, p)
173         register struct socket *so;
174         int backlog;
175         struct proc *p;
176 {
177         int s, error;
178
179         s = splnet();
180         error = (*so->so_proto->pr_usrreqs->pru_listen)(so, p);
181         if (error) {
182                 splx(s);
183                 return (error);
184         }
185         if (TAILQ_EMPTY(&so->so_comp))
186                 so->so_options |= SO_ACCEPTCONN;
187         if (backlog < 0 || backlog > somaxconn)
188                 backlog = somaxconn;
189         so->so_qlimit = backlog;
190         splx(s);
191         return (0);
192 }
193
194 void
195 sofree(so)
196         register struct socket *so;
197 {
198         struct socket *head = so->so_head;
199
200         if (so->so_pcb || (so->so_state & SS_NOFDREF) == 0)
201                 return;
202         if (head != NULL) {
203                 if (so->so_state & SS_INCOMP) {
204                         TAILQ_REMOVE(&head->so_incomp, so, so_list);
205                         head->so_incqlen--;
206                 } else if (so->so_state & SS_COMP) {
207                         /*
208                          * We must not decommission a socket that's
209                          * on the accept(2) queue.  If we do, then
210                          * accept(2) may hang after select(2) indicated
211                          * that the listening socket was ready.
212                          */
213                         return;
214                 } else {
215                         panic("sofree: not queued");
216                 }
217                 head->so_qlen--;
218                 so->so_state &= ~SS_INCOMP;
219                 so->so_head = NULL;
220         }
221         sbrelease(&so->so_snd, so);
222         sorflush(so);
223         sodealloc(so);
224 }
225
226 /*
227  * Close a socket on last file table reference removal.
228  * Initiate disconnect if connected.
229  * Free socket when disconnect complete.
230  */
231 int
232 soclose(so)
233         register struct socket *so;
234 {
235         int s = splnet();               /* conservative */
236         int error = 0;
237
238         funsetown(so->so_sigio);
239         if (so->so_options & SO_ACCEPTCONN) {
240                 struct socket *sp, *sonext;
241
242                 sp = TAILQ_FIRST(&so->so_incomp);
243                 for (; sp != NULL; sp = sonext) {
244                         sonext = TAILQ_NEXT(sp, so_list);
245                         (void) soabort(sp);
246                 }
247                 for (sp = TAILQ_FIRST(&so->so_comp); sp != NULL; sp = sonext) {
248                         sonext = TAILQ_NEXT(sp, so_list);
249                         /* Dequeue from so_comp since sofree() won't do it */
250                         TAILQ_REMOVE(&so->so_comp, sp, so_list);
251                         so->so_qlen--;
252                         sp->so_state &= ~SS_COMP;
253                         sp->so_head = NULL;
254                         (void) soabort(sp);
255                 }
256         }
257         if (so->so_pcb == 0)
258                 goto discard;
259         if (so->so_state & SS_ISCONNECTED) {
260                 if ((so->so_state & SS_ISDISCONNECTING) == 0) {
261                         error = sodisconnect(so);
262                         if (error)
263                                 goto drop;
264                 }
265                 if (so->so_options & SO_LINGER) {
266                         if ((so->so_state & SS_ISDISCONNECTING) &&
267                             (so->so_state & SS_NBIO))
268                                 goto drop;
269                         while (so->so_state & SS_ISCONNECTED) {
270                                 error = tsleep((caddr_t)&so->so_timeo,
271                                     PSOCK | PCATCH, "soclos", so->so_linger * hz);
272                                 if (error)
273                                         break;
274                         }
275                 }
276         }
277 drop:
278         if (so->so_pcb) {
279                 int error2 = (*so->so_proto->pr_usrreqs->pru_detach)(so);
280                 if (error == 0)
281                         error = error2;
282         }
283 discard:
284         if (so->so_state & SS_NOFDREF)
285                 panic("soclose: NOFDREF");
286         so->so_state |= SS_NOFDREF;
287         sofree(so);
288         splx(s);
289         return (error);
290 }
291
292 /*
293  * Must be called at splnet...
294  */
295 int
296 soabort(so)
297         struct socket *so;
298 {
299
300         return (*so->so_proto->pr_usrreqs->pru_abort)(so);
301 }
302
303 int
304 soaccept(so, nam)
305         register struct socket *so;
306         struct sockaddr **nam;
307 {
308         int s = splnet();
309         int error;
310
311         if ((so->so_state & SS_NOFDREF) == 0)
312                 panic("soaccept: !NOFDREF");
313         so->so_state &= ~SS_NOFDREF;
314         if ((so->so_state & SS_ISDISCONNECTED) == 0)
315                 error = (*so->so_proto->pr_usrreqs->pru_accept)(so, nam);
316         else {
317                 if (nam)
318                         *nam = 0;
319                 error = 0;
320         }
321         splx(s);
322         return (error);
323 }
324
325 int
326 soconnect(so, nam, p)
327         register struct socket *so;
328         struct sockaddr *nam;
329         struct proc *p;
330 {
331         int s;
332         int error;
333
334         if (so->so_options & SO_ACCEPTCONN)
335                 return (EOPNOTSUPP);
336         s = splnet();
337         /*
338          * If protocol is connection-based, can only connect once.
339          * Otherwise, if connected, try to disconnect first.
340          * This allows user to disconnect by connecting to, e.g.,
341          * a null address.
342          */
343         if (so->so_state & (SS_ISCONNECTED|SS_ISCONNECTING) &&
344             ((so->so_proto->pr_flags & PR_CONNREQUIRED) ||
345             (error = sodisconnect(so))))
346                 error = EISCONN;
347         else
348                 error = (*so->so_proto->pr_usrreqs->pru_connect)(so, nam, p);
349         splx(s);
350         return (error);
351 }
352
353 int
354 soconnect2(so1, so2)
355         register struct socket *so1;
356         struct socket *so2;
357 {
358         int s = splnet();
359         int error;
360
361         error = (*so1->so_proto->pr_usrreqs->pru_connect2)(so1, so2);
362         splx(s);
363         return (error);
364 }
365
366 int
367 sodisconnect(so)
368         register struct socket *so;
369 {
370         int s = splnet();
371         int error;
372
373         if ((so->so_state & SS_ISCONNECTED) == 0) {
374                 error = ENOTCONN;
375                 goto bad;
376         }
377         if (so->so_state & SS_ISDISCONNECTING) {
378                 error = EALREADY;
379                 goto bad;
380         }
381         error = (*so->so_proto->pr_usrreqs->pru_disconnect)(so);
382 bad:
383         splx(s);
384         return (error);
385 }
386
387 #define SBLOCKWAIT(f)   (((f) & MSG_DONTWAIT) ? M_NOWAIT : M_WAITOK)
388 /*
389  * Send on a socket.
390  * If send must go all at once and message is larger than
391  * send buffering, then hard error.
392  * Lock against other senders.
393  * If must go all at once and not enough room now, then
394  * inform user that this would block and do nothing.
395  * Otherwise, if nonblocking, send as much as possible.
396  * The data to be sent is described by "uio" if nonzero,
397  * otherwise by the mbuf chain "top" (which must be null
398  * if uio is not).  Data provided in mbuf chain must be small
399  * enough to send all at once.
400  *
401  * Returns nonzero on error, timeout or signal; callers
402  * must check for short counts if EINTR/ERESTART are returned.
403  * Data and control buffers are freed on return.
404  */
405 int
406 sosend(so, addr, uio, top, control, flags, p)
407         register struct socket *so;
408         struct sockaddr *addr;
409         struct uio *uio;
410         struct mbuf *top;
411         struct mbuf *control;
412         int flags;
413         struct proc *p;
414 {
415         struct mbuf **mp;
416         register struct mbuf *m;
417         register long space, len, resid;
418         int clen = 0, error, s, dontroute, mlen;
419         int atomic = sosendallatonce(so) || top;
420
421         if (uio)
422                 resid = uio->uio_resid;
423         else
424                 resid = top->m_pkthdr.len;
425         /*
426          * In theory resid should be unsigned.
427          * However, space must be signed, as it might be less than 0
428          * if we over-committed, and we must use a signed comparison
429          * of space and resid.  On the other hand, a negative resid
430          * causes us to loop sending 0-length segments to the protocol.
431          *
432          * Also check to make sure that MSG_EOR isn't used on SOCK_STREAM
433          * type sockets since that's an error.
434          */
435         if (resid < 0 || (so->so_type == SOCK_STREAM && (flags & MSG_EOR))) {
436                 error = EINVAL;
437                 goto out;
438         }
439
440         dontroute =
441             (flags & MSG_DONTROUTE) && (so->so_options & SO_DONTROUTE) == 0 &&
442             (so->so_proto->pr_flags & PR_ATOMIC);
443         if (p)
444                 p->p_stats->p_ru.ru_msgsnd++;
445         if (control)
446                 clen = control->m_len;
447 #define snderr(errno)   { error = errno; splx(s); goto release; }
448
449 restart:
450         error = sblock(&so->so_snd, SBLOCKWAIT(flags));
451         if (error)
452                 goto out;
453         do {
454                 s = splnet();
455                 if (so->so_state & SS_CANTSENDMORE)
456                         snderr(EPIPE);
457                 if (so->so_error) {
458                         error = so->so_error;
459                         so->so_error = 0;
460                         splx(s);
461                         goto release;
462                 }
463                 if ((so->so_state & SS_ISCONNECTED) == 0) {
464                         /*
465                          * `sendto' and `sendmsg' is allowed on a connection-
466                          * based socket if it supports implied connect.
467                          * Return ENOTCONN if not connected and no address is
468                          * supplied.
469                          */
470                         if ((so->so_proto->pr_flags & PR_CONNREQUIRED) &&
471                             (so->so_proto->pr_flags & PR_IMPLOPCL) == 0) {
472                                 if ((so->so_state & SS_ISCONFIRMING) == 0 &&
473                                     !(resid == 0 && clen != 0))
474                                         snderr(ENOTCONN);
475                         } else if (addr == 0)
476                             snderr(so->so_proto->pr_flags & PR_CONNREQUIRED ?
477                                    ENOTCONN : EDESTADDRREQ);
478                 }
479                 space = sbspace(&so->so_snd);
480                 if (flags & MSG_OOB)
481                         space += 1024;
482                 if ((atomic && resid > so->so_snd.sb_hiwat) ||
483                     clen > so->so_snd.sb_hiwat)
484                         snderr(EMSGSIZE);
485                 if (space < resid + clen && uio &&
486                     (atomic || space < so->so_snd.sb_lowat || space < clen)) {
487                         if (so->so_state & SS_NBIO)
488                                 snderr(EWOULDBLOCK);
489                         sbunlock(&so->so_snd);
490                         error = sbwait(&so->so_snd);
491                         splx(s);
492                         if (error)
493                                 goto out;
494                         goto restart;
495                 }
496                 splx(s);
497                 mp = &top;
498                 space -= clen;
499                 do {
500                     if (uio == NULL) {
501                         /*
502                          * Data is prepackaged in "top".
503                          */
504                         resid = 0;
505                         if (flags & MSG_EOR)
506                                 top->m_flags |= M_EOR;
507                     } else do {
508                         if (top == 0) {
509                                 MGETHDR(m, M_WAIT, MT_DATA);
510                                 if (m == NULL) {
511                                         error = ENOBUFS;
512                                         goto release;
513                                 }
514                                 mlen = MHLEN;
515                                 m->m_pkthdr.len = 0;
516                                 m->m_pkthdr.rcvif = (struct ifnet *)0;
517                         } else {
518                                 MGET(m, M_WAIT, MT_DATA);
519                                 if (m == NULL) {
520                                         error = ENOBUFS;
521                                         goto release;
522                                 }
523                                 mlen = MLEN;
524                         }
525                         if (resid >= MINCLSIZE) {
526                                 MCLGET(m, M_WAIT);
527                                 if ((m->m_flags & M_EXT) == 0)
528                                         goto nopages;
529                                 mlen = MCLBYTES;
530                                 len = min(min(mlen, resid), space);
531                         } else {
532 nopages:
533                                 len = min(min(mlen, resid), space);
534                                 /*
535                                  * For datagram protocols, leave room
536                                  * for protocol headers in first mbuf.
537                                  */
538                                 if (atomic && top == 0 && len < mlen)
539                                         MH_ALIGN(m, len);
540                         }
541                         space -= len;
542                         error = uiomove(mtod(m, caddr_t), (int)len, uio);
543                         resid = uio->uio_resid;
544                         m->m_len = len;
545                         *mp = m;
546                         top->m_pkthdr.len += len;
547                         if (error)
548                                 goto release;
549                         mp = &m->m_next;
550                         if (resid <= 0) {
551                                 if (flags & MSG_EOR)
552                                         top->m_flags |= M_EOR;
553                                 break;
554                         }
555                     } while (space > 0 && atomic);
556                     if (dontroute)
557                             so->so_options |= SO_DONTROUTE;
558                     s = splnet();                               /* XXX */
559                     /*
560                      * XXX all the SS_CANTSENDMORE checks previously
561                      * done could be out of date.  We could have recieved
562                      * a reset packet in an interrupt or maybe we slept
563                      * while doing page faults in uiomove() etc. We could
564                      * probably recheck again inside the splnet() protection
565                      * here, but there are probably other places that this
566                      * also happens.  We must rethink this.
567                      */
568                     error = (*so->so_proto->pr_usrreqs->pru_send)(so,
569                         (flags & MSG_OOB) ? PRUS_OOB :
570                         /*
571                          * If the user set MSG_EOF, the protocol
572                          * understands this flag and nothing left to
573                          * send then use PRU_SEND_EOF instead of PRU_SEND.
574                          */
575                         ((flags & MSG_EOF) &&
576                          (so->so_proto->pr_flags & PR_IMPLOPCL) &&
577                          (resid <= 0)) ?
578                                 PRUS_EOF :
579                         /* If there is more to send set PRUS_MORETOCOME */
580                         (resid > 0 && space > 0) ? PRUS_MORETOCOME : 0,
581                         top, addr, control, p);
582                     splx(s);
583                     if (dontroute)
584                             so->so_options &= ~SO_DONTROUTE;
585                     clen = 0;
586                     control = 0;
587                     top = 0;
588                     mp = &top;
589                     if (error)
590                         goto release;
591                 } while (resid && space > 0);
592         } while (resid);
593
594 release:
595         sbunlock(&so->so_snd);
596 out:
597         if (top)
598                 m_freem(top);
599         if (control)
600                 m_freem(control);
601         return (error);
602 }
603
604 /*
605  * Implement receive operations on a socket.
606  * We depend on the way that records are added to the sockbuf
607  * by sbappend*.  In particular, each record (mbufs linked through m_next)
608  * must begin with an address if the protocol so specifies,
609  * followed by an optional mbuf or mbufs containing ancillary data,
610  * and then zero or more mbufs of data.
611  * In order to avoid blocking network interrupts for the entire time here,
612  * we splx() while doing the actual copy to user space.
613  * Although the sockbuf is locked, new data may still be appended,
614  * and thus we must maintain consistency of the sockbuf during that time.
615  *
616  * The caller may receive the data as a single mbuf chain by supplying
617  * an mbuf **mp0 for use in returning the chain.  The uio is then used
618  * only for the count in uio_resid.
619  */
620 int
621 soreceive(so, psa, uio, mp0, controlp, flagsp)
622         register struct socket *so;
623         struct sockaddr **psa;
624         struct uio *uio;
625         struct mbuf **mp0;
626         struct mbuf **controlp;
627         int *flagsp;
628 {
629         register struct mbuf *m, **mp;
630         register int flags, len, error, s, offset;
631         struct protosw *pr = so->so_proto;
632         struct mbuf *nextrecord;
633         int moff, type = 0;
634         int orig_resid = uio->uio_resid;
635
636         mp = mp0;
637         if (psa)
638                 *psa = 0;
639         if (controlp)
640                 *controlp = 0;
641         if (flagsp)
642                 flags = *flagsp &~ MSG_EOR;
643         else
644                 flags = 0;
645         if (flags & MSG_OOB) {
646                 m = m_get(M_WAIT, MT_DATA);
647                 if (m == NULL)
648                         return (ENOBUFS);
649                 error = (*pr->pr_usrreqs->pru_rcvoob)(so, m, flags & MSG_PEEK);
650                 if (error)
651                         goto bad;
652                 do {
653                         error = uiomove(mtod(m, caddr_t),
654                             (int) min(uio->uio_resid, m->m_len), uio);
655                         m = m_free(m);
656                 } while (uio->uio_resid && error == 0 && m);
657 bad:
658                 if (m)
659                         m_freem(m);
660                 return (error);
661         }
662         if (mp)
663                 *mp = (struct mbuf *)0;
664         if (so->so_state & SS_ISCONFIRMING && uio->uio_resid)
665                 (*pr->pr_usrreqs->pru_rcvd)(so, 0);
666
667 restart:
668         error = sblock(&so->so_rcv, SBLOCKWAIT(flags));
669         if (error)
670                 return (error);
671         s = splnet();
672
673         m = so->so_rcv.sb_mb;
674         /*
675          * If we have less data than requested, block awaiting more
676          * (subject to any timeout) if:
677          *   1. the current count is less than the low water mark, or
678          *   2. MSG_WAITALL is set, and it is possible to do the entire
679          *      receive operation at once if we block (resid <= hiwat).
680          *   3. MSG_DONTWAIT is not set
681          * If MSG_WAITALL is set but resid is larger than the receive buffer,
682          * we have to do the receive in sections, and thus risk returning
683          * a short count if a timeout or signal occurs after we start.
684          */
685         if (m == 0 || (((flags & MSG_DONTWAIT) == 0 &&
686             so->so_rcv.sb_cc < uio->uio_resid) &&
687             (so->so_rcv.sb_cc < so->so_rcv.sb_lowat ||
688             ((flags & MSG_WAITALL) && uio->uio_resid <= so->so_rcv.sb_hiwat)) &&
689             m->m_nextpkt == 0 && (pr->pr_flags & PR_ATOMIC) == 0)) {
690                 KASSERT(m != 0 || !so->so_rcv.sb_cc, ("receive 1"));
691                 if (so->so_error) {
692                         if (m)
693                                 goto dontblock;
694                         error = so->so_error;
695                         if ((flags & MSG_PEEK) == 0)
696                                 so->so_error = 0;
697                         goto release;
698                 }
699                 if (so->so_state & SS_CANTRCVMORE) {
700                         if (m)
701                                 goto dontblock;
702                         else
703                                 goto release;
704                 }
705                 for (; m; m = m->m_next)
706                         if (m->m_type == MT_OOBDATA  || (m->m_flags & M_EOR)) {
707                                 m = so->so_rcv.sb_mb;
708                                 goto dontblock;
709                         }
710                 if ((so->so_state & (SS_ISCONNECTED|SS_ISCONNECTING)) == 0 &&
711                     (so->so_proto->pr_flags & PR_CONNREQUIRED)) {
712                         error = ENOTCONN;
713                         goto release;
714                 }
715                 if (uio->uio_resid == 0)
716                         goto release;
717                 if ((so->so_state & SS_NBIO) || (flags & MSG_DONTWAIT)) {
718                         error = EWOULDBLOCK;
719                         goto release;
720                 }
721                 sbunlock(&so->so_rcv);
722                 error = sbwait(&so->so_rcv);
723                 splx(s);
724                 if (error)
725                         return (error);
726                 goto restart;
727         }
728 dontblock:
729         if (uio->uio_procp)
730                 uio->uio_procp->p_stats->p_ru.ru_msgrcv++;
731         nextrecord = m->m_nextpkt;
732         if (pr->pr_flags & PR_ADDR) {
733                 KASSERT(m->m_type == MT_SONAME, ("receive 1a"));
734                 orig_resid = 0;
735                 if (psa)
736                         *psa = dup_sockaddr(mtod(m, struct sockaddr *),
737                                             mp0 == 0);
738                 if (flags & MSG_PEEK) {
739                         m = m->m_next;
740                 } else {
741                         sbfree(&so->so_rcv, m);
742                         MFREE(m, so->so_rcv.sb_mb);
743                         m = so->so_rcv.sb_mb;
744                 }
745         }
746         while (m && m->m_type == MT_CONTROL && error == 0) {
747                 if (flags & MSG_PEEK) {
748                         if (controlp)
749                                 *controlp = m_copy(m, 0, m->m_len);
750                         m = m->m_next;
751                 } else {
752                         sbfree(&so->so_rcv, m);
753                         if (controlp) {
754                                 if (pr->pr_domain->dom_externalize &&
755                                     mtod(m, struct cmsghdr *)->cmsg_type ==
756                                     SCM_RIGHTS)
757                                    error = (*pr->pr_domain->dom_externalize)(m);
758                                 *controlp = m;
759                                 so->so_rcv.sb_mb = m->m_next;
760                                 m->m_next = 0;
761                                 m = so->so_rcv.sb_mb;
762                         } else {
763                                 MFREE(m, so->so_rcv.sb_mb);
764                                 m = so->so_rcv.sb_mb;
765                         }
766                 }
767                 if (controlp) {
768                         orig_resid = 0;
769                         controlp = &(*controlp)->m_next;
770                 }
771         }
772         if (m) {
773                 if ((flags & MSG_PEEK) == 0)
774                         m->m_nextpkt = nextrecord;
775                 type = m->m_type;
776                 if (type == MT_OOBDATA)
777                         flags |= MSG_OOB;
778         }
779         moff = 0;
780         offset = 0;
781         while (m && uio->uio_resid > 0 && error == 0) {
782                 if (m->m_type == MT_OOBDATA) {
783                         if (type != MT_OOBDATA)
784                                 break;
785                 } else if (type == MT_OOBDATA)
786                         break;
787                 else
788                     KASSERT(m->m_type == MT_DATA || m->m_type == MT_HEADER,
789                         ("receive 3"));
790                 so->so_state &= ~SS_RCVATMARK;
791                 len = uio->uio_resid;
792                 if (so->so_oobmark && len > so->so_oobmark - offset)
793                         len = so->so_oobmark - offset;
794                 if (len > m->m_len - moff)
795                         len = m->m_len - moff;
796                 /*
797                  * If mp is set, just pass back the mbufs.
798                  * Otherwise copy them out via the uio, then free.
799                  * Sockbuf must be consistent here (points to current mbuf,
800                  * it points to next record) when we drop priority;
801                  * we must note any additions to the sockbuf when we
802                  * block interrupts again.
803                  */
804                 if (mp == 0) {
805                         splx(s);
806                         error = uiomove(mtod(m, caddr_t) + moff, (int)len, uio);
807                         s = splnet();
808                         if (error)
809                                 goto release;
810                 } else
811                         uio->uio_resid -= len;
812                 if (len == m->m_len - moff) {
813                         if (m->m_flags & M_EOR)
814                                 flags |= MSG_EOR;
815                         if (flags & MSG_PEEK) {
816                                 m = m->m_next;
817                                 moff = 0;
818                         } else {
819                                 nextrecord = m->m_nextpkt;
820                                 sbfree(&so->so_rcv, m);
821                                 if (mp) {
822                                         *mp = m;
823                                         mp = &m->m_next;
824                                         so->so_rcv.sb_mb = m = m->m_next;
825                                         *mp = (struct mbuf *)0;
826                                 } else {
827                                         MFREE(m, so->so_rcv.sb_mb);
828                                         m = so->so_rcv.sb_mb;
829                                 }
830                                 if (m)
831                                         m->m_nextpkt = nextrecord;
832                         }
833                 } else {
834                         if (flags & MSG_PEEK)
835                                 moff += len;
836                         else {
837                                 if (mp)
838                                         *mp = m_copym(m, 0, len, M_WAIT);
839                                 m->m_data += len;
840                                 m->m_len -= len;
841                                 so->so_rcv.sb_cc -= len;
842                         }
843                 }
844                 if (so->so_oobmark) {
845                         if ((flags & MSG_PEEK) == 0) {
846                                 so->so_oobmark -= len;
847                                 if (so->so_oobmark == 0) {
848                                         so->so_state |= SS_RCVATMARK;
849                                         break;
850                                 }
851                         } else {
852                                 offset += len;
853                                 if (offset == so->so_oobmark)
854                                         break;
855                         }
856                 }
857                 if (flags & MSG_EOR)
858                         break;
859                 /*
860                  * If the MSG_WAITALL flag is set (for non-atomic socket),
861                  * we must not quit until "uio->uio_resid == 0" or an error
862                  * termination.  If a signal/timeout occurs, return
863                  * with a short count but without error.
864                  * Keep sockbuf locked against other readers.
865                  */
866                 while (flags & MSG_WAITALL && m == 0 && uio->uio_resid > 0 &&
867                     !sosendallatonce(so) && !nextrecord) {
868                         if (so->so_error || so->so_state & SS_CANTRCVMORE)
869                                 break;
870                         error = sbwait(&so->so_rcv);
871                         if (error) {
872                                 sbunlock(&so->so_rcv);
873                                 splx(s);
874                                 return (0);
875                         }
876                         m = so->so_rcv.sb_mb;
877                         if (m)
878                                 nextrecord = m->m_nextpkt;
879                 }
880         }
881
882         if (m && pr->pr_flags & PR_ATOMIC) {
883                 flags |= MSG_TRUNC;
884                 if ((flags & MSG_PEEK) == 0)
885                         (void) sbdroprecord(&so->so_rcv);
886         }
887         if ((flags & MSG_PEEK) == 0) {
888                 if (m == 0)
889                         so->so_rcv.sb_mb = nextrecord;
890                 if (pr->pr_flags & PR_WANTRCVD && so->so_pcb)
891                         (*pr->pr_usrreqs->pru_rcvd)(so, flags);
892         }
893         if (orig_resid == uio->uio_resid && orig_resid &&
894             (flags & MSG_EOR) == 0 && (so->so_state & SS_CANTRCVMORE) == 0) {
895                 sbunlock(&so->so_rcv);
896                 splx(s);
897                 goto restart;
898         }
899
900         if (flagsp)
901                 *flagsp |= flags;
902 release:
903         sbunlock(&so->so_rcv);
904         splx(s);
905         return (error);
906 }
907
908 int
909 soshutdown(so, how)
910         register struct socket *so;
911         register int how;
912 {
913         register struct protosw *pr = so->so_proto;
914
915         how++;
916         if (how & FREAD)
917                 sorflush(so);
918         if (how & FWRITE)
919                 return ((*pr->pr_usrreqs->pru_shutdown)(so));
920         return (0);
921 }
922
923 void
924 sorflush(so)
925         register struct socket *so;
926 {
927         register struct sockbuf *sb = &so->so_rcv;
928         register struct protosw *pr = so->so_proto;
929         register int s;
930         struct sockbuf asb;
931
932         sb->sb_flags |= SB_NOINTR;
933         (void) sblock(sb, M_WAITOK);
934         s = splimp();
935         socantrcvmore(so);
936         sbunlock(sb);
937         asb = *sb;
938         bzero((caddr_t)sb, sizeof (*sb));
939         splx(s);
940         if (pr->pr_flags & PR_RIGHTS && pr->pr_domain->dom_dispose)
941                 (*pr->pr_domain->dom_dispose)(asb.sb_mb);
942         sbrelease(&asb, so);
943 }
944
945 /*
946  * Perhaps this routine, and sooptcopyout(), below, ought to come in
947  * an additional variant to handle the case where the option value needs
948  * to be some kind of integer, but not a specific size.
949  * In addition to their use here, these functions are also called by the
950  * protocol-level pr_ctloutput() routines.
951  */
952 int
953 sooptcopyin(sopt, buf, len, minlen)
954         struct  sockopt *sopt;
955         void    *buf;
956         size_t  len;
957         size_t  minlen;
958 {
959         size_t  valsize;
960
961         /*
962          * If the user gives us more than we wanted, we ignore it,
963          * but if we don't get the minimum length the caller
964          * wants, we return EINVAL.  On success, sopt->sopt_valsize
965          * is set to however much we actually retrieved.
966          */
967         if ((valsize = sopt->sopt_valsize) < minlen)
968                 return EINVAL;
969         if (valsize > len)
970                 sopt->sopt_valsize = valsize = len;
971
972         if (sopt->sopt_p != 0)
973                 return (copyin(sopt->sopt_val, buf, valsize));
974
975         bcopy(sopt->sopt_val, buf, valsize);
976         return 0;
977 }
978
979 int
980 sosetopt(so, sopt)
981         struct socket *so;
982         struct sockopt *sopt;
983 {
984         int     error, optval;
985         struct  linger l;
986         struct  timeval tv;
987         u_long  val;
988
989         error = 0;
990         if (sopt->sopt_level != SOL_SOCKET) {
991                 if (so->so_proto && so->so_proto->pr_ctloutput)
992                         return ((*so->so_proto->pr_ctloutput)
993                                   (so, sopt));
994                 error = ENOPROTOOPT;
995         } else {
996                 switch (sopt->sopt_name) {
997                 case SO_LINGER:
998                         error = sooptcopyin(sopt, &l, sizeof l, sizeof l);
999                         if (error)
1000                                 goto bad;
1001
1002                         so->so_linger = l.l_linger;
1003                         if (l.l_onoff)
1004                                 so->so_options |= SO_LINGER;
1005                         else
1006                                 so->so_options &= ~SO_LINGER;
1007                         break;
1008
1009                 case SO_DEBUG:
1010                 case SO_KEEPALIVE:
1011                 case SO_DONTROUTE:
1012                 case SO_USELOOPBACK:
1013                 case SO_BROADCAST:
1014                 case SO_REUSEADDR:
1015                 case SO_REUSEPORT:
1016                 case SO_OOBINLINE:
1017                 case SO_TIMESTAMP:
1018                         error = sooptcopyin(sopt, &optval, sizeof optval,
1019                                             sizeof optval);
1020                         if (error)
1021                                 goto bad;
1022                         if (optval)
1023                                 so->so_options |= sopt->sopt_name;
1024                         else
1025                                 so->so_options &= ~sopt->sopt_name;
1026                         break;
1027
1028                 case SO_SNDBUF:
1029                 case SO_RCVBUF:
1030                 case SO_SNDLOWAT:
1031                 case SO_RCVLOWAT:
1032                         error = sooptcopyin(sopt, &optval, sizeof optval,
1033                                             sizeof optval);
1034                         if (error)
1035                                 goto bad;
1036
1037                         /*
1038                          * Values < 1 make no sense for any of these
1039                          * options, so disallow them.
1040                          */
1041                         if (optval < 1) {
1042                                 error = EINVAL;
1043                                 goto bad;
1044                         }
1045
1046                         switch (sopt->sopt_name) {
1047                         case SO_SNDBUF:
1048                         case SO_RCVBUF:
1049                                 if (sbreserve(sopt->sopt_name == SO_SNDBUF ?
1050                                     &so->so_snd : &so->so_rcv, (u_long)optval,
1051                                     so, curproc) == 0) {
1052                                         error = ENOBUFS;
1053                                         goto bad;
1054                                 }
1055                                 break;
1056
1057                         /*
1058                          * Make sure the low-water is never greater than
1059                          * the high-water.
1060                          */
1061                         case SO_SNDLOWAT:
1062                                 so->so_snd.sb_lowat =
1063                                     (optval > so->so_snd.sb_hiwat) ?
1064                                     so->so_snd.sb_hiwat : optval;
1065                                 break;
1066                         case SO_RCVLOWAT:
1067                                 so->so_rcv.sb_lowat =
1068                                     (optval > so->so_rcv.sb_hiwat) ?
1069                                     so->so_rcv.sb_hiwat : optval;
1070                                 break;
1071                         }
1072                         break;
1073
1074                 case SO_SNDTIMEO:
1075                 case SO_RCVTIMEO:
1076                         error = sooptcopyin(sopt, &tv, sizeof tv,
1077                                             sizeof tv);
1078                         if (error)
1079                                 goto bad;
1080
1081                         /* assert(hz > 0); */
1082                         if (tv.tv_sec < 0 || tv.tv_sec > SHRT_MAX / hz ||
1083                             tv.tv_usec < 0 || tv.tv_usec >= 1000000) {
1084                                 error = EDOM;
1085                                 goto bad;
1086                         }
1087                         /* assert(tick > 0); */
1088                         /* assert(ULONG_MAX - SHRT_MAX >= 1000000); */
1089                         val = (u_long)(tv.tv_sec * hz) + tv.tv_usec / tick;
1090                         if (val > SHRT_MAX) {
1091                                 error = EDOM;
1092                                 goto bad;
1093                         }
1094
1095                         switch (sopt->sopt_name) {
1096                         case SO_SNDTIMEO:
1097                                 so->so_snd.sb_timeo = val;
1098                                 break;
1099                         case SO_RCVTIMEO:
1100                                 so->so_rcv.sb_timeo = val;
1101                                 break;
1102                         }
1103                         break;
1104
1105                 default:
1106                         error = ENOPROTOOPT;
1107                         break;
1108                 }
1109                 if (error == 0 && so->so_proto && so->so_proto->pr_ctloutput) {
1110                         (void) ((*so->so_proto->pr_ctloutput)
1111                                   (so, sopt));
1112                 }
1113         }
1114 bad:
1115         return (error);
1116 }
1117
1118 /* Helper routine for getsockopt */
1119 int
1120 sooptcopyout(sopt, buf, len)
1121         struct  sockopt *sopt;
1122         void    *buf;
1123         size_t  len;
1124 {
1125         int     error;
1126         size_t  valsize;
1127
1128         error = 0;
1129
1130         /*
1131          * Documented get behavior is that we always return a value,
1132          * possibly truncated to fit in the user's buffer.
1133          * Traditional behavior is that we always tell the user
1134          * precisely how much we copied, rather than something useful
1135          * like the total amount we had available for her.
1136          * Note that this interface is not idempotent; the entire answer must
1137          * generated ahead of time.
1138          */
1139         valsize = min(len, sopt->sopt_valsize);
1140         sopt->sopt_valsize = valsize;
1141         if (sopt->sopt_val != 0) {
1142                 if (sopt->sopt_p != 0)
1143                         error = copyout(buf, sopt->sopt_val, valsize);
1144                 else
1145                         bcopy(buf, sopt->sopt_val, valsize);
1146         }
1147         return error;
1148 }
1149
1150 int
1151 sogetopt(so, sopt)
1152         struct socket *so;
1153         struct sockopt *sopt;
1154 {
1155         int     error, optval;
1156         struct  linger l;
1157         struct  timeval tv;
1158
1159         error = 0;
1160         if (sopt->sopt_level != SOL_SOCKET) {
1161                 if (so->so_proto && so->so_proto->pr_ctloutput) {
1162                         return ((*so->so_proto->pr_ctloutput)
1163                                   (so, sopt));
1164                 } else
1165                         return (ENOPROTOOPT);
1166         } else {
1167                 switch (sopt->sopt_name) {
1168                 case SO_LINGER:
1169                         l.l_onoff = so->so_options & SO_LINGER;
1170                         l.l_linger = so->so_linger;
1171                         error = sooptcopyout(sopt, &l, sizeof l);
1172                         break;
1173
1174                 case SO_USELOOPBACK:
1175                 case SO_DONTROUTE:
1176                 case SO_DEBUG:
1177                 case SO_KEEPALIVE:
1178                 case SO_REUSEADDR:
1179                 case SO_REUSEPORT:
1180                 case SO_BROADCAST:
1181                 case SO_OOBINLINE:
1182                 case SO_TIMESTAMP:
1183                         optval = so->so_options & sopt->sopt_name;
1184 integer:
1185                         error = sooptcopyout(sopt, &optval, sizeof optval);
1186                         break;
1187
1188                 case SO_TYPE:
1189                         optval = so->so_type;
1190                         goto integer;
1191
1192                 case SO_ERROR:
1193                         optval = so->so_error;
1194                         so->so_error = 0;
1195                         goto integer;
1196
1197                 case SO_SNDBUF:
1198                         optval = so->so_snd.sb_hiwat;
1199                         goto integer;
1200
1201                 case SO_RCVBUF:
1202                         optval = so->so_rcv.sb_hiwat;
1203                         goto integer;
1204
1205                 case SO_SNDLOWAT:
1206                         optval = so->so_snd.sb_lowat;
1207                         goto integer;
1208
1209                 case SO_RCVLOWAT:
1210                         optval = so->so_rcv.sb_lowat;
1211                         goto integer;
1212
1213                 case SO_SNDTIMEO:
1214                 case SO_RCVTIMEO:
1215                         optval = (sopt->sopt_name == SO_SNDTIMEO ?
1216                                   so->so_snd.sb_timeo : so->so_rcv.sb_timeo);
1217
1218                         tv.tv_sec = optval / hz;
1219                         tv.tv_usec = (optval % hz) * tick;
1220                         error = sooptcopyout(sopt, &tv, sizeof tv);
1221                         break;                  
1222
1223                 default:
1224                         error = ENOPROTOOPT;
1225                         break;
1226                 }
1227                 return (error);
1228         }
1229 }
1230
1231 /* XXX; prepare mbuf for (__FreeBSD__ < 3) routines. */
1232 int
1233 soopt_getm(struct sockopt *sopt, struct mbuf **mp)
1234 {
1235         struct mbuf *m, *m_prev;
1236         int sopt_size = sopt->sopt_valsize;
1237
1238         MGET(m, sopt->sopt_p ? M_WAIT : M_DONTWAIT, MT_DATA);
1239         if (m == 0)
1240                 return ENOBUFS;
1241         if (sopt_size > MLEN) {
1242                 MCLGET(m, sopt->sopt_p ? M_WAIT : M_DONTWAIT);
1243                 if ((m->m_flags & M_EXT) == 0) {
1244                         m_free(m);
1245                         return ENOBUFS;
1246                 }
1247                 m->m_len = min(MCLBYTES, sopt_size);
1248         } else {
1249                 m->m_len = min(MLEN, sopt_size);
1250         }
1251         sopt_size -= m->m_len;
1252         *mp = m;
1253         m_prev = m;
1254
1255         while (sopt_size) {
1256                 MGET(m, sopt->sopt_p ? M_WAIT : M_DONTWAIT, MT_DATA);
1257                 if (m == 0) {
1258                         m_freem(*mp);
1259                         return ENOBUFS;
1260                 }
1261                 if (sopt_size > MLEN) {
1262                         MCLGET(m, sopt->sopt_p ? M_WAIT : M_DONTWAIT);
1263                         if ((m->m_flags & M_EXT) == 0) {
1264                                 m_freem(*mp);
1265                                 return ENOBUFS;
1266                         }
1267                         m->m_len = min(MCLBYTES, sopt_size);
1268                 } else {
1269                         m->m_len = min(MLEN, sopt_size);
1270                 }
1271                 sopt_size -= m->m_len;
1272                 m_prev->m_next = m;
1273                 m_prev = m;
1274         }
1275         return 0;
1276 }
1277
1278 /* XXX; copyin sopt data into mbuf chain for (__FreeBSD__ < 3) routines. */
1279 int
1280 soopt_mcopyin(struct sockopt *sopt, struct mbuf *m)
1281 {
1282         struct mbuf *m0 = m;
1283
1284         if (sopt->sopt_val == NULL)
1285                 return 0;
1286         while (m != NULL && sopt->sopt_valsize >= m->m_len) {
1287                 if (sopt->sopt_p != NULL) {
1288                         int error;
1289
1290                         error = copyin(sopt->sopt_val, mtod(m, char *),
1291                                        m->m_len);
1292                         if (error != 0) {
1293                                 m_freem(m0);
1294                                 return(error);
1295                         }
1296                 } else
1297                         bcopy(sopt->sopt_val, mtod(m, char *), m->m_len);
1298                 sopt->sopt_valsize -= m->m_len;
1299                 (caddr_t)sopt->sopt_val += m->m_len;
1300                 m = m->m_next;
1301         }
1302         if (m != NULL) /* should be allocated enoughly at ip6_sooptmcopyin() */
1303                 panic("ip6_sooptmcopyin");
1304         return 0;
1305 }
1306
1307 /* XXX; copyout mbuf chain data into soopt for (__FreeBSD__ < 3) routines. */
1308 int
1309 soopt_mcopyout(struct sockopt *sopt, struct mbuf *m)
1310 {
1311         struct mbuf *m0 = m;
1312         size_t valsize = 0;
1313
1314         if (sopt->sopt_val == NULL)
1315                 return 0;
1316         while (m != NULL && sopt->sopt_valsize >= m->m_len) {
1317                 if (sopt->sopt_p != NULL) {
1318                         int error;
1319
1320                         error = copyout(mtod(m, char *), sopt->sopt_val,
1321                                        m->m_len);
1322                         if (error != 0) {
1323                                 m_freem(m0);
1324                                 return(error);
1325                         }
1326                 } else
1327                         bcopy(mtod(m, char *), sopt->sopt_val, m->m_len);
1328                sopt->sopt_valsize -= m->m_len;
1329                (caddr_t)sopt->sopt_val += m->m_len;
1330                valsize += m->m_len;
1331                m = m->m_next;
1332         }
1333         if (m != NULL) {
1334                 /* enough soopt buffer should be given from user-land */
1335                 m_freem(m0);
1336                 return(EINVAL);
1337         }
1338         sopt->sopt_valsize = valsize;
1339         return 0;
1340 }
1341
1342 void
1343 sohasoutofband(so)
1344         register struct socket *so;
1345 {
1346         if (so->so_sigio != NULL)
1347                 pgsigio(so->so_sigio, SIGURG, 0);
1348         selwakeup(&so->so_rcv.sb_sel);
1349 }
1350
1351 int
1352 sopoll(struct socket *so, int events, struct ucred *cred, struct proc *p)
1353 {
1354         int revents = 0;
1355         int s = splnet();
1356
1357         if (events & (POLLIN | POLLRDNORM))
1358                 if (soreadable(so))
1359                         revents |= events & (POLLIN | POLLRDNORM);
1360
1361         if (events & (POLLOUT | POLLWRNORM))
1362                 if (sowriteable(so))
1363                         revents |= events & (POLLOUT | POLLWRNORM);
1364
1365         if (events & (POLLPRI | POLLRDBAND))
1366                 if (so->so_oobmark || (so->so_state & SS_RCVATMARK))
1367                         revents |= events & (POLLPRI | POLLRDBAND);
1368
1369         if (revents == 0) {
1370                 if (events & (POLLIN | POLLPRI | POLLRDNORM | POLLRDBAND)) {
1371                         selrecord(p, &so->so_rcv.sb_sel);
1372                         so->so_rcv.sb_flags |= SB_SEL;
1373                 }
1374
1375                 if (events & (POLLOUT | POLLWRNORM)) {
1376                         selrecord(p, &so->so_snd.sb_sel);
1377                         so->so_snd.sb_flags |= SB_SEL;
1378                 }
1379         }
1380
1381         splx(s);
1382         return (revents);
1383 }