]>
Commit | Line | Data |
---|---|---|
1c79356b | 1 | /* |
d9a64523 | 2 | * Copyright (c) 1998-2018 Apple Inc. All rights reserved. |
5d5c5d0d | 3 | * |
2d21ac55 | 4 | * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ |
39236c6e | 5 | * |
2d21ac55 A |
6 | * This file contains Original Code and/or Modifications of Original Code |
7 | * as defined in and that are subject to the Apple Public Source License | |
8 | * Version 2.0 (the 'License'). You may not use this file except in | |
9 | * compliance with the License. The rights granted to you under the License | |
10 | * may not be used to create, or enable the creation or redistribution of, | |
11 | * unlawful or unlicensed copies of an Apple operating system, or to | |
12 | * circumvent, violate, or enable the circumvention or violation of, any | |
13 | * terms of an Apple operating system software license agreement. | |
39236c6e | 14 | * |
2d21ac55 A |
15 | * Please obtain a copy of the License at |
16 | * http://www.opensource.apple.com/apsl/ and read it before using this file. | |
39236c6e | 17 | * |
2d21ac55 A |
18 | * The Original Code and all software distributed under the License are |
19 | * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER | |
8f6c56a5 A |
20 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, |
21 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
2d21ac55 A |
22 | * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. |
23 | * Please see the License for the specific language governing rights and | |
24 | * limitations under the License. | |
39236c6e | 25 | * |
2d21ac55 | 26 | * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ |
1c79356b | 27 | */ |
1c79356b A |
28 | /* Copyright (c) 1995 NeXT Computer, Inc. All Rights Reserved */ |
29 | /* | |
30 | * Copyright (c) 1982, 1986, 1988, 1990, 1993 | |
31 | * The Regents of the University of California. All rights reserved. | |
32 | * | |
33 | * Redistribution and use in source and binary forms, with or without | |
34 | * modification, are permitted provided that the following conditions | |
35 | * are met: | |
36 | * 1. Redistributions of source code must retain the above copyright | |
37 | * notice, this list of conditions and the following disclaimer. | |
38 | * 2. Redistributions in binary form must reproduce the above copyright | |
39 | * notice, this list of conditions and the following disclaimer in the | |
40 | * documentation and/or other materials provided with the distribution. | |
41 | * 3. All advertising materials mentioning features or use of this software | |
42 | * must display the following acknowledgement: | |
43 | * This product includes software developed by the University of | |
44 | * California, Berkeley and its contributors. | |
45 | * 4. Neither the name of the University nor the names of its contributors | |
46 | * may be used to endorse or promote products derived from this software | |
47 | * without specific prior written permission. | |
48 | * | |
49 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | |
50 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
51 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
52 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | |
53 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | |
54 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | |
55 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
56 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | |
57 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | |
58 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | |
59 | * SUCH DAMAGE. | |
60 | * | |
9bccf70c | 61 | * @(#)uipc_socket.c 8.3 (Berkeley) 4/15/94 |
1c79356b | 62 | */ |
2d21ac55 A |
63 | /* |
64 | * NOTICE: This file was modified by SPARTA, Inc. in 2005 to introduce | |
65 | * support for mandatory and extensible security protections. This notice | |
66 | * is included in support of clause 2.2 (b) of the Apple Public License, | |
67 | * Version 2.0. | |
68 | */ | |
1c79356b A |
69 | |
70 | #include <sys/param.h> | |
71 | #include <sys/systm.h> | |
55e303ae | 72 | #include <sys/filedesc.h> |
2d21ac55 | 73 | #include <sys/proc.h> |
91447636 A |
74 | #include <sys/proc_internal.h> |
75 | #include <sys/kauth.h> | |
76 | #include <sys/file_internal.h> | |
1c79356b A |
77 | #include <sys/fcntl.h> |
78 | #include <sys/malloc.h> | |
79 | #include <sys/mbuf.h> | |
80 | #include <sys/domain.h> | |
81 | #include <sys/kernel.h> | |
55e303ae | 82 | #include <sys/event.h> |
1c79356b A |
83 | #include <sys/poll.h> |
84 | #include <sys/protosw.h> | |
85 | #include <sys/socket.h> | |
86 | #include <sys/socketvar.h> | |
87 | #include <sys/resourcevar.h> | |
88 | #include <sys/signalvar.h> | |
89 | #include <sys/sysctl.h> | |
39236c6e | 90 | #include <sys/syslog.h> |
1c79356b | 91 | #include <sys/uio.h> |
fe8ab488 | 92 | #include <sys/uio_internal.h> |
1c79356b A |
93 | #include <sys/ev.h> |
94 | #include <sys/kdebug.h> | |
2d21ac55 | 95 | #include <sys/un.h> |
d1ecb069 | 96 | #include <sys/user.h> |
316670eb | 97 | #include <sys/priv.h> |
39236c6e | 98 | #include <sys/kern_event.h> |
1c79356b | 99 | #include <net/route.h> |
39236c6e | 100 | #include <net/init.h> |
5ba3f43e | 101 | #include <net/net_api_stats.h> |
316670eb | 102 | #include <net/ntstat.h> |
fe8ab488 | 103 | #include <net/content_filter.h> |
1c79356b A |
104 | #include <netinet/in.h> |
105 | #include <netinet/in_pcb.h> | |
39037602 A |
106 | #include <netinet/in_tclass.h> |
107 | #include <netinet/tcp_var.h> | |
6d2010ae A |
108 | #include <netinet/ip6.h> |
109 | #include <netinet6/ip6_var.h> | |
39236c6e | 110 | #include <netinet/flow_divert.h> |
1c79356b | 111 | #include <kern/zalloc.h> |
91447636 | 112 | #include <kern/locks.h> |
1c79356b | 113 | #include <machine/limits.h> |
2d21ac55 A |
114 | #include <libkern/OSAtomic.h> |
115 | #include <pexpert/pexpert.h> | |
b0d623f7 | 116 | #include <kern/assert.h> |
6d2010ae | 117 | #include <kern/task.h> |
39037602 A |
118 | #include <kern/policy_internal.h> |
119 | ||
316670eb | 120 | #include <sys/kpi_mbuf.h> |
6d2010ae | 121 | #include <sys/mcache.h> |
fe8ab488 | 122 | #include <sys/unpcb.h> |
5ba3f43e | 123 | #include <libkern/section_keywords.h> |
2d21ac55 A |
124 | |
125 | #if CONFIG_MACF | |
2d21ac55 A |
126 | #include <security/mac_framework.h> |
127 | #endif /* MAC */ | |
128 | ||
39236c6e A |
129 | #if MULTIPATH |
130 | #include <netinet/mp_pcb.h> | |
fe8ab488 | 131 | #include <netinet/mptcp_var.h> |
39236c6e A |
132 | #endif /* MULTIPATH */ |
133 | ||
3e170ce0 A |
134 | #define ROUNDUP(a, b) (((a) + ((b) - 1)) & (~((b) - 1))) |
135 | ||
136 | #if DEBUG || DEVELOPMENT | |
137 | #define DEBUG_KERNEL_ADDRPERM(_v) (_v) | |
138 | #else | |
139 | #define DEBUG_KERNEL_ADDRPERM(_v) VM_KERNEL_ADDRPERM(_v) | |
140 | #endif | |
141 | ||
39236c6e A |
142 | /* TODO: this should be in a header file somewhere */ |
143 | extern char *proc_name_address(void *p); | |
144 | ||
145 | static u_int32_t so_cache_hw; /* High water mark for socache */ | |
146 | static u_int32_t so_cache_timeouts; /* number of timeouts */ | |
147 | static u_int32_t so_cache_max_freed; /* max freed per timeout */ | |
148 | static u_int32_t cached_sock_count = 0; | |
149 | STAILQ_HEAD(, socket) so_cache_head; | |
150 | int max_cached_sock_count = MAX_CACHED_SOCKETS; | |
151 | static u_int32_t so_cache_time; | |
152 | static int socketinit_done; | |
153 | static struct zone *so_cache_zone; | |
154 | ||
155 | static lck_grp_t *so_cache_mtx_grp; | |
156 | static lck_attr_t *so_cache_mtx_attr; | |
91447636 | 157 | static lck_grp_attr_t *so_cache_mtx_grp_attr; |
39236c6e | 158 | static lck_mtx_t *so_cache_mtx; |
91447636 | 159 | |
1c79356b A |
160 | #include <machine/limits.h> |
161 | ||
5ba3f43e | 162 | static int filt_sorattach(struct knote *kn, struct kevent_internal_s *kev); |
2d21ac55 A |
163 | static void filt_sordetach(struct knote *kn); |
164 | static int filt_soread(struct knote *kn, long hint); | |
39037602 A |
165 | static int filt_sortouch(struct knote *kn, struct kevent_internal_s *kev); |
166 | static int filt_sorprocess(struct knote *kn, struct filt_process_s *data, struct kevent_internal_s *kev); | |
167 | ||
5ba3f43e | 168 | static int filt_sowattach(struct knote *kn, struct kevent_internal_s *kev); |
2d21ac55 A |
169 | static void filt_sowdetach(struct knote *kn); |
170 | static int filt_sowrite(struct knote *kn, long hint); | |
39037602 A |
171 | static int filt_sowtouch(struct knote *kn, struct kevent_internal_s *kev); |
172 | static int filt_sowprocess(struct knote *kn, struct filt_process_s *data, struct kevent_internal_s *kev); | |
173 | ||
5ba3f43e | 174 | static int filt_sockattach(struct knote *kn, struct kevent_internal_s *kev); |
316670eb A |
175 | static void filt_sockdetach(struct knote *kn); |
176 | static int filt_sockev(struct knote *kn, long hint); | |
39037602 A |
177 | static int filt_socktouch(struct knote *kn, struct kevent_internal_s *kev); |
178 | static int filt_sockprocess(struct knote *kn, struct filt_process_s *data, struct kevent_internal_s *kev); | |
2d21ac55 | 179 | |
39236c6e A |
180 | static int sooptcopyin_timeval(struct sockopt *, struct timeval *); |
181 | static int sooptcopyout_timeval(struct sockopt *, const struct timeval *); | |
55e303ae | 182 | |
5ba3f43e | 183 | SECURITY_READ_ONLY_EARLY(struct filterops) soread_filtops = { |
39236c6e | 184 | .f_isfd = 1, |
39037602 | 185 | .f_attach = filt_sorattach, |
39236c6e A |
186 | .f_detach = filt_sordetach, |
187 | .f_event = filt_soread, | |
39037602 A |
188 | .f_touch = filt_sortouch, |
189 | .f_process = filt_sorprocess, | |
b0d623f7 | 190 | }; |
39236c6e | 191 | |
5ba3f43e | 192 | SECURITY_READ_ONLY_EARLY(struct filterops) sowrite_filtops = { |
39236c6e | 193 | .f_isfd = 1, |
39037602 | 194 | .f_attach = filt_sowattach, |
39236c6e A |
195 | .f_detach = filt_sowdetach, |
196 | .f_event = filt_sowrite, | |
39037602 A |
197 | .f_touch = filt_sowtouch, |
198 | .f_process = filt_sowprocess, | |
b0d623f7 | 199 | }; |
39236c6e | 200 | |
5ba3f43e | 201 | SECURITY_READ_ONLY_EARLY(struct filterops) sock_filtops = { |
316670eb | 202 | .f_isfd = 1, |
39037602 | 203 | .f_attach = filt_sockattach, |
316670eb A |
204 | .f_detach = filt_sockdetach, |
205 | .f_event = filt_sockev, | |
3e170ce0 | 206 | .f_touch = filt_socktouch, |
39037602 A |
207 | .f_process = filt_sockprocess, |
208 | }; | |
209 | ||
5ba3f43e | 210 | SECURITY_READ_ONLY_EARLY(struct filterops) soexcept_filtops = { |
39037602 A |
211 | .f_isfd = 1, |
212 | .f_attach = filt_sorattach, | |
213 | .f_detach = filt_sordetach, | |
214 | .f_event = filt_soread, | |
215 | .f_touch = filt_sortouch, | |
216 | .f_process = filt_sorprocess, | |
316670eb | 217 | }; |
55e303ae | 218 | |
fe8ab488 A |
219 | SYSCTL_DECL(_kern_ipc); |
220 | ||
2d21ac55 | 221 | #define EVEN_MORE_LOCKING_DEBUG 0 |
fe8ab488 | 222 | |
1c79356b | 223 | int socket_debug = 0; |
fe8ab488 A |
224 | SYSCTL_INT(_kern_ipc, OID_AUTO, socket_debug, |
225 | CTLFLAG_RW | CTLFLAG_LOCKED, &socket_debug, 0, ""); | |
226 | ||
39037602 A |
227 | static unsigned long sodefunct_calls = 0; |
228 | SYSCTL_LONG(_kern_ipc, OID_AUTO, sodefunct_calls, CTLFLAG_LOCKED, | |
229 | &sodefunct_calls, ""); | |
230 | ||
39236c6e | 231 | static int socket_zone = M_SOCKET; |
1c79356b A |
232 | so_gen_t so_gencnt; /* generation count for sockets */ |
233 | ||
234 | MALLOC_DEFINE(M_SONAME, "soname", "socket name"); | |
235 | MALLOC_DEFINE(M_PCB, "pcb", "protocol control block"); | |
236 | ||
2d21ac55 A |
237 | #define DBG_LAYER_IN_BEG NETDBG_CODE(DBG_NETSOCK, 0) |
238 | #define DBG_LAYER_IN_END NETDBG_CODE(DBG_NETSOCK, 2) | |
239 | #define DBG_LAYER_OUT_BEG NETDBG_CODE(DBG_NETSOCK, 1) | |
240 | #define DBG_LAYER_OUT_END NETDBG_CODE(DBG_NETSOCK, 3) | |
241 | #define DBG_FNC_SOSEND NETDBG_CODE(DBG_NETSOCK, (4 << 8) | 1) | |
fe8ab488 | 242 | #define DBG_FNC_SOSEND_LIST NETDBG_CODE(DBG_NETSOCK, (4 << 8) | 3) |
2d21ac55 | 243 | #define DBG_FNC_SORECEIVE NETDBG_CODE(DBG_NETSOCK, (8 << 8)) |
fe8ab488 | 244 | #define DBG_FNC_SORECEIVE_LIST NETDBG_CODE(DBG_NETSOCK, (8 << 8) | 3) |
2d21ac55 | 245 | #define DBG_FNC_SOSHUTDOWN NETDBG_CODE(DBG_NETSOCK, (9 << 8)) |
1c79356b | 246 | |
2d21ac55 | 247 | #define MAX_SOOPTGETM_SIZE (128 * MCLBYTES) |
1c79356b | 248 | |
2d21ac55 | 249 | int somaxconn = SOMAXCONN; |
39236c6e A |
250 | SYSCTL_INT(_kern_ipc, KIPC_SOMAXCONN, somaxconn, |
251 | CTLFLAG_RW | CTLFLAG_LOCKED, &somaxconn, 0, ""); | |
1c79356b A |
252 | |
253 | /* Should we get a maximum also ??? */ | |
fa4905b1 | 254 | static int sosendmaxchain = 65536; |
1c79356b | 255 | static int sosendminchain = 16384; |
55e303ae | 256 | static int sorecvmincopy = 16384; |
39236c6e A |
257 | SYSCTL_INT(_kern_ipc, OID_AUTO, sosendminchain, |
258 | CTLFLAG_RW | CTLFLAG_LOCKED, &sosendminchain, 0, ""); | |
259 | SYSCTL_INT(_kern_ipc, OID_AUTO, sorecvmincopy, | |
260 | CTLFLAG_RW | CTLFLAG_LOCKED, &sorecvmincopy, 0, ""); | |
2d21ac55 A |
261 | |
262 | /* | |
263 | * Set to enable jumbo clusters (if available) for large writes when | |
264 | * the socket is marked with SOF_MULTIPAGES; see below. | |
265 | */ | |
266 | int sosendjcl = 1; | |
39236c6e A |
267 | SYSCTL_INT(_kern_ipc, OID_AUTO, sosendjcl, |
268 | CTLFLAG_RW | CTLFLAG_LOCKED, &sosendjcl, 0, ""); | |
1c79356b | 269 | |
2d21ac55 A |
270 | /* |
271 | * Set this to ignore SOF_MULTIPAGES and use jumbo clusters for large | |
272 | * writes on the socket for all protocols on any network interfaces, | |
273 | * depending upon sosendjcl above. Be extra careful when setting this | |
274 | * to 1, because sending down packets that cross physical pages down to | |
275 | * broken drivers (those that falsely assume that the physical pages | |
276 | * are contiguous) might lead to system panics or silent data corruption. | |
277 | * When set to 0, the system will respect SOF_MULTIPAGES, which is set | |
278 | * only for TCP sockets whose outgoing interface is IFNET_MULTIPAGES | |
279 | * capable. Set this to 1 only for testing/debugging purposes. | |
280 | */ | |
281 | int sosendjcl_ignore_capab = 0; | |
39236c6e A |
282 | SYSCTL_INT(_kern_ipc, OID_AUTO, sosendjcl_ignore_capab, |
283 | CTLFLAG_RW | CTLFLAG_LOCKED, &sosendjcl_ignore_capab, 0, ""); | |
1c79356b | 284 | |
3e170ce0 A |
285 | /* |
286 | * Set this to ignore SOF1_IF_2KCL and use big clusters for large | |
287 | * writes on the socket for all protocols on any network interfaces. | |
288 | * Be extra careful when setting this to 1, because sending down packets with | |
289 | * clusters larger that 2 KB might lead to system panics or data corruption. | |
290 | * When set to 0, the system will respect SOF1_IF_2KCL, which is set | |
291 | * on the outgoing interface | |
292 | * Set this to 1 for testing/debugging purposes only. | |
293 | */ | |
fe8ab488 A |
294 | int sosendbigcl_ignore_capab = 0; |
295 | SYSCTL_INT(_kern_ipc, OID_AUTO, sosendbigcl_ignore_capab, | |
296 | CTLFLAG_RW | CTLFLAG_LOCKED, &sosendbigcl_ignore_capab, 0, ""); | |
297 | ||
6d2010ae A |
298 | int sodefunctlog = 0; |
299 | SYSCTL_INT(_kern_ipc, OID_AUTO, sodefunctlog, CTLFLAG_RW | CTLFLAG_LOCKED, | |
39236c6e | 300 | &sodefunctlog, 0, ""); |
6d2010ae | 301 | |
316670eb A |
302 | int sothrottlelog = 0; |
303 | SYSCTL_INT(_kern_ipc, OID_AUTO, sothrottlelog, CTLFLAG_RW | CTLFLAG_LOCKED, | |
39236c6e A |
304 | &sothrottlelog, 0, ""); |
305 | ||
306 | int sorestrictrecv = 1; | |
307 | SYSCTL_INT(_kern_ipc, OID_AUTO, sorestrictrecv, CTLFLAG_RW | CTLFLAG_LOCKED, | |
308 | &sorestrictrecv, 0, "Enable inbound interface restrictions"); | |
316670eb | 309 | |
fe8ab488 A |
310 | int sorestrictsend = 1; |
311 | SYSCTL_INT(_kern_ipc, OID_AUTO, sorestrictsend, CTLFLAG_RW | CTLFLAG_LOCKED, | |
312 | &sorestrictsend, 0, "Enable outbound interface restrictions"); | |
1c79356b | 313 | |
3e170ce0 A |
314 | int soreserveheadroom = 1; |
315 | SYSCTL_INT(_kern_ipc, OID_AUTO, soreserveheadroom, CTLFLAG_RW | CTLFLAG_LOCKED, | |
316 | &soreserveheadroom, 0, "To allocate contiguous datagram buffers"); | |
317 | ||
39037602 A |
318 | #if (DEBUG || DEVELOPMENT) |
319 | int so_notsent_lowat_check = 1; | |
320 | SYSCTL_INT(_kern_ipc, OID_AUTO, notsent_lowat, CTLFLAG_RW|CTLFLAG_LOCKED, | |
321 | &so_notsent_lowat_check, 0, "enable/disable notsnet lowat check"); | |
322 | #endif /* DEBUG || DEVELOPMENT */ | |
323 | ||
813fb2f6 A |
324 | int so_accept_list_waits = 0; |
325 | #if (DEBUG || DEVELOPMENT) | |
326 | SYSCTL_INT(_kern_ipc, OID_AUTO, accept_list_waits, CTLFLAG_RW|CTLFLAG_LOCKED, | |
327 | &so_accept_list_waits, 0, "number of waits for listener incomp list"); | |
328 | #endif /* DEBUG || DEVELOPMENT */ | |
329 | ||
39236c6e | 330 | extern struct inpcbinfo tcbinfo; |
2d21ac55 A |
331 | |
332 | /* TODO: these should be in header file */ | |
333 | extern int get_inpcb_str_size(void); | |
334 | extern int get_tcp_str_size(void); | |
2d21ac55 | 335 | |
91447636 A |
336 | vm_size_t so_cache_zone_element_size; |
337 | ||
3e170ce0 A |
338 | static int sodelayed_copy(struct socket *, struct uio *, struct mbuf **, |
339 | user_ssize_t *); | |
2d21ac55 A |
340 | static void cached_sock_alloc(struct socket **, int); |
341 | static void cached_sock_free(struct socket *); | |
91447636 | 342 | |
3e170ce0 A |
343 | /* |
344 | * Maximum of extended background idle sockets per process | |
345 | * Set to zero to disable further setting of the option | |
346 | */ | |
347 | ||
348 | #define SO_IDLE_BK_IDLE_MAX_PER_PROC 1 | |
349 | #define SO_IDLE_BK_IDLE_TIME 600 | |
350 | #define SO_IDLE_BK_IDLE_RCV_HIWAT 131072 | |
351 | ||
352 | struct soextbkidlestat soextbkidlestat; | |
353 | ||
354 | SYSCTL_UINT(_kern_ipc, OID_AUTO, maxextbkidleperproc, | |
355 | CTLFLAG_RW | CTLFLAG_LOCKED, &soextbkidlestat.so_xbkidle_maxperproc, 0, | |
356 | "Maximum of extended background idle sockets per process"); | |
357 | ||
358 | SYSCTL_UINT(_kern_ipc, OID_AUTO, extbkidletime, CTLFLAG_RW | CTLFLAG_LOCKED, | |
359 | &soextbkidlestat.so_xbkidle_time, 0, | |
360 | "Time in seconds to keep extended background idle sockets"); | |
361 | ||
362 | SYSCTL_UINT(_kern_ipc, OID_AUTO, extbkidlercvhiwat, CTLFLAG_RW | CTLFLAG_LOCKED, | |
363 | &soextbkidlestat.so_xbkidle_rcvhiwat, 0, | |
364 | "High water mark for extended background idle sockets"); | |
365 | ||
366 | SYSCTL_STRUCT(_kern_ipc, OID_AUTO, extbkidlestat, CTLFLAG_RD | CTLFLAG_LOCKED, | |
367 | &soextbkidlestat, soextbkidlestat, ""); | |
368 | ||
369 | int so_set_extended_bk_idle(struct socket *, int); | |
370 | ||
5ba3f43e | 371 | |
316670eb A |
372 | /* |
373 | * SOTCDB_NO_DSCP is set by default, to prevent the networking stack from | |
374 | * setting the DSCP code on the packet based on the service class; see | |
375 | * <rdar://problem/11277343> for details. | |
376 | */ | |
39037602 | 377 | __private_extern__ u_int32_t sotcdb = 0; |
6d2010ae | 378 | SYSCTL_INT(_kern_ipc, OID_AUTO, sotcdb, CTLFLAG_RW | CTLFLAG_LOCKED, |
39236c6e | 379 | &sotcdb, 0, ""); |
91447636 | 380 | |
2d21ac55 A |
381 | void |
382 | socketinit(void) | |
1c79356b | 383 | { |
fe8ab488 A |
384 | _CASSERT(sizeof(so_gencnt) == sizeof(uint64_t)); |
385 | VERIFY(IS_P2ALIGNED(&so_gencnt, sizeof(uint32_t))); | |
386 | ||
3e170ce0 A |
387 | #ifdef __LP64__ |
388 | _CASSERT(sizeof(struct sa_endpoints) == sizeof(struct user64_sa_endpoints)); | |
389 | _CASSERT(offsetof(struct sa_endpoints, sae_srcif) == offsetof(struct user64_sa_endpoints, sae_srcif)); | |
390 | _CASSERT(offsetof(struct sa_endpoints, sae_srcaddr) == offsetof(struct user64_sa_endpoints, sae_srcaddr)); | |
391 | _CASSERT(offsetof(struct sa_endpoints, sae_srcaddrlen) == offsetof(struct user64_sa_endpoints, sae_srcaddrlen)); | |
392 | _CASSERT(offsetof(struct sa_endpoints, sae_dstaddr) == offsetof(struct user64_sa_endpoints, sae_dstaddr)); | |
393 | _CASSERT(offsetof(struct sa_endpoints, sae_dstaddrlen) == offsetof(struct user64_sa_endpoints, sae_dstaddrlen)); | |
394 | #else | |
395 | _CASSERT(sizeof(struct sa_endpoints) == sizeof(struct user32_sa_endpoints)); | |
396 | _CASSERT(offsetof(struct sa_endpoints, sae_srcif) == offsetof(struct user32_sa_endpoints, sae_srcif)); | |
397 | _CASSERT(offsetof(struct sa_endpoints, sae_srcaddr) == offsetof(struct user32_sa_endpoints, sae_srcaddr)); | |
398 | _CASSERT(offsetof(struct sa_endpoints, sae_srcaddrlen) == offsetof(struct user32_sa_endpoints, sae_srcaddrlen)); | |
399 | _CASSERT(offsetof(struct sa_endpoints, sae_dstaddr) == offsetof(struct user32_sa_endpoints, sae_dstaddr)); | |
400 | _CASSERT(offsetof(struct sa_endpoints, sae_dstaddrlen) == offsetof(struct user32_sa_endpoints, sae_dstaddrlen)); | |
401 | #endif | |
402 | ||
39236c6e | 403 | if (socketinit_done) { |
91447636 A |
404 | printf("socketinit: already called...\n"); |
405 | return; | |
406 | } | |
39236c6e | 407 | socketinit_done = 1; |
91447636 | 408 | |
39236c6e A |
409 | PE_parse_boot_argn("socket_debug", &socket_debug, |
410 | sizeof (socket_debug)); | |
2d21ac55 | 411 | |
91447636 A |
412 | /* |
413 | * allocate lock group attribute and group for socket cache mutex | |
414 | */ | |
415 | so_cache_mtx_grp_attr = lck_grp_attr_alloc_init(); | |
2d21ac55 A |
416 | so_cache_mtx_grp = lck_grp_alloc_init("so_cache", |
417 | so_cache_mtx_grp_attr); | |
418 | ||
91447636 A |
419 | /* |
420 | * allocate the lock attribute for socket cache mutex | |
421 | */ | |
422 | so_cache_mtx_attr = lck_attr_alloc_init(); | |
91447636 | 423 | |
2d21ac55 A |
424 | /* cached sockets mutex */ |
425 | so_cache_mtx = lck_mtx_alloc_init(so_cache_mtx_grp, so_cache_mtx_attr); | |
39236c6e A |
426 | if (so_cache_mtx == NULL) { |
427 | panic("%s: unable to allocate so_cache_mtx\n", __func__); | |
428 | /* NOTREACHED */ | |
429 | } | |
430 | STAILQ_INIT(&so_cache_head); | |
1c79356b | 431 | |
39236c6e A |
432 | so_cache_zone_element_size = (vm_size_t)(sizeof (struct socket) + 4 |
433 | + get_inpcb_str_size() + 4 + get_tcp_str_size()); | |
2d21ac55 | 434 | |
3e170ce0 | 435 | so_cache_zone = zinit(so_cache_zone_element_size, |
39236c6e | 436 | (120000 * so_cache_zone_element_size), 8192, "socache zone"); |
6d2010ae | 437 | zone_change(so_cache_zone, Z_CALLERACCT, FALSE); |
0b4c1975 | 438 | zone_change(so_cache_zone, Z_NOENCRYPT, TRUE); |
1c79356b | 439 | |
3e170ce0 A |
440 | bzero(&soextbkidlestat, sizeof(struct soextbkidlestat)); |
441 | soextbkidlestat.so_xbkidle_maxperproc = SO_IDLE_BK_IDLE_MAX_PER_PROC; | |
442 | soextbkidlestat.so_xbkidle_time = SO_IDLE_BK_IDLE_TIME; | |
443 | soextbkidlestat.so_xbkidle_rcvhiwat = SO_IDLE_BK_IDLE_RCV_HIWAT; | |
316670eb | 444 | |
39236c6e A |
445 | in_pcbinit(); |
446 | sflt_init(); | |
6d2010ae | 447 | socket_tclass_init(); |
39236c6e A |
448 | #if MULTIPATH |
449 | mp_pcbinit(); | |
450 | #endif /* MULTIPATH */ | |
1c79356b A |
451 | } |
452 | ||
2d21ac55 A |
453 | static void |
454 | cached_sock_alloc(struct socket **so, int waitok) | |
1c79356b | 455 | { |
2d21ac55 | 456 | caddr_t temp; |
39236c6e | 457 | uintptr_t offset; |
1c79356b | 458 | |
91447636 A |
459 | lck_mtx_lock(so_cache_mtx); |
460 | ||
39236c6e A |
461 | if (!STAILQ_EMPTY(&so_cache_head)) { |
462 | VERIFY(cached_sock_count > 0); | |
1c79356b | 463 | |
39236c6e A |
464 | *so = STAILQ_FIRST(&so_cache_head); |
465 | STAILQ_REMOVE_HEAD(&so_cache_head, so_cache_ent); | |
466 | STAILQ_NEXT((*so), so_cache_ent) = NULL; | |
91447636 | 467 | |
39236c6e | 468 | cached_sock_count--; |
91447636 | 469 | lck_mtx_unlock(so_cache_mtx); |
1c79356b | 470 | |
2d21ac55 A |
471 | temp = (*so)->so_saved_pcb; |
472 | bzero((caddr_t)*so, sizeof (struct socket)); | |
39236c6e | 473 | |
2d21ac55 | 474 | (*so)->so_saved_pcb = temp; |
2d21ac55 | 475 | } else { |
1c79356b | 476 | |
2d21ac55 | 477 | lck_mtx_unlock(so_cache_mtx); |
1c79356b | 478 | |
2d21ac55 A |
479 | if (waitok) |
480 | *so = (struct socket *)zalloc(so_cache_zone); | |
481 | else | |
482 | *so = (struct socket *)zalloc_noblock(so_cache_zone); | |
1c79356b | 483 | |
39236c6e | 484 | if (*so == NULL) |
2d21ac55 | 485 | return; |
1c79356b | 486 | |
2d21ac55 | 487 | bzero((caddr_t)*so, sizeof (struct socket)); |
1c79356b | 488 | |
2d21ac55 | 489 | /* |
3e170ce0 A |
490 | * Define offsets for extra structures into our |
491 | * single block of memory. Align extra structures | |
39236c6e | 492 | * on longword boundaries. |
2d21ac55 | 493 | */ |
b0d623f7 | 494 | |
39236c6e | 495 | offset = (uintptr_t)*so; |
2d21ac55 | 496 | offset += sizeof (struct socket); |
b0d623f7 A |
497 | |
498 | offset = ALIGN(offset); | |
499 | ||
2d21ac55 A |
500 | (*so)->so_saved_pcb = (caddr_t)offset; |
501 | offset += get_inpcb_str_size(); | |
b0d623f7 A |
502 | |
503 | offset = ALIGN(offset); | |
1c79356b | 504 | |
316670eb | 505 | ((struct inpcb *)(void *)(*so)->so_saved_pcb)->inp_saved_ppcb = |
2d21ac55 | 506 | (caddr_t)offset; |
2d21ac55 | 507 | } |
1c79356b | 508 | |
3e170ce0 | 509 | OSBitOrAtomic(SOF1_CACHED_IN_SOCK_LAYER, &(*so)->so_flags1); |
1c79356b A |
510 | } |
511 | ||
2d21ac55 A |
512 | static void |
513 | cached_sock_free(struct socket *so) | |
1c79356b | 514 | { |
1c79356b | 515 | |
91447636 | 516 | lck_mtx_lock(so_cache_mtx); |
1c79356b | 517 | |
39236c6e | 518 | so_cache_time = net_uptime(); |
b0d623f7 | 519 | if (++cached_sock_count > max_cached_sock_count) { |
1c79356b | 520 | --cached_sock_count; |
91447636 | 521 | lck_mtx_unlock(so_cache_mtx); |
91447636 | 522 | zfree(so_cache_zone, so); |
2d21ac55 | 523 | } else { |
1c79356b A |
524 | if (so_cache_hw < cached_sock_count) |
525 | so_cache_hw = cached_sock_count; | |
526 | ||
39236c6e | 527 | STAILQ_INSERT_TAIL(&so_cache_head, so, so_cache_ent); |
1c79356b A |
528 | |
529 | so->cache_timestamp = so_cache_time; | |
91447636 | 530 | lck_mtx_unlock(so_cache_mtx); |
1c79356b | 531 | } |
1c79356b A |
532 | } |
533 | ||
39236c6e A |
534 | void |
535 | so_update_last_owner_locked(struct socket *so, proc_t self) | |
6d2010ae | 536 | { |
39236c6e A |
537 | if (so->last_pid != 0) { |
538 | /* | |
539 | * last_pid and last_upid should remain zero for sockets | |
540 | * created using sock_socket. The check above achieves that | |
541 | */ | |
542 | if (self == PROC_NULL) | |
316670eb | 543 | self = current_proc(); |
39236c6e A |
544 | |
545 | if (so->last_upid != proc_uniqueid(self) || | |
546 | so->last_pid != proc_pid(self)) { | |
316670eb A |
547 | so->last_upid = proc_uniqueid(self); |
548 | so->last_pid = proc_pid(self); | |
39236c6e A |
549 | proc_getexecutableuuid(self, so->last_uuid, |
550 | sizeof (so->last_uuid)); | |
316670eb | 551 | } |
fe8ab488 | 552 | proc_pidoriginatoruuid(so->so_vuuid, sizeof(so->so_vuuid)); |
6d2010ae A |
553 | } |
554 | } | |
555 | ||
39236c6e A |
556 | void |
557 | so_update_policy(struct socket *so) | |
1c79356b | 558 | { |
39236c6e A |
559 | if (SOCK_DOM(so) == PF_INET || SOCK_DOM(so) == PF_INET6) |
560 | (void) inp_update_policy(sotoinpcb(so)); | |
561 | } | |
1c79356b | 562 | |
fe8ab488 A |
563 | #if NECP |
564 | static void | |
3e170ce0 A |
565 | so_update_necp_policy(struct socket *so, struct sockaddr *override_local_addr, |
566 | struct sockaddr *override_remote_addr) | |
fe8ab488 A |
567 | { |
568 | if (SOCK_DOM(so) == PF_INET || SOCK_DOM(so) == PF_INET6) | |
3e170ce0 A |
569 | inp_update_necp_policy(sotoinpcb(so), override_local_addr, |
570 | override_remote_addr, 0); | |
fe8ab488 A |
571 | } |
572 | #endif /* NECP */ | |
573 | ||
39236c6e A |
574 | boolean_t |
575 | so_cache_timer(void) | |
576 | { | |
577 | struct socket *p; | |
578 | int n_freed = 0; | |
579 | boolean_t rc = FALSE; | |
1c79356b | 580 | |
39236c6e A |
581 | lck_mtx_lock(so_cache_mtx); |
582 | so_cache_timeouts++; | |
583 | so_cache_time = net_uptime(); | |
584 | ||
585 | while (!STAILQ_EMPTY(&so_cache_head)) { | |
586 | VERIFY(cached_sock_count > 0); | |
587 | p = STAILQ_FIRST(&so_cache_head); | |
3e170ce0 | 588 | if ((so_cache_time - p->cache_timestamp) < |
39236c6e | 589 | SO_CACHE_TIME_LIMIT) |
2d21ac55 | 590 | break; |
1c79356b | 591 | |
39236c6e A |
592 | STAILQ_REMOVE_HEAD(&so_cache_head, so_cache_ent); |
593 | --cached_sock_count; | |
1c79356b | 594 | |
91447636 | 595 | zfree(so_cache_zone, p); |
2d21ac55 A |
596 | |
597 | if (++n_freed >= SO_CACHE_MAX_FREE_BATCH) { | |
598 | so_cache_max_freed++; | |
1c79356b A |
599 | break; |
600 | } | |
601 | } | |
1c79356b | 602 | |
39236c6e A |
603 | /* Schedule again if there is more to cleanup */ |
604 | if (!STAILQ_EMPTY(&so_cache_head)) | |
605 | rc = TRUE; | |
606 | ||
607 | lck_mtx_unlock(so_cache_mtx); | |
608 | return (rc); | |
1c79356b | 609 | } |
1c79356b A |
610 | |
611 | /* | |
612 | * Get a socket structure from our zone, and initialize it. | |
613 | * We don't implement `waitok' yet (see comments in uipc_domain.c). | |
614 | * Note that it would probably be better to allocate socket | |
615 | * and PCB at the same time, but I'm not convinced that all | |
616 | * the protocols can be easily modified to do this. | |
617 | */ | |
618 | struct socket * | |
2d21ac55 | 619 | soalloc(int waitok, int dom, int type) |
1c79356b A |
620 | { |
621 | struct socket *so; | |
622 | ||
2d21ac55 A |
623 | if ((dom == PF_INET) && (type == SOCK_STREAM)) { |
624 | cached_sock_alloc(&so, waitok); | |
625 | } else { | |
626 | MALLOC_ZONE(so, struct socket *, sizeof (*so), socket_zone, | |
627 | M_WAITOK); | |
628 | if (so != NULL) | |
629 | bzero(so, sizeof (*so)); | |
1c79356b | 630 | } |
2d21ac55 | 631 | if (so != NULL) { |
fe8ab488 | 632 | so->so_gencnt = OSIncrementAtomic64((SInt64 *)&so_gencnt); |
2d21ac55 | 633 | so->so_zone = socket_zone; |
5ba3f43e A |
634 | |
635 | /* | |
636 | * Increment the socket allocation statistics | |
637 | */ | |
638 | INC_ATOMIC_INT64_LIM(net_api_stats.nas_socket_alloc_total); | |
639 | ||
2d21ac55 | 640 | #if CONFIG_MACF_SOCKET |
39236c6e A |
641 | /* Convert waitok to M_WAITOK/M_NOWAIT for MAC Framework. */ |
642 | if (mac_socket_label_init(so, !waitok) != 0) { | |
2d21ac55 A |
643 | sodealloc(so); |
644 | return (NULL); | |
645 | } | |
646 | #endif /* MAC_SOCKET */ | |
1c79356b A |
647 | } |
648 | ||
2d21ac55 | 649 | return (so); |
1c79356b A |
650 | } |
651 | ||
652 | int | |
39236c6e A |
653 | socreate_internal(int dom, struct socket **aso, int type, int proto, |
654 | struct proc *p, uint32_t flags, struct proc *ep) | |
1c79356b | 655 | { |
39236c6e A |
656 | struct protosw *prp; |
657 | struct socket *so; | |
658 | int error = 0; | |
d1ecb069 | 659 | |
55e303ae A |
660 | #if TCPDEBUG |
661 | extern int tcpconsdebug; | |
662 | #endif | |
39236c6e A |
663 | |
664 | VERIFY(aso != NULL); | |
665 | *aso = NULL; | |
666 | ||
667 | if (proto != 0) | |
1c79356b A |
668 | prp = pffindproto(dom, proto, type); |
669 | else | |
670 | prp = pffindtype(dom, type); | |
9bccf70c | 671 | |
39236c6e A |
672 | if (prp == NULL || prp->pr_usrreqs->pru_attach == NULL) { |
673 | if (pffinddomain(dom) == NULL) | |
2d21ac55 | 674 | return (EAFNOSUPPORT); |
2d21ac55 | 675 | if (proto != 0) { |
39236c6e | 676 | if (pffindprotonotype(dom, proto) != NULL) |
2d21ac55 | 677 | return (EPROTOTYPE); |
2d21ac55 | 678 | } |
9bccf70c A |
679 | return (EPROTONOSUPPORT); |
680 | } | |
1c79356b A |
681 | if (prp->pr_type != type) |
682 | return (EPROTOTYPE); | |
b0d623f7 | 683 | so = soalloc(1, dom, type); |
39236c6e | 684 | if (so == NULL) |
1c79356b A |
685 | return (ENOBUFS); |
686 | ||
5ba3f43e A |
687 | switch (dom) { |
688 | case PF_LOCAL: | |
689 | INC_ATOMIC_INT64_LIM(net_api_stats.nas_socket_domain_local_total); | |
690 | break; | |
691 | case PF_INET: | |
692 | INC_ATOMIC_INT64_LIM(net_api_stats.nas_socket_domain_inet_total); | |
693 | if (type == SOCK_STREAM) { | |
694 | INC_ATOMIC_INT64_LIM(net_api_stats.nas_socket_inet_stream_total); | |
695 | } else { | |
696 | INC_ATOMIC_INT64_LIM(net_api_stats.nas_socket_inet_dgram_total); | |
697 | } | |
698 | break; | |
699 | case PF_ROUTE: | |
700 | INC_ATOMIC_INT64_LIM(net_api_stats.nas_socket_domain_route_total); | |
701 | break; | |
702 | case PF_NDRV: | |
703 | INC_ATOMIC_INT64_LIM(net_api_stats.nas_socket_domain_ndrv_total); | |
704 | break; | |
705 | case PF_KEY: | |
706 | INC_ATOMIC_INT64_LIM(net_api_stats.nas_socket_domain_key_total); | |
707 | break; | |
708 | case PF_INET6: | |
709 | INC_ATOMIC_INT64_LIM(net_api_stats.nas_socket_domain_inet6_total); | |
710 | if (type == SOCK_STREAM) { | |
711 | INC_ATOMIC_INT64_LIM(net_api_stats.nas_socket_inet6_stream_total); | |
712 | } else { | |
713 | INC_ATOMIC_INT64_LIM(net_api_stats.nas_socket_inet6_dgram_total); | |
714 | } | |
715 | break; | |
716 | case PF_SYSTEM: | |
717 | INC_ATOMIC_INT64_LIM(net_api_stats.nas_socket_domain_system_total); | |
718 | break; | |
719 | case PF_MULTIPATH: | |
720 | INC_ATOMIC_INT64_LIM(net_api_stats.nas_socket_domain_multipath_total); | |
721 | break; | |
722 | default: | |
723 | INC_ATOMIC_INT64_LIM(net_api_stats.nas_socket_domain_other_total); | |
724 | break; | |
725 | } | |
726 | ||
39236c6e A |
727 | if (flags & SOCF_ASYNC) |
728 | so->so_state |= SS_NBIO; | |
39236c6e | 729 | |
1c79356b A |
730 | TAILQ_INIT(&so->so_incomp); |
731 | TAILQ_INIT(&so->so_comp); | |
732 | so->so_type = type; | |
316670eb A |
733 | so->last_upid = proc_uniqueid(p); |
734 | so->last_pid = proc_pid(p); | |
39236c6e | 735 | proc_getexecutableuuid(p, so->last_uuid, sizeof (so->last_uuid)); |
fe8ab488 | 736 | proc_pidoriginatoruuid(so->so_vuuid, sizeof(so->so_vuuid)); |
39236c6e A |
737 | |
738 | if (ep != PROC_NULL && ep != p) { | |
739 | so->e_upid = proc_uniqueid(ep); | |
740 | so->e_pid = proc_pid(ep); | |
741 | proc_getexecutableuuid(ep, so->e_uuid, sizeof (so->e_uuid)); | |
742 | so->so_flags |= SOF_DELEGATED; | |
743 | } | |
1c79356b | 744 | |
316670eb | 745 | so->so_cred = kauth_cred_proc_ref(p); |
b0d623f7 | 746 | if (!suser(kauth_cred_get(), NULL)) |
39236c6e | 747 | so->so_state |= SS_PRIV; |
b0d623f7 | 748 | |
1c79356b | 749 | so->so_proto = prp; |
39236c6e | 750 | so->so_rcv.sb_flags |= SB_RECV; |
91447636 | 751 | so->so_rcv.sb_so = so->so_snd.sb_so = so; |
0c530ab8 A |
752 | so->next_lock_lr = 0; |
753 | so->next_unlock_lr = 0; | |
2d21ac55 A |
754 | |
755 | #if CONFIG_MACF_SOCKET | |
756 | mac_socket_label_associate(kauth_cred_get(), so); | |
757 | #endif /* MAC_SOCKET */ | |
758 | ||
2d21ac55 | 759 | /* |
39236c6e A |
760 | * Attachment will create the per pcb lock if necessary and |
761 | * increase refcount for creation, make sure it's done before | |
762 | * socket is inserted in lists. | |
2d21ac55 A |
763 | */ |
764 | so->so_usecount++; | |
91447636 A |
765 | |
766 | error = (*prp->pr_usrreqs->pru_attach)(so, proto, p); | |
39236c6e | 767 | if (error != 0) { |
2d21ac55 A |
768 | /* |
769 | * Warning: | |
770 | * If so_pcb is not zero, the socket will be leaked, | |
771 | * so protocol attachment handler must be coded carefuly | |
55e303ae | 772 | */ |
1c79356b | 773 | so->so_state |= SS_NOFDREF; |
d190cdc3 | 774 | VERIFY(so->so_usecount > 0); |
37839358 A |
775 | so->so_usecount--; |
776 | sofreelastref(so, 1); /* will deallocate the socket */ | |
1c79356b A |
777 | return (error); |
778 | } | |
39236c6e A |
779 | |
780 | atomic_add_32(&prp->pr_domain->dom_refs, 1); | |
1c79356b | 781 | TAILQ_INIT(&so->so_evlist); |
91447636 A |
782 | |
783 | /* Attach socket filters for this protocol */ | |
784 | sflt_initsock(so); | |
55e303ae A |
785 | #if TCPDEBUG |
786 | if (tcpconsdebug == 2) | |
787 | so->so_options |= SO_DEBUG; | |
9bccf70c | 788 | #endif |
6d2010ae | 789 | so_set_default_traffic_class(so); |
39236c6e | 790 | |
d1ecb069 | 791 | /* |
39236c6e A |
792 | * If this thread or task is marked to create backgrounded sockets, |
793 | * mark the socket as background. | |
d1ecb069 | 794 | */ |
3e170ce0 A |
795 | if (proc_get_effective_thread_policy(current_thread(), |
796 | TASK_POLICY_NEW_SOCKETS_BG)) { | |
d1ecb069 | 797 | socket_set_traffic_mgt_flags(so, TRAFFIC_MGT_SO_BACKGROUND); |
6d2010ae A |
798 | so->so_background_thread = current_thread(); |
799 | } | |
800 | ||
801 | switch (dom) { | |
316670eb | 802 | /* |
39236c6e A |
803 | * Don't mark Unix domain, system or multipath sockets as |
804 | * eligible for defunct by default. | |
805 | */ | |
6d2010ae | 806 | case PF_LOCAL: |
316670eb | 807 | case PF_SYSTEM: |
39236c6e | 808 | case PF_MULTIPATH: |
6d2010ae A |
809 | so->so_flags |= SOF_NODEFUNCT; |
810 | break; | |
316670eb A |
811 | default: |
812 | break; | |
d1ecb069 A |
813 | } |
814 | ||
fe8ab488 A |
815 | /* |
816 | * Entitlements can't be checked at socket creation time except if the | |
817 | * application requested a feature guarded by a privilege (c.f., socket | |
818 | * delegation). | |
819 | * The priv(9) and the Sandboxing APIs are designed with the idea that | |
820 | * a privilege check should only be triggered by a userland request. | |
821 | * A privilege check at socket creation time is time consuming and | |
822 | * could trigger many authorisation error messages from the security | |
823 | * APIs. | |
824 | */ | |
825 | ||
1c79356b | 826 | *aso = so; |
39236c6e | 827 | |
1c79356b A |
828 | return (0); |
829 | } | |
830 | ||
39236c6e A |
831 | /* |
832 | * Returns: 0 Success | |
833 | * EAFNOSUPPORT | |
834 | * EPROTOTYPE | |
835 | * EPROTONOSUPPORT | |
836 | * ENOBUFS | |
837 | * <pru_attach>:ENOBUFS[AF_UNIX] | |
838 | * <pru_attach>:ENOBUFS[TCP] | |
839 | * <pru_attach>:ENOMEM[TCP] | |
840 | * <pru_attach>:??? [other protocol families, IPSEC] | |
841 | */ | |
842 | int | |
843 | socreate(int dom, struct socket **aso, int type, int proto) | |
844 | { | |
845 | return (socreate_internal(dom, aso, type, proto, current_proc(), 0, | |
846 | PROC_NULL)); | |
847 | } | |
848 | ||
849 | int | |
850 | socreate_delegate(int dom, struct socket **aso, int type, int proto, pid_t epid) | |
851 | { | |
852 | int error = 0; | |
853 | struct proc *ep = PROC_NULL; | |
854 | ||
855 | if ((proc_selfpid() != epid) && ((ep = proc_find(epid)) == PROC_NULL)) { | |
856 | error = ESRCH; | |
857 | goto done; | |
858 | } | |
859 | ||
860 | error = socreate_internal(dom, aso, type, proto, current_proc(), 0, ep); | |
861 | ||
862 | /* | |
863 | * It might not be wise to hold the proc reference when calling | |
864 | * socreate_internal since it calls soalloc with M_WAITOK | |
865 | */ | |
866 | done: | |
867 | if (ep != PROC_NULL) | |
868 | proc_rele(ep); | |
869 | ||
870 | return (error); | |
871 | } | |
872 | ||
2d21ac55 A |
873 | /* |
874 | * Returns: 0 Success | |
875 | * <pru_bind>:EINVAL Invalid argument [COMMON_START] | |
876 | * <pru_bind>:EAFNOSUPPORT Address family not supported | |
877 | * <pru_bind>:EADDRNOTAVAIL Address not available. | |
878 | * <pru_bind>:EINVAL Invalid argument | |
879 | * <pru_bind>:EAFNOSUPPORT Address family not supported [notdef] | |
880 | * <pru_bind>:EACCES Permission denied | |
881 | * <pru_bind>:EADDRINUSE Address in use | |
882 | * <pru_bind>:EAGAIN Resource unavailable, try again | |
883 | * <pru_bind>:EPERM Operation not permitted | |
884 | * <pru_bind>:??? | |
885 | * <sf_bind>:??? | |
886 | * | |
887 | * Notes: It's not possible to fully enumerate the return codes above, | |
888 | * since socket filter authors and protocol family authors may | |
889 | * not choose to limit their error returns to those listed, even | |
890 | * though this may result in some software operating incorrectly. | |
891 | * | |
892 | * The error codes which are enumerated above are those known to | |
893 | * be returned by the tcp_usr_bind function supplied. | |
894 | */ | |
1c79356b | 895 | int |
39236c6e | 896 | sobindlock(struct socket *so, struct sockaddr *nam, int dolock) |
1c79356b A |
897 | { |
898 | struct proc *p = current_proc(); | |
91447636 | 899 | int error = 0; |
1c79356b | 900 | |
39236c6e A |
901 | if (dolock) |
902 | socket_lock(so, 1); | |
39236c6e | 903 | |
6d2010ae | 904 | so_update_last_owner_locked(so, p); |
39236c6e | 905 | so_update_policy(so); |
3e170ce0 | 906 | |
fe8ab488 A |
907 | #if NECP |
908 | so_update_necp_policy(so, nam, NULL); | |
909 | #endif /* NECP */ | |
3e170ce0 | 910 | |
2d21ac55 | 911 | /* |
6d2010ae A |
912 | * If this is a bind request on a socket that has been marked |
913 | * as inactive, reject it now before we go any further. | |
2d21ac55 A |
914 | */ |
915 | if (so->so_flags & SOF_DEFUNCT) { | |
916 | error = EINVAL; | |
39037602 A |
917 | SODEFUNCTLOG("%s[%d, %s]: defunct so 0x%llx [%d,%d] (%d)\n", |
918 | __func__, proc_pid(p), proc_best_name(p), | |
919 | (uint64_t)DEBUG_KERNEL_ADDRPERM(so), | |
920 | SOCK_DOM(so), SOCK_TYPE(so), error); | |
2d21ac55 A |
921 | goto out; |
922 | } | |
923 | ||
91447636 | 924 | /* Socket filter */ |
6d2010ae | 925 | error = sflt_bind(so, nam); |
2d21ac55 | 926 | |
91447636 A |
927 | if (error == 0) |
928 | error = (*so->so_proto->pr_usrreqs->pru_bind)(so, nam, p); | |
2d21ac55 | 929 | out: |
39236c6e A |
930 | if (dolock) |
931 | socket_unlock(so, 1); | |
2d21ac55 | 932 | |
91447636 A |
933 | if (error == EJUSTRETURN) |
934 | error = 0; | |
2d21ac55 | 935 | |
1c79356b A |
936 | return (error); |
937 | } | |
938 | ||
939 | void | |
2d21ac55 | 940 | sodealloc(struct socket *so) |
1c79356b | 941 | { |
316670eb A |
942 | kauth_cred_unref(&so->so_cred); |
943 | ||
6d2010ae A |
944 | /* Remove any filters */ |
945 | sflt_termsock(so); | |
946 | ||
fe8ab488 A |
947 | #if CONTENT_FILTER |
948 | cfil_sock_detach(so); | |
949 | #endif /* CONTENT_FILTER */ | |
950 | ||
39236c6e A |
951 | /* Delete the state allocated for msg queues on a socket */ |
952 | if (so->so_flags & SOF_ENABLE_MSGS) { | |
953 | FREE(so->so_msg_state, M_TEMP); | |
954 | so->so_msg_state = NULL; | |
955 | } | |
956 | VERIFY(so->so_msg_state == NULL); | |
957 | ||
fe8ab488 | 958 | so->so_gencnt = OSIncrementAtomic64((SInt64 *)&so_gencnt); |
1c79356b | 959 | |
2d21ac55 A |
960 | #if CONFIG_MACF_SOCKET |
961 | mac_socket_label_destroy(so); | |
962 | #endif /* MAC_SOCKET */ | |
39236c6e | 963 | |
3e170ce0 | 964 | if (so->so_flags1 & SOF1_CACHED_IN_SOCK_LAYER) { |
2d21ac55 A |
965 | cached_sock_free(so); |
966 | } else { | |
2d21ac55 | 967 | FREE_ZONE(so, sizeof (*so), so->so_zone); |
91447636 | 968 | } |
1c79356b A |
969 | } |
970 | ||
2d21ac55 A |
971 | /* |
972 | * Returns: 0 Success | |
973 | * EINVAL | |
974 | * EOPNOTSUPP | |
975 | * <pru_listen>:EINVAL[AF_UNIX] | |
976 | * <pru_listen>:EINVAL[TCP] | |
977 | * <pru_listen>:EADDRNOTAVAIL[TCP] Address not available. | |
978 | * <pru_listen>:EINVAL[TCP] Invalid argument | |
979 | * <pru_listen>:EAFNOSUPPORT[TCP] Address family not supported [notdef] | |
980 | * <pru_listen>:EACCES[TCP] Permission denied | |
981 | * <pru_listen>:EADDRINUSE[TCP] Address in use | |
982 | * <pru_listen>:EAGAIN[TCP] Resource unavailable, try again | |
983 | * <pru_listen>:EPERM[TCP] Operation not permitted | |
984 | * <sf_listen>:??? | |
985 | * | |
986 | * Notes: Other <pru_listen> returns depend on the protocol family; all | |
987 | * <sf_listen> returns depend on what the filter author causes | |
988 | * their filter to return. | |
989 | */ | |
1c79356b | 990 | int |
2d21ac55 | 991 | solisten(struct socket *so, int backlog) |
1c79356b | 992 | { |
1c79356b | 993 | struct proc *p = current_proc(); |
2d21ac55 | 994 | int error = 0; |
1c79356b | 995 | |
91447636 | 996 | socket_lock(so, 1); |
39236c6e A |
997 | |
998 | so_update_last_owner_locked(so, p); | |
999 | so_update_policy(so); | |
3e170ce0 | 1000 | |
fe8ab488 A |
1001 | #if NECP |
1002 | so_update_necp_policy(so, NULL, NULL); | |
1003 | #endif /* NECP */ | |
3e170ce0 | 1004 | |
2d21ac55 A |
1005 | if (so->so_proto == NULL) { |
1006 | error = EINVAL; | |
1007 | goto out; | |
1008 | } | |
1009 | if ((so->so_proto->pr_flags & PR_CONNREQUIRED) == 0) { | |
1010 | error = EOPNOTSUPP; | |
1011 | goto out; | |
1012 | } | |
1013 | ||
1014 | /* | |
1015 | * If the listen request is made on a socket that is not fully | |
6d2010ae A |
1016 | * disconnected, or on a socket that has been marked as inactive, |
1017 | * reject the request now. | |
2d21ac55 A |
1018 | */ |
1019 | if ((so->so_state & | |
1020 | (SS_ISCONNECTED|SS_ISCONNECTING|SS_ISDISCONNECTING)) || | |
1021 | (so->so_flags & SOF_DEFUNCT)) { | |
1022 | error = EINVAL; | |
6d2010ae | 1023 | if (so->so_flags & SOF_DEFUNCT) { |
39037602 | 1024 | SODEFUNCTLOG("%s[%d, %s]: defunct so 0x%llx [%d,%d] " |
39236c6e | 1025 | "(%d)\n", __func__, proc_pid(p), |
39037602 | 1026 | proc_best_name(p), |
3e170ce0 | 1027 | (uint64_t)DEBUG_KERNEL_ADDRPERM(so), |
39037602 | 1028 | SOCK_DOM(so), SOCK_TYPE(so), error); |
6d2010ae | 1029 | } |
2d21ac55 A |
1030 | goto out; |
1031 | } | |
1032 | ||
39236c6e | 1033 | if ((so->so_restrictions & SO_RESTRICT_DENY_IN) != 0) { |
2d21ac55 A |
1034 | error = EPERM; |
1035 | goto out; | |
1036 | } | |
1037 | ||
6d2010ae | 1038 | error = sflt_listen(so); |
39236c6e | 1039 | if (error == 0) |
91447636 | 1040 | error = (*so->so_proto->pr_usrreqs->pru_listen)(so, p); |
2d21ac55 | 1041 | |
1c79356b | 1042 | if (error) { |
91447636 A |
1043 | if (error == EJUSTRETURN) |
1044 | error = 0; | |
2d21ac55 | 1045 | goto out; |
1c79356b | 1046 | } |
2d21ac55 | 1047 | |
91447636 | 1048 | if (TAILQ_EMPTY(&so->so_comp)) |
1c79356b | 1049 | so->so_options |= SO_ACCEPTCONN; |
2d21ac55 A |
1050 | /* |
1051 | * POSIX: The implementation may have an upper limit on the length of | |
1052 | * the listen queue-either global or per accepting socket. If backlog | |
1053 | * exceeds this limit, the length of the listen queue is set to the | |
1054 | * limit. | |
1055 | * | |
1056 | * If listen() is called with a backlog argument value that is less | |
1057 | * than 0, the function behaves as if it had been called with a backlog | |
1058 | * argument value of 0. | |
1059 | * | |
1060 | * A backlog argument of 0 may allow the socket to accept connections, | |
1061 | * in which case the length of the listen queue may be set to an | |
1062 | * implementation-defined minimum value. | |
1063 | */ | |
1064 | if (backlog <= 0 || backlog > somaxconn) | |
1c79356b | 1065 | backlog = somaxconn; |
1c79356b | 1066 | |
2d21ac55 A |
1067 | so->so_qlimit = backlog; |
1068 | out: | |
91447636 | 1069 | socket_unlock(so, 1); |
2d21ac55 | 1070 | return (error); |
1c79356b A |
1071 | } |
1072 | ||
813fb2f6 A |
1073 | /* |
1074 | * The "accept list lock" protects the fields related to the listener queues | |
1075 | * because we can unlock a socket to respect the lock ordering between | |
1076 | * the listener socket and its clients sockets. The lock ordering is first to | |
1077 | * acquire the client socket before the listener socket. | |
1078 | * | |
1079 | * The accept list lock serializes access to the following fields: | |
1080 | * - of the listener socket: | |
1081 | * - so_comp | |
1082 | * - so_incomp | |
1083 | * - so_qlen | |
1084 | * - so_inqlen | |
1085 | * - of client sockets that are in so_comp or so_incomp: | |
1086 | * - so_head | |
1087 | * - so_list | |
1088 | * | |
1089 | * As one can see the accept list lock protects the consistent of the | |
1090 | * linkage of the client sockets. | |
1091 | * | |
1092 | * Note that those fields may be read without holding the accept list lock | |
1093 | * for a preflight provided the accept list lock is taken when committing | |
1094 | * to take an action based on the result of the preflight. The preflight | |
1095 | * saves the cost of doing the unlock/lock dance. | |
1096 | */ | |
1097 | void | |
1098 | so_acquire_accept_list(struct socket *head, struct socket *so) | |
1099 | { | |
1100 | lck_mtx_t *mutex_held; | |
1101 | ||
1102 | if (head->so_proto->pr_getlock == NULL) { | |
1103 | return; | |
1104 | } | |
5ba3f43e A |
1105 | mutex_held = (*head->so_proto->pr_getlock)(head, PR_F_WILLUNLOCK); |
1106 | LCK_MTX_ASSERT(mutex_held, LCK_MTX_ASSERT_OWNED); | |
813fb2f6 A |
1107 | |
1108 | if (!(head->so_flags1 & SOF1_ACCEPT_LIST_HELD)) { | |
1109 | head->so_flags1 |= SOF1_ACCEPT_LIST_HELD; | |
1110 | return; | |
1111 | } | |
1112 | if (so != NULL) { | |
1113 | socket_unlock(so, 0); | |
1114 | } | |
1115 | while (head->so_flags1 & SOF1_ACCEPT_LIST_HELD) { | |
1116 | so_accept_list_waits += 1; | |
1117 | msleep((caddr_t)&head->so_incomp, mutex_held, | |
1118 | PSOCK | PCATCH, __func__, NULL); | |
1119 | } | |
1120 | head->so_flags1 |= SOF1_ACCEPT_LIST_HELD; | |
1121 | if (so != NULL) { | |
1122 | socket_unlock(head, 0); | |
1123 | socket_lock(so, 0); | |
1124 | socket_lock(head, 0); | |
1125 | } | |
1126 | } | |
1127 | ||
1128 | void | |
1129 | so_release_accept_list(struct socket *head) | |
1130 | { | |
1131 | if (head->so_proto->pr_getlock != NULL) { | |
1132 | lck_mtx_t *mutex_held; | |
1133 | ||
1134 | mutex_held = (*head->so_proto->pr_getlock)(head, 0); | |
5ba3f43e A |
1135 | LCK_MTX_ASSERT(mutex_held, LCK_MTX_ASSERT_OWNED); |
1136 | ||
813fb2f6 A |
1137 | head->so_flags1 &= ~SOF1_ACCEPT_LIST_HELD; |
1138 | wakeup((caddr_t)&head->so_incomp); | |
1139 | } | |
1140 | } | |
1141 | ||
1c79356b | 1142 | void |
2d21ac55 | 1143 | sofreelastref(struct socket *so, int dealloc) |
9bccf70c | 1144 | { |
1c79356b A |
1145 | struct socket *head = so->so_head; |
1146 | ||
2d21ac55 | 1147 | /* Assume socket is locked */ |
1c79356b | 1148 | |
39236c6e | 1149 | if (!(so->so_flags & SOF_PCBCLEARING) || !(so->so_state & SS_NOFDREF)) { |
0b4e3aa0 A |
1150 | selthreadclear(&so->so_snd.sb_sel); |
1151 | selthreadclear(&so->so_rcv.sb_sel); | |
39236c6e A |
1152 | so->so_rcv.sb_flags &= ~(SB_SEL|SB_UPCALL); |
1153 | so->so_snd.sb_flags &= ~(SB_SEL|SB_UPCALL); | |
fe8ab488 | 1154 | so->so_event = sonullevent; |
1c79356b | 1155 | return; |
0b4e3aa0 | 1156 | } |
9bccf70c | 1157 | if (head != NULL) { |
d190cdc3 A |
1158 | /* |
1159 | * Need to lock the listener when the protocol has | |
1160 | * per socket locks | |
1161 | */ | |
813fb2f6 | 1162 | if (head->so_proto->pr_getlock != NULL) { |
d190cdc3 | 1163 | socket_lock(head, 1); |
813fb2f6 A |
1164 | so_acquire_accept_list(head, so); |
1165 | } | |
9bccf70c | 1166 | if (so->so_state & SS_INCOMP) { |
d190cdc3 | 1167 | so->so_state &= ~SS_INCOMP; |
9bccf70c A |
1168 | TAILQ_REMOVE(&head->so_incomp, so, so_list); |
1169 | head->so_incqlen--; | |
d190cdc3 A |
1170 | head->so_qlen--; |
1171 | so->so_head = NULL; | |
813fb2f6 A |
1172 | |
1173 | if (head->so_proto->pr_getlock != NULL) { | |
1174 | so_release_accept_list(head); | |
1175 | socket_unlock(head, 1); | |
1176 | } | |
9bccf70c | 1177 | } else if (so->so_state & SS_COMP) { |
813fb2f6 A |
1178 | if (head->so_proto->pr_getlock != NULL) { |
1179 | so_release_accept_list(head); | |
1180 | socket_unlock(head, 1); | |
1181 | } | |
9bccf70c A |
1182 | /* |
1183 | * We must not decommission a socket that's | |
1184 | * on the accept(2) queue. If we do, then | |
1185 | * accept(2) may hang after select(2) indicated | |
1186 | * that the listening socket was ready. | |
1187 | */ | |
9bccf70c A |
1188 | selthreadclear(&so->so_snd.sb_sel); |
1189 | selthreadclear(&so->so_rcv.sb_sel); | |
39236c6e A |
1190 | so->so_rcv.sb_flags &= ~(SB_SEL|SB_UPCALL); |
1191 | so->so_snd.sb_flags &= ~(SB_SEL|SB_UPCALL); | |
fe8ab488 | 1192 | so->so_event = sonullevent; |
9bccf70c A |
1193 | return; |
1194 | } else { | |
813fb2f6 A |
1195 | if (head->so_proto->pr_getlock != NULL) { |
1196 | so_release_accept_list(head); | |
5ba3f43e A |
1197 | socket_unlock(head, 1); |
1198 | } | |
813fb2f6 | 1199 | printf("sofree: not queued\n"); |
9bccf70c | 1200 | } |
1c79356b | 1201 | } |
39236c6e | 1202 | sowflush(so); |
1c79356b | 1203 | sorflush(so); |
2d21ac55 | 1204 | |
39236c6e A |
1205 | #if FLOW_DIVERT |
1206 | if (so->so_flags & SOF_FLOW_DIVERT) { | |
1207 | flow_divert_detach(so); | |
1208 | } | |
1209 | #endif /* FLOW_DIVERT */ | |
1210 | ||
91447636 A |
1211 | /* 3932268: disable upcall */ |
1212 | so->so_rcv.sb_flags &= ~SB_UPCALL; | |
39037602 | 1213 | so->so_snd.sb_flags &= ~(SB_UPCALL|SB_SNDBYTE_CNT); |
fe8ab488 | 1214 | so->so_event = sonullevent; |
2d21ac55 | 1215 | |
91447636 A |
1216 | if (dealloc) |
1217 | sodealloc(so); | |
1c79356b A |
1218 | } |
1219 | ||
2d21ac55 A |
1220 | void |
1221 | soclose_wait_locked(struct socket *so) | |
1222 | { | |
1223 | lck_mtx_t *mutex_held; | |
1224 | ||
1225 | if (so->so_proto->pr_getlock != NULL) | |
5ba3f43e | 1226 | mutex_held = (*so->so_proto->pr_getlock)(so, PR_F_WILLUNLOCK); |
2d21ac55 A |
1227 | else |
1228 | mutex_held = so->so_proto->pr_domain->dom_mtx; | |
5ba3f43e | 1229 | LCK_MTX_ASSERT(mutex_held, LCK_MTX_ASSERT_OWNED); |
2d21ac55 | 1230 | |
4a3eedf9 A |
1231 | /* |
1232 | * Double check here and return if there's no outstanding upcall; | |
1233 | * otherwise proceed further only if SOF_UPCALLCLOSEWAIT is set. | |
1234 | */ | |
316670eb | 1235 | if (!so->so_upcallusecount || !(so->so_flags & SOF_UPCALLCLOSEWAIT)) |
2d21ac55 | 1236 | return; |
316670eb A |
1237 | so->so_rcv.sb_flags &= ~SB_UPCALL; |
1238 | so->so_snd.sb_flags &= ~SB_UPCALL; | |
2d21ac55 | 1239 | so->so_flags |= SOF_CLOSEWAIT; |
5ba3f43e | 1240 | |
39236c6e | 1241 | (void) msleep((caddr_t)&so->so_upcallusecount, mutex_held, (PZERO - 1), |
2d21ac55 | 1242 | "soclose_wait_locked", NULL); |
5ba3f43e | 1243 | LCK_MTX_ASSERT(mutex_held, LCK_MTX_ASSERT_OWNED); |
2d21ac55 A |
1244 | so->so_flags &= ~SOF_CLOSEWAIT; |
1245 | } | |
1246 | ||
1c79356b A |
1247 | /* |
1248 | * Close a socket on last file table reference removal. | |
1249 | * Initiate disconnect if connected. | |
1250 | * Free socket when disconnect complete. | |
1251 | */ | |
1252 | int | |
2d21ac55 | 1253 | soclose_locked(struct socket *so) |
1c79356b | 1254 | { |
1c79356b | 1255 | int error = 0; |
91447636 | 1256 | struct timespec ts; |
1c79356b | 1257 | |
91447636 | 1258 | if (so->so_usecount == 0) { |
2d21ac55 | 1259 | panic("soclose: so=%p refcount=0\n", so); |
39236c6e | 1260 | /* NOTREACHED */ |
1c79356b A |
1261 | } |
1262 | ||
91447636 | 1263 | sflt_notify(so, sock_evt_closing, NULL); |
2d21ac55 | 1264 | |
39236c6e A |
1265 | if (so->so_upcallusecount) |
1266 | soclose_wait_locked(so); | |
1267 | ||
fe8ab488 A |
1268 | #if CONTENT_FILTER |
1269 | /* | |
1270 | * We have to wait until the content filters are done | |
1271 | */ | |
1272 | if ((so->so_flags & SOF_CONTENT_FILTER) != 0) { | |
1273 | cfil_sock_close_wait(so); | |
1274 | cfil_sock_is_closed(so); | |
1275 | cfil_sock_detach(so); | |
1276 | } | |
1277 | #endif /* CONTENT_FILTER */ | |
1278 | ||
3e170ce0 A |
1279 | if (so->so_flags1 & SOF1_EXTEND_BK_IDLE_INPROG) { |
1280 | soresume(current_proc(), so, 1); | |
1281 | so->so_flags1 &= ~SOF1_EXTEND_BK_IDLE_WANTED; | |
1282 | } | |
1283 | ||
91447636 | 1284 | if ((so->so_options & SO_ACCEPTCONN)) { |
813fb2f6 A |
1285 | struct socket *sp, *sonext; |
1286 | int persocklock = 0; | |
1287 | int incomp_overflow_only; | |
2d21ac55 A |
1288 | |
1289 | /* | |
1290 | * We do not want new connection to be added | |
1291 | * to the connection queues | |
1292 | */ | |
91447636 | 1293 | so->so_options &= ~SO_ACCEPTCONN; |
2d21ac55 | 1294 | |
813fb2f6 A |
1295 | /* |
1296 | * We can drop the lock on the listener once | |
1297 | * we've acquired the incoming list | |
1298 | */ | |
1299 | if (so->so_proto->pr_getlock != NULL) { | |
1300 | persocklock = 1; | |
1301 | so_acquire_accept_list(so, NULL); | |
1302 | socket_unlock(so, 0); | |
1303 | } | |
1304 | again: | |
1305 | incomp_overflow_only = 1; | |
2d21ac55 | 1306 | |
813fb2f6 | 1307 | TAILQ_FOREACH_SAFE(sp, &so->so_incomp, so_list, sonext) { |
39236c6e A |
1308 | /* |
1309 | * Radar 5350314 | |
2d21ac55 A |
1310 | * skip sockets thrown away by tcpdropdropblreq |
1311 | * they will get cleanup by the garbage collection. | |
1312 | * otherwise, remove the incomp socket from the queue | |
1313 | * and let soabort trigger the appropriate cleanup. | |
91447636 | 1314 | */ |
39236c6e | 1315 | if (sp->so_flags & SOF_OVERFLOW) |
2d21ac55 A |
1316 | continue; |
1317 | ||
813fb2f6 | 1318 | if (persocklock != 0) |
ff6e181a | 1319 | socket_lock(sp, 1); |
2d21ac55 | 1320 | |
d190cdc3 A |
1321 | /* |
1322 | * Radar 27945981 | |
1323 | * The extra reference for the list insure the | |
1324 | * validity of the socket pointer when we perform the | |
1325 | * unlock of the head above | |
1326 | */ | |
2d21ac55 A |
1327 | if (sp->so_state & SS_INCOMP) { |
1328 | sp->so_state &= ~SS_INCOMP; | |
1329 | sp->so_head = NULL; | |
d190cdc3 A |
1330 | TAILQ_REMOVE(&so->so_incomp, sp, so_list); |
1331 | so->so_incqlen--; | |
1332 | so->so_qlen--; | |
2d21ac55 A |
1333 | |
1334 | (void) soabort(sp); | |
813fb2f6 A |
1335 | } else { |
1336 | panic("%s sp %p in so_incomp but !SS_INCOMP", | |
1337 | __func__, sp); | |
ff6e181a | 1338 | } |
2d21ac55 | 1339 | |
813fb2f6 | 1340 | if (persocklock != 0) |
2d21ac55 | 1341 | socket_unlock(sp, 1); |
91447636 A |
1342 | } |
1343 | ||
813fb2f6 | 1344 | TAILQ_FOREACH_SAFE(sp, &so->so_comp, so_list, sonext) { |
91447636 | 1345 | /* Dequeue from so_comp since sofree() won't do it */ |
813fb2f6 | 1346 | if (persocklock != 0) |
ff6e181a | 1347 | socket_lock(sp, 1); |
ff6e181a | 1348 | |
2d21ac55 A |
1349 | if (sp->so_state & SS_COMP) { |
1350 | sp->so_state &= ~SS_COMP; | |
1351 | sp->so_head = NULL; | |
d190cdc3 A |
1352 | TAILQ_REMOVE(&so->so_comp, sp, so_list); |
1353 | so->so_qlen--; | |
2d21ac55 A |
1354 | |
1355 | (void) soabort(sp); | |
813fb2f6 A |
1356 | } else { |
1357 | panic("%s sp %p in so_comp but !SS_COMP", | |
1358 | __func__, sp); | |
2d21ac55 | 1359 | } |
91447636 | 1360 | |
813fb2f6 | 1361 | if (persocklock) |
91447636 | 1362 | socket_unlock(sp, 1); |
ff6e181a | 1363 | } |
813fb2f6 A |
1364 | |
1365 | if (incomp_overflow_only == 0 && !TAILQ_EMPTY(&so->so_incomp)) { | |
1366 | #if (DEBUG|DEVELOPMENT) | |
1367 | panic("%s head %p so_comp not empty\n", __func__, so); | |
1368 | #endif /* (DEVELOPMENT || DEBUG) */ | |
1369 | ||
1370 | goto again; | |
91447636 | 1371 | } |
813fb2f6 A |
1372 | |
1373 | if (!TAILQ_EMPTY(&so->so_comp)) { | |
1374 | #if (DEBUG|DEVELOPMENT) | |
1375 | panic("%s head %p so_comp not empty\n", __func__, so); | |
1376 | #endif /* (DEVELOPMENT || DEBUG) */ | |
1377 | ||
1378 | goto again; | |
1379 | } | |
1380 | ||
1381 | if (persocklock) { | |
1382 | socket_lock(so, 0); | |
1383 | so_release_accept_list(so); | |
1384 | } | |
1385 | } | |
39236c6e | 1386 | if (so->so_pcb == NULL) { |
91447636 A |
1387 | /* 3915887: mark the socket as ready for dealloc */ |
1388 | so->so_flags |= SOF_PCBCLEARING; | |
1c79356b | 1389 | goto discard; |
91447636 | 1390 | } |
1c79356b A |
1391 | if (so->so_state & SS_ISCONNECTED) { |
1392 | if ((so->so_state & SS_ISDISCONNECTING) == 0) { | |
91447636 | 1393 | error = sodisconnectlocked(so); |
1c79356b A |
1394 | if (error) |
1395 | goto drop; | |
1396 | } | |
1397 | if (so->so_options & SO_LINGER) { | |
813fb2f6 A |
1398 | lck_mtx_t *mutex_held; |
1399 | ||
1c79356b A |
1400 | if ((so->so_state & SS_ISDISCONNECTING) && |
1401 | (so->so_state & SS_NBIO)) | |
1402 | goto drop; | |
2d21ac55 | 1403 | if (so->so_proto->pr_getlock != NULL) |
5ba3f43e | 1404 | mutex_held = (*so->so_proto->pr_getlock)(so, PR_F_WILLUNLOCK); |
2d21ac55 | 1405 | else |
91447636 | 1406 | mutex_held = so->so_proto->pr_domain->dom_mtx; |
1c79356b | 1407 | while (so->so_state & SS_ISCONNECTED) { |
91447636 | 1408 | ts.tv_sec = (so->so_linger/100); |
2d21ac55 A |
1409 | ts.tv_nsec = (so->so_linger % 100) * |
1410 | NSEC_PER_USEC * 1000 * 10; | |
1411 | error = msleep((caddr_t)&so->so_timeo, | |
1412 | mutex_held, PSOCK | PCATCH, "soclose", &ts); | |
91447636 | 1413 | if (error) { |
2d21ac55 A |
1414 | /* |
1415 | * It's OK when the time fires, | |
1416 | * don't report an error | |
1417 | */ | |
91447636 A |
1418 | if (error == EWOULDBLOCK) |
1419 | error = 0; | |
1c79356b | 1420 | break; |
91447636 | 1421 | } |
1c79356b A |
1422 | } |
1423 | } | |
1424 | } | |
1425 | drop: | |
39236c6e | 1426 | if (so->so_usecount == 0) { |
2d21ac55 | 1427 | panic("soclose: usecount is zero so=%p\n", so); |
39236c6e A |
1428 | /* NOTREACHED */ |
1429 | } | |
1430 | if (so->so_pcb != NULL && !(so->so_flags & SOF_PCBCLEARING)) { | |
1c79356b A |
1431 | int error2 = (*so->so_proto->pr_usrreqs->pru_detach)(so); |
1432 | if (error == 0) | |
1433 | error = error2; | |
1434 | } | |
39236c6e | 1435 | if (so->so_usecount <= 0) { |
2d21ac55 | 1436 | panic("soclose: usecount is zero so=%p\n", so); |
39236c6e A |
1437 | /* NOTREACHED */ |
1438 | } | |
1c79356b | 1439 | discard: |
39236c6e A |
1440 | if (so->so_pcb != NULL && !(so->so_flags & SOF_MP_SUBFLOW) && |
1441 | (so->so_state & SS_NOFDREF)) { | |
1c79356b | 1442 | panic("soclose: NOFDREF"); |
39236c6e A |
1443 | /* NOTREACHED */ |
1444 | } | |
1c79356b | 1445 | so->so_state |= SS_NOFDREF; |
39236c6e | 1446 | |
316670eb A |
1447 | if ((so->so_flags & SOF_KNOTE) != 0) |
1448 | KNOTE(&so->so_klist, SO_FILT_HINT_LOCKED); | |
39236c6e A |
1449 | |
1450 | atomic_add_32(&so->so_proto->pr_domain->dom_refs, -1); | |
1c79356b | 1451 | evsofree(so); |
39236c6e | 1452 | |
d190cdc3 | 1453 | VERIFY(so->so_usecount > 0); |
91447636 | 1454 | so->so_usecount--; |
1c79356b | 1455 | sofree(so); |
1c79356b A |
1456 | return (error); |
1457 | } | |
1458 | ||
91447636 | 1459 | int |
2d21ac55 | 1460 | soclose(struct socket *so) |
91447636 A |
1461 | { |
1462 | int error = 0; | |
1463 | socket_lock(so, 1); | |
2d21ac55 | 1464 | |
2d21ac55 | 1465 | if (so->so_retaincnt == 0) { |
91447636 | 1466 | error = soclose_locked(so); |
2d21ac55 A |
1467 | } else { |
1468 | /* | |
1469 | * if the FD is going away, but socket is | |
1470 | * retained in kernel remove its reference | |
1471 | */ | |
91447636 A |
1472 | so->so_usecount--; |
1473 | if (so->so_usecount < 2) | |
2d21ac55 A |
1474 | panic("soclose: retaincnt non null and so=%p " |
1475 | "usecount=%d\n", so, so->so_usecount); | |
91447636 A |
1476 | } |
1477 | socket_unlock(so, 1); | |
1478 | return (error); | |
1479 | } | |
1480 | ||
1c79356b A |
1481 | /* |
1482 | * Must be called at splnet... | |
1483 | */ | |
2d21ac55 | 1484 | /* Should already be locked */ |
1c79356b | 1485 | int |
2d21ac55 | 1486 | soabort(struct socket *so) |
1c79356b | 1487 | { |
9bccf70c | 1488 | int error; |
1c79356b | 1489 | |
91447636 | 1490 | #ifdef MORE_LOCKING_DEBUG |
2d21ac55 | 1491 | lck_mtx_t *mutex_held; |
91447636 | 1492 | |
2d21ac55 | 1493 | if (so->so_proto->pr_getlock != NULL) |
91447636 | 1494 | mutex_held = (*so->so_proto->pr_getlock)(so, 0); |
2d21ac55 | 1495 | else |
91447636 | 1496 | mutex_held = so->so_proto->pr_domain->dom_mtx; |
5ba3f43e | 1497 | LCK_MTX_ASSERT(mutex_held, LCK_MTX_ASSERT_OWNED); |
91447636 A |
1498 | #endif |
1499 | ||
2d21ac55 A |
1500 | if ((so->so_flags & SOF_ABORTED) == 0) { |
1501 | so->so_flags |= SOF_ABORTED; | |
1502 | error = (*so->so_proto->pr_usrreqs->pru_abort)(so); | |
1503 | if (error) { | |
1504 | sofree(so); | |
1505 | return (error); | |
1506 | } | |
9bccf70c A |
1507 | } |
1508 | return (0); | |
1c79356b A |
1509 | } |
1510 | ||
1511 | int | |
2d21ac55 | 1512 | soacceptlock(struct socket *so, struct sockaddr **nam, int dolock) |
9bccf70c | 1513 | { |
1c79356b | 1514 | int error; |
91447636 | 1515 | |
2d21ac55 A |
1516 | if (dolock) |
1517 | socket_lock(so, 1); | |
1c79356b | 1518 | |
39236c6e A |
1519 | so_update_last_owner_locked(so, PROC_NULL); |
1520 | so_update_policy(so); | |
fe8ab488 A |
1521 | #if NECP |
1522 | so_update_necp_policy(so, NULL, NULL); | |
1523 | #endif /* NECP */ | |
39236c6e | 1524 | |
1c79356b A |
1525 | if ((so->so_state & SS_NOFDREF) == 0) |
1526 | panic("soaccept: !NOFDREF"); | |
1527 | so->so_state &= ~SS_NOFDREF; | |
1528 | error = (*so->so_proto->pr_usrreqs->pru_accept)(so, nam); | |
2d21ac55 A |
1529 | |
1530 | if (dolock) | |
1531 | socket_unlock(so, 1); | |
1c79356b A |
1532 | return (error); |
1533 | } | |
2d21ac55 | 1534 | |
91447636 | 1535 | int |
2d21ac55 | 1536 | soaccept(struct socket *so, struct sockaddr **nam) |
91447636 A |
1537 | { |
1538 | return (soacceptlock(so, nam, 1)); | |
1539 | } | |
1c79356b A |
1540 | |
1541 | int | |
d190cdc3 | 1542 | soacceptfilter(struct socket *so, struct socket *head) |
2d21ac55 A |
1543 | { |
1544 | struct sockaddr *local = NULL, *remote = NULL; | |
6d2010ae | 1545 | int error = 0; |
2d21ac55 A |
1546 | |
1547 | /* | |
39236c6e A |
1548 | * Hold the lock even if this socket has not been made visible |
1549 | * to the filter(s). For sockets with global locks, this protects | |
1550 | * against the head or peer going away | |
2d21ac55 | 1551 | */ |
b0d623f7 A |
1552 | socket_lock(so, 1); |
1553 | if (sogetaddr_locked(so, &remote, 1) != 0 || | |
1554 | sogetaddr_locked(so, &local, 0) != 0) { | |
d190cdc3 | 1555 | so->so_state &= ~SS_NOFDREF; |
b0d623f7 | 1556 | socket_unlock(so, 1); |
2d21ac55 A |
1557 | soclose(so); |
1558 | /* Out of resources; try it again next time */ | |
1559 | error = ECONNABORTED; | |
1560 | goto done; | |
1561 | } | |
1562 | ||
6d2010ae | 1563 | error = sflt_accept(head, so, local, remote); |
2d21ac55 A |
1564 | |
1565 | /* | |
1566 | * If we get EJUSTRETURN from one of the filters, mark this socket | |
1567 | * as inactive and return it anyway. This newly accepted socket | |
1568 | * will be disconnected later before we hand it off to the caller. | |
1569 | */ | |
1570 | if (error == EJUSTRETURN) { | |
1571 | error = 0; | |
6d2010ae A |
1572 | (void) sosetdefunct(current_proc(), so, |
1573 | SHUTDOWN_SOCKET_LEVEL_DISCONNECT_INTERNAL, FALSE); | |
2d21ac55 A |
1574 | } |
1575 | ||
1576 | if (error != 0) { | |
1577 | /* | |
1578 | * This may seem like a duplication to the above error | |
1579 | * handling part when we return ECONNABORTED, except | |
1580 | * the following is done while holding the lock since | |
1581 | * the socket has been exposed to the filter(s) earlier. | |
1582 | */ | |
5ba3f43e | 1583 | so->so_state &= ~SS_NOFDREF; |
2d21ac55 A |
1584 | socket_unlock(so, 1); |
1585 | soclose(so); | |
1586 | /* Propagate socket filter's error code to the caller */ | |
1587 | } else { | |
1588 | socket_unlock(so, 1); | |
1589 | } | |
1590 | done: | |
1591 | /* Callee checks for NULL pointer */ | |
1592 | sock_freeaddr(remote); | |
1593 | sock_freeaddr(local); | |
1594 | return (error); | |
1595 | } | |
1c79356b | 1596 | |
2d21ac55 A |
1597 | /* |
1598 | * Returns: 0 Success | |
1599 | * EOPNOTSUPP Operation not supported on socket | |
1600 | * EISCONN Socket is connected | |
1601 | * <pru_connect>:EADDRNOTAVAIL Address not available. | |
1602 | * <pru_connect>:EINVAL Invalid argument | |
1603 | * <pru_connect>:EAFNOSUPPORT Address family not supported [notdef] | |
1604 | * <pru_connect>:EACCES Permission denied | |
1605 | * <pru_connect>:EADDRINUSE Address in use | |
1606 | * <pru_connect>:EAGAIN Resource unavailable, try again | |
1607 | * <pru_connect>:EPERM Operation not permitted | |
1608 | * <sf_connect_out>:??? [anything a filter writer might set] | |
1609 | */ | |
1610 | int | |
1611 | soconnectlock(struct socket *so, struct sockaddr *nam, int dolock) | |
1c79356b | 1612 | { |
1c79356b A |
1613 | int error; |
1614 | struct proc *p = current_proc(); | |
1c79356b | 1615 | |
2d21ac55 A |
1616 | if (dolock) |
1617 | socket_lock(so, 1); | |
39236c6e A |
1618 | |
1619 | so_update_last_owner_locked(so, p); | |
1620 | so_update_policy(so); | |
1621 | ||
fe8ab488 A |
1622 | #if NECP |
1623 | so_update_necp_policy(so, NULL, nam); | |
1624 | #endif /* NECP */ | |
1625 | ||
2d21ac55 A |
1626 | /* |
1627 | * If this is a listening socket or if this is a previously-accepted | |
1628 | * socket that has been marked as inactive, reject the connect request. | |
1629 | */ | |
1630 | if ((so->so_options & SO_ACCEPTCONN) || (so->so_flags & SOF_DEFUNCT)) { | |
6d2010ae A |
1631 | error = EOPNOTSUPP; |
1632 | if (so->so_flags & SOF_DEFUNCT) { | |
39037602 | 1633 | SODEFUNCTLOG("%s[%d, %s]: defunct so 0x%llx [%d,%d] " |
39236c6e | 1634 | "(%d)\n", __func__, proc_pid(p), |
39037602 | 1635 | proc_best_name(p), |
3e170ce0 | 1636 | (uint64_t)DEBUG_KERNEL_ADDRPERM(so), |
39037602 | 1637 | SOCK_DOM(so), SOCK_TYPE(so), error); |
6d2010ae | 1638 | } |
2d21ac55 A |
1639 | if (dolock) |
1640 | socket_unlock(so, 1); | |
6d2010ae | 1641 | return (error); |
91447636 | 1642 | } |
2d21ac55 | 1643 | |
39236c6e | 1644 | if ((so->so_restrictions & SO_RESTRICT_DENY_OUT) != 0) { |
2d21ac55 A |
1645 | if (dolock) |
1646 | socket_unlock(so, 1); | |
1647 | return (EPERM); | |
1648 | } | |
1649 | ||
1c79356b A |
1650 | /* |
1651 | * If protocol is connection-based, can only connect once. | |
1652 | * Otherwise, if connected, try to disconnect first. | |
1653 | * This allows user to disconnect by connecting to, e.g., | |
1654 | * a null address. | |
1655 | */ | |
1656 | if (so->so_state & (SS_ISCONNECTED|SS_ISCONNECTING) && | |
1657 | ((so->so_proto->pr_flags & PR_CONNREQUIRED) || | |
2d21ac55 | 1658 | (error = sodisconnectlocked(so)))) { |
1c79356b | 1659 | error = EISCONN; |
2d21ac55 | 1660 | } else { |
91447636 A |
1661 | /* |
1662 | * Run connect filter before calling protocol: | |
1663 | * - non-blocking connect returns before completion; | |
1664 | */ | |
6d2010ae | 1665 | error = sflt_connectout(so, nam); |
39236c6e | 1666 | if (error != 0) { |
91447636 A |
1667 | if (error == EJUSTRETURN) |
1668 | error = 0; | |
6d2010ae | 1669 | } else { |
39236c6e A |
1670 | error = (*so->so_proto->pr_usrreqs->pru_connect) |
1671 | (so, nam, p); | |
91447636 | 1672 | } |
1c79356b | 1673 | } |
2d21ac55 A |
1674 | if (dolock) |
1675 | socket_unlock(so, 1); | |
1c79356b A |
1676 | return (error); |
1677 | } | |
1678 | ||
91447636 | 1679 | int |
2d21ac55 | 1680 | soconnect(struct socket *so, struct sockaddr *nam) |
91447636 A |
1681 | { |
1682 | return (soconnectlock(so, nam, 1)); | |
1683 | } | |
1684 | ||
2d21ac55 A |
1685 | /* |
1686 | * Returns: 0 Success | |
1687 | * <pru_connect2>:EINVAL[AF_UNIX] | |
1688 | * <pru_connect2>:EPROTOTYPE[AF_UNIX] | |
1689 | * <pru_connect2>:??? [other protocol families] | |
1690 | * | |
1691 | * Notes: <pru_connect2> is not supported by [TCP]. | |
1692 | */ | |
1c79356b | 1693 | int |
2d21ac55 | 1694 | soconnect2(struct socket *so1, struct socket *so2) |
1c79356b | 1695 | { |
1c79356b | 1696 | int error; |
91447636 | 1697 | |
0c530ab8 | 1698 | socket_lock(so1, 1); |
2d21ac55 | 1699 | if (so2->so_proto->pr_lock) |
0c530ab8 | 1700 | socket_lock(so2, 1); |
1c79356b A |
1701 | |
1702 | error = (*so1->so_proto->pr_usrreqs->pru_connect2)(so1, so2); | |
2d21ac55 | 1703 | |
0c530ab8 | 1704 | socket_unlock(so1, 1); |
2d21ac55 | 1705 | if (so2->so_proto->pr_lock) |
0c530ab8 | 1706 | socket_unlock(so2, 1); |
1c79356b A |
1707 | return (error); |
1708 | } | |
1709 | ||
39236c6e | 1710 | int |
813fb2f6 A |
1711 | soconnectxlocked(struct socket *so, struct sockaddr *src, |
1712 | struct sockaddr *dst, struct proc *p, uint32_t ifscope, | |
3e170ce0 A |
1713 | sae_associd_t aid, sae_connid_t *pcid, uint32_t flags, void *arg, |
1714 | uint32_t arglen, uio_t auio, user_ssize_t *bytes_written) | |
39236c6e A |
1715 | { |
1716 | int error; | |
1717 | ||
fe8ab488 A |
1718 | so_update_last_owner_locked(so, p); |
1719 | so_update_policy(so); | |
3e170ce0 | 1720 | |
39236c6e A |
1721 | /* |
1722 | * If this is a listening socket or if this is a previously-accepted | |
1723 | * socket that has been marked as inactive, reject the connect request. | |
1724 | */ | |
1725 | if ((so->so_options & SO_ACCEPTCONN) || (so->so_flags & SOF_DEFUNCT)) { | |
1726 | error = EOPNOTSUPP; | |
1727 | if (so->so_flags & SOF_DEFUNCT) { | |
39037602 | 1728 | SODEFUNCTLOG("%s[%d, %s]: defunct so 0x%llx [%d,%d] " |
39236c6e | 1729 | "(%d)\n", __func__, proc_pid(p), |
39037602 | 1730 | proc_best_name(p), |
3e170ce0 | 1731 | (uint64_t)DEBUG_KERNEL_ADDRPERM(so), |
39037602 | 1732 | SOCK_DOM(so), SOCK_TYPE(so), error); |
39236c6e A |
1733 | } |
1734 | return (error); | |
1735 | } | |
1736 | ||
1737 | if ((so->so_restrictions & SO_RESTRICT_DENY_OUT) != 0) | |
1738 | return (EPERM); | |
1739 | ||
1740 | /* | |
1741 | * If protocol is connection-based, can only connect once | |
1742 | * unless PR_MULTICONN is set. Otherwise, if connected, | |
1743 | * try to disconnect first. This allows user to disconnect | |
1744 | * by connecting to, e.g., a null address. | |
1745 | */ | |
1746 | if ((so->so_state & (SS_ISCONNECTED|SS_ISCONNECTING)) && | |
1747 | !(so->so_proto->pr_flags & PR_MULTICONN) && | |
1748 | ((so->so_proto->pr_flags & PR_CONNREQUIRED) || | |
1749 | (error = sodisconnectlocked(so)) != 0)) { | |
1750 | error = EISCONN; | |
1751 | } else { | |
1752 | /* | |
1753 | * Run connect filter before calling protocol: | |
1754 | * - non-blocking connect returns before completion; | |
1755 | */ | |
813fb2f6 | 1756 | error = sflt_connectout(so, dst); |
39236c6e | 1757 | if (error != 0) { |
490019cf A |
1758 | /* Disable PRECONNECT_DATA, as we don't need to send a SYN anymore. */ |
1759 | so->so_flags1 &= ~SOF1_PRECONNECT_DATA; | |
39236c6e A |
1760 | if (error == EJUSTRETURN) |
1761 | error = 0; | |
1762 | } else { | |
1763 | error = (*so->so_proto->pr_usrreqs->pru_connectx) | |
813fb2f6 | 1764 | (so, src, dst, p, ifscope, aid, pcid, |
3e170ce0 | 1765 | flags, arg, arglen, auio, bytes_written); |
39236c6e A |
1766 | } |
1767 | } | |
1768 | ||
1769 | return (error); | |
1770 | } | |
1771 | ||
1c79356b | 1772 | int |
2d21ac55 | 1773 | sodisconnectlocked(struct socket *so) |
1c79356b | 1774 | { |
1c79356b | 1775 | int error; |
1c79356b A |
1776 | |
1777 | if ((so->so_state & SS_ISCONNECTED) == 0) { | |
1778 | error = ENOTCONN; | |
1779 | goto bad; | |
1780 | } | |
1781 | if (so->so_state & SS_ISDISCONNECTING) { | |
1782 | error = EALREADY; | |
1783 | goto bad; | |
1784 | } | |
2d21ac55 | 1785 | |
1c79356b | 1786 | error = (*so->so_proto->pr_usrreqs->pru_disconnect)(so); |
39236c6e | 1787 | if (error == 0) |
91447636 | 1788 | sflt_notify(so, sock_evt_disconnected, NULL); |
39236c6e | 1789 | |
1c79356b | 1790 | bad: |
1c79356b A |
1791 | return (error); |
1792 | } | |
2d21ac55 A |
1793 | |
1794 | /* Locking version */ | |
91447636 | 1795 | int |
2d21ac55 | 1796 | sodisconnect(struct socket *so) |
91447636 | 1797 | { |
2d21ac55 | 1798 | int error; |
91447636 A |
1799 | |
1800 | socket_lock(so, 1); | |
1801 | error = sodisconnectlocked(so); | |
1802 | socket_unlock(so, 1); | |
2d21ac55 | 1803 | return (error); |
91447636 | 1804 | } |
1c79356b | 1805 | |
39236c6e | 1806 | int |
3e170ce0 | 1807 | sodisconnectxlocked(struct socket *so, sae_associd_t aid, sae_connid_t cid) |
39236c6e A |
1808 | { |
1809 | int error; | |
1810 | ||
1811 | /* | |
1812 | * Call the protocol disconnectx handler; let it handle all | |
1813 | * matters related to the connection state of this session. | |
1814 | */ | |
1815 | error = (*so->so_proto->pr_usrreqs->pru_disconnectx)(so, aid, cid); | |
1816 | if (error == 0) { | |
1817 | /* | |
1818 | * The event applies only for the session, not for | |
1819 | * the disconnection of individual subflows. | |
1820 | */ | |
1821 | if (so->so_state & (SS_ISDISCONNECTING|SS_ISDISCONNECTED)) | |
1822 | sflt_notify(so, sock_evt_disconnected, NULL); | |
1823 | } | |
1824 | return (error); | |
1825 | } | |
1826 | ||
1827 | int | |
3e170ce0 | 1828 | sodisconnectx(struct socket *so, sae_associd_t aid, sae_connid_t cid) |
39236c6e A |
1829 | { |
1830 | int error; | |
1831 | ||
1832 | socket_lock(so, 1); | |
1833 | error = sodisconnectxlocked(so, aid, cid); | |
1834 | socket_unlock(so, 1); | |
1835 | return (error); | |
1836 | } | |
1837 | ||
39236c6e | 1838 | #define SBLOCKWAIT(f) (((f) & MSG_DONTWAIT) ? 0 : SBL_WAIT) |
91447636 A |
1839 | |
1840 | /* | |
1841 | * sosendcheck will lock the socket buffer if it isn't locked and | |
1842 | * verify that there is space for the data being inserted. | |
2d21ac55 A |
1843 | * |
1844 | * Returns: 0 Success | |
1845 | * EPIPE | |
1846 | * sblock:EWOULDBLOCK | |
1847 | * sblock:EINTR | |
1848 | * sbwait:EBADF | |
1849 | * sbwait:EINTR | |
1850 | * [so_error]:??? | |
91447636 | 1851 | */ |
39236c6e A |
1852 | int |
1853 | sosendcheck(struct socket *so, struct sockaddr *addr, user_ssize_t resid, | |
1854 | int32_t clen, int32_t atomic, int flags, int *sblocked, | |
1855 | struct mbuf *control) | |
91447636 | 1856 | { |
39236c6e | 1857 | int error = 0; |
b0d623f7 | 1858 | int32_t space; |
3a60a9f5 | 1859 | int assumelock = 0; |
91447636 A |
1860 | |
1861 | restart: | |
1862 | if (*sblocked == 0) { | |
3a60a9f5 | 1863 | if ((so->so_snd.sb_flags & SB_LOCK) != 0 && |
2d21ac55 A |
1864 | so->so_send_filt_thread != 0 && |
1865 | so->so_send_filt_thread == current_thread()) { | |
3a60a9f5 A |
1866 | /* |
1867 | * We're being called recursively from a filter, | |
1868 | * allow this to continue. Radar 4150520. | |
1869 | * Don't set sblocked because we don't want | |
1870 | * to perform an unlock later. | |
1871 | */ | |
1872 | assumelock = 1; | |
2d21ac55 | 1873 | } else { |
3a60a9f5 A |
1874 | error = sblock(&so->so_snd, SBLOCKWAIT(flags)); |
1875 | if (error) { | |
6d2010ae A |
1876 | if (so->so_flags & SOF_DEFUNCT) |
1877 | goto defunct; | |
2d21ac55 | 1878 | return (error); |
3a60a9f5 A |
1879 | } |
1880 | *sblocked = 1; | |
1881 | } | |
91447636 | 1882 | } |
2d21ac55 A |
1883 | |
1884 | /* | |
6d2010ae A |
1885 | * If a send attempt is made on a socket that has been marked |
1886 | * as inactive (disconnected), reject the request. | |
2d21ac55 | 1887 | */ |
6d2010ae A |
1888 | if (so->so_flags & SOF_DEFUNCT) { |
1889 | defunct: | |
1890 | error = EPIPE; | |
39037602 A |
1891 | SODEFUNCTLOG("%s[%d, %s]: defunct so 0x%llx [%d,%d] (%d)\n", |
1892 | __func__, proc_selfpid(), proc_best_name(current_proc()), | |
3e170ce0 | 1893 | (uint64_t)DEBUG_KERNEL_ADDRPERM(so), |
39037602 | 1894 | SOCK_DOM(so), SOCK_TYPE(so), error); |
6d2010ae A |
1895 | return (error); |
1896 | } | |
2d21ac55 | 1897 | |
fe8ab488 A |
1898 | if (so->so_state & SS_CANTSENDMORE) { |
1899 | #if CONTENT_FILTER | |
1900 | /* | |
1901 | * Can re-inject data of half closed connections | |
1902 | */ | |
1903 | if ((so->so_state & SS_ISDISCONNECTED) == 0 && | |
1904 | so->so_snd.sb_cfil_thread == current_thread() && | |
1905 | cfil_sock_data_pending(&so->so_snd) != 0) | |
1906 | CFIL_LOG(LOG_INFO, | |
1907 | "so %llx ignore SS_CANTSENDMORE", | |
3e170ce0 | 1908 | (uint64_t)DEBUG_KERNEL_ADDRPERM(so)); |
fe8ab488 A |
1909 | else |
1910 | #endif /* CONTENT_FILTER */ | |
1911 | return (EPIPE); | |
1912 | } | |
91447636 A |
1913 | if (so->so_error) { |
1914 | error = so->so_error; | |
1915 | so->so_error = 0; | |
2d21ac55 | 1916 | return (error); |
91447636 | 1917 | } |
2d21ac55 | 1918 | |
91447636 | 1919 | if ((so->so_state & SS_ISCONNECTED) == 0) { |
2d21ac55 | 1920 | if ((so->so_proto->pr_flags & PR_CONNREQUIRED) != 0) { |
fe8ab488 | 1921 | if (((so->so_state & SS_ISCONFIRMING) == 0) && |
3e170ce0 | 1922 | (resid != 0 || clen == 0) && |
5ba3f43e | 1923 | !(so->so_flags1 & SOF1_PRECONNECT_DATA)) |
2d21ac55 | 1924 | return (ENOTCONN); |
5ba3f43e | 1925 | |
2d21ac55 A |
1926 | } else if (addr == 0 && !(flags&MSG_HOLD)) { |
1927 | return ((so->so_proto->pr_flags & PR_CONNREQUIRED) ? | |
1928 | ENOTCONN : EDESTADDRREQ); | |
1929 | } | |
91447636 | 1930 | } |
3e170ce0 | 1931 | |
39236c6e A |
1932 | if (so->so_flags & SOF_ENABLE_MSGS) |
1933 | space = msgq_sbspace(so, control); | |
1934 | else | |
1935 | space = sbspace(&so->so_snd); | |
1936 | ||
91447636 A |
1937 | if (flags & MSG_OOB) |
1938 | space += 1024; | |
1939 | if ((atomic && resid > so->so_snd.sb_hiwat) || | |
2d21ac55 A |
1940 | clen > so->so_snd.sb_hiwat) |
1941 | return (EMSGSIZE); | |
39236c6e | 1942 | |
316670eb | 1943 | if ((space < resid + clen && |
3e170ce0 A |
1944 | (atomic || (space < (int32_t)so->so_snd.sb_lowat) || |
1945 | space < clen)) || | |
316670eb | 1946 | (so->so_type == SOCK_STREAM && so_wait_for_if_feedback(so))) { |
3e170ce0 A |
1947 | /* |
1948 | * don't block the connectx call when there's more data | |
1949 | * than can be copied. | |
1950 | */ | |
1951 | if (so->so_flags1 & SOF1_PRECONNECT_DATA) { | |
1952 | if (space == 0) { | |
1953 | return (EWOULDBLOCK); | |
1954 | } | |
1955 | if (space < (int32_t)so->so_snd.sb_lowat) { | |
1956 | return (0); | |
1957 | } | |
1958 | } | |
2d21ac55 A |
1959 | if ((so->so_state & SS_NBIO) || (flags & MSG_NBIO) || |
1960 | assumelock) { | |
1961 | return (EWOULDBLOCK); | |
3a60a9f5 | 1962 | } |
39236c6e | 1963 | sbunlock(&so->so_snd, TRUE); /* keep socket locked */ |
6d2010ae | 1964 | *sblocked = 0; |
91447636 A |
1965 | error = sbwait(&so->so_snd); |
1966 | if (error) { | |
6d2010ae A |
1967 | if (so->so_flags & SOF_DEFUNCT) |
1968 | goto defunct; | |
2d21ac55 | 1969 | return (error); |
91447636 A |
1970 | } |
1971 | goto restart; | |
1972 | } | |
2d21ac55 | 1973 | return (0); |
91447636 A |
1974 | } |
1975 | ||
1c79356b A |
1976 | /* |
1977 | * Send on a socket. | |
1978 | * If send must go all at once and message is larger than | |
1979 | * send buffering, then hard error. | |
1980 | * Lock against other senders. | |
1981 | * If must go all at once and not enough room now, then | |
1982 | * inform user that this would block and do nothing. | |
1983 | * Otherwise, if nonblocking, send as much as possible. | |
1984 | * The data to be sent is described by "uio" if nonzero, | |
1985 | * otherwise by the mbuf chain "top" (which must be null | |
1986 | * if uio is not). Data provided in mbuf chain must be small | |
1987 | * enough to send all at once. | |
1988 | * | |
1989 | * Returns nonzero on error, timeout or signal; callers | |
1990 | * must check for short counts if EINTR/ERESTART are returned. | |
1991 | * Data and control buffers are freed on return. | |
1992 | * Experiment: | |
1993 | * MSG_HOLD: go thru most of sosend(), but just enqueue the mbuf | |
1994 | * MSG_SEND: go thru as for MSG_HOLD on current fragment, then | |
1995 | * point at the mbuf chain being constructed and go from there. | |
2d21ac55 A |
1996 | * |
1997 | * Returns: 0 Success | |
1998 | * EOPNOTSUPP | |
1999 | * EINVAL | |
2000 | * ENOBUFS | |
2001 | * uiomove:EFAULT | |
2002 | * sosendcheck:EPIPE | |
2003 | * sosendcheck:EWOULDBLOCK | |
2004 | * sosendcheck:EINTR | |
2005 | * sosendcheck:EBADF | |
2006 | * sosendcheck:EINTR | |
2007 | * sosendcheck:??? [value from so_error] | |
2008 | * <pru_send>:ECONNRESET[TCP] | |
2009 | * <pru_send>:EINVAL[TCP] | |
2010 | * <pru_send>:ENOBUFS[TCP] | |
2011 | * <pru_send>:EADDRINUSE[TCP] | |
2012 | * <pru_send>:EADDRNOTAVAIL[TCP] | |
2013 | * <pru_send>:EAFNOSUPPORT[TCP] | |
2014 | * <pru_send>:EACCES[TCP] | |
2015 | * <pru_send>:EAGAIN[TCP] | |
2016 | * <pru_send>:EPERM[TCP] | |
2017 | * <pru_send>:EMSGSIZE[TCP] | |
2018 | * <pru_send>:EHOSTUNREACH[TCP] | |
2019 | * <pru_send>:ENETUNREACH[TCP] | |
2020 | * <pru_send>:ENETDOWN[TCP] | |
2021 | * <pru_send>:ENOMEM[TCP] | |
2022 | * <pru_send>:ENOBUFS[TCP] | |
2023 | * <pru_send>:???[TCP] [ignorable: mostly IPSEC/firewall/DLIL] | |
2024 | * <pru_send>:EINVAL[AF_UNIX] | |
2025 | * <pru_send>:EOPNOTSUPP[AF_UNIX] | |
2026 | * <pru_send>:EPIPE[AF_UNIX] | |
2027 | * <pru_send>:ENOTCONN[AF_UNIX] | |
2028 | * <pru_send>:EISCONN[AF_UNIX] | |
2029 | * <pru_send>:???[AF_UNIX] [whatever a filter author chooses] | |
2030 | * <sf_data_out>:??? [whatever a filter author chooses] | |
2031 | * | |
2032 | * Notes: Other <pru_send> returns depend on the protocol family; all | |
2033 | * <sf_data_out> returns depend on what the filter author causes | |
2034 | * their filter to return. | |
1c79356b A |
2035 | */ |
2036 | int | |
2d21ac55 A |
2037 | sosend(struct socket *so, struct sockaddr *addr, struct uio *uio, |
2038 | struct mbuf *top, struct mbuf *control, int flags) | |
1c79356b A |
2039 | { |
2040 | struct mbuf **mp; | |
39236c6e | 2041 | struct mbuf *m, *freelist = NULL; |
3e170ce0 | 2042 | user_ssize_t space, len, resid, orig_resid; |
91447636 | 2043 | int clen = 0, error, dontroute, mlen, sendflags; |
1c79356b | 2044 | int atomic = sosendallatonce(so) || top; |
91447636 | 2045 | int sblocked = 0; |
1c79356b | 2046 | struct proc *p = current_proc(); |
39236c6e | 2047 | struct mbuf *control_copy = NULL; |
3e170ce0 A |
2048 | uint16_t headroom = 0; |
2049 | boolean_t en_tracing = FALSE; | |
1c79356b | 2050 | |
39236c6e | 2051 | if (uio != NULL) |
91447636 | 2052 | resid = uio_resid(uio); |
39236c6e | 2053 | else |
1c79356b | 2054 | resid = top->m_pkthdr.len; |
39236c6e | 2055 | |
2d21ac55 A |
2056 | KERNEL_DEBUG((DBG_FNC_SOSEND | DBG_FUNC_START), so, resid, |
2057 | so->so_snd.sb_cc, so->so_snd.sb_lowat, so->so_snd.sb_hiwat); | |
1c79356b | 2058 | |
91447636 | 2059 | socket_lock(so, 1); |
fe8ab488 | 2060 | |
3e170ce0 A |
2061 | /* |
2062 | * trace if tracing & network (vs. unix) sockets & and | |
2063 | * non-loopback | |
2064 | */ | |
2065 | if (ENTR_SHOULDTRACE && | |
2066 | (SOCK_CHECK_DOM(so, AF_INET) || SOCK_CHECK_DOM(so, AF_INET6))) { | |
2067 | struct inpcb *inp = sotoinpcb(so); | |
2068 | if (inp->inp_last_outifp != NULL && | |
2069 | !(inp->inp_last_outifp->if_flags & IFF_LOOPBACK)) { | |
2070 | en_tracing = TRUE; | |
2071 | KERNEL_ENERGYTRACE(kEnTrActKernSockWrite, DBG_FUNC_START, | |
2072 | VM_KERNEL_ADDRPERM(so), | |
2073 | ((so->so_state & SS_NBIO) ? kEnTrFlagNonBlocking : 0), | |
2074 | (int64_t)resid); | |
2075 | orig_resid = resid; | |
2076 | } | |
2077 | } | |
2078 | ||
fe8ab488 A |
2079 | /* |
2080 | * Re-injection should not affect process accounting | |
2081 | */ | |
2082 | if ((flags & MSG_SKIPCFIL) == 0) { | |
3e170ce0 A |
2083 | so_update_last_owner_locked(so, p); |
2084 | so_update_policy(so); | |
2085 | ||
fe8ab488 | 2086 | #if NECP |
3e170ce0 | 2087 | so_update_necp_policy(so, NULL, addr); |
fe8ab488 A |
2088 | #endif /* NECP */ |
2089 | } | |
3e170ce0 | 2090 | |
2d21ac55 A |
2091 | if (so->so_type != SOCK_STREAM && (flags & MSG_OOB) != 0) { |
2092 | error = EOPNOTSUPP; | |
5ba3f43e | 2093 | goto out_locked; |
2d21ac55 | 2094 | } |
91447636 | 2095 | |
1c79356b A |
2096 | /* |
2097 | * In theory resid should be unsigned. | |
2098 | * However, space must be signed, as it might be less than 0 | |
2099 | * if we over-committed, and we must use a signed comparison | |
2100 | * of space and resid. On the other hand, a negative resid | |
2101 | * causes us to loop sending 0-length segments to the protocol. | |
2102 | * | |
39236c6e A |
2103 | * Usually, MSG_EOR isn't used on SOCK_STREAM type sockets. |
2104 | * But it will be used by sockets doing message delivery. | |
2105 | * | |
fe8ab488 | 2106 | * Note: We limit resid to be a positive int value as we use |
39236c6e | 2107 | * imin() to set bytes_to_copy -- radr://14558484 |
1c79356b | 2108 | */ |
fe8ab488 | 2109 | if (resid < 0 || resid > INT_MAX || (so->so_type == SOCK_STREAM && |
39236c6e | 2110 | !(so->so_flags & SOF_ENABLE_MSGS) && (flags & MSG_EOR))) { |
1c79356b | 2111 | error = EINVAL; |
5ba3f43e | 2112 | goto out_locked; |
1c79356b A |
2113 | } |
2114 | ||
39236c6e A |
2115 | dontroute = (flags & MSG_DONTROUTE) && |
2116 | (so->so_options & SO_DONTROUTE) == 0 && | |
1c79356b | 2117 | (so->so_proto->pr_flags & PR_ATOMIC); |
b0d623f7 | 2118 | OSIncrementAtomicLong(&p->p_stats->p_ru.ru_msgsnd); |
39236c6e A |
2119 | |
2120 | if (control != NULL) | |
1c79356b | 2121 | clen = control->m_len; |
1c79356b | 2122 | |
3e170ce0 A |
2123 | if (soreserveheadroom != 0) |
2124 | headroom = so->so_pktheadroom; | |
2125 | ||
1c79356b | 2126 | do { |
2d21ac55 | 2127 | error = sosendcheck(so, addr, resid, clen, atomic, flags, |
39236c6e A |
2128 | &sblocked, control); |
2129 | if (error) | |
5ba3f43e | 2130 | goto out_locked; |
39236c6e | 2131 | |
1c79356b | 2132 | mp = ⊤ |
39236c6e A |
2133 | if (so->so_flags & SOF_ENABLE_MSGS) |
2134 | space = msgq_sbspace(so, control); | |
2135 | else | |
2136 | space = sbspace(&so->so_snd) - clen; | |
2137 | space += ((flags & MSG_OOB) ? 1024 : 0); | |
fa4905b1 | 2138 | |
1c79356b | 2139 | do { |
2d21ac55 | 2140 | if (uio == NULL) { |
91447636 A |
2141 | /* |
2142 | * Data is prepackaged in "top". | |
2143 | */ | |
2144 | resid = 0; | |
1c79356b A |
2145 | if (flags & MSG_EOR) |
2146 | top->m_flags |= M_EOR; | |
91447636 | 2147 | } else { |
2d21ac55 A |
2148 | int chainlength; |
2149 | int bytes_to_copy; | |
2150 | boolean_t jumbocl; | |
fe8ab488 | 2151 | boolean_t bigcl; |
3e170ce0 | 2152 | int bytes_to_alloc; |
2d21ac55 | 2153 | |
b0d623f7 | 2154 | bytes_to_copy = imin(resid, space); |
2d21ac55 | 2155 | |
3e170ce0 A |
2156 | bytes_to_alloc = bytes_to_copy; |
2157 | if (top == NULL) | |
2158 | bytes_to_alloc += headroom; | |
2159 | ||
39236c6e | 2160 | if (sosendminchain > 0) |
91447636 | 2161 | chainlength = 0; |
39236c6e | 2162 | else |
91447636 | 2163 | chainlength = sosendmaxchain; |
2d21ac55 | 2164 | |
fe8ab488 | 2165 | /* |
3e170ce0 A |
2166 | * Use big 4 KB cluster when the outgoing interface |
2167 | * does not prefer 2 KB clusters | |
fe8ab488 | 2168 | */ |
3e170ce0 | 2169 | bigcl = !(so->so_flags1 & SOF1_IF_2KCL) || |
fe8ab488 | 2170 | sosendbigcl_ignore_capab; |
3e170ce0 | 2171 | |
2d21ac55 A |
2172 | /* |
2173 | * Attempt to use larger than system page-size | |
2174 | * clusters for large writes only if there is | |
2175 | * a jumbo cluster pool and if the socket is | |
2176 | * marked accordingly. | |
2177 | */ | |
2178 | jumbocl = sosendjcl && njcl > 0 && | |
2179 | ((so->so_flags & SOF_MULTIPAGES) || | |
fe8ab488 A |
2180 | sosendjcl_ignore_capab) && |
2181 | bigcl; | |
2d21ac55 | 2182 | |
91447636 | 2183 | socket_unlock(so, 0); |
2d21ac55 | 2184 | |
91447636 A |
2185 | do { |
2186 | int num_needed; | |
39236c6e | 2187 | int hdrs_needed = (top == NULL) ? 1 : 0; |
2d21ac55 | 2188 | |
91447636 | 2189 | /* |
2d21ac55 A |
2190 | * try to maintain a local cache of mbuf |
2191 | * clusters needed to complete this | |
2192 | * write the list is further limited to | |
2193 | * the number that are currently needed | |
2194 | * to fill the socket this mechanism | |
2195 | * allows a large number of mbufs/ | |
2196 | * clusters to be grabbed under a single | |
2197 | * mbuf lock... if we can't get any | |
2198 | * clusters, than fall back to trying | |
2199 | * for mbufs if we fail early (or | |
2200 | * miscalcluate the number needed) make | |
2201 | * sure to release any clusters we | |
2202 | * haven't yet consumed. | |
91447636 | 2203 | */ |
2d21ac55 | 2204 | if (freelist == NULL && |
3e170ce0 | 2205 | bytes_to_alloc > MBIGCLBYTES && |
6d2010ae | 2206 | jumbocl) { |
2d21ac55 | 2207 | num_needed = |
3e170ce0 | 2208 | bytes_to_alloc / M16KCLBYTES; |
2d21ac55 | 2209 | |
3e170ce0 | 2210 | if ((bytes_to_alloc - |
2d21ac55 A |
2211 | (num_needed * M16KCLBYTES)) |
2212 | >= MINCLSIZE) | |
2213 | num_needed++; | |
91447636 | 2214 | |
2d21ac55 A |
2215 | freelist = |
2216 | m_getpackets_internal( | |
2217 | (unsigned int *)&num_needed, | |
2218 | hdrs_needed, M_WAIT, 0, | |
2219 | M16KCLBYTES); | |
2220 | /* | |
2221 | * Fall back to 4K cluster size | |
2222 | * if allocation failed | |
2223 | */ | |
2224 | } | |
2225 | ||
2226 | if (freelist == NULL && | |
3e170ce0 | 2227 | bytes_to_alloc > MCLBYTES && |
fe8ab488 | 2228 | bigcl) { |
2d21ac55 | 2229 | num_needed = |
3e170ce0 | 2230 | bytes_to_alloc / MBIGCLBYTES; |
2d21ac55 | 2231 | |
3e170ce0 | 2232 | if ((bytes_to_alloc - |
6d2010ae | 2233 | (num_needed * MBIGCLBYTES)) >= |
2d21ac55 | 2234 | MINCLSIZE) |
91447636 | 2235 | num_needed++; |
2d21ac55 A |
2236 | |
2237 | freelist = | |
2238 | m_getpackets_internal( | |
2239 | (unsigned int *)&num_needed, | |
2240 | hdrs_needed, M_WAIT, 0, | |
6d2010ae | 2241 | MBIGCLBYTES); |
2d21ac55 A |
2242 | /* |
2243 | * Fall back to cluster size | |
2244 | * if allocation failed | |
2245 | */ | |
91447636 | 2246 | } |
2d21ac55 | 2247 | |
3e170ce0 A |
2248 | /* |
2249 | * Allocate a cluster as we want to | |
2250 | * avoid to split the data in more | |
2251 | * that one segment and using MINCLSIZE | |
2252 | * would lead us to allocate two mbufs | |
2253 | */ | |
2254 | if (soreserveheadroom != 0 && | |
2255 | freelist == NULL && | |
2256 | ((top == NULL && | |
2257 | bytes_to_alloc > _MHLEN) || | |
2258 | bytes_to_alloc > _MLEN)) { | |
2259 | num_needed = ROUNDUP(bytes_to_alloc, MCLBYTES) / | |
2260 | MCLBYTES; | |
2261 | freelist = | |
2262 | m_getpackets_internal( | |
2263 | (unsigned int *)&num_needed, | |
2264 | hdrs_needed, M_WAIT, 0, | |
2265 | MCLBYTES); | |
2266 | /* | |
2267 | * Fall back to a single mbuf | |
2268 | * if allocation failed | |
2269 | */ | |
2270 | } else if (freelist == NULL && | |
2271 | bytes_to_alloc > MINCLSIZE) { | |
2d21ac55 | 2272 | num_needed = |
3e170ce0 | 2273 | bytes_to_alloc / MCLBYTES; |
2d21ac55 | 2274 | |
3e170ce0 | 2275 | if ((bytes_to_alloc - |
2d21ac55 A |
2276 | (num_needed * MCLBYTES)) >= |
2277 | MINCLSIZE) | |
91447636 | 2278 | num_needed++; |
2d21ac55 A |
2279 | |
2280 | freelist = | |
2281 | m_getpackets_internal( | |
2282 | (unsigned int *)&num_needed, | |
2283 | hdrs_needed, M_WAIT, 0, | |
2284 | MCLBYTES); | |
2285 | /* | |
2286 | * Fall back to a single mbuf | |
2287 | * if allocation failed | |
2288 | */ | |
91447636 | 2289 | } |
3e170ce0 A |
2290 | /* |
2291 | * For datagram protocols, leave | |
2292 | * headroom for protocol headers | |
2293 | * in the first cluster of the chain | |
2294 | */ | |
2295 | if (freelist != NULL && atomic && | |
2296 | top == NULL && headroom > 0) { | |
2297 | freelist->m_data += headroom; | |
2298 | } | |
39037602 | 2299 | |
3e170ce0 A |
2300 | /* |
2301 | * Fall back to regular mbufs without | |
2302 | * reserving the socket headroom | |
2303 | */ | |
91447636 | 2304 | if (freelist == NULL) { |
39236c6e | 2305 | if (top == NULL) |
2d21ac55 A |
2306 | MGETHDR(freelist, |
2307 | M_WAIT, MT_DATA); | |
91447636 | 2308 | else |
2d21ac55 A |
2309 | MGET(freelist, |
2310 | M_WAIT, MT_DATA); | |
91447636 A |
2311 | |
2312 | if (freelist == NULL) { | |
2313 | error = ENOBUFS; | |
2314 | socket_lock(so, 0); | |
5ba3f43e | 2315 | goto out_locked; |
91447636 A |
2316 | } |
2317 | /* | |
2d21ac55 A |
2318 | * For datagram protocols, |
2319 | * leave room for protocol | |
2320 | * headers in first mbuf. | |
91447636 | 2321 | */ |
39236c6e | 2322 | if (atomic && top == NULL && |
2d21ac55 A |
2323 | bytes_to_copy < MHLEN) { |
2324 | MH_ALIGN(freelist, | |
2325 | bytes_to_copy); | |
2326 | } | |
91447636 A |
2327 | } |
2328 | m = freelist; | |
2329 | freelist = m->m_next; | |
2330 | m->m_next = NULL; | |
2d21ac55 | 2331 | |
91447636 | 2332 | if ((m->m_flags & M_EXT)) |
3e170ce0 | 2333 | mlen = m->m_ext.ext_size - |
d9a64523 | 2334 | M_LEADINGSPACE(m); |
91447636 | 2335 | else if ((m->m_flags & M_PKTHDR)) |
2d21ac55 | 2336 | mlen = |
d9a64523 | 2337 | MHLEN - M_LEADINGSPACE(m); |
91447636 | 2338 | else |
d9a64523 | 2339 | mlen = MLEN - M_LEADINGSPACE(m); |
b0d623f7 | 2340 | len = imin(mlen, bytes_to_copy); |
91447636 A |
2341 | |
2342 | chainlength += len; | |
2d21ac55 | 2343 | |
91447636 | 2344 | space -= len; |
fa4905b1 | 2345 | |
2d21ac55 | 2346 | error = uiomove(mtod(m, caddr_t), |
b0d623f7 | 2347 | len, uio); |
2d21ac55 | 2348 | |
91447636 | 2349 | resid = uio_resid(uio); |
2d21ac55 | 2350 | |
91447636 A |
2351 | m->m_len = len; |
2352 | *mp = m; | |
2353 | top->m_pkthdr.len += len; | |
2d21ac55 | 2354 | if (error) |
91447636 A |
2355 | break; |
2356 | mp = &m->m_next; | |
2357 | if (resid <= 0) { | |
2358 | if (flags & MSG_EOR) | |
2359 | top->m_flags |= M_EOR; | |
2360 | break; | |
2361 | } | |
2362 | bytes_to_copy = min(resid, space); | |
2d21ac55 A |
2363 | |
2364 | } while (space > 0 && | |
2365 | (chainlength < sosendmaxchain || atomic || | |
2366 | resid < MINCLSIZE)); | |
2367 | ||
91447636 | 2368 | socket_lock(so, 0); |
2d21ac55 | 2369 | |
91447636 | 2370 | if (error) |
5ba3f43e | 2371 | goto out_locked; |
91447636 | 2372 | } |
2d21ac55 A |
2373 | |
2374 | if (flags & (MSG_HOLD|MSG_SEND)) { | |
3a60a9f5 | 2375 | /* Enqueue for later, go away if HOLD */ |
39236c6e | 2376 | struct mbuf *mb1; |
2d21ac55 | 2377 | if (so->so_temp && (flags & MSG_FLUSH)) { |
3a60a9f5 A |
2378 | m_freem(so->so_temp); |
2379 | so->so_temp = NULL; | |
2380 | } | |
2381 | if (so->so_temp) | |
2382 | so->so_tail->m_next = top; | |
2383 | else | |
2384 | so->so_temp = top; | |
2385 | mb1 = top; | |
2386 | while (mb1->m_next) | |
2d21ac55 | 2387 | mb1 = mb1->m_next; |
3a60a9f5 | 2388 | so->so_tail = mb1; |
2d21ac55 | 2389 | if (flags & MSG_HOLD) { |
3a60a9f5 | 2390 | top = NULL; |
5ba3f43e | 2391 | goto out_locked; |
3a60a9f5 A |
2392 | } |
2393 | top = so->so_temp; | |
2d21ac55 A |
2394 | } |
2395 | if (dontroute) | |
2396 | so->so_options |= SO_DONTROUTE; | |
2397 | ||
3e170ce0 A |
2398 | /* |
2399 | * Compute flags here, for pru_send and NKEs | |
2400 | * | |
2401 | * If the user set MSG_EOF, the protocol | |
2402 | * understands this flag and nothing left to | |
2403 | * send then use PRU_SEND_EOF instead of PRU_SEND. | |
2404 | */ | |
2d21ac55 | 2405 | sendflags = (flags & MSG_OOB) ? PRUS_OOB : |
2d21ac55 | 2406 | ((flags & MSG_EOF) && |
3e170ce0 A |
2407 | (so->so_proto->pr_flags & PR_IMPLOPCL) && |
2408 | (resid <= 0)) ? PRUS_EOF : | |
2409 | /* If there is more to send set PRUS_MORETOCOME */ | |
2410 | (resid > 0 && space > 0) ? PRUS_MORETOCOME : 0; | |
2411 | ||
fe8ab488 A |
2412 | if ((flags & MSG_SKIPCFIL) == 0) { |
2413 | /* | |
2414 | * Socket filter processing | |
2415 | */ | |
2416 | error = sflt_data_out(so, addr, &top, | |
2417 | &control, (sendflags & MSG_OOB) ? | |
2418 | sock_data_filt_flag_oob : 0); | |
2419 | if (error) { | |
2420 | if (error == EJUSTRETURN) { | |
2421 | error = 0; | |
2422 | clen = 0; | |
2423 | control = NULL; | |
2424 | top = NULL; | |
2425 | } | |
5ba3f43e | 2426 | goto out_locked; |
91447636 | 2427 | } |
fe8ab488 A |
2428 | #if CONTENT_FILTER |
2429 | /* | |
2430 | * Content filter processing | |
2431 | */ | |
2432 | error = cfil_sock_data_out(so, addr, top, | |
d9a64523 | 2433 | control, sendflags); |
fe8ab488 A |
2434 | if (error) { |
2435 | if (error == EJUSTRETURN) { | |
2436 | error = 0; | |
2437 | clen = 0; | |
2438 | control = NULL; | |
2439 | top = NULL; | |
2440 | } | |
5ba3f43e | 2441 | goto out_locked; |
fe8ab488 A |
2442 | } |
2443 | #endif /* CONTENT_FILTER */ | |
1c79356b | 2444 | } |
39236c6e A |
2445 | if (so->so_flags & SOF_ENABLE_MSGS) { |
2446 | /* | |
2447 | * Make a copy of control mbuf, | |
2448 | * so that msg priority can be | |
2449 | * passed to subsequent mbufs. | |
2450 | */ | |
2451 | control_copy = m_dup(control, M_NOWAIT); | |
2452 | } | |
6d2010ae | 2453 | error = (*so->so_proto->pr_usrreqs->pru_send) |
39236c6e A |
2454 | (so, sendflags, top, addr, control, p); |
2455 | ||
2d21ac55 A |
2456 | if (flags & MSG_SEND) |
2457 | so->so_temp = NULL; | |
39236c6e | 2458 | |
2d21ac55 A |
2459 | if (dontroute) |
2460 | so->so_options &= ~SO_DONTROUTE; | |
2461 | ||
2462 | clen = 0; | |
39236c6e A |
2463 | control = control_copy; |
2464 | control_copy = NULL; | |
2465 | top = NULL; | |
2d21ac55 A |
2466 | mp = ⊤ |
2467 | if (error) | |
5ba3f43e | 2468 | goto out_locked; |
1c79356b A |
2469 | } while (resid && space > 0); |
2470 | } while (resid); | |
2471 | ||
5ba3f43e | 2472 | out_locked: |
3a60a9f5 | 2473 | if (sblocked) |
39236c6e | 2474 | sbunlock(&so->so_snd, FALSE); /* will unlock socket */ |
3a60a9f5 A |
2475 | else |
2476 | socket_unlock(so, 1); | |
39236c6e | 2477 | if (top != NULL) |
1c79356b | 2478 | m_freem(top); |
39236c6e | 2479 | if (control != NULL) |
1c79356b | 2480 | m_freem(control); |
39236c6e | 2481 | if (freelist != NULL) |
2d21ac55 | 2482 | m_freem_list(freelist); |
39236c6e A |
2483 | if (control_copy != NULL) |
2484 | m_freem(control_copy); | |
1c79356b | 2485 | |
5ba3f43e | 2486 | soclearfastopen(so); |
3e170ce0 A |
2487 | |
2488 | if (en_tracing) { | |
2489 | /* resid passed here is the bytes left in uio */ | |
2490 | KERNEL_ENERGYTRACE(kEnTrActKernSockWrite, DBG_FUNC_END, | |
2491 | VM_KERNEL_ADDRPERM(so), | |
2492 | ((error == EWOULDBLOCK) ? kEnTrFlagNoWork : 0), | |
2493 | (int64_t)(orig_resid - resid)); | |
2494 | } | |
2495 | KERNEL_DEBUG(DBG_FNC_SOSEND | DBG_FUNC_END, so, resid, | |
2496 | so->so_snd.sb_cc, space, error); | |
1c79356b A |
2497 | |
2498 | return (error); | |
2499 | } | |
2500 | ||
d9a64523 A |
2501 | int |
2502 | sosend_reinject(struct socket *so, struct sockaddr *addr, struct mbuf *top, struct mbuf *control, uint32_t sendflags) | |
2503 | { | |
2504 | struct mbuf *m0, *control_end; | |
2505 | ||
2506 | socket_lock_assert_owned(so); | |
2507 | ||
2508 | /* | |
2509 | * top must points to mbuf chain to be sent. | |
2510 | * If control is not NULL, top must be packet header | |
2511 | */ | |
2512 | VERIFY(top != NULL && | |
2513 | (control == NULL || top->m_flags & M_PKTHDR)); | |
2514 | ||
2515 | /* | |
2516 | * If control is not passed in, see if we can get it | |
2517 | * from top. | |
2518 | */ | |
2519 | if (control == NULL && (top->m_flags & M_PKTHDR) == 0) { | |
2520 | // Locate start of control if present and start of data | |
2521 | for (m0 = top; m0 != NULL; m0 = m0->m_next) { | |
2522 | if (m0->m_flags & M_PKTHDR) { | |
2523 | top = m0; | |
2524 | break; | |
2525 | } else if (m0->m_type == MT_CONTROL) { | |
2526 | if (control == NULL) { | |
2527 | // Found start of control | |
2528 | control = m0; | |
2529 | } | |
2530 | if (control != NULL && m0->m_next != NULL && m0->m_next->m_type != MT_CONTROL) { | |
2531 | // Found end of control | |
2532 | control_end = m0; | |
2533 | } | |
2534 | } | |
2535 | } | |
2536 | if (control_end != NULL) | |
2537 | control_end->m_next = NULL; | |
2538 | } | |
2539 | ||
2540 | int error = (*so->so_proto->pr_usrreqs->pru_send) | |
2541 | (so, sendflags, top, addr, control, current_proc()); | |
2542 | ||
2543 | return error; | |
2544 | } | |
2545 | ||
3e170ce0 A |
2546 | /* |
2547 | * Supported only connected sockets (no address) without ancillary data | |
2548 | * (control mbuf) for atomic protocols | |
2549 | */ | |
fe8ab488 | 2550 | int |
3e170ce0 | 2551 | sosend_list(struct socket *so, struct uio **uioarray, u_int uiocnt, int flags) |
fe8ab488 A |
2552 | { |
2553 | struct mbuf *m, *freelist = NULL; | |
2554 | user_ssize_t len, resid; | |
3e170ce0 A |
2555 | int error, dontroute, mlen; |
2556 | int atomic = sosendallatonce(so); | |
fe8ab488 A |
2557 | int sblocked = 0; |
2558 | struct proc *p = current_proc(); | |
2559 | u_int uiofirst = 0; | |
2560 | u_int uiolast = 0; | |
3e170ce0 A |
2561 | struct mbuf *top = NULL; |
2562 | uint16_t headroom = 0; | |
2563 | boolean_t bigcl; | |
fe8ab488 A |
2564 | |
2565 | KERNEL_DEBUG((DBG_FNC_SOSEND_LIST | DBG_FUNC_START), so, uiocnt, | |
2566 | so->so_snd.sb_cc, so->so_snd.sb_lowat, so->so_snd.sb_hiwat); | |
2567 | ||
2568 | if (so->so_type != SOCK_DGRAM) { | |
2569 | error = EINVAL; | |
2570 | goto out; | |
2571 | } | |
2572 | if (atomic == 0) { | |
2573 | error = EINVAL; | |
2574 | goto out; | |
2575 | } | |
2576 | if (so->so_proto->pr_usrreqs->pru_send_list == NULL) { | |
2577 | error = EPROTONOSUPPORT; | |
2578 | goto out; | |
2579 | } | |
2580 | if (flags & ~(MSG_DONTWAIT | MSG_NBIO)) { | |
2581 | error = EINVAL; | |
2582 | goto out; | |
2583 | } | |
3e170ce0 | 2584 | resid = uio_array_resid(uioarray, uiocnt); |
fe8ab488 A |
2585 | |
2586 | /* | |
2587 | * In theory resid should be unsigned. | |
2588 | * However, space must be signed, as it might be less than 0 | |
2589 | * if we over-committed, and we must use a signed comparison | |
2590 | * of space and resid. On the other hand, a negative resid | |
2591 | * causes us to loop sending 0-length segments to the protocol. | |
2592 | * | |
2593 | * Note: We limit resid to be a positive int value as we use | |
2594 | * imin() to set bytes_to_copy -- radr://14558484 | |
2595 | */ | |
2596 | if (resid < 0 || resid > INT_MAX) { | |
2597 | error = EINVAL; | |
2598 | goto out; | |
2599 | } | |
fe8ab488 A |
2600 | |
2601 | socket_lock(so, 1); | |
2602 | so_update_last_owner_locked(so, p); | |
2603 | so_update_policy(so); | |
3e170ce0 | 2604 | |
fe8ab488 | 2605 | #if NECP |
3e170ce0 | 2606 | so_update_necp_policy(so, NULL, NULL); |
fe8ab488 | 2607 | #endif /* NECP */ |
3e170ce0 | 2608 | |
fe8ab488 A |
2609 | dontroute = (flags & MSG_DONTROUTE) && |
2610 | (so->so_options & SO_DONTROUTE) == 0 && | |
2611 | (so->so_proto->pr_flags & PR_ATOMIC); | |
2612 | OSIncrementAtomicLong(&p->p_stats->p_ru.ru_msgsnd); | |
2613 | ||
3e170ce0 A |
2614 | error = sosendcheck(so, NULL, resid, 0, atomic, flags, |
2615 | &sblocked, NULL); | |
fe8ab488 A |
2616 | if (error) |
2617 | goto release; | |
2618 | ||
3e170ce0 A |
2619 | /* |
2620 | * Use big 4 KB clusters when the outgoing interface does not prefer | |
2621 | * 2 KB clusters | |
2622 | */ | |
2623 | bigcl = !(so->so_flags1 & SOF1_IF_2KCL) || sosendbigcl_ignore_capab; | |
2624 | ||
2625 | if (soreserveheadroom != 0) | |
2626 | headroom = so->so_pktheadroom; | |
2627 | ||
fe8ab488 A |
2628 | do { |
2629 | int i; | |
3e170ce0 A |
2630 | int num_needed = 0; |
2631 | int chainlength; | |
2632 | size_t maxpktlen = 0; | |
2633 | int bytes_to_alloc; | |
fe8ab488 | 2634 | |
3e170ce0 A |
2635 | if (sosendminchain > 0) |
2636 | chainlength = 0; | |
2637 | else | |
2638 | chainlength = sosendmaxchain; | |
fe8ab488 | 2639 | |
3e170ce0 | 2640 | socket_unlock(so, 0); |
fe8ab488 | 2641 | |
3e170ce0 A |
2642 | /* |
2643 | * Find a set of uio that fit in a reasonable number | |
2644 | * of mbuf packets | |
2645 | */ | |
2646 | for (i = uiofirst; i < uiocnt; i++) { | |
2647 | struct uio *auio = uioarray[i]; | |
fe8ab488 | 2648 | |
3e170ce0 | 2649 | len = uio_resid(auio); |
fe8ab488 | 2650 | |
3e170ce0 A |
2651 | /* Do nothing for empty messages */ |
2652 | if (len == 0) | |
2653 | continue; | |
fe8ab488 | 2654 | |
3e170ce0 A |
2655 | num_needed += 1; |
2656 | uiolast += 1; | |
fe8ab488 | 2657 | |
3e170ce0 A |
2658 | if (len > maxpktlen) |
2659 | maxpktlen = len; | |
fe8ab488 | 2660 | |
3e170ce0 A |
2661 | chainlength += len; |
2662 | if (chainlength > sosendmaxchain) | |
fe8ab488 | 2663 | break; |
3e170ce0 A |
2664 | } |
2665 | /* | |
2666 | * Nothing left to send | |
2667 | */ | |
2668 | if (num_needed == 0) { | |
2669 | socket_lock(so, 0); | |
2670 | break; | |
2671 | } | |
2672 | /* | |
2673 | * Allocate buffer large enough to include headroom space for | |
2674 | * network and link header | |
39037602 | 2675 | * |
3e170ce0 A |
2676 | */ |
2677 | bytes_to_alloc = maxpktlen + headroom; | |
2678 | ||
2679 | /* | |
2680 | * Allocate a single contiguous buffer of the smallest available | |
2681 | * size when possible | |
2682 | */ | |
2683 | if (bytes_to_alloc > MCLBYTES && | |
2684 | bytes_to_alloc <= MBIGCLBYTES && bigcl) { | |
2685 | freelist = m_getpackets_internal( | |
2686 | (unsigned int *)&num_needed, | |
2687 | num_needed, M_WAIT, 1, | |
2688 | MBIGCLBYTES); | |
2689 | } else if (bytes_to_alloc > _MHLEN && | |
2690 | bytes_to_alloc <= MCLBYTES) { | |
2691 | freelist = m_getpackets_internal( | |
2692 | (unsigned int *)&num_needed, | |
2693 | num_needed, M_WAIT, 1, | |
2694 | MCLBYTES); | |
2695 | } else { | |
fe8ab488 A |
2696 | freelist = m_allocpacket_internal( |
2697 | (unsigned int *)&num_needed, | |
3e170ce0 A |
2698 | bytes_to_alloc, NULL, M_WAIT, 1, 0); |
2699 | } | |
39037602 | 2700 | |
3e170ce0 A |
2701 | if (freelist == NULL) { |
2702 | socket_lock(so, 0); | |
2703 | error = ENOMEM; | |
2704 | goto release; | |
2705 | } | |
2706 | /* | |
2707 | * Copy each uio of the set into its own mbuf packet | |
2708 | */ | |
2709 | for (i = uiofirst, m = freelist; | |
2710 | i < uiolast && m != NULL; | |
2711 | i++) { | |
2712 | int bytes_to_copy; | |
2713 | struct mbuf *n; | |
2714 | struct uio *auio = uioarray[i]; | |
fe8ab488 | 2715 | |
3e170ce0 A |
2716 | bytes_to_copy = uio_resid(auio); |
2717 | ||
2718 | /* Do nothing for empty messages */ | |
2719 | if (bytes_to_copy == 0) | |
2720 | continue; | |
fe8ab488 | 2721 | /* |
3e170ce0 A |
2722 | * Leave headroom for protocol headers |
2723 | * in the first mbuf of the chain | |
fe8ab488 | 2724 | */ |
3e170ce0 A |
2725 | m->m_data += headroom; |
2726 | ||
2727 | for (n = m; n != NULL; n = n->m_next) { | |
2728 | if ((m->m_flags & M_EXT)) | |
2729 | mlen = m->m_ext.ext_size - | |
d9a64523 | 2730 | M_LEADINGSPACE(m); |
3e170ce0 A |
2731 | else if ((m->m_flags & M_PKTHDR)) |
2732 | mlen = | |
d9a64523 | 2733 | MHLEN - M_LEADINGSPACE(m); |
3e170ce0 | 2734 | else |
d9a64523 | 2735 | mlen = MLEN - M_LEADINGSPACE(m); |
3e170ce0 | 2736 | len = imin(mlen, bytes_to_copy); |
fe8ab488 | 2737 | |
3e170ce0 A |
2738 | /* |
2739 | * Note: uiomove() decrements the iovec | |
2740 | * length | |
2741 | */ | |
2742 | error = uiomove(mtod(n, caddr_t), | |
2743 | len, auio); | |
fe8ab488 A |
2744 | if (error != 0) |
2745 | break; | |
3e170ce0 A |
2746 | n->m_len = len; |
2747 | m->m_pkthdr.len += len; | |
fe8ab488 | 2748 | |
3e170ce0 | 2749 | VERIFY(m->m_pkthdr.len <= maxpktlen); |
fe8ab488 | 2750 | |
3e170ce0 A |
2751 | bytes_to_copy -= len; |
2752 | resid -= len; | |
2753 | } | |
2754 | if (m->m_pkthdr.len == 0) { | |
2755 | printf( | |
2756 | "%s:%d so %llx pkt %llx type %u len null\n", | |
2757 | __func__, __LINE__, | |
2758 | (uint64_t)DEBUG_KERNEL_ADDRPERM(so), | |
2759 | (uint64_t)DEBUG_KERNEL_ADDRPERM(m), | |
2760 | m->m_type); | |
2761 | } | |
2762 | if (error != 0) | |
2763 | break; | |
2764 | m = m->m_nextpkt; | |
fe8ab488 A |
2765 | } |
2766 | ||
3e170ce0 A |
2767 | socket_lock(so, 0); |
2768 | ||
2769 | if (error) | |
2770 | goto release; | |
2771 | top = freelist; | |
2772 | freelist = NULL; | |
2773 | ||
fe8ab488 A |
2774 | if (dontroute) |
2775 | so->so_options |= SO_DONTROUTE; | |
2776 | ||
2777 | if ((flags & MSG_SKIPCFIL) == 0) { | |
2778 | struct mbuf **prevnextp = NULL; | |
3e170ce0 | 2779 | |
fe8ab488 A |
2780 | for (i = uiofirst, m = top; |
2781 | i < uiolast && m != NULL; | |
2782 | i++) { | |
2783 | struct mbuf *nextpkt = m->m_nextpkt; | |
2784 | ||
2785 | /* | |
2786 | * Socket filter processing | |
2787 | */ | |
3e170ce0 A |
2788 | error = sflt_data_out(so, NULL, &m, |
2789 | NULL, 0); | |
fe8ab488 A |
2790 | if (error != 0 && error != EJUSTRETURN) |
2791 | goto release; | |
3e170ce0 | 2792 | |
fe8ab488 A |
2793 | #if CONTENT_FILTER |
2794 | if (error == 0) { | |
2795 | /* | |
2796 | * Content filter processing | |
2797 | */ | |
3e170ce0 A |
2798 | error = cfil_sock_data_out(so, NULL, m, |
2799 | NULL, 0); | |
fe8ab488 A |
2800 | if (error != 0 && error != EJUSTRETURN) |
2801 | goto release; | |
2802 | } | |
2803 | #endif /* CONTENT_FILTER */ | |
2804 | /* | |
2805 | * Remove packet from the list when | |
2806 | * swallowed by a filter | |
2807 | */ | |
2808 | if (error == EJUSTRETURN) { | |
2809 | error = 0; | |
2810 | if (prevnextp != NULL) | |
2811 | *prevnextp = nextpkt; | |
2812 | else | |
2813 | top = nextpkt; | |
3e170ce0 A |
2814 | } |
2815 | ||
fe8ab488 A |
2816 | m = nextpkt; |
2817 | if (m != NULL) | |
2818 | prevnextp = &m->m_nextpkt; | |
2819 | } | |
2820 | } | |
2821 | if (top != NULL) | |
2822 | error = (*so->so_proto->pr_usrreqs->pru_send_list) | |
3e170ce0 | 2823 | (so, 0, top, NULL, NULL, p); |
fe8ab488 A |
2824 | |
2825 | if (dontroute) | |
2826 | so->so_options &= ~SO_DONTROUTE; | |
2827 | ||
fe8ab488 A |
2828 | top = NULL; |
2829 | uiofirst = uiolast; | |
2830 | } while (resid > 0 && error == 0); | |
2831 | release: | |
2832 | if (sblocked) | |
2833 | sbunlock(&so->so_snd, FALSE); /* will unlock socket */ | |
2834 | else | |
2835 | socket_unlock(so, 1); | |
2836 | out: | |
2837 | if (top != NULL) | |
2838 | m_freem(top); | |
fe8ab488 A |
2839 | if (freelist != NULL) |
2840 | m_freem_list(freelist); | |
2841 | ||
2842 | KERNEL_DEBUG(DBG_FNC_SOSEND_LIST | DBG_FUNC_END, so, resid, | |
2843 | so->so_snd.sb_cc, 0, error); | |
2844 | ||
2845 | return (error); | |
2846 | } | |
2847 | ||
3e170ce0 A |
2848 | /* |
2849 | * May return ERESTART when packet is dropped by MAC policy check | |
2850 | */ | |
2851 | static int | |
2852 | soreceive_addr(struct proc *p, struct socket *so, struct sockaddr **psa, | |
2853 | int flags, struct mbuf **mp, struct mbuf **nextrecordp, int canwait) | |
2854 | { | |
2855 | int error = 0; | |
2856 | struct mbuf *m = *mp; | |
2857 | struct mbuf *nextrecord = *nextrecordp; | |
2858 | ||
2859 | KASSERT(m->m_type == MT_SONAME, ("receive 1a")); | |
2860 | #if CONFIG_MACF_SOCKET_SUBSET | |
2861 | /* | |
2862 | * Call the MAC framework for policy checking if we're in | |
2863 | * the user process context and the socket isn't connected. | |
2864 | */ | |
2865 | if (p != kernproc && !(so->so_state & SS_ISCONNECTED)) { | |
2866 | struct mbuf *m0 = m; | |
2867 | /* | |
2868 | * Dequeue this record (temporarily) from the receive | |
2869 | * list since we're about to drop the socket's lock | |
2870 | * where a new record may arrive and be appended to | |
2871 | * the list. Upon MAC policy failure, the record | |
2872 | * will be freed. Otherwise, we'll add it back to | |
2873 | * the head of the list. We cannot rely on SB_LOCK | |
2874 | * because append operation uses the socket's lock. | |
2875 | */ | |
2876 | do { | |
2877 | m->m_nextpkt = NULL; | |
2878 | sbfree(&so->so_rcv, m); | |
2879 | m = m->m_next; | |
2880 | } while (m != NULL); | |
2881 | m = m0; | |
2882 | so->so_rcv.sb_mb = nextrecord; | |
2883 | SB_EMPTY_FIXUP(&so->so_rcv); | |
2884 | SBLASTRECORDCHK(&so->so_rcv, "soreceive 1a"); | |
2885 | SBLASTMBUFCHK(&so->so_rcv, "soreceive 1a"); | |
2886 | socket_unlock(so, 0); | |
2887 | ||
2888 | if (mac_socket_check_received(proc_ucred(p), so, | |
2889 | mtod(m, struct sockaddr *)) != 0) { | |
2890 | /* | |
2891 | * MAC policy failure; free this record and | |
2892 | * process the next record (or block until | |
2893 | * one is available). We have adjusted sb_cc | |
2894 | * and sb_mbcnt above so there is no need to | |
2895 | * call sbfree() again. | |
2896 | */ | |
2897 | m_freem(m); | |
2898 | /* | |
2899 | * Clear SB_LOCK but don't unlock the socket. | |
2900 | * Process the next record or wait for one. | |
2901 | */ | |
2902 | socket_lock(so, 0); | |
2903 | sbunlock(&so->so_rcv, TRUE); /* stay locked */ | |
2904 | error = ERESTART; | |
2905 | goto done; | |
2906 | } | |
2907 | socket_lock(so, 0); | |
2908 | /* | |
2909 | * If the socket has been defunct'd, drop it. | |
2910 | */ | |
2911 | if (so->so_flags & SOF_DEFUNCT) { | |
2912 | m_freem(m); | |
2913 | error = ENOTCONN; | |
2914 | goto done; | |
2915 | } | |
2916 | /* | |
2917 | * Re-adjust the socket receive list and re-enqueue | |
2918 | * the record in front of any packets which may have | |
2919 | * been appended while we dropped the lock. | |
2920 | */ | |
2921 | for (m = m0; m->m_next != NULL; m = m->m_next) | |
2922 | sballoc(&so->so_rcv, m); | |
2923 | sballoc(&so->so_rcv, m); | |
2924 | if (so->so_rcv.sb_mb == NULL) { | |
2925 | so->so_rcv.sb_lastrecord = m0; | |
2926 | so->so_rcv.sb_mbtail = m; | |
2927 | } | |
2928 | m = m0; | |
2929 | nextrecord = m->m_nextpkt = so->so_rcv.sb_mb; | |
2930 | so->so_rcv.sb_mb = m; | |
2931 | SBLASTRECORDCHK(&so->so_rcv, "soreceive 1b"); | |
2932 | SBLASTMBUFCHK(&so->so_rcv, "soreceive 1b"); | |
2933 | } | |
2934 | #endif /* CONFIG_MACF_SOCKET_SUBSET */ | |
2935 | if (psa != NULL) { | |
2936 | *psa = dup_sockaddr(mtod(m, struct sockaddr *), canwait); | |
2937 | if ((*psa == NULL) && (flags & MSG_NEEDSA)) { | |
2938 | error = EWOULDBLOCK; | |
2939 | goto done; | |
2940 | } | |
2941 | } | |
2942 | if (flags & MSG_PEEK) { | |
2943 | m = m->m_next; | |
2944 | } else { | |
2945 | sbfree(&so->so_rcv, m); | |
2946 | if (m->m_next == NULL && so->so_rcv.sb_cc != 0) { | |
2947 | panic("%s: about to create invalid socketbuf", | |
2948 | __func__); | |
2949 | /* NOTREACHED */ | |
2950 | } | |
2951 | MFREE(m, so->so_rcv.sb_mb); | |
2952 | m = so->so_rcv.sb_mb; | |
2953 | if (m != NULL) { | |
2954 | m->m_nextpkt = nextrecord; | |
2955 | } else { | |
2956 | so->so_rcv.sb_mb = nextrecord; | |
2957 | SB_EMPTY_FIXUP(&so->so_rcv); | |
2958 | } | |
2959 | } | |
2960 | done: | |
2961 | *mp = m; | |
2962 | *nextrecordp = nextrecord; | |
2963 | ||
2964 | return (error); | |
2965 | } | |
2966 | ||
2967 | /* | |
2968 | * Process one or more MT_CONTROL mbufs present before any data mbufs | |
2969 | * in the first mbuf chain on the socket buffer. If MSG_PEEK, we | |
2970 | * just copy the data; if !MSG_PEEK, we call into the protocol to | |
2971 | * perform externalization. | |
2972 | */ | |
2973 | static int | |
2974 | soreceive_ctl(struct socket *so, struct mbuf **controlp, int flags, | |
2975 | struct mbuf **mp, struct mbuf **nextrecordp) | |
2976 | { | |
2977 | int error = 0; | |
2978 | struct mbuf *cm = NULL, *cmn; | |
2979 | struct mbuf **cme = &cm; | |
2980 | struct sockbuf *sb_rcv = &so->so_rcv; | |
2981 | struct mbuf **msgpcm = NULL; | |
2982 | struct mbuf *m = *mp; | |
2983 | struct mbuf *nextrecord = *nextrecordp; | |
2984 | struct protosw *pr = so->so_proto; | |
2985 | ||
2986 | /* | |
2987 | * Externalizing the control messages would require us to | |
2988 | * drop the socket's lock below. Once we re-acquire the | |
2989 | * lock, the mbuf chain might change. In order to preserve | |
2990 | * consistency, we unlink all control messages from the | |
2991 | * first mbuf chain in one shot and link them separately | |
2992 | * onto a different chain. | |
2993 | */ | |
2994 | do { | |
2995 | if (flags & MSG_PEEK) { | |
2996 | if (controlp != NULL) { | |
2997 | if (*controlp == NULL) { | |
2998 | msgpcm = controlp; | |
2999 | } | |
3000 | *controlp = m_copy(m, 0, m->m_len); | |
3001 | ||
3002 | /* | |
3003 | * If we failed to allocate an mbuf, | |
3004 | * release any previously allocated | |
3005 | * mbufs for control data. Return | |
3006 | * an error. Keep the mbufs in the | |
3007 | * socket as this is using | |
3008 | * MSG_PEEK flag. | |
3009 | */ | |
3010 | if (*controlp == NULL) { | |
3011 | m_freem(*msgpcm); | |
3012 | error = ENOBUFS; | |
3013 | goto done; | |
3014 | } | |
3015 | controlp = &(*controlp)->m_next; | |
3016 | } | |
3017 | m = m->m_next; | |
3018 | } else { | |
3019 | m->m_nextpkt = NULL; | |
3020 | sbfree(sb_rcv, m); | |
3021 | sb_rcv->sb_mb = m->m_next; | |
3022 | m->m_next = NULL; | |
3023 | *cme = m; | |
3024 | cme = &(*cme)->m_next; | |
3025 | m = sb_rcv->sb_mb; | |
3026 | } | |
3027 | } while (m != NULL && m->m_type == MT_CONTROL); | |
3028 | ||
3029 | if (!(flags & MSG_PEEK)) { | |
3030 | if (sb_rcv->sb_mb != NULL) { | |
3031 | sb_rcv->sb_mb->m_nextpkt = nextrecord; | |
3032 | } else { | |
3033 | sb_rcv->sb_mb = nextrecord; | |
3034 | SB_EMPTY_FIXUP(sb_rcv); | |
3035 | } | |
3036 | if (nextrecord == NULL) | |
3037 | sb_rcv->sb_lastrecord = m; | |
3038 | } | |
3039 | ||
3040 | SBLASTRECORDCHK(&so->so_rcv, "soreceive ctl"); | |
3041 | SBLASTMBUFCHK(&so->so_rcv, "soreceive ctl"); | |
3042 | ||
3043 | while (cm != NULL) { | |
3044 | int cmsg_type; | |
3045 | ||
3046 | cmn = cm->m_next; | |
3047 | cm->m_next = NULL; | |
3048 | cmsg_type = mtod(cm, struct cmsghdr *)->cmsg_type; | |
3049 | ||
3050 | /* | |
3051 | * Call the protocol to externalize SCM_RIGHTS message | |
3052 | * and return the modified message to the caller upon | |
3053 | * success. Otherwise, all other control messages are | |
3054 | * returned unmodified to the caller. Note that we | |
3055 | * only get into this loop if MSG_PEEK is not set. | |
3056 | */ | |
3057 | if (pr->pr_domain->dom_externalize != NULL && | |
3058 | cmsg_type == SCM_RIGHTS) { | |
3059 | /* | |
3060 | * Release socket lock: see 3903171. This | |
3061 | * would also allow more records to be appended | |
3062 | * to the socket buffer. We still have SB_LOCK | |
3063 | * set on it, so we can be sure that the head | |
3064 | * of the mbuf chain won't change. | |
3065 | */ | |
3066 | socket_unlock(so, 0); | |
3067 | error = (*pr->pr_domain->dom_externalize)(cm); | |
3068 | socket_lock(so, 0); | |
3069 | } else { | |
3070 | error = 0; | |
3071 | } | |
3072 | ||
3073 | if (controlp != NULL && error == 0) { | |
3074 | *controlp = cm; | |
3075 | controlp = &(*controlp)->m_next; | |
3076 | } else { | |
3077 | (void) m_free(cm); | |
3078 | } | |
3079 | cm = cmn; | |
3080 | } | |
3081 | /* | |
3082 | * Update the value of nextrecord in case we received new | |
3083 | * records when the socket was unlocked above for | |
3084 | * externalizing SCM_RIGHTS. | |
3085 | */ | |
3086 | if (m != NULL) | |
3087 | nextrecord = sb_rcv->sb_mb->m_nextpkt; | |
3088 | else | |
3089 | nextrecord = sb_rcv->sb_mb; | |
3090 | ||
3091 | done: | |
3092 | *mp = m; | |
3093 | *nextrecordp = nextrecord; | |
3094 | ||
3095 | return (error); | |
3096 | } | |
3097 | ||
1c79356b A |
3098 | /* |
3099 | * Implement receive operations on a socket. | |
3100 | * We depend on the way that records are added to the sockbuf | |
3101 | * by sbappend*. In particular, each record (mbufs linked through m_next) | |
3102 | * must begin with an address if the protocol so specifies, | |
3103 | * followed by an optional mbuf or mbufs containing ancillary data, | |
3104 | * and then zero or more mbufs of data. | |
3105 | * In order to avoid blocking network interrupts for the entire time here, | |
3106 | * we splx() while doing the actual copy to user space. | |
3107 | * Although the sockbuf is locked, new data may still be appended, | |
3108 | * and thus we must maintain consistency of the sockbuf during that time. | |
3109 | * | |
3110 | * The caller may receive the data as a single mbuf chain by supplying | |
3111 | * an mbuf **mp0 for use in returning the chain. The uio is then used | |
3112 | * only for the count in uio_resid. | |
2d21ac55 A |
3113 | * |
3114 | * Returns: 0 Success | |
3115 | * ENOBUFS | |
3116 | * ENOTCONN | |
3117 | * EWOULDBLOCK | |
3118 | * uiomove:EFAULT | |
3119 | * sblock:EWOULDBLOCK | |
3120 | * sblock:EINTR | |
3121 | * sbwait:EBADF | |
3122 | * sbwait:EINTR | |
3123 | * sodelayed_copy:EFAULT | |
3124 | * <pru_rcvoob>:EINVAL[TCP] | |
3125 | * <pru_rcvoob>:EWOULDBLOCK[TCP] | |
3126 | * <pru_rcvoob>:??? | |
3127 | * <pr_domain->dom_externalize>:EMSGSIZE[AF_UNIX] | |
3128 | * <pr_domain->dom_externalize>:ENOBUFS[AF_UNIX] | |
3129 | * <pr_domain->dom_externalize>:??? | |
3130 | * | |
3131 | * Notes: Additional return values from calls through <pru_rcvoob> and | |
3132 | * <pr_domain->dom_externalize> depend on protocols other than | |
3133 | * TCP or AF_UNIX, which are documented above. | |
1c79356b A |
3134 | */ |
3135 | int | |
2d21ac55 A |
3136 | soreceive(struct socket *so, struct sockaddr **psa, struct uio *uio, |
3137 | struct mbuf **mp0, struct mbuf **controlp, int *flagsp) | |
1c79356b | 3138 | { |
39236c6e A |
3139 | struct mbuf *m, **mp, *ml = NULL; |
3140 | struct mbuf *nextrecord, *free_list; | |
3141 | int flags, error, offset; | |
3142 | user_ssize_t len; | |
1c79356b | 3143 | struct protosw *pr = so->so_proto; |
3e170ce0 | 3144 | int moff, type = 0; |
39236c6e A |
3145 | user_ssize_t orig_resid = uio_resid(uio); |
3146 | user_ssize_t delayed_copy_len; | |
55e303ae A |
3147 | int can_delay; |
3148 | int need_event; | |
3149 | struct proc *p = current_proc(); | |
3e170ce0 | 3150 | boolean_t en_tracing = FALSE; |
1c79356b | 3151 | |
fe8ab488 A |
3152 | /* |
3153 | * Sanity check on the length passed by caller as we are making 'int' | |
3154 | * comparisons | |
3155 | */ | |
3156 | if (orig_resid < 0 || orig_resid > INT_MAX) | |
3157 | return (EINVAL); | |
3158 | ||
3e170ce0 A |
3159 | KERNEL_DEBUG(DBG_FNC_SORECEIVE | DBG_FUNC_START, so, |
3160 | uio_resid(uio), so->so_rcv.sb_cc, so->so_rcv.sb_lowat, | |
3161 | so->so_rcv.sb_hiwat); | |
3162 | ||
91447636 | 3163 | socket_lock(so, 1); |
6d2010ae | 3164 | so_update_last_owner_locked(so, p); |
39236c6e | 3165 | so_update_policy(so); |
1c79356b | 3166 | |
91447636 | 3167 | #ifdef MORE_LOCKING_DEBUG |
39236c6e A |
3168 | if (so->so_usecount == 1) { |
3169 | panic("%s: so=%x no other reference on socket\n", __func__, so); | |
3170 | /* NOTREACHED */ | |
3171 | } | |
91447636 | 3172 | #endif |
1c79356b | 3173 | mp = mp0; |
39236c6e A |
3174 | if (psa != NULL) |
3175 | *psa = NULL; | |
3176 | if (controlp != NULL) | |
3177 | *controlp = NULL; | |
3178 | if (flagsp != NULL) | |
1c79356b A |
3179 | flags = *flagsp &~ MSG_EOR; |
3180 | else | |
3181 | flags = 0; | |
2d21ac55 A |
3182 | |
3183 | /* | |
3184 | * If a recv attempt is made on a previously-accepted socket | |
3185 | * that has been marked as inactive (disconnected), reject | |
3186 | * the request. | |
3187 | */ | |
3188 | if (so->so_flags & SOF_DEFUNCT) { | |
3189 | struct sockbuf *sb = &so->so_rcv; | |
3190 | ||
6d2010ae | 3191 | error = ENOTCONN; |
39037602 A |
3192 | SODEFUNCTLOG("%s[%d, %s]: defunct so 0x%llx [%d,%d] (%d)\n", |
3193 | __func__, proc_pid(p), proc_best_name(p), | |
3194 | (uint64_t)DEBUG_KERNEL_ADDRPERM(so), | |
3195 | SOCK_DOM(so), SOCK_TYPE(so), error); | |
2d21ac55 A |
3196 | /* |
3197 | * This socket should have been disconnected and flushed | |
6d2010ae A |
3198 | * prior to being returned from sodefunct(); there should |
3199 | * be no data on its receive list, so panic otherwise. | |
2d21ac55 | 3200 | */ |
6d2010ae A |
3201 | if (so->so_state & SS_DEFUNCT) |
3202 | sb_empty_assert(sb, __func__); | |
2d21ac55 | 3203 | socket_unlock(so, 1); |
6d2010ae | 3204 | return (error); |
2d21ac55 A |
3205 | } |
3206 | ||
3e170ce0 A |
3207 | if ((so->so_flags1 & SOF1_PRECONNECT_DATA) && |
3208 | pr->pr_usrreqs->pru_preconnect) { | |
3209 | /* | |
3210 | * A user may set the CONNECT_RESUME_ON_READ_WRITE-flag but not | |
3211 | * calling write() right after this. *If* the app calls a read | |
3212 | * we do not want to block this read indefinetely. Thus, | |
3213 | * we trigger a connect so that the session gets initiated. | |
3214 | */ | |
3215 | error = (*pr->pr_usrreqs->pru_preconnect)(so); | |
3216 | ||
3217 | if (error) { | |
3218 | socket_unlock(so, 1); | |
3219 | return (error); | |
3220 | } | |
3221 | } | |
3222 | ||
3223 | if (ENTR_SHOULDTRACE && | |
3224 | (SOCK_CHECK_DOM(so, AF_INET) || SOCK_CHECK_DOM(so, AF_INET6))) { | |
3225 | /* | |
3226 | * enable energy tracing for inet sockets that go over | |
3227 | * non-loopback interfaces only. | |
3228 | */ | |
3229 | struct inpcb *inp = sotoinpcb(so); | |
3230 | if (inp->inp_last_outifp != NULL && | |
3231 | !(inp->inp_last_outifp->if_flags & IFF_LOOPBACK)) { | |
3232 | en_tracing = TRUE; | |
3233 | KERNEL_ENERGYTRACE(kEnTrActKernSockRead, DBG_FUNC_START, | |
3234 | VM_KERNEL_ADDRPERM(so), | |
3235 | ((so->so_state & SS_NBIO) ? | |
3236 | kEnTrFlagNonBlocking : 0), | |
3237 | (int64_t)orig_resid); | |
3238 | } | |
3239 | } | |
3240 | ||
2d21ac55 A |
3241 | /* |
3242 | * When SO_WANTOOBFLAG is set we try to get out-of-band data | |
3243 | * regardless of the flags argument. Here is the case were | |
3244 | * out-of-band data is not inline. | |
3245 | */ | |
3246 | if ((flags & MSG_OOB) || | |
3247 | ((so->so_options & SO_WANTOOBFLAG) != 0 && | |
3248 | (so->so_options & SO_OOBINLINE) == 0 && | |
3249 | (so->so_oobmark || (so->so_state & SS_RCVATMARK)))) { | |
1c79356b | 3250 | m = m_get(M_WAIT, MT_DATA); |
55e303ae | 3251 | if (m == NULL) { |
91447636 | 3252 | socket_unlock(so, 1); |
2d21ac55 A |
3253 | KERNEL_DEBUG(DBG_FNC_SORECEIVE | DBG_FUNC_END, |
3254 | ENOBUFS, 0, 0, 0, 0); | |
9bccf70c | 3255 | return (ENOBUFS); |
55e303ae | 3256 | } |
1c79356b A |
3257 | error = (*pr->pr_usrreqs->pru_rcvoob)(so, m, flags & MSG_PEEK); |
3258 | if (error) | |
3259 | goto bad; | |
91447636 | 3260 | socket_unlock(so, 0); |
1c79356b A |
3261 | do { |
3262 | error = uiomove(mtod(m, caddr_t), | |
b0d623f7 | 3263 | imin(uio_resid(uio), m->m_len), uio); |
1c79356b | 3264 | m = m_free(m); |
39236c6e | 3265 | } while (uio_resid(uio) && error == 0 && m != NULL); |
91447636 | 3266 | socket_lock(so, 0); |
1c79356b | 3267 | bad: |
39236c6e | 3268 | if (m != NULL) |
1c79356b | 3269 | m_freem(m); |
39236c6e | 3270 | |
9bccf70c A |
3271 | if ((so->so_options & SO_WANTOOBFLAG) != 0) { |
3272 | if (error == EWOULDBLOCK || error == EINVAL) { | |
2d21ac55 | 3273 | /* |
9bccf70c | 3274 | * Let's try to get normal data: |
2d21ac55 A |
3275 | * EWOULDBLOCK: out-of-band data not |
3276 | * receive yet. EINVAL: out-of-band data | |
3277 | * already read. | |
9bccf70c A |
3278 | */ |
3279 | error = 0; | |
3280 | goto nooob; | |
39236c6e | 3281 | } else if (error == 0 && flagsp != NULL) { |
9bccf70c | 3282 | *flagsp |= MSG_OOB; |
2d21ac55 A |
3283 | } |
3284 | } | |
91447636 | 3285 | socket_unlock(so, 1); |
3e170ce0 A |
3286 | if (en_tracing) { |
3287 | KERNEL_ENERGYTRACE(kEnTrActKernSockRead, DBG_FUNC_END, | |
3288 | VM_KERNEL_ADDRPERM(so), 0, | |
3289 | (int64_t)(orig_resid - uio_resid(uio))); | |
3290 | } | |
2d21ac55 A |
3291 | KERNEL_DEBUG(DBG_FNC_SORECEIVE | DBG_FUNC_END, error, |
3292 | 0, 0, 0, 0); | |
39236c6e | 3293 | |
1c79356b A |
3294 | return (error); |
3295 | } | |
3296 | nooob: | |
39236c6e A |
3297 | if (mp != NULL) |
3298 | *mp = NULL; | |
fe8ab488 A |
3299 | |
3300 | if (so->so_state & SS_ISCONFIRMING && uio_resid(uio)) { | |
1c79356b | 3301 | (*pr->pr_usrreqs->pru_rcvd)(so, 0); |
fe8ab488 | 3302 | } |
1c79356b | 3303 | |
39236c6e | 3304 | free_list = NULL; |
55e303ae | 3305 | delayed_copy_len = 0; |
1c79356b | 3306 | restart: |
91447636 A |
3307 | #ifdef MORE_LOCKING_DEBUG |
3308 | if (so->so_usecount <= 1) | |
fe8ab488 | 3309 | printf("soreceive: sblock so=0x%llx ref=%d on socket\n", |
3e170ce0 | 3310 | (uint64_t)DEBUG_KERNEL_ADDRPERM(so), so->so_usecount); |
91447636 | 3311 | #endif |
6601e61a A |
3312 | /* |
3313 | * See if the socket has been closed (SS_NOFDREF|SS_CANTRCVMORE) | |
3314 | * and if so just return to the caller. This could happen when | |
3315 | * soreceive() is called by a socket upcall function during the | |
3316 | * time the socket is freed. The socket buffer would have been | |
3317 | * locked across the upcall, therefore we cannot put this thread | |
3318 | * to sleep (else we will deadlock) or return EWOULDBLOCK (else | |
3319 | * we may livelock), because the lock on the socket buffer will | |
3320 | * only be released when the upcall routine returns to its caller. | |
3321 | * Because the socket has been officially closed, there can be | |
3322 | * no further read on it. | |
39236c6e A |
3323 | * |
3324 | * A multipath subflow socket would have its SS_NOFDREF set by | |
3325 | * default, so check for SOF_MP_SUBFLOW socket flag; when the | |
3326 | * socket is closed for real, SOF_MP_SUBFLOW would be cleared. | |
6601e61a A |
3327 | */ |
3328 | if ((so->so_state & (SS_NOFDREF | SS_CANTRCVMORE)) == | |
39236c6e | 3329 | (SS_NOFDREF | SS_CANTRCVMORE) && !(so->so_flags & SOF_MP_SUBFLOW)) { |
6601e61a A |
3330 | socket_unlock(so, 1); |
3331 | return (0); | |
3332 | } | |
3333 | ||
9bccf70c A |
3334 | error = sblock(&so->so_rcv, SBLOCKWAIT(flags)); |
3335 | if (error) { | |
91447636 | 3336 | socket_unlock(so, 1); |
2d21ac55 A |
3337 | KERNEL_DEBUG(DBG_FNC_SORECEIVE | DBG_FUNC_END, error, |
3338 | 0, 0, 0, 0); | |
3e170ce0 A |
3339 | if (en_tracing) { |
3340 | KERNEL_ENERGYTRACE(kEnTrActKernSockRead, DBG_FUNC_END, | |
3341 | VM_KERNEL_ADDRPERM(so), 0, | |
3342 | (int64_t)(orig_resid - uio_resid(uio))); | |
3343 | } | |
1c79356b A |
3344 | return (error); |
3345 | } | |
1c79356b A |
3346 | |
3347 | m = so->so_rcv.sb_mb; | |
3348 | /* | |
3349 | * If we have less data than requested, block awaiting more | |
3350 | * (subject to any timeout) if: | |
3351 | * 1. the current count is less than the low water mark, or | |
3352 | * 2. MSG_WAITALL is set, and it is possible to do the entire | |
3353 | * receive operation at once if we block (resid <= hiwat). | |
3354 | * 3. MSG_DONTWAIT is not set | |
3355 | * If MSG_WAITALL is set but resid is larger than the receive buffer, | |
3356 | * we have to do the receive in sections, and thus risk returning | |
3357 | * a short count if a timeout or signal occurs after we start. | |
3358 | */ | |
39236c6e | 3359 | if (m == NULL || (((flags & MSG_DONTWAIT) == 0 && |
91447636 | 3360 | so->so_rcv.sb_cc < uio_resid(uio)) && |
2d21ac55 | 3361 | (so->so_rcv.sb_cc < so->so_rcv.sb_lowat || |
91447636 | 3362 | ((flags & MSG_WAITALL) && uio_resid(uio) <= so->so_rcv.sb_hiwat)) && |
39236c6e | 3363 | m->m_nextpkt == NULL && (pr->pr_flags & PR_ATOMIC) == 0)) { |
2d21ac55 A |
3364 | /* |
3365 | * Panic if we notice inconsistencies in the socket's | |
3366 | * receive list; both sb_mb and sb_cc should correctly | |
3367 | * reflect the contents of the list, otherwise we may | |
3368 | * end up with false positives during select() or poll() | |
3369 | * which could put the application in a bad state. | |
3370 | */ | |
316670eb | 3371 | SB_MB_CHECK(&so->so_rcv); |
55e303ae | 3372 | |
1c79356b | 3373 | if (so->so_error) { |
39236c6e | 3374 | if (m != NULL) |
1c79356b A |
3375 | goto dontblock; |
3376 | error = so->so_error; | |
3377 | if ((flags & MSG_PEEK) == 0) | |
3378 | so->so_error = 0; | |
3379 | goto release; | |
3380 | } | |
3381 | if (so->so_state & SS_CANTRCVMORE) { | |
fe8ab488 A |
3382 | #if CONTENT_FILTER |
3383 | /* | |
3384 | * Deal with half closed connections | |
3385 | */ | |
3386 | if ((so->so_state & SS_ISDISCONNECTED) == 0 && | |
3387 | cfil_sock_data_pending(&so->so_rcv) != 0) | |
3388 | CFIL_LOG(LOG_INFO, | |
3389 | "so %llx ignore SS_CANTRCVMORE", | |
3e170ce0 A |
3390 | (uint64_t)DEBUG_KERNEL_ADDRPERM(so)); |
3391 | else | |
fe8ab488 | 3392 | #endif /* CONTENT_FILTER */ |
39236c6e | 3393 | if (m != NULL) |
1c79356b A |
3394 | goto dontblock; |
3395 | else | |
3396 | goto release; | |
3397 | } | |
39236c6e | 3398 | for (; m != NULL; m = m->m_next) |
2d21ac55 | 3399 | if (m->m_type == MT_OOBDATA || (m->m_flags & M_EOR)) { |
1c79356b A |
3400 | m = so->so_rcv.sb_mb; |
3401 | goto dontblock; | |
3402 | } | |
3403 | if ((so->so_state & (SS_ISCONNECTED|SS_ISCONNECTING)) == 0 && | |
3404 | (so->so_proto->pr_flags & PR_CONNREQUIRED)) { | |
3405 | error = ENOTCONN; | |
3406 | goto release; | |
3407 | } | |
91447636 | 3408 | if (uio_resid(uio) == 0) |
1c79356b | 3409 | goto release; |
3e170ce0 | 3410 | |
2d21ac55 A |
3411 | if ((so->so_state & SS_NBIO) || |
3412 | (flags & (MSG_DONTWAIT|MSG_NBIO))) { | |
1c79356b A |
3413 | error = EWOULDBLOCK; |
3414 | goto release; | |
3415 | } | |
2d21ac55 A |
3416 | SBLASTRECORDCHK(&so->so_rcv, "soreceive sbwait 1"); |
3417 | SBLASTMBUFCHK(&so->so_rcv, "soreceive sbwait 1"); | |
39236c6e | 3418 | sbunlock(&so->so_rcv, TRUE); /* keep socket locked */ |
2d21ac55 | 3419 | #if EVEN_MORE_LOCKING_DEBUG |
1c79356b | 3420 | if (socket_debug) |
2d21ac55 | 3421 | printf("Waiting for socket data\n"); |
91447636 | 3422 | #endif |
55e303ae | 3423 | |
1c79356b | 3424 | error = sbwait(&so->so_rcv); |
2d21ac55 | 3425 | #if EVEN_MORE_LOCKING_DEBUG |
1c79356b | 3426 | if (socket_debug) |
2d21ac55 | 3427 | printf("SORECEIVE - sbwait returned %d\n", error); |
91447636 | 3428 | #endif |
39236c6e A |
3429 | if (so->so_usecount < 1) { |
3430 | panic("%s: after 2nd sblock so=%p ref=%d on socket\n", | |
3431 | __func__, so, so->so_usecount); | |
3432 | /* NOTREACHED */ | |
3433 | } | |
9bccf70c | 3434 | if (error) { |
91447636 | 3435 | socket_unlock(so, 1); |
2d21ac55 A |
3436 | KERNEL_DEBUG(DBG_FNC_SORECEIVE | DBG_FUNC_END, error, |
3437 | 0, 0, 0, 0); | |
3e170ce0 A |
3438 | if (en_tracing) { |
3439 | KERNEL_ENERGYTRACE(kEnTrActKernSockRead, DBG_FUNC_END, | |
3440 | VM_KERNEL_ADDRPERM(so), 0, | |
3441 | (int64_t)(orig_resid - uio_resid(uio))); | |
3442 | } | |
2d21ac55 | 3443 | return (error); |
1c79356b A |
3444 | } |
3445 | goto restart; | |
3446 | } | |
3447 | dontblock: | |
b0d623f7 | 3448 | OSIncrementAtomicLong(&p->p_stats->p_ru.ru_msgrcv); |
2d21ac55 A |
3449 | SBLASTRECORDCHK(&so->so_rcv, "soreceive 1"); |
3450 | SBLASTMBUFCHK(&so->so_rcv, "soreceive 1"); | |
1c79356b | 3451 | nextrecord = m->m_nextpkt; |
fe8ab488 | 3452 | |
3e170ce0 A |
3453 | if ((pr->pr_flags & PR_ADDR) && m->m_type == MT_SONAME) { |
3454 | error = soreceive_addr(p, so, psa, flags, &m, &nextrecord, | |
3455 | mp0 == NULL); | |
3456 | if (error == ERESTART) | |
3457 | goto restart; | |
3458 | else if (error != 0) | |
3459 | goto release; | |
1c79356b | 3460 | orig_resid = 0; |
1c79356b | 3461 | } |
2d21ac55 A |
3462 | |
3463 | /* | |
3464 | * Process one or more MT_CONTROL mbufs present before any data mbufs | |
3465 | * in the first mbuf chain on the socket buffer. If MSG_PEEK, we | |
3466 | * just copy the data; if !MSG_PEEK, we call into the protocol to | |
3467 | * perform externalization. | |
3468 | */ | |
3469 | if (m != NULL && m->m_type == MT_CONTROL) { | |
3e170ce0 A |
3470 | error = soreceive_ctl(so, controlp, flags, &m, &nextrecord); |
3471 | if (error != 0) | |
3472 | goto release; | |
316670eb | 3473 | orig_resid = 0; |
1c79356b | 3474 | } |
2d21ac55 | 3475 | |
39236c6e A |
3476 | /* |
3477 | * If the socket is a TCP socket with message delivery | |
3478 | * enabled, then create a control msg to deliver the | |
3479 | * relative TCP sequence number for this data. Waiting | |
3480 | * until this point will protect against failures to | |
3481 | * allocate an mbuf for control msgs. | |
3482 | */ | |
3483 | if (so->so_type == SOCK_STREAM && SOCK_PROTO(so) == IPPROTO_TCP && | |
3484 | (so->so_flags & SOF_ENABLE_MSGS) && controlp != NULL) { | |
3485 | struct mbuf *seq_cm; | |
3486 | ||
3487 | seq_cm = sbcreatecontrol((caddr_t)&m->m_pkthdr.msg_seq, | |
3488 | sizeof (uint32_t), SCM_SEQNUM, SOL_SOCKET); | |
3489 | if (seq_cm == NULL) { | |
3490 | /* unable to allocate a control mbuf */ | |
3491 | error = ENOBUFS; | |
3492 | goto release; | |
3493 | } | |
3494 | *controlp = seq_cm; | |
3495 | controlp = &seq_cm->m_next; | |
3496 | } | |
3497 | ||
2d21ac55 A |
3498 | if (m != NULL) { |
3499 | if (!(flags & MSG_PEEK)) { | |
3500 | /* | |
3501 | * We get here because m points to an mbuf following | |
3502 | * any MT_SONAME or MT_CONTROL mbufs which have been | |
3503 | * processed above. In any case, m should be pointing | |
3504 | * to the head of the mbuf chain, and the nextrecord | |
3505 | * should be either NULL or equal to m->m_nextpkt. | |
3506 | * See comments above about SB_LOCK. | |
3507 | */ | |
39236c6e A |
3508 | if (m != so->so_rcv.sb_mb || |
3509 | m->m_nextpkt != nextrecord) { | |
3510 | panic("%s: post-control !sync so=%p m=%p " | |
3511 | "nextrecord=%p\n", __func__, so, m, | |
3512 | nextrecord); | |
3513 | /* NOTREACHED */ | |
3514 | } | |
2d21ac55 A |
3515 | if (nextrecord == NULL) |
3516 | so->so_rcv.sb_lastrecord = m; | |
3517 | } | |
1c79356b A |
3518 | type = m->m_type; |
3519 | if (type == MT_OOBDATA) | |
3520 | flags |= MSG_OOB; | |
2d21ac55 A |
3521 | } else { |
3522 | if (!(flags & MSG_PEEK)) { | |
2d21ac55 A |
3523 | SB_EMPTY_FIXUP(&so->so_rcv); |
3524 | } | |
1c79356b | 3525 | } |
2d21ac55 A |
3526 | SBLASTRECORDCHK(&so->so_rcv, "soreceive 2"); |
3527 | SBLASTMBUFCHK(&so->so_rcv, "soreceive 2"); | |
3528 | ||
1c79356b A |
3529 | moff = 0; |
3530 | offset = 0; | |
fa4905b1 | 3531 | |
91447636 | 3532 | if (!(flags & MSG_PEEK) && uio_resid(uio) > sorecvmincopy) |
2d21ac55 | 3533 | can_delay = 1; |
55e303ae | 3534 | else |
2d21ac55 | 3535 | can_delay = 0; |
55e303ae A |
3536 | |
3537 | need_event = 0; | |
fa4905b1 | 3538 | |
39236c6e A |
3539 | while (m != NULL && |
3540 | (uio_resid(uio) - delayed_copy_len) > 0 && error == 0) { | |
1c79356b A |
3541 | if (m->m_type == MT_OOBDATA) { |
3542 | if (type != MT_OOBDATA) | |
3543 | break; | |
2d21ac55 | 3544 | } else if (type == MT_OOBDATA) { |
1c79356b | 3545 | break; |
2d21ac55 | 3546 | } |
9bccf70c | 3547 | /* |
2d21ac55 | 3548 | * Make sure to allways set MSG_OOB event when getting |
9bccf70c A |
3549 | * out of band data inline. |
3550 | */ | |
1c79356b | 3551 | if ((so->so_options & SO_WANTOOBFLAG) != 0 && |
2d21ac55 A |
3552 | (so->so_options & SO_OOBINLINE) != 0 && |
3553 | (so->so_state & SS_RCVATMARK) != 0) { | |
9bccf70c A |
3554 | flags |= MSG_OOB; |
3555 | } | |
1c79356b | 3556 | so->so_state &= ~SS_RCVATMARK; |
91447636 | 3557 | len = uio_resid(uio) - delayed_copy_len; |
1c79356b A |
3558 | if (so->so_oobmark && len > so->so_oobmark - offset) |
3559 | len = so->so_oobmark - offset; | |
3560 | if (len > m->m_len - moff) | |
3561 | len = m->m_len - moff; | |
3562 | /* | |
3563 | * If mp is set, just pass back the mbufs. | |
3564 | * Otherwise copy them out via the uio, then free. | |
3565 | * Sockbuf must be consistent here (points to current mbuf, | |
3566 | * it points to next record) when we drop priority; | |
3567 | * we must note any additions to the sockbuf when we | |
3568 | * block interrupts again. | |
3569 | */ | |
39236c6e | 3570 | if (mp == NULL) { |
2d21ac55 A |
3571 | SBLASTRECORDCHK(&so->so_rcv, "soreceive uiomove"); |
3572 | SBLASTMBUFCHK(&so->so_rcv, "soreceive uiomove"); | |
55e303ae | 3573 | if (can_delay && len == m->m_len) { |
2d21ac55 | 3574 | /* |
55e303ae A |
3575 | * only delay the copy if we're consuming the |
3576 | * mbuf and we're NOT in MSG_PEEK mode | |
3577 | * and we have enough data to make it worthwile | |
2d21ac55 A |
3578 | * to drop and retake the lock... can_delay |
3579 | * reflects the state of the 2 latter | |
3580 | * constraints moff should always be zero | |
3581 | * in these cases | |
55e303ae | 3582 | */ |
2d21ac55 | 3583 | delayed_copy_len += len; |
55e303ae | 3584 | } else { |
2d21ac55 A |
3585 | if (delayed_copy_len) { |
3586 | error = sodelayed_copy(so, uio, | |
3587 | &free_list, &delayed_copy_len); | |
55e303ae A |
3588 | |
3589 | if (error) { | |
55e303ae A |
3590 | goto release; |
3591 | } | |
2d21ac55 A |
3592 | /* |
3593 | * can only get here if MSG_PEEK is not | |
3594 | * set therefore, m should point at the | |
3595 | * head of the rcv queue; if it doesn't, | |
3596 | * it means something drastically | |
3597 | * changed while we were out from behind | |
3598 | * the lock in sodelayed_copy. perhaps | |
3599 | * a RST on the stream. in any event, | |
3600 | * the stream has been interrupted. it's | |
3601 | * probably best just to return whatever | |
3602 | * data we've moved and let the caller | |
3603 | * sort it out... | |
3604 | */ | |
55e303ae | 3605 | if (m != so->so_rcv.sb_mb) { |
2d21ac55 | 3606 | break; |
55e303ae A |
3607 | } |
3608 | } | |
91447636 | 3609 | socket_unlock(so, 0); |
2d21ac55 A |
3610 | error = uiomove(mtod(m, caddr_t) + moff, |
3611 | (int)len, uio); | |
91447636 | 3612 | socket_lock(so, 0); |
55e303ae | 3613 | |
55e303ae | 3614 | if (error) |
2d21ac55 | 3615 | goto release; |
55e303ae | 3616 | } |
2d21ac55 | 3617 | } else { |
91447636 | 3618 | uio_setresid(uio, (uio_resid(uio) - len)); |
2d21ac55 | 3619 | } |
1c79356b A |
3620 | if (len == m->m_len - moff) { |
3621 | if (m->m_flags & M_EOR) | |
3622 | flags |= MSG_EOR; | |
3623 | if (flags & MSG_PEEK) { | |
3624 | m = m->m_next; | |
3625 | moff = 0; | |
3626 | } else { | |
3627 | nextrecord = m->m_nextpkt; | |
3628 | sbfree(&so->so_rcv, m); | |
91447636 | 3629 | m->m_nextpkt = NULL; |
55e303ae | 3630 | |
39236c6e A |
3631 | /* |
3632 | * If this packet is an unordered packet | |
3633 | * (indicated by M_UNORDERED_DATA flag), remove | |
3634 | * the additional bytes added to the | |
3635 | * receive socket buffer size. | |
3636 | */ | |
3637 | if ((so->so_flags & SOF_ENABLE_MSGS) && | |
3638 | m->m_len && | |
3639 | (m->m_flags & M_UNORDERED_DATA) && | |
3640 | sbreserve(&so->so_rcv, | |
3641 | so->so_rcv.sb_hiwat - m->m_len)) { | |
3642 | if (so->so_msg_state->msg_uno_bytes > | |
3643 | m->m_len) { | |
3644 | so->so_msg_state-> | |
3645 | msg_uno_bytes -= m->m_len; | |
3646 | } else { | |
3647 | so->so_msg_state-> | |
3648 | msg_uno_bytes = 0; | |
3649 | } | |
3650 | m->m_flags &= ~M_UNORDERED_DATA; | |
3651 | } | |
3652 | ||
3653 | if (mp != NULL) { | |
1c79356b A |
3654 | *mp = m; |
3655 | mp = &m->m_next; | |
3656 | so->so_rcv.sb_mb = m = m->m_next; | |
39236c6e | 3657 | *mp = NULL; |
1c79356b | 3658 | } else { |
55e303ae | 3659 | if (free_list == NULL) |
2d21ac55 A |
3660 | free_list = m; |
3661 | else | |
3662 | ml->m_next = m; | |
3663 | ml = m; | |
14353aa8 | 3664 | so->so_rcv.sb_mb = m = m->m_next; |
39236c6e | 3665 | ml->m_next = NULL; |
1c79356b | 3666 | } |
2d21ac55 | 3667 | if (m != NULL) { |
1c79356b | 3668 | m->m_nextpkt = nextrecord; |
2d21ac55 A |
3669 | if (nextrecord == NULL) |
3670 | so->so_rcv.sb_lastrecord = m; | |
3671 | } else { | |
3672 | so->so_rcv.sb_mb = nextrecord; | |
3673 | SB_EMPTY_FIXUP(&so->so_rcv); | |
3674 | } | |
3675 | SBLASTRECORDCHK(&so->so_rcv, "soreceive 3"); | |
3676 | SBLASTMBUFCHK(&so->so_rcv, "soreceive 3"); | |
1c79356b A |
3677 | } |
3678 | } else { | |
2d21ac55 | 3679 | if (flags & MSG_PEEK) { |
1c79356b | 3680 | moff += len; |
2d21ac55 | 3681 | } else { |
6d2010ae A |
3682 | if (mp != NULL) { |
3683 | int copy_flag; | |
3684 | ||
3685 | if (flags & MSG_DONTWAIT) | |
3686 | copy_flag = M_DONTWAIT; | |
3687 | else | |
3688 | copy_flag = M_WAIT; | |
3689 | *mp = m_copym(m, 0, len, copy_flag); | |
39236c6e A |
3690 | /* |
3691 | * Failed to allocate an mbuf? | |
3692 | * Adjust uio_resid back, it was | |
3693 | * adjusted down by len bytes which | |
3694 | * we didn't copy over. | |
3695 | */ | |
6d2010ae | 3696 | if (*mp == NULL) { |
39236c6e A |
3697 | uio_setresid(uio, |
3698 | (uio_resid(uio) + len)); | |
6d2010ae A |
3699 | break; |
3700 | } | |
3701 | } | |
1c79356b A |
3702 | m->m_data += len; |
3703 | m->m_len -= len; | |
3704 | so->so_rcv.sb_cc -= len; | |
3705 | } | |
3706 | } | |
3707 | if (so->so_oobmark) { | |
3708 | if ((flags & MSG_PEEK) == 0) { | |
3709 | so->so_oobmark -= len; | |
3710 | if (so->so_oobmark == 0) { | |
2d21ac55 A |
3711 | so->so_state |= SS_RCVATMARK; |
3712 | /* | |
3713 | * delay posting the actual event until | |
3714 | * after any delayed copy processing | |
3715 | * has finished | |
3716 | */ | |
3717 | need_event = 1; | |
3718 | break; | |
1c79356b A |
3719 | } |
3720 | } else { | |
3721 | offset += len; | |
3722 | if (offset == so->so_oobmark) | |
3723 | break; | |
3724 | } | |
3725 | } | |
2d21ac55 | 3726 | if (flags & MSG_EOR) |
1c79356b A |
3727 | break; |
3728 | /* | |
2d21ac55 A |
3729 | * If the MSG_WAITALL or MSG_WAITSTREAM flag is set |
3730 | * (for non-atomic socket), we must not quit until | |
3731 | * "uio->uio_resid == 0" or an error termination. | |
3732 | * If a signal/timeout occurs, return with a short | |
3733 | * count but without error. Keep sockbuf locked | |
3734 | * against other readers. | |
1c79356b | 3735 | */ |
39236c6e | 3736 | while (flags & (MSG_WAITALL|MSG_WAITSTREAM) && m == NULL && |
2d21ac55 | 3737 | (uio_resid(uio) - delayed_copy_len) > 0 && |
1c79356b | 3738 | !sosendallatonce(so) && !nextrecord) { |
fe8ab488 A |
3739 | if (so->so_error || ((so->so_state & SS_CANTRCVMORE) |
3740 | #if CONTENT_FILTER | |
3741 | && cfil_sock_data_pending(&so->so_rcv) == 0 | |
3742 | #endif /* CONTENT_FILTER */ | |
3743 | )) | |
2d21ac55 | 3744 | goto release; |
fa4905b1 | 3745 | |
2d21ac55 A |
3746 | /* |
3747 | * Depending on the protocol (e.g. TCP), the following | |
3748 | * might cause the socket lock to be dropped and later | |
3749 | * be reacquired, and more data could have arrived and | |
3750 | * have been appended to the receive socket buffer by | |
3751 | * the time it returns. Therefore, we only sleep in | |
3752 | * sbwait() below if and only if the socket buffer is | |
3753 | * empty, in order to avoid a false sleep. | |
3754 | */ | |
3755 | if (pr->pr_flags & PR_WANTRCVD && so->so_pcb && | |
3756 | (((struct inpcb *)so->so_pcb)->inp_state != | |
3757 | INPCB_STATE_DEAD)) | |
3758 | (*pr->pr_usrreqs->pru_rcvd)(so, flags); | |
3759 | ||
3760 | SBLASTRECORDCHK(&so->so_rcv, "soreceive sbwait 2"); | |
3761 | SBLASTMBUFCHK(&so->so_rcv, "soreceive sbwait 2"); | |
3762 | ||
3763 | if (so->so_rcv.sb_mb == NULL && sbwait(&so->so_rcv)) { | |
3764 | error = 0; | |
55e303ae | 3765 | goto release; |
fa4905b1 | 3766 | } |
55e303ae | 3767 | /* |
2d21ac55 A |
3768 | * have to wait until after we get back from the sbwait |
3769 | * to do the copy because we will drop the lock if we | |
3770 | * have enough data that has been delayed... by dropping | |
3771 | * the lock we open up a window allowing the netisr | |
3772 | * thread to process the incoming packets and to change | |
3773 | * the state of this socket... we're issuing the sbwait | |
3774 | * because the socket is empty and we're expecting the | |
3775 | * netisr thread to wake us up when more packets arrive; | |
3776 | * if we allow that processing to happen and then sbwait | |
3777 | * we could stall forever with packets sitting in the | |
3778 | * socket if no further packets arrive from the remote | |
3779 | * side. | |
55e303ae | 3780 | * |
2d21ac55 A |
3781 | * we want to copy before we've collected all the data |
3782 | * to satisfy this request to allow the copy to overlap | |
3783 | * the incoming packet processing on an MP system | |
55e303ae | 3784 | */ |
2d21ac55 A |
3785 | if (delayed_copy_len > sorecvmincopy && |
3786 | (delayed_copy_len > (so->so_rcv.sb_hiwat / 2))) { | |
3787 | error = sodelayed_copy(so, uio, | |
3788 | &free_list, &delayed_copy_len); | |
55e303ae A |
3789 | |
3790 | if (error) | |
2d21ac55 | 3791 | goto release; |
1c79356b A |
3792 | } |
3793 | m = so->so_rcv.sb_mb; | |
39236c6e | 3794 | if (m != NULL) { |
1c79356b | 3795 | nextrecord = m->m_nextpkt; |
fa4905b1 | 3796 | } |
316670eb | 3797 | SB_MB_CHECK(&so->so_rcv); |
1c79356b A |
3798 | } |
3799 | } | |
91447636 | 3800 | #ifdef MORE_LOCKING_DEBUG |
39236c6e A |
3801 | if (so->so_usecount <= 1) { |
3802 | panic("%s: after big while so=%p ref=%d on socket\n", | |
3803 | __func__, so, so->so_usecount); | |
3804 | /* NOTREACHED */ | |
3805 | } | |
91447636 | 3806 | #endif |
1c79356b | 3807 | |
39236c6e | 3808 | if (m != NULL && pr->pr_flags & PR_ATOMIC) { |
2d21ac55 | 3809 | if (so->so_options & SO_DONTTRUNC) { |
1c79356b | 3810 | flags |= MSG_RCVMORE; |
2d21ac55 | 3811 | } else { |
9bccf70c | 3812 | flags |= MSG_TRUNC; |
1c79356b A |
3813 | if ((flags & MSG_PEEK) == 0) |
3814 | (void) sbdroprecord(&so->so_rcv); | |
3815 | } | |
3816 | } | |
2d21ac55 A |
3817 | |
3818 | /* | |
3819 | * pru_rcvd below (for TCP) may cause more data to be received | |
3820 | * if the socket lock is dropped prior to sending the ACK; some | |
3821 | * legacy OpenTransport applications don't handle this well | |
3822 | * (if it receives less data than requested while MSG_HAVEMORE | |
3823 | * is set), and so we set the flag now based on what we know | |
3824 | * prior to calling pru_rcvd. | |
3825 | */ | |
3826 | if ((so->so_options & SO_WANTMORE) && so->so_rcv.sb_cc > 0) | |
3827 | flags |= MSG_HAVEMORE; | |
3828 | ||
1c79356b | 3829 | if ((flags & MSG_PEEK) == 0) { |
39236c6e | 3830 | if (m == NULL) { |
1c79356b | 3831 | so->so_rcv.sb_mb = nextrecord; |
2d21ac55 A |
3832 | /* |
3833 | * First part is an inline SB_EMPTY_FIXUP(). Second | |
3834 | * part makes sure sb_lastrecord is up-to-date if | |
3835 | * there is still data in the socket buffer. | |
3836 | */ | |
3837 | if (so->so_rcv.sb_mb == NULL) { | |
3838 | so->so_rcv.sb_mbtail = NULL; | |
3839 | so->so_rcv.sb_lastrecord = NULL; | |
3840 | } else if (nextrecord->m_nextpkt == NULL) { | |
3841 | so->so_rcv.sb_lastrecord = nextrecord; | |
3842 | } | |
316670eb | 3843 | SB_MB_CHECK(&so->so_rcv); |
2d21ac55 A |
3844 | } |
3845 | SBLASTRECORDCHK(&so->so_rcv, "soreceive 4"); | |
3846 | SBLASTMBUFCHK(&so->so_rcv, "soreceive 4"); | |
1c79356b A |
3847 | if (pr->pr_flags & PR_WANTRCVD && so->so_pcb) |
3848 | (*pr->pr_usrreqs->pru_rcvd)(so, flags); | |
3849 | } | |
39236c6e | 3850 | |
55e303ae | 3851 | if (delayed_copy_len) { |
91447636 | 3852 | error = sodelayed_copy(so, uio, &free_list, &delayed_copy_len); |
55e303ae | 3853 | if (error) |
2d21ac55 | 3854 | goto release; |
55e303ae | 3855 | } |
39236c6e A |
3856 | if (free_list != NULL) { |
3857 | m_freem_list(free_list); | |
3858 | free_list = NULL; | |
55e303ae A |
3859 | } |
3860 | if (need_event) | |
2d21ac55 | 3861 | postevent(so, 0, EV_OOB); |
39236c6e | 3862 | |
91447636 | 3863 | if (orig_resid == uio_resid(uio) && orig_resid && |
1c79356b | 3864 | (flags & MSG_EOR) == 0 && (so->so_state & SS_CANTRCVMORE) == 0) { |
39236c6e | 3865 | sbunlock(&so->so_rcv, TRUE); /* keep socket locked */ |
1c79356b A |
3866 | goto restart; |
3867 | } | |
3868 | ||
39236c6e | 3869 | if (flagsp != NULL) |
1c79356b A |
3870 | *flagsp |= flags; |
3871 | release: | |
91447636 | 3872 | #ifdef MORE_LOCKING_DEBUG |
39236c6e A |
3873 | if (so->so_usecount <= 1) { |
3874 | panic("%s: release so=%p ref=%d on socket\n", __func__, | |
2d21ac55 | 3875 | so, so->so_usecount); |
39236c6e A |
3876 | /* NOTREACHED */ |
3877 | } | |
91447636 | 3878 | #endif |
39236c6e | 3879 | if (delayed_copy_len) |
2d21ac55 | 3880 | error = sodelayed_copy(so, uio, &free_list, &delayed_copy_len); |
1c79356b | 3881 | |
39236c6e A |
3882 | if (free_list != NULL) |
3883 | m_freem_list(free_list); | |
3884 | ||
3885 | sbunlock(&so->so_rcv, FALSE); /* will unlock socket */ | |
3886 | ||
3e170ce0 A |
3887 | if (en_tracing) { |
3888 | KERNEL_ENERGYTRACE(kEnTrActKernSockRead, DBG_FUNC_END, | |
3889 | VM_KERNEL_ADDRPERM(so), | |
3890 | ((error == EWOULDBLOCK) ? kEnTrFlagNoWork : 0), | |
3891 | (int64_t)(orig_resid - uio_resid(uio))); | |
3892 | } | |
2d21ac55 A |
3893 | KERNEL_DEBUG(DBG_FNC_SORECEIVE | DBG_FUNC_END, so, uio_resid(uio), |
3894 | so->so_rcv.sb_cc, 0, error); | |
1c79356b A |
3895 | |
3896 | return (error); | |
3897 | } | |
3898 | ||
2d21ac55 A |
3899 | /* |
3900 | * Returns: 0 Success | |
3901 | * uiomove:EFAULT | |
3902 | */ | |
3903 | static int | |
3904 | sodelayed_copy(struct socket *so, struct uio *uio, struct mbuf **free_list, | |
39236c6e | 3905 | user_ssize_t *resid) |
55e303ae | 3906 | { |
2d21ac55 | 3907 | int error = 0; |
55e303ae A |
3908 | struct mbuf *m; |
3909 | ||
3910 | m = *free_list; | |
3911 | ||
91447636 | 3912 | socket_unlock(so, 0); |
55e303ae | 3913 | |
39236c6e | 3914 | while (m != NULL && error == 0) { |
2d21ac55 | 3915 | error = uiomove(mtod(m, caddr_t), (int)m->m_len, uio); |
2d21ac55 A |
3916 | m = m->m_next; |
3917 | } | |
3918 | m_freem_list(*free_list); | |
3919 | ||
39236c6e | 3920 | *free_list = NULL; |
2d21ac55 A |
3921 | *resid = 0; |
3922 | ||
3923 | socket_lock(so, 0); | |
55e303ae | 3924 | |
2d21ac55 A |
3925 | return (error); |
3926 | } | |
3927 | ||
3e170ce0 A |
3928 | static int |
3929 | sodelayed_copy_list(struct socket *so, struct recv_msg_elem *msgarray, | |
3930 | u_int uiocnt, struct mbuf **free_list, user_ssize_t *resid) | |
3931 | { | |
3932 | #pragma unused(so) | |
3933 | int error = 0; | |
3934 | struct mbuf *ml, *m; | |
3935 | int i = 0; | |
3936 | struct uio *auio; | |
3937 | ||
3938 | for (ml = *free_list, i = 0; ml != NULL && i < uiocnt; | |
3939 | ml = ml->m_nextpkt, i++) { | |
3940 | auio = msgarray[i].uio; | |
3941 | for (m = ml; m != NULL; m = m->m_next) { | |
3942 | error = uiomove(mtod(m, caddr_t), m->m_len, auio); | |
3943 | if (error != 0) | |
3944 | goto out; | |
3945 | } | |
3946 | } | |
3947 | out: | |
3948 | m_freem_list(*free_list); | |
3949 | ||
3950 | *free_list = NULL; | |
3951 | *resid = 0; | |
3952 | ||
3953 | return (error); | |
3954 | } | |
3955 | ||
2d21ac55 | 3956 | int |
3e170ce0 A |
3957 | soreceive_list(struct socket *so, struct recv_msg_elem *msgarray, u_int uiocnt, |
3958 | int *flagsp) | |
2d21ac55 | 3959 | { |
3e170ce0 | 3960 | struct mbuf *m; |
fe8ab488 | 3961 | struct mbuf *nextrecord; |
3e170ce0 A |
3962 | struct mbuf *ml = NULL, *free_list = NULL, *free_tail = NULL; |
3963 | int error; | |
3964 | user_ssize_t len, pktlen, delayed_copy_len = 0; | |
fe8ab488 | 3965 | struct protosw *pr = so->so_proto; |
3e170ce0 | 3966 | user_ssize_t resid; |
fe8ab488 A |
3967 | struct proc *p = current_proc(); |
3968 | struct uio *auio = NULL; | |
3e170ce0 | 3969 | int npkts = 0; |
fe8ab488 | 3970 | int sblocked = 0; |
3e170ce0 A |
3971 | struct sockaddr **psa = NULL; |
3972 | struct mbuf **controlp = NULL; | |
3973 | int can_delay; | |
3974 | int flags; | |
3975 | struct mbuf *free_others = NULL; | |
55e303ae | 3976 | |
fe8ab488 A |
3977 | KERNEL_DEBUG(DBG_FNC_SORECEIVE_LIST | DBG_FUNC_START, |
3978 | so, uiocnt, | |
3979 | so->so_rcv.sb_cc, so->so_rcv.sb_lowat, so->so_rcv.sb_hiwat); | |
3980 | ||
fe8ab488 A |
3981 | /* |
3982 | * Sanity checks: | |
3983 | * - Only supports don't wait flags | |
3984 | * - Only support datagram sockets (could be extended to raw) | |
3985 | * - Must be atomic | |
3986 | * - Protocol must support packet chains | |
3987 | * - The uio array is NULL (should we panic?) | |
3988 | */ | |
3e170ce0 A |
3989 | if (flagsp != NULL) |
3990 | flags = *flagsp; | |
3991 | else | |
3992 | flags = 0; | |
3993 | if (flags & ~(MSG_PEEK | MSG_WAITALL | MSG_DONTWAIT | MSG_NEEDSA | | |
3994 | MSG_NBIO)) { | |
3995 | printf("%s invalid flags 0x%x\n", __func__, flags); | |
3996 | error = EINVAL; | |
fe8ab488 A |
3997 | goto out; |
3998 | } | |
3999 | if (so->so_type != SOCK_DGRAM) { | |
4000 | error = EINVAL; | |
4001 | goto out; | |
4002 | } | |
4003 | if (sosendallatonce(so) == 0) { | |
4004 | error = EINVAL; | |
4005 | goto out; | |
4006 | } | |
4007 | if (so->so_proto->pr_usrreqs->pru_send_list == NULL) { | |
4008 | error = EPROTONOSUPPORT; | |
4009 | goto out; | |
4010 | } | |
3e170ce0 | 4011 | if (msgarray == NULL) { |
fe8ab488 A |
4012 | printf("%s uioarray is NULL\n", __func__); |
4013 | error = EINVAL; | |
4014 | goto out; | |
4015 | } | |
4016 | if (uiocnt == 0) { | |
4017 | printf("%s uiocnt is 0\n", __func__); | |
4018 | error = EINVAL; | |
4019 | goto out; | |
4020 | } | |
4021 | /* | |
4022 | * Sanity check on the length passed by caller as we are making 'int' | |
4023 | * comparisons | |
4024 | */ | |
3e170ce0 A |
4025 | resid = recv_msg_array_resid(msgarray, uiocnt); |
4026 | if (resid < 0 || resid > INT_MAX) { | |
fe8ab488 A |
4027 | error = EINVAL; |
4028 | goto out; | |
4029 | } | |
4030 | ||
3e170ce0 A |
4031 | if (!(flags & MSG_PEEK) && sorecvmincopy > 0) |
4032 | can_delay = 1; | |
4033 | else | |
4034 | can_delay = 0; | |
4035 | ||
fe8ab488 A |
4036 | socket_lock(so, 1); |
4037 | so_update_last_owner_locked(so, p); | |
4038 | so_update_policy(so); | |
4039 | ||
4040 | #if NECP | |
4041 | so_update_necp_policy(so, NULL, NULL); | |
4042 | #endif /* NECP */ | |
3e170ce0 | 4043 | |
fe8ab488 A |
4044 | /* |
4045 | * If a recv attempt is made on a previously-accepted socket | |
4046 | * that has been marked as inactive (disconnected), reject | |
4047 | * the request. | |
4048 | */ | |
4049 | if (so->so_flags & SOF_DEFUNCT) { | |
4050 | struct sockbuf *sb = &so->so_rcv; | |
4051 | ||
4052 | error = ENOTCONN; | |
39037602 A |
4053 | SODEFUNCTLOG("%s[%d, %s]: defunct so 0x%llx [%d,%d] (%d)\n", |
4054 | __func__, proc_pid(p), proc_best_name(p), | |
4055 | (uint64_t)DEBUG_KERNEL_ADDRPERM(so), | |
4056 | SOCK_DOM(so), SOCK_TYPE(so), error); | |
fe8ab488 A |
4057 | /* |
4058 | * This socket should have been disconnected and flushed | |
4059 | * prior to being returned from sodefunct(); there should | |
4060 | * be no data on its receive list, so panic otherwise. | |
4061 | */ | |
4062 | if (so->so_state & SS_DEFUNCT) | |
4063 | sb_empty_assert(sb, __func__); | |
4064 | goto release; | |
4065 | } | |
3e170ce0 A |
4066 | |
4067 | next: | |
4068 | /* | |
4069 | * The uio may be empty | |
4070 | */ | |
4071 | if (npkts >= uiocnt) { | |
4072 | error = 0; | |
4073 | goto release; | |
4074 | } | |
fe8ab488 A |
4075 | restart: |
4076 | /* | |
4077 | * See if the socket has been closed (SS_NOFDREF|SS_CANTRCVMORE) | |
4078 | * and if so just return to the caller. This could happen when | |
4079 | * soreceive() is called by a socket upcall function during the | |
4080 | * time the socket is freed. The socket buffer would have been | |
4081 | * locked across the upcall, therefore we cannot put this thread | |
4082 | * to sleep (else we will deadlock) or return EWOULDBLOCK (else | |
4083 | * we may livelock), because the lock on the socket buffer will | |
4084 | * only be released when the upcall routine returns to its caller. | |
4085 | * Because the socket has been officially closed, there can be | |
4086 | * no further read on it. | |
4087 | */ | |
4088 | if ((so->so_state & (SS_NOFDREF | SS_CANTRCVMORE)) == | |
4089 | (SS_NOFDREF | SS_CANTRCVMORE)) { | |
4090 | error = 0; | |
4091 | goto release; | |
4092 | } | |
4093 | ||
4094 | error = sblock(&so->so_rcv, SBLOCKWAIT(flags)); | |
4095 | if (error) { | |
4096 | goto release; | |
4097 | } | |
4098 | sblocked = 1; | |
4099 | ||
fe8ab488 A |
4100 | m = so->so_rcv.sb_mb; |
4101 | /* | |
4102 | * Block awaiting more datagram if needed | |
4103 | */ | |
3e170ce0 A |
4104 | if (m == NULL || (((flags & MSG_DONTWAIT) == 0 && |
4105 | (so->so_rcv.sb_cc < so->so_rcv.sb_lowat || | |
4106 | ((flags & MSG_WAITALL) && npkts < uiocnt))))) { | |
fe8ab488 A |
4107 | /* |
4108 | * Panic if we notice inconsistencies in the socket's | |
4109 | * receive list; both sb_mb and sb_cc should correctly | |
4110 | * reflect the contents of the list, otherwise we may | |
4111 | * end up with false positives during select() or poll() | |
4112 | * which could put the application in a bad state. | |
4113 | */ | |
4114 | SB_MB_CHECK(&so->so_rcv); | |
4115 | ||
4116 | if (so->so_error) { | |
4117 | error = so->so_error; | |
3e170ce0 A |
4118 | if ((flags & MSG_PEEK) == 0) |
4119 | so->so_error = 0; | |
fe8ab488 A |
4120 | goto release; |
4121 | } | |
4122 | if (so->so_state & SS_CANTRCVMORE) { | |
4123 | goto release; | |
4124 | } | |
4125 | if ((so->so_state & (SS_ISCONNECTED|SS_ISCONNECTING)) == 0 && | |
4126 | (so->so_proto->pr_flags & PR_CONNREQUIRED)) { | |
4127 | error = ENOTCONN; | |
4128 | goto release; | |
4129 | } | |
4130 | if ((so->so_state & SS_NBIO) || | |
4131 | (flags & (MSG_DONTWAIT|MSG_NBIO))) { | |
4132 | error = EWOULDBLOCK; | |
4133 | goto release; | |
4134 | } | |
4135 | /* | |
4136 | * Do not block if we got some data | |
fe8ab488 | 4137 | */ |
3e170ce0 | 4138 | if (free_list != NULL) { |
fe8ab488 A |
4139 | error = 0; |
4140 | goto release; | |
4141 | } | |
3e170ce0 | 4142 | |
fe8ab488 A |
4143 | SBLASTRECORDCHK(&so->so_rcv, "soreceive sbwait 1"); |
4144 | SBLASTMBUFCHK(&so->so_rcv, "soreceive sbwait 1"); | |
4145 | ||
4146 | sbunlock(&so->so_rcv, TRUE); /* keep socket locked */ | |
4147 | sblocked = 0; | |
4148 | ||
4149 | error = sbwait(&so->so_rcv); | |
4150 | if (error) { | |
4151 | goto release; | |
4152 | } | |
4153 | goto restart; | |
4154 | } | |
4155 | ||
fe8ab488 A |
4156 | OSIncrementAtomicLong(&p->p_stats->p_ru.ru_msgrcv); |
4157 | SBLASTRECORDCHK(&so->so_rcv, "soreceive 1"); | |
4158 | SBLASTMBUFCHK(&so->so_rcv, "soreceive 1"); | |
4159 | ||
4160 | /* | |
4161 | * Consume the current uio index as we have a datagram | |
4162 | */ | |
3e170ce0 A |
4163 | auio = msgarray[npkts].uio; |
4164 | resid = uio_resid(auio); | |
4165 | msgarray[npkts].which |= SOCK_MSG_DATA; | |
4166 | psa = (msgarray[npkts].which & SOCK_MSG_SA) ? | |
4167 | &msgarray[npkts].psa : NULL; | |
4168 | controlp = (msgarray[npkts].which & SOCK_MSG_CONTROL) ? | |
4169 | &msgarray[npkts].controlp : NULL; | |
4170 | npkts += 1; | |
fe8ab488 A |
4171 | nextrecord = m->m_nextpkt; |
4172 | ||
fe8ab488 | 4173 | if ((pr->pr_flags & PR_ADDR) && m->m_type == MT_SONAME) { |
3e170ce0 A |
4174 | error = soreceive_addr(p, so, psa, flags, &m, &nextrecord, 1); |
4175 | if (error == ERESTART) | |
4176 | goto restart; | |
4177 | else if (error != 0) | |
4178 | goto release; | |
fe8ab488 | 4179 | } |
fe8ab488 | 4180 | |
fe8ab488 | 4181 | if (m != NULL && m->m_type == MT_CONTROL) { |
3e170ce0 A |
4182 | error = soreceive_ctl(so, controlp, flags, &m, &nextrecord); |
4183 | if (error != 0) | |
4184 | goto release; | |
fe8ab488 | 4185 | } |
fe8ab488 | 4186 | |
3e170ce0 A |
4187 | if (m->m_pkthdr.len == 0) { |
4188 | printf("%s:%d so %llx pkt %llx type %u pktlen null\n", | |
4189 | __func__, __LINE__, | |
4190 | (uint64_t)DEBUG_KERNEL_ADDRPERM(so), | |
4191 | (uint64_t)DEBUG_KERNEL_ADDRPERM(m), | |
4192 | m->m_type); | |
4193 | } | |
fe8ab488 A |
4194 | |
4195 | /* | |
3e170ce0 A |
4196 | * Loop to copy the mbufs of the current record |
4197 | * Support zero length packets | |
fe8ab488 | 4198 | */ |
3e170ce0 A |
4199 | ml = NULL; |
4200 | pktlen = 0; | |
4201 | while (m != NULL && (len = resid - pktlen) >= 0 && error == 0) { | |
fe8ab488 | 4202 | if (m->m_len == 0) |
3e170ce0 A |
4203 | panic("%p m_len zero", m); |
4204 | if (m->m_type == 0) | |
4205 | panic("%p m_type zero", m); | |
fe8ab488 A |
4206 | /* |
4207 | * Clip to the residual length | |
4208 | */ | |
4209 | if (len > m->m_len) | |
4210 | len = m->m_len; | |
3e170ce0 | 4211 | pktlen += len; |
fe8ab488 | 4212 | /* |
3e170ce0 | 4213 | * Copy the mbufs via the uio or delay the copy |
fe8ab488 A |
4214 | * Sockbuf must be consistent here (points to current mbuf, |
4215 | * it points to next record) when we drop priority; | |
4216 | * we must note any additions to the sockbuf when we | |
4217 | * block interrupts again. | |
4218 | */ | |
3e170ce0 | 4219 | if (len > 0 && can_delay == 0) { |
fe8ab488 A |
4220 | socket_unlock(so, 0); |
4221 | error = uiomove(mtod(m, caddr_t), (int)len, auio); | |
4222 | socket_lock(so, 0); | |
fe8ab488 A |
4223 | if (error) |
4224 | goto release; | |
3e170ce0 A |
4225 | } else { |
4226 | delayed_copy_len += len; | |
fe8ab488 | 4227 | } |
3e170ce0 | 4228 | |
fe8ab488 A |
4229 | if (len == m->m_len) { |
4230 | /* | |
3e170ce0 | 4231 | * m was entirely copied |
fe8ab488 | 4232 | */ |
fe8ab488 | 4233 | sbfree(&so->so_rcv, m); |
3e170ce0 | 4234 | nextrecord = m->m_nextpkt; |
fe8ab488 A |
4235 | m->m_nextpkt = NULL; |
4236 | ||
4237 | /* | |
3e170ce0 | 4238 | * Set the first packet to the head of the free list |
fe8ab488 | 4239 | */ |
3e170ce0 A |
4240 | if (free_list == NULL) |
4241 | free_list = m; | |
4242 | /* | |
4243 | * Link current packet to tail of free list | |
4244 | */ | |
4245 | if (ml == NULL) { | |
4246 | if (free_tail != NULL) | |
4247 | free_tail->m_nextpkt = m; | |
4248 | free_tail = m; | |
fe8ab488 | 4249 | } |
3e170ce0 A |
4250 | /* |
4251 | * Link current mbuf to last mbuf of current packet | |
4252 | */ | |
4253 | if (ml != NULL) | |
4254 | ml->m_next = m; | |
4255 | ml = m; | |
4256 | ||
4257 | /* | |
4258 | * Move next buf to head of socket buffer | |
4259 | */ | |
4260 | so->so_rcv.sb_mb = m = ml->m_next; | |
4261 | ml->m_next = NULL; | |
4262 | ||
fe8ab488 A |
4263 | if (m != NULL) { |
4264 | m->m_nextpkt = nextrecord; | |
4265 | if (nextrecord == NULL) | |
4266 | so->so_rcv.sb_lastrecord = m; | |
4267 | } else { | |
4268 | so->so_rcv.sb_mb = nextrecord; | |
4269 | SB_EMPTY_FIXUP(&so->so_rcv); | |
4270 | } | |
4271 | SBLASTRECORDCHK(&so->so_rcv, "soreceive 3"); | |
4272 | SBLASTMBUFCHK(&so->so_rcv, "soreceive 3"); | |
4273 | } else { | |
4274 | /* | |
4275 | * Stop the loop on partial copy | |
4276 | */ | |
fe8ab488 A |
4277 | break; |
4278 | } | |
4279 | } | |
4280 | #ifdef MORE_LOCKING_DEBUG | |
4281 | if (so->so_usecount <= 1) { | |
4282 | panic("%s: after big while so=%llx ref=%d on socket\n", | |
4283 | __func__, | |
3e170ce0 | 4284 | (uint64_t)DEBUG_KERNEL_ADDRPERM(so), so->so_usecount); |
fe8ab488 A |
4285 | /* NOTREACHED */ |
4286 | } | |
4287 | #endif | |
4288 | /* | |
4289 | * Tell the caller we made a partial copy | |
4290 | */ | |
4291 | if (m != NULL) { | |
4292 | if (so->so_options & SO_DONTTRUNC) { | |
3e170ce0 A |
4293 | /* |
4294 | * Copyout first the freelist then the partial mbuf | |
4295 | */ | |
4296 | socket_unlock(so, 0); | |
4297 | if (delayed_copy_len) | |
4298 | error = sodelayed_copy_list(so, msgarray, | |
4299 | uiocnt, &free_list, &delayed_copy_len); | |
4300 | ||
4301 | if (error == 0) { | |
4302 | error = uiomove(mtod(m, caddr_t), (int)len, | |
4303 | auio); | |
4304 | } | |
4305 | socket_lock(so, 0); | |
4306 | if (error) | |
4307 | goto release; | |
4308 | ||
fe8ab488 A |
4309 | m->m_data += len; |
4310 | m->m_len -= len; | |
4311 | so->so_rcv.sb_cc -= len; | |
4312 | flags |= MSG_RCVMORE; | |
4313 | } else { | |
4314 | (void) sbdroprecord(&so->so_rcv); | |
4315 | nextrecord = so->so_rcv.sb_mb; | |
4316 | m = NULL; | |
4317 | flags |= MSG_TRUNC; | |
4318 | } | |
4319 | } | |
4320 | ||
4321 | if (m == NULL) { | |
4322 | so->so_rcv.sb_mb = nextrecord; | |
4323 | /* | |
4324 | * First part is an inline SB_EMPTY_FIXUP(). Second | |
4325 | * part makes sure sb_lastrecord is up-to-date if | |
4326 | * there is still data in the socket buffer. | |
4327 | */ | |
4328 | if (so->so_rcv.sb_mb == NULL) { | |
4329 | so->so_rcv.sb_mbtail = NULL; | |
4330 | so->so_rcv.sb_lastrecord = NULL; | |
4331 | } else if (nextrecord->m_nextpkt == NULL) { | |
4332 | so->so_rcv.sb_lastrecord = nextrecord; | |
4333 | } | |
4334 | SB_MB_CHECK(&so->so_rcv); | |
4335 | } | |
4336 | SBLASTRECORDCHK(&so->so_rcv, "soreceive 4"); | |
4337 | SBLASTMBUFCHK(&so->so_rcv, "soreceive 4"); | |
4338 | ||
4339 | /* | |
4340 | * We can continue to the next packet as long as: | |
4341 | * - We haven't exhausted the uio array | |
4342 | * - There was no error | |
4343 | * - A packet was not truncated | |
4344 | * - We can still receive more data | |
3e170ce0 A |
4345 | */ |
4346 | if (npkts < uiocnt && error == 0 && | |
4347 | (flags & (MSG_RCVMORE | MSG_TRUNC)) == 0 && | |
4348 | (so->so_state & SS_CANTRCVMORE) == 0) { | |
fe8ab488 A |
4349 | sbunlock(&so->so_rcv, TRUE); /* keep socket locked */ |
4350 | sblocked = 0; | |
4351 | ||
3e170ce0 | 4352 | goto next; |
fe8ab488 | 4353 | } |
3e170ce0 A |
4354 | if (flagsp != NULL) |
4355 | *flagsp |= flags; | |
fe8ab488 A |
4356 | |
4357 | release: | |
4358 | /* | |
4359 | * pru_rcvd may cause more data to be received if the socket lock | |
4360 | * is dropped so we set MSG_HAVEMORE now based on what we know. | |
3e170ce0 A |
4361 | * That way the caller won't be surprised if it receives less data |
4362 | * than requested. | |
fe8ab488 A |
4363 | */ |
4364 | if ((so->so_options & SO_WANTMORE) && so->so_rcv.sb_cc > 0) | |
4365 | flags |= MSG_HAVEMORE; | |
4366 | ||
4367 | if (pr->pr_flags & PR_WANTRCVD && so->so_pcb) | |
4368 | (*pr->pr_usrreqs->pru_rcvd)(so, flags); | |
4369 | ||
fe8ab488 A |
4370 | if (sblocked) |
4371 | sbunlock(&so->so_rcv, FALSE); /* will unlock socket */ | |
4372 | else | |
4373 | socket_unlock(so, 1); | |
3e170ce0 A |
4374 | |
4375 | if (delayed_copy_len) | |
4376 | error = sodelayed_copy_list(so, msgarray, uiocnt, | |
4377 | &free_list, &delayed_copy_len); | |
fe8ab488 A |
4378 | out: |
4379 | /* | |
3e170ce0 | 4380 | * Amortize the cost of freeing the mbufs |
fe8ab488 A |
4381 | */ |
4382 | if (free_list != NULL) | |
4383 | m_freem_list(free_list); | |
3e170ce0 A |
4384 | if (free_others != NULL) |
4385 | m_freem_list(free_others); | |
fe8ab488 A |
4386 | |
4387 | KERNEL_DEBUG(DBG_FNC_SORECEIVE_LIST | DBG_FUNC_END, error, | |
4388 | 0, 0, 0, 0); | |
4389 | return (error); | |
4390 | } | |
4391 | ||
4392 | /* | |
4393 | * Returns: 0 Success | |
4394 | * EINVAL | |
4395 | * ENOTCONN | |
4396 | * <pru_shutdown>:EINVAL | |
4397 | * <pru_shutdown>:EADDRNOTAVAIL[TCP] | |
4398 | * <pru_shutdown>:ENOBUFS[TCP] | |
4399 | * <pru_shutdown>:EMSGSIZE[TCP] | |
4400 | * <pru_shutdown>:EHOSTUNREACH[TCP] | |
4401 | * <pru_shutdown>:ENETUNREACH[TCP] | |
4402 | * <pru_shutdown>:ENETDOWN[TCP] | |
4403 | * <pru_shutdown>:ENOMEM[TCP] | |
4404 | * <pru_shutdown>:EACCES[TCP] | |
4405 | * <pru_shutdown>:EMSGSIZE[TCP] | |
4406 | * <pru_shutdown>:ENOBUFS[TCP] | |
4407 | * <pru_shutdown>:???[TCP] [ignorable: mostly IPSEC/firewall/DLIL] | |
4408 | * <pru_shutdown>:??? [other protocol families] | |
4409 | */ | |
4410 | int | |
4411 | soshutdown(struct socket *so, int how) | |
4412 | { | |
4413 | int error; | |
4414 | ||
4415 | KERNEL_DEBUG(DBG_FNC_SOSHUTDOWN | DBG_FUNC_START, how, 0, 0, 0, 0); | |
4416 | ||
4417 | switch (how) { | |
4418 | case SHUT_RD: | |
4419 | case SHUT_WR: | |
4420 | case SHUT_RDWR: | |
4421 | socket_lock(so, 1); | |
4422 | if ((so->so_state & | |
4423 | (SS_ISCONNECTED|SS_ISCONNECTING|SS_ISDISCONNECTING)) == 0) { | |
4424 | error = ENOTCONN; | |
2d21ac55 A |
4425 | } else { |
4426 | error = soshutdownlock(so, how); | |
4427 | } | |
4428 | socket_unlock(so, 1); | |
4429 | break; | |
4430 | default: | |
4431 | error = EINVAL; | |
4432 | break; | |
55e303ae | 4433 | } |
55e303ae | 4434 | |
fe8ab488 A |
4435 | KERNEL_DEBUG(DBG_FNC_SOSHUTDOWN | DBG_FUNC_END, how, error, 0, 0, 0); |
4436 | ||
55e303ae A |
4437 | return (error); |
4438 | } | |
4439 | ||
1c79356b | 4440 | int |
fe8ab488 | 4441 | soshutdownlock_final(struct socket *so, int how) |
1c79356b | 4442 | { |
2d21ac55 A |
4443 | struct protosw *pr = so->so_proto; |
4444 | int error = 0; | |
1c79356b | 4445 | |
91447636 | 4446 | sflt_notify(so, sock_evt_shutdown, &how); |
1c79356b | 4447 | |
9bccf70c | 4448 | if (how != SHUT_WR) { |
2d21ac55 A |
4449 | if ((so->so_state & SS_CANTRCVMORE) != 0) { |
4450 | /* read already shut down */ | |
4451 | error = ENOTCONN; | |
4452 | goto done; | |
4453 | } | |
1c79356b A |
4454 | sorflush(so); |
4455 | postevent(so, 0, EV_RCLOSED); | |
4456 | } | |
9bccf70c | 4457 | if (how != SHUT_RD) { |
2d21ac55 A |
4458 | if ((so->so_state & SS_CANTSENDMORE) != 0) { |
4459 | /* write already shut down */ | |
4460 | error = ENOTCONN; | |
4461 | goto done; | |
4462 | } | |
4463 | error = (*pr->pr_usrreqs->pru_shutdown)(so); | |
4464 | postevent(so, 0, EV_WCLOSED); | |
1c79356b | 4465 | } |
2d21ac55 | 4466 | done: |
fe8ab488 A |
4467 | KERNEL_DEBUG(DBG_FNC_SOSHUTDOWN, how, 1, 0, 0, 0); |
4468 | return (error); | |
4469 | } | |
4470 | ||
4471 | int | |
4472 | soshutdownlock(struct socket *so, int how) | |
4473 | { | |
4474 | int error = 0; | |
4475 | ||
4476 | #if CONTENT_FILTER | |
4477 | /* | |
4478 | * A content filter may delay the actual shutdown until it | |
4479 | * has processed the pending data | |
4480 | */ | |
4481 | if (so->so_flags & SOF_CONTENT_FILTER) { | |
4482 | error = cfil_sock_shutdown(so, &how); | |
4483 | if (error == EJUSTRETURN) { | |
4484 | error = 0; | |
4485 | goto done; | |
4486 | } else if (error != 0) { | |
4487 | goto done; | |
4488 | } | |
4489 | } | |
4490 | #endif /* CONTENT_FILTER */ | |
3e170ce0 | 4491 | |
fe8ab488 A |
4492 | error = soshutdownlock_final(so, how); |
4493 | ||
4494 | done: | |
2d21ac55 | 4495 | return (error); |
1c79356b A |
4496 | } |
4497 | ||
39236c6e A |
4498 | void |
4499 | sowflush(struct socket *so) | |
4500 | { | |
4501 | struct sockbuf *sb = &so->so_snd; | |
39236c6e A |
4502 | |
4503 | /* | |
4504 | * Obtain lock on the socket buffer (SB_LOCK). This is required | |
4505 | * to prevent the socket buffer from being unexpectedly altered | |
4506 | * while it is used by another thread in socket send/receive. | |
4507 | * | |
4508 | * sblock() must not fail here, hence the assertion. | |
4509 | */ | |
4510 | (void) sblock(sb, SBL_WAIT | SBL_NOINTR | SBL_IGNDEFUNCT); | |
4511 | VERIFY(sb->sb_flags & SB_LOCK); | |
4512 | ||
4513 | sb->sb_flags &= ~(SB_SEL|SB_UPCALL); | |
4514 | sb->sb_flags |= SB_DROP; | |
4515 | sb->sb_upcall = NULL; | |
4516 | sb->sb_upcallarg = NULL; | |
4517 | ||
4518 | sbunlock(sb, TRUE); /* keep socket locked */ | |
4519 | ||
4520 | selthreadclear(&sb->sb_sel); | |
4521 | sbrelease(sb); | |
4522 | } | |
4523 | ||
1c79356b | 4524 | void |
2d21ac55 | 4525 | sorflush(struct socket *so) |
1c79356b | 4526 | { |
39236c6e A |
4527 | struct sockbuf *sb = &so->so_rcv; |
4528 | struct protosw *pr = so->so_proto; | |
1c79356b | 4529 | struct sockbuf asb; |
39236c6e | 4530 | #ifdef notyet |
2d21ac55 | 4531 | lck_mtx_t *mutex_held; |
39236c6e A |
4532 | /* |
4533 | * XXX: This code is currently commented out, because we may get here | |
4534 | * as part of sofreelastref(), and at that time, pr_getlock() may no | |
4535 | * longer be able to return us the lock; this will be fixed in future. | |
4536 | */ | |
2d21ac55 | 4537 | if (so->so_proto->pr_getlock != NULL) |
91447636 | 4538 | mutex_held = (*so->so_proto->pr_getlock)(so, 0); |
2d21ac55 | 4539 | else |
91447636 | 4540 | mutex_held = so->so_proto->pr_domain->dom_mtx; |
39236c6e | 4541 | |
5ba3f43e | 4542 | LCK_MTX_ASSERT(mutex_held, LCK_MTX_ASSERT_OWNED); |
39236c6e | 4543 | #endif /* notyet */ |
91447636 A |
4544 | |
4545 | sflt_notify(so, sock_evt_flush_read, NULL); | |
1c79356b | 4546 | |
1c79356b | 4547 | socantrcvmore(so); |
39236c6e A |
4548 | |
4549 | /* | |
4550 | * Obtain lock on the socket buffer (SB_LOCK). This is required | |
4551 | * to prevent the socket buffer from being unexpectedly altered | |
4552 | * while it is used by another thread in socket send/receive. | |
4553 | * | |
4554 | * sblock() must not fail here, hence the assertion. | |
4555 | */ | |
4556 | (void) sblock(sb, SBL_WAIT | SBL_NOINTR | SBL_IGNDEFUNCT); | |
4557 | VERIFY(sb->sb_flags & SB_LOCK); | |
4558 | ||
4559 | /* | |
4560 | * Copy only the relevant fields from "sb" to "asb" which we | |
4561 | * need for sbrelease() to function. In particular, skip | |
4562 | * sb_sel as it contains the wait queue linkage, which would | |
4563 | * wreak havoc if we were to issue selthreadclear() on "asb". | |
4564 | * Make sure to not carry over SB_LOCK in "asb", as we need | |
4565 | * to acquire it later as part of sbrelease(). | |
4566 | */ | |
4567 | bzero(&asb, sizeof (asb)); | |
4568 | asb.sb_cc = sb->sb_cc; | |
4569 | asb.sb_hiwat = sb->sb_hiwat; | |
4570 | asb.sb_mbcnt = sb->sb_mbcnt; | |
4571 | asb.sb_mbmax = sb->sb_mbmax; | |
4572 | asb.sb_ctl = sb->sb_ctl; | |
4573 | asb.sb_lowat = sb->sb_lowat; | |
4574 | asb.sb_mb = sb->sb_mb; | |
4575 | asb.sb_mbtail = sb->sb_mbtail; | |
4576 | asb.sb_lastrecord = sb->sb_lastrecord; | |
4577 | asb.sb_so = sb->sb_so; | |
4578 | asb.sb_flags = sb->sb_flags; | |
4579 | asb.sb_flags &= ~(SB_LOCK|SB_SEL|SB_KNOTE|SB_UPCALL); | |
4580 | asb.sb_flags |= SB_DROP; | |
4581 | ||
4582 | /* | |
4583 | * Ideally we'd bzero() these and preserve the ones we need; | |
4584 | * but to do that we'd need to shuffle things around in the | |
4585 | * sockbuf, and we can't do it now because there are KEXTS | |
4586 | * that are directly referring to the socket structure. | |
4587 | * | |
4588 | * Setting SB_DROP acts as a barrier to prevent further appends. | |
4589 | * Clearing SB_SEL is done for selthreadclear() below. | |
4590 | */ | |
4591 | sb->sb_cc = 0; | |
4592 | sb->sb_hiwat = 0; | |
4593 | sb->sb_mbcnt = 0; | |
4594 | sb->sb_mbmax = 0; | |
4595 | sb->sb_ctl = 0; | |
4596 | sb->sb_lowat = 0; | |
4597 | sb->sb_mb = NULL; | |
4598 | sb->sb_mbtail = NULL; | |
4599 | sb->sb_lastrecord = NULL; | |
4600 | sb->sb_timeo.tv_sec = 0; | |
4601 | sb->sb_timeo.tv_usec = 0; | |
4602 | sb->sb_upcall = NULL; | |
4603 | sb->sb_upcallarg = NULL; | |
4604 | sb->sb_flags &= ~(SB_SEL|SB_UPCALL); | |
4605 | sb->sb_flags |= SB_DROP; | |
4606 | ||
4607 | sbunlock(sb, TRUE); /* keep socket locked */ | |
4608 | ||
4609 | /* | |
4610 | * Note that selthreadclear() is called on the original "sb" and | |
4611 | * not the local "asb" because of the way wait queue linkage is | |
4612 | * implemented. Given that selwakeup() may be triggered, SB_SEL | |
4613 | * should no longer be set (cleared above.) | |
4614 | */ | |
0b4e3aa0 | 4615 | selthreadclear(&sb->sb_sel); |
39236c6e A |
4616 | |
4617 | if ((pr->pr_flags & PR_RIGHTS) && pr->pr_domain->dom_dispose) | |
1c79356b | 4618 | (*pr->pr_domain->dom_dispose)(asb.sb_mb); |
39236c6e | 4619 | |
1c79356b A |
4620 | sbrelease(&asb); |
4621 | } | |
4622 | ||
4623 | /* | |
4624 | * Perhaps this routine, and sooptcopyout(), below, ought to come in | |
4625 | * an additional variant to handle the case where the option value needs | |
4626 | * to be some kind of integer, but not a specific size. | |
4627 | * In addition to their use here, these functions are also called by the | |
4628 | * protocol-level pr_ctloutput() routines. | |
2d21ac55 A |
4629 | * |
4630 | * Returns: 0 Success | |
4631 | * EINVAL | |
4632 | * copyin:EFAULT | |
1c79356b A |
4633 | */ |
4634 | int | |
2d21ac55 | 4635 | sooptcopyin(struct sockopt *sopt, void *buf, size_t len, size_t minlen) |
1c79356b A |
4636 | { |
4637 | size_t valsize; | |
4638 | ||
4639 | /* | |
4640 | * If the user gives us more than we wanted, we ignore it, | |
4641 | * but if we don't get the minimum length the caller | |
4642 | * wants, we return EINVAL. On success, sopt->sopt_valsize | |
4643 | * is set to however much we actually retrieved. | |
4644 | */ | |
4645 | if ((valsize = sopt->sopt_valsize) < minlen) | |
2d21ac55 | 4646 | return (EINVAL); |
1c79356b A |
4647 | if (valsize > len) |
4648 | sopt->sopt_valsize = valsize = len; | |
4649 | ||
b0d623f7 | 4650 | if (sopt->sopt_p != kernproc) |
1c79356b A |
4651 | return (copyin(sopt->sopt_val, buf, valsize)); |
4652 | ||
91447636 | 4653 | bcopy(CAST_DOWN(caddr_t, sopt->sopt_val), buf, valsize); |
2d21ac55 A |
4654 | return (0); |
4655 | } | |
4656 | ||
4657 | /* | |
4658 | * sooptcopyin_timeval | |
4659 | * Copy in a timeval value into tv_p, and take into account whether the | |
4660 | * the calling process is 64-bit or 32-bit. Moved the sanity checking | |
4661 | * code here so that we can verify the 64-bit tv_sec value before we lose | |
4662 | * the top 32-bits assigning tv64.tv_sec to tv_p->tv_sec. | |
4663 | */ | |
4664 | static int | |
39236c6e | 4665 | sooptcopyin_timeval(struct sockopt *sopt, struct timeval *tv_p) |
2d21ac55 A |
4666 | { |
4667 | int error; | |
b0d623f7 | 4668 | |
2d21ac55 | 4669 | if (proc_is64bit(sopt->sopt_p)) { |
b0d623f7 | 4670 | struct user64_timeval tv64; |
2d21ac55 | 4671 | |
39236c6e | 4672 | if (sopt->sopt_valsize < sizeof (tv64)) |
2d21ac55 | 4673 | return (EINVAL); |
39236c6e A |
4674 | |
4675 | sopt->sopt_valsize = sizeof (tv64); | |
b0d623f7 | 4676 | if (sopt->sopt_p != kernproc) { |
39236c6e | 4677 | error = copyin(sopt->sopt_val, &tv64, sizeof (tv64)); |
b0d623f7 A |
4678 | if (error != 0) |
4679 | return (error); | |
4680 | } else { | |
4681 | bcopy(CAST_DOWN(caddr_t, sopt->sopt_val), &tv64, | |
39236c6e | 4682 | sizeof (tv64)); |
2d21ac55 | 4683 | } |
39236c6e A |
4684 | if (tv64.tv_sec < 0 || tv64.tv_sec > LONG_MAX || |
4685 | tv64.tv_usec < 0 || tv64.tv_usec >= 1000000) | |
2d21ac55 | 4686 | return (EDOM); |
39236c6e | 4687 | |
2d21ac55 A |
4688 | tv_p->tv_sec = tv64.tv_sec; |
4689 | tv_p->tv_usec = tv64.tv_usec; | |
4690 | } else { | |
b0d623f7 A |
4691 | struct user32_timeval tv32; |
4692 | ||
39236c6e | 4693 | if (sopt->sopt_valsize < sizeof (tv32)) |
2d21ac55 | 4694 | return (EINVAL); |
39236c6e A |
4695 | |
4696 | sopt->sopt_valsize = sizeof (tv32); | |
b0d623f7 | 4697 | if (sopt->sopt_p != kernproc) { |
39236c6e | 4698 | error = copyin(sopt->sopt_val, &tv32, sizeof (tv32)); |
2d21ac55 A |
4699 | if (error != 0) { |
4700 | return (error); | |
4701 | } | |
4702 | } else { | |
b0d623f7 | 4703 | bcopy(CAST_DOWN(caddr_t, sopt->sopt_val), &tv32, |
39236c6e | 4704 | sizeof (tv32)); |
2d21ac55 | 4705 | } |
39236c6e A |
4706 | #ifndef __LP64__ |
4707 | /* | |
4708 | * K64todo "comparison is always false due to | |
4709 | * limited range of data type" | |
4710 | */ | |
4711 | if (tv32.tv_sec < 0 || tv32.tv_sec > LONG_MAX || | |
4712 | tv32.tv_usec < 0 || tv32.tv_usec >= 1000000) | |
2d21ac55 | 4713 | return (EDOM); |
b0d623f7 A |
4714 | #endif |
4715 | tv_p->tv_sec = tv32.tv_sec; | |
4716 | tv_p->tv_usec = tv32.tv_usec; | |
2d21ac55 A |
4717 | } |
4718 | return (0); | |
1c79356b A |
4719 | } |
4720 | ||
5ba3f43e A |
4721 | int |
4722 | soopt_cred_check(struct socket *so, int priv, boolean_t allow_root) | |
39037602 A |
4723 | { |
4724 | kauth_cred_t cred = NULL; | |
4725 | proc_t ep = PROC_NULL; | |
5ba3f43e A |
4726 | uid_t uid; |
4727 | int error = 0; | |
39037602 A |
4728 | |
4729 | if (so->so_flags & SOF_DELEGATED) { | |
4730 | ep = proc_find(so->e_pid); | |
4731 | if (ep) | |
4732 | cred = kauth_cred_proc_ref(ep); | |
4733 | } | |
5ba3f43e A |
4734 | |
4735 | uid = kauth_cred_getuid(cred ? cred : so->so_cred); | |
4736 | ||
4737 | /* uid is 0 for root */ | |
4738 | if (uid != 0 || !allow_root) | |
4739 | error = priv_check_cred(cred ? cred : so->so_cred, priv, 0); | |
39037602 A |
4740 | if (cred) |
4741 | kauth_cred_unref(&cred); | |
4742 | if (ep != PROC_NULL) | |
4743 | proc_rele(ep); | |
4744 | ||
4745 | return (error); | |
4746 | } | |
4747 | ||
2d21ac55 A |
4748 | /* |
4749 | * Returns: 0 Success | |
4750 | * EINVAL | |
4751 | * ENOPROTOOPT | |
4752 | * ENOBUFS | |
4753 | * EDOM | |
4754 | * sooptcopyin:EINVAL | |
4755 | * sooptcopyin:EFAULT | |
4756 | * sooptcopyin_timeval:EINVAL | |
4757 | * sooptcopyin_timeval:EFAULT | |
4758 | * sooptcopyin_timeval:EDOM | |
4759 | * <pr_ctloutput>:EOPNOTSUPP[AF_UNIX] | |
4760 | * <pr_ctloutput>:???w | |
4761 | * sflt_attach_private:??? [whatever a filter author chooses] | |
4762 | * <sf_setoption>:??? [whatever a filter author chooses] | |
4763 | * | |
4764 | * Notes: Other <pru_listen> returns depend on the protocol family; all | |
4765 | * <sf_listen> returns depend on what the filter author causes | |
4766 | * their filter to return. | |
4767 | */ | |
1c79356b | 4768 | int |
39236c6e | 4769 | sosetoptlock(struct socket *so, struct sockopt *sopt, int dolock) |
1c79356b A |
4770 | { |
4771 | int error, optval; | |
4772 | struct linger l; | |
4773 | struct timeval tv; | |
2d21ac55 A |
4774 | #if CONFIG_MACF_SOCKET |
4775 | struct mac extmac; | |
4776 | #endif /* MAC_SOCKET */ | |
91447636 | 4777 | |
39236c6e A |
4778 | if (sopt->sopt_dir != SOPT_SET) |
4779 | sopt->sopt_dir = SOPT_SET; | |
4780 | ||
4781 | if (dolock) | |
4782 | socket_lock(so, 1); | |
4783 | ||
4784 | if ((so->so_state & (SS_CANTRCVMORE | SS_CANTSENDMORE)) == | |
4785 | (SS_CANTRCVMORE | SS_CANTSENDMORE) && | |
b0d623f7 | 4786 | (so->so_flags & SOF_NPX_SETOPTSHUT) == 0) { |
2d21ac55 A |
4787 | /* the socket has been shutdown, no more sockopt's */ |
4788 | error = EINVAL; | |
39236c6e | 4789 | goto out; |
9bccf70c A |
4790 | } |
4791 | ||
6d2010ae | 4792 | error = sflt_setsockopt(so, sopt); |
39236c6e | 4793 | if (error != 0) { |
6d2010ae A |
4794 | if (error == EJUSTRETURN) |
4795 | error = 0; | |
39236c6e | 4796 | goto out; |
1c79356b A |
4797 | } |
4798 | ||
1c79356b | 4799 | if (sopt->sopt_level != SOL_SOCKET) { |
39236c6e A |
4800 | if (so->so_proto != NULL && |
4801 | so->so_proto->pr_ctloutput != NULL) { | |
2d21ac55 | 4802 | error = (*so->so_proto->pr_ctloutput)(so, sopt); |
39236c6e | 4803 | goto out; |
91447636 | 4804 | } |
1c79356b A |
4805 | error = ENOPROTOOPT; |
4806 | } else { | |
39236c6e A |
4807 | /* |
4808 | * Allow socket-level (SOL_SOCKET) options to be filtered by | |
4809 | * the protocol layer, if needed. A zero value returned from | |
4810 | * the handler means use default socket-level processing as | |
4811 | * done by the rest of this routine. Otherwise, any other | |
4812 | * return value indicates that the option is unsupported. | |
4813 | */ | |
4814 | if (so->so_proto != NULL && (error = so->so_proto->pr_usrreqs-> | |
4815 | pru_socheckopt(so, sopt)) != 0) | |
4816 | goto out; | |
4817 | ||
4818 | error = 0; | |
1c79356b A |
4819 | switch (sopt->sopt_name) { |
4820 | case SO_LINGER: | |
91447636 | 4821 | case SO_LINGER_SEC: |
2d21ac55 | 4822 | error = sooptcopyin(sopt, &l, sizeof (l), sizeof (l)); |
39236c6e A |
4823 | if (error != 0) |
4824 | goto out; | |
1c79356b | 4825 | |
2d21ac55 A |
4826 | so->so_linger = (sopt->sopt_name == SO_LINGER) ? |
4827 | l.l_linger : l.l_linger * hz; | |
39236c6e | 4828 | if (l.l_onoff != 0) |
1c79356b A |
4829 | so->so_options |= SO_LINGER; |
4830 | else | |
4831 | so->so_options &= ~SO_LINGER; | |
4832 | break; | |
4833 | ||
4834 | case SO_DEBUG: | |
4835 | case SO_KEEPALIVE: | |
4836 | case SO_DONTROUTE: | |
4837 | case SO_USELOOPBACK: | |
4838 | case SO_BROADCAST: | |
4839 | case SO_REUSEADDR: | |
4840 | case SO_REUSEPORT: | |
4841 | case SO_OOBINLINE: | |
4842 | case SO_TIMESTAMP: | |
6d2010ae | 4843 | case SO_TIMESTAMP_MONOTONIC: |
d9a64523 | 4844 | case SO_TIMESTAMP_CONTINUOUS: |
1c79356b A |
4845 | case SO_DONTTRUNC: |
4846 | case SO_WANTMORE: | |
9bccf70c | 4847 | case SO_WANTOOBFLAG: |
fe8ab488 | 4848 | case SO_NOWAKEFROMSLEEP: |
39037602 | 4849 | case SO_NOAPNFALLBK: |
2d21ac55 A |
4850 | error = sooptcopyin(sopt, &optval, sizeof (optval), |
4851 | sizeof (optval)); | |
39236c6e A |
4852 | if (error != 0) |
4853 | goto out; | |
1c79356b A |
4854 | if (optval) |
4855 | so->so_options |= sopt->sopt_name; | |
4856 | else | |
4857 | so->so_options &= ~sopt->sopt_name; | |
4858 | break; | |
4859 | ||
4860 | case SO_SNDBUF: | |
4861 | case SO_RCVBUF: | |
4862 | case SO_SNDLOWAT: | |
4863 | case SO_RCVLOWAT: | |
2d21ac55 A |
4864 | error = sooptcopyin(sopt, &optval, sizeof (optval), |
4865 | sizeof (optval)); | |
39236c6e A |
4866 | if (error != 0) |
4867 | goto out; | |
1c79356b A |
4868 | |
4869 | /* | |
4870 | * Values < 1 make no sense for any of these | |
4871 | * options, so disallow them. | |
4872 | */ | |
4873 | if (optval < 1) { | |
4874 | error = EINVAL; | |
39236c6e | 4875 | goto out; |
1c79356b A |
4876 | } |
4877 | ||
4878 | switch (sopt->sopt_name) { | |
4879 | case SO_SNDBUF: | |
39236c6e A |
4880 | case SO_RCVBUF: { |
4881 | struct sockbuf *sb = | |
4882 | (sopt->sopt_name == SO_SNDBUF) ? | |
4883 | &so->so_snd : &so->so_rcv; | |
4884 | if (sbreserve(sb, (u_int32_t)optval) == 0) { | |
1c79356b | 4885 | error = ENOBUFS; |
39236c6e | 4886 | goto out; |
1c79356b | 4887 | } |
316670eb A |
4888 | sb->sb_flags |= SB_USRSIZE; |
4889 | sb->sb_flags &= ~SB_AUTOSIZE; | |
4890 | sb->sb_idealsize = (u_int32_t)optval; | |
1c79356b | 4891 | break; |
316670eb | 4892 | } |
1c79356b A |
4893 | /* |
4894 | * Make sure the low-water is never greater than | |
4895 | * the high-water. | |
4896 | */ | |
fe8ab488 A |
4897 | case SO_SNDLOWAT: { |
4898 | int space = sbspace(&so->so_snd); | |
4899 | u_int32_t hiwat = so->so_snd.sb_hiwat; | |
4900 | ||
4901 | if (so->so_snd.sb_flags & SB_UNIX) { | |
4902 | struct unpcb *unp = | |
4903 | (struct unpcb *)(so->so_pcb); | |
3e170ce0 A |
4904 | if (unp != NULL && |
4905 | unp->unp_conn != NULL) { | |
fe8ab488 A |
4906 | hiwat += unp->unp_conn->unp_cc; |
4907 | } | |
4908 | } | |
4909 | ||
1c79356b | 4910 | so->so_snd.sb_lowat = |
fe8ab488 A |
4911 | (optval > hiwat) ? |
4912 | hiwat : optval; | |
4913 | ||
4914 | if (space >= so->so_snd.sb_lowat) { | |
4915 | sowwakeup(so); | |
4916 | } | |
1c79356b | 4917 | break; |
3e170ce0 | 4918 | } |
fe8ab488 A |
4919 | case SO_RCVLOWAT: { |
4920 | int64_t data_len; | |
1c79356b A |
4921 | so->so_rcv.sb_lowat = |
4922 | (optval > so->so_rcv.sb_hiwat) ? | |
4923 | so->so_rcv.sb_hiwat : optval; | |
3e170ce0 | 4924 | data_len = so->so_rcv.sb_cc |
fe8ab488 A |
4925 | - so->so_rcv.sb_ctl; |
4926 | if (data_len >= so->so_rcv.sb_lowat) | |
4927 | sorwakeup(so); | |
1c79356b A |
4928 | break; |
4929 | } | |
fe8ab488 | 4930 | } |
1c79356b A |
4931 | break; |
4932 | ||
4933 | case SO_SNDTIMEO: | |
4934 | case SO_RCVTIMEO: | |
2d21ac55 | 4935 | error = sooptcopyin_timeval(sopt, &tv); |
39236c6e A |
4936 | if (error != 0) |
4937 | goto out; | |
1c79356b | 4938 | |
1c79356b A |
4939 | switch (sopt->sopt_name) { |
4940 | case SO_SNDTIMEO: | |
91447636 | 4941 | so->so_snd.sb_timeo = tv; |
1c79356b A |
4942 | break; |
4943 | case SO_RCVTIMEO: | |
91447636 | 4944 | so->so_rcv.sb_timeo = tv; |
1c79356b A |
4945 | break; |
4946 | } | |
4947 | break; | |
4948 | ||
39236c6e | 4949 | case SO_NKE: { |
9bccf70c | 4950 | struct so_nke nke; |
1c79356b | 4951 | |
2d21ac55 A |
4952 | error = sooptcopyin(sopt, &nke, sizeof (nke), |
4953 | sizeof (nke)); | |
39236c6e A |
4954 | if (error != 0) |
4955 | goto out; | |
1c79356b | 4956 | |
6d2010ae | 4957 | error = sflt_attach_internal(so, nke.nke_handle); |
1c79356b A |
4958 | break; |
4959 | } | |
4960 | ||
9bccf70c | 4961 | case SO_NOSIGPIPE: |
2d21ac55 A |
4962 | error = sooptcopyin(sopt, &optval, sizeof (optval), |
4963 | sizeof (optval)); | |
39236c6e A |
4964 | if (error != 0) |
4965 | goto out; | |
4966 | if (optval != 0) | |
2d21ac55 A |
4967 | so->so_flags |= SOF_NOSIGPIPE; |
4968 | else | |
4969 | so->so_flags &= ~SOF_NOSIGPIPE; | |
9bccf70c A |
4970 | break; |
4971 | ||
55e303ae | 4972 | case SO_NOADDRERR: |
2d21ac55 A |
4973 | error = sooptcopyin(sopt, &optval, sizeof (optval), |
4974 | sizeof (optval)); | |
39236c6e A |
4975 | if (error != 0) |
4976 | goto out; | |
4977 | if (optval != 0) | |
2d21ac55 A |
4978 | so->so_flags |= SOF_NOADDRAVAIL; |
4979 | else | |
4980 | so->so_flags &= ~SOF_NOADDRAVAIL; | |
2d21ac55 A |
4981 | break; |
4982 | ||
4983 | case SO_REUSESHAREUID: | |
4984 | error = sooptcopyin(sopt, &optval, sizeof (optval), | |
4985 | sizeof (optval)); | |
39236c6e A |
4986 | if (error != 0) |
4987 | goto out; | |
4988 | if (optval != 0) | |
2d21ac55 A |
4989 | so->so_flags |= SOF_REUSESHAREUID; |
4990 | else | |
4991 | so->so_flags &= ~SOF_REUSESHAREUID; | |
4992 | break; | |
39236c6e | 4993 | |
2d21ac55 A |
4994 | case SO_NOTIFYCONFLICT: |
4995 | if (kauth_cred_issuser(kauth_cred_get()) == 0) { | |
4996 | error = EPERM; | |
39236c6e | 4997 | goto out; |
2d21ac55 A |
4998 | } |
4999 | error = sooptcopyin(sopt, &optval, sizeof (optval), | |
5000 | sizeof (optval)); | |
39236c6e A |
5001 | if (error != 0) |
5002 | goto out; | |
5003 | if (optval != 0) | |
2d21ac55 A |
5004 | so->so_flags |= SOF_NOTIFYCONFLICT; |
5005 | else | |
5006 | so->so_flags &= ~SOF_NOTIFYCONFLICT; | |
5007 | break; | |
39236c6e | 5008 | |
2d21ac55 | 5009 | case SO_RESTRICTIONS: |
2d21ac55 A |
5010 | error = sooptcopyin(sopt, &optval, sizeof (optval), |
5011 | sizeof (optval)); | |
39236c6e A |
5012 | if (error != 0) |
5013 | goto out; | |
5014 | ||
5015 | error = so_set_restrictions(so, optval); | |
2d21ac55 A |
5016 | break; |
5017 | ||
fe8ab488 A |
5018 | case SO_AWDL_UNRESTRICTED: |
5019 | if (SOCK_DOM(so) != PF_INET && | |
5020 | SOCK_DOM(so) != PF_INET6) { | |
5021 | error = EOPNOTSUPP; | |
5022 | goto out; | |
5023 | } | |
5024 | error = sooptcopyin(sopt, &optval, sizeof(optval), | |
5025 | sizeof(optval)); | |
5026 | if (error != 0) | |
5027 | goto out; | |
5028 | if (optval != 0) { | |
39037602 | 5029 | error = soopt_cred_check(so, |
5ba3f43e | 5030 | PRIV_NET_RESTRICTED_AWDL, false); |
fe8ab488 A |
5031 | if (error == 0) |
5032 | inp_set_awdl_unrestricted( | |
5033 | sotoinpcb(so)); | |
fe8ab488 A |
5034 | } else |
5035 | inp_clear_awdl_unrestricted(sotoinpcb(so)); | |
5036 | break; | |
39037602 A |
5037 | case SO_INTCOPROC_ALLOW: |
5038 | if (SOCK_DOM(so) != PF_INET6) { | |
5039 | error = EOPNOTSUPP; | |
5040 | goto out; | |
5041 | } | |
5042 | error = sooptcopyin(sopt, &optval, sizeof(optval), | |
5043 | sizeof(optval)); | |
5044 | if (error != 0) | |
5045 | goto out; | |
743345f9 A |
5046 | if (optval != 0 && |
5047 | inp_get_intcoproc_allowed(sotoinpcb(so)) == FALSE) { | |
39037602 | 5048 | error = soopt_cred_check(so, |
5ba3f43e | 5049 | PRIV_NET_RESTRICTED_INTCOPROC, false); |
39037602 A |
5050 | if (error == 0) |
5051 | inp_set_intcoproc_allowed( | |
5052 | sotoinpcb(so)); | |
743345f9 | 5053 | } else if (optval == 0) |
39037602 A |
5054 | inp_clear_intcoproc_allowed(sotoinpcb(so)); |
5055 | break; | |
fe8ab488 | 5056 | |
2d21ac55 A |
5057 | case SO_LABEL: |
5058 | #if CONFIG_MACF_SOCKET | |
5059 | if ((error = sooptcopyin(sopt, &extmac, sizeof (extmac), | |
5060 | sizeof (extmac))) != 0) | |
39236c6e | 5061 | goto out; |
2d21ac55 A |
5062 | |
5063 | error = mac_setsockopt_label(proc_ucred(sopt->sopt_p), | |
5064 | so, &extmac); | |
5065 | #else | |
5066 | error = EOPNOTSUPP; | |
5067 | #endif /* MAC_SOCKET */ | |
55e303ae A |
5068 | break; |
5069 | ||
4a3eedf9 A |
5070 | case SO_UPCALLCLOSEWAIT: |
5071 | error = sooptcopyin(sopt, &optval, sizeof (optval), | |
5072 | sizeof (optval)); | |
39236c6e A |
5073 | if (error != 0) |
5074 | goto out; | |
5075 | if (optval != 0) | |
4a3eedf9 A |
5076 | so->so_flags |= SOF_UPCALLCLOSEWAIT; |
5077 | else | |
5078 | so->so_flags &= ~SOF_UPCALLCLOSEWAIT; | |
5079 | break; | |
4a3eedf9 | 5080 | |
b0d623f7 A |
5081 | case SO_RANDOMPORT: |
5082 | error = sooptcopyin(sopt, &optval, sizeof (optval), | |
5083 | sizeof (optval)); | |
39236c6e A |
5084 | if (error != 0) |
5085 | goto out; | |
5086 | if (optval != 0) | |
b0d623f7 A |
5087 | so->so_flags |= SOF_BINDRANDOMPORT; |
5088 | else | |
5089 | so->so_flags &= ~SOF_BINDRANDOMPORT; | |
5090 | break; | |
5091 | ||
5092 | case SO_NP_EXTENSIONS: { | |
5093 | struct so_np_extensions sonpx; | |
5094 | ||
39236c6e A |
5095 | error = sooptcopyin(sopt, &sonpx, sizeof (sonpx), |
5096 | sizeof (sonpx)); | |
5097 | if (error != 0) | |
5098 | goto out; | |
b0d623f7 A |
5099 | if (sonpx.npx_mask & ~SONPX_MASK_VALID) { |
5100 | error = EINVAL; | |
39236c6e | 5101 | goto out; |
b0d623f7 A |
5102 | } |
5103 | /* | |
5104 | * Only one bit defined for now | |
5105 | */ | |
5106 | if ((sonpx.npx_mask & SONPX_SETOPTSHUT)) { | |
5107 | if ((sonpx.npx_flags & SONPX_SETOPTSHUT)) | |
5108 | so->so_flags |= SOF_NPX_SETOPTSHUT; | |
5109 | else | |
5110 | so->so_flags &= ~SOF_NPX_SETOPTSHUT; | |
5111 | } | |
5112 | break; | |
5113 | } | |
5114 | ||
d41d1dae A |
5115 | case SO_TRAFFIC_CLASS: { |
5116 | error = sooptcopyin(sopt, &optval, sizeof (optval), | |
39236c6e A |
5117 | sizeof (optval)); |
5118 | if (error != 0) | |
5119 | goto out; | |
39037602 A |
5120 | if (optval >= SO_TC_NET_SERVICE_OFFSET) { |
5121 | int netsvc = optval - SO_TC_NET_SERVICE_OFFSET; | |
5122 | error = so_set_net_service_type(so, netsvc); | |
5123 | goto out; | |
5124 | } | |
6d2010ae | 5125 | error = so_set_traffic_class(so, optval); |
39236c6e A |
5126 | if (error != 0) |
5127 | goto out; | |
39037602 A |
5128 | so->so_flags1 &= ~SOF1_TC_NET_SERV_TYPE; |
5129 | so->so_netsvctype = _NET_SERVICE_TYPE_UNSPEC; | |
6d2010ae | 5130 | break; |
d41d1dae | 5131 | } |
6d2010ae A |
5132 | |
5133 | case SO_RECV_TRAFFIC_CLASS: { | |
5134 | error = sooptcopyin(sopt, &optval, sizeof (optval), | |
39236c6e A |
5135 | sizeof (optval)); |
5136 | if (error != 0) | |
5137 | goto out; | |
6d2010ae A |
5138 | if (optval == 0) |
5139 | so->so_flags &= ~SOF_RECV_TRAFFIC_CLASS; | |
5140 | else | |
5141 | so->so_flags |= SOF_RECV_TRAFFIC_CLASS; | |
5142 | break; | |
5143 | } | |
316670eb | 5144 | |
39037602 | 5145 | #if (DEVELOPMENT || DEBUG) |
6d2010ae A |
5146 | case SO_TRAFFIC_CLASS_DBG: { |
5147 | struct so_tcdbg so_tcdbg; | |
316670eb A |
5148 | |
5149 | error = sooptcopyin(sopt, &so_tcdbg, | |
5150 | sizeof (struct so_tcdbg), sizeof (struct so_tcdbg)); | |
39236c6e A |
5151 | if (error != 0) |
5152 | goto out; | |
6d2010ae | 5153 | error = so_set_tcdbg(so, &so_tcdbg); |
39236c6e A |
5154 | if (error != 0) |
5155 | goto out; | |
6d2010ae A |
5156 | break; |
5157 | } | |
39037602 | 5158 | #endif /* (DEVELOPMENT || DEBUG) */ |
316670eb A |
5159 | |
5160 | case SO_PRIVILEGED_TRAFFIC_CLASS: | |
5161 | error = priv_check_cred(kauth_cred_get(), | |
5162 | PRIV_NET_PRIVILEGED_TRAFFIC_CLASS, 0); | |
39236c6e A |
5163 | if (error != 0) |
5164 | goto out; | |
316670eb | 5165 | error = sooptcopyin(sopt, &optval, sizeof (optval), |
39236c6e A |
5166 | sizeof (optval)); |
5167 | if (error != 0) | |
5168 | goto out; | |
316670eb A |
5169 | if (optval == 0) |
5170 | so->so_flags &= ~SOF_PRIVILEGED_TRAFFIC_CLASS; | |
5171 | else | |
5172 | so->so_flags |= SOF_PRIVILEGED_TRAFFIC_CLASS; | |
5173 | break; | |
5174 | ||
a39ff7e2 A |
5175 | #if (DEVELOPMENT || DEBUG) |
5176 | case SO_DEFUNCTIT: | |
5177 | error = sosetdefunct(current_proc(), so, 0, FALSE); | |
5178 | if (error == 0) | |
5179 | error = sodefunct(current_proc(), so, 0); | |
5180 | ||
5181 | break; | |
5182 | #endif /* (DEVELOPMENT || DEBUG) */ | |
5183 | ||
6d2010ae A |
5184 | case SO_DEFUNCTOK: |
5185 | error = sooptcopyin(sopt, &optval, sizeof (optval), | |
5186 | sizeof (optval)); | |
5187 | if (error != 0 || (so->so_flags & SOF_DEFUNCT)) { | |
5188 | if (error == 0) | |
5189 | error = EBADF; | |
39236c6e | 5190 | goto out; |
6d2010ae A |
5191 | } |
5192 | /* | |
5193 | * Any process can set SO_DEFUNCTOK (clear | |
5194 | * SOF_NODEFUNCT), but only root can clear | |
5195 | * SO_DEFUNCTOK (set SOF_NODEFUNCT). | |
5196 | */ | |
5197 | if (optval == 0 && | |
5198 | kauth_cred_issuser(kauth_cred_get()) == 0) { | |
5199 | error = EPERM; | |
39236c6e | 5200 | goto out; |
6d2010ae A |
5201 | } |
5202 | if (optval) | |
5203 | so->so_flags &= ~SOF_NODEFUNCT; | |
5204 | else | |
5205 | so->so_flags |= SOF_NODEFUNCT; | |
5206 | ||
39236c6e A |
5207 | if (SOCK_DOM(so) == PF_INET || |
5208 | SOCK_DOM(so) == PF_INET6) { | |
5209 | char s[MAX_IPv6_STR_LEN]; | |
5210 | char d[MAX_IPv6_STR_LEN]; | |
5211 | struct inpcb *inp = sotoinpcb(so); | |
5212 | ||
39037602 A |
5213 | SODEFUNCTLOG("%s[%d, %s]: so 0x%llx " |
5214 | "[%s %s:%d -> %s:%d] is now marked " | |
5215 | "as %seligible for " | |
39236c6e | 5216 | "defunct\n", __func__, proc_selfpid(), |
39037602 | 5217 | proc_best_name(current_proc()), |
3e170ce0 | 5218 | (uint64_t)DEBUG_KERNEL_ADDRPERM(so), |
39236c6e A |
5219 | (SOCK_TYPE(so) == SOCK_STREAM) ? |
5220 | "TCP" : "UDP", inet_ntop(SOCK_DOM(so), | |
5221 | ((SOCK_DOM(so) == PF_INET) ? | |
5222 | (void *)&inp->inp_laddr.s_addr : | |
5223 | (void *)&inp->in6p_laddr), s, sizeof (s)), | |
5224 | ntohs(inp->in6p_lport), | |
5225 | inet_ntop(SOCK_DOM(so), | |
5226 | (SOCK_DOM(so) == PF_INET) ? | |
5227 | (void *)&inp->inp_faddr.s_addr : | |
5228 | (void *)&inp->in6p_faddr, d, sizeof (d)), | |
5229 | ntohs(inp->in6p_fport), | |
5230 | (so->so_flags & SOF_NODEFUNCT) ? | |
39037602 | 5231 | "not " : ""); |
39236c6e | 5232 | } else { |
39037602 A |
5233 | SODEFUNCTLOG("%s[%d, %s]: so 0x%llx [%d,%d] " |
5234 | "is now marked as %seligible for " | |
5235 | "defunct\n", | |
39236c6e | 5236 | __func__, proc_selfpid(), |
39037602 | 5237 | proc_best_name(current_proc()), |
3e170ce0 | 5238 | (uint64_t)DEBUG_KERNEL_ADDRPERM(so), |
39236c6e A |
5239 | SOCK_DOM(so), SOCK_TYPE(so), |
5240 | (so->so_flags & SOF_NODEFUNCT) ? | |
39037602 | 5241 | "not " : ""); |
39236c6e | 5242 | } |
6d2010ae A |
5243 | break; |
5244 | ||
5245 | case SO_ISDEFUNCT: | |
5246 | /* This option is not settable */ | |
5247 | error = EINVAL; | |
5248 | break; | |
d41d1dae | 5249 | |
316670eb A |
5250 | case SO_OPPORTUNISTIC: |
5251 | error = sooptcopyin(sopt, &optval, sizeof (optval), | |
5252 | sizeof (optval)); | |
5253 | if (error == 0) | |
5254 | error = so_set_opportunistic(so, optval); | |
5255 | break; | |
5256 | ||
5257 | case SO_FLUSH: | |
5258 | /* This option is handled by lower layer(s) */ | |
5259 | error = 0; | |
5260 | break; | |
5261 | ||
5262 | case SO_RECV_ANYIF: | |
5263 | error = sooptcopyin(sopt, &optval, sizeof (optval), | |
5264 | sizeof (optval)); | |
5265 | if (error == 0) | |
5266 | error = so_set_recv_anyif(so, optval); | |
5267 | break; | |
5268 | ||
39236c6e A |
5269 | case SO_TRAFFIC_MGT_BACKGROUND: { |
5270 | /* This option is handled by lower layer(s) */ | |
5271 | error = 0; | |
5272 | break; | |
5273 | } | |
5274 | ||
5275 | #if FLOW_DIVERT | |
5276 | case SO_FLOW_DIVERT_TOKEN: | |
5277 | error = flow_divert_token_set(so, sopt); | |
5278 | break; | |
5279 | #endif /* FLOW_DIVERT */ | |
5280 | ||
5281 | ||
5282 | case SO_DELEGATED: | |
5283 | if ((error = sooptcopyin(sopt, &optval, sizeof (optval), | |
5284 | sizeof (optval))) != 0) | |
5285 | break; | |
5286 | ||
5287 | error = so_set_effective_pid(so, optval, sopt->sopt_p); | |
5288 | break; | |
5289 | ||
5290 | case SO_DELEGATED_UUID: { | |
5291 | uuid_t euuid; | |
5292 | ||
5293 | if ((error = sooptcopyin(sopt, &euuid, sizeof (euuid), | |
5294 | sizeof (euuid))) != 0) | |
5295 | break; | |
5296 | ||
5297 | error = so_set_effective_uuid(so, euuid, sopt->sopt_p); | |
5298 | break; | |
5299 | } | |
3e170ce0 | 5300 | |
fe8ab488 A |
5301 | #if NECP |
5302 | case SO_NECP_ATTRIBUTES: | |
5303 | error = necp_set_socket_attributes(so, sopt); | |
5304 | break; | |
fe8ab488 | 5305 | |
5ba3f43e A |
5306 | case SO_NECP_CLIENTUUID: |
5307 | if (SOCK_DOM(so) == PF_MULTIPATH) { | |
5308 | /* Handled by MPTCP itself */ | |
fe8ab488 A |
5309 | break; |
5310 | } | |
5311 | ||
5ba3f43e A |
5312 | if (SOCK_DOM(so) != PF_INET && SOCK_DOM(so) != PF_INET6) { |
5313 | error = EINVAL; | |
fe8ab488 | 5314 | goto out; |
5ba3f43e A |
5315 | } |
5316 | ||
5317 | struct inpcb *inp = sotoinpcb(so); | |
5318 | if (!uuid_is_null(inp->necp_client_uuid)) { | |
5319 | // Clear out the old client UUID if present | |
5320 | necp_inpcb_remove_cb(inp); | |
5321 | } | |
5322 | ||
5323 | error = sooptcopyin(sopt, &inp->necp_client_uuid, | |
5324 | sizeof(uuid_t), sizeof(uuid_t)); | |
5325 | if (error != 0) { | |
5326 | goto out; | |
5327 | } | |
5328 | ||
5329 | if (uuid_is_null(inp->necp_client_uuid)) { | |
5330 | error = EINVAL; | |
5331 | goto out; | |
5332 | } | |
5333 | ||
5334 | error = necp_client_register_socket_flow(so->last_pid, | |
5335 | inp->necp_client_uuid, inp); | |
5336 | if (error != 0) { | |
5337 | uuid_clear(inp->necp_client_uuid); | |
5338 | goto out; | |
5339 | } | |
5340 | ||
5341 | if (inp->inp_lport != 0) { | |
5342 | // There is bound local port, so this is not | |
5343 | // a fresh socket. Assign to the client. | |
5344 | necp_client_assign_from_socket(so->last_pid, inp->necp_client_uuid, inp); | |
5345 | } | |
5346 | ||
fe8ab488 | 5347 | break; |
5ba3f43e | 5348 | #endif /* NECP */ |
39236c6e | 5349 | |
3e170ce0 A |
5350 | case SO_EXTENDED_BK_IDLE: |
5351 | error = sooptcopyin(sopt, &optval, sizeof (optval), | |
5352 | sizeof (optval)); | |
5353 | if (error == 0) | |
5354 | error = so_set_extended_bk_idle(so, optval); | |
5355 | break; | |
5356 | ||
490019cf A |
5357 | case SO_MARK_CELLFALLBACK: |
5358 | error = sooptcopyin(sopt, &optval, sizeof(optval), | |
5359 | sizeof(optval)); | |
5360 | if (error != 0) | |
5361 | goto out; | |
5362 | if (optval < 0) { | |
5363 | error = EINVAL; | |
5364 | goto out; | |
5365 | } | |
5366 | if (optval == 0) | |
5367 | so->so_flags1 &= ~SOF1_CELLFALLBACK; | |
5368 | else | |
5369 | so->so_flags1 |= SOF1_CELLFALLBACK; | |
5370 | break; | |
39037602 A |
5371 | |
5372 | case SO_NET_SERVICE_TYPE: { | |
5373 | error = sooptcopyin(sopt, &optval, sizeof(optval), | |
5374 | sizeof(optval)); | |
5375 | if (error != 0) | |
5376 | goto out; | |
5377 | error = so_set_net_service_type(so, optval); | |
5378 | break; | |
5379 | } | |
5380 | ||
5381 | case SO_QOSMARKING_POLICY_OVERRIDE: | |
5382 | error = priv_check_cred(kauth_cred_get(), | |
5383 | PRIV_NET_QOSMARKING_POLICY_OVERRIDE, 0); | |
5384 | if (error != 0) | |
5385 | goto out; | |
5386 | error = sooptcopyin(sopt, &optval, sizeof(optval), | |
5387 | sizeof(optval)); | |
5388 | if (error != 0) | |
5389 | goto out; | |
5390 | if (optval == 0) | |
5391 | so->so_flags1 &= ~SOF1_QOSMARKING_POLICY_OVERRIDE; | |
5392 | else | |
5393 | so->so_flags1 |= SOF1_QOSMARKING_POLICY_OVERRIDE; | |
5394 | break; | |
5395 | ||
1c79356b A |
5396 | default: |
5397 | error = ENOPROTOOPT; | |
5398 | break; | |
5399 | } | |
39236c6e A |
5400 | if (error == 0 && so->so_proto != NULL && |
5401 | so->so_proto->pr_ctloutput != NULL) { | |
5402 | (void) so->so_proto->pr_ctloutput(so, sopt); | |
1c79356b A |
5403 | } |
5404 | } | |
39236c6e A |
5405 | out: |
5406 | if (dolock) | |
5407 | socket_unlock(so, 1); | |
1c79356b A |
5408 | return (error); |
5409 | } | |
5410 | ||
2d21ac55 | 5411 | /* Helper routines for getsockopt */ |
1c79356b | 5412 | int |
2d21ac55 | 5413 | sooptcopyout(struct sockopt *sopt, void *buf, size_t len) |
1c79356b A |
5414 | { |
5415 | int error; | |
5416 | size_t valsize; | |
5417 | ||
5418 | error = 0; | |
5419 | ||
5420 | /* | |
5421 | * Documented get behavior is that we always return a value, | |
5422 | * possibly truncated to fit in the user's buffer. | |
5423 | * Traditional behavior is that we always tell the user | |
5424 | * precisely how much we copied, rather than something useful | |
5425 | * like the total amount we had available for her. | |
5426 | * Note that this interface is not idempotent; the entire answer must | |
5427 | * generated ahead of time. | |
5428 | */ | |
5429 | valsize = min(len, sopt->sopt_valsize); | |
5430 | sopt->sopt_valsize = valsize; | |
91447636 | 5431 | if (sopt->sopt_val != USER_ADDR_NULL) { |
b0d623f7 | 5432 | if (sopt->sopt_p != kernproc) |
1c79356b A |
5433 | error = copyout(buf, sopt->sopt_val, valsize); |
5434 | else | |
91447636 | 5435 | bcopy(buf, CAST_DOWN(caddr_t, sopt->sopt_val), valsize); |
1c79356b | 5436 | } |
2d21ac55 A |
5437 | return (error); |
5438 | } | |
5439 | ||
5440 | static int | |
39236c6e | 5441 | sooptcopyout_timeval(struct sockopt *sopt, const struct timeval *tv_p) |
2d21ac55 A |
5442 | { |
5443 | int error; | |
5444 | size_t len; | |
5ba3f43e A |
5445 | struct user64_timeval tv64 = {}; |
5446 | struct user32_timeval tv32 = {}; | |
2d21ac55 A |
5447 | const void * val; |
5448 | size_t valsize; | |
b0d623f7 | 5449 | |
2d21ac55 A |
5450 | error = 0; |
5451 | if (proc_is64bit(sopt->sopt_p)) { | |
39236c6e | 5452 | len = sizeof (tv64); |
2d21ac55 A |
5453 | tv64.tv_sec = tv_p->tv_sec; |
5454 | tv64.tv_usec = tv_p->tv_usec; | |
5455 | val = &tv64; | |
5456 | } else { | |
39236c6e | 5457 | len = sizeof (tv32); |
b0d623f7 A |
5458 | tv32.tv_sec = tv_p->tv_sec; |
5459 | tv32.tv_usec = tv_p->tv_usec; | |
5460 | val = &tv32; | |
2d21ac55 A |
5461 | } |
5462 | valsize = min(len, sopt->sopt_valsize); | |
5463 | sopt->sopt_valsize = valsize; | |
5464 | if (sopt->sopt_val != USER_ADDR_NULL) { | |
b0d623f7 | 5465 | if (sopt->sopt_p != kernproc) |
2d21ac55 A |
5466 | error = copyout(val, sopt->sopt_val, valsize); |
5467 | else | |
5468 | bcopy(val, CAST_DOWN(caddr_t, sopt->sopt_val), valsize); | |
5469 | } | |
5470 | return (error); | |
1c79356b A |
5471 | } |
5472 | ||
2d21ac55 A |
5473 | /* |
5474 | * Return: 0 Success | |
5475 | * ENOPROTOOPT | |
5476 | * <pr_ctloutput>:EOPNOTSUPP[AF_UNIX] | |
5477 | * <pr_ctloutput>:??? | |
5478 | * <sf_getoption>:??? | |
5479 | */ | |
1c79356b | 5480 | int |
39236c6e | 5481 | sogetoptlock(struct socket *so, struct sockopt *sopt, int dolock) |
1c79356b A |
5482 | { |
5483 | int error, optval; | |
5484 | struct linger l; | |
5485 | struct timeval tv; | |
2d21ac55 A |
5486 | #if CONFIG_MACF_SOCKET |
5487 | struct mac extmac; | |
5488 | #endif /* MAC_SOCKET */ | |
1c79356b | 5489 | |
39236c6e | 5490 | if (sopt->sopt_dir != SOPT_GET) |
2d21ac55 | 5491 | sopt->sopt_dir = SOPT_GET; |
9bccf70c | 5492 | |
39236c6e A |
5493 | if (dolock) |
5494 | socket_lock(so, 1); | |
2d21ac55 | 5495 | |
6d2010ae | 5496 | error = sflt_getsockopt(so, sopt); |
39236c6e | 5497 | if (error != 0) { |
6d2010ae A |
5498 | if (error == EJUSTRETURN) |
5499 | error = 0; | |
39236c6e | 5500 | goto out; |
1c79356b | 5501 | } |
39236c6e | 5502 | |
1c79356b | 5503 | if (sopt->sopt_level != SOL_SOCKET) { |
39236c6e A |
5504 | if (so->so_proto != NULL && |
5505 | so->so_proto->pr_ctloutput != NULL) { | |
2d21ac55 | 5506 | error = (*so->so_proto->pr_ctloutput)(so, sopt); |
39236c6e | 5507 | goto out; |
91447636 | 5508 | } |
39236c6e | 5509 | error = ENOPROTOOPT; |
1c79356b | 5510 | } else { |
39236c6e A |
5511 | /* |
5512 | * Allow socket-level (SOL_SOCKET) options to be filtered by | |
5513 | * the protocol layer, if needed. A zero value returned from | |
5514 | * the handler means use default socket-level processing as | |
5515 | * done by the rest of this routine. Otherwise, any other | |
5516 | * return value indicates that the option is unsupported. | |
5517 | */ | |
5518 | if (so->so_proto != NULL && (error = so->so_proto->pr_usrreqs-> | |
5519 | pru_socheckopt(so, sopt)) != 0) | |
5520 | goto out; | |
5521 | ||
5522 | error = 0; | |
1c79356b A |
5523 | switch (sopt->sopt_name) { |
5524 | case SO_LINGER: | |
91447636 | 5525 | case SO_LINGER_SEC: |
39236c6e | 5526 | l.l_onoff = ((so->so_options & SO_LINGER) ? 1 : 0); |
2d21ac55 A |
5527 | l.l_linger = (sopt->sopt_name == SO_LINGER) ? |
5528 | so->so_linger : so->so_linger / hz; | |
5529 | error = sooptcopyout(sopt, &l, sizeof (l)); | |
1c79356b A |
5530 | break; |
5531 | ||
5532 | case SO_USELOOPBACK: | |
5533 | case SO_DONTROUTE: | |
5534 | case SO_DEBUG: | |
5535 | case SO_KEEPALIVE: | |
5536 | case SO_REUSEADDR: | |
5537 | case SO_REUSEPORT: | |
5538 | case SO_BROADCAST: | |
5539 | case SO_OOBINLINE: | |
5540 | case SO_TIMESTAMP: | |
6d2010ae | 5541 | case SO_TIMESTAMP_MONOTONIC: |
d9a64523 | 5542 | case SO_TIMESTAMP_CONTINUOUS: |
1c79356b A |
5543 | case SO_DONTTRUNC: |
5544 | case SO_WANTMORE: | |
9bccf70c | 5545 | case SO_WANTOOBFLAG: |
fe8ab488 | 5546 | case SO_NOWAKEFROMSLEEP: |
39037602 | 5547 | case SO_NOAPNFALLBK: |
1c79356b A |
5548 | optval = so->so_options & sopt->sopt_name; |
5549 | integer: | |
2d21ac55 | 5550 | error = sooptcopyout(sopt, &optval, sizeof (optval)); |
1c79356b A |
5551 | break; |
5552 | ||
5553 | case SO_TYPE: | |
5554 | optval = so->so_type; | |
5555 | goto integer; | |
5556 | ||
5557 | case SO_NREAD: | |
2d21ac55 A |
5558 | if (so->so_proto->pr_flags & PR_ATOMIC) { |
5559 | int pkt_total; | |
5560 | struct mbuf *m1; | |
1c79356b | 5561 | |
2d21ac55 A |
5562 | pkt_total = 0; |
5563 | m1 = so->so_rcv.sb_mb; | |
39236c6e A |
5564 | while (m1 != NULL) { |
5565 | if (m1->m_type == MT_DATA || | |
5566 | m1->m_type == MT_HEADER || | |
5567 | m1->m_type == MT_OOBDATA) | |
1c79356b | 5568 | pkt_total += m1->m_len; |
1c79356b A |
5569 | m1 = m1->m_next; |
5570 | } | |
5571 | optval = pkt_total; | |
2d21ac55 A |
5572 | } else { |
5573 | optval = so->so_rcv.sb_cc - so->so_rcv.sb_ctl; | |
5574 | } | |
1c79356b | 5575 | goto integer; |
39236c6e | 5576 | |
fe8ab488 A |
5577 | case SO_NUMRCVPKT: |
5578 | if (so->so_proto->pr_flags & PR_ATOMIC) { | |
5579 | int cnt = 0; | |
5580 | struct mbuf *m1; | |
5581 | ||
5582 | m1 = so->so_rcv.sb_mb; | |
5583 | while (m1 != NULL) { | |
5584 | if (m1->m_type == MT_DATA || | |
5585 | m1->m_type == MT_HEADER || | |
5586 | m1->m_type == MT_OOBDATA) | |
5587 | cnt += 1; | |
5588 | m1 = m1->m_nextpkt; | |
5589 | } | |
5590 | optval = cnt; | |
5591 | goto integer; | |
5592 | } else { | |
5593 | error = EINVAL; | |
5594 | break; | |
5595 | } | |
5596 | ||
91447636 A |
5597 | case SO_NWRITE: |
5598 | optval = so->so_snd.sb_cc; | |
2d21ac55 | 5599 | goto integer; |
39236c6e | 5600 | |
1c79356b A |
5601 | case SO_ERROR: |
5602 | optval = so->so_error; | |
5603 | so->so_error = 0; | |
5604 | goto integer; | |
5605 | ||
fe8ab488 A |
5606 | case SO_SNDBUF: { |
5607 | u_int32_t hiwat = so->so_snd.sb_hiwat; | |
1c79356b | 5608 | |
fe8ab488 A |
5609 | if (so->so_snd.sb_flags & SB_UNIX) { |
5610 | struct unpcb *unp = | |
5611 | (struct unpcb *)(so->so_pcb); | |
5612 | if (unp != NULL && unp->unp_conn != NULL) { | |
5613 | hiwat += unp->unp_conn->unp_cc; | |
5614 | } | |
5615 | } | |
5616 | ||
5617 | optval = hiwat; | |
5618 | goto integer; | |
5619 | } | |
1c79356b A |
5620 | case SO_RCVBUF: |
5621 | optval = so->so_rcv.sb_hiwat; | |
5622 | goto integer; | |
5623 | ||
5624 | case SO_SNDLOWAT: | |
5625 | optval = so->so_snd.sb_lowat; | |
5626 | goto integer; | |
5627 | ||
5628 | case SO_RCVLOWAT: | |
5629 | optval = so->so_rcv.sb_lowat; | |
5630 | goto integer; | |
5631 | ||
5632 | case SO_SNDTIMEO: | |
5633 | case SO_RCVTIMEO: | |
91447636 | 5634 | tv = (sopt->sopt_name == SO_SNDTIMEO ? |
2d21ac55 | 5635 | so->so_snd.sb_timeo : so->so_rcv.sb_timeo); |
1c79356b | 5636 | |
2d21ac55 A |
5637 | error = sooptcopyout_timeval(sopt, &tv); |
5638 | break; | |
1c79356b | 5639 | |
91447636 A |
5640 | case SO_NOSIGPIPE: |
5641 | optval = (so->so_flags & SOF_NOSIGPIPE); | |
5642 | goto integer; | |
9bccf70c | 5643 | |
55e303ae | 5644 | case SO_NOADDRERR: |
91447636 A |
5645 | optval = (so->so_flags & SOF_NOADDRAVAIL); |
5646 | goto integer; | |
55e303ae | 5647 | |
2d21ac55 A |
5648 | case SO_REUSESHAREUID: |
5649 | optval = (so->so_flags & SOF_REUSESHAREUID); | |
5650 | goto integer; | |
5651 | ||
39236c6e | 5652 | |
2d21ac55 A |
5653 | case SO_NOTIFYCONFLICT: |
5654 | optval = (so->so_flags & SOF_NOTIFYCONFLICT); | |
5655 | goto integer; | |
39236c6e | 5656 | |
2d21ac55 | 5657 | case SO_RESTRICTIONS: |
39236c6e | 5658 | optval = so_get_restrictions(so); |
2d21ac55 A |
5659 | goto integer; |
5660 | ||
fe8ab488 | 5661 | case SO_AWDL_UNRESTRICTED: |
3e170ce0 | 5662 | if (SOCK_DOM(so) == PF_INET || |
fe8ab488 A |
5663 | SOCK_DOM(so) == PF_INET6) { |
5664 | optval = inp_get_awdl_unrestricted( | |
5665 | sotoinpcb(so)); | |
5666 | goto integer; | |
5667 | } else | |
5668 | error = EOPNOTSUPP; | |
5669 | break; | |
5670 | ||
39037602 A |
5671 | case SO_INTCOPROC_ALLOW: |
5672 | if (SOCK_DOM(so) == PF_INET6) { | |
5673 | optval = inp_get_intcoproc_allowed( | |
5674 | sotoinpcb(so)); | |
5675 | goto integer; | |
5676 | } else | |
5677 | error = EOPNOTSUPP; | |
5678 | break; | |
5679 | ||
2d21ac55 A |
5680 | case SO_LABEL: |
5681 | #if CONFIG_MACF_SOCKET | |
5682 | if ((error = sooptcopyin(sopt, &extmac, sizeof (extmac), | |
5683 | sizeof (extmac))) != 0 || | |
5684 | (error = mac_socket_label_get(proc_ucred( | |
5685 | sopt->sopt_p), so, &extmac)) != 0) | |
5686 | break; | |
5687 | ||
5688 | error = sooptcopyout(sopt, &extmac, sizeof (extmac)); | |
5689 | #else | |
5690 | error = EOPNOTSUPP; | |
5691 | #endif /* MAC_SOCKET */ | |
5692 | break; | |
5693 | ||
5694 | case SO_PEERLABEL: | |
5695 | #if CONFIG_MACF_SOCKET | |
5696 | if ((error = sooptcopyin(sopt, &extmac, sizeof (extmac), | |
5697 | sizeof (extmac))) != 0 || | |
5698 | (error = mac_socketpeer_label_get(proc_ucred( | |
5699 | sopt->sopt_p), so, &extmac)) != 0) | |
5700 | break; | |
5701 | ||
5702 | error = sooptcopyout(sopt, &extmac, sizeof (extmac)); | |
5703 | #else | |
5704 | error = EOPNOTSUPP; | |
5705 | #endif /* MAC_SOCKET */ | |
5706 | break; | |
5707 | ||
4a3eedf9 A |
5708 | #ifdef __APPLE_API_PRIVATE |
5709 | case SO_UPCALLCLOSEWAIT: | |
5710 | optval = (so->so_flags & SOF_UPCALLCLOSEWAIT); | |
5711 | goto integer; | |
5712 | #endif | |
b0d623f7 A |
5713 | case SO_RANDOMPORT: |
5714 | optval = (so->so_flags & SOF_BINDRANDOMPORT); | |
5715 | goto integer; | |
5716 | ||
5717 | case SO_NP_EXTENSIONS: { | |
527f9951 | 5718 | struct so_np_extensions sonpx = {}; |
b0d623f7 | 5719 | |
39236c6e A |
5720 | sonpx.npx_flags = (so->so_flags & SOF_NPX_SETOPTSHUT) ? |
5721 | SONPX_SETOPTSHUT : 0; | |
b0d623f7 | 5722 | sonpx.npx_mask = SONPX_MASK_VALID; |
4a3eedf9 | 5723 | |
39236c6e A |
5724 | error = sooptcopyout(sopt, &sonpx, |
5725 | sizeof (struct so_np_extensions)); | |
5726 | break; | |
b0d623f7 | 5727 | } |
6d2010ae | 5728 | |
d41d1dae A |
5729 | case SO_TRAFFIC_CLASS: |
5730 | optval = so->so_traffic_class; | |
5731 | goto integer; | |
316670eb | 5732 | |
6d2010ae A |
5733 | case SO_RECV_TRAFFIC_CLASS: |
5734 | optval = (so->so_flags & SOF_RECV_TRAFFIC_CLASS); | |
5735 | goto integer; | |
5736 | ||
5737 | case SO_TRAFFIC_CLASS_STATS: | |
39236c6e A |
5738 | error = sooptcopyout(sopt, &so->so_tc_stats, |
5739 | sizeof (so->so_tc_stats)); | |
316670eb | 5740 | break; |
6d2010ae | 5741 | |
39037602 | 5742 | #if (DEVELOPMENT || DEBUG) |
39236c6e | 5743 | case SO_TRAFFIC_CLASS_DBG: |
6d2010ae A |
5744 | error = sogetopt_tcdbg(so, sopt); |
5745 | break; | |
39037602 | 5746 | #endif /* (DEVELOPMENT || DEBUG) */ |
316670eb A |
5747 | |
5748 | case SO_PRIVILEGED_TRAFFIC_CLASS: | |
5749 | optval = (so->so_flags & SOF_PRIVILEGED_TRAFFIC_CLASS); | |
5750 | goto integer; | |
5751 | ||
6d2010ae A |
5752 | case SO_DEFUNCTOK: |
5753 | optval = !(so->so_flags & SOF_NODEFUNCT); | |
5754 | goto integer; | |
5755 | ||
5756 | case SO_ISDEFUNCT: | |
5757 | optval = (so->so_flags & SOF_DEFUNCT); | |
5758 | goto integer; | |
d41d1dae | 5759 | |
316670eb A |
5760 | case SO_OPPORTUNISTIC: |
5761 | optval = so_get_opportunistic(so); | |
5762 | goto integer; | |
5763 | ||
5764 | case SO_FLUSH: | |
5765 | /* This option is not gettable */ | |
5766 | error = EINVAL; | |
5767 | break; | |
5768 | ||
5769 | case SO_RECV_ANYIF: | |
5770 | optval = so_get_recv_anyif(so); | |
5771 | goto integer; | |
5772 | ||
39236c6e A |
5773 | case SO_TRAFFIC_MGT_BACKGROUND: |
5774 | /* This option is handled by lower layer(s) */ | |
5775 | if (so->so_proto != NULL && | |
5776 | so->so_proto->pr_ctloutput != NULL) { | |
5777 | (void) so->so_proto->pr_ctloutput(so, sopt); | |
5778 | } | |
5779 | break; | |
5780 | ||
5781 | #if FLOW_DIVERT | |
5782 | case SO_FLOW_DIVERT_TOKEN: | |
5783 | error = flow_divert_token_get(so, sopt); | |
5784 | break; | |
5785 | #endif /* FLOW_DIVERT */ | |
3e170ce0 | 5786 | |
fe8ab488 A |
5787 | #if NECP |
5788 | case SO_NECP_ATTRIBUTES: | |
5789 | error = necp_get_socket_attributes(so, sopt); | |
5790 | break; | |
5ba3f43e A |
5791 | |
5792 | case SO_NECP_CLIENTUUID: | |
5793 | { | |
5794 | uuid_t *ncu; | |
5795 | ||
5796 | if (SOCK_DOM(so) == PF_MULTIPATH) { | |
5797 | ncu = &mpsotomppcb(so)->necp_client_uuid; | |
5798 | } else if (SOCK_DOM(so) == PF_INET || SOCK_DOM(so) == PF_INET6) { | |
5799 | ncu = &sotoinpcb(so)->necp_client_uuid; | |
5800 | } else { | |
5801 | error = EINVAL; | |
5802 | goto out; | |
5803 | } | |
5804 | ||
5805 | error = sooptcopyout(sopt, ncu, sizeof(uuid_t)); | |
5806 | break; | |
5807 | } | |
fe8ab488 A |
5808 | #endif /* NECP */ |
5809 | ||
5810 | #if CONTENT_FILTER | |
5811 | case SO_CFIL_SOCK_ID: { | |
5812 | cfil_sock_id_t sock_id; | |
5813 | ||
5814 | sock_id = cfil_sock_id_from_socket(so); | |
5815 | ||
3e170ce0 | 5816 | error = sooptcopyout(sopt, &sock_id, |
fe8ab488 A |
5817 | sizeof(cfil_sock_id_t)); |
5818 | break; | |
5819 | } | |
5820 | #endif /* CONTENT_FILTER */ | |
5821 | ||
3e170ce0 A |
5822 | case SO_EXTENDED_BK_IDLE: |
5823 | optval = (so->so_flags1 & SOF1_EXTEND_BK_IDLE_WANTED); | |
5824 | goto integer; | |
490019cf A |
5825 | case SO_MARK_CELLFALLBACK: |
5826 | optval = ((so->so_flags1 & SOF1_CELLFALLBACK) > 0) | |
5827 | ? 1 : 0; | |
5828 | goto integer; | |
39037602 A |
5829 | case SO_NET_SERVICE_TYPE: { |
5830 | if ((so->so_flags1 & SOF1_TC_NET_SERV_TYPE)) | |
5831 | optval = so->so_netsvctype; | |
5832 | else | |
5833 | optval = NET_SERVICE_TYPE_BE; | |
5834 | goto integer; | |
5835 | } | |
5836 | case SO_NETSVC_MARKING_LEVEL: | |
5837 | optval = so_get_netsvc_marking_level(so); | |
5838 | goto integer; | |
5839 | ||
1c79356b A |
5840 | default: |
5841 | error = ENOPROTOOPT; | |
5842 | break; | |
5843 | } | |
1c79356b | 5844 | } |
39236c6e A |
5845 | out: |
5846 | if (dolock) | |
5847 | socket_unlock(so, 1); | |
5848 | return (error); | |
1c79356b | 5849 | } |
39236c6e A |
5850 | |
5851 | /* | |
5852 | * The size limits on our soopt_getm is different from that on FreeBSD. | |
6d2010ae A |
5853 | * We limit the size of options to MCLBYTES. This will have to change |
5854 | * if we need to define options that need more space than MCLBYTES. | |
5855 | */ | |
1c79356b | 5856 | int |
9bccf70c | 5857 | soopt_getm(struct sockopt *sopt, struct mbuf **mp) |
1c79356b A |
5858 | { |
5859 | struct mbuf *m, *m_prev; | |
5860 | int sopt_size = sopt->sopt_valsize; | |
b0d623f7 | 5861 | int how; |
1c79356b | 5862 | |
6d2010ae | 5863 | if (sopt_size <= 0 || sopt_size > MCLBYTES) |
2d21ac55 | 5864 | return (EMSGSIZE); |
a3d08fcd | 5865 | |
b0d623f7 A |
5866 | how = sopt->sopt_p != kernproc ? M_WAIT : M_DONTWAIT; |
5867 | MGET(m, how, MT_DATA); | |
39236c6e | 5868 | if (m == NULL) |
2d21ac55 | 5869 | return (ENOBUFS); |
1c79356b | 5870 | if (sopt_size > MLEN) { |
b0d623f7 | 5871 | MCLGET(m, how); |
1c79356b A |
5872 | if ((m->m_flags & M_EXT) == 0) { |
5873 | m_free(m); | |
2d21ac55 | 5874 | return (ENOBUFS); |
1c79356b A |
5875 | } |
5876 | m->m_len = min(MCLBYTES, sopt_size); | |
5877 | } else { | |
5878 | m->m_len = min(MLEN, sopt_size); | |
5879 | } | |
5880 | sopt_size -= m->m_len; | |
5881 | *mp = m; | |
5882 | m_prev = m; | |
5883 | ||
6d2010ae | 5884 | while (sopt_size > 0) { |
b0d623f7 | 5885 | MGET(m, how, MT_DATA); |
39236c6e | 5886 | if (m == NULL) { |
1c79356b | 5887 | m_freem(*mp); |
2d21ac55 | 5888 | return (ENOBUFS); |
1c79356b A |
5889 | } |
5890 | if (sopt_size > MLEN) { | |
b0d623f7 | 5891 | MCLGET(m, how); |
1c79356b A |
5892 | if ((m->m_flags & M_EXT) == 0) { |
5893 | m_freem(*mp); | |
6d2010ae | 5894 | m_freem(m); |
2d21ac55 | 5895 | return (ENOBUFS); |
1c79356b A |
5896 | } |
5897 | m->m_len = min(MCLBYTES, sopt_size); | |
5898 | } else { | |
5899 | m->m_len = min(MLEN, sopt_size); | |
5900 | } | |
5901 | sopt_size -= m->m_len; | |
5902 | m_prev->m_next = m; | |
5903 | m_prev = m; | |
5904 | } | |
2d21ac55 | 5905 | return (0); |
1c79356b A |
5906 | } |
5907 | ||
6d2010ae | 5908 | /* copyin sopt data into mbuf chain */ |
1c79356b | 5909 | int |
9bccf70c | 5910 | soopt_mcopyin(struct sockopt *sopt, struct mbuf *m) |
1c79356b A |
5911 | { |
5912 | struct mbuf *m0 = m; | |
5913 | ||
91447636 | 5914 | if (sopt->sopt_val == USER_ADDR_NULL) |
2d21ac55 | 5915 | return (0); |
1c79356b | 5916 | while (m != NULL && sopt->sopt_valsize >= m->m_len) { |
b0d623f7 | 5917 | if (sopt->sopt_p != kernproc) { |
1c79356b A |
5918 | int error; |
5919 | ||
2d21ac55 A |
5920 | error = copyin(sopt->sopt_val, mtod(m, char *), |
5921 | m->m_len); | |
1c79356b A |
5922 | if (error != 0) { |
5923 | m_freem(m0); | |
2d21ac55 | 5924 | return (error); |
1c79356b | 5925 | } |
2d21ac55 A |
5926 | } else { |
5927 | bcopy(CAST_DOWN(caddr_t, sopt->sopt_val), | |
5928 | mtod(m, char *), m->m_len); | |
5929 | } | |
1c79356b | 5930 | sopt->sopt_valsize -= m->m_len; |
2d21ac55 | 5931 | sopt->sopt_val += m->m_len; |
1c79356b A |
5932 | m = m->m_next; |
5933 | } | |
39236c6e A |
5934 | /* should be allocated enoughly at ip6_sooptmcopyin() */ |
5935 | if (m != NULL) { | |
9bccf70c | 5936 | panic("soopt_mcopyin"); |
39236c6e A |
5937 | /* NOTREACHED */ |
5938 | } | |
2d21ac55 | 5939 | return (0); |
1c79356b A |
5940 | } |
5941 | ||
6d2010ae | 5942 | /* copyout mbuf chain data into soopt */ |
1c79356b | 5943 | int |
9bccf70c | 5944 | soopt_mcopyout(struct sockopt *sopt, struct mbuf *m) |
1c79356b A |
5945 | { |
5946 | struct mbuf *m0 = m; | |
5947 | size_t valsize = 0; | |
5948 | ||
91447636 | 5949 | if (sopt->sopt_val == USER_ADDR_NULL) |
2d21ac55 | 5950 | return (0); |
1c79356b | 5951 | while (m != NULL && sopt->sopt_valsize >= m->m_len) { |
b0d623f7 | 5952 | if (sopt->sopt_p != kernproc) { |
1c79356b A |
5953 | int error; |
5954 | ||
2d21ac55 A |
5955 | error = copyout(mtod(m, char *), sopt->sopt_val, |
5956 | m->m_len); | |
1c79356b A |
5957 | if (error != 0) { |
5958 | m_freem(m0); | |
2d21ac55 | 5959 | return (error); |
1c79356b | 5960 | } |
2d21ac55 A |
5961 | } else { |
5962 | bcopy(mtod(m, char *), | |
5963 | CAST_DOWN(caddr_t, sopt->sopt_val), m->m_len); | |
5964 | } | |
5965 | sopt->sopt_valsize -= m->m_len; | |
5966 | sopt->sopt_val += m->m_len; | |
5967 | valsize += m->m_len; | |
5968 | m = m->m_next; | |
1c79356b A |
5969 | } |
5970 | if (m != NULL) { | |
5971 | /* enough soopt buffer should be given from user-land */ | |
5972 | m_freem(m0); | |
2d21ac55 | 5973 | return (EINVAL); |
1c79356b A |
5974 | } |
5975 | sopt->sopt_valsize = valsize; | |
2d21ac55 | 5976 | return (0); |
1c79356b A |
5977 | } |
5978 | ||
9bccf70c | 5979 | void |
2d21ac55 | 5980 | sohasoutofband(struct socket *so) |
9bccf70c | 5981 | { |
9bccf70c A |
5982 | if (so->so_pgid < 0) |
5983 | gsignal(-so->so_pgid, SIGURG); | |
2d21ac55 A |
5984 | else if (so->so_pgid > 0) |
5985 | proc_signal(so->so_pgid, SIGURG); | |
9bccf70c | 5986 | selwakeup(&so->so_rcv.sb_sel); |
39037602 A |
5987 | if (so->so_rcv.sb_flags & SB_KNOTE) { |
5988 | KNOTE(&so->so_rcv.sb_sel.si_note, | |
5989 | (NOTE_OOB | SO_FILT_HINT_LOCKED)); | |
5990 | } | |
9bccf70c A |
5991 | } |
5992 | ||
5993 | int | |
39236c6e | 5994 | sopoll(struct socket *so, int events, kauth_cred_t cred, void * wql) |
9bccf70c | 5995 | { |
39236c6e | 5996 | #pragma unused(cred) |
9bccf70c A |
5997 | struct proc *p = current_proc(); |
5998 | int revents = 0; | |
91447636 A |
5999 | |
6000 | socket_lock(so, 1); | |
39236c6e A |
6001 | so_update_last_owner_locked(so, PROC_NULL); |
6002 | so_update_policy(so); | |
9bccf70c A |
6003 | |
6004 | if (events & (POLLIN | POLLRDNORM)) | |
6005 | if (soreadable(so)) | |
6006 | revents |= events & (POLLIN | POLLRDNORM); | |
6007 | ||
6008 | if (events & (POLLOUT | POLLWRNORM)) | |
6009 | if (sowriteable(so)) | |
6010 | revents |= events & (POLLOUT | POLLWRNORM); | |
6011 | ||
6012 | if (events & (POLLPRI | POLLRDBAND)) | |
6013 | if (so->so_oobmark || (so->so_state & SS_RCVATMARK)) | |
6014 | revents |= events & (POLLPRI | POLLRDBAND); | |
6015 | ||
6016 | if (revents == 0) { | |
6017 | if (events & (POLLIN | POLLPRI | POLLRDNORM | POLLRDBAND)) { | |
2d21ac55 A |
6018 | /* |
6019 | * Darwin sets the flag first, | |
6020 | * BSD calls selrecord first | |
6021 | */ | |
9bccf70c A |
6022 | so->so_rcv.sb_flags |= SB_SEL; |
6023 | selrecord(p, &so->so_rcv.sb_sel, wql); | |
6024 | } | |
6025 | ||
6026 | if (events & (POLLOUT | POLLWRNORM)) { | |
2d21ac55 A |
6027 | /* |
6028 | * Darwin sets the flag first, | |
6029 | * BSD calls selrecord first | |
6030 | */ | |
9bccf70c A |
6031 | so->so_snd.sb_flags |= SB_SEL; |
6032 | selrecord(p, &so->so_snd.sb_sel, wql); | |
6033 | } | |
6034 | } | |
6035 | ||
91447636 | 6036 | socket_unlock(so, 1); |
9bccf70c A |
6037 | return (revents); |
6038 | } | |
55e303ae | 6039 | |
55e303ae | 6040 | int |
5ba3f43e A |
6041 | soo_kqfilter(struct fileproc *fp, struct knote *kn, |
6042 | struct kevent_internal_s *kev, vfs_context_t ctx) | |
55e303ae | 6043 | { |
39236c6e A |
6044 | #pragma unused(fp) |
6045 | #if !CONFIG_MACF_SOCKET | |
6046 | #pragma unused(ctx) | |
6047 | #endif /* MAC_SOCKET */ | |
91447636 | 6048 | struct socket *so = (struct socket *)kn->kn_fp->f_fglob->fg_data; |
39037602 | 6049 | int result; |
2d21ac55 | 6050 | |
91447636 | 6051 | socket_lock(so, 1); |
39236c6e A |
6052 | so_update_last_owner_locked(so, PROC_NULL); |
6053 | so_update_policy(so); | |
55e303ae | 6054 | |
2d21ac55 | 6055 | #if CONFIG_MACF_SOCKET |
39236c6e A |
6056 | if (mac_socket_check_kqfilter(proc_ucred(vfs_context_proc(ctx)), |
6057 | kn, so) != 0) { | |
2d21ac55 | 6058 | socket_unlock(so, 1); |
39037602 A |
6059 | kn->kn_flags = EV_ERROR; |
6060 | kn->kn_data = EPERM; | |
6061 | return 0; | |
2d21ac55 A |
6062 | } |
6063 | #endif /* MAC_SOCKET */ | |
6064 | ||
55e303ae A |
6065 | switch (kn->kn_filter) { |
6066 | case EVFILT_READ: | |
39037602 | 6067 | kn->kn_filtid = EVFILTID_SOREAD; |
55e303ae A |
6068 | break; |
6069 | case EVFILT_WRITE: | |
39037602 | 6070 | kn->kn_filtid = EVFILTID_SOWRITE; |
316670eb A |
6071 | break; |
6072 | case EVFILT_SOCK: | |
39037602 A |
6073 | kn->kn_filtid = EVFILTID_SCK; |
6074 | break; | |
6075 | case EVFILT_EXCEPT: | |
6076 | kn->kn_filtid = EVFILTID_SOEXCEPT; | |
55e303ae A |
6077 | break; |
6078 | default: | |
91447636 | 6079 | socket_unlock(so, 1); |
39037602 A |
6080 | kn->kn_flags = EV_ERROR; |
6081 | kn->kn_data = EINVAL; | |
6082 | return 0; | |
316670eb | 6083 | } |
55e303ae | 6084 | |
39037602 A |
6085 | /* |
6086 | * call the appropriate sub-filter attach | |
6087 | * with the socket still locked | |
6088 | */ | |
5ba3f43e | 6089 | result = knote_fops(kn)->f_attach(kn, kev); |
55e303ae | 6090 | |
91447636 | 6091 | socket_unlock(so, 1); |
39037602 A |
6092 | |
6093 | return result; | |
55e303ae A |
6094 | } |
6095 | ||
55e303ae | 6096 | static int |
39037602 | 6097 | filt_soread_common(struct knote *kn, struct socket *so) |
55e303ae | 6098 | { |
b0d623f7 | 6099 | if (so->so_options & SO_ACCEPTCONN) { |
39037602 | 6100 | int is_not_empty; |
b0d623f7 | 6101 | |
39236c6e A |
6102 | /* |
6103 | * Radar 6615193 handle the listen case dynamically | |
6104 | * for kqueue read filter. This allows to call listen() | |
6105 | * after registering the kqueue EVFILT_READ. | |
b0d623f7 A |
6106 | */ |
6107 | ||
6108 | kn->kn_data = so->so_qlen; | |
39037602 | 6109 | is_not_empty = ! TAILQ_EMPTY(&so->so_comp); |
b0d623f7 | 6110 | |
39037602 | 6111 | return (is_not_empty); |
b0d623f7 A |
6112 | } |
6113 | ||
6114 | /* socket isn't a listener */ | |
3e170ce0 A |
6115 | /* |
6116 | * NOTE_LOWAT specifies new low water mark in data, i.e. | |
6117 | * the bytes of protocol data. We therefore exclude any | |
6118 | * control bytes. | |
6119 | */ | |
2d21ac55 | 6120 | kn->kn_data = so->so_rcv.sb_cc - so->so_rcv.sb_ctl; |
3e170ce0 | 6121 | |
39037602 A |
6122 | if (kn->kn_sfflags & NOTE_OOB) { |
6123 | if (so->so_oobmark || (so->so_state & SS_RCVATMARK)) { | |
6124 | kn->kn_fflags |= NOTE_OOB; | |
2d21ac55 | 6125 | kn->kn_data -= so->so_oobmark; |
91447636 A |
6126 | return (1); |
6127 | } | |
04b8595b | 6128 | } |
3e170ce0 | 6129 | |
04b8595b | 6130 | if ((so->so_state & SS_CANTRCVMORE) |
fe8ab488 | 6131 | #if CONTENT_FILTER |
04b8595b | 6132 | && cfil_sock_data_pending(&so->so_rcv) == 0 |
fe8ab488 | 6133 | #endif /* CONTENT_FILTER */ |
04b8595b A |
6134 | ) { |
6135 | kn->kn_flags |= EV_EOF; | |
6136 | kn->kn_fflags = so->so_error; | |
04b8595b | 6137 | return (1); |
91447636 A |
6138 | } |
6139 | ||
6140 | if (so->so_error) { /* temporary udp error */ | |
55e303ae | 6141 | return (1); |
91447636 A |
6142 | } |
6143 | ||
6d2010ae | 6144 | int64_t lowwat = so->so_rcv.sb_lowat; |
3e170ce0 A |
6145 | /* |
6146 | * Ensure that when NOTE_LOWAT is used, the derived | |
6147 | * low water mark is bounded by socket's rcv buf's | |
6148 | * high and low water mark values. | |
6149 | */ | |
39236c6e | 6150 | if (kn->kn_sfflags & NOTE_LOWAT) { |
6d2010ae A |
6151 | if (kn->kn_sdata > so->so_rcv.sb_hiwat) |
6152 | lowwat = so->so_rcv.sb_hiwat; | |
6153 | else if (kn->kn_sdata > lowwat) | |
6154 | lowwat = kn->kn_sdata; | |
6155 | } | |
39236c6e | 6156 | |
3e170ce0 A |
6157 | /* |
6158 | * The order below is important. Since NOTE_LOWAT | |
6159 | * overrides sb_lowat, check for NOTE_LOWAT case | |
6160 | * first. | |
6161 | */ | |
6162 | if (kn->kn_sfflags & NOTE_LOWAT) | |
6163 | return (kn->kn_data >= lowwat); | |
6164 | ||
6165 | return (so->so_rcv.sb_cc >= lowwat); | |
55e303ae A |
6166 | } |
6167 | ||
39037602 | 6168 | static int |
5ba3f43e | 6169 | filt_sorattach(struct knote *kn, __unused struct kevent_internal_s *kev) |
39037602 A |
6170 | { |
6171 | struct socket *so = (struct socket *)kn->kn_fp->f_fglob->fg_data; | |
6172 | ||
6173 | /* socket locked */ | |
6174 | ||
6175 | /* | |
6176 | * If the caller explicitly asked for OOB results (e.g. poll()) | |
6177 | * from EVFILT_READ, then save that off in the hookid field | |
6178 | * and reserve the kn_flags EV_OOBAND bit for output only. | |
6179 | */ | |
6180 | if (kn->kn_filter == EVFILT_READ && | |
6181 | kn->kn_flags & EV_OOBAND) { | |
6182 | kn->kn_flags &= ~EV_OOBAND; | |
6183 | kn->kn_hookid = EV_OOBAND; | |
6184 | } else { | |
6185 | kn->kn_hookid = 0; | |
6186 | } | |
6187 | if (KNOTE_ATTACH(&so->so_rcv.sb_sel.si_note, kn)) | |
6188 | so->so_rcv.sb_flags |= SB_KNOTE; | |
6189 | ||
6190 | /* indicate if event is already fired */ | |
6191 | return filt_soread_common(kn, so); | |
6192 | } | |
6193 | ||
55e303ae | 6194 | static void |
39037602 | 6195 | filt_sordetach(struct knote *kn) |
55e303ae | 6196 | { |
91447636 | 6197 | struct socket *so = (struct socket *)kn->kn_fp->f_fglob->fg_data; |
39037602 | 6198 | |
91447636 | 6199 | socket_lock(so, 1); |
39037602 A |
6200 | if (so->so_rcv.sb_flags & SB_KNOTE) |
6201 | if (KNOTE_DETACH(&so->so_rcv.sb_sel.si_note, kn)) | |
6202 | so->so_rcv.sb_flags &= ~SB_KNOTE; | |
6203 | socket_unlock(so, 1); | |
6204 | } | |
6205 | ||
6206 | /*ARGSUSED*/ | |
6207 | static int | |
6208 | filt_soread(struct knote *kn, long hint) | |
6209 | { | |
6210 | struct socket *so = (struct socket *)kn->kn_fp->f_fglob->fg_data; | |
6211 | int retval; | |
6212 | ||
6213 | if ((hint & SO_FILT_HINT_LOCKED) == 0) | |
6214 | socket_lock(so, 1); | |
6215 | ||
6216 | retval = filt_soread_common(kn, so); | |
6217 | ||
6218 | if ((hint & SO_FILT_HINT_LOCKED) == 0) | |
6219 | socket_unlock(so, 1); | |
6220 | ||
6221 | return retval; | |
6222 | } | |
6223 | ||
6224 | static int | |
6225 | filt_sortouch(struct knote *kn, struct kevent_internal_s *kev) | |
6226 | { | |
6227 | struct socket *so = (struct socket *)kn->kn_fp->f_fglob->fg_data; | |
6228 | int retval; | |
6229 | ||
6230 | socket_lock(so, 1); | |
6231 | ||
6232 | /* save off the new input fflags and data */ | |
6233 | kn->kn_sfflags = kev->fflags; | |
6234 | kn->kn_sdata = kev->data; | |
39037602 A |
6235 | |
6236 | /* determine if changes result in fired events */ | |
6237 | retval = filt_soread_common(kn, so); | |
55e303ae | 6238 | |
91447636 | 6239 | socket_unlock(so, 1); |
39037602 A |
6240 | |
6241 | return retval; | |
6242 | } | |
6243 | ||
6244 | static int | |
6245 | filt_sorprocess(struct knote *kn, struct filt_process_s *data, struct kevent_internal_s *kev) | |
6246 | { | |
6247 | #pragma unused(data) | |
6248 | struct socket *so = (struct socket *)kn->kn_fp->f_fglob->fg_data; | |
6249 | int retval; | |
6250 | ||
6251 | socket_lock(so, 1); | |
6252 | retval = filt_soread_common(kn, so); | |
6253 | if (retval) { | |
6254 | *kev = kn->kn_kevent; | |
6255 | if (kn->kn_flags & EV_CLEAR) { | |
6256 | kn->kn_fflags = 0; | |
6257 | kn->kn_data = 0; | |
6258 | } | |
6259 | } | |
6260 | socket_unlock(so, 1); | |
6261 | ||
6262 | return retval; | |
55e303ae A |
6263 | } |
6264 | ||
316670eb A |
6265 | int |
6266 | so_wait_for_if_feedback(struct socket *so) | |
6267 | { | |
39236c6e | 6268 | if ((SOCK_DOM(so) == PF_INET || SOCK_DOM(so) == PF_INET6) && |
316670eb A |
6269 | (so->so_state & SS_ISCONNECTED)) { |
6270 | struct inpcb *inp = sotoinpcb(so); | |
6271 | if (INP_WAIT_FOR_IF_FEEDBACK(inp)) | |
6272 | return (1); | |
6273 | } | |
6274 | return (0); | |
6275 | } | |
6276 | ||
55e303ae | 6277 | static int |
39037602 | 6278 | filt_sowrite_common(struct knote *kn, struct socket *so) |
55e303ae | 6279 | { |
316670eb | 6280 | int ret = 0; |
91447636 | 6281 | |
55e303ae A |
6282 | kn->kn_data = sbspace(&so->so_snd); |
6283 | if (so->so_state & SS_CANTSENDMORE) { | |
2d21ac55 | 6284 | kn->kn_flags |= EV_EOF; |
55e303ae | 6285 | kn->kn_fflags = so->so_error; |
39037602 | 6286 | return 1; |
55e303ae | 6287 | } |
91447636 | 6288 | if (so->so_error) { /* temporary udp error */ |
39037602 | 6289 | return 1; |
91447636 | 6290 | } |
3e170ce0 | 6291 | if (!socanwrite(so)) { |
39037602 | 6292 | return 0; |
91447636 | 6293 | } |
3e170ce0 | 6294 | if (so->so_flags1 & SOF1_PRECONNECT_DATA) { |
39037602 | 6295 | return 1; |
3e170ce0 | 6296 | } |
6d2010ae | 6297 | int64_t lowwat = so->so_snd.sb_lowat; |
39236c6e | 6298 | if (kn->kn_sfflags & NOTE_LOWAT) { |
6d2010ae A |
6299 | if (kn->kn_sdata > so->so_snd.sb_hiwat) |
6300 | lowwat = so->so_snd.sb_hiwat; | |
6301 | else if (kn->kn_sdata > lowwat) | |
6302 | lowwat = kn->kn_sdata; | |
6303 | } | |
316670eb | 6304 | if (kn->kn_data >= lowwat) { |
39037602 A |
6305 | if ((so->so_flags & SOF_NOTSENT_LOWAT) |
6306 | #if (DEBUG || DEVELOPMENT) | |
6307 | && so_notsent_lowat_check == 1 | |
6308 | #endif /* DEBUG || DEVELOPMENT */ | |
6309 | ) { | |
6310 | if ((SOCK_DOM(so) == PF_INET || | |
6311 | SOCK_DOM(so) == PF_INET6) && | |
6312 | so->so_type == SOCK_STREAM) { | |
fe8ab488 A |
6313 | ret = tcp_notsent_lowat_check(so); |
6314 | } | |
6315 | #if MPTCP | |
6316 | else if ((SOCK_DOM(so) == PF_MULTIPATH) && | |
6317 | (SOCK_PROTO(so) == IPPROTO_TCP)) { | |
6318 | ret = mptcp_notsent_lowat_check(so); | |
6319 | } | |
6320 | #endif | |
6321 | else { | |
39037602 | 6322 | return 1; |
fe8ab488 | 6323 | } |
316670eb A |
6324 | } else { |
6325 | ret = 1; | |
6326 | } | |
6327 | } | |
6328 | if (so_wait_for_if_feedback(so)) | |
6329 | ret = 0; | |
39236c6e | 6330 | return (ret); |
316670eb A |
6331 | } |
6332 | ||
39037602 | 6333 | static int |
5ba3f43e | 6334 | filt_sowattach(struct knote *kn, __unused struct kevent_internal_s *kev) |
39037602 A |
6335 | { |
6336 | struct socket *so = (struct socket *)kn->kn_fp->f_fglob->fg_data; | |
6337 | ||
6338 | /* socket locked */ | |
6339 | if (KNOTE_ATTACH(&so->so_snd.sb_sel.si_note, kn)) | |
6340 | so->so_snd.sb_flags |= SB_KNOTE; | |
6341 | ||
6342 | /* determine if its already fired */ | |
6343 | return filt_sowrite_common(kn, so); | |
6344 | } | |
6345 | ||
316670eb | 6346 | static void |
39037602 | 6347 | filt_sowdetach(struct knote *kn) |
316670eb A |
6348 | { |
6349 | struct socket *so = (struct socket *)kn->kn_fp->f_fglob->fg_data; | |
6350 | socket_lock(so, 1); | |
39236c6e | 6351 | |
39037602 A |
6352 | if (so->so_snd.sb_flags & SB_KNOTE) |
6353 | if (KNOTE_DETACH(&so->so_snd.sb_sel.si_note, kn)) | |
6354 | so->so_snd.sb_flags &= ~SB_KNOTE; | |
316670eb A |
6355 | socket_unlock(so, 1); |
6356 | } | |
6357 | ||
39037602 | 6358 | /*ARGSUSED*/ |
316670eb | 6359 | static int |
39037602 | 6360 | filt_sowrite(struct knote *kn, long hint) |
316670eb | 6361 | { |
316670eb | 6362 | struct socket *so = (struct socket *)kn->kn_fp->f_fglob->fg_data; |
39037602 | 6363 | int ret; |
316670eb | 6364 | |
39037602 | 6365 | if ((hint & SO_FILT_HINT_LOCKED) == 0) |
316670eb | 6366 | socket_lock(so, 1); |
39037602 A |
6367 | |
6368 | ret = filt_sowrite_common(kn, so); | |
6369 | ||
6370 | if ((hint & SO_FILT_HINT_LOCKED) == 0) | |
6371 | socket_unlock(so, 1); | |
6372 | ||
6373 | return ret; | |
6374 | } | |
6375 | ||
6376 | static int | |
6377 | filt_sowtouch(struct knote *kn, struct kevent_internal_s *kev) | |
6378 | { | |
6379 | struct socket *so = (struct socket *)kn->kn_fp->f_fglob->fg_data; | |
6380 | int ret; | |
6381 | ||
6382 | socket_lock(so, 1); | |
6383 | ||
6384 | /*save off the new input fflags and data */ | |
6385 | kn->kn_sfflags = kev->fflags; | |
6386 | kn->kn_sdata = kev->data; | |
39037602 A |
6387 | |
6388 | /* determine if these changes result in a triggered event */ | |
6389 | ret = filt_sowrite_common(kn, so); | |
6390 | ||
6391 | socket_unlock(so, 1); | |
6392 | ||
6393 | return ret; | |
6394 | } | |
6395 | ||
6396 | static int | |
6397 | filt_sowprocess(struct knote *kn, struct filt_process_s *data, struct kevent_internal_s *kev) | |
6398 | { | |
6399 | #pragma unused(data) | |
6400 | struct socket *so = (struct socket *)kn->kn_fp->f_fglob->fg_data; | |
6401 | int ret; | |
6402 | ||
6403 | socket_lock(so, 1); | |
6404 | ret = filt_sowrite_common(kn, so); | |
6405 | if (ret) { | |
6406 | *kev = kn->kn_kevent; | |
6407 | if (kn->kn_flags & EV_CLEAR) { | |
6408 | kn->kn_fflags = 0; | |
6409 | kn->kn_data = 0; | |
6410 | } | |
316670eb | 6411 | } |
39037602 A |
6412 | socket_unlock(so, 1); |
6413 | return ret; | |
6414 | } | |
6415 | ||
6416 | static int | |
6417 | filt_sockev_common(struct knote *kn, struct socket *so, long ev_hint) | |
6418 | { | |
6419 | int ret = 0; | |
6420 | uint32_t level_trigger = 0; | |
316670eb | 6421 | |
39236c6e | 6422 | if (ev_hint & SO_FILT_HINT_CONNRESET) { |
3e170ce0 | 6423 | kn->kn_fflags |= NOTE_CONNRESET; |
39236c6e A |
6424 | } |
6425 | if (ev_hint & SO_FILT_HINT_TIMEOUT) { | |
3e170ce0 | 6426 | kn->kn_fflags |= NOTE_TIMEOUT; |
39236c6e A |
6427 | } |
6428 | if (ev_hint & SO_FILT_HINT_NOSRCADDR) { | |
3e170ce0 | 6429 | kn->kn_fflags |= NOTE_NOSRCADDR; |
39236c6e A |
6430 | } |
6431 | if (ev_hint & SO_FILT_HINT_IFDENIED) { | |
3e170ce0 | 6432 | kn->kn_fflags |= NOTE_IFDENIED; |
39236c6e A |
6433 | } |
6434 | if (ev_hint & SO_FILT_HINT_KEEPALIVE) { | |
3e170ce0 | 6435 | kn->kn_fflags |= NOTE_KEEPALIVE; |
316670eb | 6436 | } |
39236c6e | 6437 | if (ev_hint & SO_FILT_HINT_ADAPTIVE_WTIMO) { |
3e170ce0 | 6438 | kn->kn_fflags |= NOTE_ADAPTIVE_WTIMO; |
39236c6e A |
6439 | } |
6440 | if (ev_hint & SO_FILT_HINT_ADAPTIVE_RTIMO) { | |
3e170ce0 | 6441 | kn->kn_fflags |= NOTE_ADAPTIVE_RTIMO; |
39236c6e | 6442 | } |
3e170ce0 A |
6443 | if ((ev_hint & SO_FILT_HINT_CONNECTED) || |
6444 | (so->so_state & SS_ISCONNECTED)) { | |
6445 | kn->kn_fflags |= NOTE_CONNECTED; | |
6446 | level_trigger |= NOTE_CONNECTED; | |
39236c6e | 6447 | } |
3e170ce0 A |
6448 | if ((ev_hint & SO_FILT_HINT_DISCONNECTED) || |
6449 | (so->so_state & SS_ISDISCONNECTED)) { | |
6450 | kn->kn_fflags |= NOTE_DISCONNECTED; | |
6451 | level_trigger |= NOTE_DISCONNECTED; | |
39236c6e A |
6452 | } |
6453 | if (ev_hint & SO_FILT_HINT_CONNINFO_UPDATED) { | |
6454 | if (so->so_proto != NULL && | |
3e170ce0 | 6455 | (so->so_proto->pr_flags & PR_EVCONNINFO)) |
39236c6e A |
6456 | kn->kn_fflags |= NOTE_CONNINFO_UPDATED; |
6457 | } | |
316670eb | 6458 | |
39037602 A |
6459 | if ((ev_hint & SO_FILT_HINT_NOTIFY_ACK) || |
6460 | tcp_notify_ack_active(so)) { | |
6461 | kn->kn_fflags |= NOTE_NOTIFY_ACK; | |
6462 | } | |
6463 | ||
3e170ce0 | 6464 | if ((so->so_state & SS_CANTRCVMORE) |
fe8ab488 | 6465 | #if CONTENT_FILTER |
3e170ce0 | 6466 | && cfil_sock_data_pending(&so->so_rcv) == 0 |
fe8ab488 | 6467 | #endif /* CONTENT_FILTER */ |
3e170ce0 | 6468 | ) { |
316670eb | 6469 | kn->kn_fflags |= NOTE_READCLOSED; |
3e170ce0 A |
6470 | level_trigger |= NOTE_READCLOSED; |
6471 | } | |
316670eb | 6472 | |
3e170ce0 | 6473 | if (so->so_state & SS_CANTSENDMORE) { |
316670eb | 6474 | kn->kn_fflags |= NOTE_WRITECLOSED; |
3e170ce0 A |
6475 | level_trigger |= NOTE_WRITECLOSED; |
6476 | } | |
316670eb | 6477 | |
3e170ce0 A |
6478 | if ((ev_hint & SO_FILT_HINT_SUSPEND) || |
6479 | (so->so_flags & SOF_SUSPENDED)) { | |
39236c6e | 6480 | kn->kn_fflags &= ~(NOTE_SUSPEND | NOTE_RESUME); |
3e170ce0 A |
6481 | |
6482 | /* If resume event was delivered before, reset it */ | |
6483 | kn->kn_hookid &= ~NOTE_RESUME; | |
6484 | ||
316670eb | 6485 | kn->kn_fflags |= NOTE_SUSPEND; |
3e170ce0 | 6486 | level_trigger |= NOTE_SUSPEND; |
316670eb A |
6487 | } |
6488 | ||
3e170ce0 A |
6489 | if ((ev_hint & SO_FILT_HINT_RESUME) || |
6490 | (so->so_flags & SOF_SUSPENDED) == 0) { | |
39236c6e | 6491 | kn->kn_fflags &= ~(NOTE_SUSPEND | NOTE_RESUME); |
3e170ce0 A |
6492 | |
6493 | /* If suspend event was delivered before, reset it */ | |
6494 | kn->kn_hookid &= ~NOTE_SUSPEND; | |
6495 | ||
316670eb | 6496 | kn->kn_fflags |= NOTE_RESUME; |
3e170ce0 | 6497 | level_trigger |= NOTE_RESUME; |
316670eb A |
6498 | } |
6499 | ||
6500 | if (so->so_error != 0) { | |
6501 | ret = 1; | |
6502 | kn->kn_data = so->so_error; | |
6503 | kn->kn_flags |= EV_EOF; | |
6504 | } else { | |
6505 | get_sockev_state(so, (u_int32_t *)&(kn->kn_data)); | |
6506 | } | |
6507 | ||
3e170ce0 A |
6508 | /* Reset any events that are not requested on this knote */ |
6509 | kn->kn_fflags &= (kn->kn_sfflags & EVFILT_SOCK_ALL_MASK); | |
6510 | level_trigger &= (kn->kn_sfflags & EVFILT_SOCK_ALL_MASK); | |
6511 | ||
6512 | /* Find the level triggerred events that are already delivered */ | |
6513 | level_trigger &= kn->kn_hookid; | |
6514 | level_trigger &= EVFILT_SOCK_LEVEL_TRIGGER_MASK; | |
6515 | ||
6516 | /* Do not deliver level triggerred events more than once */ | |
6517 | if ((kn->kn_fflags & ~level_trigger) != 0) | |
316670eb A |
6518 | ret = 1; |
6519 | ||
39236c6e | 6520 | return (ret); |
316670eb A |
6521 | } |
6522 | ||
39037602 | 6523 | static int |
5ba3f43e | 6524 | filt_sockattach(struct knote *kn, __unused struct kevent_internal_s *kev) |
39037602 A |
6525 | { |
6526 | struct socket *so = (struct socket *)kn->kn_fp->f_fglob->fg_data; | |
6527 | ||
6528 | /* socket locked */ | |
6529 | kn->kn_hookid = 0; | |
6530 | if (KNOTE_ATTACH(&so->so_klist, kn)) | |
6531 | so->so_flags |= SOF_KNOTE; | |
6532 | ||
6533 | /* determine if event already fired */ | |
6534 | return filt_sockev_common(kn, so, 0); | |
6535 | } | |
6536 | ||
3e170ce0 | 6537 | static void |
39037602 | 6538 | filt_sockdetach(struct knote *kn) |
3e170ce0 | 6539 | { |
39037602 A |
6540 | struct socket *so = (struct socket *)kn->kn_fp->f_fglob->fg_data; |
6541 | socket_lock(so, 1); | |
3e170ce0 | 6542 | |
39037602 A |
6543 | if ((so->so_flags & SOF_KNOTE) != 0) |
6544 | if (KNOTE_DETACH(&so->so_klist, kn)) | |
6545 | so->so_flags &= ~SOF_KNOTE; | |
6546 | socket_unlock(so, 1); | |
6547 | } | |
6548 | ||
6549 | static int | |
6550 | filt_sockev(struct knote *kn, long hint) | |
6551 | { | |
6552 | int ret = 0, locked = 0; | |
6553 | struct socket *so = (struct socket *)kn->kn_fp->f_fglob->fg_data; | |
6554 | long ev_hint = (hint & SO_FILT_HINT_EV); | |
6555 | ||
6556 | if ((hint & SO_FILT_HINT_LOCKED) == 0) { | |
6557 | socket_lock(so, 1); | |
6558 | locked = 1; | |
3e170ce0 | 6559 | } |
39037602 A |
6560 | |
6561 | ret = filt_sockev_common(kn, so, ev_hint); | |
6562 | ||
6563 | if (locked) | |
6564 | socket_unlock(so, 1); | |
6565 | ||
6566 | return ret; | |
6567 | } | |
6568 | ||
6569 | ||
6570 | ||
6571 | /* | |
6572 | * filt_socktouch - update event state | |
6573 | */ | |
6574 | static int | |
6575 | filt_socktouch( | |
6576 | struct knote *kn, | |
6577 | struct kevent_internal_s *kev) | |
6578 | { | |
6579 | struct socket *so = (struct socket *)kn->kn_fp->f_fglob->fg_data; | |
6580 | uint32_t changed_flags; | |
6581 | int ret; | |
6582 | ||
6583 | socket_lock(so, 1); | |
6584 | ||
6585 | /* save off the [result] data and fflags */ | |
6586 | changed_flags = (kn->kn_sfflags ^ kn->kn_hookid); | |
6587 | ||
6588 | /* save off the new input fflags and data */ | |
6589 | kn->kn_sfflags = kev->fflags; | |
6590 | kn->kn_sdata = kev->data; | |
39037602 A |
6591 | |
6592 | /* restrict the current results to the (smaller?) set of new interest */ | |
6593 | /* | |
6594 | * For compatibility with previous implementations, we leave kn_fflags | |
6595 | * as they were before. | |
6596 | */ | |
6597 | //kn->kn_fflags &= kev->fflags; | |
6598 | ||
6599 | /* | |
6600 | * Since we keep track of events that are already | |
6601 | * delivered, if any of those events are not requested | |
6602 | * anymore the state related to them can be reset | |
6603 | */ | |
6604 | kn->kn_hookid &= | |
6605 | ~(changed_flags & EVFILT_SOCK_LEVEL_TRIGGER_MASK); | |
6606 | ||
6607 | /* determine if we have events to deliver */ | |
6608 | ret = filt_sockev_common(kn, so, 0); | |
6609 | ||
6610 | socket_unlock(so, 1); | |
6611 | ||
6612 | return ret; | |
6613 | } | |
6614 | ||
6615 | /* | |
6616 | * filt_sockprocess - query event fired state and return data | |
6617 | */ | |
6618 | static int | |
6619 | filt_sockprocess( | |
6620 | struct knote *kn, | |
6621 | struct filt_process_s *data, | |
6622 | struct kevent_internal_s *kev) | |
6623 | { | |
6624 | #pragma unused(data) | |
6625 | ||
6626 | struct socket *so = (struct socket *)kn->kn_fp->f_fglob->fg_data; | |
6627 | int ret = 0; | |
6628 | ||
6629 | socket_lock(so, 1); | |
6630 | ||
6631 | ret = filt_sockev_common(kn, so, 0); | |
6632 | if (ret) { | |
6633 | *kev = kn->kn_kevent; | |
6634 | ||
3e170ce0 A |
6635 | /* |
6636 | * Store the state of the events being delivered. This | |
6637 | * state can be used to deliver level triggered events | |
6638 | * ateast once and still avoid waking up the application | |
6639 | * multiple times as long as the event is active. | |
6640 | */ | |
6641 | if (kn->kn_fflags != 0) | |
6642 | kn->kn_hookid |= (kn->kn_fflags & | |
39037602 | 6643 | EVFILT_SOCK_LEVEL_TRIGGER_MASK); |
3e170ce0 A |
6644 | |
6645 | /* | |
6646 | * NOTE_RESUME and NOTE_SUSPEND are an exception, deliver | |
6647 | * only one of them and remember the last one that was | |
6648 | * delivered last | |
6649 | */ | |
6650 | if (kn->kn_fflags & NOTE_SUSPEND) | |
6651 | kn->kn_hookid &= ~NOTE_RESUME; | |
6652 | if (kn->kn_fflags & NOTE_RESUME) | |
6653 | kn->kn_hookid &= ~NOTE_SUSPEND; | |
39037602 A |
6654 | |
6655 | if (kn->kn_flags & EV_CLEAR) { | |
6656 | kn->kn_data = 0; | |
6657 | kn->kn_fflags = 0; | |
6658 | } | |
3e170ce0 | 6659 | } |
39037602 A |
6660 | |
6661 | socket_unlock(so, 1); | |
6662 | ||
6663 | return ret; | |
3e170ce0 A |
6664 | } |
6665 | ||
316670eb | 6666 | void |
39236c6e A |
6667 | get_sockev_state(struct socket *so, u_int32_t *statep) |
6668 | { | |
316670eb A |
6669 | u_int32_t state = *(statep); |
6670 | ||
39037602 A |
6671 | /* |
6672 | * If the state variable is already used by a previous event, | |
6673 | * reset it. | |
6674 | */ | |
6675 | if (state != 0) | |
6676 | return; | |
6677 | ||
39236c6e | 6678 | if (so->so_state & SS_ISCONNECTED) |
316670eb | 6679 | state |= SOCKEV_CONNECTED; |
39236c6e | 6680 | else |
316670eb | 6681 | state &= ~(SOCKEV_CONNECTED); |
39236c6e | 6682 | state |= ((so->so_state & SS_ISDISCONNECTED) ? SOCKEV_DISCONNECTED : 0); |
316670eb | 6683 | *(statep) = state; |
55e303ae A |
6684 | } |
6685 | ||
39236c6e A |
6686 | #define SO_LOCK_HISTORY_STR_LEN \ |
6687 | (2 * SO_LCKDBG_MAX * (2 + (2 * sizeof (void *)) + 1) + 1) | |
b0d623f7 | 6688 | |
39236c6e A |
6689 | __private_extern__ const char * |
6690 | solockhistory_nr(struct socket *so) | |
55e303ae | 6691 | { |
39236c6e A |
6692 | size_t n = 0; |
6693 | int i; | |
6694 | static char lock_history_str[SO_LOCK_HISTORY_STR_LEN]; | |
6695 | ||
6696 | bzero(lock_history_str, sizeof (lock_history_str)); | |
6697 | for (i = SO_LCKDBG_MAX - 1; i >= 0; i--) { | |
6698 | n += snprintf(lock_history_str + n, | |
6699 | SO_LOCK_HISTORY_STR_LEN - n, "%p:%p ", | |
6700 | so->lock_lr[(so->next_lock_lr + i) % SO_LCKDBG_MAX], | |
6701 | so->unlock_lr[(so->next_unlock_lr + i) % SO_LCKDBG_MAX]); | |
b0d623f7 | 6702 | } |
39236c6e | 6703 | return (lock_history_str); |
55e303ae A |
6704 | } |
6705 | ||
5ba3f43e | 6706 | void |
2d21ac55 | 6707 | socket_lock(struct socket *so, int refcount) |
91447636 | 6708 | { |
b0d623f7 | 6709 | void *lr_saved; |
0c530ab8 | 6710 | |
b0d623f7 | 6711 | lr_saved = __builtin_return_address(0); |
91447636 A |
6712 | |
6713 | if (so->so_proto->pr_lock) { | |
5ba3f43e | 6714 | (*so->so_proto->pr_lock)(so, refcount, lr_saved); |
2d21ac55 | 6715 | } else { |
91447636 | 6716 | #ifdef MORE_LOCKING_DEBUG |
5ba3f43e | 6717 | LCK_MTX_ASSERT(so->so_proto->pr_domain->dom_mtx, |
2d21ac55 | 6718 | LCK_MTX_ASSERT_NOTOWNED); |
91447636 A |
6719 | #endif |
6720 | lck_mtx_lock(so->so_proto->pr_domain->dom_mtx); | |
6721 | if (refcount) | |
6722 | so->so_usecount++; | |
b0d623f7 | 6723 | so->lock_lr[so->next_lock_lr] = lr_saved; |
0c530ab8 | 6724 | so->next_lock_lr = (so->next_lock_lr+1) % SO_LCKDBG_MAX; |
91447636 | 6725 | } |
5ba3f43e | 6726 | } |
91447636 | 6727 | |
5ba3f43e A |
6728 | void |
6729 | socket_lock_assert_owned(struct socket *so) | |
6730 | { | |
6731 | lck_mtx_t *mutex_held; | |
6732 | ||
6733 | if (so->so_proto->pr_getlock != NULL) | |
6734 | mutex_held = (*so->so_proto->pr_getlock)(so, 0); | |
6735 | else | |
6736 | mutex_held = so->so_proto->pr_domain->dom_mtx; | |
6737 | ||
6738 | LCK_MTX_ASSERT(mutex_held, LCK_MTX_ASSERT_OWNED); | |
91447636 A |
6739 | } |
6740 | ||
6741 | int | |
5ba3f43e A |
6742 | socket_try_lock(struct socket *so) |
6743 | { | |
6744 | lck_mtx_t *mtx; | |
6745 | ||
6746 | if (so->so_proto->pr_getlock != NULL) | |
6747 | mtx = (*so->so_proto->pr_getlock)(so, 0); | |
6748 | else | |
6749 | mtx = so->so_proto->pr_domain->dom_mtx; | |
6750 | ||
6751 | return (lck_mtx_try_lock(mtx)); | |
6752 | } | |
6753 | ||
6754 | void | |
2d21ac55 | 6755 | socket_unlock(struct socket *so, int refcount) |
91447636 | 6756 | { |
b0d623f7 | 6757 | void *lr_saved; |
2d21ac55 | 6758 | lck_mtx_t *mutex_held; |
91447636 | 6759 | |
b0d623f7 | 6760 | lr_saved = __builtin_return_address(0); |
91447636 | 6761 | |
39236c6e A |
6762 | if (so->so_proto == NULL) { |
6763 | panic("%s: null so_proto so=%p\n", __func__, so); | |
6764 | /* NOTREACHED */ | |
6765 | } | |
91447636 | 6766 | |
2d21ac55 | 6767 | if (so && so->so_proto->pr_unlock) { |
5ba3f43e | 6768 | (*so->so_proto->pr_unlock)(so, refcount, lr_saved); |
2d21ac55 | 6769 | } else { |
91447636 A |
6770 | mutex_held = so->so_proto->pr_domain->dom_mtx; |
6771 | #ifdef MORE_LOCKING_DEBUG | |
5ba3f43e | 6772 | LCK_MTX_ASSERT(mutex_held, LCK_MTX_ASSERT_OWNED); |
91447636 | 6773 | #endif |
b0d623f7 | 6774 | so->unlock_lr[so->next_unlock_lr] = lr_saved; |
0c530ab8 A |
6775 | so->next_unlock_lr = (so->next_unlock_lr+1) % SO_LCKDBG_MAX; |
6776 | ||
91447636 | 6777 | if (refcount) { |
39236c6e A |
6778 | if (so->so_usecount <= 0) { |
6779 | panic("%s: bad refcount=%d so=%p (%d, %d, %d) " | |
6780 | "lrh=%s", __func__, so->so_usecount, so, | |
6781 | SOCK_DOM(so), so->so_type, | |
6782 | SOCK_PROTO(so), solockhistory_nr(so)); | |
6783 | /* NOTREACHED */ | |
6784 | } | |
6785 | ||
91447636 | 6786 | so->so_usecount--; |
39236c6e | 6787 | if (so->so_usecount == 0) |
91447636 | 6788 | sofreelastref(so, 1); |
91447636 A |
6789 | } |
6790 | lck_mtx_unlock(mutex_held); | |
6791 | } | |
91447636 | 6792 | } |
2d21ac55 A |
6793 | |
6794 | /* Called with socket locked, will unlock socket */ | |
91447636 | 6795 | void |
2d21ac55 | 6796 | sofree(struct socket *so) |
91447636 | 6797 | { |
2d21ac55 | 6798 | lck_mtx_t *mutex_held; |
39236c6e | 6799 | |
2d21ac55 | 6800 | if (so->so_proto->pr_getlock != NULL) |
91447636 | 6801 | mutex_held = (*so->so_proto->pr_getlock)(so, 0); |
2d21ac55 | 6802 | else |
91447636 | 6803 | mutex_held = so->so_proto->pr_domain->dom_mtx; |
5ba3f43e | 6804 | LCK_MTX_ASSERT(mutex_held, LCK_MTX_ASSERT_OWNED); |
2d21ac55 | 6805 | |
91447636 A |
6806 | sofreelastref(so, 0); |
6807 | } | |
6808 | ||
6809 | void | |
2d21ac55 | 6810 | soreference(struct socket *so) |
91447636 A |
6811 | { |
6812 | socket_lock(so, 1); /* locks & take one reference on socket */ | |
6813 | socket_unlock(so, 0); /* unlock only */ | |
6814 | } | |
6815 | ||
6816 | void | |
2d21ac55 | 6817 | sodereference(struct socket *so) |
91447636 A |
6818 | { |
6819 | socket_lock(so, 0); | |
6820 | socket_unlock(so, 1); | |
6821 | } | |
2d21ac55 A |
6822 | |
6823 | /* | |
6824 | * Set or clear SOF_MULTIPAGES on the socket to enable or disable the | |
6825 | * possibility of using jumbo clusters. Caller must ensure to hold | |
6826 | * the socket lock. | |
6827 | */ | |
6828 | void | |
6829 | somultipages(struct socket *so, boolean_t set) | |
6830 | { | |
6831 | if (set) | |
6832 | so->so_flags |= SOF_MULTIPAGES; | |
6833 | else | |
6834 | so->so_flags &= ~SOF_MULTIPAGES; | |
6835 | } | |
b0d623f7 | 6836 | |
fe8ab488 A |
6837 | void |
6838 | soif2kcl(struct socket *so, boolean_t set) | |
6839 | { | |
6840 | if (set) | |
6841 | so->so_flags1 |= SOF1_IF_2KCL; | |
6842 | else | |
6843 | so->so_flags1 &= ~SOF1_IF_2KCL; | |
6844 | } | |
6845 | ||
b0d623f7 A |
6846 | int |
6847 | so_isdstlocal(struct socket *so) { | |
6848 | ||
6849 | struct inpcb *inp = (struct inpcb *)so->so_pcb; | |
6850 | ||
39236c6e A |
6851 | if (SOCK_DOM(so) == PF_INET) |
6852 | return (inaddr_local(inp->inp_faddr)); | |
6853 | else if (SOCK_DOM(so) == PF_INET6) | |
6854 | return (in6addr_local(&inp->in6p_faddr)); | |
6855 | ||
6856 | return (0); | |
b0d623f7 | 6857 | } |
6d2010ae A |
6858 | |
6859 | int | |
6860 | sosetdefunct(struct proc *p, struct socket *so, int level, boolean_t noforce) | |
6861 | { | |
39236c6e | 6862 | struct sockbuf *rcv, *snd; |
6d2010ae A |
6863 | int err = 0, defunct; |
6864 | ||
39236c6e A |
6865 | rcv = &so->so_rcv; |
6866 | snd = &so->so_snd; | |
6867 | ||
6d2010ae A |
6868 | defunct = (so->so_flags & SOF_DEFUNCT); |
6869 | if (defunct) { | |
39236c6e | 6870 | if (!(snd->sb_flags & rcv->sb_flags & SB_DROP)) { |
6d2010ae | 6871 | panic("%s: SB_DROP not set", __func__); |
39236c6e A |
6872 | /* NOTREACHED */ |
6873 | } | |
6d2010ae A |
6874 | goto done; |
6875 | } | |
6876 | ||
6877 | if (so->so_flags & SOF_NODEFUNCT) { | |
6878 | if (noforce) { | |
6879 | err = EOPNOTSUPP; | |
d9a64523 A |
6880 | if (p != PROC_NULL) { |
6881 | SODEFUNCTLOG("%s[%d, %s]: (target pid %d " | |
6882 | "name %s level %d) so 0x%llx [%d,%d] " | |
6883 | "is not eligible for defunct " | |
6884 | "(%d)\n", __func__, proc_selfpid(), | |
6885 | proc_best_name(current_proc()), proc_pid(p), | |
6886 | proc_best_name(p), level, | |
6887 | (uint64_t)DEBUG_KERNEL_ADDRPERM(so), | |
6888 | SOCK_DOM(so), SOCK_TYPE(so), err); | |
6889 | } | |
6890 | return (err); | |
6891 | } | |
6892 | so->so_flags &= ~SOF_NODEFUNCT; | |
6893 | if (p != PROC_NULL) { | |
39037602 A |
6894 | SODEFUNCTLOG("%s[%d, %s]: (target pid %d " |
6895 | "name %s level %d) so 0x%llx [%d,%d] " | |
d9a64523 | 6896 | "defunct by force " |
39037602 A |
6897 | "(%d)\n", __func__, proc_selfpid(), |
6898 | proc_best_name(current_proc()), proc_pid(p), | |
6899 | proc_best_name(p), level, | |
6900 | (uint64_t)DEBUG_KERNEL_ADDRPERM(so), | |
6901 | SOCK_DOM(so), SOCK_TYPE(so), err); | |
6d2010ae | 6902 | } |
3e170ce0 A |
6903 | } else if (so->so_flags1 & SOF1_EXTEND_BK_IDLE_WANTED) { |
6904 | struct inpcb *inp = (struct inpcb *)so->so_pcb; | |
6905 | struct ifnet *ifp = inp->inp_last_outifp; | |
6906 | ||
6907 | if (ifp && IFNET_IS_CELLULAR(ifp)) { | |
6908 | OSIncrementAtomic(&soextbkidlestat.so_xbkidle_nocell); | |
6909 | } else if (so->so_flags & SOF_DELEGATED) { | |
6910 | OSIncrementAtomic(&soextbkidlestat.so_xbkidle_nodlgtd); | |
6911 | } else if (soextbkidlestat.so_xbkidle_time == 0) { | |
6912 | OSIncrementAtomic(&soextbkidlestat.so_xbkidle_notime); | |
d9a64523 | 6913 | } else if (noforce && p != PROC_NULL) { |
3e170ce0 | 6914 | OSIncrementAtomic(&soextbkidlestat.so_xbkidle_active); |
39037602 | 6915 | |
3e170ce0 A |
6916 | so->so_flags1 |= SOF1_EXTEND_BK_IDLE_INPROG; |
6917 | so->so_extended_bk_start = net_uptime(); | |
6918 | OSBitOrAtomic(P_LXBKIDLEINPROG, &p->p_ladvflag); | |
39037602 | 6919 | |
3e170ce0 | 6920 | inpcb_timer_sched(inp->inp_pcbinfo, INPCB_TIMER_LAZY); |
39037602 | 6921 | |
3e170ce0 | 6922 | err = EOPNOTSUPP; |
d9a64523 A |
6923 | SODEFUNCTLOG("%s[%d, %s]: (target pid %d " |
6924 | "name %s level %d) so 0x%llx [%d,%d] " | |
6925 | "extend bk idle " | |
6926 | "(%d)\n", __func__, proc_selfpid(), | |
39037602 A |
6927 | proc_best_name(current_proc()), proc_pid(p), |
6928 | proc_best_name(p), level, | |
6929 | (uint64_t)DEBUG_KERNEL_ADDRPERM(so), | |
d9a64523 | 6930 | SOCK_DOM(so), SOCK_TYPE(so), err); |
3e170ce0 A |
6931 | return (err); |
6932 | } else { | |
6933 | OSIncrementAtomic(&soextbkidlestat.so_xbkidle_forced); | |
6934 | } | |
6d2010ae A |
6935 | } |
6936 | ||
6937 | so->so_flags |= SOF_DEFUNCT; | |
39236c6e | 6938 | |
6d2010ae | 6939 | /* Prevent further data from being appended to the socket buffers */ |
39236c6e A |
6940 | snd->sb_flags |= SB_DROP; |
6941 | rcv->sb_flags |= SB_DROP; | |
6942 | ||
6943 | /* Flush any existing data in the socket buffers */ | |
6944 | if (rcv->sb_cc != 0) { | |
6945 | rcv->sb_flags &= ~SB_SEL; | |
6946 | selthreadclear(&rcv->sb_sel); | |
6947 | sbrelease(rcv); | |
6948 | } | |
6949 | if (snd->sb_cc != 0) { | |
6950 | snd->sb_flags &= ~SB_SEL; | |
6951 | selthreadclear(&snd->sb_sel); | |
6952 | sbrelease(snd); | |
6953 | } | |
6d2010ae A |
6954 | |
6955 | done: | |
d9a64523 A |
6956 | if (p != PROC_NULL) { |
6957 | SODEFUNCTLOG("%s[%d, %s]: (target pid %d name %s level %d) " | |
6958 | "so 0x%llx [%d,%d] %s defunct%s\n", __func__, | |
6959 | proc_selfpid(), proc_best_name(current_proc()), | |
6960 | proc_pid(p), proc_best_name(p), level, | |
6961 | (uint64_t)DEBUG_KERNEL_ADDRPERM(so), SOCK_DOM(so), | |
6962 | SOCK_TYPE(so), defunct ? "is already" : "marked as", | |
6963 | (so->so_flags1 & SOF1_EXTEND_BK_IDLE_WANTED) ? | |
6964 | " extbkidle" : ""); | |
6965 | } | |
6d2010ae A |
6966 | return (err); |
6967 | } | |
6968 | ||
6969 | int | |
6970 | sodefunct(struct proc *p, struct socket *so, int level) | |
6971 | { | |
6972 | struct sockbuf *rcv, *snd; | |
6973 | ||
39236c6e | 6974 | if (!(so->so_flags & SOF_DEFUNCT)) { |
6d2010ae | 6975 | panic("%s improperly called", __func__); |
39236c6e A |
6976 | /* NOTREACHED */ |
6977 | } | |
6d2010ae A |
6978 | if (so->so_state & SS_DEFUNCT) |
6979 | goto done; | |
6980 | ||
6981 | rcv = &so->so_rcv; | |
6982 | snd = &so->so_snd; | |
6983 | ||
39236c6e A |
6984 | if (SOCK_DOM(so) == PF_INET || SOCK_DOM(so) == PF_INET6) { |
6985 | char s[MAX_IPv6_STR_LEN]; | |
6986 | char d[MAX_IPv6_STR_LEN]; | |
6987 | struct inpcb *inp = sotoinpcb(so); | |
6988 | ||
d9a64523 A |
6989 | if (p != PROC_NULL) { |
6990 | SODEFUNCTLOG( | |
6991 | "%s[%d, %s]: (target pid %d name %s level %d) " | |
6992 | "so 0x%llx [%s %s:%d -> %s:%d] is now defunct " | |
6993 | "[rcv_si 0x%x, snd_si 0x%x, rcv_fl 0x%x, " | |
6994 | " snd_fl 0x%x]\n", __func__, | |
6995 | proc_selfpid(), proc_best_name(current_proc()), | |
6996 | proc_pid(p), proc_best_name(p), level, | |
6997 | (uint64_t)DEBUG_KERNEL_ADDRPERM(so), | |
6998 | (SOCK_TYPE(so) == SOCK_STREAM) ? "TCP" : "UDP", | |
6999 | inet_ntop(SOCK_DOM(so), ((SOCK_DOM(so) == PF_INET) ? | |
7000 | (void *)&inp->inp_laddr.s_addr : | |
7001 | (void *)&inp->in6p_laddr), | |
7002 | s, sizeof (s)), ntohs(inp->in6p_lport), | |
7003 | inet_ntop(SOCK_DOM(so), (SOCK_DOM(so) == PF_INET) ? | |
7004 | (void *)&inp->inp_faddr.s_addr : | |
7005 | (void *)&inp->in6p_faddr, | |
7006 | d, sizeof (d)), ntohs(inp->in6p_fport), | |
7007 | (uint32_t)rcv->sb_sel.si_flags, | |
7008 | (uint32_t)snd->sb_sel.si_flags, | |
7009 | rcv->sb_flags, snd->sb_flags); | |
7010 | } | |
7011 | } else if (p != PROC_NULL) { | |
39037602 A |
7012 | SODEFUNCTLOG("%s[%d, %s]: (target pid %d name %s level %d) " |
7013 | "so 0x%llx [%d,%d] is now defunct [rcv_si 0x%x, " | |
7014 | "snd_si 0x%x, rcv_fl 0x%x, snd_fl 0x%x]\n", __func__, | |
7015 | proc_selfpid(), proc_best_name(current_proc()), | |
7016 | proc_pid(p), proc_best_name(p), level, | |
7017 | (uint64_t)DEBUG_KERNEL_ADDRPERM(so), | |
7018 | SOCK_DOM(so), SOCK_TYPE(so), | |
7019 | (uint32_t)rcv->sb_sel.si_flags, | |
39236c6e | 7020 | (uint32_t)snd->sb_sel.si_flags, rcv->sb_flags, |
39037602 | 7021 | snd->sb_flags); |
39236c6e | 7022 | } |
6d2010ae A |
7023 | |
7024 | /* | |
7025 | * Unwedge threads blocked on sbwait() and sb_lock(). | |
7026 | */ | |
7027 | sbwakeup(rcv); | |
7028 | sbwakeup(snd); | |
7029 | ||
fe8ab488 | 7030 | so->so_flags1 |= SOF1_DEFUNCTINPROG; |
6d2010ae | 7031 | if (rcv->sb_flags & SB_LOCK) |
39236c6e | 7032 | sbunlock(rcv, TRUE); /* keep socket locked */ |
6d2010ae | 7033 | if (snd->sb_flags & SB_LOCK) |
39236c6e | 7034 | sbunlock(snd, TRUE); /* keep socket locked */ |
6d2010ae A |
7035 | |
7036 | /* | |
7037 | * Flush the buffers and disconnect. We explicitly call shutdown | |
7038 | * on both data directions to ensure that SS_CANT{RCV,SEND}MORE | |
7039 | * states are set for the socket. This would also flush out data | |
7040 | * hanging off the receive list of this socket. | |
7041 | */ | |
fe8ab488 A |
7042 | (void) soshutdownlock_final(so, SHUT_RD); |
7043 | (void) soshutdownlock_final(so, SHUT_WR); | |
6d2010ae A |
7044 | (void) sodisconnectlocked(so); |
7045 | ||
7046 | /* | |
7047 | * Explicitly handle connectionless-protocol disconnection | |
7048 | * and release any remaining data in the socket buffers. | |
7049 | */ | |
5ba3f43e | 7050 | if (!(so->so_state & SS_ISDISCONNECTED)) |
6d2010ae A |
7051 | (void) soisdisconnected(so); |
7052 | ||
7053 | if (so->so_error == 0) | |
7054 | so->so_error = EBADF; | |
7055 | ||
39236c6e A |
7056 | if (rcv->sb_cc != 0) { |
7057 | rcv->sb_flags &= ~SB_SEL; | |
7058 | selthreadclear(&rcv->sb_sel); | |
6d2010ae | 7059 | sbrelease(rcv); |
39236c6e A |
7060 | } |
7061 | if (snd->sb_cc != 0) { | |
7062 | snd->sb_flags &= ~SB_SEL; | |
7063 | selthreadclear(&snd->sb_sel); | |
6d2010ae | 7064 | sbrelease(snd); |
39236c6e | 7065 | } |
6d2010ae | 7066 | so->so_state |= SS_DEFUNCT; |
39037602 | 7067 | OSIncrementAtomicLong((volatile long *)&sodefunct_calls); |
6d2010ae A |
7068 | |
7069 | done: | |
7070 | return (0); | |
7071 | } | |
316670eb | 7072 | |
3e170ce0 A |
7073 | int |
7074 | soresume(struct proc *p, struct socket *so, int locked) | |
7075 | { | |
7076 | if (locked == 0) | |
7077 | socket_lock(so, 1); | |
7078 | ||
7079 | if (so->so_flags1 & SOF1_EXTEND_BK_IDLE_INPROG) { | |
39037602 A |
7080 | SODEFUNCTLOG("%s[%d, %s]: (target pid %d name %s) so 0x%llx " |
7081 | "[%d,%d] resumed from bk idle\n", | |
7082 | __func__, proc_selfpid(), proc_best_name(current_proc()), | |
7083 | proc_pid(p), proc_best_name(p), | |
3e170ce0 | 7084 | (uint64_t)DEBUG_KERNEL_ADDRPERM(so), |
39037602 | 7085 | SOCK_DOM(so), SOCK_TYPE(so)); |
3e170ce0 A |
7086 | |
7087 | so->so_flags1 &= ~SOF1_EXTEND_BK_IDLE_INPROG; | |
7088 | so->so_extended_bk_start = 0; | |
7089 | OSBitAndAtomic(~P_LXBKIDLEINPROG, &p->p_ladvflag); | |
7090 | ||
7091 | OSIncrementAtomic(&soextbkidlestat.so_xbkidle_resumed); | |
7092 | OSDecrementAtomic(&soextbkidlestat.so_xbkidle_active); | |
7093 | VERIFY(soextbkidlestat.so_xbkidle_active >= 0); | |
7094 | } | |
7095 | if (locked == 0) | |
7096 | socket_unlock(so, 1); | |
7097 | ||
7098 | return (0); | |
7099 | } | |
7100 | ||
7101 | /* | |
7102 | * Does not attempt to account for sockets that are delegated from | |
7103 | * the current process | |
7104 | */ | |
7105 | int | |
7106 | so_set_extended_bk_idle(struct socket *so, int optval) | |
7107 | { | |
7108 | int error = 0; | |
7109 | ||
7110 | if ((SOCK_DOM(so) != PF_INET && SOCK_DOM(so) != PF_INET6) || | |
7111 | SOCK_PROTO(so) != IPPROTO_TCP) { | |
7112 | OSDecrementAtomic(&soextbkidlestat.so_xbkidle_notsupp); | |
7113 | error = EOPNOTSUPP; | |
7114 | } else if (optval == 0) { | |
7115 | so->so_flags1 &= ~SOF1_EXTEND_BK_IDLE_WANTED; | |
7116 | ||
7117 | soresume(current_proc(), so, 1); | |
7118 | } else { | |
7119 | struct proc *p = current_proc(); | |
7120 | int i; | |
7121 | struct filedesc *fdp; | |
7122 | int count = 0; | |
7123 | ||
5ba3f43e A |
7124 | /* |
7125 | * Unlock socket to avoid lock ordering issue with | |
7126 | * the proc fd table lock | |
7127 | */ | |
7128 | socket_unlock(so, 0); | |
7129 | ||
3e170ce0 A |
7130 | proc_fdlock(p); |
7131 | ||
7132 | fdp = p->p_fd; | |
7133 | for (i = 0; i < fdp->fd_nfiles; i++) { | |
7134 | struct fileproc *fp = fdp->fd_ofiles[i]; | |
7135 | struct socket *so2; | |
7136 | ||
7137 | if (fp == NULL || | |
7138 | (fdp->fd_ofileflags[i] & UF_RESERVED) != 0 || | |
7139 | FILEGLOB_DTYPE(fp->f_fglob) != DTYPE_SOCKET) | |
7140 | continue; | |
7141 | ||
7142 | so2 = (struct socket *)fp->f_fglob->fg_data; | |
7143 | if (so != so2 && | |
7144 | so2->so_flags1 & SOF1_EXTEND_BK_IDLE_WANTED) | |
7145 | count++; | |
7146 | if (count >= soextbkidlestat.so_xbkidle_maxperproc) | |
7147 | break; | |
7148 | } | |
5ba3f43e A |
7149 | proc_fdunlock(p); |
7150 | ||
7151 | socket_lock(so, 0); | |
7152 | ||
3e170ce0 A |
7153 | if (count >= soextbkidlestat.so_xbkidle_maxperproc) { |
7154 | OSIncrementAtomic(&soextbkidlestat.so_xbkidle_toomany); | |
7155 | error = EBUSY; | |
7156 | } else if (so->so_flags & SOF_DELEGATED) { | |
7157 | OSIncrementAtomic(&soextbkidlestat.so_xbkidle_nodlgtd); | |
7158 | error = EBUSY; | |
7159 | } else { | |
7160 | so->so_flags1 |= SOF1_EXTEND_BK_IDLE_WANTED; | |
7161 | OSIncrementAtomic(&soextbkidlestat.so_xbkidle_wantok); | |
7162 | } | |
39037602 | 7163 | SODEFUNCTLOG("%s[%d, %s]: so 0x%llx [%d,%d] " |
3e170ce0 | 7164 | "%s marked for extended bk idle\n", |
39037602 | 7165 | __func__, proc_selfpid(), proc_best_name(current_proc()), |
3e170ce0 A |
7166 | (uint64_t)DEBUG_KERNEL_ADDRPERM(so), |
7167 | SOCK_DOM(so), SOCK_TYPE(so), | |
7168 | (so->so_flags1 & SOF1_EXTEND_BK_IDLE_WANTED) ? | |
39037602 | 7169 | "is" : "not"); |
3e170ce0 A |
7170 | } |
7171 | ||
7172 | return (error); | |
7173 | } | |
7174 | ||
7175 | static void | |
7176 | so_stop_extended_bk_idle(struct socket *so) | |
7177 | { | |
7178 | so->so_flags1 &= ~SOF1_EXTEND_BK_IDLE_INPROG; | |
7179 | so->so_extended_bk_start = 0; | |
7180 | ||
7181 | OSDecrementAtomic(&soextbkidlestat.so_xbkidle_active); | |
7182 | VERIFY(soextbkidlestat.so_xbkidle_active >= 0); | |
7183 | /* | |
7184 | * Force defunct | |
7185 | */ | |
7186 | sosetdefunct(current_proc(), so, | |
7187 | SHUTDOWN_SOCKET_LEVEL_DISCONNECT_INTERNAL, FALSE); | |
7188 | if (so->so_flags & SOF_DEFUNCT) { | |
7189 | sodefunct(current_proc(), so, | |
7190 | SHUTDOWN_SOCKET_LEVEL_DISCONNECT_INTERNAL); | |
7191 | } | |
7192 | } | |
7193 | ||
7194 | void | |
7195 | so_drain_extended_bk_idle(struct socket *so) | |
7196 | { | |
7197 | if (so && (so->so_flags1 & SOF1_EXTEND_BK_IDLE_INPROG)) { | |
7198 | /* | |
7199 | * Only penalize sockets that have outstanding data | |
7200 | */ | |
7201 | if (so->so_rcv.sb_cc || so->so_snd.sb_cc) { | |
7202 | so_stop_extended_bk_idle(so); | |
7203 | ||
7204 | OSIncrementAtomic(&soextbkidlestat.so_xbkidle_drained); | |
7205 | } | |
7206 | } | |
7207 | } | |
7208 | ||
7209 | /* | |
7210 | * Return values tells if socket is still in extended background idle | |
7211 | */ | |
7212 | int | |
7213 | so_check_extended_bk_idle_time(struct socket *so) | |
7214 | { | |
7215 | int ret = 1; | |
7216 | ||
7217 | if ((so->so_flags1 & SOF1_EXTEND_BK_IDLE_INPROG)) { | |
39037602 A |
7218 | SODEFUNCTLOG("%s[%d, %s]: so 0x%llx [%d,%d]\n", |
7219 | __func__, proc_selfpid(), proc_best_name(current_proc()), | |
3e170ce0 | 7220 | (uint64_t)DEBUG_KERNEL_ADDRPERM(so), |
39037602 | 7221 | SOCK_DOM(so), SOCK_TYPE(so)); |
3e170ce0 A |
7222 | if (net_uptime() - so->so_extended_bk_start > |
7223 | soextbkidlestat.so_xbkidle_time) { | |
7224 | so_stop_extended_bk_idle(so); | |
7225 | ||
7226 | OSIncrementAtomic(&soextbkidlestat.so_xbkidle_expired); | |
7227 | ||
7228 | ret = 0; | |
7229 | } else { | |
7230 | struct inpcb *inp = (struct inpcb *)so->so_pcb; | |
7231 | ||
7232 | inpcb_timer_sched(inp->inp_pcbinfo, INPCB_TIMER_LAZY); | |
7233 | OSIncrementAtomic(&soextbkidlestat.so_xbkidle_resched); | |
7234 | } | |
7235 | } | |
39037602 | 7236 | |
3e170ce0 A |
7237 | return (ret); |
7238 | } | |
7239 | ||
7240 | void | |
7241 | resume_proc_sockets(proc_t p) | |
7242 | { | |
7243 | if (p->p_ladvflag & P_LXBKIDLEINPROG) { | |
7244 | struct filedesc *fdp; | |
7245 | int i; | |
7246 | ||
7247 | proc_fdlock(p); | |
7248 | fdp = p->p_fd; | |
7249 | for (i = 0; i < fdp->fd_nfiles; i++) { | |
7250 | struct fileproc *fp; | |
7251 | struct socket *so; | |
7252 | ||
7253 | fp = fdp->fd_ofiles[i]; | |
39037602 | 7254 | if (fp == NULL || |
3e170ce0 A |
7255 | (fdp->fd_ofileflags[i] & UF_RESERVED) != 0 || |
7256 | FILEGLOB_DTYPE(fp->f_fglob) != DTYPE_SOCKET) | |
7257 | continue; | |
7258 | ||
7259 | so = (struct socket *)fp->f_fglob->fg_data; | |
7260 | (void) soresume(p, so, 0); | |
7261 | } | |
7262 | proc_fdunlock(p); | |
7263 | ||
7264 | OSBitAndAtomic(~P_LXBKIDLEINPROG, &p->p_ladvflag); | |
7265 | } | |
7266 | } | |
7267 | ||
316670eb A |
7268 | __private_extern__ int |
7269 | so_set_recv_anyif(struct socket *so, int optval) | |
7270 | { | |
7271 | int ret = 0; | |
7272 | ||
7273 | #if INET6 | |
39236c6e | 7274 | if (SOCK_DOM(so) == PF_INET || SOCK_DOM(so) == PF_INET6) { |
316670eb | 7275 | #else |
39236c6e | 7276 | if (SOCK_DOM(so) == PF_INET) { |
316670eb A |
7277 | #endif /* !INET6 */ |
7278 | if (optval) | |
7279 | sotoinpcb(so)->inp_flags |= INP_RECV_ANYIF; | |
7280 | else | |
7281 | sotoinpcb(so)->inp_flags &= ~INP_RECV_ANYIF; | |
316670eb A |
7282 | } |
7283 | ||
5ba3f43e | 7284 | |
316670eb A |
7285 | return (ret); |
7286 | } | |
7287 | ||
7288 | __private_extern__ int | |
7289 | so_get_recv_anyif(struct socket *so) | |
7290 | { | |
7291 | int ret = 0; | |
7292 | ||
7293 | #if INET6 | |
39236c6e | 7294 | if (SOCK_DOM(so) == PF_INET || SOCK_DOM(so) == PF_INET6) { |
316670eb | 7295 | #else |
39236c6e | 7296 | if (SOCK_DOM(so) == PF_INET) { |
316670eb A |
7297 | #endif /* !INET6 */ |
7298 | ret = (sotoinpcb(so)->inp_flags & INP_RECV_ANYIF) ? 1 : 0; | |
7299 | } | |
7300 | ||
7301 | return (ret); | |
7302 | } | |
39236c6e A |
7303 | |
7304 | int | |
7305 | so_set_restrictions(struct socket *so, uint32_t vals) | |
7306 | { | |
7307 | int nocell_old, nocell_new; | |
fe8ab488 | 7308 | int noexpensive_old, noexpensive_new; |
39236c6e A |
7309 | |
7310 | /* | |
7311 | * Deny-type restrictions are trapdoors; once set they cannot be | |
7312 | * unset for the lifetime of the socket. This allows them to be | |
7313 | * issued by a framework on behalf of the application without | |
7314 | * having to worry that they can be undone. | |
7315 | * | |
7316 | * Note here that socket-level restrictions overrides any protocol | |
7317 | * level restrictions. For instance, SO_RESTRICT_DENY_CELLULAR | |
7318 | * socket restriction issued on the socket has a higher precendence | |
7319 | * than INP_NO_IFT_CELLULAR. The latter is affected by the UUID | |
7320 | * policy PROC_UUID_NO_CELLULAR for unrestricted sockets only, | |
7321 | * i.e. when SO_RESTRICT_DENY_CELLULAR has not been issued. | |
7322 | */ | |
7323 | nocell_old = (so->so_restrictions & SO_RESTRICT_DENY_CELLULAR); | |
fe8ab488 | 7324 | noexpensive_old = (so->so_restrictions & SO_RESTRICT_DENY_EXPENSIVE); |
39236c6e | 7325 | so->so_restrictions |= (vals & (SO_RESTRICT_DENY_IN | |
3e170ce0 | 7326 | SO_RESTRICT_DENY_OUT | SO_RESTRICT_DENY_CELLULAR | |
fe8ab488 | 7327 | SO_RESTRICT_DENY_EXPENSIVE)); |
39236c6e | 7328 | nocell_new = (so->so_restrictions & SO_RESTRICT_DENY_CELLULAR); |
fe8ab488 | 7329 | noexpensive_new = (so->so_restrictions & SO_RESTRICT_DENY_EXPENSIVE); |
39236c6e A |
7330 | |
7331 | /* we can only set, not clear restrictions */ | |
fe8ab488 A |
7332 | if ((nocell_new - nocell_old) == 0 && |
7333 | (noexpensive_new - noexpensive_old) == 0) | |
7334 | return (0); | |
39236c6e A |
7335 | #if INET6 |
7336 | if (SOCK_DOM(so) == PF_INET || SOCK_DOM(so) == PF_INET6) { | |
7337 | #else | |
7338 | if (SOCK_DOM(so) == PF_INET) { | |
7339 | #endif /* !INET6 */ | |
fe8ab488 | 7340 | if (nocell_new - nocell_old != 0) { |
3e170ce0 A |
7341 | /* |
7342 | * if deny cellular is now set, do what's needed | |
7343 | * for INPCB | |
7344 | */ | |
fe8ab488 A |
7345 | inp_set_nocellular(sotoinpcb(so)); |
7346 | } | |
7347 | if (noexpensive_new - noexpensive_old != 0) { | |
7348 | inp_set_noexpensive(sotoinpcb(so)); | |
7349 | } | |
39236c6e A |
7350 | } |
7351 | ||
5ba3f43e A |
7352 | if (SOCK_DOM(so) == PF_MULTIPATH) |
7353 | mptcp_set_restrictions(so); | |
7354 | ||
fe8ab488 | 7355 | return (0); |
39236c6e A |
7356 | } |
7357 | ||
7358 | uint32_t | |
7359 | so_get_restrictions(struct socket *so) | |
7360 | { | |
7361 | return (so->so_restrictions & (SO_RESTRICT_DENY_IN | | |
3e170ce0 | 7362 | SO_RESTRICT_DENY_OUT | |
fe8ab488 | 7363 | SO_RESTRICT_DENY_CELLULAR | SO_RESTRICT_DENY_EXPENSIVE)); |
39236c6e A |
7364 | } |
7365 | ||
39236c6e A |
7366 | int |
7367 | so_set_effective_pid(struct socket *so, int epid, struct proc *p) | |
7368 | { | |
7369 | struct proc *ep = PROC_NULL; | |
7370 | int error = 0; | |
7371 | ||
7372 | /* pid 0 is reserved for kernel */ | |
7373 | if (epid == 0) { | |
7374 | error = EINVAL; | |
7375 | goto done; | |
7376 | } | |
7377 | ||
7378 | /* | |
7379 | * If this is an in-kernel socket, prevent its delegate | |
7380 | * association from changing unless the socket option is | |
7381 | * coming from within the kernel itself. | |
7382 | */ | |
7383 | if (so->last_pid == 0 && p != kernproc) { | |
7384 | error = EACCES; | |
7385 | goto done; | |
7386 | } | |
7387 | ||
7388 | /* | |
7389 | * If this is issued by a process that's recorded as the | |
7390 | * real owner of the socket, or if the pid is the same as | |
7391 | * the process's own pid, then proceed. Otherwise ensure | |
7392 | * that the issuing process has the necessary privileges. | |
7393 | */ | |
7394 | if (epid != so->last_pid || epid != proc_pid(p)) { | |
7395 | if ((error = priv_check_cred(kauth_cred_get(), | |
7396 | PRIV_NET_PRIVILEGED_SOCKET_DELEGATE, 0))) { | |
7397 | error = EACCES; | |
7398 | goto done; | |
7399 | } | |
7400 | } | |
7401 | ||
7402 | /* Find the process that corresponds to the effective pid */ | |
7403 | if ((ep = proc_find(epid)) == PROC_NULL) { | |
7404 | error = ESRCH; | |
7405 | goto done; | |
7406 | } | |
7407 | ||
7408 | /* | |
7409 | * If a process tries to delegate the socket to itself, then | |
7410 | * there's really nothing to do; treat it as a way for the | |
7411 | * delegate association to be cleared. Note that we check | |
7412 | * the passed-in proc rather than calling proc_selfpid(), | |
7413 | * as we need to check the process issuing the socket option | |
7414 | * which could be kernproc. Given that we don't allow 0 for | |
7415 | * effective pid, it means that a delegated in-kernel socket | |
7416 | * stays delegated during its lifetime (which is probably OK.) | |
7417 | */ | |
7418 | if (epid == proc_pid(p)) { | |
7419 | so->so_flags &= ~SOF_DELEGATED; | |
7420 | so->e_upid = 0; | |
7421 | so->e_pid = 0; | |
7422 | uuid_clear(so->e_uuid); | |
7423 | } else { | |
7424 | so->so_flags |= SOF_DELEGATED; | |
7425 | so->e_upid = proc_uniqueid(ep); | |
7426 | so->e_pid = proc_pid(ep); | |
7427 | proc_getexecutableuuid(ep, so->e_uuid, sizeof (so->e_uuid)); | |
7428 | } | |
39236c6e A |
7429 | done: |
7430 | if (error == 0 && net_io_policy_log) { | |
7431 | uuid_string_t buf; | |
7432 | ||
7433 | uuid_unparse(so->e_uuid, buf); | |
7434 | log(LOG_DEBUG, "%s[%s,%d]: so 0x%llx [%d,%d] epid %d (%s) " | |
7435 | "euuid %s%s\n", __func__, proc_name_address(p), | |
3e170ce0 A |
7436 | proc_pid(p), (uint64_t)DEBUG_KERNEL_ADDRPERM(so), |
7437 | SOCK_DOM(so), SOCK_TYPE(so), | |
7438 | so->e_pid, proc_name_address(ep), buf, | |
39236c6e A |
7439 | ((so->so_flags & SOF_DELEGATED) ? " [delegated]" : "")); |
7440 | } else if (error != 0 && net_io_policy_log) { | |
7441 | log(LOG_ERR, "%s[%s,%d]: so 0x%llx [%d,%d] epid %d (%s) " | |
7442 | "ERROR (%d)\n", __func__, proc_name_address(p), | |
3e170ce0 A |
7443 | proc_pid(p), (uint64_t)DEBUG_KERNEL_ADDRPERM(so), |
7444 | SOCK_DOM(so), SOCK_TYPE(so), | |
7445 | epid, (ep == PROC_NULL) ? "PROC_NULL" : | |
39236c6e A |
7446 | proc_name_address(ep), error); |
7447 | } | |
7448 | ||
fe8ab488 A |
7449 | /* Update this socket's policy upon success */ |
7450 | if (error == 0) { | |
7451 | so->so_policy_gencnt *= -1; | |
7452 | so_update_policy(so); | |
7453 | #if NECP | |
7454 | so_update_necp_policy(so, NULL, NULL); | |
7455 | #endif /* NECP */ | |
7456 | } | |
7457 | ||
39236c6e A |
7458 | if (ep != PROC_NULL) |
7459 | proc_rele(ep); | |
7460 | ||
7461 | return (error); | |
7462 | } | |
7463 | ||
7464 | int | |
7465 | so_set_effective_uuid(struct socket *so, uuid_t euuid, struct proc *p) | |
7466 | { | |
7467 | uuid_string_t buf; | |
7468 | uuid_t uuid; | |
7469 | int error = 0; | |
7470 | ||
7471 | /* UUID must not be all-zeroes (reserved for kernel) */ | |
7472 | if (uuid_is_null(euuid)) { | |
7473 | error = EINVAL; | |
3e170ce0 | 7474 | goto done; |
39236c6e A |
7475 | } |
7476 | ||
7477 | /* | |
7478 | * If this is an in-kernel socket, prevent its delegate | |
7479 | * association from changing unless the socket option is | |
7480 | * coming from within the kernel itself. | |
7481 | */ | |
7482 | if (so->last_pid == 0 && p != kernproc) { | |
7483 | error = EACCES; | |
7484 | goto done; | |
7485 | } | |
7486 | ||
7487 | /* Get the UUID of the issuing process */ | |
7488 | proc_getexecutableuuid(p, uuid, sizeof (uuid)); | |
7489 | ||
7490 | /* | |
7491 | * If this is issued by a process that's recorded as the | |
7492 | * real owner of the socket, or if the uuid is the same as | |
7493 | * the process's own uuid, then proceed. Otherwise ensure | |
7494 | * that the issuing process has the necessary privileges. | |
7495 | */ | |
7496 | if (uuid_compare(euuid, so->last_uuid) != 0 || | |
7497 | uuid_compare(euuid, uuid) != 0) { | |
7498 | if ((error = priv_check_cred(kauth_cred_get(), | |
7499 | PRIV_NET_PRIVILEGED_SOCKET_DELEGATE, 0))) { | |
7500 | error = EACCES; | |
7501 | goto done; | |
7502 | } | |
7503 | } | |
7504 | ||
7505 | /* | |
7506 | * If a process tries to delegate the socket to itself, then | |
7507 | * there's really nothing to do; treat it as a way for the | |
7508 | * delegate association to be cleared. Note that we check | |
7509 | * the uuid of the passed-in proc rather than that of the | |
7510 | * current process, as we need to check the process issuing | |
7511 | * the socket option which could be kernproc itself. Given | |
7512 | * that we don't allow 0 for effective uuid, it means that | |
7513 | * a delegated in-kernel socket stays delegated during its | |
7514 | * lifetime (which is okay.) | |
7515 | */ | |
7516 | if (uuid_compare(euuid, uuid) == 0) { | |
7517 | so->so_flags &= ~SOF_DELEGATED; | |
7518 | so->e_upid = 0; | |
7519 | so->e_pid = 0; | |
7520 | uuid_clear(so->e_uuid); | |
7521 | } else { | |
7522 | so->so_flags |= SOF_DELEGATED; | |
7523 | /* | |
7524 | * Unlike so_set_effective_pid(), we only have the UUID | |
7525 | * here and the process ID is not known. Inherit the | |
7526 | * real {pid,upid} of the socket. | |
7527 | */ | |
7528 | so->e_upid = so->last_upid; | |
7529 | so->e_pid = so->last_pid; | |
7530 | uuid_copy(so->e_uuid, euuid); | |
7531 | } | |
7532 | ||
7533 | done: | |
7534 | if (error == 0 && net_io_policy_log) { | |
7535 | uuid_unparse(so->e_uuid, buf); | |
7536 | log(LOG_DEBUG, "%s[%s,%d]: so 0x%llx [%d,%d] epid %d " | |
7537 | "euuid %s%s\n", __func__, proc_name_address(p), proc_pid(p), | |
3e170ce0 | 7538 | (uint64_t)DEBUG_KERNEL_ADDRPERM(so), SOCK_DOM(so), |
39236c6e A |
7539 | SOCK_TYPE(so), so->e_pid, buf, |
7540 | ((so->so_flags & SOF_DELEGATED) ? " [delegated]" : "")); | |
7541 | } else if (error != 0 && net_io_policy_log) { | |
7542 | uuid_unparse(euuid, buf); | |
7543 | log(LOG_DEBUG, "%s[%s,%d]: so 0x%llx [%d,%d] euuid %s " | |
7544 | "ERROR (%d)\n", __func__, proc_name_address(p), proc_pid(p), | |
3e170ce0 | 7545 | (uint64_t)DEBUG_KERNEL_ADDRPERM(so), SOCK_DOM(so), |
39236c6e A |
7546 | SOCK_TYPE(so), buf, error); |
7547 | } | |
7548 | ||
fe8ab488 A |
7549 | /* Update this socket's policy upon success */ |
7550 | if (error == 0) { | |
7551 | so->so_policy_gencnt *= -1; | |
7552 | so_update_policy(so); | |
7553 | #if NECP | |
7554 | so_update_necp_policy(so, NULL, NULL); | |
7555 | #endif /* NECP */ | |
7556 | } | |
7557 | ||
39236c6e A |
7558 | return (error); |
7559 | } | |
7560 | ||
7561 | void | |
7562 | netpolicy_post_msg(uint32_t ev_code, struct netpolicy_event_data *ev_data, | |
7563 | uint32_t ev_datalen) | |
7564 | { | |
7565 | struct kev_msg ev_msg; | |
7566 | ||
7567 | /* | |
7568 | * A netpolicy event always starts with a netpolicy_event_data | |
7569 | * structure, but the caller can provide for a longer event | |
7570 | * structure to post, depending on the event code. | |
7571 | */ | |
7572 | VERIFY(ev_data != NULL && ev_datalen >= sizeof (*ev_data)); | |
7573 | ||
7574 | bzero(&ev_msg, sizeof (ev_msg)); | |
7575 | ev_msg.vendor_code = KEV_VENDOR_APPLE; | |
7576 | ev_msg.kev_class = KEV_NETWORK_CLASS; | |
7577 | ev_msg.kev_subclass = KEV_NETPOLICY_SUBCLASS; | |
7578 | ev_msg.event_code = ev_code; | |
7579 | ||
7580 | ev_msg.dv[0].data_ptr = ev_data; | |
7581 | ev_msg.dv[0].data_length = ev_datalen; | |
7582 | ||
7583 | kev_post_msg(&ev_msg); | |
7584 | } | |
fe8ab488 A |
7585 | |
7586 | void | |
3e170ce0 | 7587 | socket_post_kev_msg(uint32_t ev_code, |
fe8ab488 A |
7588 | struct kev_socket_event_data *ev_data, |
7589 | uint32_t ev_datalen) | |
7590 | { | |
7591 | struct kev_msg ev_msg; | |
7592 | ||
7593 | bzero(&ev_msg, sizeof(ev_msg)); | |
7594 | ev_msg.vendor_code = KEV_VENDOR_APPLE; | |
7595 | ev_msg.kev_class = KEV_NETWORK_CLASS; | |
7596 | ev_msg.kev_subclass = KEV_SOCKET_SUBCLASS; | |
7597 | ev_msg.event_code = ev_code; | |
7598 | ||
7599 | ev_msg.dv[0].data_ptr = ev_data; | |
7600 | ev_msg.dv[0]. data_length = ev_datalen; | |
7601 | ||
7602 | kev_post_msg(&ev_msg); | |
7603 | } | |
7604 | ||
7605 | void | |
7606 | socket_post_kev_msg_closed(struct socket *so) | |
7607 | { | |
7608 | struct kev_socket_closed ev; | |
7609 | struct sockaddr *socksa = NULL, *peersa = NULL; | |
7610 | int err; | |
7611 | bzero(&ev, sizeof(ev)); | |
7612 | err = (*so->so_proto->pr_usrreqs->pru_sockaddr)(so, &socksa); | |
7613 | if (err == 0) { | |
7614 | err = (*so->so_proto->pr_usrreqs->pru_peeraddr)(so, | |
7615 | &peersa); | |
7616 | if (err == 0) { | |
7617 | memcpy(&ev.ev_data.kev_sockname, socksa, | |
7618 | min(socksa->sa_len, | |
7619 | sizeof (ev.ev_data.kev_sockname))); | |
7620 | memcpy(&ev.ev_data.kev_peername, peersa, | |
7621 | min(peersa->sa_len, | |
7622 | sizeof (ev.ev_data.kev_peername))); | |
7623 | socket_post_kev_msg(KEV_SOCKET_CLOSED, | |
3e170ce0 | 7624 | &ev.ev_data, sizeof (ev)); |
fe8ab488 A |
7625 | } |
7626 | } | |
7627 | if (socksa != NULL) | |
7628 | FREE(socksa, M_SONAME); | |
7629 | if (peersa != NULL) | |
7630 | FREE(peersa, M_SONAME); | |
7631 | } |