]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/kern/uipc_socket.c
MFC r347695, r347696, r347697, r347957, r349326:
[FreeBSD/FreeBSD.git] / sys / kern / uipc_socket.c
1 /*-
2  * SPDX-License-Identifier: BSD-3-Clause
3  *
4  * Copyright (c) 1982, 1986, 1988, 1990, 1993
5  *      The Regents of the University of California.
6  * Copyright (c) 2004 The FreeBSD Foundation
7  * Copyright (c) 2004-2008 Robert N. M. Watson
8  * All rights reserved.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 3. Neither the name of the University nor the names of its contributors
19  *    may be used to endorse or promote products derived from this software
20  *    without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  *
34  *      @(#)uipc_socket.c       8.3 (Berkeley) 4/15/94
35  */
36
37 /*
38  * Comments on the socket life cycle:
39  *
40  * soalloc() sets of socket layer state for a socket, called only by
41  * socreate() and sonewconn().  Socket layer private.
42  *
43  * sodealloc() tears down socket layer state for a socket, called only by
44  * sofree() and sonewconn().  Socket layer private.
45  *
46  * pru_attach() associates protocol layer state with an allocated socket;
47  * called only once, may fail, aborting socket allocation.  This is called
48  * from socreate() and sonewconn().  Socket layer private.
49  *
50  * pru_detach() disassociates protocol layer state from an attached socket,
51  * and will be called exactly once for sockets in which pru_attach() has
52  * been successfully called.  If pru_attach() returned an error,
53  * pru_detach() will not be called.  Socket layer private.
54  *
55  * pru_abort() and pru_close() notify the protocol layer that the last
56  * consumer of a socket is starting to tear down the socket, and that the
57  * protocol should terminate the connection.  Historically, pru_abort() also
58  * detached protocol state from the socket state, but this is no longer the
59  * case.
60  *
61  * socreate() creates a socket and attaches protocol state.  This is a public
62  * interface that may be used by socket layer consumers to create new
63  * sockets.
64  *
65  * sonewconn() creates a socket and attaches protocol state.  This is a
66  * public interface  that may be used by protocols to create new sockets when
67  * a new connection is received and will be available for accept() on a
68  * listen socket.
69  *
70  * soclose() destroys a socket after possibly waiting for it to disconnect.
71  * This is a public interface that socket consumers should use to close and
72  * release a socket when done with it.
73  *
74  * soabort() destroys a socket without waiting for it to disconnect (used
75  * only for incoming connections that are already partially or fully
76  * connected).  This is used internally by the socket layer when clearing
77  * listen socket queues (due to overflow or close on the listen socket), but
78  * is also a public interface protocols may use to abort connections in
79  * their incomplete listen queues should they no longer be required.  Sockets
80  * placed in completed connection listen queues should not be aborted for
81  * reasons described in the comment above the soclose() implementation.  This
82  * is not a general purpose close routine, and except in the specific
83  * circumstances described here, should not be used.
84  *
85  * sofree() will free a socket and its protocol state if all references on
86  * the socket have been released, and is the public interface to attempt to
87  * free a socket when a reference is removed.  This is a socket layer private
88  * interface.
89  *
90  * NOTE: In addition to socreate() and soclose(), which provide a single
91  * socket reference to the consumer to be managed as required, there are two
92  * calls to explicitly manage socket references, soref(), and sorele().
93  * Currently, these are generally required only when transitioning a socket
94  * from a listen queue to a file descriptor, in order to prevent garbage
95  * collection of the socket at an untimely moment.  For a number of reasons,
96  * these interfaces are not preferred, and should be avoided.
97  *
98  * NOTE: With regard to VNETs the general rule is that callers do not set
99  * curvnet. Exceptions to this rule include soabort(), sodisconnect(),
100  * sofree() (and with that sorele(), sotryfree()), as well as sonewconn()
101  * and sorflush(), which are usually called from a pre-set VNET context.
102  * sopoll() currently does not need a VNET context to be set.
103  */
104
105 #include <sys/cdefs.h>
106 __FBSDID("$FreeBSD$");
107
108 #include "opt_inet.h"
109 #include "opt_inet6.h"
110 #include "opt_sctp.h"
111
112 #include <sys/param.h>
113 #include <sys/systm.h>
114 #include <sys/fcntl.h>
115 #include <sys/limits.h>
116 #include <sys/lock.h>
117 #include <sys/mac.h>
118 #include <sys/malloc.h>
119 #include <sys/mbuf.h>
120 #include <sys/mutex.h>
121 #include <sys/domain.h>
122 #include <sys/file.h>                   /* for struct knote */
123 #include <sys/hhook.h>
124 #include <sys/kernel.h>
125 #include <sys/khelp.h>
126 #include <sys/event.h>
127 #include <sys/eventhandler.h>
128 #include <sys/poll.h>
129 #include <sys/proc.h>
130 #include <sys/protosw.h>
131 #include <sys/socket.h>
132 #include <sys/socketvar.h>
133 #include <sys/resourcevar.h>
134 #include <net/route.h>
135 #include <sys/signalvar.h>
136 #include <sys/stat.h>
137 #include <sys/sx.h>
138 #include <sys/sysctl.h>
139 #include <sys/taskqueue.h>
140 #include <sys/uio.h>
141 #include <sys/jail.h>
142 #include <sys/syslog.h>
143 #include <netinet/in.h>
144
145 #include <net/vnet.h>
146
147 #include <security/mac/mac_framework.h>
148
149 #include <vm/uma.h>
150
151 #ifdef COMPAT_FREEBSD32
152 #include <sys/mount.h>
153 #include <sys/sysent.h>
154 #include <compat/freebsd32/freebsd32.h>
155 #endif
156
157 static int      soreceive_rcvoob(struct socket *so, struct uio *uio,
158                     int flags);
159 static void     so_rdknl_lock(void *);
160 static void     so_rdknl_unlock(void *);
161 static void     so_rdknl_assert_locked(void *);
162 static void     so_rdknl_assert_unlocked(void *);
163 static void     so_wrknl_lock(void *);
164 static void     so_wrknl_unlock(void *);
165 static void     so_wrknl_assert_locked(void *);
166 static void     so_wrknl_assert_unlocked(void *);
167
168 static void     filt_sordetach(struct knote *kn);
169 static int      filt_soread(struct knote *kn, long hint);
170 static void     filt_sowdetach(struct knote *kn);
171 static int      filt_sowrite(struct knote *kn, long hint);
172 static int      filt_soempty(struct knote *kn, long hint);
173 static int inline hhook_run_socket(struct socket *so, void *hctx, int32_t h_id);
174 fo_kqfilter_t   soo_kqfilter;
175
176 static struct filterops soread_filtops = {
177         .f_isfd = 1,
178         .f_detach = filt_sordetach,
179         .f_event = filt_soread,
180 };
181 static struct filterops sowrite_filtops = {
182         .f_isfd = 1,
183         .f_detach = filt_sowdetach,
184         .f_event = filt_sowrite,
185 };
186 static struct filterops soempty_filtops = {
187         .f_isfd = 1,
188         .f_detach = filt_sowdetach,
189         .f_event = filt_soempty,
190 };
191
192 so_gen_t        so_gencnt;      /* generation count for sockets */
193
194 MALLOC_DEFINE(M_SONAME, "soname", "socket name");
195 MALLOC_DEFINE(M_PCB, "pcb", "protocol control block");
196
197 #define VNET_SO_ASSERT(so)                                              \
198         VNET_ASSERT(curvnet != NULL,                                    \
199             ("%s:%d curvnet is NULL, so=%p", __func__, __LINE__, (so)));
200
201 VNET_DEFINE(struct hhook_head *, socket_hhh[HHOOK_SOCKET_LAST + 1]);
202 #define V_socket_hhh            VNET(socket_hhh)
203
204 /*
205  * Limit on the number of connections in the listen queue waiting
206  * for accept(2).
207  * NB: The original sysctl somaxconn is still available but hidden
208  * to prevent confusion about the actual purpose of this number.
209  */
210 static u_int somaxconn = SOMAXCONN;
211
212 static int
213 sysctl_somaxconn(SYSCTL_HANDLER_ARGS)
214 {
215         int error;
216         int val;
217
218         val = somaxconn;
219         error = sysctl_handle_int(oidp, &val, 0, req);
220         if (error || !req->newptr )
221                 return (error);
222
223         /*
224          * The purpose of the UINT_MAX / 3 limit, is so that the formula
225          *   3 * so_qlimit / 2
226          * below, will not overflow.
227          */
228
229         if (val < 1 || val > UINT_MAX / 3)
230                 return (EINVAL);
231
232         somaxconn = val;
233         return (0);
234 }
235 SYSCTL_PROC(_kern_ipc, OID_AUTO, soacceptqueue, CTLTYPE_UINT | CTLFLAG_RW,
236     0, sizeof(int), sysctl_somaxconn, "I",
237     "Maximum listen socket pending connection accept queue size");
238 SYSCTL_PROC(_kern_ipc, KIPC_SOMAXCONN, somaxconn,
239     CTLTYPE_UINT | CTLFLAG_RW | CTLFLAG_SKIP,
240     0, sizeof(int), sysctl_somaxconn, "I",
241     "Maximum listen socket pending connection accept queue size (compat)");
242
243 static int numopensockets;
244 SYSCTL_INT(_kern_ipc, OID_AUTO, numopensockets, CTLFLAG_RD,
245     &numopensockets, 0, "Number of open sockets");
246
247 /*
248  * accept_mtx locks down per-socket fields relating to accept queues.  See
249  * socketvar.h for an annotation of the protected fields of struct socket.
250  */
251 struct mtx accept_mtx;
252 MTX_SYSINIT(accept_mtx, &accept_mtx, "accept", MTX_DEF);
253
254 /*
255  * so_global_mtx protects so_gencnt, numopensockets, and the per-socket
256  * so_gencnt field.
257  */
258 static struct mtx so_global_mtx;
259 MTX_SYSINIT(so_global_mtx, &so_global_mtx, "so_glabel", MTX_DEF);
260
261 /*
262  * General IPC sysctl name space, used by sockets and a variety of other IPC
263  * types.
264  */
265 SYSCTL_NODE(_kern, KERN_IPC, ipc, CTLFLAG_RW, 0, "IPC");
266
267 /*
268  * Initialize the socket subsystem and set up the socket
269  * memory allocator.
270  */
271 static uma_zone_t socket_zone;
272 int     maxsockets;
273
274 static void
275 socket_zone_change(void *tag)
276 {
277
278         maxsockets = uma_zone_set_max(socket_zone, maxsockets);
279 }
280
281 static void
282 socket_hhook_register(int subtype)
283 {
284         
285         if (hhook_head_register(HHOOK_TYPE_SOCKET, subtype,
286             &V_socket_hhh[subtype],
287             HHOOK_NOWAIT|HHOOK_HEADISINVNET) != 0)
288                 printf("%s: WARNING: unable to register hook\n", __func__);
289 }
290
291 static void
292 socket_hhook_deregister(int subtype)
293 {
294         
295         if (hhook_head_deregister(V_socket_hhh[subtype]) != 0)
296                 printf("%s: WARNING: unable to deregister hook\n", __func__);
297 }
298
299 static void
300 socket_init(void *tag)
301 {
302
303         socket_zone = uma_zcreate("socket", sizeof(struct socket), NULL, NULL,
304             NULL, NULL, UMA_ALIGN_PTR, UMA_ZONE_NOFREE);
305         maxsockets = uma_zone_set_max(socket_zone, maxsockets);
306         uma_zone_set_warning(socket_zone, "kern.ipc.maxsockets limit reached");
307         EVENTHANDLER_REGISTER(maxsockets_change, socket_zone_change, NULL,
308             EVENTHANDLER_PRI_FIRST);
309 }
310 SYSINIT(socket, SI_SUB_PROTO_DOMAININIT, SI_ORDER_ANY, socket_init, NULL);
311
312 static void
313 socket_vnet_init(const void *unused __unused)
314 {
315         int i;
316
317         /* We expect a contiguous range */
318         for (i = 0; i <= HHOOK_SOCKET_LAST; i++)
319                 socket_hhook_register(i);
320 }
321 VNET_SYSINIT(socket_vnet_init, SI_SUB_PROTO_DOMAININIT, SI_ORDER_ANY,
322     socket_vnet_init, NULL);
323
324 static void
325 socket_vnet_uninit(const void *unused __unused)
326 {
327         int i;
328
329         for (i = 0; i <= HHOOK_SOCKET_LAST; i++)
330                 socket_hhook_deregister(i);
331 }
332 VNET_SYSUNINIT(socket_vnet_uninit, SI_SUB_PROTO_DOMAININIT, SI_ORDER_ANY,
333     socket_vnet_uninit, NULL);
334
335 /*
336  * Initialise maxsockets.  This SYSINIT must be run after
337  * tunable_mbinit().
338  */
339 static void
340 init_maxsockets(void *ignored)
341 {
342
343         TUNABLE_INT_FETCH("kern.ipc.maxsockets", &maxsockets);
344         maxsockets = imax(maxsockets, maxfiles);
345 }
346 SYSINIT(param, SI_SUB_TUNABLES, SI_ORDER_ANY, init_maxsockets, NULL);
347
348 /*
349  * Sysctl to get and set the maximum global sockets limit.  Notify protocols
350  * of the change so that they can update their dependent limits as required.
351  */
352 static int
353 sysctl_maxsockets(SYSCTL_HANDLER_ARGS)
354 {
355         int error, newmaxsockets;
356
357         newmaxsockets = maxsockets;
358         error = sysctl_handle_int(oidp, &newmaxsockets, 0, req);
359         if (error == 0 && req->newptr) {
360                 if (newmaxsockets > maxsockets &&
361                     newmaxsockets <= maxfiles) {
362                         maxsockets = newmaxsockets;
363                         EVENTHANDLER_INVOKE(maxsockets_change);
364                 } else
365                         error = EINVAL;
366         }
367         return (error);
368 }
369 SYSCTL_PROC(_kern_ipc, OID_AUTO, maxsockets, CTLTYPE_INT|CTLFLAG_RW,
370     &maxsockets, 0, sysctl_maxsockets, "IU",
371     "Maximum number of sockets available");
372
373 /*
374  * Socket operation routines.  These routines are called by the routines in
375  * sys_socket.c or from a system process, and implement the semantics of
376  * socket operations by switching out to the protocol specific routines.
377  */
378
379 /*
380  * Get a socket structure from our zone, and initialize it.  Note that it
381  * would probably be better to allocate socket and PCB at the same time, but
382  * I'm not convinced that all the protocols can be easily modified to do
383  * this.
384  *
385  * soalloc() returns a socket with a ref count of 0.
386  */
387 static struct socket *
388 soalloc(struct vnet *vnet)
389 {
390         struct socket *so;
391
392         so = uma_zalloc(socket_zone, M_NOWAIT | M_ZERO);
393         if (so == NULL)
394                 return (NULL);
395 #ifdef MAC
396         if (mac_socket_init(so, M_NOWAIT) != 0) {
397                 uma_zfree(socket_zone, so);
398                 return (NULL);
399         }
400 #endif
401         if (khelp_init_osd(HELPER_CLASS_SOCKET, &so->osd)) {
402                 uma_zfree(socket_zone, so);
403                 return (NULL);
404         }
405
406         /*
407          * The socket locking protocol allows to lock 2 sockets at a time,
408          * however, the first one must be a listening socket.  WITNESS lacks
409          * a feature to change class of an existing lock, so we use DUPOK.
410          */
411         mtx_init(&so->so_lock, "socket", NULL, MTX_DEF | MTX_DUPOK);
412         SOCKBUF_LOCK_INIT(&so->so_snd, "so_snd");
413         SOCKBUF_LOCK_INIT(&so->so_rcv, "so_rcv");
414         so->so_rcv.sb_sel = &so->so_rdsel;
415         so->so_snd.sb_sel = &so->so_wrsel;
416         sx_init(&so->so_snd.sb_sx, "so_snd_sx");
417         sx_init(&so->so_rcv.sb_sx, "so_rcv_sx");
418         TAILQ_INIT(&so->so_snd.sb_aiojobq);
419         TAILQ_INIT(&so->so_rcv.sb_aiojobq);
420         TASK_INIT(&so->so_snd.sb_aiotask, 0, soaio_snd, so);
421         TASK_INIT(&so->so_rcv.sb_aiotask, 0, soaio_rcv, so);
422 #ifdef VIMAGE
423         VNET_ASSERT(vnet != NULL, ("%s:%d vnet is NULL, so=%p",
424             __func__, __LINE__, so));
425         so->so_vnet = vnet;
426 #endif
427         /* We shouldn't need the so_global_mtx */
428         if (hhook_run_socket(so, NULL, HHOOK_SOCKET_CREATE)) {
429                 /* Do we need more comprehensive error returns? */
430                 uma_zfree(socket_zone, so);
431                 return (NULL);
432         }
433         mtx_lock(&so_global_mtx);
434         so->so_gencnt = ++so_gencnt;
435         ++numopensockets;
436 #ifdef VIMAGE
437         vnet->vnet_sockcnt++;
438 #endif
439         mtx_unlock(&so_global_mtx);
440
441         return (so);
442 }
443
444 /*
445  * Free the storage associated with a socket at the socket layer, tear down
446  * locks, labels, etc.  All protocol state is assumed already to have been
447  * torn down (and possibly never set up) by the caller.
448  */
449 static void
450 sodealloc(struct socket *so)
451 {
452
453         KASSERT(so->so_count == 0, ("sodealloc(): so_count %d", so->so_count));
454         KASSERT(so->so_pcb == NULL, ("sodealloc(): so_pcb != NULL"));
455
456         mtx_lock(&so_global_mtx);
457         so->so_gencnt = ++so_gencnt;
458         --numopensockets;       /* Could be below, but faster here. */
459 #ifdef VIMAGE
460         VNET_ASSERT(so->so_vnet != NULL, ("%s:%d so_vnet is NULL, so=%p",
461             __func__, __LINE__, so));
462         so->so_vnet->vnet_sockcnt--;
463 #endif
464         mtx_unlock(&so_global_mtx);
465 #ifdef MAC
466         mac_socket_destroy(so);
467 #endif
468         hhook_run_socket(so, NULL, HHOOK_SOCKET_CLOSE);
469
470         crfree(so->so_cred);
471         khelp_destroy_osd(&so->osd);
472         if (SOLISTENING(so)) {
473                 if (so->sol_accept_filter != NULL)
474                         accept_filt_setopt(so, NULL);
475         } else {
476                 if (so->so_rcv.sb_hiwat)
477                         (void)chgsbsize(so->so_cred->cr_uidinfo,
478                             &so->so_rcv.sb_hiwat, 0, RLIM_INFINITY);
479                 if (so->so_snd.sb_hiwat)
480                         (void)chgsbsize(so->so_cred->cr_uidinfo,
481                             &so->so_snd.sb_hiwat, 0, RLIM_INFINITY);
482                 sx_destroy(&so->so_snd.sb_sx);
483                 sx_destroy(&so->so_rcv.sb_sx);
484                 SOCKBUF_LOCK_DESTROY(&so->so_snd);
485                 SOCKBUF_LOCK_DESTROY(&so->so_rcv);
486         }
487         mtx_destroy(&so->so_lock);
488         uma_zfree(socket_zone, so);
489 }
490
491 /*
492  * socreate returns a socket with a ref count of 1.  The socket should be
493  * closed with soclose().
494  */
495 int
496 socreate(int dom, struct socket **aso, int type, int proto,
497     struct ucred *cred, struct thread *td)
498 {
499         struct protosw *prp;
500         struct socket *so;
501         int error;
502
503         if (proto)
504                 prp = pffindproto(dom, proto, type);
505         else
506                 prp = pffindtype(dom, type);
507
508         if (prp == NULL) {
509                 /* No support for domain. */
510                 if (pffinddomain(dom) == NULL)
511                         return (EAFNOSUPPORT);
512                 /* No support for socket type. */
513                 if (proto == 0 && type != 0)
514                         return (EPROTOTYPE);
515                 return (EPROTONOSUPPORT);
516         }
517         if (prp->pr_usrreqs->pru_attach == NULL ||
518             prp->pr_usrreqs->pru_attach == pru_attach_notsupp)
519                 return (EPROTONOSUPPORT);
520
521         if (prison_check_af(cred, prp->pr_domain->dom_family) != 0)
522                 return (EPROTONOSUPPORT);
523
524         if (prp->pr_type != type)
525                 return (EPROTOTYPE);
526         so = soalloc(CRED_TO_VNET(cred));
527         if (so == NULL)
528                 return (ENOBUFS);
529
530         so->so_type = type;
531         so->so_cred = crhold(cred);
532         if ((prp->pr_domain->dom_family == PF_INET) ||
533             (prp->pr_domain->dom_family == PF_INET6) ||
534             (prp->pr_domain->dom_family == PF_ROUTE))
535                 so->so_fibnum = td->td_proc->p_fibnum;
536         else
537                 so->so_fibnum = 0;
538         so->so_proto = prp;
539 #ifdef MAC
540         mac_socket_create(cred, so);
541 #endif
542         knlist_init(&so->so_rdsel.si_note, so, so_rdknl_lock, so_rdknl_unlock,
543             so_rdknl_assert_locked, so_rdknl_assert_unlocked);
544         knlist_init(&so->so_wrsel.si_note, so, so_wrknl_lock, so_wrknl_unlock,
545             so_wrknl_assert_locked, so_wrknl_assert_unlocked);
546         /*
547          * Auto-sizing of socket buffers is managed by the protocols and
548          * the appropriate flags must be set in the pru_attach function.
549          */
550         CURVNET_SET(so->so_vnet);
551         error = (*prp->pr_usrreqs->pru_attach)(so, proto, td);
552         CURVNET_RESTORE();
553         if (error) {
554                 sodealloc(so);
555                 return (error);
556         }
557         soref(so);
558         *aso = so;
559         return (0);
560 }
561
562 #ifdef REGRESSION
563 static int regression_sonewconn_earlytest = 1;
564 SYSCTL_INT(_regression, OID_AUTO, sonewconn_earlytest, CTLFLAG_RW,
565     &regression_sonewconn_earlytest, 0, "Perform early sonewconn limit test");
566 #endif
567
568 /*
569  * When an attempt at a new connection is noted on a socket which accepts
570  * connections, sonewconn is called.  If the connection is possible (subject
571  * to space constraints, etc.) then we allocate a new structure, properly
572  * linked into the data structure of the original socket, and return this.
573  * Connstatus may be 0, or SS_ISCONFIRMING, or SS_ISCONNECTED.
574  *
575  * Note: the ref count on the socket is 0 on return.
576  */
577 struct socket *
578 sonewconn(struct socket *head, int connstatus)
579 {
580         static struct timeval lastover;
581         static struct timeval overinterval = { 60, 0 };
582         static int overcount;
583
584         struct socket *so;
585         u_int over;
586
587         SOLISTEN_LOCK(head);
588         over = (head->sol_qlen > 3 * head->sol_qlimit / 2);
589         SOLISTEN_UNLOCK(head);
590 #ifdef REGRESSION
591         if (regression_sonewconn_earlytest && over) {
592 #else
593         if (over) {
594 #endif
595                 overcount++;
596
597                 if (ratecheck(&lastover, &overinterval)) {
598                         log(LOG_DEBUG, "%s: pcb %p: Listen queue overflow: "
599                             "%i already in queue awaiting acceptance "
600                             "(%d occurrences)\n",
601                             __func__, head->so_pcb, head->sol_qlen, overcount);
602
603                         overcount = 0;
604                 }
605
606                 return (NULL);
607         }
608         VNET_ASSERT(head->so_vnet != NULL, ("%s: so %p vnet is NULL",
609             __func__, head));
610         so = soalloc(head->so_vnet);
611         if (so == NULL) {
612                 log(LOG_DEBUG, "%s: pcb %p: New socket allocation failure: "
613                     "limit reached or out of memory\n",
614                     __func__, head->so_pcb);
615                 return (NULL);
616         }
617         so->so_listen = head;
618         so->so_type = head->so_type;
619         so->so_linger = head->so_linger;
620         so->so_state = head->so_state | SS_NOFDREF;
621         so->so_fibnum = head->so_fibnum;
622         so->so_proto = head->so_proto;
623         so->so_cred = crhold(head->so_cred);
624 #ifdef MAC
625         mac_socket_newconn(head, so);
626 #endif
627         knlist_init(&so->so_rdsel.si_note, so, so_rdknl_lock, so_rdknl_unlock,
628             so_rdknl_assert_locked, so_rdknl_assert_unlocked);
629         knlist_init(&so->so_wrsel.si_note, so, so_wrknl_lock, so_wrknl_unlock,
630             so_wrknl_assert_locked, so_wrknl_assert_unlocked);
631         VNET_SO_ASSERT(head);
632         if (soreserve(so, head->sol_sbsnd_hiwat, head->sol_sbrcv_hiwat)) {
633                 sodealloc(so);
634                 log(LOG_DEBUG, "%s: pcb %p: soreserve() failed\n",
635                     __func__, head->so_pcb);
636                 return (NULL);
637         }
638         if ((*so->so_proto->pr_usrreqs->pru_attach)(so, 0, NULL)) {
639                 sodealloc(so);
640                 log(LOG_DEBUG, "%s: pcb %p: pru_attach() failed\n",
641                     __func__, head->so_pcb);
642                 return (NULL);
643         }
644         so->so_rcv.sb_lowat = head->sol_sbrcv_lowat;
645         so->so_snd.sb_lowat = head->sol_sbsnd_lowat;
646         so->so_rcv.sb_timeo = head->sol_sbrcv_timeo;
647         so->so_snd.sb_timeo = head->sol_sbsnd_timeo;
648         so->so_rcv.sb_flags |= head->sol_sbrcv_flags & SB_AUTOSIZE;
649         so->so_snd.sb_flags |= head->sol_sbsnd_flags & SB_AUTOSIZE;
650
651         SOLISTEN_LOCK(head);
652         if (head->sol_accept_filter != NULL)
653                 connstatus = 0;
654         so->so_state |= connstatus;
655         so->so_options = head->so_options & ~SO_ACCEPTCONN;
656         soref(head); /* A socket on (in)complete queue refs head. */
657         if (connstatus) {
658                 TAILQ_INSERT_TAIL(&head->sol_comp, so, so_list);
659                 so->so_qstate = SQ_COMP;
660                 head->sol_qlen++;
661                 solisten_wakeup(head);  /* unlocks */
662         } else {
663                 /*
664                  * Keep removing sockets from the head until there's room for
665                  * us to insert on the tail.  In pre-locking revisions, this
666                  * was a simple if(), but as we could be racing with other
667                  * threads and soabort() requires dropping locks, we must
668                  * loop waiting for the condition to be true.
669                  */
670                 while (head->sol_incqlen > head->sol_qlimit) {
671                         struct socket *sp;
672
673                         sp = TAILQ_FIRST(&head->sol_incomp);
674                         TAILQ_REMOVE(&head->sol_incomp, sp, so_list);
675                         head->sol_incqlen--;
676                         SOCK_LOCK(sp);
677                         sp->so_qstate = SQ_NONE;
678                         sp->so_listen = NULL;
679                         SOCK_UNLOCK(sp);
680                         sorele(head);   /* does SOLISTEN_UNLOCK, head stays */
681                         soabort(sp);
682                         SOLISTEN_LOCK(head);
683                 }
684                 TAILQ_INSERT_TAIL(&head->sol_incomp, so, so_list);
685                 so->so_qstate = SQ_INCOMP;
686                 head->sol_incqlen++;
687                 SOLISTEN_UNLOCK(head);
688         }
689         return (so);
690 }
691
692 #ifdef SCTP
693 /*
694  * Socket part of sctp_peeloff().  Detach a new socket from an
695  * association.  The new socket is returned with a reference.
696  */
697 struct socket *
698 sopeeloff(struct socket *head)
699 {
700         struct socket *so;
701
702         VNET_ASSERT(head->so_vnet != NULL, ("%s:%d so_vnet is NULL, head=%p",
703             __func__, __LINE__, head));
704         so = soalloc(head->so_vnet);
705         if (so == NULL) {
706                 log(LOG_DEBUG, "%s: pcb %p: New socket allocation failure: "
707                     "limit reached or out of memory\n",
708                     __func__, head->so_pcb);
709                 return (NULL);
710         }
711         so->so_type = head->so_type;
712         so->so_options = head->so_options;
713         so->so_linger = head->so_linger;
714         so->so_state = (head->so_state & SS_NBIO) | SS_ISCONNECTED;
715         so->so_fibnum = head->so_fibnum;
716         so->so_proto = head->so_proto;
717         so->so_cred = crhold(head->so_cred);
718 #ifdef MAC
719         mac_socket_newconn(head, so);
720 #endif
721         knlist_init(&so->so_rdsel.si_note, so, so_rdknl_lock, so_rdknl_unlock,
722             so_rdknl_assert_locked, so_rdknl_assert_unlocked);
723         knlist_init(&so->so_wrsel.si_note, so, so_wrknl_lock, so_wrknl_unlock,
724             so_wrknl_assert_locked, so_wrknl_assert_unlocked);
725         VNET_SO_ASSERT(head);
726         if (soreserve(so, head->so_snd.sb_hiwat, head->so_rcv.sb_hiwat)) {
727                 sodealloc(so);
728                 log(LOG_DEBUG, "%s: pcb %p: soreserve() failed\n",
729                     __func__, head->so_pcb);
730                 return (NULL);
731         }
732         if ((*so->so_proto->pr_usrreqs->pru_attach)(so, 0, NULL)) {
733                 sodealloc(so);
734                 log(LOG_DEBUG, "%s: pcb %p: pru_attach() failed\n",
735                     __func__, head->so_pcb);
736                 return (NULL);
737         }
738         so->so_rcv.sb_lowat = head->so_rcv.sb_lowat;
739         so->so_snd.sb_lowat = head->so_snd.sb_lowat;
740         so->so_rcv.sb_timeo = head->so_rcv.sb_timeo;
741         so->so_snd.sb_timeo = head->so_snd.sb_timeo;
742         so->so_rcv.sb_flags |= head->so_rcv.sb_flags & SB_AUTOSIZE;
743         so->so_snd.sb_flags |= head->so_snd.sb_flags & SB_AUTOSIZE;
744
745         soref(so);
746
747         return (so);
748 }
749 #endif  /* SCTP */
750
751 int
752 sobind(struct socket *so, struct sockaddr *nam, struct thread *td)
753 {
754         int error;
755
756         CURVNET_SET(so->so_vnet);
757         error = (*so->so_proto->pr_usrreqs->pru_bind)(so, nam, td);
758         CURVNET_RESTORE();
759         return (error);
760 }
761
762 int
763 sobindat(int fd, struct socket *so, struct sockaddr *nam, struct thread *td)
764 {
765         int error;
766
767         CURVNET_SET(so->so_vnet);
768         error = (*so->so_proto->pr_usrreqs->pru_bindat)(fd, so, nam, td);
769         CURVNET_RESTORE();
770         return (error);
771 }
772
773 /*
774  * solisten() transitions a socket from a non-listening state to a listening
775  * state, but can also be used to update the listen queue depth on an
776  * existing listen socket.  The protocol will call back into the sockets
777  * layer using solisten_proto_check() and solisten_proto() to check and set
778  * socket-layer listen state.  Call backs are used so that the protocol can
779  * acquire both protocol and socket layer locks in whatever order is required
780  * by the protocol.
781  *
782  * Protocol implementors are advised to hold the socket lock across the
783  * socket-layer test and set to avoid races at the socket layer.
784  */
785 int
786 solisten(struct socket *so, int backlog, struct thread *td)
787 {
788         int error;
789
790         CURVNET_SET(so->so_vnet);
791         error = (*so->so_proto->pr_usrreqs->pru_listen)(so, backlog, td);
792         CURVNET_RESTORE();
793         return (error);
794 }
795
796 int
797 solisten_proto_check(struct socket *so)
798 {
799
800         SOCK_LOCK_ASSERT(so);
801
802         if (so->so_state & (SS_ISCONNECTED | SS_ISCONNECTING |
803             SS_ISDISCONNECTING))
804                 return (EINVAL);
805         return (0);
806 }
807
808 void
809 solisten_proto(struct socket *so, int backlog)
810 {
811         int sbrcv_lowat, sbsnd_lowat;
812         u_int sbrcv_hiwat, sbsnd_hiwat;
813         short sbrcv_flags, sbsnd_flags;
814         sbintime_t sbrcv_timeo, sbsnd_timeo;
815
816         SOCK_LOCK_ASSERT(so);
817
818         if (SOLISTENING(so))
819                 goto listening;
820
821         /*
822          * Change this socket to listening state.
823          */
824         sbrcv_lowat = so->so_rcv.sb_lowat;
825         sbsnd_lowat = so->so_snd.sb_lowat;
826         sbrcv_hiwat = so->so_rcv.sb_hiwat;
827         sbsnd_hiwat = so->so_snd.sb_hiwat;
828         sbrcv_flags = so->so_rcv.sb_flags;
829         sbsnd_flags = so->so_snd.sb_flags;
830         sbrcv_timeo = so->so_rcv.sb_timeo;
831         sbsnd_timeo = so->so_snd.sb_timeo;
832
833         sbdestroy(&so->so_snd, so);
834         sbdestroy(&so->so_rcv, so);
835         sx_destroy(&so->so_snd.sb_sx);
836         sx_destroy(&so->so_rcv.sb_sx);
837         SOCKBUF_LOCK_DESTROY(&so->so_snd);
838         SOCKBUF_LOCK_DESTROY(&so->so_rcv);
839
840 #ifdef INVARIANTS
841         bzero(&so->so_rcv,
842             sizeof(struct socket) - offsetof(struct socket, so_rcv));
843 #endif
844
845         so->sol_sbrcv_lowat = sbrcv_lowat;
846         so->sol_sbsnd_lowat = sbsnd_lowat;
847         so->sol_sbrcv_hiwat = sbrcv_hiwat;
848         so->sol_sbsnd_hiwat = sbsnd_hiwat;
849         so->sol_sbrcv_flags = sbrcv_flags;
850         so->sol_sbsnd_flags = sbsnd_flags;
851         so->sol_sbrcv_timeo = sbrcv_timeo;
852         so->sol_sbsnd_timeo = sbsnd_timeo;
853
854         so->sol_qlen = so->sol_incqlen = 0;
855         TAILQ_INIT(&so->sol_incomp);
856         TAILQ_INIT(&so->sol_comp);
857
858         so->sol_accept_filter = NULL;
859         so->sol_accept_filter_arg = NULL;
860         so->sol_accept_filter_str = NULL;
861
862         so->sol_upcall = NULL;
863         so->sol_upcallarg = NULL;
864
865         so->so_options |= SO_ACCEPTCONN;
866
867 listening:
868         if (backlog < 0 || backlog > somaxconn)
869                 backlog = somaxconn;
870         so->sol_qlimit = backlog;
871 }
872
873 /*
874  * Wakeup listeners/subsystems once we have a complete connection.
875  * Enters with lock, returns unlocked.
876  */
877 void
878 solisten_wakeup(struct socket *sol)
879 {
880
881         if (sol->sol_upcall != NULL)
882                 (void )sol->sol_upcall(sol, sol->sol_upcallarg, M_NOWAIT);
883         else {
884                 selwakeuppri(&sol->so_rdsel, PSOCK);
885                 KNOTE_LOCKED(&sol->so_rdsel.si_note, 0);
886         }
887         SOLISTEN_UNLOCK(sol);
888         wakeup_one(&sol->sol_comp);
889         if ((sol->so_state & SS_ASYNC) && sol->so_sigio != NULL)
890                 pgsigio(&sol->so_sigio, SIGIO, 0);
891 }
892
893 /*
894  * Return single connection off a listening socket queue.  Main consumer of
895  * the function is kern_accept4().  Some modules, that do their own accept
896  * management also use the function.
897  *
898  * Listening socket must be locked on entry and is returned unlocked on
899  * return.
900  * The flags argument is set of accept4(2) flags and ACCEPT4_INHERIT.
901  */
902 int
903 solisten_dequeue(struct socket *head, struct socket **ret, int flags)
904 {
905         struct socket *so;
906         int error;
907
908         SOLISTEN_LOCK_ASSERT(head);
909
910         while (!(head->so_state & SS_NBIO) && TAILQ_EMPTY(&head->sol_comp) &&
911             head->so_error == 0) {
912                 error = msleep(&head->sol_comp, &head->so_lock, PSOCK | PCATCH,
913                     "accept", 0);
914                 if (error != 0) {
915                         SOLISTEN_UNLOCK(head);
916                         return (error);
917                 }
918         }
919         if (head->so_error) {
920                 error = head->so_error;
921                 head->so_error = 0;
922         } else if ((head->so_state & SS_NBIO) && TAILQ_EMPTY(&head->sol_comp))
923                 error = EWOULDBLOCK;
924         else
925                 error = 0;
926         if (error) {
927                 SOLISTEN_UNLOCK(head);
928                 return (error);
929         }
930         so = TAILQ_FIRST(&head->sol_comp);
931         SOCK_LOCK(so);
932         KASSERT(so->so_qstate == SQ_COMP,
933             ("%s: so %p not SQ_COMP", __func__, so));
934         soref(so);
935         head->sol_qlen--;
936         so->so_qstate = SQ_NONE;
937         so->so_listen = NULL;
938         TAILQ_REMOVE(&head->sol_comp, so, so_list);
939         if (flags & ACCEPT4_INHERIT)
940                 so->so_state |= (head->so_state & SS_NBIO);
941         else
942                 so->so_state |= (flags & SOCK_NONBLOCK) ? SS_NBIO : 0;
943         SOCK_UNLOCK(so);
944         sorele(head);
945
946         *ret = so;
947         return (0);
948 }
949
950 /*
951  * Evaluate the reference count and named references on a socket; if no
952  * references remain, free it.  This should be called whenever a reference is
953  * released, such as in sorele(), but also when named reference flags are
954  * cleared in socket or protocol code.
955  *
956  * sofree() will free the socket if:
957  *
958  * - There are no outstanding file descriptor references or related consumers
959  *   (so_count == 0).
960  *
961  * - The socket has been closed by user space, if ever open (SS_NOFDREF).
962  *
963  * - The protocol does not have an outstanding strong reference on the socket
964  *   (SS_PROTOREF).
965  *
966  * - The socket is not in a completed connection queue, so a process has been
967  *   notified that it is present.  If it is removed, the user process may
968  *   block in accept() despite select() saying the socket was ready.
969  */
970 void
971 sofree(struct socket *so)
972 {
973         struct protosw *pr = so->so_proto;
974
975         SOCK_LOCK_ASSERT(so);
976
977         if ((so->so_state & SS_NOFDREF) == 0 || so->so_count != 0 ||
978             (so->so_state & SS_PROTOREF) || (so->so_qstate == SQ_COMP)) {
979                 SOCK_UNLOCK(so);
980                 return;
981         }
982
983         if (!SOLISTENING(so) && so->so_qstate == SQ_INCOMP) {
984                 struct socket *sol;
985
986                 sol = so->so_listen;
987                 KASSERT(sol, ("%s: so %p on incomp of NULL", __func__, so));
988
989                 /*
990                  * To solve race between close of a listening socket and
991                  * a socket on its incomplete queue, we need to lock both.
992                  * The order is first listening socket, then regular.
993                  * Since we don't have SS_NOFDREF neither SS_PROTOREF, this
994                  * function and the listening socket are the only pointers
995                  * to so.  To preserve so and sol, we reference both and then
996                  * relock.
997                  * After relock the socket may not move to so_comp since it
998                  * doesn't have PCB already, but it may be removed from
999                  * so_incomp. If that happens, we share responsiblity on
1000                  * freeing the socket, but soclose() has already removed
1001                  * it from queue.
1002                  */
1003                 soref(sol);
1004                 soref(so);
1005                 SOCK_UNLOCK(so);
1006                 SOLISTEN_LOCK(sol);
1007                 SOCK_LOCK(so);
1008                 if (so->so_qstate == SQ_INCOMP) {
1009                         KASSERT(so->so_listen == sol,
1010                             ("%s: so %p migrated out of sol %p",
1011                             __func__, so, sol));
1012                         TAILQ_REMOVE(&sol->sol_incomp, so, so_list);
1013                         sol->sol_incqlen--;
1014                         /* This is guarenteed not to be the last. */
1015                         refcount_release(&sol->so_count);
1016                         so->so_qstate = SQ_NONE;
1017                         so->so_listen = NULL;
1018                 } else
1019                         KASSERT(so->so_listen == NULL,
1020                             ("%s: so %p not on (in)comp with so_listen",
1021                             __func__, so));
1022                 sorele(sol);
1023                 KASSERT(so->so_count == 1,
1024                     ("%s: so %p count %u", __func__, so, so->so_count));
1025                 so->so_count = 0;
1026         }
1027         if (SOLISTENING(so))
1028                 so->so_error = ECONNABORTED;
1029         SOCK_UNLOCK(so);
1030
1031         if (so->so_dtor != NULL)
1032                 so->so_dtor(so);
1033
1034         VNET_SO_ASSERT(so);
1035         if (pr->pr_flags & PR_RIGHTS && pr->pr_domain->dom_dispose != NULL)
1036                 (*pr->pr_domain->dom_dispose)(so);
1037         if (pr->pr_usrreqs->pru_detach != NULL)
1038                 (*pr->pr_usrreqs->pru_detach)(so);
1039
1040         /*
1041          * From this point on, we assume that no other references to this
1042          * socket exist anywhere else in the stack.  Therefore, no locks need
1043          * to be acquired or held.
1044          *
1045          * We used to do a lot of socket buffer and socket locking here, as
1046          * well as invoke sorflush() and perform wakeups.  The direct call to
1047          * dom_dispose() and sbrelease_internal() are an inlining of what was
1048          * necessary from sorflush().
1049          *
1050          * Notice that the socket buffer and kqueue state are torn down
1051          * before calling pru_detach.  This means that protocols shold not
1052          * assume they can perform socket wakeups, etc, in their detach code.
1053          */
1054         if (!SOLISTENING(so)) {
1055                 sbdestroy(&so->so_snd, so);
1056                 sbdestroy(&so->so_rcv, so);
1057         }
1058         seldrain(&so->so_rdsel);
1059         seldrain(&so->so_wrsel);
1060         knlist_destroy(&so->so_rdsel.si_note);
1061         knlist_destroy(&so->so_wrsel.si_note);
1062         sodealloc(so);
1063 }
1064
1065 /*
1066  * Close a socket on last file table reference removal.  Initiate disconnect
1067  * if connected.  Free socket when disconnect complete.
1068  *
1069  * This function will sorele() the socket.  Note that soclose() may be called
1070  * prior to the ref count reaching zero.  The actual socket structure will
1071  * not be freed until the ref count reaches zero.
1072  */
1073 int
1074 soclose(struct socket *so)
1075 {
1076         struct accept_queue lqueue;
1077         bool listening;
1078         int error = 0;
1079
1080         KASSERT(!(so->so_state & SS_NOFDREF), ("soclose: SS_NOFDREF on enter"));
1081
1082         CURVNET_SET(so->so_vnet);
1083         funsetown(&so->so_sigio);
1084         if (so->so_state & SS_ISCONNECTED) {
1085                 if ((so->so_state & SS_ISDISCONNECTING) == 0) {
1086                         error = sodisconnect(so);
1087                         if (error) {
1088                                 if (error == ENOTCONN)
1089                                         error = 0;
1090                                 goto drop;
1091                         }
1092                 }
1093                 if (so->so_options & SO_LINGER) {
1094                         if ((so->so_state & SS_ISDISCONNECTING) &&
1095                             (so->so_state & SS_NBIO))
1096                                 goto drop;
1097                         while (so->so_state & SS_ISCONNECTED) {
1098                                 error = tsleep(&so->so_timeo,
1099                                     PSOCK | PCATCH, "soclos",
1100                                     so->so_linger * hz);
1101                                 if (error)
1102                                         break;
1103                         }
1104                 }
1105         }
1106
1107 drop:
1108         if (so->so_proto->pr_usrreqs->pru_close != NULL)
1109                 (*so->so_proto->pr_usrreqs->pru_close)(so);
1110
1111         SOCK_LOCK(so);
1112         if ((listening = (so->so_options & SO_ACCEPTCONN))) {
1113                 struct socket *sp;
1114
1115                 TAILQ_INIT(&lqueue);
1116                 TAILQ_SWAP(&lqueue, &so->sol_incomp, socket, so_list);
1117                 TAILQ_CONCAT(&lqueue, &so->sol_comp, so_list);
1118
1119                 so->sol_qlen = so->sol_incqlen = 0;
1120
1121                 TAILQ_FOREACH(sp, &lqueue, so_list) {
1122                         SOCK_LOCK(sp);
1123                         sp->so_qstate = SQ_NONE;
1124                         sp->so_listen = NULL;
1125                         SOCK_UNLOCK(sp);
1126                         /* Guaranteed not to be the last. */
1127                         refcount_release(&so->so_count);
1128                 }
1129         }
1130         KASSERT((so->so_state & SS_NOFDREF) == 0, ("soclose: NOFDREF"));
1131         so->so_state |= SS_NOFDREF;
1132         sorele(so);
1133         if (listening) {
1134                 struct socket *sp;
1135
1136                 TAILQ_FOREACH(sp, &lqueue, so_list) {
1137                         SOCK_LOCK(sp);
1138                         if (sp->so_count == 0) {
1139                                 SOCK_UNLOCK(sp);
1140                                 soabort(sp);
1141                         } else
1142                                 /* sp is now in sofree() */
1143                                 SOCK_UNLOCK(sp);
1144                 }
1145         }
1146         CURVNET_RESTORE();
1147         return (error);
1148 }
1149
1150 /*
1151  * soabort() is used to abruptly tear down a connection, such as when a
1152  * resource limit is reached (listen queue depth exceeded), or if a listen
1153  * socket is closed while there are sockets waiting to be accepted.
1154  *
1155  * This interface is tricky, because it is called on an unreferenced socket,
1156  * and must be called only by a thread that has actually removed the socket
1157  * from the listen queue it was on, or races with other threads are risked.
1158  *
1159  * This interface will call into the protocol code, so must not be called
1160  * with any socket locks held.  Protocols do call it while holding their own
1161  * recursible protocol mutexes, but this is something that should be subject
1162  * to review in the future.
1163  */
1164 void
1165 soabort(struct socket *so)
1166 {
1167
1168         /*
1169          * In as much as is possible, assert that no references to this
1170          * socket are held.  This is not quite the same as asserting that the
1171          * current thread is responsible for arranging for no references, but
1172          * is as close as we can get for now.
1173          */
1174         KASSERT(so->so_count == 0, ("soabort: so_count"));
1175         KASSERT((so->so_state & SS_PROTOREF) == 0, ("soabort: SS_PROTOREF"));
1176         KASSERT(so->so_state & SS_NOFDREF, ("soabort: !SS_NOFDREF"));
1177         VNET_SO_ASSERT(so);
1178
1179         if (so->so_proto->pr_usrreqs->pru_abort != NULL)
1180                 (*so->so_proto->pr_usrreqs->pru_abort)(so);
1181         SOCK_LOCK(so);
1182         sofree(so);
1183 }
1184
1185 int
1186 soaccept(struct socket *so, struct sockaddr **nam)
1187 {
1188         int error;
1189
1190         SOCK_LOCK(so);
1191         KASSERT((so->so_state & SS_NOFDREF) != 0, ("soaccept: !NOFDREF"));
1192         so->so_state &= ~SS_NOFDREF;
1193         SOCK_UNLOCK(so);
1194
1195         CURVNET_SET(so->so_vnet);
1196         error = (*so->so_proto->pr_usrreqs->pru_accept)(so, nam);
1197         CURVNET_RESTORE();
1198         return (error);
1199 }
1200
1201 int
1202 soconnect(struct socket *so, struct sockaddr *nam, struct thread *td)
1203 {
1204
1205         return (soconnectat(AT_FDCWD, so, nam, td));
1206 }
1207
1208 int
1209 soconnectat(int fd, struct socket *so, struct sockaddr *nam, struct thread *td)
1210 {
1211         int error;
1212
1213         if (so->so_options & SO_ACCEPTCONN)
1214                 return (EOPNOTSUPP);
1215
1216         CURVNET_SET(so->so_vnet);
1217         /*
1218          * If protocol is connection-based, can only connect once.
1219          * Otherwise, if connected, try to disconnect first.  This allows
1220          * user to disconnect by connecting to, e.g., a null address.
1221          */
1222         if (so->so_state & (SS_ISCONNECTED|SS_ISCONNECTING) &&
1223             ((so->so_proto->pr_flags & PR_CONNREQUIRED) ||
1224             (error = sodisconnect(so)))) {
1225                 error = EISCONN;
1226         } else {
1227                 /*
1228                  * Prevent accumulated error from previous connection from
1229                  * biting us.
1230                  */
1231                 so->so_error = 0;
1232                 if (fd == AT_FDCWD) {
1233                         error = (*so->so_proto->pr_usrreqs->pru_connect)(so,
1234                             nam, td);
1235                 } else {
1236                         error = (*so->so_proto->pr_usrreqs->pru_connectat)(fd,
1237                             so, nam, td);
1238                 }
1239         }
1240         CURVNET_RESTORE();
1241
1242         return (error);
1243 }
1244
1245 int
1246 soconnect2(struct socket *so1, struct socket *so2)
1247 {
1248         int error;
1249
1250         CURVNET_SET(so1->so_vnet);
1251         error = (*so1->so_proto->pr_usrreqs->pru_connect2)(so1, so2);
1252         CURVNET_RESTORE();
1253         return (error);
1254 }
1255
1256 int
1257 sodisconnect(struct socket *so)
1258 {
1259         int error;
1260
1261         if ((so->so_state & SS_ISCONNECTED) == 0)
1262                 return (ENOTCONN);
1263         if (so->so_state & SS_ISDISCONNECTING)
1264                 return (EALREADY);
1265         VNET_SO_ASSERT(so);
1266         error = (*so->so_proto->pr_usrreqs->pru_disconnect)(so);
1267         return (error);
1268 }
1269
1270 #define SBLOCKWAIT(f)   (((f) & MSG_DONTWAIT) ? 0 : SBL_WAIT)
1271
1272 int
1273 sosend_dgram(struct socket *so, struct sockaddr *addr, struct uio *uio,
1274     struct mbuf *top, struct mbuf *control, int flags, struct thread *td)
1275 {
1276         long space;
1277         ssize_t resid;
1278         int clen = 0, error, dontroute;
1279
1280         KASSERT(so->so_type == SOCK_DGRAM, ("sosend_dgram: !SOCK_DGRAM"));
1281         KASSERT(so->so_proto->pr_flags & PR_ATOMIC,
1282             ("sosend_dgram: !PR_ATOMIC"));
1283
1284         if (uio != NULL)
1285                 resid = uio->uio_resid;
1286         else
1287                 resid = top->m_pkthdr.len;
1288         /*
1289          * In theory resid should be unsigned.  However, space must be
1290          * signed, as it might be less than 0 if we over-committed, and we
1291          * must use a signed comparison of space and resid.  On the other
1292          * hand, a negative resid causes us to loop sending 0-length
1293          * segments to the protocol.
1294          */
1295         if (resid < 0) {
1296                 error = EINVAL;
1297                 goto out;
1298         }
1299
1300         dontroute =
1301             (flags & MSG_DONTROUTE) && (so->so_options & SO_DONTROUTE) == 0;
1302         if (td != NULL)
1303                 td->td_ru.ru_msgsnd++;
1304         if (control != NULL)
1305                 clen = control->m_len;
1306
1307         SOCKBUF_LOCK(&so->so_snd);
1308         if (so->so_snd.sb_state & SBS_CANTSENDMORE) {
1309                 SOCKBUF_UNLOCK(&so->so_snd);
1310                 error = EPIPE;
1311                 goto out;
1312         }
1313         if (so->so_error) {
1314                 error = so->so_error;
1315                 so->so_error = 0;
1316                 SOCKBUF_UNLOCK(&so->so_snd);
1317                 goto out;
1318         }
1319         if ((so->so_state & SS_ISCONNECTED) == 0) {
1320                 /*
1321                  * `sendto' and `sendmsg' is allowed on a connection-based
1322                  * socket if it supports implied connect.  Return ENOTCONN if
1323                  * not connected and no address is supplied.
1324                  */
1325                 if ((so->so_proto->pr_flags & PR_CONNREQUIRED) &&
1326                     (so->so_proto->pr_flags & PR_IMPLOPCL) == 0) {
1327                         if ((so->so_state & SS_ISCONFIRMING) == 0 &&
1328                             !(resid == 0 && clen != 0)) {
1329                                 SOCKBUF_UNLOCK(&so->so_snd);
1330                                 error = ENOTCONN;
1331                                 goto out;
1332                         }
1333                 } else if (addr == NULL) {
1334                         if (so->so_proto->pr_flags & PR_CONNREQUIRED)
1335                                 error = ENOTCONN;
1336                         else
1337                                 error = EDESTADDRREQ;
1338                         SOCKBUF_UNLOCK(&so->so_snd);
1339                         goto out;
1340                 }
1341         }
1342
1343         /*
1344          * Do we need MSG_OOB support in SOCK_DGRAM?  Signs here may be a
1345          * problem and need fixing.
1346          */
1347         space = sbspace(&so->so_snd);
1348         if (flags & MSG_OOB)
1349                 space += 1024;
1350         space -= clen;
1351         SOCKBUF_UNLOCK(&so->so_snd);
1352         if (resid > space) {
1353                 error = EMSGSIZE;
1354                 goto out;
1355         }
1356         if (uio == NULL) {
1357                 resid = 0;
1358                 if (flags & MSG_EOR)
1359                         top->m_flags |= M_EOR;
1360         } else {
1361                 /*
1362                  * Copy the data from userland into a mbuf chain.
1363                  * If no data is to be copied in, a single empty mbuf
1364                  * is returned.
1365                  */
1366                 top = m_uiotombuf(uio, M_WAITOK, space, max_hdr,
1367                     (M_PKTHDR | ((flags & MSG_EOR) ? M_EOR : 0)));
1368                 if (top == NULL) {
1369                         error = EFAULT; /* only possible error */
1370                         goto out;
1371                 }
1372                 space -= resid - uio->uio_resid;
1373                 resid = uio->uio_resid;
1374         }
1375         KASSERT(resid == 0, ("sosend_dgram: resid != 0"));
1376         /*
1377          * XXXRW: Frobbing SO_DONTROUTE here is even worse without sblock
1378          * than with.
1379          */
1380         if (dontroute) {
1381                 SOCK_LOCK(so);
1382                 so->so_options |= SO_DONTROUTE;
1383                 SOCK_UNLOCK(so);
1384         }
1385         /*
1386          * XXX all the SBS_CANTSENDMORE checks previously done could be out
1387          * of date.  We could have received a reset packet in an interrupt or
1388          * maybe we slept while doing page faults in uiomove() etc.  We could
1389          * probably recheck again inside the locking protection here, but
1390          * there are probably other places that this also happens.  We must
1391          * rethink this.
1392          */
1393         VNET_SO_ASSERT(so);
1394         error = (*so->so_proto->pr_usrreqs->pru_send)(so,
1395             (flags & MSG_OOB) ? PRUS_OOB :
1396         /*
1397          * If the user set MSG_EOF, the protocol understands this flag and
1398          * nothing left to send then use PRU_SEND_EOF instead of PRU_SEND.
1399          */
1400             ((flags & MSG_EOF) &&
1401              (so->so_proto->pr_flags & PR_IMPLOPCL) &&
1402              (resid <= 0)) ?
1403                 PRUS_EOF :
1404                 /* If there is more to send set PRUS_MORETOCOME */
1405                 (flags & MSG_MORETOCOME) ||
1406                 (resid > 0 && space > 0) ? PRUS_MORETOCOME : 0,
1407                 top, addr, control, td);
1408         if (dontroute) {
1409                 SOCK_LOCK(so);
1410                 so->so_options &= ~SO_DONTROUTE;
1411                 SOCK_UNLOCK(so);
1412         }
1413         clen = 0;
1414         control = NULL;
1415         top = NULL;
1416 out:
1417         if (top != NULL)
1418                 m_freem(top);
1419         if (control != NULL)
1420                 m_freem(control);
1421         return (error);
1422 }
1423
1424 /*
1425  * Send on a socket.  If send must go all at once and message is larger than
1426  * send buffering, then hard error.  Lock against other senders.  If must go
1427  * all at once and not enough room now, then inform user that this would
1428  * block and do nothing.  Otherwise, if nonblocking, send as much as
1429  * possible.  The data to be sent is described by "uio" if nonzero, otherwise
1430  * by the mbuf chain "top" (which must be null if uio is not).  Data provided
1431  * in mbuf chain must be small enough to send all at once.
1432  *
1433  * Returns nonzero on error, timeout or signal; callers must check for short
1434  * counts if EINTR/ERESTART are returned.  Data and control buffers are freed
1435  * on return.
1436  */
1437 int
1438 sosend_generic(struct socket *so, struct sockaddr *addr, struct uio *uio,
1439     struct mbuf *top, struct mbuf *control, int flags, struct thread *td)
1440 {
1441         long space;
1442         ssize_t resid;
1443         int clen = 0, error, dontroute;
1444         int atomic = sosendallatonce(so) || top;
1445
1446         if (uio != NULL)
1447                 resid = uio->uio_resid;
1448         else
1449                 resid = top->m_pkthdr.len;
1450         /*
1451          * In theory resid should be unsigned.  However, space must be
1452          * signed, as it might be less than 0 if we over-committed, and we
1453          * must use a signed comparison of space and resid.  On the other
1454          * hand, a negative resid causes us to loop sending 0-length
1455          * segments to the protocol.
1456          *
1457          * Also check to make sure that MSG_EOR isn't used on SOCK_STREAM
1458          * type sockets since that's an error.
1459          */
1460         if (resid < 0 || (so->so_type == SOCK_STREAM && (flags & MSG_EOR))) {
1461                 error = EINVAL;
1462                 goto out;
1463         }
1464
1465         dontroute =
1466             (flags & MSG_DONTROUTE) && (so->so_options & SO_DONTROUTE) == 0 &&
1467             (so->so_proto->pr_flags & PR_ATOMIC);
1468         if (td != NULL)
1469                 td->td_ru.ru_msgsnd++;
1470         if (control != NULL)
1471                 clen = control->m_len;
1472
1473         error = sblock(&so->so_snd, SBLOCKWAIT(flags));
1474         if (error)
1475                 goto out;
1476
1477 restart:
1478         do {
1479                 SOCKBUF_LOCK(&so->so_snd);
1480                 if (so->so_snd.sb_state & SBS_CANTSENDMORE) {
1481                         SOCKBUF_UNLOCK(&so->so_snd);
1482                         error = EPIPE;
1483                         goto release;
1484                 }
1485                 if (so->so_error) {
1486                         error = so->so_error;
1487                         so->so_error = 0;
1488                         SOCKBUF_UNLOCK(&so->so_snd);
1489                         goto release;
1490                 }
1491                 if ((so->so_state & SS_ISCONNECTED) == 0) {
1492                         /*
1493                          * `sendto' and `sendmsg' is allowed on a connection-
1494                          * based socket if it supports implied connect.
1495                          * Return ENOTCONN if not connected and no address is
1496                          * supplied.
1497                          */
1498                         if ((so->so_proto->pr_flags & PR_CONNREQUIRED) &&
1499                             (so->so_proto->pr_flags & PR_IMPLOPCL) == 0) {
1500                                 if ((so->so_state & SS_ISCONFIRMING) == 0 &&
1501                                     !(resid == 0 && clen != 0)) {
1502                                         SOCKBUF_UNLOCK(&so->so_snd);
1503                                         error = ENOTCONN;
1504                                         goto release;
1505                                 }
1506                         } else if (addr == NULL) {
1507                                 SOCKBUF_UNLOCK(&so->so_snd);
1508                                 if (so->so_proto->pr_flags & PR_CONNREQUIRED)
1509                                         error = ENOTCONN;
1510                                 else
1511                                         error = EDESTADDRREQ;
1512                                 goto release;
1513                         }
1514                 }
1515                 space = sbspace(&so->so_snd);
1516                 if (flags & MSG_OOB)
1517                         space += 1024;
1518                 if ((atomic && resid > so->so_snd.sb_hiwat) ||
1519                     clen > so->so_snd.sb_hiwat) {
1520                         SOCKBUF_UNLOCK(&so->so_snd);
1521                         error = EMSGSIZE;
1522                         goto release;
1523                 }
1524                 if (space < resid + clen &&
1525                     (atomic || space < so->so_snd.sb_lowat || space < clen)) {
1526                         if ((so->so_state & SS_NBIO) ||
1527                             (flags & (MSG_NBIO | MSG_DONTWAIT)) != 0) {
1528                                 SOCKBUF_UNLOCK(&so->so_snd);
1529                                 error = EWOULDBLOCK;
1530                                 goto release;
1531                         }
1532                         error = sbwait(&so->so_snd);
1533                         SOCKBUF_UNLOCK(&so->so_snd);
1534                         if (error)
1535                                 goto release;
1536                         goto restart;
1537                 }
1538                 SOCKBUF_UNLOCK(&so->so_snd);
1539                 space -= clen;
1540                 do {
1541                         if (uio == NULL) {
1542                                 resid = 0;
1543                                 if (flags & MSG_EOR)
1544                                         top->m_flags |= M_EOR;
1545                         } else {
1546                                 /*
1547                                  * Copy the data from userland into a mbuf
1548                                  * chain.  If resid is 0, which can happen
1549                                  * only if we have control to send, then
1550                                  * a single empty mbuf is returned.  This
1551                                  * is a workaround to prevent protocol send
1552                                  * methods to panic.
1553                                  */
1554                                 top = m_uiotombuf(uio, M_WAITOK, space,
1555                                     (atomic ? max_hdr : 0),
1556                                     (atomic ? M_PKTHDR : 0) |
1557                                     ((flags & MSG_EOR) ? M_EOR : 0));
1558                                 if (top == NULL) {
1559                                         error = EFAULT; /* only possible error */
1560                                         goto release;
1561                                 }
1562                                 space -= resid - uio->uio_resid;
1563                                 resid = uio->uio_resid;
1564                         }
1565                         if (dontroute) {
1566                                 SOCK_LOCK(so);
1567                                 so->so_options |= SO_DONTROUTE;
1568                                 SOCK_UNLOCK(so);
1569                         }
1570                         /*
1571                          * XXX all the SBS_CANTSENDMORE checks previously
1572                          * done could be out of date.  We could have received
1573                          * a reset packet in an interrupt or maybe we slept
1574                          * while doing page faults in uiomove() etc.  We
1575                          * could probably recheck again inside the locking
1576                          * protection here, but there are probably other
1577                          * places that this also happens.  We must rethink
1578                          * this.
1579                          */
1580                         VNET_SO_ASSERT(so);
1581                         error = (*so->so_proto->pr_usrreqs->pru_send)(so,
1582                             (flags & MSG_OOB) ? PRUS_OOB :
1583                         /*
1584                          * If the user set MSG_EOF, the protocol understands
1585                          * this flag and nothing left to send then use
1586                          * PRU_SEND_EOF instead of PRU_SEND.
1587                          */
1588                             ((flags & MSG_EOF) &&
1589                              (so->so_proto->pr_flags & PR_IMPLOPCL) &&
1590                              (resid <= 0)) ?
1591                                 PRUS_EOF :
1592                         /* If there is more to send set PRUS_MORETOCOME. */
1593                             (flags & MSG_MORETOCOME) ||
1594                             (resid > 0 && space > 0) ? PRUS_MORETOCOME : 0,
1595                             top, addr, control, td);
1596                         if (dontroute) {
1597                                 SOCK_LOCK(so);
1598                                 so->so_options &= ~SO_DONTROUTE;
1599                                 SOCK_UNLOCK(so);
1600                         }
1601                         clen = 0;
1602                         control = NULL;
1603                         top = NULL;
1604                         if (error)
1605                                 goto release;
1606                 } while (resid && space > 0);
1607         } while (resid);
1608
1609 release:
1610         sbunlock(&so->so_snd);
1611 out:
1612         if (top != NULL)
1613                 m_freem(top);
1614         if (control != NULL)
1615                 m_freem(control);
1616         return (error);
1617 }
1618
1619 int
1620 sosend(struct socket *so, struct sockaddr *addr, struct uio *uio,
1621     struct mbuf *top, struct mbuf *control, int flags, struct thread *td)
1622 {
1623         int error;
1624
1625         CURVNET_SET(so->so_vnet);
1626         if (!SOLISTENING(so))
1627                 error = so->so_proto->pr_usrreqs->pru_sosend(so, addr, uio,
1628                     top, control, flags, td);
1629         else {
1630                 m_freem(top);
1631                 m_freem(control);
1632                 error = ENOTCONN;
1633         }
1634         CURVNET_RESTORE();
1635         return (error);
1636 }
1637
1638 /*
1639  * The part of soreceive() that implements reading non-inline out-of-band
1640  * data from a socket.  For more complete comments, see soreceive(), from
1641  * which this code originated.
1642  *
1643  * Note that soreceive_rcvoob(), unlike the remainder of soreceive(), is
1644  * unable to return an mbuf chain to the caller.
1645  */
1646 static int
1647 soreceive_rcvoob(struct socket *so, struct uio *uio, int flags)
1648 {
1649         struct protosw *pr = so->so_proto;
1650         struct mbuf *m;
1651         int error;
1652
1653         KASSERT(flags & MSG_OOB, ("soreceive_rcvoob: (flags & MSG_OOB) == 0"));
1654         VNET_SO_ASSERT(so);
1655
1656         m = m_get(M_WAITOK, MT_DATA);
1657         error = (*pr->pr_usrreqs->pru_rcvoob)(so, m, flags & MSG_PEEK);
1658         if (error)
1659                 goto bad;
1660         do {
1661                 error = uiomove(mtod(m, void *),
1662                     (int) min(uio->uio_resid, m->m_len), uio);
1663                 m = m_free(m);
1664         } while (uio->uio_resid && error == 0 && m);
1665 bad:
1666         if (m != NULL)
1667                 m_freem(m);
1668         return (error);
1669 }
1670
1671 /*
1672  * Following replacement or removal of the first mbuf on the first mbuf chain
1673  * of a socket buffer, push necessary state changes back into the socket
1674  * buffer so that other consumers see the values consistently.  'nextrecord'
1675  * is the callers locally stored value of the original value of
1676  * sb->sb_mb->m_nextpkt which must be restored when the lead mbuf changes.
1677  * NOTE: 'nextrecord' may be NULL.
1678  */
1679 static __inline void
1680 sockbuf_pushsync(struct sockbuf *sb, struct mbuf *nextrecord)
1681 {
1682
1683         SOCKBUF_LOCK_ASSERT(sb);
1684         /*
1685          * First, update for the new value of nextrecord.  If necessary, make
1686          * it the first record.
1687          */
1688         if (sb->sb_mb != NULL)
1689                 sb->sb_mb->m_nextpkt = nextrecord;
1690         else
1691                 sb->sb_mb = nextrecord;
1692
1693         /*
1694          * Now update any dependent socket buffer fields to reflect the new
1695          * state.  This is an expanded inline of SB_EMPTY_FIXUP(), with the
1696          * addition of a second clause that takes care of the case where
1697          * sb_mb has been updated, but remains the last record.
1698          */
1699         if (sb->sb_mb == NULL) {
1700                 sb->sb_mbtail = NULL;
1701                 sb->sb_lastrecord = NULL;
1702         } else if (sb->sb_mb->m_nextpkt == NULL)
1703                 sb->sb_lastrecord = sb->sb_mb;
1704 }
1705
1706 /*
1707  * Implement receive operations on a socket.  We depend on the way that
1708  * records are added to the sockbuf by sbappend.  In particular, each record
1709  * (mbufs linked through m_next) must begin with an address if the protocol
1710  * so specifies, followed by an optional mbuf or mbufs containing ancillary
1711  * data, and then zero or more mbufs of data.  In order to allow parallelism
1712  * between network receive and copying to user space, as well as avoid
1713  * sleeping with a mutex held, we release the socket buffer mutex during the
1714  * user space copy.  Although the sockbuf is locked, new data may still be
1715  * appended, and thus we must maintain consistency of the sockbuf during that
1716  * time.
1717  *
1718  * The caller may receive the data as a single mbuf chain by supplying an
1719  * mbuf **mp0 for use in returning the chain.  The uio is then used only for
1720  * the count in uio_resid.
1721  */
1722 int
1723 soreceive_generic(struct socket *so, struct sockaddr **psa, struct uio *uio,
1724     struct mbuf **mp0, struct mbuf **controlp, int *flagsp)
1725 {
1726         struct mbuf *m, **mp;
1727         int flags, error, offset;
1728         ssize_t len;
1729         struct protosw *pr = so->so_proto;
1730         struct mbuf *nextrecord;
1731         int moff, type = 0;
1732         ssize_t orig_resid = uio->uio_resid;
1733
1734         mp = mp0;
1735         if (psa != NULL)
1736                 *psa = NULL;
1737         if (controlp != NULL)
1738                 *controlp = NULL;
1739         if (flagsp != NULL)
1740                 flags = *flagsp &~ MSG_EOR;
1741         else
1742                 flags = 0;
1743         if (flags & MSG_OOB)
1744                 return (soreceive_rcvoob(so, uio, flags));
1745         if (mp != NULL)
1746                 *mp = NULL;
1747         if ((pr->pr_flags & PR_WANTRCVD) && (so->so_state & SS_ISCONFIRMING)
1748             && uio->uio_resid) {
1749                 VNET_SO_ASSERT(so);
1750                 (*pr->pr_usrreqs->pru_rcvd)(so, 0);
1751         }
1752
1753         error = sblock(&so->so_rcv, SBLOCKWAIT(flags));
1754         if (error)
1755                 return (error);
1756
1757 restart:
1758         SOCKBUF_LOCK(&so->so_rcv);
1759         m = so->so_rcv.sb_mb;
1760         /*
1761          * If we have less data than requested, block awaiting more (subject
1762          * to any timeout) if:
1763          *   1. the current count is less than the low water mark, or
1764          *   2. MSG_DONTWAIT is not set
1765          */
1766         if (m == NULL || (((flags & MSG_DONTWAIT) == 0 &&
1767             sbavail(&so->so_rcv) < uio->uio_resid) &&
1768             sbavail(&so->so_rcv) < so->so_rcv.sb_lowat &&
1769             m->m_nextpkt == NULL && (pr->pr_flags & PR_ATOMIC) == 0)) {
1770                 KASSERT(m != NULL || !sbavail(&so->so_rcv),
1771                     ("receive: m == %p sbavail == %u",
1772                     m, sbavail(&so->so_rcv)));
1773                 if (so->so_error) {
1774                         if (m != NULL)
1775                                 goto dontblock;
1776                         error = so->so_error;
1777                         if ((flags & MSG_PEEK) == 0)
1778                                 so->so_error = 0;
1779                         SOCKBUF_UNLOCK(&so->so_rcv);
1780                         goto release;
1781                 }
1782                 SOCKBUF_LOCK_ASSERT(&so->so_rcv);
1783                 if (so->so_rcv.sb_state & SBS_CANTRCVMORE) {
1784                         if (m == NULL) {
1785                                 SOCKBUF_UNLOCK(&so->so_rcv);
1786                                 goto release;
1787                         } else
1788                                 goto dontblock;
1789                 }
1790                 for (; m != NULL; m = m->m_next)
1791                         if (m->m_type == MT_OOBDATA  || (m->m_flags & M_EOR)) {
1792                                 m = so->so_rcv.sb_mb;
1793                                 goto dontblock;
1794                         }
1795                 if ((so->so_state & (SS_ISCONNECTED|SS_ISCONNECTING)) == 0 &&
1796                     (so->so_proto->pr_flags & PR_CONNREQUIRED)) {
1797                         SOCKBUF_UNLOCK(&so->so_rcv);
1798                         error = ENOTCONN;
1799                         goto release;
1800                 }
1801                 if (uio->uio_resid == 0) {
1802                         SOCKBUF_UNLOCK(&so->so_rcv);
1803                         goto release;
1804                 }
1805                 if ((so->so_state & SS_NBIO) ||
1806                     (flags & (MSG_DONTWAIT|MSG_NBIO))) {
1807                         SOCKBUF_UNLOCK(&so->so_rcv);
1808                         error = EWOULDBLOCK;
1809                         goto release;
1810                 }
1811                 SBLASTRECORDCHK(&so->so_rcv);
1812                 SBLASTMBUFCHK(&so->so_rcv);
1813                 error = sbwait(&so->so_rcv);
1814                 SOCKBUF_UNLOCK(&so->so_rcv);
1815                 if (error)
1816                         goto release;
1817                 goto restart;
1818         }
1819 dontblock:
1820         /*
1821          * From this point onward, we maintain 'nextrecord' as a cache of the
1822          * pointer to the next record in the socket buffer.  We must keep the
1823          * various socket buffer pointers and local stack versions of the
1824          * pointers in sync, pushing out modifications before dropping the
1825          * socket buffer mutex, and re-reading them when picking it up.
1826          *
1827          * Otherwise, we will race with the network stack appending new data
1828          * or records onto the socket buffer by using inconsistent/stale
1829          * versions of the field, possibly resulting in socket buffer
1830          * corruption.
1831          *
1832          * By holding the high-level sblock(), we prevent simultaneous
1833          * readers from pulling off the front of the socket buffer.
1834          */
1835         SOCKBUF_LOCK_ASSERT(&so->so_rcv);
1836         if (uio->uio_td)
1837                 uio->uio_td->td_ru.ru_msgrcv++;
1838         KASSERT(m == so->so_rcv.sb_mb, ("soreceive: m != so->so_rcv.sb_mb"));
1839         SBLASTRECORDCHK(&so->so_rcv);
1840         SBLASTMBUFCHK(&so->so_rcv);
1841         nextrecord = m->m_nextpkt;
1842         if (pr->pr_flags & PR_ADDR) {
1843                 KASSERT(m->m_type == MT_SONAME,
1844                     ("m->m_type == %d", m->m_type));
1845                 orig_resid = 0;
1846                 if (psa != NULL)
1847                         *psa = sodupsockaddr(mtod(m, struct sockaddr *),
1848                             M_NOWAIT);
1849                 if (flags & MSG_PEEK) {
1850                         m = m->m_next;
1851                 } else {
1852                         sbfree(&so->so_rcv, m);
1853                         so->so_rcv.sb_mb = m_free(m);
1854                         m = so->so_rcv.sb_mb;
1855                         sockbuf_pushsync(&so->so_rcv, nextrecord);
1856                 }
1857         }
1858
1859         /*
1860          * Process one or more MT_CONTROL mbufs present before any data mbufs
1861          * in the first mbuf chain on the socket buffer.  If MSG_PEEK, we
1862          * just copy the data; if !MSG_PEEK, we call into the protocol to
1863          * perform externalization (or freeing if controlp == NULL).
1864          */
1865         if (m != NULL && m->m_type == MT_CONTROL) {
1866                 struct mbuf *cm = NULL, *cmn;
1867                 struct mbuf **cme = &cm;
1868
1869                 do {
1870                         if (flags & MSG_PEEK) {
1871                                 if (controlp != NULL) {
1872                                         *controlp = m_copym(m, 0, m->m_len,
1873                                             M_NOWAIT);
1874                                         controlp = &(*controlp)->m_next;
1875                                 }
1876                                 m = m->m_next;
1877                         } else {
1878                                 sbfree(&so->so_rcv, m);
1879                                 so->so_rcv.sb_mb = m->m_next;
1880                                 m->m_next = NULL;
1881                                 *cme = m;
1882                                 cme = &(*cme)->m_next;
1883                                 m = so->so_rcv.sb_mb;
1884                         }
1885                 } while (m != NULL && m->m_type == MT_CONTROL);
1886                 if ((flags & MSG_PEEK) == 0)
1887                         sockbuf_pushsync(&so->so_rcv, nextrecord);
1888                 while (cm != NULL) {
1889                         cmn = cm->m_next;
1890                         cm->m_next = NULL;
1891                         if (pr->pr_domain->dom_externalize != NULL) {
1892                                 SOCKBUF_UNLOCK(&so->so_rcv);
1893                                 VNET_SO_ASSERT(so);
1894                                 error = (*pr->pr_domain->dom_externalize)
1895                                     (cm, controlp, flags);
1896                                 SOCKBUF_LOCK(&so->so_rcv);
1897                         } else if (controlp != NULL)
1898                                 *controlp = cm;
1899                         else
1900                                 m_freem(cm);
1901                         if (controlp != NULL) {
1902                                 orig_resid = 0;
1903                                 while (*controlp != NULL)
1904                                         controlp = &(*controlp)->m_next;
1905                         }
1906                         cm = cmn;
1907                 }
1908                 if (m != NULL)
1909                         nextrecord = so->so_rcv.sb_mb->m_nextpkt;
1910                 else
1911                         nextrecord = so->so_rcv.sb_mb;
1912                 orig_resid = 0;
1913         }
1914         if (m != NULL) {
1915                 if ((flags & MSG_PEEK) == 0) {
1916                         KASSERT(m->m_nextpkt == nextrecord,
1917                             ("soreceive: post-control, nextrecord !sync"));
1918                         if (nextrecord == NULL) {
1919                                 KASSERT(so->so_rcv.sb_mb == m,
1920                                     ("soreceive: post-control, sb_mb!=m"));
1921                                 KASSERT(so->so_rcv.sb_lastrecord == m,
1922                                     ("soreceive: post-control, lastrecord!=m"));
1923                         }
1924                 }
1925                 type = m->m_type;
1926                 if (type == MT_OOBDATA)
1927                         flags |= MSG_OOB;
1928         } else {
1929                 if ((flags & MSG_PEEK) == 0) {
1930                         KASSERT(so->so_rcv.sb_mb == nextrecord,
1931                             ("soreceive: sb_mb != nextrecord"));
1932                         if (so->so_rcv.sb_mb == NULL) {
1933                                 KASSERT(so->so_rcv.sb_lastrecord == NULL,
1934                                     ("soreceive: sb_lastercord != NULL"));
1935                         }
1936                 }
1937         }
1938         SOCKBUF_LOCK_ASSERT(&so->so_rcv);
1939         SBLASTRECORDCHK(&so->so_rcv);
1940         SBLASTMBUFCHK(&so->so_rcv);
1941
1942         /*
1943          * Now continue to read any data mbufs off of the head of the socket
1944          * buffer until the read request is satisfied.  Note that 'type' is
1945          * used to store the type of any mbuf reads that have happened so far
1946          * such that soreceive() can stop reading if the type changes, which
1947          * causes soreceive() to return only one of regular data and inline
1948          * out-of-band data in a single socket receive operation.
1949          */
1950         moff = 0;
1951         offset = 0;
1952         while (m != NULL && !(m->m_flags & M_NOTAVAIL) && uio->uio_resid > 0
1953             && error == 0) {
1954                 /*
1955                  * If the type of mbuf has changed since the last mbuf
1956                  * examined ('type'), end the receive operation.
1957                  */
1958                 SOCKBUF_LOCK_ASSERT(&so->so_rcv);
1959                 if (m->m_type == MT_OOBDATA || m->m_type == MT_CONTROL) {
1960                         if (type != m->m_type)
1961                                 break;
1962                 } else if (type == MT_OOBDATA)
1963                         break;
1964                 else
1965                     KASSERT(m->m_type == MT_DATA,
1966                         ("m->m_type == %d", m->m_type));
1967                 so->so_rcv.sb_state &= ~SBS_RCVATMARK;
1968                 len = uio->uio_resid;
1969                 if (so->so_oobmark && len > so->so_oobmark - offset)
1970                         len = so->so_oobmark - offset;
1971                 if (len > m->m_len - moff)
1972                         len = m->m_len - moff;
1973                 /*
1974                  * If mp is set, just pass back the mbufs.  Otherwise copy
1975                  * them out via the uio, then free.  Sockbuf must be
1976                  * consistent here (points to current mbuf, it points to next
1977                  * record) when we drop priority; we must note any additions
1978                  * to the sockbuf when we block interrupts again.
1979                  */
1980                 if (mp == NULL) {
1981                         SOCKBUF_LOCK_ASSERT(&so->so_rcv);
1982                         SBLASTRECORDCHK(&so->so_rcv);
1983                         SBLASTMBUFCHK(&so->so_rcv);
1984                         SOCKBUF_UNLOCK(&so->so_rcv);
1985                         error = uiomove(mtod(m, char *) + moff, (int)len, uio);
1986                         SOCKBUF_LOCK(&so->so_rcv);
1987                         if (error) {
1988                                 /*
1989                                  * The MT_SONAME mbuf has already been removed
1990                                  * from the record, so it is necessary to
1991                                  * remove the data mbufs, if any, to preserve
1992                                  * the invariant in the case of PR_ADDR that
1993                                  * requires MT_SONAME mbufs at the head of
1994                                  * each record.
1995                                  */
1996                                 if (pr->pr_flags & PR_ATOMIC &&
1997                                     ((flags & MSG_PEEK) == 0))
1998                                         (void)sbdroprecord_locked(&so->so_rcv);
1999                                 SOCKBUF_UNLOCK(&so->so_rcv);
2000                                 goto release;
2001                         }
2002                 } else
2003                         uio->uio_resid -= len;
2004                 SOCKBUF_LOCK_ASSERT(&so->so_rcv);
2005                 if (len == m->m_len - moff) {
2006                         if (m->m_flags & M_EOR)
2007                                 flags |= MSG_EOR;
2008                         if (flags & MSG_PEEK) {
2009                                 m = m->m_next;
2010                                 moff = 0;
2011                         } else {
2012                                 nextrecord = m->m_nextpkt;
2013                                 sbfree(&so->so_rcv, m);
2014                                 if (mp != NULL) {
2015                                         m->m_nextpkt = NULL;
2016                                         *mp = m;
2017                                         mp = &m->m_next;
2018                                         so->so_rcv.sb_mb = m = m->m_next;
2019                                         *mp = NULL;
2020                                 } else {
2021                                         so->so_rcv.sb_mb = m_free(m);
2022                                         m = so->so_rcv.sb_mb;
2023                                 }
2024                                 sockbuf_pushsync(&so->so_rcv, nextrecord);
2025                                 SBLASTRECORDCHK(&so->so_rcv);
2026                                 SBLASTMBUFCHK(&so->so_rcv);
2027                         }
2028                 } else {
2029                         if (flags & MSG_PEEK)
2030                                 moff += len;
2031                         else {
2032                                 if (mp != NULL) {
2033                                         if (flags & MSG_DONTWAIT) {
2034                                                 *mp = m_copym(m, 0, len,
2035                                                     M_NOWAIT);
2036                                                 if (*mp == NULL) {
2037                                                         /*
2038                                                          * m_copym() couldn't
2039                                                          * allocate an mbuf.
2040                                                          * Adjust uio_resid back
2041                                                          * (it was adjusted
2042                                                          * down by len bytes,
2043                                                          * which we didn't end
2044                                                          * up "copying" over).
2045                                                          */
2046                                                         uio->uio_resid += len;
2047                                                         break;
2048                                                 }
2049                                         } else {
2050                                                 SOCKBUF_UNLOCK(&so->so_rcv);
2051                                                 *mp = m_copym(m, 0, len,
2052                                                     M_WAITOK);
2053                                                 SOCKBUF_LOCK(&so->so_rcv);
2054                                         }
2055                                 }
2056                                 sbcut_locked(&so->so_rcv, len);
2057                         }
2058                 }
2059                 SOCKBUF_LOCK_ASSERT(&so->so_rcv);
2060                 if (so->so_oobmark) {
2061                         if ((flags & MSG_PEEK) == 0) {
2062                                 so->so_oobmark -= len;
2063                                 if (so->so_oobmark == 0) {
2064                                         so->so_rcv.sb_state |= SBS_RCVATMARK;
2065                                         break;
2066                                 }
2067                         } else {
2068                                 offset += len;
2069                                 if (offset == so->so_oobmark)
2070                                         break;
2071                         }
2072                 }
2073                 if (flags & MSG_EOR)
2074                         break;
2075                 /*
2076                  * If the MSG_WAITALL flag is set (for non-atomic socket), we
2077                  * must not quit until "uio->uio_resid == 0" or an error
2078                  * termination.  If a signal/timeout occurs, return with a
2079                  * short count but without error.  Keep sockbuf locked
2080                  * against other readers.
2081                  */
2082                 while (flags & MSG_WAITALL && m == NULL && uio->uio_resid > 0 &&
2083                     !sosendallatonce(so) && nextrecord == NULL) {
2084                         SOCKBUF_LOCK_ASSERT(&so->so_rcv);
2085                         if (so->so_error ||
2086                             so->so_rcv.sb_state & SBS_CANTRCVMORE)
2087                                 break;
2088                         /*
2089                          * Notify the protocol that some data has been
2090                          * drained before blocking.
2091                          */
2092                         if (pr->pr_flags & PR_WANTRCVD) {
2093                                 SOCKBUF_UNLOCK(&so->so_rcv);
2094                                 VNET_SO_ASSERT(so);
2095                                 (*pr->pr_usrreqs->pru_rcvd)(so, flags);
2096                                 SOCKBUF_LOCK(&so->so_rcv);
2097                         }
2098                         SBLASTRECORDCHK(&so->so_rcv);
2099                         SBLASTMBUFCHK(&so->so_rcv);
2100                         /*
2101                          * We could receive some data while was notifying
2102                          * the protocol. Skip blocking in this case.
2103                          */
2104                         if (so->so_rcv.sb_mb == NULL) {
2105                                 error = sbwait(&so->so_rcv);
2106                                 if (error) {
2107                                         SOCKBUF_UNLOCK(&so->so_rcv);
2108                                         goto release;
2109                                 }
2110                         }
2111                         m = so->so_rcv.sb_mb;
2112                         if (m != NULL)
2113                                 nextrecord = m->m_nextpkt;
2114                 }
2115         }
2116
2117         SOCKBUF_LOCK_ASSERT(&so->so_rcv);
2118         if (m != NULL && pr->pr_flags & PR_ATOMIC) {
2119                 flags |= MSG_TRUNC;
2120                 if ((flags & MSG_PEEK) == 0)
2121                         (void) sbdroprecord_locked(&so->so_rcv);
2122         }
2123         if ((flags & MSG_PEEK) == 0) {
2124                 if (m == NULL) {
2125                         /*
2126                          * First part is an inline SB_EMPTY_FIXUP().  Second
2127                          * part makes sure sb_lastrecord is up-to-date if
2128                          * there is still data in the socket buffer.
2129                          */
2130                         so->so_rcv.sb_mb = nextrecord;
2131                         if (so->so_rcv.sb_mb == NULL) {
2132                                 so->so_rcv.sb_mbtail = NULL;
2133                                 so->so_rcv.sb_lastrecord = NULL;
2134                         } else if (nextrecord->m_nextpkt == NULL)
2135                                 so->so_rcv.sb_lastrecord = nextrecord;
2136                 }
2137                 SBLASTRECORDCHK(&so->so_rcv);
2138                 SBLASTMBUFCHK(&so->so_rcv);
2139                 /*
2140                  * If soreceive() is being done from the socket callback,
2141                  * then don't need to generate ACK to peer to update window,
2142                  * since ACK will be generated on return to TCP.
2143                  */
2144                 if (!(flags & MSG_SOCALLBCK) &&
2145                     (pr->pr_flags & PR_WANTRCVD)) {
2146                         SOCKBUF_UNLOCK(&so->so_rcv);
2147                         VNET_SO_ASSERT(so);
2148                         (*pr->pr_usrreqs->pru_rcvd)(so, flags);
2149                         SOCKBUF_LOCK(&so->so_rcv);
2150                 }
2151         }
2152         SOCKBUF_LOCK_ASSERT(&so->so_rcv);
2153         if (orig_resid == uio->uio_resid && orig_resid &&
2154             (flags & MSG_EOR) == 0 && (so->so_rcv.sb_state & SBS_CANTRCVMORE) == 0) {
2155                 SOCKBUF_UNLOCK(&so->so_rcv);
2156                 goto restart;
2157         }
2158         SOCKBUF_UNLOCK(&so->so_rcv);
2159
2160         if (flagsp != NULL)
2161                 *flagsp |= flags;
2162 release:
2163         sbunlock(&so->so_rcv);
2164         return (error);
2165 }
2166
2167 /*
2168  * Optimized version of soreceive() for stream (TCP) sockets.
2169  */
2170 int
2171 soreceive_stream(struct socket *so, struct sockaddr **psa, struct uio *uio,
2172     struct mbuf **mp0, struct mbuf **controlp, int *flagsp)
2173 {
2174         int len = 0, error = 0, flags, oresid;
2175         struct sockbuf *sb;
2176         struct mbuf *m, *n = NULL;
2177
2178         /* We only do stream sockets. */
2179         if (so->so_type != SOCK_STREAM)
2180                 return (EINVAL);
2181         if (psa != NULL)
2182                 *psa = NULL;
2183         if (flagsp != NULL)
2184                 flags = *flagsp &~ MSG_EOR;
2185         else
2186                 flags = 0;
2187         if (controlp != NULL)
2188                 *controlp = NULL;
2189         if (flags & MSG_OOB)
2190                 return (soreceive_rcvoob(so, uio, flags));
2191         if (mp0 != NULL)
2192                 *mp0 = NULL;
2193
2194         sb = &so->so_rcv;
2195
2196         /* Prevent other readers from entering the socket. */
2197         error = sblock(sb, SBLOCKWAIT(flags));
2198         if (error)
2199                 return (error);
2200         SOCKBUF_LOCK(sb);
2201
2202         /* Easy one, no space to copyout anything. */
2203         if (uio->uio_resid == 0) {
2204                 error = EINVAL;
2205                 goto out;
2206         }
2207         oresid = uio->uio_resid;
2208
2209         /* We will never ever get anything unless we are or were connected. */
2210         if (!(so->so_state & (SS_ISCONNECTED|SS_ISDISCONNECTED))) {
2211                 error = ENOTCONN;
2212                 goto out;
2213         }
2214
2215 restart:
2216         SOCKBUF_LOCK_ASSERT(&so->so_rcv);
2217
2218         /* Abort if socket has reported problems. */
2219         if (so->so_error) {
2220                 if (sbavail(sb) > 0)
2221                         goto deliver;
2222                 if (oresid > uio->uio_resid)
2223                         goto out;
2224                 error = so->so_error;
2225                 if (!(flags & MSG_PEEK))
2226                         so->so_error = 0;
2227                 goto out;
2228         }
2229
2230         /* Door is closed.  Deliver what is left, if any. */
2231         if (sb->sb_state & SBS_CANTRCVMORE) {
2232                 if (sbavail(sb) > 0)
2233                         goto deliver;
2234                 else
2235                         goto out;
2236         }
2237
2238         /* Socket buffer is empty and we shall not block. */
2239         if (sbavail(sb) == 0 &&
2240             ((so->so_state & SS_NBIO) || (flags & (MSG_DONTWAIT|MSG_NBIO)))) {
2241                 error = EAGAIN;
2242                 goto out;
2243         }
2244
2245         /* Socket buffer got some data that we shall deliver now. */
2246         if (sbavail(sb) > 0 && !(flags & MSG_WAITALL) &&
2247             ((so->so_state & SS_NBIO) ||
2248              (flags & (MSG_DONTWAIT|MSG_NBIO)) ||
2249              sbavail(sb) >= sb->sb_lowat ||
2250              sbavail(sb) >= uio->uio_resid ||
2251              sbavail(sb) >= sb->sb_hiwat) ) {
2252                 goto deliver;
2253         }
2254
2255         /* On MSG_WAITALL we must wait until all data or error arrives. */
2256         if ((flags & MSG_WAITALL) &&
2257             (sbavail(sb) >= uio->uio_resid || sbavail(sb) >= sb->sb_hiwat))
2258                 goto deliver;
2259
2260         /*
2261          * Wait and block until (more) data comes in.
2262          * NB: Drops the sockbuf lock during wait.
2263          */
2264         error = sbwait(sb);
2265         if (error)
2266                 goto out;
2267         goto restart;
2268
2269 deliver:
2270         SOCKBUF_LOCK_ASSERT(&so->so_rcv);
2271         KASSERT(sbavail(sb) > 0, ("%s: sockbuf empty", __func__));
2272         KASSERT(sb->sb_mb != NULL, ("%s: sb_mb == NULL", __func__));
2273
2274         /* Statistics. */
2275         if (uio->uio_td)
2276                 uio->uio_td->td_ru.ru_msgrcv++;
2277
2278         /* Fill uio until full or current end of socket buffer is reached. */
2279         len = min(uio->uio_resid, sbavail(sb));
2280         if (mp0 != NULL) {
2281                 /* Dequeue as many mbufs as possible. */
2282                 if (!(flags & MSG_PEEK) && len >= sb->sb_mb->m_len) {
2283                         if (*mp0 == NULL)
2284                                 *mp0 = sb->sb_mb;
2285                         else
2286                                 m_cat(*mp0, sb->sb_mb);
2287                         for (m = sb->sb_mb;
2288                              m != NULL && m->m_len <= len;
2289                              m = m->m_next) {
2290                                 KASSERT(!(m->m_flags & M_NOTAVAIL),
2291                                     ("%s: m %p not available", __func__, m));
2292                                 len -= m->m_len;
2293                                 uio->uio_resid -= m->m_len;
2294                                 sbfree(sb, m);
2295                                 n = m;
2296                         }
2297                         n->m_next = NULL;
2298                         sb->sb_mb = m;
2299                         sb->sb_lastrecord = sb->sb_mb;
2300                         if (sb->sb_mb == NULL)
2301                                 SB_EMPTY_FIXUP(sb);
2302                 }
2303                 /* Copy the remainder. */
2304                 if (len > 0) {
2305                         KASSERT(sb->sb_mb != NULL,
2306                             ("%s: len > 0 && sb->sb_mb empty", __func__));
2307
2308                         m = m_copym(sb->sb_mb, 0, len, M_NOWAIT);
2309                         if (m == NULL)
2310                                 len = 0;        /* Don't flush data from sockbuf. */
2311                         else
2312                                 uio->uio_resid -= len;
2313                         if (*mp0 != NULL)
2314                                 m_cat(*mp0, m);
2315                         else
2316                                 *mp0 = m;
2317                         if (*mp0 == NULL) {
2318                                 error = ENOBUFS;
2319                                 goto out;
2320                         }
2321                 }
2322         } else {
2323                 /* NB: Must unlock socket buffer as uiomove may sleep. */
2324                 SOCKBUF_UNLOCK(sb);
2325                 error = m_mbuftouio(uio, sb->sb_mb, len);
2326                 SOCKBUF_LOCK(sb);
2327                 if (error)
2328                         goto out;
2329         }
2330         SBLASTRECORDCHK(sb);
2331         SBLASTMBUFCHK(sb);
2332
2333         /*
2334          * Remove the delivered data from the socket buffer unless we
2335          * were only peeking.
2336          */
2337         if (!(flags & MSG_PEEK)) {
2338                 if (len > 0)
2339                         sbdrop_locked(sb, len);
2340
2341                 /* Notify protocol that we drained some data. */
2342                 if ((so->so_proto->pr_flags & PR_WANTRCVD) &&
2343                     (((flags & MSG_WAITALL) && uio->uio_resid > 0) ||
2344                      !(flags & MSG_SOCALLBCK))) {
2345                         SOCKBUF_UNLOCK(sb);
2346                         VNET_SO_ASSERT(so);
2347                         (*so->so_proto->pr_usrreqs->pru_rcvd)(so, flags);
2348                         SOCKBUF_LOCK(sb);
2349                 }
2350         }
2351
2352         /*
2353          * For MSG_WAITALL we may have to loop again and wait for
2354          * more data to come in.
2355          */
2356         if ((flags & MSG_WAITALL) && uio->uio_resid > 0)
2357                 goto restart;
2358 out:
2359         SOCKBUF_LOCK_ASSERT(sb);
2360         SBLASTRECORDCHK(sb);
2361         SBLASTMBUFCHK(sb);
2362         SOCKBUF_UNLOCK(sb);
2363         sbunlock(sb);
2364         return (error);
2365 }
2366
2367 /*
2368  * Optimized version of soreceive() for simple datagram cases from userspace.
2369  * Unlike in the stream case, we're able to drop a datagram if copyout()
2370  * fails, and because we handle datagrams atomically, we don't need to use a
2371  * sleep lock to prevent I/O interlacing.
2372  */
2373 int
2374 soreceive_dgram(struct socket *so, struct sockaddr **psa, struct uio *uio,
2375     struct mbuf **mp0, struct mbuf **controlp, int *flagsp)
2376 {
2377         struct mbuf *m, *m2;
2378         int flags, error;
2379         ssize_t len;
2380         struct protosw *pr = so->so_proto;
2381         struct mbuf *nextrecord;
2382
2383         if (psa != NULL)
2384                 *psa = NULL;
2385         if (controlp != NULL)
2386                 *controlp = NULL;
2387         if (flagsp != NULL)
2388                 flags = *flagsp &~ MSG_EOR;
2389         else
2390                 flags = 0;
2391
2392         /*
2393          * For any complicated cases, fall back to the full
2394          * soreceive_generic().
2395          */
2396         if (mp0 != NULL || (flags & MSG_PEEK) || (flags & MSG_OOB))
2397                 return (soreceive_generic(so, psa, uio, mp0, controlp,
2398                     flagsp));
2399
2400         /*
2401          * Enforce restrictions on use.
2402          */
2403         KASSERT((pr->pr_flags & PR_WANTRCVD) == 0,
2404             ("soreceive_dgram: wantrcvd"));
2405         KASSERT(pr->pr_flags & PR_ATOMIC, ("soreceive_dgram: !atomic"));
2406         KASSERT((so->so_rcv.sb_state & SBS_RCVATMARK) == 0,
2407             ("soreceive_dgram: SBS_RCVATMARK"));
2408         KASSERT((so->so_proto->pr_flags & PR_CONNREQUIRED) == 0,
2409             ("soreceive_dgram: P_CONNREQUIRED"));
2410
2411         /*
2412          * Loop blocking while waiting for a datagram.
2413          */
2414         SOCKBUF_LOCK(&so->so_rcv);
2415         while ((m = so->so_rcv.sb_mb) == NULL) {
2416                 KASSERT(sbavail(&so->so_rcv) == 0,
2417                     ("soreceive_dgram: sb_mb NULL but sbavail %u",
2418                     sbavail(&so->so_rcv)));
2419                 if (so->so_error) {
2420                         error = so->so_error;
2421                         so->so_error = 0;
2422                         SOCKBUF_UNLOCK(&so->so_rcv);
2423                         return (error);
2424                 }
2425                 if (so->so_rcv.sb_state & SBS_CANTRCVMORE ||
2426                     uio->uio_resid == 0) {
2427                         SOCKBUF_UNLOCK(&so->so_rcv);
2428                         return (0);
2429                 }
2430                 if ((so->so_state & SS_NBIO) ||
2431                     (flags & (MSG_DONTWAIT|MSG_NBIO))) {
2432                         SOCKBUF_UNLOCK(&so->so_rcv);
2433                         return (EWOULDBLOCK);
2434                 }
2435                 SBLASTRECORDCHK(&so->so_rcv);
2436                 SBLASTMBUFCHK(&so->so_rcv);
2437                 error = sbwait(&so->so_rcv);
2438                 if (error) {
2439                         SOCKBUF_UNLOCK(&so->so_rcv);
2440                         return (error);
2441                 }
2442         }
2443         SOCKBUF_LOCK_ASSERT(&so->so_rcv);
2444
2445         if (uio->uio_td)
2446                 uio->uio_td->td_ru.ru_msgrcv++;
2447         SBLASTRECORDCHK(&so->so_rcv);
2448         SBLASTMBUFCHK(&so->so_rcv);
2449         nextrecord = m->m_nextpkt;
2450         if (nextrecord == NULL) {
2451                 KASSERT(so->so_rcv.sb_lastrecord == m,
2452                     ("soreceive_dgram: lastrecord != m"));
2453         }
2454
2455         KASSERT(so->so_rcv.sb_mb->m_nextpkt == nextrecord,
2456             ("soreceive_dgram: m_nextpkt != nextrecord"));
2457
2458         /*
2459          * Pull 'm' and its chain off the front of the packet queue.
2460          */
2461         so->so_rcv.sb_mb = NULL;
2462         sockbuf_pushsync(&so->so_rcv, nextrecord);
2463
2464         /*
2465          * Walk 'm's chain and free that many bytes from the socket buffer.
2466          */
2467         for (m2 = m; m2 != NULL; m2 = m2->m_next)
2468                 sbfree(&so->so_rcv, m2);
2469
2470         /*
2471          * Do a few last checks before we let go of the lock.
2472          */
2473         SBLASTRECORDCHK(&so->so_rcv);
2474         SBLASTMBUFCHK(&so->so_rcv);
2475         SOCKBUF_UNLOCK(&so->so_rcv);
2476
2477         if (pr->pr_flags & PR_ADDR) {
2478                 KASSERT(m->m_type == MT_SONAME,
2479                     ("m->m_type == %d", m->m_type));
2480                 if (psa != NULL)
2481                         *psa = sodupsockaddr(mtod(m, struct sockaddr *),
2482                             M_NOWAIT);
2483                 m = m_free(m);
2484         }
2485         if (m == NULL) {
2486                 /* XXXRW: Can this happen? */
2487                 return (0);
2488         }
2489
2490         /*
2491          * Packet to copyout() is now in 'm' and it is disconnected from the
2492          * queue.
2493          *
2494          * Process one or more MT_CONTROL mbufs present before any data mbufs
2495          * in the first mbuf chain on the socket buffer.  We call into the
2496          * protocol to perform externalization (or freeing if controlp ==
2497          * NULL). In some cases there can be only MT_CONTROL mbufs without
2498          * MT_DATA mbufs.
2499          */
2500         if (m->m_type == MT_CONTROL) {
2501                 struct mbuf *cm = NULL, *cmn;
2502                 struct mbuf **cme = &cm;
2503
2504                 do {
2505                         m2 = m->m_next;
2506                         m->m_next = NULL;
2507                         *cme = m;
2508                         cme = &(*cme)->m_next;
2509                         m = m2;
2510                 } while (m != NULL && m->m_type == MT_CONTROL);
2511                 while (cm != NULL) {
2512                         cmn = cm->m_next;
2513                         cm->m_next = NULL;
2514                         if (pr->pr_domain->dom_externalize != NULL) {
2515                                 error = (*pr->pr_domain->dom_externalize)
2516                                     (cm, controlp, flags);
2517                         } else if (controlp != NULL)
2518                                 *controlp = cm;
2519                         else
2520                                 m_freem(cm);
2521                         if (controlp != NULL) {
2522                                 while (*controlp != NULL)
2523                                         controlp = &(*controlp)->m_next;
2524                         }
2525                         cm = cmn;
2526                 }
2527         }
2528         KASSERT(m == NULL || m->m_type == MT_DATA,
2529             ("soreceive_dgram: !data"));
2530         while (m != NULL && uio->uio_resid > 0) {
2531                 len = uio->uio_resid;
2532                 if (len > m->m_len)
2533                         len = m->m_len;
2534                 error = uiomove(mtod(m, char *), (int)len, uio);
2535                 if (error) {
2536                         m_freem(m);
2537                         return (error);
2538                 }
2539                 if (len == m->m_len)
2540                         m = m_free(m);
2541                 else {
2542                         m->m_data += len;
2543                         m->m_len -= len;
2544                 }
2545         }
2546         if (m != NULL) {
2547                 flags |= MSG_TRUNC;
2548                 m_freem(m);
2549         }
2550         if (flagsp != NULL)
2551                 *flagsp |= flags;
2552         return (0);
2553 }
2554
2555 int
2556 soreceive(struct socket *so, struct sockaddr **psa, struct uio *uio,
2557     struct mbuf **mp0, struct mbuf **controlp, int *flagsp)
2558 {
2559         int error;
2560
2561         CURVNET_SET(so->so_vnet);
2562         if (!SOLISTENING(so))
2563                 error = (so->so_proto->pr_usrreqs->pru_soreceive(so, psa, uio,
2564                     mp0, controlp, flagsp));
2565         else
2566                 error = ENOTCONN;
2567         CURVNET_RESTORE();
2568         return (error);
2569 }
2570
2571 int
2572 soshutdown(struct socket *so, int how)
2573 {
2574         struct protosw *pr = so->so_proto;
2575         int error, soerror_enotconn;
2576
2577         if (!(how == SHUT_RD || how == SHUT_WR || how == SHUT_RDWR))
2578                 return (EINVAL);
2579
2580         soerror_enotconn = 0;
2581         if ((so->so_state &
2582             (SS_ISCONNECTED | SS_ISCONNECTING | SS_ISDISCONNECTING)) == 0) {
2583                 /*
2584                  * POSIX mandates us to return ENOTCONN when shutdown(2) is
2585                  * invoked on a datagram sockets, however historically we would
2586                  * actually tear socket down. This is known to be leveraged by
2587                  * some applications to unblock process waiting in recvXXX(2)
2588                  * by other process that it shares that socket with. Try to meet
2589                  * both backward-compatibility and POSIX requirements by forcing
2590                  * ENOTCONN but still asking protocol to perform pru_shutdown().
2591                  */
2592                 if (so->so_type != SOCK_DGRAM && !SOLISTENING(so))
2593                         return (ENOTCONN);
2594                 soerror_enotconn = 1;
2595         }
2596
2597         if (SOLISTENING(so)) {
2598                 if (how != SHUT_WR) {
2599                         SOLISTEN_LOCK(so);
2600                         so->so_error = ECONNABORTED;
2601                         solisten_wakeup(so);    /* unlocks so */
2602                 }
2603                 goto done;
2604         }
2605
2606         CURVNET_SET(so->so_vnet);
2607         if (pr->pr_usrreqs->pru_flush != NULL)
2608                 (*pr->pr_usrreqs->pru_flush)(so, how);
2609         if (how != SHUT_WR)
2610                 sorflush(so);
2611         if (how != SHUT_RD) {
2612                 error = (*pr->pr_usrreqs->pru_shutdown)(so);
2613                 wakeup(&so->so_timeo);
2614                 CURVNET_RESTORE();
2615                 return ((error == 0 && soerror_enotconn) ? ENOTCONN : error);
2616         }
2617         wakeup(&so->so_timeo);
2618         CURVNET_RESTORE();
2619
2620 done:
2621         return (soerror_enotconn ? ENOTCONN : 0);
2622 }
2623
2624 void
2625 sorflush(struct socket *so)
2626 {
2627         struct sockbuf *sb = &so->so_rcv;
2628         struct protosw *pr = so->so_proto;
2629         struct socket aso;
2630
2631         VNET_SO_ASSERT(so);
2632
2633         /*
2634          * In order to avoid calling dom_dispose with the socket buffer mutex
2635          * held, and in order to generally avoid holding the lock for a long
2636          * time, we make a copy of the socket buffer and clear the original
2637          * (except locks, state).  The new socket buffer copy won't have
2638          * initialized locks so we can only call routines that won't use or
2639          * assert those locks.
2640          *
2641          * Dislodge threads currently blocked in receive and wait to acquire
2642          * a lock against other simultaneous readers before clearing the
2643          * socket buffer.  Don't let our acquire be interrupted by a signal
2644          * despite any existing socket disposition on interruptable waiting.
2645          */
2646         socantrcvmore(so);
2647         (void) sblock(sb, SBL_WAIT | SBL_NOINTR);
2648
2649         /*
2650          * Invalidate/clear most of the sockbuf structure, but leave selinfo
2651          * and mutex data unchanged.
2652          */
2653         SOCKBUF_LOCK(sb);
2654         bzero(&aso, sizeof(aso));
2655         aso.so_pcb = so->so_pcb;
2656         bcopy(&sb->sb_startzero, &aso.so_rcv.sb_startzero,
2657             sizeof(*sb) - offsetof(struct sockbuf, sb_startzero));
2658         bzero(&sb->sb_startzero,
2659             sizeof(*sb) - offsetof(struct sockbuf, sb_startzero));
2660         SOCKBUF_UNLOCK(sb);
2661         sbunlock(sb);
2662
2663         /*
2664          * Dispose of special rights and flush the copied socket.  Don't call
2665          * any unsafe routines (that rely on locks being initialized) on aso.
2666          */
2667         if (pr->pr_flags & PR_RIGHTS && pr->pr_domain->dom_dispose != NULL)
2668                 (*pr->pr_domain->dom_dispose)(&aso);
2669         sbrelease_internal(&aso.so_rcv, so);
2670 }
2671
2672 /*
2673  * Wrapper for Socket established helper hook.
2674  * Parameters: socket, context of the hook point, hook id.
2675  */
2676 static int inline
2677 hhook_run_socket(struct socket *so, void *hctx, int32_t h_id)
2678 {
2679         struct socket_hhook_data hhook_data = {
2680                 .so = so,
2681                 .hctx = hctx,
2682                 .m = NULL,
2683                 .status = 0
2684         };
2685
2686         CURVNET_SET(so->so_vnet);
2687         HHOOKS_RUN_IF(V_socket_hhh[h_id], &hhook_data, &so->osd);
2688         CURVNET_RESTORE();
2689
2690         /* Ugly but needed, since hhooks return void for now */
2691         return (hhook_data.status);
2692 }
2693
2694 /*
2695  * Perhaps this routine, and sooptcopyout(), below, ought to come in an
2696  * additional variant to handle the case where the option value needs to be
2697  * some kind of integer, but not a specific size.  In addition to their use
2698  * here, these functions are also called by the protocol-level pr_ctloutput()
2699  * routines.
2700  */
2701 int
2702 sooptcopyin(struct sockopt *sopt, void *buf, size_t len, size_t minlen)
2703 {
2704         size_t  valsize;
2705
2706         /*
2707          * If the user gives us more than we wanted, we ignore it, but if we
2708          * don't get the minimum length the caller wants, we return EINVAL.
2709          * On success, sopt->sopt_valsize is set to however much we actually
2710          * retrieved.
2711          */
2712         if ((valsize = sopt->sopt_valsize) < minlen)
2713                 return EINVAL;
2714         if (valsize > len)
2715                 sopt->sopt_valsize = valsize = len;
2716
2717         if (sopt->sopt_td != NULL)
2718                 return (copyin(sopt->sopt_val, buf, valsize));
2719
2720         bcopy(sopt->sopt_val, buf, valsize);
2721         return (0);
2722 }
2723
2724 /*
2725  * Kernel version of setsockopt(2).
2726  *
2727  * XXX: optlen is size_t, not socklen_t
2728  */
2729 int
2730 so_setsockopt(struct socket *so, int level, int optname, void *optval,
2731     size_t optlen)
2732 {
2733         struct sockopt sopt;
2734
2735         sopt.sopt_level = level;
2736         sopt.sopt_name = optname;
2737         sopt.sopt_dir = SOPT_SET;
2738         sopt.sopt_val = optval;
2739         sopt.sopt_valsize = optlen;
2740         sopt.sopt_td = NULL;
2741         return (sosetopt(so, &sopt));
2742 }
2743
2744 int
2745 sosetopt(struct socket *so, struct sockopt *sopt)
2746 {
2747         int     error, optval;
2748         struct  linger l;
2749         struct  timeval tv;
2750         sbintime_t val;
2751         uint32_t val32;
2752 #ifdef MAC
2753         struct mac extmac;
2754 #endif
2755
2756         CURVNET_SET(so->so_vnet);
2757         error = 0;
2758         if (sopt->sopt_level != SOL_SOCKET) {
2759                 if (so->so_proto->pr_ctloutput != NULL) {
2760                         error = (*so->so_proto->pr_ctloutput)(so, sopt);
2761                         CURVNET_RESTORE();
2762                         return (error);
2763                 }
2764                 error = ENOPROTOOPT;
2765         } else {
2766                 switch (sopt->sopt_name) {
2767                 case SO_ACCEPTFILTER:
2768                         error = accept_filt_setopt(so, sopt);
2769                         if (error)
2770                                 goto bad;
2771                         break;
2772
2773                 case SO_LINGER:
2774                         error = sooptcopyin(sopt, &l, sizeof l, sizeof l);
2775                         if (error)
2776                                 goto bad;
2777
2778                         SOCK_LOCK(so);
2779                         so->so_linger = l.l_linger;
2780                         if (l.l_onoff)
2781                                 so->so_options |= SO_LINGER;
2782                         else
2783                                 so->so_options &= ~SO_LINGER;
2784                         SOCK_UNLOCK(so);
2785                         break;
2786
2787                 case SO_DEBUG:
2788                 case SO_KEEPALIVE:
2789                 case SO_DONTROUTE:
2790                 case SO_USELOOPBACK:
2791                 case SO_BROADCAST:
2792                 case SO_REUSEADDR:
2793                 case SO_REUSEPORT:
2794                 case SO_REUSEPORT_LB:
2795                 case SO_OOBINLINE:
2796                 case SO_TIMESTAMP:
2797                 case SO_BINTIME:
2798                 case SO_NOSIGPIPE:
2799                 case SO_NO_DDP:
2800                 case SO_NO_OFFLOAD:
2801                         error = sooptcopyin(sopt, &optval, sizeof optval,
2802                             sizeof optval);
2803                         if (error)
2804                                 goto bad;
2805                         SOCK_LOCK(so);
2806                         if (optval)
2807                                 so->so_options |= sopt->sopt_name;
2808                         else
2809                                 so->so_options &= ~sopt->sopt_name;
2810                         SOCK_UNLOCK(so);
2811                         break;
2812
2813                 case SO_SETFIB:
2814                         error = sooptcopyin(sopt, &optval, sizeof optval,
2815                             sizeof optval);
2816                         if (error)
2817                                 goto bad;
2818
2819                         if (optval < 0 || optval >= rt_numfibs) {
2820                                 error = EINVAL;
2821                                 goto bad;
2822                         }
2823                         if (((so->so_proto->pr_domain->dom_family == PF_INET) ||
2824                            (so->so_proto->pr_domain->dom_family == PF_INET6) ||
2825                            (so->so_proto->pr_domain->dom_family == PF_ROUTE)))
2826                                 so->so_fibnum = optval;
2827                         else
2828                                 so->so_fibnum = 0;
2829                         break;
2830
2831                 case SO_USER_COOKIE:
2832                         error = sooptcopyin(sopt, &val32, sizeof val32,
2833                             sizeof val32);
2834                         if (error)
2835                                 goto bad;
2836                         so->so_user_cookie = val32;
2837                         break;
2838
2839                 case SO_SNDBUF:
2840                 case SO_RCVBUF:
2841                 case SO_SNDLOWAT:
2842                 case SO_RCVLOWAT:
2843                         error = sooptcopyin(sopt, &optval, sizeof optval,
2844                             sizeof optval);
2845                         if (error)
2846                                 goto bad;
2847
2848                         /*
2849                          * Values < 1 make no sense for any of these options,
2850                          * so disallow them.
2851                          */
2852                         if (optval < 1) {
2853                                 error = EINVAL;
2854                                 goto bad;
2855                         }
2856
2857                         error = sbsetopt(so, sopt->sopt_name, optval);
2858                         break;
2859
2860                 case SO_SNDTIMEO:
2861                 case SO_RCVTIMEO:
2862 #ifdef COMPAT_FREEBSD32
2863                         if (SV_CURPROC_FLAG(SV_ILP32)) {
2864                                 struct timeval32 tv32;
2865
2866                                 error = sooptcopyin(sopt, &tv32, sizeof tv32,
2867                                     sizeof tv32);
2868                                 CP(tv32, tv, tv_sec);
2869                                 CP(tv32, tv, tv_usec);
2870                         } else
2871 #endif
2872                                 error = sooptcopyin(sopt, &tv, sizeof tv,
2873                                     sizeof tv);
2874                         if (error)
2875                                 goto bad;
2876                         if (tv.tv_sec < 0 || tv.tv_usec < 0 ||
2877                             tv.tv_usec >= 1000000) {
2878                                 error = EDOM;
2879                                 goto bad;
2880                         }
2881                         if (tv.tv_sec > INT32_MAX)
2882                                 val = SBT_MAX;
2883                         else
2884                                 val = tvtosbt(tv);
2885                         switch (sopt->sopt_name) {
2886                         case SO_SNDTIMEO:
2887                                 so->so_snd.sb_timeo = val;
2888                                 break;
2889                         case SO_RCVTIMEO:
2890                                 so->so_rcv.sb_timeo = val;
2891                                 break;
2892                         }
2893                         break;
2894
2895                 case SO_LABEL:
2896 #ifdef MAC
2897                         error = sooptcopyin(sopt, &extmac, sizeof extmac,
2898                             sizeof extmac);
2899                         if (error)
2900                                 goto bad;
2901                         error = mac_setsockopt_label(sopt->sopt_td->td_ucred,
2902                             so, &extmac);
2903 #else
2904                         error = EOPNOTSUPP;
2905 #endif
2906                         break;
2907
2908                 case SO_TS_CLOCK:
2909                         error = sooptcopyin(sopt, &optval, sizeof optval,
2910                             sizeof optval);
2911                         if (error)
2912                                 goto bad;
2913                         if (optval < 0 || optval > SO_TS_CLOCK_MAX) {
2914                                 error = EINVAL;
2915                                 goto bad;
2916                         }
2917                         so->so_ts_clock = optval;
2918                         break;
2919
2920                 case SO_MAX_PACING_RATE:
2921                         error = sooptcopyin(sopt, &val32, sizeof(val32),
2922                             sizeof(val32));
2923                         if (error)
2924                                 goto bad;
2925                         so->so_max_pacing_rate = val32;
2926                         break;
2927
2928                 default:
2929                         if (V_socket_hhh[HHOOK_SOCKET_OPT]->hhh_nhooks > 0)
2930                                 error = hhook_run_socket(so, sopt,
2931                                     HHOOK_SOCKET_OPT);
2932                         else
2933                                 error = ENOPROTOOPT;
2934                         break;
2935                 }
2936                 if (error == 0 && so->so_proto->pr_ctloutput != NULL)
2937                         (void)(*so->so_proto->pr_ctloutput)(so, sopt);
2938         }
2939 bad:
2940         CURVNET_RESTORE();
2941         return (error);
2942 }
2943
2944 /*
2945  * Helper routine for getsockopt.
2946  */
2947 int
2948 sooptcopyout(struct sockopt *sopt, const void *buf, size_t len)
2949 {
2950         int     error;
2951         size_t  valsize;
2952
2953         error = 0;
2954
2955         /*
2956          * Documented get behavior is that we always return a value, possibly
2957          * truncated to fit in the user's buffer.  Traditional behavior is
2958          * that we always tell the user precisely how much we copied, rather
2959          * than something useful like the total amount we had available for
2960          * her.  Note that this interface is not idempotent; the entire
2961          * answer must be generated ahead of time.
2962          */
2963         valsize = min(len, sopt->sopt_valsize);
2964         sopt->sopt_valsize = valsize;
2965         if (sopt->sopt_val != NULL) {
2966                 if (sopt->sopt_td != NULL)
2967                         error = copyout(buf, sopt->sopt_val, valsize);
2968                 else
2969                         bcopy(buf, sopt->sopt_val, valsize);
2970         }
2971         return (error);
2972 }
2973
2974 int
2975 sogetopt(struct socket *so, struct sockopt *sopt)
2976 {
2977         int     error, optval;
2978         struct  linger l;
2979         struct  timeval tv;
2980 #ifdef MAC
2981         struct mac extmac;
2982 #endif
2983
2984         CURVNET_SET(so->so_vnet);
2985         error = 0;
2986         if (sopt->sopt_level != SOL_SOCKET) {
2987                 if (so->so_proto->pr_ctloutput != NULL)
2988                         error = (*so->so_proto->pr_ctloutput)(so, sopt);
2989                 else
2990                         error = ENOPROTOOPT;
2991                 CURVNET_RESTORE();
2992                 return (error);
2993         } else {
2994                 switch (sopt->sopt_name) {
2995                 case SO_ACCEPTFILTER:
2996                         error = accept_filt_getopt(so, sopt);
2997                         break;
2998
2999                 case SO_LINGER:
3000                         SOCK_LOCK(so);
3001                         l.l_onoff = so->so_options & SO_LINGER;
3002                         l.l_linger = so->so_linger;
3003                         SOCK_UNLOCK(so);
3004                         error = sooptcopyout(sopt, &l, sizeof l);
3005                         break;
3006
3007                 case SO_USELOOPBACK:
3008                 case SO_DONTROUTE:
3009                 case SO_DEBUG:
3010                 case SO_KEEPALIVE:
3011                 case SO_REUSEADDR:
3012                 case SO_REUSEPORT:
3013                 case SO_REUSEPORT_LB:
3014                 case SO_BROADCAST:
3015                 case SO_OOBINLINE:
3016                 case SO_ACCEPTCONN:
3017                 case SO_TIMESTAMP:
3018                 case SO_BINTIME:
3019                 case SO_NOSIGPIPE:
3020                         optval = so->so_options & sopt->sopt_name;
3021 integer:
3022                         error = sooptcopyout(sopt, &optval, sizeof optval);
3023                         break;
3024
3025                 case SO_DOMAIN:
3026                         optval = so->so_proto->pr_domain->dom_family;
3027                         goto integer;
3028
3029                 case SO_TYPE:
3030                         optval = so->so_type;
3031                         goto integer;
3032
3033                 case SO_PROTOCOL:
3034                         optval = so->so_proto->pr_protocol;
3035                         goto integer;
3036
3037                 case SO_ERROR:
3038                         SOCK_LOCK(so);
3039                         optval = so->so_error;
3040                         so->so_error = 0;
3041                         SOCK_UNLOCK(so);
3042                         goto integer;
3043
3044                 case SO_SNDBUF:
3045                         optval = SOLISTENING(so) ? so->sol_sbsnd_hiwat :
3046                             so->so_snd.sb_hiwat;
3047                         goto integer;
3048
3049                 case SO_RCVBUF:
3050                         optval = SOLISTENING(so) ? so->sol_sbrcv_hiwat :
3051                             so->so_rcv.sb_hiwat;
3052                         goto integer;
3053
3054                 case SO_SNDLOWAT:
3055                         optval = SOLISTENING(so) ? so->sol_sbsnd_lowat :
3056                             so->so_snd.sb_lowat;
3057                         goto integer;
3058
3059                 case SO_RCVLOWAT:
3060                         optval = SOLISTENING(so) ? so->sol_sbrcv_lowat :
3061                             so->so_rcv.sb_lowat;
3062                         goto integer;
3063
3064                 case SO_SNDTIMEO:
3065                 case SO_RCVTIMEO:
3066                         tv = sbttotv(sopt->sopt_name == SO_SNDTIMEO ?
3067                             so->so_snd.sb_timeo : so->so_rcv.sb_timeo);
3068 #ifdef COMPAT_FREEBSD32
3069                         if (SV_CURPROC_FLAG(SV_ILP32)) {
3070                                 struct timeval32 tv32;
3071
3072                                 CP(tv, tv32, tv_sec);
3073                                 CP(tv, tv32, tv_usec);
3074                                 error = sooptcopyout(sopt, &tv32, sizeof tv32);
3075                         } else
3076 #endif
3077                                 error = sooptcopyout(sopt, &tv, sizeof tv);
3078                         break;
3079
3080                 case SO_LABEL:
3081 #ifdef MAC
3082                         error = sooptcopyin(sopt, &extmac, sizeof(extmac),
3083                             sizeof(extmac));
3084                         if (error)
3085                                 goto bad;
3086                         error = mac_getsockopt_label(sopt->sopt_td->td_ucred,
3087                             so, &extmac);
3088                         if (error)
3089                                 goto bad;
3090                         error = sooptcopyout(sopt, &extmac, sizeof extmac);
3091 #else
3092                         error = EOPNOTSUPP;
3093 #endif
3094                         break;
3095
3096                 case SO_PEERLABEL:
3097 #ifdef MAC
3098                         error = sooptcopyin(sopt, &extmac, sizeof(extmac),
3099                             sizeof(extmac));
3100                         if (error)
3101                                 goto bad;
3102                         error = mac_getsockopt_peerlabel(
3103                             sopt->sopt_td->td_ucred, so, &extmac);
3104                         if (error)
3105                                 goto bad;
3106                         error = sooptcopyout(sopt, &extmac, sizeof extmac);
3107 #else
3108                         error = EOPNOTSUPP;
3109 #endif
3110                         break;
3111
3112                 case SO_LISTENQLIMIT:
3113                         optval = SOLISTENING(so) ? so->sol_qlimit : 0;
3114                         goto integer;
3115
3116                 case SO_LISTENQLEN:
3117                         optval = SOLISTENING(so) ? so->sol_qlen : 0;
3118                         goto integer;
3119
3120                 case SO_LISTENINCQLEN:
3121                         optval = SOLISTENING(so) ? so->sol_incqlen : 0;
3122                         goto integer;
3123
3124                 case SO_TS_CLOCK:
3125                         optval = so->so_ts_clock;
3126                         goto integer;
3127
3128                 case SO_MAX_PACING_RATE:
3129                         optval = so->so_max_pacing_rate;
3130                         goto integer;
3131
3132                 default:
3133                         if (V_socket_hhh[HHOOK_SOCKET_OPT]->hhh_nhooks > 0)
3134                                 error = hhook_run_socket(so, sopt,
3135                                     HHOOK_SOCKET_OPT);
3136                         else
3137                                 error = ENOPROTOOPT;
3138                         break;
3139                 }
3140         }
3141 #ifdef MAC
3142 bad:
3143 #endif
3144         CURVNET_RESTORE();
3145         return (error);
3146 }
3147
3148 int
3149 soopt_getm(struct sockopt *sopt, struct mbuf **mp)
3150 {
3151         struct mbuf *m, *m_prev;
3152         int sopt_size = sopt->sopt_valsize;
3153
3154         MGET(m, sopt->sopt_td ? M_WAITOK : M_NOWAIT, MT_DATA);
3155         if (m == NULL)
3156                 return ENOBUFS;
3157         if (sopt_size > MLEN) {
3158                 MCLGET(m, sopt->sopt_td ? M_WAITOK : M_NOWAIT);
3159                 if ((m->m_flags & M_EXT) == 0) {
3160                         m_free(m);
3161                         return ENOBUFS;
3162                 }
3163                 m->m_len = min(MCLBYTES, sopt_size);
3164         } else {
3165                 m->m_len = min(MLEN, sopt_size);
3166         }
3167         sopt_size -= m->m_len;
3168         *mp = m;
3169         m_prev = m;
3170
3171         while (sopt_size) {
3172                 MGET(m, sopt->sopt_td ? M_WAITOK : M_NOWAIT, MT_DATA);
3173                 if (m == NULL) {
3174                         m_freem(*mp);
3175                         return ENOBUFS;
3176                 }
3177                 if (sopt_size > MLEN) {
3178                         MCLGET(m, sopt->sopt_td != NULL ? M_WAITOK :
3179                             M_NOWAIT);
3180                         if ((m->m_flags & M_EXT) == 0) {
3181                                 m_freem(m);
3182                                 m_freem(*mp);
3183                                 return ENOBUFS;
3184                         }
3185                         m->m_len = min(MCLBYTES, sopt_size);
3186                 } else {
3187                         m->m_len = min(MLEN, sopt_size);
3188                 }
3189                 sopt_size -= m->m_len;
3190                 m_prev->m_next = m;
3191                 m_prev = m;
3192         }
3193         return (0);
3194 }
3195
3196 int
3197 soopt_mcopyin(struct sockopt *sopt, struct mbuf *m)
3198 {
3199         struct mbuf *m0 = m;
3200
3201         if (sopt->sopt_val == NULL)
3202                 return (0);
3203         while (m != NULL && sopt->sopt_valsize >= m->m_len) {
3204                 if (sopt->sopt_td != NULL) {
3205                         int error;
3206
3207                         error = copyin(sopt->sopt_val, mtod(m, char *),
3208                             m->m_len);
3209                         if (error != 0) {
3210                                 m_freem(m0);
3211                                 return(error);
3212                         }
3213                 } else
3214                         bcopy(sopt->sopt_val, mtod(m, char *), m->m_len);
3215                 sopt->sopt_valsize -= m->m_len;
3216                 sopt->sopt_val = (char *)sopt->sopt_val + m->m_len;
3217                 m = m->m_next;
3218         }
3219         if (m != NULL) /* should be allocated enoughly at ip6_sooptmcopyin() */
3220                 panic("ip6_sooptmcopyin");
3221         return (0);
3222 }
3223
3224 int
3225 soopt_mcopyout(struct sockopt *sopt, struct mbuf *m)
3226 {
3227         struct mbuf *m0 = m;
3228         size_t valsize = 0;
3229
3230         if (sopt->sopt_val == NULL)
3231                 return (0);
3232         while (m != NULL && sopt->sopt_valsize >= m->m_len) {
3233                 if (sopt->sopt_td != NULL) {
3234                         int error;
3235
3236                         error = copyout(mtod(m, char *), sopt->sopt_val,
3237                             m->m_len);
3238                         if (error != 0) {
3239                                 m_freem(m0);
3240                                 return(error);
3241                         }
3242                 } else
3243                         bcopy(mtod(m, char *), sopt->sopt_val, m->m_len);
3244                 sopt->sopt_valsize -= m->m_len;
3245                 sopt->sopt_val = (char *)sopt->sopt_val + m->m_len;
3246                 valsize += m->m_len;
3247                 m = m->m_next;
3248         }
3249         if (m != NULL) {
3250                 /* enough soopt buffer should be given from user-land */
3251                 m_freem(m0);
3252                 return(EINVAL);
3253         }
3254         sopt->sopt_valsize = valsize;
3255         return (0);
3256 }
3257
3258 /*
3259  * sohasoutofband(): protocol notifies socket layer of the arrival of new
3260  * out-of-band data, which will then notify socket consumers.
3261  */
3262 void
3263 sohasoutofband(struct socket *so)
3264 {
3265
3266         if (so->so_sigio != NULL)
3267                 pgsigio(&so->so_sigio, SIGURG, 0);
3268         selwakeuppri(&so->so_rdsel, PSOCK);
3269 }
3270
3271 int
3272 sopoll(struct socket *so, int events, struct ucred *active_cred,
3273     struct thread *td)
3274 {
3275
3276         /*
3277          * We do not need to set or assert curvnet as long as everyone uses
3278          * sopoll_generic().
3279          */
3280         return (so->so_proto->pr_usrreqs->pru_sopoll(so, events, active_cred,
3281             td));
3282 }
3283
3284 int
3285 sopoll_generic(struct socket *so, int events, struct ucred *active_cred,
3286     struct thread *td)
3287 {
3288         int revents;
3289
3290         SOCK_LOCK(so);
3291         if (SOLISTENING(so)) {
3292                 if (!(events & (POLLIN | POLLRDNORM)))
3293                         revents = 0;
3294                 else if (!TAILQ_EMPTY(&so->sol_comp))
3295                         revents = events & (POLLIN | POLLRDNORM);
3296                 else if ((events & POLLINIGNEOF) == 0 && so->so_error)
3297                         revents = (events & (POLLIN | POLLRDNORM)) | POLLHUP;
3298                 else {
3299                         selrecord(td, &so->so_rdsel);
3300                         revents = 0;
3301                 }
3302         } else {
3303                 revents = 0;
3304                 SOCKBUF_LOCK(&so->so_snd);
3305                 SOCKBUF_LOCK(&so->so_rcv);
3306                 if (events & (POLLIN | POLLRDNORM))
3307                         if (soreadabledata(so))
3308                                 revents |= events & (POLLIN | POLLRDNORM);
3309                 if (events & (POLLOUT | POLLWRNORM))
3310                         if (sowriteable(so))
3311                                 revents |= events & (POLLOUT | POLLWRNORM);
3312                 if (events & (POLLPRI | POLLRDBAND))
3313                         if (so->so_oobmark ||
3314                             (so->so_rcv.sb_state & SBS_RCVATMARK))
3315                                 revents |= events & (POLLPRI | POLLRDBAND);
3316                 if ((events & POLLINIGNEOF) == 0) {
3317                         if (so->so_rcv.sb_state & SBS_CANTRCVMORE) {
3318                                 revents |= events & (POLLIN | POLLRDNORM);
3319                                 if (so->so_snd.sb_state & SBS_CANTSENDMORE)
3320                                         revents |= POLLHUP;
3321                         }
3322                 }
3323                 if (revents == 0) {
3324                         if (events &
3325                             (POLLIN | POLLPRI | POLLRDNORM | POLLRDBAND)) {
3326                                 selrecord(td, &so->so_rdsel);
3327                                 so->so_rcv.sb_flags |= SB_SEL;
3328                         }
3329                         if (events & (POLLOUT | POLLWRNORM)) {
3330                                 selrecord(td, &so->so_wrsel);
3331                                 so->so_snd.sb_flags |= SB_SEL;
3332                         }
3333                 }
3334                 SOCKBUF_UNLOCK(&so->so_rcv);
3335                 SOCKBUF_UNLOCK(&so->so_snd);
3336         }
3337         SOCK_UNLOCK(so);
3338         return (revents);
3339 }
3340
3341 int
3342 soo_kqfilter(struct file *fp, struct knote *kn)
3343 {
3344         struct socket *so = kn->kn_fp->f_data;
3345         struct sockbuf *sb;
3346         struct knlist *knl;
3347
3348         switch (kn->kn_filter) {
3349         case EVFILT_READ:
3350                 kn->kn_fop = &soread_filtops;
3351                 knl = &so->so_rdsel.si_note;
3352                 sb = &so->so_rcv;
3353                 break;
3354         case EVFILT_WRITE:
3355                 kn->kn_fop = &sowrite_filtops;
3356                 knl = &so->so_wrsel.si_note;
3357                 sb = &so->so_snd;
3358                 break;
3359         case EVFILT_EMPTY:
3360                 kn->kn_fop = &soempty_filtops;
3361                 knl = &so->so_wrsel.si_note;
3362                 sb = &so->so_snd;
3363                 break;
3364         default:
3365                 return (EINVAL);
3366         }
3367
3368         SOCK_LOCK(so);
3369         if (SOLISTENING(so)) {
3370                 knlist_add(knl, kn, 1);
3371         } else {
3372                 SOCKBUF_LOCK(sb);
3373                 knlist_add(knl, kn, 1);
3374                 sb->sb_flags |= SB_KNOTE;
3375                 SOCKBUF_UNLOCK(sb);
3376         }
3377         SOCK_UNLOCK(so);
3378         return (0);
3379 }
3380
3381 /*
3382  * Some routines that return EOPNOTSUPP for entry points that are not
3383  * supported by a protocol.  Fill in as needed.
3384  */
3385 int
3386 pru_accept_notsupp(struct socket *so, struct sockaddr **nam)
3387 {
3388
3389         return EOPNOTSUPP;
3390 }
3391
3392 int
3393 pru_aio_queue_notsupp(struct socket *so, struct kaiocb *job)
3394 {
3395
3396         return EOPNOTSUPP;
3397 }
3398
3399 int
3400 pru_attach_notsupp(struct socket *so, int proto, struct thread *td)
3401 {
3402
3403         return EOPNOTSUPP;
3404 }
3405
3406 int
3407 pru_bind_notsupp(struct socket *so, struct sockaddr *nam, struct thread *td)
3408 {
3409
3410         return EOPNOTSUPP;
3411 }
3412
3413 int
3414 pru_bindat_notsupp(int fd, struct socket *so, struct sockaddr *nam,
3415     struct thread *td)
3416 {
3417
3418         return EOPNOTSUPP;
3419 }
3420
3421 int
3422 pru_connect_notsupp(struct socket *so, struct sockaddr *nam, struct thread *td)
3423 {
3424
3425         return EOPNOTSUPP;
3426 }
3427
3428 int
3429 pru_connectat_notsupp(int fd, struct socket *so, struct sockaddr *nam,
3430     struct thread *td)
3431 {
3432
3433         return EOPNOTSUPP;
3434 }
3435
3436 int
3437 pru_connect2_notsupp(struct socket *so1, struct socket *so2)
3438 {
3439
3440         return EOPNOTSUPP;
3441 }
3442
3443 int
3444 pru_control_notsupp(struct socket *so, u_long cmd, caddr_t data,
3445     struct ifnet *ifp, struct thread *td)
3446 {
3447
3448         return EOPNOTSUPP;
3449 }
3450
3451 int
3452 pru_disconnect_notsupp(struct socket *so)
3453 {
3454
3455         return EOPNOTSUPP;
3456 }
3457
3458 int
3459 pru_listen_notsupp(struct socket *so, int backlog, struct thread *td)
3460 {
3461
3462         return EOPNOTSUPP;
3463 }
3464
3465 int
3466 pru_peeraddr_notsupp(struct socket *so, struct sockaddr **nam)
3467 {
3468
3469         return EOPNOTSUPP;
3470 }
3471
3472 int
3473 pru_rcvd_notsupp(struct socket *so, int flags)
3474 {
3475
3476         return EOPNOTSUPP;
3477 }
3478
3479 int
3480 pru_rcvoob_notsupp(struct socket *so, struct mbuf *m, int flags)
3481 {
3482
3483         return EOPNOTSUPP;
3484 }
3485
3486 int
3487 pru_send_notsupp(struct socket *so, int flags, struct mbuf *m,
3488     struct sockaddr *addr, struct mbuf *control, struct thread *td)
3489 {
3490
3491         return EOPNOTSUPP;
3492 }
3493
3494 int
3495 pru_ready_notsupp(struct socket *so, struct mbuf *m, int count)
3496 {
3497
3498         return (EOPNOTSUPP);
3499 }
3500
3501 /*
3502  * This isn't really a ``null'' operation, but it's the default one and
3503  * doesn't do anything destructive.
3504  */
3505 int
3506 pru_sense_null(struct socket *so, struct stat *sb)
3507 {
3508
3509         sb->st_blksize = so->so_snd.sb_hiwat;
3510         return 0;
3511 }
3512
3513 int
3514 pru_shutdown_notsupp(struct socket *so)
3515 {
3516
3517         return EOPNOTSUPP;
3518 }
3519
3520 int
3521 pru_sockaddr_notsupp(struct socket *so, struct sockaddr **nam)
3522 {
3523
3524         return EOPNOTSUPP;
3525 }
3526
3527 int
3528 pru_sosend_notsupp(struct socket *so, struct sockaddr *addr, struct uio *uio,
3529     struct mbuf *top, struct mbuf *control, int flags, struct thread *td)
3530 {
3531
3532         return EOPNOTSUPP;
3533 }
3534
3535 int
3536 pru_soreceive_notsupp(struct socket *so, struct sockaddr **paddr,
3537     struct uio *uio, struct mbuf **mp0, struct mbuf **controlp, int *flagsp)
3538 {
3539
3540         return EOPNOTSUPP;
3541 }
3542
3543 int
3544 pru_sopoll_notsupp(struct socket *so, int events, struct ucred *cred,
3545     struct thread *td)
3546 {
3547
3548         return EOPNOTSUPP;
3549 }
3550
3551 static void
3552 filt_sordetach(struct knote *kn)
3553 {
3554         struct socket *so = kn->kn_fp->f_data;
3555
3556         so_rdknl_lock(so);
3557         knlist_remove(&so->so_rdsel.si_note, kn, 1);
3558         if (!SOLISTENING(so) && knlist_empty(&so->so_rdsel.si_note))
3559                 so->so_rcv.sb_flags &= ~SB_KNOTE;
3560         so_rdknl_unlock(so);
3561 }
3562
3563 /*ARGSUSED*/
3564 static int
3565 filt_soread(struct knote *kn, long hint)
3566 {
3567         struct socket *so;
3568
3569         so = kn->kn_fp->f_data;
3570
3571         if (SOLISTENING(so)) {
3572                 SOCK_LOCK_ASSERT(so);
3573                 kn->kn_data = so->sol_qlen;
3574                 if (so->so_error) {
3575                         kn->kn_flags |= EV_EOF;
3576                         kn->kn_fflags = so->so_error;
3577                         return (1);
3578                 }
3579                 return (!TAILQ_EMPTY(&so->sol_comp));
3580         }
3581
3582         SOCKBUF_LOCK_ASSERT(&so->so_rcv);
3583
3584         kn->kn_data = sbavail(&so->so_rcv) - so->so_rcv.sb_ctl;
3585         if (so->so_rcv.sb_state & SBS_CANTRCVMORE) {
3586                 kn->kn_flags |= EV_EOF;
3587                 kn->kn_fflags = so->so_error;
3588                 return (1);
3589         } else if (so->so_error)        /* temporary udp error */
3590                 return (1);
3591
3592         if (kn->kn_sfflags & NOTE_LOWAT) {
3593                 if (kn->kn_data >= kn->kn_sdata)
3594                         return (1);
3595         } else if (sbavail(&so->so_rcv) >= so->so_rcv.sb_lowat)
3596                 return (1);
3597
3598         /* This hook returning non-zero indicates an event, not error */
3599         return (hhook_run_socket(so, NULL, HHOOK_FILT_SOREAD));
3600 }
3601
3602 static void
3603 filt_sowdetach(struct knote *kn)
3604 {
3605         struct socket *so = kn->kn_fp->f_data;
3606
3607         so_wrknl_lock(so);
3608         knlist_remove(&so->so_wrsel.si_note, kn, 1);
3609         if (!SOLISTENING(so) && knlist_empty(&so->so_wrsel.si_note))
3610                 so->so_snd.sb_flags &= ~SB_KNOTE;
3611         so_wrknl_unlock(so);
3612 }
3613
3614 /*ARGSUSED*/
3615 static int
3616 filt_sowrite(struct knote *kn, long hint)
3617 {
3618         struct socket *so;
3619
3620         so = kn->kn_fp->f_data;
3621
3622         if (SOLISTENING(so))
3623                 return (0);
3624
3625         SOCKBUF_LOCK_ASSERT(&so->so_snd);
3626         kn->kn_data = sbspace(&so->so_snd);
3627
3628         hhook_run_socket(so, kn, HHOOK_FILT_SOWRITE);
3629
3630         if (so->so_snd.sb_state & SBS_CANTSENDMORE) {
3631                 kn->kn_flags |= EV_EOF;
3632                 kn->kn_fflags = so->so_error;
3633                 return (1);
3634         } else if (so->so_error)        /* temporary udp error */
3635                 return (1);
3636         else if (((so->so_state & SS_ISCONNECTED) == 0) &&
3637             (so->so_proto->pr_flags & PR_CONNREQUIRED))
3638                 return (0);
3639         else if (kn->kn_sfflags & NOTE_LOWAT)
3640                 return (kn->kn_data >= kn->kn_sdata);
3641         else
3642                 return (kn->kn_data >= so->so_snd.sb_lowat);
3643 }
3644
3645 static int
3646 filt_soempty(struct knote *kn, long hint)
3647 {
3648         struct socket *so;
3649
3650         so = kn->kn_fp->f_data;
3651
3652         if (SOLISTENING(so))
3653                 return (1);
3654
3655         SOCKBUF_LOCK_ASSERT(&so->so_snd);
3656         kn->kn_data = sbused(&so->so_snd);
3657
3658         if (kn->kn_data == 0)
3659                 return (1);
3660         else
3661                 return (0);
3662 }
3663
3664 int
3665 socheckuid(struct socket *so, uid_t uid)
3666 {
3667
3668         if (so == NULL)
3669                 return (EPERM);
3670         if (so->so_cred->cr_uid != uid)
3671                 return (EPERM);
3672         return (0);
3673 }
3674
3675 /*
3676  * These functions are used by protocols to notify the socket layer (and its
3677  * consumers) of state changes in the sockets driven by protocol-side events.
3678  */
3679
3680 /*
3681  * Procedures to manipulate state flags of socket and do appropriate wakeups.
3682  *
3683  * Normal sequence from the active (originating) side is that
3684  * soisconnecting() is called during processing of connect() call, resulting
3685  * in an eventual call to soisconnected() if/when the connection is
3686  * established.  When the connection is torn down soisdisconnecting() is
3687  * called during processing of disconnect() call, and soisdisconnected() is
3688  * called when the connection to the peer is totally severed.  The semantics
3689  * of these routines are such that connectionless protocols can call
3690  * soisconnected() and soisdisconnected() only, bypassing the in-progress
3691  * calls when setting up a ``connection'' takes no time.
3692  *
3693  * From the passive side, a socket is created with two queues of sockets:
3694  * so_incomp for connections in progress and so_comp for connections already
3695  * made and awaiting user acceptance.  As a protocol is preparing incoming
3696  * connections, it creates a socket structure queued on so_incomp by calling
3697  * sonewconn().  When the connection is established, soisconnected() is
3698  * called, and transfers the socket structure to so_comp, making it available
3699  * to accept().
3700  *
3701  * If a socket is closed with sockets on either so_incomp or so_comp, these
3702  * sockets are dropped.
3703  *
3704  * If higher-level protocols are implemented in the kernel, the wakeups done
3705  * here will sometimes cause software-interrupt process scheduling.
3706  */
3707 void
3708 soisconnecting(struct socket *so)
3709 {
3710
3711         SOCK_LOCK(so);
3712         so->so_state &= ~(SS_ISCONNECTED|SS_ISDISCONNECTING);
3713         so->so_state |= SS_ISCONNECTING;
3714         SOCK_UNLOCK(so);
3715 }
3716
3717 void
3718 soisconnected(struct socket *so)
3719 {
3720
3721         SOCK_LOCK(so);
3722         so->so_state &= ~(SS_ISCONNECTING|SS_ISDISCONNECTING|SS_ISCONFIRMING);
3723         so->so_state |= SS_ISCONNECTED;
3724
3725         if (so->so_qstate == SQ_INCOMP) {
3726                 struct socket *head = so->so_listen;
3727                 int ret;
3728
3729                 KASSERT(head, ("%s: so %p on incomp of NULL", __func__, so));
3730                 /*
3731                  * Promoting a socket from incomplete queue to complete, we
3732                  * need to go through reverse order of locking.  We first do
3733                  * trylock, and if that doesn't succeed, we go the hard way
3734                  * leaving a reference and rechecking consistency after proper
3735                  * locking.
3736                  */
3737                 if (__predict_false(SOLISTEN_TRYLOCK(head) == 0)) {
3738                         soref(head);
3739                         SOCK_UNLOCK(so);
3740                         SOLISTEN_LOCK(head);
3741                         SOCK_LOCK(so);
3742                         if (__predict_false(head != so->so_listen)) {
3743                                 /*
3744                                  * The socket went off the listen queue,
3745                                  * should be lost race to close(2) of sol.
3746                                  * The socket is about to soabort().
3747                                  */
3748                                 SOCK_UNLOCK(so);
3749                                 sorele(head);
3750                                 return;
3751                         }
3752                         /* Not the last one, as so holds a ref. */
3753                         refcount_release(&head->so_count);
3754                 }
3755 again:
3756                 if ((so->so_options & SO_ACCEPTFILTER) == 0) {
3757                         TAILQ_REMOVE(&head->sol_incomp, so, so_list);
3758                         head->sol_incqlen--;
3759                         TAILQ_INSERT_TAIL(&head->sol_comp, so, so_list);
3760                         head->sol_qlen++;
3761                         so->so_qstate = SQ_COMP;
3762                         SOCK_UNLOCK(so);
3763                         solisten_wakeup(head);  /* unlocks */
3764                 } else {
3765                         SOCKBUF_LOCK(&so->so_rcv);
3766                         soupcall_set(so, SO_RCV,
3767                             head->sol_accept_filter->accf_callback,
3768                             head->sol_accept_filter_arg);
3769                         so->so_options &= ~SO_ACCEPTFILTER;
3770                         ret = head->sol_accept_filter->accf_callback(so,
3771                             head->sol_accept_filter_arg, M_NOWAIT);
3772                         if (ret == SU_ISCONNECTED) {
3773                                 soupcall_clear(so, SO_RCV);
3774                                 SOCKBUF_UNLOCK(&so->so_rcv);
3775                                 goto again;
3776                         }
3777                         SOCKBUF_UNLOCK(&so->so_rcv);
3778                         SOCK_UNLOCK(so);
3779                         SOLISTEN_UNLOCK(head);
3780                 }
3781                 return;
3782         }
3783         SOCK_UNLOCK(so);
3784         wakeup(&so->so_timeo);
3785         sorwakeup(so);
3786         sowwakeup(so);
3787 }
3788
3789 void
3790 soisdisconnecting(struct socket *so)
3791 {
3792
3793         SOCK_LOCK(so);
3794         so->so_state &= ~SS_ISCONNECTING;
3795         so->so_state |= SS_ISDISCONNECTING;
3796
3797         if (!SOLISTENING(so)) {
3798                 SOCKBUF_LOCK(&so->so_rcv);
3799                 socantrcvmore_locked(so);
3800                 SOCKBUF_LOCK(&so->so_snd);
3801                 socantsendmore_locked(so);
3802         }
3803         SOCK_UNLOCK(so);
3804         wakeup(&so->so_timeo);
3805 }
3806
3807 void
3808 soisdisconnected(struct socket *so)
3809 {
3810
3811         SOCK_LOCK(so);
3812         so->so_state &= ~(SS_ISCONNECTING|SS_ISCONNECTED|SS_ISDISCONNECTING);
3813         so->so_state |= SS_ISDISCONNECTED;
3814
3815         if (!SOLISTENING(so)) {
3816                 SOCK_UNLOCK(so);
3817                 SOCKBUF_LOCK(&so->so_rcv);
3818                 socantrcvmore_locked(so);
3819                 SOCKBUF_LOCK(&so->so_snd);
3820                 sbdrop_locked(&so->so_snd, sbused(&so->so_snd));
3821                 socantsendmore_locked(so);
3822         } else
3823                 SOCK_UNLOCK(so);
3824         wakeup(&so->so_timeo);
3825 }
3826
3827 /*
3828  * Make a copy of a sockaddr in a malloced buffer of type M_SONAME.
3829  */
3830 struct sockaddr *
3831 sodupsockaddr(const struct sockaddr *sa, int mflags)
3832 {
3833         struct sockaddr *sa2;
3834
3835         sa2 = malloc(sa->sa_len, M_SONAME, mflags);
3836         if (sa2)
3837                 bcopy(sa, sa2, sa->sa_len);
3838         return sa2;
3839 }
3840
3841 /*
3842  * Register per-socket destructor.
3843  */
3844 void
3845 sodtor_set(struct socket *so, so_dtor_t *func)
3846 {
3847
3848         SOCK_LOCK_ASSERT(so);
3849         so->so_dtor = func;
3850 }
3851
3852 /*
3853  * Register per-socket buffer upcalls.
3854  */
3855 void
3856 soupcall_set(struct socket *so, int which, so_upcall_t func, void *arg)
3857 {
3858         struct sockbuf *sb;
3859
3860         KASSERT(!SOLISTENING(so), ("%s: so %p listening", __func__, so));
3861
3862         switch (which) {
3863         case SO_RCV:
3864                 sb = &so->so_rcv;
3865                 break;
3866         case SO_SND:
3867                 sb = &so->so_snd;
3868                 break;
3869         default:
3870                 panic("soupcall_set: bad which");
3871         }
3872         SOCKBUF_LOCK_ASSERT(sb);
3873         sb->sb_upcall = func;
3874         sb->sb_upcallarg = arg;
3875         sb->sb_flags |= SB_UPCALL;
3876 }
3877
3878 void
3879 soupcall_clear(struct socket *so, int which)
3880 {
3881         struct sockbuf *sb;
3882
3883         KASSERT(!SOLISTENING(so), ("%s: so %p listening", __func__, so));
3884
3885         switch (which) {
3886         case SO_RCV:
3887                 sb = &so->so_rcv;
3888                 break;
3889         case SO_SND:
3890                 sb = &so->so_snd;
3891                 break;
3892         default:
3893                 panic("soupcall_clear: bad which");
3894         }
3895         SOCKBUF_LOCK_ASSERT(sb);
3896         KASSERT(sb->sb_upcall != NULL,
3897             ("%s: so %p no upcall to clear", __func__, so));
3898         sb->sb_upcall = NULL;
3899         sb->sb_upcallarg = NULL;
3900         sb->sb_flags &= ~SB_UPCALL;
3901 }
3902
3903 void
3904 solisten_upcall_set(struct socket *so, so_upcall_t func, void *arg)
3905 {
3906
3907         SOLISTEN_LOCK_ASSERT(so);
3908         so->sol_upcall = func;
3909         so->sol_upcallarg = arg;
3910 }
3911
3912 static void
3913 so_rdknl_lock(void *arg)
3914 {
3915         struct socket *so = arg;
3916
3917         if (SOLISTENING(so))
3918                 SOCK_LOCK(so);
3919         else
3920                 SOCKBUF_LOCK(&so->so_rcv);
3921 }
3922
3923 static void
3924 so_rdknl_unlock(void *arg)
3925 {
3926         struct socket *so = arg;
3927
3928         if (SOLISTENING(so))
3929                 SOCK_UNLOCK(so);
3930         else
3931                 SOCKBUF_UNLOCK(&so->so_rcv);
3932 }
3933
3934 static void
3935 so_rdknl_assert_locked(void *arg)
3936 {
3937         struct socket *so = arg;
3938
3939         if (SOLISTENING(so))
3940                 SOCK_LOCK_ASSERT(so);
3941         else
3942                 SOCKBUF_LOCK_ASSERT(&so->so_rcv);
3943 }
3944
3945 static void
3946 so_rdknl_assert_unlocked(void *arg)
3947 {
3948         struct socket *so = arg;
3949
3950         if (SOLISTENING(so))
3951                 SOCK_UNLOCK_ASSERT(so);
3952         else
3953                 SOCKBUF_UNLOCK_ASSERT(&so->so_rcv);
3954 }
3955
3956 static void
3957 so_wrknl_lock(void *arg)
3958 {
3959         struct socket *so = arg;
3960
3961         if (SOLISTENING(so))
3962                 SOCK_LOCK(so);
3963         else
3964                 SOCKBUF_LOCK(&so->so_snd);
3965 }
3966
3967 static void
3968 so_wrknl_unlock(void *arg)
3969 {
3970         struct socket *so = arg;
3971
3972         if (SOLISTENING(so))
3973                 SOCK_UNLOCK(so);
3974         else
3975                 SOCKBUF_UNLOCK(&so->so_snd);
3976 }
3977
3978 static void
3979 so_wrknl_assert_locked(void *arg)
3980 {
3981         struct socket *so = arg;
3982
3983         if (SOLISTENING(so))
3984                 SOCK_LOCK_ASSERT(so);
3985         else
3986                 SOCKBUF_LOCK_ASSERT(&so->so_snd);
3987 }
3988
3989 static void
3990 so_wrknl_assert_unlocked(void *arg)
3991 {
3992         struct socket *so = arg;
3993
3994         if (SOLISTENING(so))
3995                 SOCK_UNLOCK_ASSERT(so);
3996         else
3997                 SOCKBUF_UNLOCK_ASSERT(&so->so_snd);
3998 }
3999
4000 /*
4001  * Create an external-format (``xsocket'') structure using the information in
4002  * the kernel-format socket structure pointed to by so.  This is done to
4003  * reduce the spew of irrelevant information over this interface, to isolate
4004  * user code from changes in the kernel structure, and potentially to provide
4005  * information-hiding if we decide that some of this information should be
4006  * hidden from users.
4007  */
4008 void
4009 sotoxsocket(struct socket *so, struct xsocket *xso)
4010 {
4011
4012         bzero(xso, sizeof(*xso));
4013         xso->xso_len = sizeof *xso;
4014         xso->xso_so = (uintptr_t)so;
4015         xso->so_type = so->so_type;
4016         xso->so_options = so->so_options;
4017         xso->so_linger = so->so_linger;
4018         xso->so_state = so->so_state;
4019         xso->so_pcb = (uintptr_t)so->so_pcb;
4020         xso->xso_protocol = so->so_proto->pr_protocol;
4021         xso->xso_family = so->so_proto->pr_domain->dom_family;
4022         xso->so_timeo = so->so_timeo;
4023         xso->so_error = so->so_error;
4024         xso->so_uid = so->so_cred->cr_uid;
4025         xso->so_pgid = so->so_sigio ? so->so_sigio->sio_pgid : 0;
4026         if (SOLISTENING(so)) {
4027                 xso->so_qlen = so->sol_qlen;
4028                 xso->so_incqlen = so->sol_incqlen;
4029                 xso->so_qlimit = so->sol_qlimit;
4030                 xso->so_oobmark = 0;
4031         } else {
4032                 xso->so_state |= so->so_qstate;
4033                 xso->so_qlen = xso->so_incqlen = xso->so_qlimit = 0;
4034                 xso->so_oobmark = so->so_oobmark;
4035                 sbtoxsockbuf(&so->so_snd, &xso->so_snd);
4036                 sbtoxsockbuf(&so->so_rcv, &xso->so_rcv);
4037         }
4038 }
4039
4040 struct sockbuf *
4041 so_sockbuf_rcv(struct socket *so)
4042 {
4043
4044         return (&so->so_rcv);
4045 }
4046
4047 struct sockbuf *
4048 so_sockbuf_snd(struct socket *so)
4049 {
4050
4051         return (&so->so_snd);
4052 }
4053
4054 int
4055 so_state_get(const struct socket *so)
4056 {
4057
4058         return (so->so_state);
4059 }
4060
4061 void
4062 so_state_set(struct socket *so, int val)
4063 {
4064
4065         so->so_state = val;
4066 }
4067
4068 int
4069 so_options_get(const struct socket *so)
4070 {
4071
4072         return (so->so_options);
4073 }
4074
4075 void
4076 so_options_set(struct socket *so, int val)
4077 {
4078
4079         so->so_options = val;
4080 }
4081
4082 int
4083 so_error_get(const struct socket *so)
4084 {
4085
4086         return (so->so_error);
4087 }
4088
4089 void
4090 so_error_set(struct socket *so, int val)
4091 {
4092
4093         so->so_error = val;
4094 }
4095
4096 int
4097 so_linger_get(const struct socket *so)
4098 {
4099
4100         return (so->so_linger);
4101 }
4102
4103 void
4104 so_linger_set(struct socket *so, int val)
4105 {
4106
4107         so->so_linger = val;
4108 }
4109
4110 struct protosw *
4111 so_protosw_get(const struct socket *so)
4112 {
4113
4114         return (so->so_proto);
4115 }
4116
4117 void
4118 so_protosw_set(struct socket *so, struct protosw *val)
4119 {
4120
4121         so->so_proto = val;
4122 }
4123
4124 void
4125 so_sorwakeup(struct socket *so)
4126 {
4127
4128         sorwakeup(so);
4129 }
4130
4131 void
4132 so_sowwakeup(struct socket *so)
4133 {
4134
4135         sowwakeup(so);
4136 }
4137
4138 void
4139 so_sorwakeup_locked(struct socket *so)
4140 {
4141
4142         sorwakeup_locked(so);
4143 }
4144
4145 void
4146 so_sowwakeup_locked(struct socket *so)
4147 {
4148
4149         sowwakeup_locked(so);
4150 }
4151
4152 void
4153 so_lock(struct socket *so)
4154 {
4155
4156         SOCK_LOCK(so);
4157 }
4158
4159 void
4160 so_unlock(struct socket *so)
4161 {
4162
4163         SOCK_UNLOCK(so);
4164 }