uipc_socket.c revision 1.286 1 1.286 christos /* $NetBSD: uipc_socket.c,v 1.286 2020/02/18 00:40:50 christos Exp $ */
2 1.64 thorpej
3 1.270 maxv /*
4 1.188 ad * Copyright (c) 2002, 2007, 2008, 2009 The NetBSD Foundation, Inc.
5 1.64 thorpej * All rights reserved.
6 1.64 thorpej *
7 1.64 thorpej * This code is derived from software contributed to The NetBSD Foundation
8 1.188 ad * by Jason R. Thorpe of Wasabi Systems, Inc, and by Andrew Doran.
9 1.64 thorpej *
10 1.64 thorpej * Redistribution and use in source and binary forms, with or without
11 1.64 thorpej * modification, are permitted provided that the following conditions
12 1.64 thorpej * are met:
13 1.64 thorpej * 1. Redistributions of source code must retain the above copyright
14 1.64 thorpej * notice, this list of conditions and the following disclaimer.
15 1.64 thorpej * 2. Redistributions in binary form must reproduce the above copyright
16 1.64 thorpej * notice, this list of conditions and the following disclaimer in the
17 1.64 thorpej * documentation and/or other materials provided with the distribution.
18 1.64 thorpej *
19 1.64 thorpej * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 1.64 thorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 1.64 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 1.64 thorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 1.64 thorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 1.64 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 1.64 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 1.64 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 1.64 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 1.64 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 1.64 thorpej * POSSIBILITY OF SUCH DAMAGE.
30 1.64 thorpej */
31 1.16 cgd
32 1.1 cgd /*
33 1.159 ad * Copyright (c) 2004 The FreeBSD Foundation
34 1.159 ad * Copyright (c) 2004 Robert Watson
35 1.15 mycroft * Copyright (c) 1982, 1986, 1988, 1990, 1993
36 1.15 mycroft * The Regents of the University of California. All rights reserved.
37 1.1 cgd *
38 1.1 cgd * Redistribution and use in source and binary forms, with or without
39 1.1 cgd * modification, are permitted provided that the following conditions
40 1.1 cgd * are met:
41 1.1 cgd * 1. Redistributions of source code must retain the above copyright
42 1.1 cgd * notice, this list of conditions and the following disclaimer.
43 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
44 1.1 cgd * notice, this list of conditions and the following disclaimer in the
45 1.1 cgd * documentation and/or other materials provided with the distribution.
46 1.85 agc * 3. Neither the name of the University nor the names of its contributors
47 1.1 cgd * may be used to endorse or promote products derived from this software
48 1.1 cgd * without specific prior written permission.
49 1.1 cgd *
50 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
51 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
52 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
53 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
54 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
55 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
56 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
57 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
58 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
59 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
60 1.1 cgd * SUCH DAMAGE.
61 1.1 cgd *
62 1.32 fvdl * @(#)uipc_socket.c 8.6 (Berkeley) 5/2/95
63 1.1 cgd */
64 1.59 lukem
65 1.222 rmind /*
66 1.222 rmind * Socket operation routines.
67 1.222 rmind *
68 1.222 rmind * These routines are called by the routines in sys_socket.c or from a
69 1.222 rmind * system process, and implement the semantics of socket operations by
70 1.222 rmind * switching out to the protocol specific routines.
71 1.222 rmind */
72 1.222 rmind
73 1.59 lukem #include <sys/cdefs.h>
74 1.286 christos __KERNEL_RCSID(0, "$NetBSD: uipc_socket.c,v 1.286 2020/02/18 00:40:50 christos Exp $");
75 1.64 thorpej
76 1.246 pooka #ifdef _KERNEL_OPT
77 1.179 christos #include "opt_compat_netbsd.h"
78 1.64 thorpej #include "opt_sock_counters.h"
79 1.64 thorpej #include "opt_sosend_loan.h"
80 1.81 martin #include "opt_mbuftrace.h"
81 1.84 ragge #include "opt_somaxkva.h"
82 1.167 ad #include "opt_multiprocessor.h" /* XXX */
83 1.247 rjs #include "opt_sctp.h"
84 1.246 pooka #endif
85 1.1 cgd
86 1.9 mycroft #include <sys/param.h>
87 1.9 mycroft #include <sys/systm.h>
88 1.9 mycroft #include <sys/proc.h>
89 1.9 mycroft #include <sys/file.h>
90 1.142 dyoung #include <sys/filedesc.h>
91 1.173 plunky #include <sys/kmem.h>
92 1.9 mycroft #include <sys/mbuf.h>
93 1.9 mycroft #include <sys/domain.h>
94 1.9 mycroft #include <sys/kernel.h>
95 1.9 mycroft #include <sys/protosw.h>
96 1.9 mycroft #include <sys/socket.h>
97 1.9 mycroft #include <sys/socketvar.h>
98 1.21 christos #include <sys/signalvar.h>
99 1.9 mycroft #include <sys/resourcevar.h>
100 1.174 pooka #include <sys/uidinfo.h>
101 1.72 jdolecek #include <sys/event.h>
102 1.89 christos #include <sys/poll.h>
103 1.118 elad #include <sys/kauth.h>
104 1.136 ad #include <sys/mutex.h>
105 1.136 ad #include <sys/condvar.h>
106 1.205 bouyer #include <sys/kthread.h>
107 1.275 pgoyette #include <sys/compat_stub.h>
108 1.37 thorpej
109 1.179 christos #include <compat/sys/time.h>
110 1.184 christos #include <compat/sys/socket.h>
111 1.179 christos
112 1.202 uebayasi #include <uvm/uvm_extern.h>
113 1.202 uebayasi #include <uvm/uvm_loan.h>
114 1.202 uebayasi #include <uvm/uvm_page.h>
115 1.64 thorpej
116 1.281 pgoyette #ifdef SCTP
117 1.281 pgoyette #include <netinet/sctp_route.h>
118 1.281 pgoyette #endif
119 1.281 pgoyette
120 1.77 thorpej MALLOC_DEFINE(M_SONAME, "soname", "socket name");
121 1.37 thorpej
122 1.142 dyoung extern const struct fileops socketops;
123 1.142 dyoung
124 1.266 christos static int sooptions;
125 1.54 lukem extern int somaxconn; /* patchable (XXX sysctl) */
126 1.54 lukem int somaxconn = SOMAXCONN;
127 1.160 ad kmutex_t *softnet_lock;
128 1.49 jonathan
129 1.64 thorpej #ifdef SOSEND_COUNTERS
130 1.64 thorpej #include <sys/device.h>
131 1.64 thorpej
132 1.113 thorpej static struct evcnt sosend_loan_big = EVCNT_INITIALIZER(EVCNT_TYPE_MISC,
133 1.64 thorpej NULL, "sosend", "loan big");
134 1.113 thorpej static struct evcnt sosend_copy_big = EVCNT_INITIALIZER(EVCNT_TYPE_MISC,
135 1.64 thorpej NULL, "sosend", "copy big");
136 1.113 thorpej static struct evcnt sosend_copy_small = EVCNT_INITIALIZER(EVCNT_TYPE_MISC,
137 1.64 thorpej NULL, "sosend", "copy small");
138 1.113 thorpej static struct evcnt sosend_kvalimit = EVCNT_INITIALIZER(EVCNT_TYPE_MISC,
139 1.64 thorpej NULL, "sosend", "kva limit");
140 1.64 thorpej
141 1.64 thorpej #define SOSEND_COUNTER_INCR(ev) (ev)->ev_count++
142 1.64 thorpej
143 1.101 matt EVCNT_ATTACH_STATIC(sosend_loan_big);
144 1.101 matt EVCNT_ATTACH_STATIC(sosend_copy_big);
145 1.101 matt EVCNT_ATTACH_STATIC(sosend_copy_small);
146 1.101 matt EVCNT_ATTACH_STATIC(sosend_kvalimit);
147 1.64 thorpej #else
148 1.64 thorpej
149 1.64 thorpej #define SOSEND_COUNTER_INCR(ev) /* nothing */
150 1.64 thorpej
151 1.64 thorpej #endif /* SOSEND_COUNTERS */
152 1.64 thorpej
153 1.167 ad #if defined(SOSEND_NO_LOAN) || defined(MULTIPROCESSOR)
154 1.121 yamt int sock_loan_thresh = -1;
155 1.71 thorpej #else
156 1.121 yamt int sock_loan_thresh = 4096;
157 1.65 thorpej #endif
158 1.64 thorpej
159 1.136 ad static kmutex_t so_pendfree_lock;
160 1.205 bouyer static struct mbuf *so_pendfree = NULL;
161 1.64 thorpej
162 1.84 ragge #ifndef SOMAXKVA
163 1.84 ragge #define SOMAXKVA (16 * 1024 * 1024)
164 1.84 ragge #endif
165 1.84 ragge int somaxkva = SOMAXKVA;
166 1.113 thorpej static int socurkva;
167 1.136 ad static kcondvar_t socurkva_cv;
168 1.64 thorpej
169 1.191 elad static kauth_listener_t socket_listener;
170 1.191 elad
171 1.64 thorpej #define SOCK_LOAN_CHUNK 65536
172 1.64 thorpej
173 1.205 bouyer static void sopendfree_thread(void *);
174 1.205 bouyer static kcondvar_t pendfree_thread_cv;
175 1.205 bouyer static lwp_t *sopendfree_lwp;
176 1.93 yamt
177 1.212 pooka static void sysctl_kern_socket_setup(void);
178 1.178 pooka static struct sysctllog *socket_sysctllog;
179 1.178 pooka
180 1.113 thorpej static vsize_t
181 1.129 yamt sokvareserve(struct socket *so, vsize_t len)
182 1.80 yamt {
183 1.98 christos int error;
184 1.80 yamt
185 1.136 ad mutex_enter(&so_pendfree_lock);
186 1.80 yamt while (socurkva + len > somaxkva) {
187 1.80 yamt SOSEND_COUNTER_INCR(&sosend_kvalimit);
188 1.136 ad error = cv_wait_sig(&socurkva_cv, &so_pendfree_lock);
189 1.98 christos if (error) {
190 1.98 christos len = 0;
191 1.98 christos break;
192 1.98 christos }
193 1.80 yamt }
194 1.93 yamt socurkva += len;
195 1.136 ad mutex_exit(&so_pendfree_lock);
196 1.98 christos return len;
197 1.95 yamt }
198 1.95 yamt
199 1.113 thorpej static void
200 1.95 yamt sokvaunreserve(vsize_t len)
201 1.95 yamt {
202 1.95 yamt
203 1.136 ad mutex_enter(&so_pendfree_lock);
204 1.95 yamt socurkva -= len;
205 1.136 ad cv_broadcast(&socurkva_cv);
206 1.136 ad mutex_exit(&so_pendfree_lock);
207 1.95 yamt }
208 1.95 yamt
209 1.95 yamt /*
210 1.95 yamt * sokvaalloc: allocate kva for loan.
211 1.95 yamt */
212 1.95 yamt vaddr_t
213 1.209 matt sokvaalloc(vaddr_t sva, vsize_t len, struct socket *so)
214 1.95 yamt {
215 1.95 yamt vaddr_t lva;
216 1.95 yamt
217 1.98 christos if (sokvareserve(so, len) == 0)
218 1.98 christos return 0;
219 1.93 yamt
220 1.209 matt lva = uvm_km_alloc(kernel_map, len, atop(sva) & uvmexp.colormask,
221 1.209 matt UVM_KMF_COLORMATCH | UVM_KMF_VAONLY | UVM_KMF_WAITVA);
222 1.95 yamt if (lva == 0) {
223 1.95 yamt sokvaunreserve(len);
224 1.270 maxv return 0;
225 1.95 yamt }
226 1.80 yamt
227 1.80 yamt return lva;
228 1.80 yamt }
229 1.80 yamt
230 1.93 yamt /*
231 1.93 yamt * sokvafree: free kva for loan.
232 1.93 yamt */
233 1.80 yamt void
234 1.80 yamt sokvafree(vaddr_t sva, vsize_t len)
235 1.80 yamt {
236 1.93 yamt
237 1.109 yamt uvm_km_free(kernel_map, sva, len, UVM_KMF_VAONLY);
238 1.95 yamt sokvaunreserve(len);
239 1.80 yamt }
240 1.80 yamt
241 1.64 thorpej static void
242 1.134 christos sodoloanfree(struct vm_page **pgs, void *buf, size_t size)
243 1.64 thorpej {
244 1.156 yamt vaddr_t sva, eva;
245 1.64 thorpej vsize_t len;
246 1.156 yamt int npgs;
247 1.156 yamt
248 1.156 yamt KASSERT(pgs != NULL);
249 1.64 thorpej
250 1.64 thorpej eva = round_page((vaddr_t) buf + size);
251 1.64 thorpej sva = trunc_page((vaddr_t) buf);
252 1.64 thorpej len = eva - sva;
253 1.64 thorpej npgs = len >> PAGE_SHIFT;
254 1.64 thorpej
255 1.64 thorpej pmap_kremove(sva, len);
256 1.64 thorpej pmap_update(pmap_kernel());
257 1.64 thorpej uvm_unloan(pgs, npgs, UVM_LOAN_TOPAGE);
258 1.80 yamt sokvafree(sva, len);
259 1.64 thorpej }
260 1.64 thorpej
261 1.93 yamt /*
262 1.270 maxv * sopendfree_thread: free mbufs on "pendfree" list. Unlock and relock
263 1.270 maxv * so_pendfree_lock when freeing mbufs.
264 1.93 yamt */
265 1.205 bouyer static void
266 1.205 bouyer sopendfree_thread(void *v)
267 1.93 yamt {
268 1.137 ad struct mbuf *m, *next;
269 1.205 bouyer size_t rv;
270 1.93 yamt
271 1.205 bouyer mutex_enter(&so_pendfree_lock);
272 1.64 thorpej
273 1.205 bouyer for (;;) {
274 1.205 bouyer rv = 0;
275 1.205 bouyer while (so_pendfree != NULL) {
276 1.205 bouyer m = so_pendfree;
277 1.205 bouyer so_pendfree = NULL;
278 1.205 bouyer mutex_exit(&so_pendfree_lock);
279 1.205 bouyer
280 1.205 bouyer for (; m != NULL; m = next) {
281 1.205 bouyer next = m->m_next;
282 1.253 ryo KASSERT((~m->m_flags & (M_EXT|M_EXT_PAGES)) ==
283 1.253 ryo 0);
284 1.205 bouyer KASSERT(m->m_ext.ext_refcnt == 0);
285 1.205 bouyer
286 1.205 bouyer rv += m->m_ext.ext_size;
287 1.205 bouyer sodoloanfree(m->m_ext.ext_pgs, m->m_ext.ext_buf,
288 1.205 bouyer m->m_ext.ext_size);
289 1.205 bouyer pool_cache_put(mb_cache, m);
290 1.205 bouyer }
291 1.93 yamt
292 1.205 bouyer mutex_enter(&so_pendfree_lock);
293 1.93 yamt }
294 1.205 bouyer if (rv)
295 1.205 bouyer cv_broadcast(&socurkva_cv);
296 1.205 bouyer cv_wait(&pendfree_thread_cv, &so_pendfree_lock);
297 1.64 thorpej }
298 1.205 bouyer panic("sopendfree_thread");
299 1.205 bouyer /* NOTREACHED */
300 1.64 thorpej }
301 1.64 thorpej
302 1.80 yamt void
303 1.134 christos soloanfree(struct mbuf *m, void *buf, size_t size, void *arg)
304 1.64 thorpej {
305 1.64 thorpej
306 1.156 yamt KASSERT(m != NULL);
307 1.64 thorpej
308 1.93 yamt /*
309 1.93 yamt * postpone freeing mbuf.
310 1.93 yamt *
311 1.93 yamt * we can't do it in interrupt context
312 1.93 yamt * because we need to put kva back to kernel_map.
313 1.93 yamt */
314 1.93 yamt
315 1.136 ad mutex_enter(&so_pendfree_lock);
316 1.92 yamt m->m_next = so_pendfree;
317 1.92 yamt so_pendfree = m;
318 1.205 bouyer cv_signal(&pendfree_thread_cv);
319 1.136 ad mutex_exit(&so_pendfree_lock);
320 1.64 thorpej }
321 1.64 thorpej
322 1.64 thorpej static long
323 1.64 thorpej sosend_loan(struct socket *so, struct uio *uio, struct mbuf *m, long space)
324 1.64 thorpej {
325 1.64 thorpej struct iovec *iov = uio->uio_iov;
326 1.64 thorpej vaddr_t sva, eva;
327 1.64 thorpej vsize_t len;
328 1.156 yamt vaddr_t lva;
329 1.156 yamt int npgs, error;
330 1.156 yamt vaddr_t va;
331 1.156 yamt int i;
332 1.64 thorpej
333 1.116 yamt if (VMSPACE_IS_KERNEL_P(uio->uio_vmspace))
334 1.270 maxv return 0;
335 1.64 thorpej
336 1.64 thorpej if (iov->iov_len < (size_t) space)
337 1.64 thorpej space = iov->iov_len;
338 1.64 thorpej if (space > SOCK_LOAN_CHUNK)
339 1.64 thorpej space = SOCK_LOAN_CHUNK;
340 1.64 thorpej
341 1.64 thorpej eva = round_page((vaddr_t) iov->iov_base + space);
342 1.64 thorpej sva = trunc_page((vaddr_t) iov->iov_base);
343 1.64 thorpej len = eva - sva;
344 1.64 thorpej npgs = len >> PAGE_SHIFT;
345 1.64 thorpej
346 1.79 thorpej KASSERT(npgs <= M_EXT_MAXPAGES);
347 1.79 thorpej
348 1.209 matt lva = sokvaalloc(sva, len, so);
349 1.64 thorpej if (lva == 0)
350 1.252 uwe return 0;
351 1.64 thorpej
352 1.116 yamt error = uvm_loan(&uio->uio_vmspace->vm_map, sva, len,
353 1.79 thorpej m->m_ext.ext_pgs, UVM_LOAN_TOPAGE);
354 1.64 thorpej if (error) {
355 1.80 yamt sokvafree(lva, len);
356 1.270 maxv return 0;
357 1.64 thorpej }
358 1.64 thorpej
359 1.64 thorpej for (i = 0, va = lva; i < npgs; i++, va += PAGE_SIZE)
360 1.79 thorpej pmap_kenter_pa(va, VM_PAGE_TO_PHYS(m->m_ext.ext_pgs[i]),
361 1.194 cegger VM_PROT_READ, 0);
362 1.64 thorpej pmap_update(pmap_kernel());
363 1.64 thorpej
364 1.64 thorpej lva += (vaddr_t) iov->iov_base & PAGE_MASK;
365 1.64 thorpej
366 1.134 christos MEXTADD(m, (void *) lva, space, M_MBUF, soloanfree, so);
367 1.79 thorpej m->m_flags |= M_EXT_PAGES | M_EXT_ROMAP;
368 1.64 thorpej
369 1.64 thorpej uio->uio_resid -= space;
370 1.64 thorpej /* uio_offset not updated, not set/used for write(2) */
371 1.134 christos uio->uio_iov->iov_base = (char *)uio->uio_iov->iov_base + space;
372 1.64 thorpej uio->uio_iov->iov_len -= space;
373 1.64 thorpej if (uio->uio_iov->iov_len == 0) {
374 1.64 thorpej uio->uio_iov++;
375 1.64 thorpej uio->uio_iovcnt--;
376 1.64 thorpej }
377 1.64 thorpej
378 1.270 maxv return space;
379 1.64 thorpej }
380 1.64 thorpej
381 1.191 elad static int
382 1.191 elad socket_listener_cb(kauth_cred_t cred, kauth_action_t action, void *cookie,
383 1.191 elad void *arg0, void *arg1, void *arg2, void *arg3)
384 1.191 elad {
385 1.191 elad int result;
386 1.191 elad enum kauth_network_req req;
387 1.191 elad
388 1.191 elad result = KAUTH_RESULT_DEFER;
389 1.191 elad req = (enum kauth_network_req)arg0;
390 1.191 elad
391 1.193 elad if ((action != KAUTH_NETWORK_SOCKET) &&
392 1.193 elad (action != KAUTH_NETWORK_BIND))
393 1.191 elad return result;
394 1.191 elad
395 1.191 elad switch (req) {
396 1.193 elad case KAUTH_REQ_NETWORK_BIND_PORT:
397 1.193 elad result = KAUTH_RESULT_ALLOW;
398 1.193 elad break;
399 1.193 elad
400 1.191 elad case KAUTH_REQ_NETWORK_SOCKET_DROP: {
401 1.191 elad /* Normal users can only drop their own connections. */
402 1.191 elad struct socket *so = (struct socket *)arg1;
403 1.191 elad
404 1.220 christos if (so->so_cred && proc_uidmatch(cred, so->so_cred) == 0)
405 1.191 elad result = KAUTH_RESULT_ALLOW;
406 1.191 elad
407 1.191 elad break;
408 1.191 elad }
409 1.191 elad
410 1.191 elad case KAUTH_REQ_NETWORK_SOCKET_OPEN:
411 1.191 elad /* We allow "raw" routing/bluetooth sockets to anyone. */
412 1.254 christos switch ((u_long)arg1) {
413 1.254 christos case PF_ROUTE:
414 1.254 christos case PF_OROUTE:
415 1.254 christos case PF_BLUETOOTH:
416 1.255 bouyer case PF_CAN:
417 1.191 elad result = KAUTH_RESULT_ALLOW;
418 1.254 christos break;
419 1.254 christos default:
420 1.191 elad /* Privileged, let secmodel handle this. */
421 1.191 elad if ((u_long)arg2 == SOCK_RAW)
422 1.191 elad break;
423 1.254 christos result = KAUTH_RESULT_ALLOW;
424 1.254 christos break;
425 1.191 elad }
426 1.191 elad break;
427 1.191 elad
428 1.192 elad case KAUTH_REQ_NETWORK_SOCKET_CANSEE:
429 1.192 elad result = KAUTH_RESULT_ALLOW;
430 1.192 elad
431 1.192 elad break;
432 1.192 elad
433 1.191 elad default:
434 1.191 elad break;
435 1.191 elad }
436 1.191 elad
437 1.191 elad return result;
438 1.191 elad }
439 1.191 elad
440 1.119 yamt void
441 1.119 yamt soinit(void)
442 1.119 yamt {
443 1.119 yamt
444 1.212 pooka sysctl_kern_socket_setup();
445 1.178 pooka
446 1.281 pgoyette #ifdef SCTP
447 1.281 pgoyette /* Update the SCTP function hooks if necessary*/
448 1.281 pgoyette
449 1.281 pgoyette vec_sctp_add_ip_address = sctp_add_ip_address;
450 1.281 pgoyette vec_sctp_delete_ip_address = sctp_delete_ip_address;
451 1.281 pgoyette #endif
452 1.281 pgoyette
453 1.148 ad mutex_init(&so_pendfree_lock, MUTEX_DEFAULT, IPL_VM);
454 1.160 ad softnet_lock = mutex_obj_alloc(MUTEX_DEFAULT, IPL_NONE);
455 1.136 ad cv_init(&socurkva_cv, "sokva");
456 1.205 bouyer cv_init(&pendfree_thread_cv, "sopendfr");
457 1.166 ad soinit2();
458 1.136 ad
459 1.119 yamt /* Set the initial adjusted socket buffer size. */
460 1.119 yamt if (sb_max_set(sb_max))
461 1.119 yamt panic("bad initial sb_max value: %lu", sb_max);
462 1.119 yamt
463 1.191 elad socket_listener = kauth_listen_scope(KAUTH_SCOPE_NETWORK,
464 1.191 elad socket_listener_cb, NULL);
465 1.119 yamt }
466 1.119 yamt
467 1.205 bouyer void
468 1.205 bouyer soinit1(void)
469 1.205 bouyer {
470 1.205 bouyer int error = kthread_create(PRI_NONE, KTHREAD_MPSAFE, NULL,
471 1.205 bouyer sopendfree_thread, NULL, &sopendfree_lwp, "sopendfree");
472 1.205 bouyer if (error)
473 1.205 bouyer panic("soinit1 %d", error);
474 1.205 bouyer }
475 1.205 bouyer
476 1.1 cgd /*
477 1.222 rmind * socreate: create a new socket of the specified type and the protocol.
478 1.222 rmind *
479 1.222 rmind * => Caller may specify another socket for lock sharing (must not be held).
480 1.222 rmind * => Returns the new socket without lock held.
481 1.224 rmind */
482 1.3 andrew int
483 1.160 ad socreate(int dom, struct socket **aso, int type, int proto, struct lwp *l,
484 1.270 maxv struct socket *lockso)
485 1.1 cgd {
486 1.270 maxv const struct protosw *prp;
487 1.270 maxv struct socket *so;
488 1.270 maxv uid_t uid;
489 1.270 maxv int error;
490 1.270 maxv kmutex_t *lock;
491 1.1 cgd
492 1.132 elad error = kauth_authorize_network(l->l_cred, KAUTH_NETWORK_SOCKET,
493 1.132 elad KAUTH_REQ_NETWORK_SOCKET_OPEN, KAUTH_ARG(dom), KAUTH_ARG(type),
494 1.132 elad KAUTH_ARG(proto));
495 1.140 dyoung if (error != 0)
496 1.140 dyoung return error;
497 1.127 elad
498 1.1 cgd if (proto)
499 1.1 cgd prp = pffindproto(dom, proto, type);
500 1.1 cgd else
501 1.1 cgd prp = pffindtype(dom, type);
502 1.140 dyoung if (prp == NULL) {
503 1.120 ginsbach /* no support for domain */
504 1.120 ginsbach if (pffinddomain(dom) == 0)
505 1.140 dyoung return EAFNOSUPPORT;
506 1.120 ginsbach /* no support for socket type */
507 1.120 ginsbach if (proto == 0 && type != 0)
508 1.140 dyoung return EPROTOTYPE;
509 1.140 dyoung return EPROTONOSUPPORT;
510 1.120 ginsbach }
511 1.223 rmind if (prp->pr_usrreqs == NULL)
512 1.140 dyoung return EPROTONOSUPPORT;
513 1.1 cgd if (prp->pr_type != type)
514 1.140 dyoung return EPROTOTYPE;
515 1.160 ad
516 1.160 ad so = soget(true);
517 1.1 cgd so->so_type = type;
518 1.1 cgd so->so_proto = prp;
519 1.33 matt so->so_send = sosend;
520 1.33 matt so->so_receive = soreceive;
521 1.266 christos so->so_options = sooptions;
522 1.78 matt #ifdef MBUFTRACE
523 1.78 matt so->so_rcv.sb_mowner = &prp->pr_domain->dom_mowner;
524 1.78 matt so->so_snd.sb_mowner = &prp->pr_domain->dom_mowner;
525 1.78 matt so->so_mowner = &prp->pr_domain->dom_mowner;
526 1.78 matt #endif
527 1.138 rmind uid = kauth_cred_geteuid(l->l_cred);
528 1.115 yamt so->so_uidinfo = uid_find(uid);
529 1.168 yamt so->so_cpid = l->l_proc->p_pid;
530 1.224 rmind
531 1.224 rmind /*
532 1.224 rmind * Lock assigned and taken during PCB attach, unless we share
533 1.224 rmind * the lock with another socket, e.g. socketpair(2) case.
534 1.224 rmind */
535 1.224 rmind if (lockso) {
536 1.160 ad lock = lockso->so_lock;
537 1.160 ad so->so_lock = lock;
538 1.160 ad mutex_obj_hold(lock);
539 1.160 ad mutex_enter(lock);
540 1.160 ad }
541 1.224 rmind
542 1.224 rmind /* Attach the PCB (returns with the socket lock held). */
543 1.224 rmind error = (*prp->pr_usrreqs->pr_attach)(so, proto);
544 1.160 ad KASSERT(solocked(so));
545 1.224 rmind
546 1.224 rmind if (error) {
547 1.222 rmind KASSERT(so->so_pcb == NULL);
548 1.1 cgd so->so_state |= SS_NOFDREF;
549 1.1 cgd sofree(so);
550 1.140 dyoung return error;
551 1.1 cgd }
552 1.198 elad so->so_cred = kauth_cred_dup(l->l_cred);
553 1.160 ad sounlock(so);
554 1.224 rmind
555 1.1 cgd *aso = so;
556 1.140 dyoung return 0;
557 1.1 cgd }
558 1.1 cgd
559 1.222 rmind /*
560 1.222 rmind * fsocreate: create a socket and a file descriptor associated with it.
561 1.222 rmind *
562 1.222 rmind * => On success, write file descriptor to fdout and return zero.
563 1.222 rmind * => On failure, return non-zero; *fdout will be undefined.
564 1.142 dyoung */
565 1.142 dyoung int
566 1.222 rmind fsocreate(int domain, struct socket **sop, int type, int proto, int *fdout)
567 1.142 dyoung {
568 1.222 rmind lwp_t *l = curlwp;
569 1.222 rmind int error, fd, flags;
570 1.222 rmind struct socket *so;
571 1.222 rmind struct file *fp;
572 1.142 dyoung
573 1.222 rmind if ((error = fd_allocfile(&fp, &fd)) != 0) {
574 1.204 christos return error;
575 1.222 rmind }
576 1.222 rmind flags = type & SOCK_FLAGS_MASK;
577 1.204 christos fd_set_exclose(l, fd, (flags & SOCK_CLOEXEC) != 0);
578 1.207 christos fp->f_flag = FREAD|FWRITE|((flags & SOCK_NONBLOCK) ? FNONBLOCK : 0)|
579 1.207 christos ((flags & SOCK_NOSIGPIPE) ? FNOSIGPIPE : 0);
580 1.142 dyoung fp->f_type = DTYPE_SOCKET;
581 1.142 dyoung fp->f_ops = &socketops;
582 1.222 rmind
583 1.222 rmind type &= ~SOCK_FLAGS_MASK;
584 1.222 rmind error = socreate(domain, &so, type, proto, l, NULL);
585 1.222 rmind if (error) {
586 1.155 ad fd_abort(curproc, fp, fd);
587 1.222 rmind return error;
588 1.222 rmind }
589 1.222 rmind if (flags & SOCK_NONBLOCK) {
590 1.222 rmind so->so_state |= SS_NBIO;
591 1.222 rmind }
592 1.235 matt fp->f_socket = so;
593 1.222 rmind fd_affix(curproc, fp, fd);
594 1.222 rmind
595 1.222 rmind if (sop != NULL) {
596 1.222 rmind *sop = so;
597 1.142 dyoung }
598 1.222 rmind *fdout = fd;
599 1.142 dyoung return error;
600 1.142 dyoung }
601 1.142 dyoung
602 1.3 andrew int
603 1.190 dyoung sofamily(const struct socket *so)
604 1.190 dyoung {
605 1.190 dyoung const struct protosw *pr;
606 1.190 dyoung const struct domain *dom;
607 1.190 dyoung
608 1.190 dyoung if ((pr = so->so_proto) == NULL)
609 1.190 dyoung return AF_UNSPEC;
610 1.190 dyoung if ((dom = pr->pr_domain) == NULL)
611 1.190 dyoung return AF_UNSPEC;
612 1.190 dyoung return dom->dom_family;
613 1.190 dyoung }
614 1.190 dyoung
615 1.190 dyoung int
616 1.236 rtr sobind(struct socket *so, struct sockaddr *nam, struct lwp *l)
617 1.1 cgd {
618 1.270 maxv int error;
619 1.1 cgd
620 1.160 ad solock(so);
621 1.237 rtr if (nam->sa_family != so->so_proto->pr_domain->dom_family) {
622 1.237 rtr sounlock(so);
623 1.238 rtr return EAFNOSUPPORT;
624 1.237 rtr }
625 1.231 rtr error = (*so->so_proto->pr_usrreqs->pr_bind)(so, nam, l);
626 1.160 ad sounlock(so);
627 1.140 dyoung return error;
628 1.1 cgd }
629 1.1 cgd
630 1.3 andrew int
631 1.150 elad solisten(struct socket *so, int backlog, struct lwp *l)
632 1.1 cgd {
633 1.270 maxv int error;
634 1.270 maxv short oldopt, oldqlimit;
635 1.1 cgd
636 1.160 ad solock(so);
637 1.253 ryo if ((so->so_state & (SS_ISCONNECTED | SS_ISCONNECTING |
638 1.163 ad SS_ISDISCONNECTING)) != 0) {
639 1.222 rmind sounlock(so);
640 1.222 rmind return EINVAL;
641 1.163 ad }
642 1.247 rjs oldopt = so->so_options;
643 1.247 rjs oldqlimit = so->so_qlimit;
644 1.247 rjs if (TAILQ_EMPTY(&so->so_q))
645 1.247 rjs so->so_options |= SO_ACCEPTCONN;
646 1.247 rjs if (backlog < 0)
647 1.247 rjs backlog = 0;
648 1.265 riastrad so->so_qlimit = uimin(backlog, somaxconn);
649 1.247 rjs
650 1.231 rtr error = (*so->so_proto->pr_usrreqs->pr_listen)(so, l);
651 1.140 dyoung if (error != 0) {
652 1.247 rjs so->so_options = oldopt;
653 1.247 rjs so->so_qlimit = oldqlimit;
654 1.160 ad sounlock(so);
655 1.140 dyoung return error;
656 1.1 cgd }
657 1.160 ad sounlock(so);
658 1.140 dyoung return 0;
659 1.1 cgd }
660 1.1 cgd
661 1.21 christos void
662 1.54 lukem sofree(struct socket *so)
663 1.1 cgd {
664 1.161 ad u_int refs;
665 1.1 cgd
666 1.160 ad KASSERT(solocked(so));
667 1.160 ad
668 1.160 ad if (so->so_pcb || (so->so_state & SS_NOFDREF) == 0) {
669 1.160 ad sounlock(so);
670 1.1 cgd return;
671 1.160 ad }
672 1.43 mycroft if (so->so_head) {
673 1.43 mycroft /*
674 1.43 mycroft * We must not decommission a socket that's on the accept(2)
675 1.43 mycroft * queue. If we do, then accept(2) may hang after select(2)
676 1.43 mycroft * indicated that the listening socket was ready.
677 1.43 mycroft */
678 1.160 ad if (!soqremque(so, 0)) {
679 1.160 ad sounlock(so);
680 1.43 mycroft return;
681 1.160 ad }
682 1.43 mycroft }
683 1.98 christos if (so->so_rcv.sb_hiwat)
684 1.110 christos (void)chgsbsize(so->so_uidinfo, &so->so_rcv.sb_hiwat, 0,
685 1.98 christos RLIM_INFINITY);
686 1.98 christos if (so->so_snd.sb_hiwat)
687 1.110 christos (void)chgsbsize(so->so_uidinfo, &so->so_snd.sb_hiwat, 0,
688 1.98 christos RLIM_INFINITY);
689 1.98 christos sbrelease(&so->so_snd, so);
690 1.160 ad KASSERT(!cv_has_waiters(&so->so_cv));
691 1.160 ad KASSERT(!cv_has_waiters(&so->so_rcv.sb_cv));
692 1.160 ad KASSERT(!cv_has_waiters(&so->so_snd.sb_cv));
693 1.1 cgd sorflush(so);
694 1.161 ad refs = so->so_aborting; /* XXX */
695 1.177 ad /* Remove acccept filter if one is present. */
696 1.170 tls if (so->so_accf != NULL)
697 1.177 ad (void)accept_filt_clear(so);
698 1.160 ad sounlock(so);
699 1.161 ad if (refs == 0) /* XXX */
700 1.161 ad soput(so);
701 1.1 cgd }
702 1.1 cgd
703 1.1 cgd /*
704 1.222 rmind * soclose: close a socket on last file table reference removal.
705 1.222 rmind * Initiate disconnect if connected. Free socket when disconnect complete.
706 1.1 cgd */
707 1.3 andrew int
708 1.54 lukem soclose(struct socket *so)
709 1.1 cgd {
710 1.222 rmind struct socket *so2;
711 1.222 rmind int error = 0;
712 1.1 cgd
713 1.160 ad solock(so);
714 1.1 cgd if (so->so_options & SO_ACCEPTCONN) {
715 1.172 ad for (;;) {
716 1.172 ad if ((so2 = TAILQ_FIRST(&so->so_q0)) != 0) {
717 1.160 ad KASSERT(solocked2(so, so2));
718 1.160 ad (void) soqremque(so2, 0);
719 1.160 ad /* soabort drops the lock. */
720 1.160 ad (void) soabort(so2);
721 1.160 ad solock(so);
722 1.172 ad continue;
723 1.160 ad }
724 1.172 ad if ((so2 = TAILQ_FIRST(&so->so_q)) != 0) {
725 1.160 ad KASSERT(solocked2(so, so2));
726 1.160 ad (void) soqremque(so2, 1);
727 1.160 ad /* soabort drops the lock. */
728 1.160 ad (void) soabort(so2);
729 1.160 ad solock(so);
730 1.172 ad continue;
731 1.160 ad }
732 1.172 ad break;
733 1.172 ad }
734 1.1 cgd }
735 1.222 rmind if (so->so_pcb == NULL)
736 1.1 cgd goto discard;
737 1.1 cgd if (so->so_state & SS_ISCONNECTED) {
738 1.1 cgd if ((so->so_state & SS_ISDISCONNECTING) == 0) {
739 1.1 cgd error = sodisconnect(so);
740 1.1 cgd if (error)
741 1.1 cgd goto drop;
742 1.1 cgd }
743 1.1 cgd if (so->so_options & SO_LINGER) {
744 1.206 christos if ((so->so_state & (SS_ISDISCONNECTING|SS_NBIO)) ==
745 1.206 christos (SS_ISDISCONNECTING|SS_NBIO))
746 1.1 cgd goto drop;
747 1.21 christos while (so->so_state & SS_ISCONNECTED) {
748 1.185 yamt error = sowait(so, true, so->so_linger * hz);
749 1.21 christos if (error)
750 1.1 cgd break;
751 1.21 christos }
752 1.1 cgd }
753 1.1 cgd }
754 1.54 lukem drop:
755 1.1 cgd if (so->so_pcb) {
756 1.224 rmind KASSERT(solocked(so));
757 1.224 rmind (*so->so_proto->pr_usrreqs->pr_detach)(so);
758 1.1 cgd }
759 1.54 lukem discard:
760 1.222 rmind KASSERT((so->so_state & SS_NOFDREF) == 0);
761 1.198 elad kauth_cred_free(so->so_cred);
762 1.273 maxv so->so_cred = NULL;
763 1.1 cgd so->so_state |= SS_NOFDREF;
764 1.1 cgd sofree(so);
765 1.222 rmind return error;
766 1.1 cgd }
767 1.1 cgd
768 1.1 cgd /*
769 1.160 ad * Must be called with the socket locked.. Will return with it unlocked.
770 1.1 cgd */
771 1.3 andrew int
772 1.54 lukem soabort(struct socket *so)
773 1.1 cgd {
774 1.161 ad u_int refs;
775 1.139 yamt int error;
776 1.253 ryo
777 1.160 ad KASSERT(solocked(so));
778 1.160 ad KASSERT(so->so_head == NULL);
779 1.1 cgd
780 1.161 ad so->so_aborting++; /* XXX */
781 1.230 mrg error = (*so->so_proto->pr_usrreqs->pr_abort)(so);
782 1.161 ad refs = --so->so_aborting; /* XXX */
783 1.164 drochner if (error || (refs == 0)) {
784 1.139 yamt sofree(so);
785 1.160 ad } else {
786 1.160 ad sounlock(so);
787 1.139 yamt }
788 1.139 yamt return error;
789 1.1 cgd }
790 1.1 cgd
791 1.3 andrew int
792 1.239 rtr soaccept(struct socket *so, struct sockaddr *nam)
793 1.1 cgd {
794 1.222 rmind int error;
795 1.160 ad
796 1.160 ad KASSERT(solocked(so));
797 1.222 rmind KASSERT((so->so_state & SS_NOFDREF) != 0);
798 1.1 cgd
799 1.1 cgd so->so_state &= ~SS_NOFDREF;
800 1.55 thorpej if ((so->so_state & SS_ISDISCONNECTED) == 0 ||
801 1.55 thorpej (so->so_proto->pr_flags & PR_ABRTACPTDIS) == 0)
802 1.225 rtr error = (*so->so_proto->pr_usrreqs->pr_accept)(so, nam);
803 1.41 mycroft else
804 1.53 itojun error = ECONNABORTED;
805 1.52 itojun
806 1.222 rmind return error;
807 1.1 cgd }
808 1.1 cgd
809 1.3 andrew int
810 1.240 rtr soconnect(struct socket *so, struct sockaddr *nam, struct lwp *l)
811 1.1 cgd {
812 1.222 rmind int error;
813 1.160 ad
814 1.160 ad KASSERT(solocked(so));
815 1.1 cgd
816 1.1 cgd if (so->so_options & SO_ACCEPTCONN)
817 1.222 rmind return EOPNOTSUPP;
818 1.1 cgd /*
819 1.1 cgd * If protocol is connection-based, can only connect once.
820 1.1 cgd * Otherwise, if connected, try to disconnect first.
821 1.1 cgd * This allows user to disconnect by connecting to, e.g.,
822 1.1 cgd * a null address.
823 1.1 cgd */
824 1.1 cgd if (so->so_state & (SS_ISCONNECTED|SS_ISCONNECTING) &&
825 1.1 cgd ((so->so_proto->pr_flags & PR_CONNREQUIRED) ||
826 1.241 rtr (error = sodisconnect(so)))) {
827 1.1 cgd error = EISCONN;
828 1.241 rtr } else {
829 1.242 rtr if (nam->sa_family != so->so_proto->pr_domain->dom_family) {
830 1.241 rtr return EAFNOSUPPORT;
831 1.241 rtr }
832 1.231 rtr error = (*so->so_proto->pr_usrreqs->pr_connect)(so, nam, l);
833 1.241 rtr }
834 1.222 rmind
835 1.222 rmind return error;
836 1.1 cgd }
837 1.1 cgd
838 1.3 andrew int
839 1.54 lukem soconnect2(struct socket *so1, struct socket *so2)
840 1.1 cgd {
841 1.160 ad KASSERT(solocked2(so1, so2));
842 1.1 cgd
843 1.234 rtr return (*so1->so_proto->pr_usrreqs->pr_connect2)(so1, so2);
844 1.1 cgd }
845 1.1 cgd
846 1.3 andrew int
847 1.54 lukem sodisconnect(struct socket *so)
848 1.1 cgd {
849 1.270 maxv int error;
850 1.160 ad
851 1.160 ad KASSERT(solocked(so));
852 1.1 cgd
853 1.1 cgd if ((so->so_state & SS_ISCONNECTED) == 0) {
854 1.1 cgd error = ENOTCONN;
855 1.160 ad } else if (so->so_state & SS_ISDISCONNECTING) {
856 1.1 cgd error = EALREADY;
857 1.160 ad } else {
858 1.229 rtr error = (*so->so_proto->pr_usrreqs->pr_disconnect)(so);
859 1.1 cgd }
860 1.270 maxv return error;
861 1.1 cgd }
862 1.1 cgd
863 1.15 mycroft #define SBLOCKWAIT(f) (((f) & MSG_DONTWAIT) ? M_NOWAIT : M_WAITOK)
864 1.1 cgd /*
865 1.1 cgd * Send on a socket.
866 1.1 cgd * If send must go all at once and message is larger than
867 1.1 cgd * send buffering, then hard error.
868 1.1 cgd * Lock against other senders.
869 1.1 cgd * If must go all at once and not enough room now, then
870 1.1 cgd * inform user that this would block and do nothing.
871 1.1 cgd * Otherwise, if nonblocking, send as much as possible.
872 1.1 cgd * The data to be sent is described by "uio" if nonzero,
873 1.1 cgd * otherwise by the mbuf chain "top" (which must be null
874 1.1 cgd * if uio is not). Data provided in mbuf chain must be small
875 1.1 cgd * enough to send all at once.
876 1.1 cgd *
877 1.1 cgd * Returns nonzero on error, timeout or signal; callers
878 1.1 cgd * must check for short counts if EINTR/ERESTART are returned.
879 1.1 cgd * Data and control buffers are freed on return.
880 1.1 cgd */
881 1.3 andrew int
882 1.245 rtr sosend(struct socket *so, struct sockaddr *addr, struct uio *uio,
883 1.245 rtr struct mbuf *top, struct mbuf *control, int flags, struct lwp *l)
884 1.1 cgd {
885 1.270 maxv struct mbuf **mp, *m;
886 1.270 maxv long space, len, resid, clen, mlen;
887 1.270 maxv int error, s, dontroute, atomic;
888 1.270 maxv short wakeup_state = 0;
889 1.54 lukem
890 1.160 ad clen = 0;
891 1.64 thorpej
892 1.160 ad /*
893 1.160 ad * solock() provides atomicity of access. splsoftnet() prevents
894 1.160 ad * protocol processing soft interrupts from interrupting us and
895 1.160 ad * blocking (expensive).
896 1.160 ad */
897 1.160 ad s = splsoftnet();
898 1.160 ad solock(so);
899 1.54 lukem atomic = sosendallatonce(so) || top;
900 1.1 cgd if (uio)
901 1.1 cgd resid = uio->uio_resid;
902 1.1 cgd else
903 1.1 cgd resid = top->m_pkthdr.len;
904 1.7 cgd /*
905 1.7 cgd * In theory resid should be unsigned.
906 1.7 cgd * However, space must be signed, as it might be less than 0
907 1.7 cgd * if we over-committed, and we must use a signed comparison
908 1.7 cgd * of space and resid. On the other hand, a negative resid
909 1.7 cgd * causes us to loop sending 0-length segments to the protocol.
910 1.7 cgd */
911 1.29 mycroft if (resid < 0) {
912 1.29 mycroft error = EINVAL;
913 1.29 mycroft goto out;
914 1.29 mycroft }
915 1.1 cgd dontroute =
916 1.1 cgd (flags & MSG_DONTROUTE) && (so->so_options & SO_DONTROUTE) == 0 &&
917 1.1 cgd (so->so_proto->pr_flags & PR_ATOMIC);
918 1.165 christos l->l_ru.ru_msgsnd++;
919 1.1 cgd if (control)
920 1.1 cgd clen = control->m_len;
921 1.54 lukem restart:
922 1.21 christos if ((error = sblock(&so->so_snd, SBLOCKWAIT(flags))) != 0)
923 1.1 cgd goto out;
924 1.1 cgd do {
925 1.160 ad if (so->so_state & SS_CANTSENDMORE) {
926 1.160 ad error = EPIPE;
927 1.160 ad goto release;
928 1.160 ad }
929 1.48 thorpej if (so->so_error) {
930 1.48 thorpej error = so->so_error;
931 1.282 christos if ((flags & MSG_PEEK) == 0)
932 1.282 christos so->so_error = 0;
933 1.48 thorpej goto release;
934 1.48 thorpej }
935 1.1 cgd if ((so->so_state & SS_ISCONNECTED) == 0) {
936 1.1 cgd if (so->so_proto->pr_flags & PR_CONNREQUIRED) {
937 1.217 rmind if (resid || clen == 0) {
938 1.160 ad error = ENOTCONN;
939 1.160 ad goto release;
940 1.160 ad }
941 1.244 rtr } else if (addr == NULL) {
942 1.160 ad error = EDESTADDRREQ;
943 1.160 ad goto release;
944 1.160 ad }
945 1.1 cgd }
946 1.1 cgd space = sbspace(&so->so_snd);
947 1.1 cgd if (flags & MSG_OOB)
948 1.1 cgd space += 1024;
949 1.21 christos if ((atomic && resid > so->so_snd.sb_hiwat) ||
950 1.160 ad clen > so->so_snd.sb_hiwat) {
951 1.160 ad error = EMSGSIZE;
952 1.160 ad goto release;
953 1.160 ad }
954 1.96 mycroft if (space < resid + clen &&
955 1.1 cgd (atomic || space < so->so_snd.sb_lowat || space < clen)) {
956 1.206 christos if ((so->so_state & SS_NBIO) || (flags & MSG_NBIO)) {
957 1.160 ad error = EWOULDBLOCK;
958 1.160 ad goto release;
959 1.160 ad }
960 1.1 cgd sbunlock(&so->so_snd);
961 1.196 dsl if (wakeup_state & SS_RESTARTSYS) {
962 1.196 dsl error = ERESTART;
963 1.196 dsl goto out;
964 1.196 dsl }
965 1.1 cgd error = sbwait(&so->so_snd);
966 1.1 cgd if (error)
967 1.1 cgd goto out;
968 1.196 dsl wakeup_state = so->so_state;
969 1.1 cgd goto restart;
970 1.1 cgd }
971 1.196 dsl wakeup_state = 0;
972 1.1 cgd mp = ⊤
973 1.1 cgd space -= clen;
974 1.1 cgd do {
975 1.45 tv if (uio == NULL) {
976 1.45 tv /*
977 1.45 tv * Data is prepackaged in "top".
978 1.45 tv */
979 1.45 tv resid = 0;
980 1.45 tv if (flags & MSG_EOR)
981 1.45 tv top->m_flags |= M_EOR;
982 1.45 tv } else do {
983 1.160 ad sounlock(so);
984 1.160 ad splx(s);
985 1.144 dyoung if (top == NULL) {
986 1.78 matt m = m_gethdr(M_WAIT, MT_DATA);
987 1.45 tv mlen = MHLEN;
988 1.45 tv m->m_pkthdr.len = 0;
989 1.248 ozaki m_reset_rcvif(m);
990 1.45 tv } else {
991 1.78 matt m = m_get(M_WAIT, MT_DATA);
992 1.45 tv mlen = MLEN;
993 1.45 tv }
994 1.78 matt MCLAIM(m, so->so_snd.sb_mowner);
995 1.121 yamt if (sock_loan_thresh >= 0 &&
996 1.121 yamt uio->uio_iov->iov_len >= sock_loan_thresh &&
997 1.121 yamt space >= sock_loan_thresh &&
998 1.64 thorpej (len = sosend_loan(so, uio, m,
999 1.252 uwe space)) != 0) {
1000 1.64 thorpej SOSEND_COUNTER_INCR(&sosend_loan_big);
1001 1.64 thorpej space -= len;
1002 1.64 thorpej goto have_data;
1003 1.64 thorpej }
1004 1.45 tv if (resid >= MINCLSIZE && space >= MCLBYTES) {
1005 1.64 thorpej SOSEND_COUNTER_INCR(&sosend_copy_big);
1006 1.201 oki m_clget(m, M_DONTWAIT);
1007 1.45 tv if ((m->m_flags & M_EXT) == 0)
1008 1.45 tv goto nopages;
1009 1.45 tv mlen = MCLBYTES;
1010 1.45 tv if (atomic && top == 0) {
1011 1.58 jdolecek len = lmin(MCLBYTES - max_hdr,
1012 1.54 lukem resid);
1013 1.45 tv m->m_data += max_hdr;
1014 1.45 tv } else
1015 1.58 jdolecek len = lmin(MCLBYTES, resid);
1016 1.45 tv space -= len;
1017 1.45 tv } else {
1018 1.64 thorpej nopages:
1019 1.64 thorpej SOSEND_COUNTER_INCR(&sosend_copy_small);
1020 1.58 jdolecek len = lmin(lmin(mlen, resid), space);
1021 1.45 tv space -= len;
1022 1.45 tv /*
1023 1.45 tv * For datagram protocols, leave room
1024 1.45 tv * for protocol headers in first mbuf.
1025 1.45 tv */
1026 1.45 tv if (atomic && top == 0 && len < mlen)
1027 1.268 maxv m_align(m, len);
1028 1.45 tv }
1029 1.144 dyoung error = uiomove(mtod(m, void *), (int)len, uio);
1030 1.64 thorpej have_data:
1031 1.45 tv resid = uio->uio_resid;
1032 1.45 tv m->m_len = len;
1033 1.45 tv *mp = m;
1034 1.45 tv top->m_pkthdr.len += len;
1035 1.160 ad s = splsoftnet();
1036 1.160 ad solock(so);
1037 1.144 dyoung if (error != 0)
1038 1.45 tv goto release;
1039 1.45 tv mp = &m->m_next;
1040 1.45 tv if (resid <= 0) {
1041 1.45 tv if (flags & MSG_EOR)
1042 1.45 tv top->m_flags |= M_EOR;
1043 1.45 tv break;
1044 1.45 tv }
1045 1.45 tv } while (space > 0 && atomic);
1046 1.108 perry
1047 1.160 ad if (so->so_state & SS_CANTSENDMORE) {
1048 1.160 ad error = EPIPE;
1049 1.160 ad goto release;
1050 1.160 ad }
1051 1.45 tv if (dontroute)
1052 1.45 tv so->so_options |= SO_DONTROUTE;
1053 1.45 tv if (resid > 0)
1054 1.45 tv so->so_state |= SS_MORETOCOME;
1055 1.240 rtr if (flags & MSG_OOB) {
1056 1.253 ryo error = (*so->so_proto->pr_usrreqs->pr_sendoob)(
1057 1.253 ryo so, top, control);
1058 1.240 rtr } else {
1059 1.232 rtr error = (*so->so_proto->pr_usrreqs->pr_send)(so,
1060 1.245 rtr top, addr, control, l);
1061 1.240 rtr }
1062 1.45 tv if (dontroute)
1063 1.45 tv so->so_options &= ~SO_DONTROUTE;
1064 1.45 tv if (resid > 0)
1065 1.45 tv so->so_state &= ~SS_MORETOCOME;
1066 1.45 tv clen = 0;
1067 1.144 dyoung control = NULL;
1068 1.144 dyoung top = NULL;
1069 1.45 tv mp = ⊤
1070 1.144 dyoung if (error != 0)
1071 1.1 cgd goto release;
1072 1.1 cgd } while (resid && space > 0);
1073 1.1 cgd } while (resid);
1074 1.1 cgd
1075 1.54 lukem release:
1076 1.1 cgd sbunlock(&so->so_snd);
1077 1.54 lukem out:
1078 1.160 ad sounlock(so);
1079 1.160 ad splx(s);
1080 1.1 cgd if (top)
1081 1.1 cgd m_freem(top);
1082 1.1 cgd if (control)
1083 1.1 cgd m_freem(control);
1084 1.270 maxv return error;
1085 1.1 cgd }
1086 1.1 cgd
1087 1.1 cgd /*
1088 1.159 ad * Following replacement or removal of the first mbuf on the first
1089 1.159 ad * mbuf chain of a socket buffer, push necessary state changes back
1090 1.159 ad * into the socket buffer so that other consumers see the values
1091 1.270 maxv * consistently. 'nextrecord' is the caller's locally stored value of
1092 1.159 ad * the original value of sb->sb_mb->m_nextpkt which must be restored
1093 1.159 ad * when the lead mbuf changes. NOTE: 'nextrecord' may be NULL.
1094 1.159 ad */
1095 1.159 ad static void
1096 1.159 ad sbsync(struct sockbuf *sb, struct mbuf *nextrecord)
1097 1.159 ad {
1098 1.159 ad
1099 1.160 ad KASSERT(solocked(sb->sb_so));
1100 1.160 ad
1101 1.159 ad /*
1102 1.159 ad * First, update for the new value of nextrecord. If necessary,
1103 1.159 ad * make it the first record.
1104 1.159 ad */
1105 1.159 ad if (sb->sb_mb != NULL)
1106 1.159 ad sb->sb_mb->m_nextpkt = nextrecord;
1107 1.159 ad else
1108 1.159 ad sb->sb_mb = nextrecord;
1109 1.159 ad
1110 1.159 ad /*
1111 1.159 ad * Now update any dependent socket buffer fields to reflect
1112 1.159 ad * the new state. This is an inline of SB_EMPTY_FIXUP, with
1113 1.159 ad * the addition of a second clause that takes care of the
1114 1.159 ad * case where sb_mb has been updated, but remains the last
1115 1.159 ad * record.
1116 1.159 ad */
1117 1.159 ad if (sb->sb_mb == NULL) {
1118 1.159 ad sb->sb_mbtail = NULL;
1119 1.159 ad sb->sb_lastrecord = NULL;
1120 1.159 ad } else if (sb->sb_mb->m_nextpkt == NULL)
1121 1.159 ad sb->sb_lastrecord = sb->sb_mb;
1122 1.159 ad }
1123 1.159 ad
1124 1.159 ad /*
1125 1.1 cgd * Implement receive operations on a socket.
1126 1.1 cgd *
1127 1.270 maxv * We depend on the way that records are added to the sockbuf by sbappend*. In
1128 1.270 maxv * particular, each record (mbufs linked through m_next) must begin with an
1129 1.270 maxv * address if the protocol so specifies, followed by an optional mbuf or mbufs
1130 1.270 maxv * containing ancillary data, and then zero or more mbufs of data.
1131 1.270 maxv *
1132 1.270 maxv * In order to avoid blocking network interrupts for the entire time here, we
1133 1.270 maxv * splx() while doing the actual copy to user space. Although the sockbuf is
1134 1.270 maxv * locked, new data may still be appended, and thus we must maintain
1135 1.270 maxv * consistency of the sockbuf during that time.
1136 1.270 maxv *
1137 1.270 maxv * The caller may receive the data as a single mbuf chain by supplying an mbuf
1138 1.270 maxv * **mp0 for use in returning the chain. The uio is then used only for the
1139 1.270 maxv * count in uio_resid.
1140 1.1 cgd */
1141 1.3 andrew int
1142 1.54 lukem soreceive(struct socket *so, struct mbuf **paddr, struct uio *uio,
1143 1.270 maxv struct mbuf **mp0, struct mbuf **controlp, int *flagsp)
1144 1.1 cgd {
1145 1.116 yamt struct lwp *l = curlwp;
1146 1.270 maxv struct mbuf *m, **mp, *mt;
1147 1.211 chs size_t len, offset, moff, orig_resid;
1148 1.211 chs int atomic, flags, error, s, type;
1149 1.270 maxv const struct protosw *pr;
1150 1.270 maxv struct mbuf *nextrecord;
1151 1.270 maxv int mbuf_removed = 0;
1152 1.146 dyoung const struct domain *dom;
1153 1.270 maxv short wakeup_state = 0;
1154 1.64 thorpej
1155 1.54 lukem pr = so->so_proto;
1156 1.146 dyoung atomic = pr->pr_flags & PR_ATOMIC;
1157 1.146 dyoung dom = pr->pr_domain;
1158 1.1 cgd mp = mp0;
1159 1.54 lukem type = 0;
1160 1.54 lukem orig_resid = uio->uio_resid;
1161 1.102 jonathan
1162 1.144 dyoung if (paddr != NULL)
1163 1.144 dyoung *paddr = NULL;
1164 1.144 dyoung if (controlp != NULL)
1165 1.144 dyoung *controlp = NULL;
1166 1.144 dyoung if (flagsp != NULL)
1167 1.252 uwe flags = *flagsp &~ MSG_EOR;
1168 1.1 cgd else
1169 1.1 cgd flags = 0;
1170 1.66 enami
1171 1.1 cgd if (flags & MSG_OOB) {
1172 1.1 cgd m = m_get(M_WAIT, MT_DATA);
1173 1.160 ad solock(so);
1174 1.226 rtr error = (*pr->pr_usrreqs->pr_recvoob)(so, m, flags & MSG_PEEK);
1175 1.160 ad sounlock(so);
1176 1.1 cgd if (error)
1177 1.1 cgd goto bad;
1178 1.1 cgd do {
1179 1.134 christos error = uiomove(mtod(m, void *),
1180 1.211 chs MIN(uio->uio_resid, m->m_len), uio);
1181 1.1 cgd m = m_free(m);
1182 1.144 dyoung } while (uio->uio_resid > 0 && error == 0 && m);
1183 1.286 christos /* We consumed the oob data, no more oobmark. */
1184 1.286 christos so->so_oobmark = 0;
1185 1.286 christos so->so_state &= ~SS_RCVATMARK;
1186 1.270 maxv bad:
1187 1.144 dyoung if (m != NULL)
1188 1.1 cgd m_freem(m);
1189 1.144 dyoung return error;
1190 1.1 cgd }
1191 1.144 dyoung if (mp != NULL)
1192 1.140 dyoung *mp = NULL;
1193 1.160 ad
1194 1.160 ad /*
1195 1.160 ad * solock() provides atomicity of access. splsoftnet() prevents
1196 1.160 ad * protocol processing soft interrupts from interrupting us and
1197 1.160 ad * blocking (expensive).
1198 1.160 ad */
1199 1.160 ad s = splsoftnet();
1200 1.160 ad solock(so);
1201 1.270 maxv restart:
1202 1.160 ad if ((error = sblock(&so->so_rcv, SBLOCKWAIT(flags))) != 0) {
1203 1.160 ad sounlock(so);
1204 1.160 ad splx(s);
1205 1.144 dyoung return error;
1206 1.160 ad }
1207 1.270 maxv m = so->so_rcv.sb_mb;
1208 1.1 cgd
1209 1.1 cgd /*
1210 1.1 cgd * If we have less data than requested, block awaiting more
1211 1.1 cgd * (subject to any timeout) if:
1212 1.15 mycroft * 1. the current count is less than the low water mark,
1213 1.1 cgd * 2. MSG_WAITALL is set, and it is possible to do the entire
1214 1.15 mycroft * receive operation at once if we block (resid <= hiwat), or
1215 1.15 mycroft * 3. MSG_DONTWAIT is not set.
1216 1.1 cgd * If MSG_WAITALL is set but resid is larger than the receive buffer,
1217 1.1 cgd * we have to do the receive in sections, and thus risk returning
1218 1.1 cgd * a short count if a timeout or signal occurs after we start.
1219 1.1 cgd */
1220 1.144 dyoung if (m == NULL ||
1221 1.144 dyoung ((flags & MSG_DONTWAIT) == 0 &&
1222 1.144 dyoung so->so_rcv.sb_cc < uio->uio_resid &&
1223 1.144 dyoung (so->so_rcv.sb_cc < so->so_rcv.sb_lowat ||
1224 1.144 dyoung ((flags & MSG_WAITALL) &&
1225 1.144 dyoung uio->uio_resid <= so->so_rcv.sb_hiwat)) &&
1226 1.146 dyoung m->m_nextpkt == NULL && !atomic)) {
1227 1.1 cgd #ifdef DIAGNOSTIC
1228 1.144 dyoung if (m == NULL && so->so_rcv.sb_cc)
1229 1.1 cgd panic("receive 1");
1230 1.1 cgd #endif
1231 1.264 roy if (so->so_error || so->so_rerror) {
1232 1.282 christos u_short *e;
1233 1.144 dyoung if (m != NULL)
1234 1.15 mycroft goto dontblock;
1235 1.283 mlelstv e = so->so_error ? &so->so_error : &so->so_rerror;
1236 1.282 christos error = *e;
1237 1.282 christos if ((flags & MSG_PEEK) == 0)
1238 1.282 christos *e = 0;
1239 1.1 cgd goto release;
1240 1.1 cgd }
1241 1.1 cgd if (so->so_state & SS_CANTRCVMORE) {
1242 1.144 dyoung if (m != NULL)
1243 1.15 mycroft goto dontblock;
1244 1.1 cgd else
1245 1.1 cgd goto release;
1246 1.1 cgd }
1247 1.144 dyoung for (; m != NULL; m = m->m_next)
1248 1.1 cgd if (m->m_type == MT_OOBDATA || (m->m_flags & M_EOR)) {
1249 1.1 cgd m = so->so_rcv.sb_mb;
1250 1.1 cgd goto dontblock;
1251 1.1 cgd }
1252 1.1 cgd if ((so->so_state & (SS_ISCONNECTED|SS_ISCONNECTING)) == 0 &&
1253 1.1 cgd (so->so_proto->pr_flags & PR_CONNREQUIRED)) {
1254 1.1 cgd error = ENOTCONN;
1255 1.1 cgd goto release;
1256 1.1 cgd }
1257 1.1 cgd if (uio->uio_resid == 0)
1258 1.1 cgd goto release;
1259 1.206 christos if ((so->so_state & SS_NBIO) ||
1260 1.206 christos (flags & (MSG_DONTWAIT|MSG_NBIO))) {
1261 1.1 cgd error = EWOULDBLOCK;
1262 1.1 cgd goto release;
1263 1.1 cgd }
1264 1.69 thorpej SBLASTRECORDCHK(&so->so_rcv, "soreceive sbwait 1");
1265 1.69 thorpej SBLASTMBUFCHK(&so->so_rcv, "soreceive sbwait 1");
1266 1.1 cgd sbunlock(&so->so_rcv);
1267 1.196 dsl if (wakeup_state & SS_RESTARTSYS)
1268 1.196 dsl error = ERESTART;
1269 1.196 dsl else
1270 1.196 dsl error = sbwait(&so->so_rcv);
1271 1.160 ad if (error != 0) {
1272 1.160 ad sounlock(so);
1273 1.160 ad splx(s);
1274 1.144 dyoung return error;
1275 1.160 ad }
1276 1.196 dsl wakeup_state = so->so_state;
1277 1.1 cgd goto restart;
1278 1.1 cgd }
1279 1.270 maxv
1280 1.270 maxv dontblock:
1281 1.69 thorpej /*
1282 1.69 thorpej * On entry here, m points to the first record of the socket buffer.
1283 1.159 ad * From this point onward, we maintain 'nextrecord' as a cache of the
1284 1.159 ad * pointer to the next record in the socket buffer. We must keep the
1285 1.159 ad * various socket buffer pointers and local stack versions of the
1286 1.159 ad * pointers in sync, pushing out modifications before dropping the
1287 1.160 ad * socket lock, and re-reading them when picking it up.
1288 1.159 ad *
1289 1.159 ad * Otherwise, we will race with the network stack appending new data
1290 1.159 ad * or records onto the socket buffer by using inconsistent/stale
1291 1.159 ad * versions of the field, possibly resulting in socket buffer
1292 1.159 ad * corruption.
1293 1.159 ad *
1294 1.159 ad * By holding the high-level sblock(), we prevent simultaneous
1295 1.159 ad * readers from pulling off the front of the socket buffer.
1296 1.69 thorpej */
1297 1.144 dyoung if (l != NULL)
1298 1.157 ad l->l_ru.ru_msgrcv++;
1299 1.69 thorpej KASSERT(m == so->so_rcv.sb_mb);
1300 1.69 thorpej SBLASTRECORDCHK(&so->so_rcv, "soreceive 1");
1301 1.69 thorpej SBLASTMBUFCHK(&so->so_rcv, "soreceive 1");
1302 1.1 cgd nextrecord = m->m_nextpkt;
1303 1.270 maxv
1304 1.1 cgd if (pr->pr_flags & PR_ADDR) {
1305 1.270 maxv KASSERT(m->m_type == MT_SONAME);
1306 1.3 andrew orig_resid = 0;
1307 1.1 cgd if (flags & MSG_PEEK) {
1308 1.1 cgd if (paddr)
1309 1.263 maxv *paddr = m_copym(m, 0, m->m_len, M_DONTWAIT);
1310 1.1 cgd m = m->m_next;
1311 1.1 cgd } else {
1312 1.1 cgd sbfree(&so->so_rcv, m);
1313 1.67 he mbuf_removed = 1;
1314 1.144 dyoung if (paddr != NULL) {
1315 1.1 cgd *paddr = m;
1316 1.1 cgd so->so_rcv.sb_mb = m->m_next;
1317 1.144 dyoung m->m_next = NULL;
1318 1.1 cgd m = so->so_rcv.sb_mb;
1319 1.1 cgd } else {
1320 1.249 christos m = so->so_rcv.sb_mb = m_free(m);
1321 1.1 cgd }
1322 1.159 ad sbsync(&so->so_rcv, nextrecord);
1323 1.1 cgd }
1324 1.1 cgd }
1325 1.270 maxv
1326 1.247 rjs if (pr->pr_flags & PR_ADDR_OPT) {
1327 1.247 rjs /*
1328 1.270 maxv * For SCTP we may be getting a whole message OR a partial
1329 1.270 maxv * delivery.
1330 1.247 rjs */
1331 1.247 rjs if (m->m_type == MT_SONAME) {
1332 1.247 rjs orig_resid = 0;
1333 1.247 rjs if (flags & MSG_PEEK) {
1334 1.247 rjs if (paddr)
1335 1.263 maxv *paddr = m_copym(m, 0, m->m_len, M_DONTWAIT);
1336 1.247 rjs m = m->m_next;
1337 1.247 rjs } else {
1338 1.247 rjs sbfree(&so->so_rcv, m);
1339 1.280 maxv /* XXX XXX XXX: should set mbuf_removed? */
1340 1.247 rjs if (paddr) {
1341 1.247 rjs *paddr = m;
1342 1.247 rjs so->so_rcv.sb_mb = m->m_next;
1343 1.247 rjs m->m_next = 0;
1344 1.247 rjs m = so->so_rcv.sb_mb;
1345 1.247 rjs } else {
1346 1.249 christos m = so->so_rcv.sb_mb = m_free(m);
1347 1.247 rjs }
1348 1.280 maxv /* XXX XXX XXX: isn't there an sbsync()
1349 1.280 maxv * missing here? */
1350 1.247 rjs }
1351 1.247 rjs }
1352 1.247 rjs }
1353 1.159 ad
1354 1.159 ad /*
1355 1.159 ad * Process one or more MT_CONTROL mbufs present before any data mbufs
1356 1.159 ad * in the first mbuf chain on the socket buffer. If MSG_PEEK, we
1357 1.159 ad * just copy the data; if !MSG_PEEK, we call into the protocol to
1358 1.159 ad * perform externalization (or freeing if controlp == NULL).
1359 1.159 ad */
1360 1.159 ad if (__predict_false(m != NULL && m->m_type == MT_CONTROL)) {
1361 1.159 ad struct mbuf *cm = NULL, *cmn;
1362 1.159 ad struct mbuf **cme = &cm;
1363 1.159 ad
1364 1.159 ad do {
1365 1.159 ad if (flags & MSG_PEEK) {
1366 1.159 ad if (controlp != NULL) {
1367 1.263 maxv *controlp = m_copym(m, 0, m->m_len, M_DONTWAIT);
1368 1.159 ad controlp = &(*controlp)->m_next;
1369 1.159 ad }
1370 1.159 ad m = m->m_next;
1371 1.159 ad } else {
1372 1.159 ad sbfree(&so->so_rcv, m);
1373 1.1 cgd so->so_rcv.sb_mb = m->m_next;
1374 1.144 dyoung m->m_next = NULL;
1375 1.159 ad *cme = m;
1376 1.159 ad cme = &(*cme)->m_next;
1377 1.1 cgd m = so->so_rcv.sb_mb;
1378 1.159 ad }
1379 1.159 ad } while (m != NULL && m->m_type == MT_CONTROL);
1380 1.159 ad if ((flags & MSG_PEEK) == 0)
1381 1.159 ad sbsync(&so->so_rcv, nextrecord);
1382 1.270 maxv
1383 1.159 ad for (; cm != NULL; cm = cmn) {
1384 1.159 ad cmn = cm->m_next;
1385 1.159 ad cm->m_next = NULL;
1386 1.159 ad type = mtod(cm, struct cmsghdr *)->cmsg_type;
1387 1.159 ad if (controlp != NULL) {
1388 1.159 ad if (dom->dom_externalize != NULL &&
1389 1.159 ad type == SCM_RIGHTS) {
1390 1.160 ad sounlock(so);
1391 1.159 ad splx(s);
1392 1.204 christos error = (*dom->dom_externalize)(cm, l,
1393 1.204 christos (flags & MSG_CMSG_CLOEXEC) ?
1394 1.204 christos O_CLOEXEC : 0);
1395 1.159 ad s = splsoftnet();
1396 1.160 ad solock(so);
1397 1.159 ad }
1398 1.159 ad *controlp = cm;
1399 1.159 ad while (*controlp != NULL)
1400 1.159 ad controlp = &(*controlp)->m_next;
1401 1.1 cgd } else {
1402 1.106 itojun /*
1403 1.106 itojun * Dispose of any SCM_RIGHTS message that went
1404 1.106 itojun * through the read path rather than recv.
1405 1.106 itojun */
1406 1.159 ad if (dom->dom_dispose != NULL &&
1407 1.159 ad type == SCM_RIGHTS) {
1408 1.253 ryo sounlock(so);
1409 1.159 ad (*dom->dom_dispose)(cm);
1410 1.160 ad solock(so);
1411 1.159 ad }
1412 1.159 ad m_freem(cm);
1413 1.1 cgd }
1414 1.1 cgd }
1415 1.159 ad if (m != NULL)
1416 1.159 ad nextrecord = so->so_rcv.sb_mb->m_nextpkt;
1417 1.159 ad else
1418 1.159 ad nextrecord = so->so_rcv.sb_mb;
1419 1.159 ad orig_resid = 0;
1420 1.1 cgd }
1421 1.69 thorpej
1422 1.159 ad /* If m is non-NULL, we have some data to read. */
1423 1.159 ad if (__predict_true(m != NULL)) {
1424 1.1 cgd type = m->m_type;
1425 1.1 cgd if (type == MT_OOBDATA)
1426 1.1 cgd flags |= MSG_OOB;
1427 1.1 cgd }
1428 1.69 thorpej SBLASTRECORDCHK(&so->so_rcv, "soreceive 2");
1429 1.69 thorpej SBLASTMBUFCHK(&so->so_rcv, "soreceive 2");
1430 1.69 thorpej
1431 1.1 cgd moff = 0;
1432 1.1 cgd offset = 0;
1433 1.144 dyoung while (m != NULL && uio->uio_resid > 0 && error == 0) {
1434 1.272 maxv /*
1435 1.272 maxv * If the type of mbuf has changed, end the receive
1436 1.272 maxv * operation and do a short read.
1437 1.272 maxv */
1438 1.1 cgd if (m->m_type == MT_OOBDATA) {
1439 1.1 cgd if (type != MT_OOBDATA)
1440 1.1 cgd break;
1441 1.270 maxv } else if (type == MT_OOBDATA) {
1442 1.1 cgd break;
1443 1.272 maxv } else if (m->m_type == MT_CONTROL) {
1444 1.272 maxv break;
1445 1.270 maxv }
1446 1.1 cgd #ifdef DIAGNOSTIC
1447 1.270 maxv else if (m->m_type != MT_DATA && m->m_type != MT_HEADER) {
1448 1.272 maxv panic("%s: m_type=%d", __func__, m->m_type);
1449 1.270 maxv }
1450 1.1 cgd #endif
1451 1.270 maxv
1452 1.1 cgd so->so_state &= ~SS_RCVATMARK;
1453 1.196 dsl wakeup_state = 0;
1454 1.1 cgd len = uio->uio_resid;
1455 1.1 cgd if (so->so_oobmark && len > so->so_oobmark - offset)
1456 1.1 cgd len = so->so_oobmark - offset;
1457 1.1 cgd if (len > m->m_len - moff)
1458 1.1 cgd len = m->m_len - moff;
1459 1.270 maxv
1460 1.1 cgd /*
1461 1.1 cgd * If mp is set, just pass back the mbufs.
1462 1.1 cgd * Otherwise copy them out via the uio, then free.
1463 1.1 cgd * Sockbuf must be consistent here (points to current mbuf,
1464 1.1 cgd * it points to next record) when we drop priority;
1465 1.1 cgd * we must note any additions to the sockbuf when we
1466 1.1 cgd * block interrupts again.
1467 1.1 cgd */
1468 1.144 dyoung if (mp == NULL) {
1469 1.69 thorpej SBLASTRECORDCHK(&so->so_rcv, "soreceive uiomove");
1470 1.69 thorpej SBLASTMBUFCHK(&so->so_rcv, "soreceive uiomove");
1471 1.160 ad sounlock(so);
1472 1.1 cgd splx(s);
1473 1.211 chs error = uiomove(mtod(m, char *) + moff, len, uio);
1474 1.20 mycroft s = splsoftnet();
1475 1.160 ad solock(so);
1476 1.144 dyoung if (error != 0) {
1477 1.67 he /*
1478 1.67 he * If any part of the record has been removed
1479 1.67 he * (such as the MT_SONAME mbuf, which will
1480 1.67 he * happen when PR_ADDR, and thus also
1481 1.67 he * PR_ATOMIC, is set), then drop the entire
1482 1.67 he * record to maintain the atomicity of the
1483 1.67 he * receive operation.
1484 1.67 he *
1485 1.67 he * This avoids a later panic("receive 1a")
1486 1.67 he * when compiled with DIAGNOSTIC.
1487 1.67 he */
1488 1.146 dyoung if (m && mbuf_removed && atomic)
1489 1.67 he (void) sbdroprecord(&so->so_rcv);
1490 1.67 he
1491 1.57 jdolecek goto release;
1492 1.67 he }
1493 1.270 maxv } else {
1494 1.1 cgd uio->uio_resid -= len;
1495 1.270 maxv }
1496 1.270 maxv
1497 1.1 cgd if (len == m->m_len - moff) {
1498 1.1 cgd if (m->m_flags & M_EOR)
1499 1.1 cgd flags |= MSG_EOR;
1500 1.247 rjs #ifdef SCTP
1501 1.247 rjs if (m->m_flags & M_NOTIFICATION)
1502 1.247 rjs flags |= MSG_NOTIFICATION;
1503 1.270 maxv #endif
1504 1.1 cgd if (flags & MSG_PEEK) {
1505 1.1 cgd m = m->m_next;
1506 1.1 cgd moff = 0;
1507 1.1 cgd } else {
1508 1.1 cgd nextrecord = m->m_nextpkt;
1509 1.1 cgd sbfree(&so->so_rcv, m);
1510 1.1 cgd if (mp) {
1511 1.1 cgd *mp = m;
1512 1.1 cgd mp = &m->m_next;
1513 1.1 cgd so->so_rcv.sb_mb = m = m->m_next;
1514 1.140 dyoung *mp = NULL;
1515 1.1 cgd } else {
1516 1.249 christos m = so->so_rcv.sb_mb = m_free(m);
1517 1.1 cgd }
1518 1.69 thorpej /*
1519 1.69 thorpej * If m != NULL, we also know that
1520 1.69 thorpej * so->so_rcv.sb_mb != NULL.
1521 1.69 thorpej */
1522 1.69 thorpej KASSERT(so->so_rcv.sb_mb == m);
1523 1.69 thorpej if (m) {
1524 1.1 cgd m->m_nextpkt = nextrecord;
1525 1.69 thorpej if (nextrecord == NULL)
1526 1.69 thorpej so->so_rcv.sb_lastrecord = m;
1527 1.69 thorpej } else {
1528 1.69 thorpej so->so_rcv.sb_mb = nextrecord;
1529 1.70 thorpej SB_EMPTY_FIXUP(&so->so_rcv);
1530 1.69 thorpej }
1531 1.69 thorpej SBLASTRECORDCHK(&so->so_rcv, "soreceive 3");
1532 1.69 thorpej SBLASTMBUFCHK(&so->so_rcv, "soreceive 3");
1533 1.1 cgd }
1534 1.270 maxv } else if (flags & MSG_PEEK) {
1535 1.144 dyoung moff += len;
1536 1.270 maxv } else {
1537 1.160 ad if (mp != NULL) {
1538 1.160 ad mt = m_copym(m, 0, len, M_NOWAIT);
1539 1.160 ad if (__predict_false(mt == NULL)) {
1540 1.160 ad sounlock(so);
1541 1.160 ad mt = m_copym(m, 0, len, M_WAIT);
1542 1.160 ad solock(so);
1543 1.160 ad }
1544 1.160 ad *mp = mt;
1545 1.160 ad }
1546 1.144 dyoung m->m_data += len;
1547 1.144 dyoung m->m_len -= len;
1548 1.144 dyoung so->so_rcv.sb_cc -= len;
1549 1.1 cgd }
1550 1.270 maxv
1551 1.1 cgd if (so->so_oobmark) {
1552 1.1 cgd if ((flags & MSG_PEEK) == 0) {
1553 1.1 cgd so->so_oobmark -= len;
1554 1.1 cgd if (so->so_oobmark == 0) {
1555 1.1 cgd so->so_state |= SS_RCVATMARK;
1556 1.1 cgd break;
1557 1.1 cgd }
1558 1.7 cgd } else {
1559 1.1 cgd offset += len;
1560 1.7 cgd if (offset == so->so_oobmark)
1561 1.7 cgd break;
1562 1.7 cgd }
1563 1.1 cgd }
1564 1.1 cgd if (flags & MSG_EOR)
1565 1.1 cgd break;
1566 1.270 maxv
1567 1.1 cgd /*
1568 1.1 cgd * If the MSG_WAITALL flag is set (for non-atomic socket),
1569 1.1 cgd * we must not quit until "uio->uio_resid == 0" or an error
1570 1.1 cgd * termination. If a signal/timeout occurs, return
1571 1.1 cgd * with a short count but without error.
1572 1.1 cgd * Keep sockbuf locked against other readers.
1573 1.1 cgd */
1574 1.144 dyoung while (flags & MSG_WAITALL && m == NULL && uio->uio_resid > 0 &&
1575 1.3 andrew !sosendallatonce(so) && !nextrecord) {
1576 1.264 roy if (so->so_error || so->so_rerror ||
1577 1.264 roy so->so_state & SS_CANTRCVMORE)
1578 1.1 cgd break;
1579 1.68 matt /*
1580 1.68 matt * If we are peeking and the socket receive buffer is
1581 1.68 matt * full, stop since we can't get more data to peek at.
1582 1.68 matt */
1583 1.68 matt if ((flags & MSG_PEEK) && sbspace(&so->so_rcv) <= 0)
1584 1.68 matt break;
1585 1.68 matt /*
1586 1.68 matt * If we've drained the socket buffer, tell the
1587 1.68 matt * protocol in case it needs to do something to
1588 1.68 matt * get it filled again.
1589 1.68 matt */
1590 1.68 matt if ((pr->pr_flags & PR_WANTRCVD) && so->so_pcb)
1591 1.233 rtr (*pr->pr_usrreqs->pr_rcvd)(so, flags, l);
1592 1.69 thorpej SBLASTRECORDCHK(&so->so_rcv, "soreceive sbwait 2");
1593 1.69 thorpej SBLASTMBUFCHK(&so->so_rcv, "soreceive sbwait 2");
1594 1.196 dsl if (wakeup_state & SS_RESTARTSYS)
1595 1.196 dsl error = ERESTART;
1596 1.196 dsl else
1597 1.196 dsl error = sbwait(&so->so_rcv);
1598 1.144 dyoung if (error != 0) {
1599 1.1 cgd sbunlock(&so->so_rcv);
1600 1.160 ad sounlock(so);
1601 1.1 cgd splx(s);
1602 1.144 dyoung return 0;
1603 1.1 cgd }
1604 1.21 christos if ((m = so->so_rcv.sb_mb) != NULL)
1605 1.1 cgd nextrecord = m->m_nextpkt;
1606 1.196 dsl wakeup_state = so->so_state;
1607 1.1 cgd }
1608 1.1 cgd }
1609 1.3 andrew
1610 1.146 dyoung if (m && atomic) {
1611 1.3 andrew flags |= MSG_TRUNC;
1612 1.3 andrew if ((flags & MSG_PEEK) == 0)
1613 1.3 andrew (void) sbdroprecord(&so->so_rcv);
1614 1.3 andrew }
1615 1.1 cgd if ((flags & MSG_PEEK) == 0) {
1616 1.144 dyoung if (m == NULL) {
1617 1.69 thorpej /*
1618 1.70 thorpej * First part is an inline SB_EMPTY_FIXUP(). Second
1619 1.69 thorpej * part makes sure sb_lastrecord is up-to-date if
1620 1.69 thorpej * there is still data in the socket buffer.
1621 1.69 thorpej */
1622 1.1 cgd so->so_rcv.sb_mb = nextrecord;
1623 1.69 thorpej if (so->so_rcv.sb_mb == NULL) {
1624 1.69 thorpej so->so_rcv.sb_mbtail = NULL;
1625 1.69 thorpej so->so_rcv.sb_lastrecord = NULL;
1626 1.69 thorpej } else if (nextrecord->m_nextpkt == NULL)
1627 1.69 thorpej so->so_rcv.sb_lastrecord = nextrecord;
1628 1.69 thorpej }
1629 1.69 thorpej SBLASTRECORDCHK(&so->so_rcv, "soreceive 4");
1630 1.69 thorpej SBLASTMBUFCHK(&so->so_rcv, "soreceive 4");
1631 1.1 cgd if (pr->pr_flags & PR_WANTRCVD && so->so_pcb)
1632 1.233 rtr (*pr->pr_usrreqs->pr_rcvd)(so, flags, l);
1633 1.1 cgd }
1634 1.3 andrew if (orig_resid == uio->uio_resid && orig_resid &&
1635 1.3 andrew (flags & MSG_EOR) == 0 && (so->so_state & SS_CANTRCVMORE) == 0) {
1636 1.3 andrew sbunlock(&so->so_rcv);
1637 1.3 andrew goto restart;
1638 1.3 andrew }
1639 1.108 perry
1640 1.144 dyoung if (flagsp != NULL)
1641 1.1 cgd *flagsp |= flags;
1642 1.270 maxv release:
1643 1.1 cgd sbunlock(&so->so_rcv);
1644 1.160 ad sounlock(so);
1645 1.1 cgd splx(s);
1646 1.144 dyoung return error;
1647 1.1 cgd }
1648 1.1 cgd
1649 1.14 mycroft int
1650 1.54 lukem soshutdown(struct socket *so, int how)
1651 1.1 cgd {
1652 1.270 maxv const struct protosw *pr;
1653 1.270 maxv int error;
1654 1.160 ad
1655 1.160 ad KASSERT(solocked(so));
1656 1.34 kleink
1657 1.54 lukem pr = so->so_proto;
1658 1.34 kleink if (!(how == SHUT_RD || how == SHUT_WR || how == SHUT_RDWR))
1659 1.270 maxv return EINVAL;
1660 1.1 cgd
1661 1.160 ad if (how == SHUT_RD || how == SHUT_RDWR) {
1662 1.1 cgd sorflush(so);
1663 1.160 ad error = 0;
1664 1.160 ad }
1665 1.34 kleink if (how == SHUT_WR || how == SHUT_RDWR)
1666 1.229 rtr error = (*pr->pr_usrreqs->pr_shutdown)(so);
1667 1.160 ad
1668 1.160 ad return error;
1669 1.1 cgd }
1670 1.1 cgd
1671 1.195 dsl void
1672 1.196 dsl sorestart(struct socket *so)
1673 1.188 ad {
1674 1.196 dsl /*
1675 1.196 dsl * An application has called close() on an fd on which another
1676 1.196 dsl * of its threads has called a socket system call.
1677 1.196 dsl * Mark this and wake everyone up, and code that would block again
1678 1.196 dsl * instead returns ERESTART.
1679 1.196 dsl * On system call re-entry the fd is validated and EBADF returned.
1680 1.196 dsl * Any other fd will block again on the 2nd syscall.
1681 1.196 dsl */
1682 1.188 ad solock(so);
1683 1.196 dsl so->so_state |= SS_RESTARTSYS;
1684 1.188 ad cv_broadcast(&so->so_cv);
1685 1.196 dsl cv_broadcast(&so->so_snd.sb_cv);
1686 1.196 dsl cv_broadcast(&so->so_rcv.sb_cv);
1687 1.188 ad sounlock(so);
1688 1.188 ad }
1689 1.188 ad
1690 1.14 mycroft void
1691 1.54 lukem sorflush(struct socket *so)
1692 1.1 cgd {
1693 1.270 maxv struct sockbuf *sb, asb;
1694 1.270 maxv const struct protosw *pr;
1695 1.160 ad
1696 1.160 ad KASSERT(solocked(so));
1697 1.1 cgd
1698 1.54 lukem sb = &so->so_rcv;
1699 1.54 lukem pr = so->so_proto;
1700 1.160 ad socantrcvmore(so);
1701 1.1 cgd sb->sb_flags |= SB_NOINTR;
1702 1.160 ad (void )sblock(sb, M_WAITOK);
1703 1.1 cgd sbunlock(sb);
1704 1.1 cgd asb = *sb;
1705 1.86 wrstuden /*
1706 1.86 wrstuden * Clear most of the sockbuf structure, but leave some of the
1707 1.86 wrstuden * fields valid.
1708 1.86 wrstuden */
1709 1.86 wrstuden memset(&sb->sb_startzero, 0,
1710 1.86 wrstuden sizeof(*sb) - offsetof(struct sockbuf, sb_startzero));
1711 1.160 ad if (pr->pr_flags & PR_RIGHTS && pr->pr_domain->dom_dispose) {
1712 1.160 ad sounlock(so);
1713 1.1 cgd (*pr->pr_domain->dom_dispose)(asb.sb_mb);
1714 1.160 ad solock(so);
1715 1.160 ad }
1716 1.98 christos sbrelease(&asb, so);
1717 1.1 cgd }
1718 1.1 cgd
1719 1.171 plunky /*
1720 1.171 plunky * internal set SOL_SOCKET options
1721 1.171 plunky */
1722 1.142 dyoung static int
1723 1.171 plunky sosetopt1(struct socket *so, const struct sockopt *sopt)
1724 1.1 cgd {
1725 1.275 pgoyette int error, opt;
1726 1.219 christos int optval = 0; /* XXX: gcc */
1727 1.171 plunky struct linger l;
1728 1.171 plunky struct timeval tv;
1729 1.142 dyoung
1730 1.275 pgoyette opt = sopt->sopt_name;
1731 1.275 pgoyette
1732 1.275 pgoyette switch (opt) {
1733 1.142 dyoung
1734 1.170 tls case SO_ACCEPTFILTER:
1735 1.177 ad error = accept_filt_setopt(so, sopt);
1736 1.177 ad KASSERT(solocked(so));
1737 1.170 tls break;
1738 1.170 tls
1739 1.253 ryo case SO_LINGER:
1740 1.253 ryo error = sockopt_get(sopt, &l, sizeof(l));
1741 1.177 ad solock(so);
1742 1.253 ryo if (error)
1743 1.253 ryo break;
1744 1.253 ryo if (l.l_linger < 0 || l.l_linger > USHRT_MAX ||
1745 1.253 ryo l.l_linger > (INT_MAX / hz)) {
1746 1.177 ad error = EDOM;
1747 1.177 ad break;
1748 1.177 ad }
1749 1.253 ryo so->so_linger = l.l_linger;
1750 1.253 ryo if (l.l_onoff)
1751 1.253 ryo so->so_options |= SO_LINGER;
1752 1.253 ryo else
1753 1.253 ryo so->so_options &= ~SO_LINGER;
1754 1.253 ryo break;
1755 1.1 cgd
1756 1.142 dyoung case SO_DEBUG:
1757 1.142 dyoung case SO_KEEPALIVE:
1758 1.142 dyoung case SO_DONTROUTE:
1759 1.142 dyoung case SO_USELOOPBACK:
1760 1.142 dyoung case SO_BROADCAST:
1761 1.142 dyoung case SO_REUSEADDR:
1762 1.142 dyoung case SO_REUSEPORT:
1763 1.142 dyoung case SO_OOBINLINE:
1764 1.142 dyoung case SO_TIMESTAMP:
1765 1.207 christos case SO_NOSIGPIPE:
1766 1.266 christos case SO_RERROR:
1767 1.171 plunky error = sockopt_getint(sopt, &optval);
1768 1.177 ad solock(so);
1769 1.171 plunky if (error)
1770 1.177 ad break;
1771 1.171 plunky if (optval)
1772 1.179 christos so->so_options |= opt;
1773 1.142 dyoung else
1774 1.179 christos so->so_options &= ~opt;
1775 1.142 dyoung break;
1776 1.142 dyoung
1777 1.142 dyoung case SO_SNDBUF:
1778 1.142 dyoung case SO_RCVBUF:
1779 1.142 dyoung case SO_SNDLOWAT:
1780 1.142 dyoung case SO_RCVLOWAT:
1781 1.171 plunky error = sockopt_getint(sopt, &optval);
1782 1.177 ad solock(so);
1783 1.171 plunky if (error)
1784 1.177 ad break;
1785 1.1 cgd
1786 1.142 dyoung /*
1787 1.142 dyoung * Values < 1 make no sense for any of these
1788 1.142 dyoung * options, so disallow them.
1789 1.142 dyoung */
1790 1.177 ad if (optval < 1) {
1791 1.177 ad error = EINVAL;
1792 1.177 ad break;
1793 1.177 ad }
1794 1.1 cgd
1795 1.179 christos switch (opt) {
1796 1.171 plunky case SO_SNDBUF:
1797 1.177 ad if (sbreserve(&so->so_snd, (u_long)optval, so) == 0) {
1798 1.177 ad error = ENOBUFS;
1799 1.177 ad break;
1800 1.177 ad }
1801 1.171 plunky so->so_snd.sb_flags &= ~SB_AUTOSIZE;
1802 1.171 plunky break;
1803 1.1 cgd
1804 1.1 cgd case SO_RCVBUF:
1805 1.177 ad if (sbreserve(&so->so_rcv, (u_long)optval, so) == 0) {
1806 1.177 ad error = ENOBUFS;
1807 1.177 ad break;
1808 1.177 ad }
1809 1.171 plunky so->so_rcv.sb_flags &= ~SB_AUTOSIZE;
1810 1.142 dyoung break;
1811 1.142 dyoung
1812 1.142 dyoung /*
1813 1.142 dyoung * Make sure the low-water is never greater than
1814 1.142 dyoung * the high-water.
1815 1.142 dyoung */
1816 1.1 cgd case SO_SNDLOWAT:
1817 1.171 plunky if (optval > so->so_snd.sb_hiwat)
1818 1.171 plunky optval = so->so_snd.sb_hiwat;
1819 1.171 plunky
1820 1.171 plunky so->so_snd.sb_lowat = optval;
1821 1.142 dyoung break;
1822 1.171 plunky
1823 1.1 cgd case SO_RCVLOWAT:
1824 1.171 plunky if (optval > so->so_rcv.sb_hiwat)
1825 1.171 plunky optval = so->so_rcv.sb_hiwat;
1826 1.171 plunky
1827 1.171 plunky so->so_rcv.sb_lowat = optval;
1828 1.142 dyoung break;
1829 1.142 dyoung }
1830 1.142 dyoung break;
1831 1.28 thorpej
1832 1.142 dyoung case SO_SNDTIMEO:
1833 1.142 dyoung case SO_RCVTIMEO:
1834 1.177 ad solock(so);
1835 1.278 pgoyette error = sockopt_get(sopt, &tv, sizeof(tv));
1836 1.171 plunky if (error)
1837 1.177 ad break;
1838 1.171 plunky
1839 1.274 maxv if (tv.tv_sec < 0 || tv.tv_usec < 0 || tv.tv_usec >= 1000000) {
1840 1.274 maxv error = EDOM;
1841 1.274 maxv break;
1842 1.274 maxv }
1843 1.177 ad if (tv.tv_sec > (INT_MAX - tv.tv_usec / tick) / hz) {
1844 1.177 ad error = EDOM;
1845 1.177 ad break;
1846 1.177 ad }
1847 1.28 thorpej
1848 1.171 plunky optval = tv.tv_sec * hz + tv.tv_usec / tick;
1849 1.171 plunky if (optval == 0 && tv.tv_usec != 0)
1850 1.171 plunky optval = 1;
1851 1.28 thorpej
1852 1.179 christos switch (opt) {
1853 1.142 dyoung case SO_SNDTIMEO:
1854 1.171 plunky so->so_snd.sb_timeo = optval;
1855 1.1 cgd break;
1856 1.1 cgd case SO_RCVTIMEO:
1857 1.171 plunky so->so_rcv.sb_timeo = optval;
1858 1.142 dyoung break;
1859 1.142 dyoung }
1860 1.142 dyoung break;
1861 1.1 cgd
1862 1.142 dyoung default:
1863 1.278 pgoyette MODULE_HOOK_CALL(uipc_socket_50_setopt1_hook,
1864 1.278 pgoyette (opt, so, sopt), enosys(), error);
1865 1.278 pgoyette if (error == ENOSYS || error == EPASSTHROUGH) {
1866 1.278 pgoyette solock(so);
1867 1.278 pgoyette error = ENOPROTOOPT;
1868 1.278 pgoyette }
1869 1.177 ad break;
1870 1.142 dyoung }
1871 1.177 ad KASSERT(solocked(so));
1872 1.177 ad return error;
1873 1.142 dyoung }
1874 1.1 cgd
1875 1.142 dyoung int
1876 1.171 plunky sosetopt(struct socket *so, struct sockopt *sopt)
1877 1.142 dyoung {
1878 1.142 dyoung int error, prerr;
1879 1.1 cgd
1880 1.177 ad if (sopt->sopt_level == SOL_SOCKET) {
1881 1.171 plunky error = sosetopt1(so, sopt);
1882 1.177 ad KASSERT(solocked(so));
1883 1.177 ad } else {
1884 1.142 dyoung error = ENOPROTOOPT;
1885 1.177 ad solock(so);
1886 1.177 ad }
1887 1.1 cgd
1888 1.142 dyoung if ((error == 0 || error == ENOPROTOOPT) &&
1889 1.142 dyoung so->so_proto != NULL && so->so_proto->pr_ctloutput != NULL) {
1890 1.142 dyoung /* give the protocol stack a shot */
1891 1.171 plunky prerr = (*so->so_proto->pr_ctloutput)(PRCO_SETOPT, so, sopt);
1892 1.142 dyoung if (prerr == 0)
1893 1.142 dyoung error = 0;
1894 1.142 dyoung else if (prerr != ENOPROTOOPT)
1895 1.142 dyoung error = prerr;
1896 1.171 plunky }
1897 1.160 ad sounlock(so);
1898 1.142 dyoung return error;
1899 1.1 cgd }
1900 1.1 cgd
1901 1.171 plunky /*
1902 1.171 plunky * so_setsockopt() is a wrapper providing a sockopt structure for sosetopt()
1903 1.171 plunky */
1904 1.171 plunky int
1905 1.171 plunky so_setsockopt(struct lwp *l, struct socket *so, int level, int name,
1906 1.171 plunky const void *val, size_t valsize)
1907 1.171 plunky {
1908 1.171 plunky struct sockopt sopt;
1909 1.171 plunky int error;
1910 1.171 plunky
1911 1.171 plunky KASSERT(valsize == 0 || val != NULL);
1912 1.171 plunky
1913 1.171 plunky sockopt_init(&sopt, level, name, valsize);
1914 1.171 plunky sockopt_set(&sopt, val, valsize);
1915 1.171 plunky
1916 1.171 plunky error = sosetopt(so, &sopt);
1917 1.171 plunky
1918 1.171 plunky sockopt_destroy(&sopt);
1919 1.171 plunky
1920 1.171 plunky return error;
1921 1.171 plunky }
1922 1.253 ryo
1923 1.171 plunky /*
1924 1.171 plunky * internal get SOL_SOCKET options
1925 1.171 plunky */
1926 1.171 plunky static int
1927 1.171 plunky sogetopt1(struct socket *so, struct sockopt *sopt)
1928 1.171 plunky {
1929 1.179 christos int error, optval, opt;
1930 1.171 plunky struct linger l;
1931 1.171 plunky struct timeval tv;
1932 1.171 plunky
1933 1.179 christos switch ((opt = sopt->sopt_name)) {
1934 1.171 plunky
1935 1.171 plunky case SO_ACCEPTFILTER:
1936 1.177 ad error = accept_filt_getopt(so, sopt);
1937 1.171 plunky break;
1938 1.171 plunky
1939 1.171 plunky case SO_LINGER:
1940 1.171 plunky l.l_onoff = (so->so_options & SO_LINGER) ? 1 : 0;
1941 1.171 plunky l.l_linger = so->so_linger;
1942 1.171 plunky
1943 1.171 plunky error = sockopt_set(sopt, &l, sizeof(l));
1944 1.171 plunky break;
1945 1.171 plunky
1946 1.171 plunky case SO_USELOOPBACK:
1947 1.171 plunky case SO_DONTROUTE:
1948 1.171 plunky case SO_DEBUG:
1949 1.171 plunky case SO_KEEPALIVE:
1950 1.171 plunky case SO_REUSEADDR:
1951 1.171 plunky case SO_REUSEPORT:
1952 1.171 plunky case SO_BROADCAST:
1953 1.171 plunky case SO_OOBINLINE:
1954 1.171 plunky case SO_TIMESTAMP:
1955 1.207 christos case SO_NOSIGPIPE:
1956 1.266 christos case SO_RERROR:
1957 1.218 seanb case SO_ACCEPTCONN:
1958 1.179 christos error = sockopt_setint(sopt, (so->so_options & opt) ? 1 : 0);
1959 1.171 plunky break;
1960 1.171 plunky
1961 1.171 plunky case SO_TYPE:
1962 1.171 plunky error = sockopt_setint(sopt, so->so_type);
1963 1.171 plunky break;
1964 1.171 plunky
1965 1.171 plunky case SO_ERROR:
1966 1.267 hannken if (so->so_error == 0) {
1967 1.267 hannken so->so_error = so->so_rerror;
1968 1.267 hannken so->so_rerror = 0;
1969 1.267 hannken }
1970 1.171 plunky error = sockopt_setint(sopt, so->so_error);
1971 1.171 plunky so->so_error = 0;
1972 1.171 plunky break;
1973 1.171 plunky
1974 1.171 plunky case SO_SNDBUF:
1975 1.171 plunky error = sockopt_setint(sopt, so->so_snd.sb_hiwat);
1976 1.171 plunky break;
1977 1.171 plunky
1978 1.171 plunky case SO_RCVBUF:
1979 1.171 plunky error = sockopt_setint(sopt, so->so_rcv.sb_hiwat);
1980 1.171 plunky break;
1981 1.171 plunky
1982 1.171 plunky case SO_SNDLOWAT:
1983 1.171 plunky error = sockopt_setint(sopt, so->so_snd.sb_lowat);
1984 1.171 plunky break;
1985 1.171 plunky
1986 1.171 plunky case SO_RCVLOWAT:
1987 1.171 plunky error = sockopt_setint(sopt, so->so_rcv.sb_lowat);
1988 1.171 plunky break;
1989 1.171 plunky
1990 1.171 plunky case SO_SNDTIMEO:
1991 1.171 plunky case SO_RCVTIMEO:
1992 1.179 christos optval = (opt == SO_SNDTIMEO ?
1993 1.171 plunky so->so_snd.sb_timeo : so->so_rcv.sb_timeo);
1994 1.171 plunky
1995 1.171 plunky tv.tv_sec = optval / hz;
1996 1.171 plunky tv.tv_usec = (optval % hz) * tick;
1997 1.171 plunky
1998 1.171 plunky error = sockopt_set(sopt, &tv, sizeof(tv));
1999 1.171 plunky break;
2000 1.171 plunky
2001 1.171 plunky case SO_OVERFLOWED:
2002 1.171 plunky error = sockopt_setint(sopt, so->so_rcv.sb_overflowed);
2003 1.171 plunky break;
2004 1.171 plunky
2005 1.171 plunky default:
2006 1.275 pgoyette MODULE_HOOK_CALL(uipc_socket_50_getopt1_hook,
2007 1.278 pgoyette (opt, so, sopt), enosys(), error);
2008 1.275 pgoyette if (error)
2009 1.275 pgoyette error = ENOPROTOOPT;
2010 1.171 plunky break;
2011 1.171 plunky }
2012 1.171 plunky
2013 1.270 maxv return error;
2014 1.171 plunky }
2015 1.171 plunky
2016 1.14 mycroft int
2017 1.171 plunky sogetopt(struct socket *so, struct sockopt *sopt)
2018 1.1 cgd {
2019 1.270 maxv int error;
2020 1.1 cgd
2021 1.160 ad solock(so);
2022 1.171 plunky if (sopt->sopt_level != SOL_SOCKET) {
2023 1.1 cgd if (so->so_proto && so->so_proto->pr_ctloutput) {
2024 1.160 ad error = ((*so->so_proto->pr_ctloutput)
2025 1.171 plunky (PRCO_GETOPT, so, sopt));
2026 1.1 cgd } else
2027 1.160 ad error = (ENOPROTOOPT);
2028 1.1 cgd } else {
2029 1.171 plunky error = sogetopt1(so, sopt);
2030 1.171 plunky }
2031 1.171 plunky sounlock(so);
2032 1.270 maxv return error;
2033 1.171 plunky }
2034 1.171 plunky
2035 1.171 plunky /*
2036 1.171 plunky * alloc sockopt data buffer buffer
2037 1.171 plunky * - will be released at destroy
2038 1.171 plunky */
2039 1.176 plunky static int
2040 1.176 plunky sockopt_alloc(struct sockopt *sopt, size_t len, km_flag_t kmflag)
2041 1.171 plunky {
2042 1.171 plunky
2043 1.171 plunky KASSERT(sopt->sopt_size == 0);
2044 1.171 plunky
2045 1.176 plunky if (len > sizeof(sopt->sopt_buf)) {
2046 1.176 plunky sopt->sopt_data = kmem_zalloc(len, kmflag);
2047 1.176 plunky if (sopt->sopt_data == NULL)
2048 1.176 plunky return ENOMEM;
2049 1.176 plunky } else
2050 1.171 plunky sopt->sopt_data = sopt->sopt_buf;
2051 1.171 plunky
2052 1.171 plunky sopt->sopt_size = len;
2053 1.176 plunky return 0;
2054 1.171 plunky }
2055 1.171 plunky
2056 1.171 plunky /*
2057 1.171 plunky * initialise sockopt storage
2058 1.176 plunky * - MAY sleep during allocation
2059 1.171 plunky */
2060 1.171 plunky void
2061 1.171 plunky sockopt_init(struct sockopt *sopt, int level, int name, size_t size)
2062 1.171 plunky {
2063 1.1 cgd
2064 1.171 plunky memset(sopt, 0, sizeof(*sopt));
2065 1.1 cgd
2066 1.171 plunky sopt->sopt_level = level;
2067 1.171 plunky sopt->sopt_name = name;
2068 1.176 plunky (void)sockopt_alloc(sopt, size, KM_SLEEP);
2069 1.171 plunky }
2070 1.171 plunky
2071 1.171 plunky /*
2072 1.171 plunky * destroy sockopt storage
2073 1.171 plunky * - will release any held memory references
2074 1.171 plunky */
2075 1.171 plunky void
2076 1.171 plunky sockopt_destroy(struct sockopt *sopt)
2077 1.171 plunky {
2078 1.171 plunky
2079 1.171 plunky if (sopt->sopt_data != sopt->sopt_buf)
2080 1.173 plunky kmem_free(sopt->sopt_data, sopt->sopt_size);
2081 1.171 plunky
2082 1.171 plunky memset(sopt, 0, sizeof(*sopt));
2083 1.171 plunky }
2084 1.171 plunky
2085 1.171 plunky /*
2086 1.171 plunky * set sockopt value
2087 1.171 plunky * - value is copied into sockopt
2088 1.253 ryo * - memory is allocated when necessary, will not sleep
2089 1.171 plunky */
2090 1.171 plunky int
2091 1.171 plunky sockopt_set(struct sockopt *sopt, const void *buf, size_t len)
2092 1.171 plunky {
2093 1.176 plunky int error;
2094 1.171 plunky
2095 1.176 plunky if (sopt->sopt_size == 0) {
2096 1.176 plunky error = sockopt_alloc(sopt, len, KM_NOSLEEP);
2097 1.176 plunky if (error)
2098 1.176 plunky return error;
2099 1.176 plunky }
2100 1.171 plunky
2101 1.279 christos sopt->sopt_retsize = MIN(sopt->sopt_size, len);
2102 1.285 maxv if (sopt->sopt_retsize > 0) {
2103 1.285 maxv memcpy(sopt->sopt_data, buf, sopt->sopt_retsize);
2104 1.285 maxv }
2105 1.259 christos
2106 1.171 plunky return 0;
2107 1.171 plunky }
2108 1.171 plunky
2109 1.171 plunky /*
2110 1.171 plunky * common case of set sockopt integer value
2111 1.171 plunky */
2112 1.171 plunky int
2113 1.171 plunky sockopt_setint(struct sockopt *sopt, int val)
2114 1.171 plunky {
2115 1.171 plunky
2116 1.171 plunky return sockopt_set(sopt, &val, sizeof(int));
2117 1.171 plunky }
2118 1.171 plunky
2119 1.171 plunky /*
2120 1.171 plunky * get sockopt value
2121 1.171 plunky * - correct size must be given
2122 1.171 plunky */
2123 1.171 plunky int
2124 1.171 plunky sockopt_get(const struct sockopt *sopt, void *buf, size_t len)
2125 1.171 plunky {
2126 1.170 tls
2127 1.171 plunky if (sopt->sopt_size != len)
2128 1.171 plunky return EINVAL;
2129 1.1 cgd
2130 1.171 plunky memcpy(buf, sopt->sopt_data, len);
2131 1.171 plunky return 0;
2132 1.171 plunky }
2133 1.1 cgd
2134 1.171 plunky /*
2135 1.171 plunky * common case of get sockopt integer value
2136 1.171 plunky */
2137 1.171 plunky int
2138 1.171 plunky sockopt_getint(const struct sockopt *sopt, int *valp)
2139 1.171 plunky {
2140 1.1 cgd
2141 1.171 plunky return sockopt_get(sopt, valp, sizeof(int));
2142 1.171 plunky }
2143 1.1 cgd
2144 1.171 plunky /*
2145 1.171 plunky * set sockopt value from mbuf
2146 1.171 plunky * - ONLY for legacy code
2147 1.171 plunky * - mbuf is released by sockopt
2148 1.176 plunky * - will not sleep
2149 1.171 plunky */
2150 1.171 plunky int
2151 1.171 plunky sockopt_setmbuf(struct sockopt *sopt, struct mbuf *m)
2152 1.171 plunky {
2153 1.171 plunky size_t len;
2154 1.176 plunky int error;
2155 1.1 cgd
2156 1.171 plunky len = m_length(m);
2157 1.1 cgd
2158 1.176 plunky if (sopt->sopt_size == 0) {
2159 1.176 plunky error = sockopt_alloc(sopt, len, KM_NOSLEEP);
2160 1.176 plunky if (error)
2161 1.176 plunky return error;
2162 1.176 plunky }
2163 1.1 cgd
2164 1.279 christos sopt->sopt_retsize = MIN(sopt->sopt_size, len);
2165 1.279 christos m_copydata(m, 0, sopt->sopt_retsize, sopt->sopt_data);
2166 1.171 plunky m_freem(m);
2167 1.1 cgd
2168 1.171 plunky return 0;
2169 1.171 plunky }
2170 1.1 cgd
2171 1.171 plunky /*
2172 1.171 plunky * get sockopt value into mbuf
2173 1.171 plunky * - ONLY for legacy code
2174 1.171 plunky * - mbuf to be released by the caller
2175 1.176 plunky * - will not sleep
2176 1.171 plunky */
2177 1.171 plunky struct mbuf *
2178 1.171 plunky sockopt_getmbuf(const struct sockopt *sopt)
2179 1.171 plunky {
2180 1.171 plunky struct mbuf *m;
2181 1.107 darrenr
2182 1.176 plunky if (sopt->sopt_size > MCLBYTES)
2183 1.176 plunky return NULL;
2184 1.176 plunky
2185 1.176 plunky m = m_get(M_DONTWAIT, MT_SOOPTS);
2186 1.171 plunky if (m == NULL)
2187 1.171 plunky return NULL;
2188 1.171 plunky
2189 1.176 plunky if (sopt->sopt_size > MLEN) {
2190 1.176 plunky MCLGET(m, M_DONTWAIT);
2191 1.176 plunky if ((m->m_flags & M_EXT) == 0) {
2192 1.176 plunky m_free(m);
2193 1.176 plunky return NULL;
2194 1.176 plunky }
2195 1.1 cgd }
2196 1.176 plunky
2197 1.176 plunky memcpy(mtod(m, void *), sopt->sopt_data, sopt->sopt_size);
2198 1.176 plunky m->m_len = sopt->sopt_size;
2199 1.160 ad
2200 1.171 plunky return m;
2201 1.1 cgd }
2202 1.1 cgd
2203 1.14 mycroft void
2204 1.54 lukem sohasoutofband(struct socket *so)
2205 1.1 cgd {
2206 1.153 rmind
2207 1.90 christos fownsignal(so->so_pgid, SIGURG, POLL_PRI, POLLPRI|POLLRDBAND, so);
2208 1.189 ad selnotify(&so->so_rcv.sb_sel, POLLPRI | POLLRDBAND, NOTE_SUBMIT);
2209 1.1 cgd }
2210 1.72 jdolecek
2211 1.72 jdolecek static void
2212 1.72 jdolecek filt_sordetach(struct knote *kn)
2213 1.72 jdolecek {
2214 1.270 maxv struct socket *so;
2215 1.72 jdolecek
2216 1.235 matt so = ((file_t *)kn->kn_obj)->f_socket;
2217 1.160 ad solock(so);
2218 1.73 christos SLIST_REMOVE(&so->so_rcv.sb_sel.sel_klist, kn, knote, kn_selnext);
2219 1.73 christos if (SLIST_EMPTY(&so->so_rcv.sb_sel.sel_klist))
2220 1.72 jdolecek so->so_rcv.sb_flags &= ~SB_KNOTE;
2221 1.160 ad sounlock(so);
2222 1.72 jdolecek }
2223 1.72 jdolecek
2224 1.72 jdolecek /*ARGSUSED*/
2225 1.72 jdolecek static int
2226 1.129 yamt filt_soread(struct knote *kn, long hint)
2227 1.72 jdolecek {
2228 1.270 maxv struct socket *so;
2229 1.160 ad int rv;
2230 1.72 jdolecek
2231 1.235 matt so = ((file_t *)kn->kn_obj)->f_socket;
2232 1.160 ad if (hint != NOTE_SUBMIT)
2233 1.160 ad solock(so);
2234 1.72 jdolecek kn->kn_data = so->so_rcv.sb_cc;
2235 1.72 jdolecek if (so->so_state & SS_CANTRCVMORE) {
2236 1.108 perry kn->kn_flags |= EV_EOF;
2237 1.72 jdolecek kn->kn_fflags = so->so_error;
2238 1.160 ad rv = 1;
2239 1.264 roy } else if (so->so_error || so->so_rerror)
2240 1.160 ad rv = 1;
2241 1.160 ad else if (kn->kn_sfflags & NOTE_LOWAT)
2242 1.160 ad rv = (kn->kn_data >= kn->kn_sdata);
2243 1.253 ryo else
2244 1.160 ad rv = (kn->kn_data >= so->so_rcv.sb_lowat);
2245 1.160 ad if (hint != NOTE_SUBMIT)
2246 1.160 ad sounlock(so);
2247 1.160 ad return rv;
2248 1.72 jdolecek }
2249 1.72 jdolecek
2250 1.72 jdolecek static void
2251 1.72 jdolecek filt_sowdetach(struct knote *kn)
2252 1.72 jdolecek {
2253 1.270 maxv struct socket *so;
2254 1.72 jdolecek
2255 1.235 matt so = ((file_t *)kn->kn_obj)->f_socket;
2256 1.160 ad solock(so);
2257 1.73 christos SLIST_REMOVE(&so->so_snd.sb_sel.sel_klist, kn, knote, kn_selnext);
2258 1.73 christos if (SLIST_EMPTY(&so->so_snd.sb_sel.sel_klist))
2259 1.72 jdolecek so->so_snd.sb_flags &= ~SB_KNOTE;
2260 1.160 ad sounlock(so);
2261 1.72 jdolecek }
2262 1.72 jdolecek
2263 1.72 jdolecek /*ARGSUSED*/
2264 1.72 jdolecek static int
2265 1.129 yamt filt_sowrite(struct knote *kn, long hint)
2266 1.72 jdolecek {
2267 1.270 maxv struct socket *so;
2268 1.160 ad int rv;
2269 1.72 jdolecek
2270 1.235 matt so = ((file_t *)kn->kn_obj)->f_socket;
2271 1.160 ad if (hint != NOTE_SUBMIT)
2272 1.160 ad solock(so);
2273 1.72 jdolecek kn->kn_data = sbspace(&so->so_snd);
2274 1.72 jdolecek if (so->so_state & SS_CANTSENDMORE) {
2275 1.108 perry kn->kn_flags |= EV_EOF;
2276 1.72 jdolecek kn->kn_fflags = so->so_error;
2277 1.160 ad rv = 1;
2278 1.261 roy } else if (so->so_error)
2279 1.160 ad rv = 1;
2280 1.160 ad else if (((so->so_state & SS_ISCONNECTED) == 0) &&
2281 1.72 jdolecek (so->so_proto->pr_flags & PR_CONNREQUIRED))
2282 1.160 ad rv = 0;
2283 1.160 ad else if (kn->kn_sfflags & NOTE_LOWAT)
2284 1.160 ad rv = (kn->kn_data >= kn->kn_sdata);
2285 1.160 ad else
2286 1.160 ad rv = (kn->kn_data >= so->so_snd.sb_lowat);
2287 1.160 ad if (hint != NOTE_SUBMIT)
2288 1.160 ad sounlock(so);
2289 1.160 ad return rv;
2290 1.72 jdolecek }
2291 1.72 jdolecek
2292 1.72 jdolecek /*ARGSUSED*/
2293 1.72 jdolecek static int
2294 1.129 yamt filt_solisten(struct knote *kn, long hint)
2295 1.72 jdolecek {
2296 1.270 maxv struct socket *so;
2297 1.160 ad int rv;
2298 1.72 jdolecek
2299 1.235 matt so = ((file_t *)kn->kn_obj)->f_socket;
2300 1.72 jdolecek
2301 1.72 jdolecek /*
2302 1.72 jdolecek * Set kn_data to number of incoming connections, not
2303 1.72 jdolecek * counting partial (incomplete) connections.
2304 1.108 perry */
2305 1.160 ad if (hint != NOTE_SUBMIT)
2306 1.160 ad solock(so);
2307 1.72 jdolecek kn->kn_data = so->so_qlen;
2308 1.160 ad rv = (kn->kn_data > 0);
2309 1.160 ad if (hint != NOTE_SUBMIT)
2310 1.160 ad sounlock(so);
2311 1.160 ad return rv;
2312 1.72 jdolecek }
2313 1.72 jdolecek
2314 1.257 maya static const struct filterops solisten_filtops = {
2315 1.257 maya .f_isfd = 1,
2316 1.257 maya .f_attach = NULL,
2317 1.257 maya .f_detach = filt_sordetach,
2318 1.257 maya .f_event = filt_solisten,
2319 1.257 maya };
2320 1.257 maya
2321 1.257 maya static const struct filterops soread_filtops = {
2322 1.257 maya .f_isfd = 1,
2323 1.257 maya .f_attach = NULL,
2324 1.257 maya .f_detach = filt_sordetach,
2325 1.257 maya .f_event = filt_soread,
2326 1.257 maya };
2327 1.257 maya
2328 1.257 maya static const struct filterops sowrite_filtops = {
2329 1.257 maya .f_isfd = 1,
2330 1.257 maya .f_attach = NULL,
2331 1.257 maya .f_detach = filt_sowdetach,
2332 1.257 maya .f_event = filt_sowrite,
2333 1.257 maya };
2334 1.72 jdolecek
2335 1.72 jdolecek int
2336 1.129 yamt soo_kqfilter(struct file *fp, struct knote *kn)
2337 1.72 jdolecek {
2338 1.270 maxv struct socket *so;
2339 1.270 maxv struct sockbuf *sb;
2340 1.72 jdolecek
2341 1.235 matt so = ((file_t *)kn->kn_obj)->f_socket;
2342 1.160 ad solock(so);
2343 1.72 jdolecek switch (kn->kn_filter) {
2344 1.72 jdolecek case EVFILT_READ:
2345 1.72 jdolecek if (so->so_options & SO_ACCEPTCONN)
2346 1.72 jdolecek kn->kn_fop = &solisten_filtops;
2347 1.72 jdolecek else
2348 1.72 jdolecek kn->kn_fop = &soread_filtops;
2349 1.72 jdolecek sb = &so->so_rcv;
2350 1.72 jdolecek break;
2351 1.72 jdolecek case EVFILT_WRITE:
2352 1.72 jdolecek kn->kn_fop = &sowrite_filtops;
2353 1.72 jdolecek sb = &so->so_snd;
2354 1.72 jdolecek break;
2355 1.72 jdolecek default:
2356 1.160 ad sounlock(so);
2357 1.270 maxv return EINVAL;
2358 1.72 jdolecek }
2359 1.73 christos SLIST_INSERT_HEAD(&sb->sb_sel.sel_klist, kn, kn_selnext);
2360 1.72 jdolecek sb->sb_flags |= SB_KNOTE;
2361 1.160 ad sounlock(so);
2362 1.270 maxv return 0;
2363 1.72 jdolecek }
2364 1.72 jdolecek
2365 1.154 ad static int
2366 1.154 ad sodopoll(struct socket *so, int events)
2367 1.154 ad {
2368 1.154 ad int revents;
2369 1.154 ad
2370 1.154 ad revents = 0;
2371 1.154 ad
2372 1.154 ad if (events & (POLLIN | POLLRDNORM))
2373 1.154 ad if (soreadable(so))
2374 1.154 ad revents |= events & (POLLIN | POLLRDNORM);
2375 1.154 ad
2376 1.154 ad if (events & (POLLOUT | POLLWRNORM))
2377 1.154 ad if (sowritable(so))
2378 1.154 ad revents |= events & (POLLOUT | POLLWRNORM);
2379 1.154 ad
2380 1.154 ad if (events & (POLLPRI | POLLRDBAND))
2381 1.154 ad if (so->so_oobmark || (so->so_state & SS_RCVATMARK))
2382 1.154 ad revents |= events & (POLLPRI | POLLRDBAND);
2383 1.154 ad
2384 1.154 ad return revents;
2385 1.154 ad }
2386 1.154 ad
2387 1.154 ad int
2388 1.154 ad sopoll(struct socket *so, int events)
2389 1.154 ad {
2390 1.154 ad int revents = 0;
2391 1.154 ad
2392 1.160 ad #ifndef DIAGNOSTIC
2393 1.160 ad /*
2394 1.160 ad * Do a quick, unlocked check in expectation that the socket
2395 1.160 ad * will be ready for I/O. Don't do this check if DIAGNOSTIC,
2396 1.160 ad * as the solocked() assertions will fail.
2397 1.160 ad */
2398 1.154 ad if ((revents = sodopoll(so, events)) != 0)
2399 1.154 ad return revents;
2400 1.160 ad #endif
2401 1.154 ad
2402 1.160 ad solock(so);
2403 1.154 ad if ((revents = sodopoll(so, events)) == 0) {
2404 1.154 ad if (events & (POLLIN | POLLPRI | POLLRDNORM | POLLRDBAND)) {
2405 1.154 ad selrecord(curlwp, &so->so_rcv.sb_sel);
2406 1.160 ad so->so_rcv.sb_flags |= SB_NOTIFY;
2407 1.154 ad }
2408 1.154 ad
2409 1.154 ad if (events & (POLLOUT | POLLWRNORM)) {
2410 1.154 ad selrecord(curlwp, &so->so_snd.sb_sel);
2411 1.160 ad so->so_snd.sb_flags |= SB_NOTIFY;
2412 1.154 ad }
2413 1.154 ad }
2414 1.160 ad sounlock(so);
2415 1.154 ad
2416 1.154 ad return revents;
2417 1.154 ad }
2418 1.154 ad
2419 1.256 christos struct mbuf **
2420 1.262 maxv sbsavetimestamp(int opt, struct mbuf **mp)
2421 1.256 christos {
2422 1.256 christos struct timeval tv;
2423 1.275 pgoyette int error;
2424 1.275 pgoyette
2425 1.256 christos microtime(&tv);
2426 1.256 christos
2427 1.284 pgoyette MODULE_HOOK_CALL(uipc_socket_50_sbts_hook, (opt, &mp), enosys(), error);
2428 1.275 pgoyette if (error == 0)
2429 1.275 pgoyette return mp;
2430 1.256 christos
2431 1.256 christos if (opt & SO_TIMESTAMP) {
2432 1.256 christos *mp = sbcreatecontrol(&tv, sizeof(tv),
2433 1.256 christos SCM_TIMESTAMP, SOL_SOCKET);
2434 1.256 christos if (*mp)
2435 1.256 christos mp = &(*mp)->m_next;
2436 1.256 christos }
2437 1.256 christos return mp;
2438 1.256 christos }
2439 1.256 christos
2440 1.154 ad
2441 1.94 yamt #include <sys/sysctl.h>
2442 1.94 yamt
2443 1.94 yamt static int sysctl_kern_somaxkva(SYSCTLFN_PROTO);
2444 1.212 pooka static int sysctl_kern_sbmax(SYSCTLFN_PROTO);
2445 1.94 yamt
2446 1.94 yamt /*
2447 1.94 yamt * sysctl helper routine for kern.somaxkva. ensures that the given
2448 1.94 yamt * value is not too small.
2449 1.94 yamt * (XXX should we maybe make sure it's not too large as well?)
2450 1.94 yamt */
2451 1.94 yamt static int
2452 1.94 yamt sysctl_kern_somaxkva(SYSCTLFN_ARGS)
2453 1.94 yamt {
2454 1.94 yamt int error, new_somaxkva;
2455 1.94 yamt struct sysctlnode node;
2456 1.94 yamt
2457 1.94 yamt new_somaxkva = somaxkva;
2458 1.94 yamt node = *rnode;
2459 1.94 yamt node.sysctl_data = &new_somaxkva;
2460 1.94 yamt error = sysctl_lookup(SYSCTLFN_CALL(&node));
2461 1.94 yamt if (error || newp == NULL)
2462 1.270 maxv return error;
2463 1.94 yamt
2464 1.94 yamt if (new_somaxkva < (16 * 1024 * 1024)) /* sanity */
2465 1.270 maxv return EINVAL;
2466 1.94 yamt
2467 1.136 ad mutex_enter(&so_pendfree_lock);
2468 1.94 yamt somaxkva = new_somaxkva;
2469 1.136 ad cv_broadcast(&socurkva_cv);
2470 1.136 ad mutex_exit(&so_pendfree_lock);
2471 1.94 yamt
2472 1.270 maxv return error;
2473 1.94 yamt }
2474 1.94 yamt
2475 1.212 pooka /*
2476 1.212 pooka * sysctl helper routine for kern.sbmax. Basically just ensures that
2477 1.212 pooka * any new value is not too small.
2478 1.212 pooka */
2479 1.212 pooka static int
2480 1.212 pooka sysctl_kern_sbmax(SYSCTLFN_ARGS)
2481 1.212 pooka {
2482 1.212 pooka int error, new_sbmax;
2483 1.212 pooka struct sysctlnode node;
2484 1.212 pooka
2485 1.212 pooka new_sbmax = sb_max;
2486 1.212 pooka node = *rnode;
2487 1.212 pooka node.sysctl_data = &new_sbmax;
2488 1.212 pooka error = sysctl_lookup(SYSCTLFN_CALL(&node));
2489 1.212 pooka if (error || newp == NULL)
2490 1.270 maxv return error;
2491 1.212 pooka
2492 1.212 pooka KERNEL_LOCK(1, NULL);
2493 1.212 pooka error = sb_max_set(new_sbmax);
2494 1.212 pooka KERNEL_UNLOCK_ONE(NULL);
2495 1.212 pooka
2496 1.270 maxv return error;
2497 1.212 pooka }
2498 1.212 pooka
2499 1.266 christos /*
2500 1.266 christos * sysctl helper routine for kern.sooptions. Ensures that only allowed
2501 1.266 christos * options can be set.
2502 1.266 christos */
2503 1.266 christos static int
2504 1.266 christos sysctl_kern_sooptions(SYSCTLFN_ARGS)
2505 1.266 christos {
2506 1.266 christos int error, new_options;
2507 1.266 christos struct sysctlnode node;
2508 1.266 christos
2509 1.266 christos new_options = sooptions;
2510 1.266 christos node = *rnode;
2511 1.266 christos node.sysctl_data = &new_options;
2512 1.266 christos error = sysctl_lookup(SYSCTLFN_CALL(&node));
2513 1.266 christos if (error || newp == NULL)
2514 1.266 christos return error;
2515 1.266 christos
2516 1.266 christos if (new_options & ~SO_DEFOPTS)
2517 1.266 christos return EINVAL;
2518 1.266 christos
2519 1.266 christos sooptions = new_options;
2520 1.266 christos
2521 1.266 christos return 0;
2522 1.266 christos }
2523 1.266 christos
2524 1.178 pooka static void
2525 1.212 pooka sysctl_kern_socket_setup(void)
2526 1.94 yamt {
2527 1.94 yamt
2528 1.178 pooka KASSERT(socket_sysctllog == NULL);
2529 1.97 atatat
2530 1.178 pooka sysctl_createv(&socket_sysctllog, 0, NULL, NULL,
2531 1.97 atatat CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
2532 1.103 atatat CTLTYPE_INT, "somaxkva",
2533 1.103 atatat SYSCTL_DESCR("Maximum amount of kernel memory to be "
2534 1.270 maxv "used for socket buffers"),
2535 1.94 yamt sysctl_kern_somaxkva, 0, NULL, 0,
2536 1.94 yamt CTL_KERN, KERN_SOMAXKVA, CTL_EOL);
2537 1.212 pooka
2538 1.212 pooka sysctl_createv(&socket_sysctllog, 0, NULL, NULL,
2539 1.212 pooka CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
2540 1.212 pooka CTLTYPE_INT, "sbmax",
2541 1.212 pooka SYSCTL_DESCR("Maximum socket buffer size"),
2542 1.212 pooka sysctl_kern_sbmax, 0, NULL, 0,
2543 1.212 pooka CTL_KERN, KERN_SBMAX, CTL_EOL);
2544 1.266 christos
2545 1.266 christos sysctl_createv(&socket_sysctllog, 0, NULL, NULL,
2546 1.266 christos CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
2547 1.266 christos CTLTYPE_INT, "sooptions",
2548 1.266 christos SYSCTL_DESCR("Default socket options"),
2549 1.266 christos sysctl_kern_sooptions, 0, NULL, 0,
2550 1.266 christos CTL_KERN, CTL_CREATE, CTL_EOL);
2551 1.94 yamt }
2552