]>
Commit | Line | Data |
---|---|---|
1c79356b | 1 | /* |
490019cf | 2 | * Copyright (c) 2000-2016 Apple Inc. All rights reserved. |
5d5c5d0d | 3 | * |
2d21ac55 | 4 | * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ |
1c79356b | 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. | |
8f6c56a5 | 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. | |
17 | * | |
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. | |
8f6c56a5 | 25 | * |
2d21ac55 | 26 | * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ |
1c79356b A |
27 | */ |
28 | /* Copyright (c) 1998, 1999 Apple Computer, Inc. All Rights Reserved */ | |
29 | /* Copyright (c) 1995 NeXT Computer, Inc. All Rights Reserved */ | |
30 | /*- | |
31 | * Copyright (c) 1982, 1986, 1990, 1993 | |
32 | * The Regents of the University of California. All rights reserved. | |
33 | * | |
34 | * Redistribution and use in source and binary forms, with or without | |
35 | * modification, are permitted provided that the following conditions | |
36 | * are met: | |
37 | * 1. Redistributions of source code must retain the above copyright | |
38 | * notice, this list of conditions and the following disclaimer. | |
39 | * 2. Redistributions in binary form must reproduce the above copyright | |
40 | * notice, this list of conditions and the following disclaimer in the | |
41 | * documentation and/or other materials provided with the distribution. | |
42 | * 3. All advertising materials mentioning features or use of this software | |
43 | * must display the following acknowledgement: | |
44 | * This product includes software developed by the University of | |
45 | * California, Berkeley and its contributors. | |
46 | * 4. Neither the name of the University nor the names of its contributors | |
47 | * may be used to endorse or promote products derived from this software | |
48 | * without specific prior written permission. | |
49 | * | |
50 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | |
51 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
52 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
53 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | |
54 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | |
55 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | |
56 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
57 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | |
58 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | |
59 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | |
60 | * SUCH DAMAGE. | |
61 | * | |
9bccf70c A |
62 | * @(#)socketvar.h 8.3 (Berkeley) 2/19/95 |
63 | * $FreeBSD: src/sys/sys/socketvar.h,v 1.46.2.6 2001/08/31 13:45:49 jlemon Exp $ | |
1c79356b | 64 | */ |
2d21ac55 A |
65 | /* |
66 | * NOTICE: This file was modified by SPARTA, Inc. in 2005 to introduce | |
67 | * support for mandatory and extensible security protections. This notice | |
68 | * is included in support of clause 2.2 (b) of the Apple Public License, | |
69 | * Version 2.0. | |
70 | */ | |
1c79356b | 71 | |
9bccf70c | 72 | #ifndef _SYS_SOCKETVAR_H_ |
2d21ac55 | 73 | #define _SYS_SOCKETVAR_H_ |
1c79356b | 74 | |
9bccf70c | 75 | #include <sys/appleapiopts.h> |
39236c6e A |
76 | #include <sys/cdefs.h> |
77 | #ifdef KERNEL_PRIVATE | |
9bccf70c | 78 | #include <sys/queue.h> /* for TAILQ macros */ |
1c79356b | 79 | #include <sys/select.h> /* for struct selinfo */ |
1c79356b A |
80 | #include <net/kext_net.h> |
81 | #include <sys/ev.h> | |
39236c6e A |
82 | #include <uuid/uuid.h> |
83 | #endif /* KERNEL_PRIVATE */ | |
91447636 | 84 | |
39236c6e A |
85 | typedef u_quad_t so_gen_t; |
86 | ||
87 | #ifdef KERNEL_PRIVATE | |
1c79356b | 88 | struct mbuf; |
91447636 | 89 | struct socket_filter_entry; |
1c79356b A |
90 | struct protosw; |
91 | struct sockif; | |
92 | struct sockutil; | |
93 | ||
94 | /* strings for sleep message: */ | |
95 | extern char netio[], netcon[], netcls[]; | |
2d21ac55 A |
96 | #define SOCKET_CACHE_ON |
97 | #define SO_CACHE_FLUSH_INTERVAL 1 /* Seconds */ | |
98 | #define SO_CACHE_TIME_LIMIT (120/SO_CACHE_FLUSH_INTERVAL) /* Seconds */ | |
99 | #define SO_CACHE_MAX_FREE_BATCH 50 | |
39236c6e | 100 | #define MAX_CACHED_SOCKETS 512 |
2d21ac55 | 101 | #define TEMPDEBUG 0 |
91447636 A |
102 | #endif /* KERNEL_PRIVATE */ |
103 | ||
6d2010ae A |
104 | #ifdef PRIVATE |
105 | #define SO_TC_STATS_MAX 4 | |
106 | ||
107 | struct data_stats { | |
108 | u_int64_t rxpackets; | |
109 | u_int64_t rxbytes; | |
110 | u_int64_t txpackets; | |
111 | u_int64_t txbytes; | |
112 | }; | |
39236c6e A |
113 | |
114 | #define MSG_PRI_0 0 /* TCP message priority, lowest */ | |
115 | #define MSG_PRI_1 1 | |
116 | #define MSG_PRI_2 2 | |
117 | #define MSG_PRI_3 3 /* TCP message priority, highest */ | |
118 | #define MSG_PRI_MAX MSG_PRI_3 | |
119 | #define MSG_PRI_MIN MSG_PRI_0 | |
120 | #define MSG_PRI_COUNT 4 | |
121 | #define MSG_PRI_DEFAULT MSG_PRI_1 | |
6d2010ae A |
122 | #endif /* PRIVATE */ |
123 | ||
91447636 | 124 | #ifdef KERNEL_PRIVATE |
39236c6e A |
125 | /* State for TCP message send or receive */ |
126 | struct msg_priq { | |
127 | struct mbuf *msgq_head; /* first mbuf in the queue */ | |
128 | struct mbuf *msgq_tail; /* last mbuf in the queue */ | |
129 | struct mbuf *msgq_lastmsg; /* last message in the queue */ | |
130 | u_int32_t msgq_flags; /* flags per priority queue */ | |
131 | #define MSGQ_MSG_NOTDONE 0x1 /* set when EOR of a msg is not seen */ | |
132 | u_int32_t msgq_bytes; /* data bytes in this queue */ | |
133 | }; | |
134 | ||
135 | struct msg_state { | |
136 | struct msg_priq msg_priq[MSG_PRI_COUNT]; /* priority queues */ | |
137 | u_int32_t msg_serial_bytes; /* bytes moved to serial queue */ | |
138 | u_int32_t msg_uno_bytes; /* out-of-order chars in rcv buffer */ | |
139 | }; | |
140 | ||
141 | /* mbuf flag used to indicate out of order data received */ | |
142 | #define M_UNORDERED_DATA M_PROTO1 | |
9bccf70c | 143 | |
39236c6e A |
144 | /* |
145 | * Kernel structure per socket. | |
146 | * Contains send and receive buffer queues, | |
147 | * handle on protocol and pointer to protocol | |
148 | * private data and error information. | |
149 | */ | |
1c79356b | 150 | struct socket { |
2d21ac55 A |
151 | int so_zone; /* zone we were allocated from */ |
152 | short so_type; /* generic type, see socket.h */ | |
3e170ce0 | 153 | u_short so_error; /* error affecting connection */ |
316670eb | 154 | u_int32_t so_options; /* from socket call, see socket.h */ |
1c79356b | 155 | short so_linger; /* time to linger while closing */ |
2d21ac55 | 156 | short so_state; /* internal state flags SS_*, below */ |
316670eb | 157 | void *so_pcb; /* protocol control block */ |
1c79356b | 158 | struct protosw *so_proto; /* protocol handle */ |
2d21ac55 A |
159 | /* |
160 | * Variables for connection queueing. | |
161 | * Socket where accepts occur is so_head in all subsidiary sockets. | |
162 | * If so_head is 0, socket is not related to an accept. | |
163 | * For head socket so_incomp queues partially completed connections, | |
164 | * while so_comp is a queue of connections ready to be accepted. | |
165 | * If a connection is aborted and it has so_head set, then | |
166 | * it has to be pulled out of either so_incomp or so_comp. | |
167 | * We allow connections to queue up based on current queue lengths | |
168 | * and limit on number of queued connections for this socket. | |
169 | */ | |
1c79356b | 170 | struct socket *so_head; /* back pointer to accept socket */ |
2d21ac55 A |
171 | TAILQ_HEAD(, socket) so_incomp; /* q of partially unaccepted conns */ |
172 | TAILQ_HEAD(, socket) so_comp; /* q of complete unaccepted conns */ | |
1c79356b A |
173 | TAILQ_ENTRY(socket) so_list; /* list of unaccepted connections */ |
174 | short so_qlen; /* number of unaccepted connections */ | |
175 | short so_incqlen; /* number of unaccepted incomplete | |
176 | connections */ | |
177 | short so_qlimit; /* max number queued connections */ | |
178 | short so_timeo; /* connection timeout */ | |
1c79356b | 179 | pid_t so_pgid; /* pgid for signals */ |
39236c6e | 180 | u_int32_t so_oobmark; /* chars to oob mark */ |
2d21ac55 A |
181 | /* |
182 | * Variables for socket buffering. | |
183 | */ | |
39236c6e | 184 | struct sockbuf { |
b0d623f7 A |
185 | u_int32_t sb_cc; /* actual chars in buffer */ |
186 | u_int32_t sb_hiwat; /* max actual char count */ | |
187 | u_int32_t sb_mbcnt; /* chars of mbufs used */ | |
188 | u_int32_t sb_mbmax; /* max chars of mbufs to use */ | |
189 | u_int32_t sb_ctl; /* non-data chars in buffer */ | |
190 | u_int32_t sb_lowat; /* low water mark */ | |
39236c6e A |
191 | struct mbuf *sb_mb; /* the mbuf chain */ |
192 | struct mbuf *sb_mbtail; /* the last mbuf in the chain */ | |
193 | struct mbuf *sb_lastrecord; /* first mbuf of last record */ | |
194 | struct socket *sb_so; /* socket back ptr for kexts */ | |
195 | struct selinfo sb_sel; /* process selecting rd/wr */ | |
39236c6e | 196 | struct timeval sb_timeo; /* timeout for read/write */ |
3e170ce0 | 197 | u_int32_t sb_flags; /* flags, see below */ |
39236c6e A |
198 | u_int32_t sb_idealsize; /* Ideal size for the sb based |
199 | on bandwidth and delay */ | |
200 | void (*sb_upcall)(struct socket *, void *arg, int waitf); | |
201 | void *sb_upcallarg; /* Arg for above */ | |
202 | u_int32_t sb_wantlock; /* # of SB_LOCK waiters */ | |
203 | u_int32_t sb_waiters; /* # of data/space waiters */ | |
fe8ab488 A |
204 | thread_t sb_cfil_thread; /* content filter thread */ |
205 | u_int32_t sb_cfil_refs; /* # of nested calls */ | |
3e170ce0 | 206 | u_int32_t sb_preconn_hiwat;/* preconnect hiwat mark */ |
1c79356b | 207 | } so_rcv, so_snd; |
2d21ac55 | 208 | #define SB_MAX (8192*1024) /* default for max chars in sockbuf */ |
39236c6e A |
209 | #define LOW_SB_MAX (2*9*1024) /* lower limit on max socket buffer |
210 | size, 2 max datagrams */ | |
211 | #define SB_LOCK 0x1 /* lock on data queue */ | |
212 | #define SB_NOINTR 0x2 /* operations not interruptible */ | |
213 | #define SB_RECV 0x4 /* this is rcv sb */ | |
214 | #define SB_SEL 0x8 /* someone is selecting */ | |
2d21ac55 A |
215 | #define SB_ASYNC 0x10 /* ASYNC I/O, need signals */ |
216 | #define SB_UPCALL 0x20 /* someone wants an upcall */ | |
39236c6e A |
217 | #define SB_KNOTE 0x40 /* kernel note attached */ |
218 | #define SB_DROP 0x80 /* does not accept any more data */ | |
219 | #define SB_UNIX 0x100 /* UNIX domain socket buffer */ | |
2d21ac55 | 220 | #define SB_USRSIZE 0x200 /* user specified sbreserve */ |
39236c6e A |
221 | #define SB_AUTOSIZE 0x400 /* automatically size socket buffer */ |
222 | #define SB_TRIM 0x800 /* Trim the socket buffer */ | |
223 | #define SB_NOCOMPRESS 0x1000 /* do not compress socket buffer */ | |
39236c6e A |
224 | caddr_t so_tpcb; /* Misc. protocol control block, used |
225 | by some kexts */ | |
226 | ||
227 | void (*so_event)(struct socket *, void *, u_int32_t); | |
228 | void *so_eventarg; /* Arg for above */ | |
316670eb | 229 | kauth_cred_t so_cred; /* cred of who opened the socket */ |
1c79356b A |
230 | /* NB: generation count must not be first; easiest to make it last. */ |
231 | so_gen_t so_gencnt; /* generation count */ | |
2d21ac55 | 232 | TAILQ_HEAD(, eventqelt) so_evlist; |
39236c6e | 233 | STAILQ_ENTRY(socket) so_cache_ent; /* socache entry */ |
1c79356b | 234 | caddr_t so_saved_pcb; /* Saved pcb when cacheing */ |
3e170ce0 A |
235 | u_int32_t cache_timestamp; /* time socket was cached */ |
236 | ||
237 | pid_t last_pid; /* pid of most recent accessor */ | |
238 | u_int64_t last_upid; /* upid of most recent accessor */ | |
239 | ||
39236c6e | 240 | struct mbuf *so_temp; /* Holding area for outbound frags */ |
1c79356b | 241 | /* Plug-in support - make the socket interface overridable */ |
39236c6e | 242 | struct mbuf *so_tail; |
2d21ac55 | 243 | struct socket_filter_entry *so_filt; /* NKE hook */ |
b0d623f7 | 244 | u_int32_t so_flags; /* Flags */ |
fe8ab488 | 245 | #define SOF_NOSIGPIPE 0x00000001 |
3e170ce0 A |
246 | #define SOF_NOADDRAVAIL 0x00000002 /* EADDRNOTAVAIL if src addr is gone */ |
247 | #define SOF_PCBCLEARING 0x00000004 /* pru_disconnect done; don't | |
248 | call pru_detach */ | |
249 | #define SOF_DEFUNCT 0x00000008 /* socket marked as inactive */ | |
250 | #define SOF_CLOSEWAIT 0x00000010 /* blocked in close awaiting some events */ | |
251 | #define SOF_REUSESHAREUID 0x00000040 /* Allows SO_REUSEADDR/SO_REUSEPORT | |
252 | for multiple so_uid */ | |
253 | #define SOF_MULTIPAGES 0x00000080 /* jumbo clusters may be used for sosend */ | |
254 | #define SOF_ABORTED 0x00000100 /* soabort was already called once */ | |
255 | #define SOF_OVERFLOW 0x00000200 /* socket was dropped as overflow of | |
256 | listen q */ | |
257 | #define SOF_NOTIFYCONFLICT 0x00000400 /* notify that a bind was done on a | |
258 | port already in use */ | |
259 | #define SOF_UPCALLCLOSEWAIT 0x00000800 /* block close until upcall returns */ | |
fe8ab488 A |
260 | #define SOF_BINDRANDOMPORT 0x00001000 /* Randomized port number for bind */ |
261 | #define SOF_NPX_SETOPTSHUT 0x00002000 /* Non POSIX extension to allow | |
39236c6e | 262 | setsockopt(2) after shut down */ |
fe8ab488 A |
263 | #define SOF_RECV_TRAFFIC_CLASS 0x00004000 /* Receive TC as ancillary data */ |
264 | #define SOF_NODEFUNCT 0x00008000 /* socket cannot be defunct'd */ | |
265 | #define SOF_PRIVILEGED_TRAFFIC_CLASS 0x00010000 /* traffic class is privileged */ | |
266 | #define SOF_SUSPENDED 0x00020000 /* i/f output queue is suspended */ | |
267 | #define SOF_INCOMP_INPROGRESS 0x00040000 /* incomp socket is being processed */ | |
268 | #define SOF_NOTSENT_LOWAT 0x00080000 /* A different lowat on not sent | |
3e170ce0 | 269 | data has been set */ |
fe8ab488 A |
270 | #define SOF_KNOTE 0x00100000 /* socket is on the EV_SOCK klist */ |
271 | #define SOF_USELRO 0x00200000 /* TCP must use LRO on these sockets */ | |
272 | #define SOF_ENABLE_MSGS 0x00400000 /* TCP must enable message delivery */ | |
273 | #define SOF_FLOW_DIVERT 0x00800000 /* Flow Divert is enabled */ | |
274 | #define SOF_MP_SUBFLOW 0x01000000 /* is a multipath subflow socket */ | |
275 | #define SOF_MPTCP_TRUE 0x02000000 /* Established e2e MPTCP connection */ | |
276 | #define SOF_MPTCP_CLIENT 0x04000000 /* Only client starts addtnal flows */ | |
277 | #define SOF_MP_SEC_SUBFLOW 0x08000000 /* Set up secondary flow */ | |
39236c6e A |
278 | #define SOF_MP_TRYFAILOVER 0x10000000 /* Failing subflow */ |
279 | #define SOF_DELEGATED 0x20000000 /* on behalf of another process */ | |
fe8ab488 A |
280 | #define SOF_MPTCP_FASTJOIN 0x40000000 /* fast join support */ |
281 | #define SOF_CONTENT_FILTER 0x80000000 /* Content filter enabled */ | |
282 | ||
39236c6e A |
283 | uint32_t so_upcallusecount; /* number of upcalls in progress */ |
284 | int so_usecount; /* refcounting of socket use */; | |
285 | int so_retaincnt; | |
286 | u_int32_t so_filteruse; /* usecount for the socket filters */ | |
3e170ce0 A |
287 | u_int16_t so_traffic_class; |
288 | u_int8_t so_traffic_mgt_flags; /* traffic_mgt socket config */ | |
289 | u_int8_t so_restrictions; | |
2d21ac55 | 290 | thread_t so_send_filt_thread; |
2d21ac55 | 291 | |
39236c6e | 292 | /* for debug pruposes */ |
2d21ac55 | 293 | #define SO_LCKDBG_MAX 4 /* number of debug locking Link Registers recorded */ |
b0d623f7 | 294 | void *lock_lr[SO_LCKDBG_MAX]; /* locking calling history */ |
b0d623f7 | 295 | void *unlock_lr[SO_LCKDBG_MAX]; /* unlocking caller history */ |
3e170ce0 A |
296 | u_int8_t next_lock_lr; |
297 | u_int8_t next_unlock_lr; | |
298 | ||
299 | u_int16_t so_pktheadroom; /* headroom before packet payload */ | |
300 | ||
301 | u_int32_t so_ifdenied_notifies; /* # of notifications generated */ | |
0c530ab8 | 302 | |
39236c6e A |
303 | struct label *so_label; /* MAC label for socket */ |
304 | struct label *so_peerlabel; /* cached MAC label for socket peer */ | |
305 | thread_t so_background_thread; /* thread that marked | |
306 | this socket background */ | |
39236c6e A |
307 | struct data_stats so_tc_stats[SO_TC_STATS_MAX]; |
308 | struct klist so_klist; /* klist for EV_SOCK events */ | |
309 | ||
310 | struct msg_state *so_msg_state; /* unordered snd/rcv state */ | |
311 | struct flow_divert_pcb *so_fd_pcb; /* Flow Divert control block */ | |
fe8ab488 A |
312 | |
313 | struct cfil_info *so_cfil; | |
314 | ||
39236c6e A |
315 | u_int32_t so_eventmask; /* event mask */ |
316 | ||
39236c6e | 317 | pid_t e_pid; /* pid of the effective owner */ |
3e170ce0 | 318 | u_int64_t e_upid; /* upid of the effective owner */ |
39236c6e A |
319 | |
320 | uuid_t last_uuid; /* uuid of most recent accessor */ | |
321 | uuid_t e_uuid; /* uuid of effective owner */ | |
fe8ab488 | 322 | uuid_t so_vuuid; /* UUID of the Voucher originator */ |
39236c6e A |
323 | |
324 | int32_t so_policy_gencnt; /* UUID policy gencnt */ | |
fe8ab488 A |
325 | |
326 | u_int32_t so_flags1; | |
327 | #define SOF1_POST_FALLBACK_SYNC 0x00000001 /* fallback to TCP */ | |
328 | #define SOF1_AWDL_PRIVILEGED 0x00000002 | |
329 | #define SOF1_IF_2KCL 0x00000004 /* interface prefers 2 KB clusters */ | |
330 | #define SOF1_DEFUNCTINPROG 0x00000008 | |
3e170ce0 A |
331 | #define SOF1_DATA_IDEMPOTENT 0x00000010 /* idempotent data for TFO */ |
332 | #define SOF1_PRECONNECT_DATA 0x00000020 /* request for preconnect data */ | |
333 | #define SOF1_EXTEND_BK_IDLE_WANTED 0x00000040 /* option set */ | |
334 | #define SOF1_EXTEND_BK_IDLE_INPROG 0x00000080 /* socket */ | |
335 | #define SOF1_CACHED_IN_SOCK_LAYER 0x00000100 /* bundled with inpcb and | |
336 | tcpcb */ | |
490019cf A |
337 | #define SOF1_TFO_REWIND 0x00000200 /* rewind mptcp meta data */ |
338 | #define SOF1_CELLFALLBACK 0x00000400 /* Initiated by cell fallback */ | |
3e170ce0 | 339 | u_int64_t so_extended_bk_start; |
1c79356b | 340 | }; |
6d2010ae A |
341 | |
342 | /* Control message accessor in mbufs */ | |
343 | ||
39236c6e A |
344 | #define _MIN_NXT_CMSGHDR_PTR(cmsg) \ |
345 | ((char *)(cmsg) + \ | |
346 | __DARWIN_ALIGN32((__uint32_t)(cmsg)->cmsg_len) + \ | |
6d2010ae A |
347 | __DARWIN_ALIGN32(sizeof(struct cmsghdr))) |
348 | ||
39236c6e A |
349 | #define M_FIRST_CMSGHDR(m) \ |
350 | ((char *)(m) != (char *)0L && \ | |
351 | (size_t)(m)->m_len >= sizeof (struct cmsghdr) && \ | |
352 | (socklen_t)(m)->m_len >= \ | |
353 | __DARWIN_ALIGN32(((struct cmsghdr *)(void *)(m)->m_data)->cmsg_len) ? \ | |
354 | (struct cmsghdr *)(void *)(m)->m_data : (struct cmsghdr *)0L) | |
355 | ||
356 | #define M_NXT_CMSGHDR(m, cmsg) \ | |
357 | ((char *)(cmsg) == (char *)0L ? M_FIRST_CMSGHDR(m) : \ | |
358 | _MIN_NXT_CMSGHDR_PTR(cmsg) > ((char *)(m)->m_data) + (m)->m_len || \ | |
359 | _MIN_NXT_CMSGHDR_PTR(cmsg) < (char *)(m)->m_data ? \ | |
360 | (struct cmsghdr *)0L /* NULL */ : \ | |
361 | (struct cmsghdr *)(void *)((unsigned char *)(cmsg) + \ | |
362 | __DARWIN_ALIGN32((__uint32_t)(cmsg)->cmsg_len))) | |
1c79356b A |
363 | |
364 | /* | |
365 | * Socket state bits. | |
366 | */ | |
2d21ac55 A |
367 | #define SS_NOFDREF 0x0001 /* no file table ref any more */ |
368 | #define SS_ISCONNECTED 0x0002 /* socket connected to a peer */ | |
369 | #define SS_ISCONNECTING 0x0004 /* in process of connecting to peer */ | |
370 | #define SS_ISDISCONNECTING 0x0008 /* in process of disconnecting */ | |
371 | #define SS_CANTSENDMORE 0x0010 /* can't send more data to peer */ | |
372 | #define SS_CANTRCVMORE 0x0020 /* can't receive more data from peer */ | |
373 | #define SS_RCVATMARK 0x0040 /* at mark on input */ | |
374 | ||
375 | #define SS_PRIV 0x0080 /* privileged for broadcast, raw... */ | |
376 | #define SS_NBIO 0x0100 /* non-blocking ops */ | |
377 | #define SS_ASYNC 0x0200 /* async i/o notify */ | |
378 | #define SS_ISCONFIRMING 0x0400 /* deciding to accept connection req */ | |
379 | #define SS_INCOMP 0x0800 /* Unaccepted, incomplete connection */ | |
1c79356b | 380 | #define SS_COMP 0x1000 /* unaccepted, complete connection */ |
9bccf70c | 381 | #define SS_ISDISCONNECTED 0x2000 /* socket disconnected from peer */ |
2d21ac55 A |
382 | #define SS_DRAINING 0x4000 /* close waiting for blocked system |
383 | calls to drain */ | |
6d2010ae | 384 | #define SS_DEFUNCT 0x8000 /* has been fully defunct'd */ |
39236c6e | 385 | #endif /* KERNEL_PRIVATE */ |
2d21ac55 A |
386 | |
387 | #if defined(__LP64__) | |
388 | #define _XSOCKET_PTR(x) u_int32_t | |
389 | #else | |
390 | #define _XSOCKET_PTR(x) x | |
391 | #endif | |
392 | ||
316670eb A |
393 | #ifdef PRIVATE |
394 | /* Flags returned in data field for EVFILT_SOCK events. */ | |
395 | #define SOCKEV_CONNECTED 0x00000001 /* connected */ | |
396 | #define SOCKEV_DISCONNECTED 0x00000002 /* disconnected */ | |
397 | #endif /* PRIVATE */ | |
398 | ||
2d21ac55 | 399 | #pragma pack(4) |
1c79356b | 400 | |
b0d623f7 | 401 | struct xsockbuf { |
6d2010ae A |
402 | u_int32_t sb_cc; |
403 | u_int32_t sb_hiwat; | |
404 | u_int32_t sb_mbcnt; | |
405 | u_int32_t sb_mbmax; | |
406 | int32_t sb_lowat; | |
407 | short sb_flags; | |
408 | short sb_timeo; | |
1c79356b A |
409 | }; |
410 | ||
b0d623f7 A |
411 | /* |
412 | * Externalized form of struct socket used by the sysctl(3) interface. | |
413 | */ | |
414 | struct xsocket { | |
39236c6e | 415 | u_int32_t xso_len; /* length of this structure */ |
b0d623f7 A |
416 | _XSOCKET_PTR(struct socket *) xso_so; /* makes a convenient handle */ |
417 | short so_type; | |
418 | short so_options; | |
419 | short so_linger; | |
420 | short so_state; | |
421 | _XSOCKET_PTR(caddr_t) so_pcb; /* another convenient handle */ | |
fe8ab488 A |
422 | int xso_protocol; |
423 | int xso_family; | |
b0d623f7 A |
424 | short so_qlen; |
425 | short so_incqlen; | |
426 | short so_qlimit; | |
427 | short so_timeo; | |
428 | u_short so_error; | |
429 | pid_t so_pgid; | |
430 | u_int32_t so_oobmark; | |
fe8ab488 A |
431 | struct xsockbuf so_rcv; |
432 | struct xsockbuf so_snd; | |
b0d623f7 A |
433 | uid_t so_uid; /* XXX */ |
434 | }; | |
435 | ||
b0d623f7 | 436 | struct xsocket64 { |
39236c6e A |
437 | u_int32_t xso_len; /* length of this structure */ |
438 | u_int64_t xso_so; /* makes a convenient handle */ | |
b0d623f7 A |
439 | short so_type; |
440 | short so_options; | |
441 | short so_linger; | |
442 | short so_state; | |
443 | u_int64_t so_pcb; /* another convenient handle */ | |
444 | int xso_protocol; | |
445 | int xso_family; | |
446 | short so_qlen; | |
447 | short so_incqlen; | |
448 | short so_qlimit; | |
449 | short so_timeo; | |
450 | u_short so_error; | |
451 | pid_t so_pgid; | |
452 | u_int32_t so_oobmark; | |
453 | struct xsockbuf so_rcv; | |
454 | struct xsockbuf so_snd; | |
455 | uid_t so_uid; /* XXX */ | |
456 | }; | |
457 | ||
6d2010ae | 458 | #ifdef PRIVATE |
6d2010ae A |
459 | #define XSO_SOCKET 0x001 |
460 | #define XSO_RCVBUF 0x002 | |
461 | #define XSO_SNDBUF 0x004 | |
462 | #define XSO_STATS 0x008 | |
463 | #define XSO_INPCB 0x010 | |
464 | #define XSO_TCPCB 0x020 | |
fe8ab488 A |
465 | #define XSO_KCREG 0x040 |
466 | #define XSO_KCB 0x080 | |
467 | #define XSO_EVT 0x100 | |
6d2010ae A |
468 | |
469 | struct xsocket_n { | |
39236c6e A |
470 | u_int32_t xso_len; /* length of this structure */ |
471 | u_int32_t xso_kind; /* XSO_SOCKET */ | |
472 | u_int64_t xso_so; /* makes a convenient handle */ | |
6d2010ae | 473 | short so_type; |
316670eb | 474 | u_int32_t so_options; |
6d2010ae A |
475 | short so_linger; |
476 | short so_state; | |
477 | u_int64_t so_pcb; /* another convenient handle */ | |
fe8ab488 A |
478 | int xso_protocol; |
479 | int xso_family; | |
6d2010ae A |
480 | short so_qlen; |
481 | short so_incqlen; | |
482 | short so_qlimit; | |
483 | short so_timeo; | |
484 | u_short so_error; | |
485 | pid_t so_pgid; | |
486 | u_int32_t so_oobmark; | |
487 | uid_t so_uid; /* XXX */ | |
fe8ab488 A |
488 | pid_t so_last_pid; |
489 | pid_t so_e_pid; | |
6d2010ae A |
490 | }; |
491 | ||
492 | struct xsockbuf_n { | |
39236c6e A |
493 | u_int32_t xsb_len; /* length of this structure */ |
494 | u_int32_t xsb_kind; /* XSO_RCVBUF or XSO_SNDBUF */ | |
6d2010ae A |
495 | u_int32_t sb_cc; |
496 | u_int32_t sb_hiwat; | |
497 | u_int32_t sb_mbcnt; | |
498 | u_int32_t sb_mbmax; | |
499 | int32_t sb_lowat; | |
500 | short sb_flags; | |
501 | short sb_timeo; | |
502 | }; | |
503 | ||
504 | struct xsockstat_n { | |
39236c6e A |
505 | u_int32_t xst_len; /* length of this structure */ |
506 | u_int32_t xst_kind; /* XSO_STATS */ | |
6d2010ae A |
507 | struct data_stats xst_tc_stats[SO_TC_STATS_MAX]; |
508 | }; | |
3e170ce0 A |
509 | |
510 | /* | |
511 | * Global socket statistics | |
512 | */ | |
513 | struct soextbkidlestat { | |
514 | u_int32_t so_xbkidle_maxperproc; | |
515 | u_int32_t so_xbkidle_time; | |
516 | u_int32_t so_xbkidle_rcvhiwat; | |
517 | int32_t so_xbkidle_notsupp; | |
518 | int32_t so_xbkidle_toomany; | |
519 | int32_t so_xbkidle_wantok; | |
520 | int32_t so_xbkidle_active; | |
521 | int32_t so_xbkidle_nocell; | |
522 | int32_t so_xbkidle_notime; | |
523 | int32_t so_xbkidle_forced; | |
524 | int32_t so_xbkidle_resumed; | |
525 | int32_t so_xbkidle_expired; | |
526 | int32_t so_xbkidle_resched; | |
527 | int32_t so_xbkidle_nodlgtd; | |
528 | int32_t so_xbkidle_drained; | |
529 | }; | |
6d2010ae A |
530 | #endif /* PRIVATE */ |
531 | ||
2d21ac55 A |
532 | #pragma pack() |
533 | ||
91447636 | 534 | #ifdef KERNEL_PRIVATE |
39236c6e | 535 | #include <sys/kpi_mbuf.h> |
1c79356b | 536 | |
9bccf70c | 537 | /* |
39236c6e A |
538 | * Argument structure for sosetopt et seq. This is in the KERNEL |
539 | * section because it will never be visible to user code. | |
9bccf70c | 540 | */ |
39236c6e A |
541 | enum sopt_dir { SOPT_GET, SOPT_SET }; |
542 | struct sockopt { | |
543 | enum sopt_dir sopt_dir; /* is this a get or a set? */ | |
544 | int sopt_level; /* second arg of [gs]etsockopt */ | |
545 | int sopt_name; /* third arg of [gs]etsockopt */ | |
546 | user_addr_t sopt_val; /* fourth arg of [gs]etsockopt */ | |
547 | size_t sopt_valsize; /* (almost) fifth arg of [gs]etsockopt */ | |
548 | struct proc *sopt_p; /* calling process or null if kernel */ | |
549 | }; | |
91447636 | 550 | |
39236c6e A |
551 | #ifdef MALLOC_DECLARE |
552 | MALLOC_DECLARE(M_PCB); | |
553 | MALLOC_DECLARE(M_SONAME); | |
554 | #endif /* MALLOC_DECLARE */ | |
1c79356b | 555 | |
39236c6e | 556 | #ifdef BSD_KERNEL_PRIVATE |
1c79356b A |
557 | /* |
558 | * Socket extension mechanism: control block hooks: | |
559 | * This is the "head" of any control block for an extenstion | |
560 | * Note: we separate intercept function dispatch vectors from | |
561 | * the NFDescriptor to permit selective replacement during | |
562 | * operation, e.g., to disable some functions. | |
563 | */ | |
2d21ac55 A |
564 | struct kextcb { |
565 | struct kextcb *e_next; /* Next kext control block */ | |
1c79356b A |
566 | void *e_fcb; /* Real filter control block */ |
567 | struct NFDescriptor *e_nfd; /* NKE Descriptor */ | |
568 | /* Plug-in support - intercept functions */ | |
569 | struct sockif *e_soif; /* Socket functions */ | |
570 | struct sockutil *e_sout; /* Sockbuf utility functions */ | |
571 | }; | |
2d21ac55 | 572 | #define EXT_NULL 0x0 /* STATE: Not in use */ |
316670eb A |
573 | |
574 | /* Hints for socket event processing */ | |
575 | #define SO_FILT_HINT_LOCKED 0x00000001 /* socket is already locked */ | |
576 | #define SO_FILT_HINT_CONNRESET 0x00000002 /* Reset is received */ | |
577 | #define SO_FILT_HINT_CANTRCVMORE 0x00000004 /* No more data to read */ | |
578 | #define SO_FILT_HINT_CANTSENDMORE 0x00000008 /* Can't write more data */ | |
579 | #define SO_FILT_HINT_TIMEOUT 0x00000010 /* timeout */ | |
580 | #define SO_FILT_HINT_NOSRCADDR 0x00000020 /* No src address available */ | |
39236c6e | 581 | #define SO_FILT_HINT_IFDENIED 0x00000040 /* interface denied access */ |
316670eb A |
582 | #define SO_FILT_HINT_SUSPEND 0x00000080 /* output queue suspended */ |
583 | #define SO_FILT_HINT_RESUME 0x00000100 /* output queue resumed */ | |
584 | #define SO_FILT_HINT_KEEPALIVE 0x00000200 /* TCP Keepalive received */ | |
39236c6e A |
585 | #define SO_FILT_HINT_ADAPTIVE_WTIMO 0x00000400 /* TCP adaptive write timeout */ |
586 | #define SO_FILT_HINT_ADAPTIVE_RTIMO 0x00000800 /* TCP adaptive read timeout */ | |
587 | #define SO_FILT_HINT_CONNECTED 0x00001000 /* socket is connected */ | |
588 | #define SO_FILT_HINT_DISCONNECTED 0x00002000 /* socket is disconnected */ | |
589 | #define SO_FILT_HINT_CONNINFO_UPDATED 0x00004000 /* updated conninfo avail. */ | |
590 | #define SO_FILT_HINT_MPFAILOVER 0x00008000 /* multipath failover */ | |
591 | #define SO_FILT_HINT_MPSTATUS 0x00010000 /* multipath status */ | |
592 | #define SO_FILT_HINT_MUSTRST 0x00020000 /* must send RST and close */ | |
fe8ab488 A |
593 | #define SO_FILT_HINT_MPFASTJ 0x00040000 /* can do MPTCP fast join */ |
594 | #define SO_FILT_HINT_DELETEOK 0x00100000 /* Ok to delete socket */ | |
595 | #define SO_FILT_HINT_MPCANTRCVMORE 0x00200000 /* MPTCP DFIN Received */ | |
39236c6e A |
596 | |
597 | #define SO_FILT_HINT_BITS \ | |
598 | "\020\1LOCKED\2CONNRESET\3CANTRCVMORE\4CANTSENDMORE\5TIMEOUT" \ | |
599 | "\6NOSRCADDR\7IFDENIED\10SUSPEND\11RESUME\12KEEPALIVE\13AWTIMO" \ | |
fe8ab488 | 600 | "\14ARTIMO\15CONNECTED\16DISCONNECTED\17CONNINFO_UPDATED" \ |
490019cf A |
601 | "\20MPFAILOVER\21MPSTATUS\22MUSTRST\23MPFASTJ\25DELETEOK" \ |
602 | "\26MPCANTRCVMORE" | |
39236c6e A |
603 | |
604 | /* Mask for hints that have corresponding kqueue events */ | |
605 | #define SO_FILT_HINT_EV \ | |
606 | (SO_FILT_HINT_CONNRESET | SO_FILT_HINT_CANTRCVMORE | \ | |
607 | SO_FILT_HINT_CANTSENDMORE | SO_FILT_HINT_TIMEOUT | \ | |
608 | SO_FILT_HINT_NOSRCADDR | SO_FILT_HINT_IFDENIED | \ | |
609 | SO_FILT_HINT_SUSPEND | SO_FILT_HINT_RESUME | \ | |
610 | SO_FILT_HINT_KEEPALIVE | SO_FILT_HINT_ADAPTIVE_WTIMO | \ | |
611 | SO_FILT_HINT_ADAPTIVE_RTIMO | SO_FILT_HINT_CONNECTED | \ | |
612 | SO_FILT_HINT_DISCONNECTED | SO_FILT_HINT_CONNINFO_UPDATED) | |
1c79356b A |
613 | |
614 | #if SENDFILE | |
1c79356b A |
615 | struct sf_buf { |
616 | SLIST_ENTRY(sf_buf) free_list; /* list of free buffer slots */ | |
617 | int refcnt; /* reference count */ | |
618 | struct vm_page *m; /* currently mapped page */ | |
619 | vm_offset_t kva; /* va of mapping */ | |
620 | }; | |
39236c6e | 621 | #endif /* SENDFILE */ |
1c79356b | 622 | |
39236c6e | 623 | #define SBLASTRECORDCHK(sb, s) \ |
2d21ac55 A |
624 | if (socket_debug) sblastrecordchk(sb, s); |
625 | ||
39236c6e | 626 | #define SBLASTMBUFCHK(sb, s) \ |
2d21ac55 A |
627 | if (socket_debug) sblastmbufchk(sb, s); |
628 | ||
39236c6e A |
629 | #define SB_EMPTY_FIXUP(sb) { \ |
630 | if ((sb)->sb_mb == NULL) { \ | |
631 | (sb)->sb_mbtail = NULL; \ | |
632 | (sb)->sb_lastrecord = NULL; \ | |
633 | } \ | |
2d21ac55 A |
634 | } |
635 | ||
39236c6e A |
636 | #define SB_MB_CHECK(sb) do { \ |
637 | if (((sb)->sb_mb != NULL && \ | |
638 | (sb)->sb_cc == 0) || \ | |
639 | ((sb)->sb_mb == NULL && (sb)->sb_cc > 0)) \ | |
640 | panic("corrupt so_rcv: sb_mb %p sb_cc %d\n", \ | |
641 | (sb)->sb_mb, (sb)->sb_cc); \ | |
316670eb | 642 | } while(0) |
316670eb | 643 | |
6d2010ae | 644 | #define SODEFUNCTLOG(x) do { if (sodefunctlog) printf x; } while (0) |
316670eb A |
645 | #define SOTHROTTLELOG(x) do { if (sothrottlelog) printf x; } while (0) |
646 | ||
6d2010ae A |
647 | /* |
648 | * For debugging traffic class behaviors | |
649 | */ | |
650 | #define SOTCDB_NO_DSCP 0x01 /* Do not set DSCP code in IP header */ | |
651 | #define SOTCDB_NO_MTC 0x02 /* Do not set the mbuf traffic class */ | |
652 | #define SOTCDB_NO_SENDTCPBG 0x04 /* Do not use background TCP CC algorithm for sender */ | |
653 | #define SOTCDB_NO_LCLTST 0x08 /* Do not test for local destination for setting DSCP */ | |
654 | #define SOTCDB_NO_DSCPTST 0x10 /* Overwritte any existing DSCP code */ | |
316670eb A |
655 | #define SOTCDB_NO_RECVTCPBG 0x20 /* Do not use throttling on receiver-side of TCP */ |
656 | #define SOTCDB_NO_PRIVILEGED 0x40 /* Do not set privileged traffic flag */ | |
6d2010ae | 657 | |
39236c6e A |
658 | #define SOCK_DOM(so) ((so)->so_proto->pr_domain->dom_family) |
659 | #define SOCK_TYPE(so) ((so)->so_proto->pr_type) | |
660 | #define SOCK_PROTO(so) ((so)->so_proto->pr_protocol) | |
661 | ||
662 | #define SOCK_CHECK_DOM(so, dom) (SOCK_DOM(so) == (dom)) | |
663 | #define SOCK_CHECK_TYPE(so, type) (SOCK_TYPE(so) == (type)) | |
664 | #define SOCK_CHECK_PROTO(so, proto) (SOCK_PROTO(so) == (proto)) | |
665 | ||
666 | /* | |
667 | * Socket process information | |
668 | */ | |
669 | struct so_procinfo { | |
670 | pid_t spi_pid; | |
671 | pid_t spi_epid; | |
fe8ab488 A |
672 | uuid_t spi_uuid; |
673 | uuid_t spi_euuid; | |
3e170ce0 | 674 | int spi_delegated; |
39236c6e A |
675 | }; |
676 | ||
39236c6e A |
677 | extern u_int32_t sb_max; |
678 | extern so_gen_t so_gencnt; | |
679 | extern int socket_debug; | |
680 | extern int sosendjcl; | |
681 | extern int sosendjcl_ignore_capab; | |
682 | extern int sodefunctlog; | |
683 | extern int sothrottlelog; | |
684 | extern int sorestrictrecv; | |
fe8ab488 | 685 | extern int sorestrictsend; |
39236c6e A |
686 | extern int somaxconn; |
687 | extern uint32_t tcp_autosndbuf_max; | |
6d2010ae | 688 | extern u_int32_t sotcdb; |
39236c6e A |
689 | extern u_int32_t net_io_policy_throttled; |
690 | extern u_int32_t net_io_policy_log; | |
3e170ce0 | 691 | extern u_int32_t net_io_policy_throttle_best_effort; |
39236c6e A |
692 | #if CONFIG_PROC_UUID_POLICY |
693 | extern u_int32_t net_io_policy_uuid; | |
694 | #endif /* CONFIG_PROC_UUID_POLICY */ | |
3e170ce0 A |
695 | |
696 | extern struct soextbkidlestat soextbkidlestat; | |
697 | ||
39236c6e A |
698 | #endif /* BSD_KERNEL_PRIVATE */ |
699 | ||
700 | struct mbuf; | |
701 | struct sockaddr; | |
702 | struct ucred; | |
703 | struct uio; | |
6d2010ae | 704 | |
3e170ce0 A |
705 | #define SOCK_MSG_SA 0x01 |
706 | #define SOCK_MSG_CONTROL 0x02 | |
707 | #define SOCK_MSG_DATA 0x04 | |
708 | ||
709 | struct recv_msg_elem { | |
710 | struct uio *uio; | |
711 | struct sockaddr *psa; | |
712 | struct mbuf *controlp; | |
713 | int which; | |
714 | int flags; | |
715 | }; | |
716 | ||
1c79356b A |
717 | /* |
718 | * From uipc_socket and friends | |
719 | */ | |
91447636 | 720 | __BEGIN_DECLS |
2d21ac55 | 721 | /* Exported */ |
39236c6e A |
722 | extern int sbappendaddr(struct sockbuf *sb, struct sockaddr *asa, |
723 | struct mbuf *m0, struct mbuf *control, int *error_out); | |
724 | extern int sbappendrecord(struct sockbuf *sb, struct mbuf *m0); | |
725 | extern void sbflush(struct sockbuf *sb); | |
726 | extern int sbspace(struct sockbuf *sb); | |
727 | extern int soabort(struct socket *so); | |
728 | extern void socantrcvmore(struct socket *so); | |
729 | extern void socantsendmore(struct socket *so); | |
730 | extern int sodisconnect(struct socket *so); | |
731 | extern void sofree(struct socket *so); | |
732 | extern void sofreelastref(struct socket *, int); | |
733 | extern void soisconnected(struct socket *so); | |
3e170ce0 | 734 | extern boolean_t socanwrite(struct socket *so); |
39236c6e A |
735 | extern void soisconnecting(struct socket *so); |
736 | extern void soisdisconnected(struct socket *so); | |
737 | extern void soisdisconnecting(struct socket *so); | |
738 | extern struct socket *sonewconn(struct socket *head, int connstatus, | |
739 | const struct sockaddr *from); | |
740 | extern int sopoll(struct socket *so, int events, struct ucred *cred, void *wql); | |
741 | extern int sooptcopyin(struct sockopt *sopt, void *data, size_t len, | |
742 | size_t minlen); | |
743 | extern int sooptcopyout(struct sockopt *sopt, void *data, size_t len); | |
744 | extern int soreceive(struct socket *so, struct sockaddr **paddr, | |
745 | struct uio *uio, struct mbuf **mp0, struct mbuf **controlp, int *flagsp); | |
746 | extern int soreserve(struct socket *so, u_int32_t sndcc, u_int32_t rcvcc); | |
3e170ce0 | 747 | extern void soreserve_preconnect(struct socket *so, unsigned int pre_cc); |
39236c6e A |
748 | extern void sorwakeup(struct socket *so); |
749 | extern int sosend(struct socket *so, struct sockaddr *addr, struct uio *uio, | |
750 | struct mbuf *top, struct mbuf *control, int flags); | |
3e170ce0 A |
751 | extern int sosend_list(struct socket *so, struct uio **uio, u_int uiocnt, int flags); |
752 | extern int soreceive_list(struct socket *so, struct recv_msg_elem *msgarray, u_int msgcnt, | |
753 | int *flags); | |
fe8ab488 | 754 | extern void sonullevent(struct socket *so, void *arg, uint32_t hint); |
39236c6e A |
755 | __END_DECLS |
756 | ||
757 | #ifdef BSD_KERNEL_PRIVATE | |
758 | struct file; | |
759 | struct filedesc; | |
760 | struct so_tcdbg; | |
761 | ||
762 | __BEGIN_DECLS | |
763 | /* Not exported */ | |
764 | extern void socketinit(void); | |
2d21ac55 A |
765 | extern struct sockaddr *dup_sockaddr(struct sockaddr *sa, int canwait); |
766 | extern int getsock(struct filedesc *fdp, int fd, struct file **fpp); | |
767 | extern int sockargs(struct mbuf **mp, user_addr_t data, int buflen, int type); | |
39236c6e A |
768 | extern void get_sockev_state(struct socket *, u_int32_t *); |
769 | extern void so_update_last_owner_locked(struct socket *, struct proc *); | |
770 | extern void so_update_policy(struct socket *); | |
2d21ac55 A |
771 | |
772 | extern int sbappend(struct sockbuf *sb, struct mbuf *m); | |
773 | extern int sbappendstream(struct sockbuf *sb, struct mbuf *m); | |
2d21ac55 A |
774 | extern int sbappendcontrol(struct sockbuf *sb, struct mbuf *m0, |
775 | struct mbuf *control, int *error_out); | |
39236c6e A |
776 | extern int sbappendmsgstream_rcv(struct sockbuf *sb, struct mbuf *m, |
777 | uint32_t seqnum, int flags); | |
778 | extern int sbappendstream_rcvdemux(struct socket *so, struct mbuf *m, | |
779 | uint32_t seqnum, int flags); | |
780 | #if MPTCP | |
781 | extern int sbappendmptcpstream_rcv(struct sockbuf *sb, struct mbuf *m); | |
782 | #endif /* MPTCP */ | |
783 | extern int sbappendmsg_snd(struct sockbuf *sb, struct mbuf *m); | |
784 | extern void sbpull_unordered_data(struct socket *, int32_t, int32_t); | |
2d21ac55 A |
785 | extern void sbcheck(struct sockbuf *sb); |
786 | extern void sblastmbufchk(struct sockbuf *, const char *); | |
787 | extern void sblastrecordchk(struct sockbuf *, const char *); | |
788 | extern struct mbuf *sbcreatecontrol(caddr_t p, int size, int type, int level); | |
39236c6e A |
789 | extern struct mbuf **sbcreatecontrol_mbuf(caddr_t p, int size, int type, |
790 | int level, struct mbuf** m); | |
2d21ac55 A |
791 | extern void sbdrop(struct sockbuf *sb, int len); |
792 | extern void sbdroprecord(struct sockbuf *sb); | |
2d21ac55 A |
793 | extern int sbinsertoob(struct sockbuf *sb, struct mbuf *m0); |
794 | extern void sbrelease(struct sockbuf *sb); | |
b0d623f7 | 795 | extern int sbreserve(struct sockbuf *sb, u_int32_t cc); |
2d21ac55 A |
796 | extern void sbtoxsockbuf(struct sockbuf *sb, struct xsockbuf *xsb); |
797 | extern int sbwait(struct sockbuf *sb); | |
39236c6e | 798 | extern void sbwakeup(struct sockbuf *sb); |
2d21ac55 | 799 | extern void sb_empty_assert(struct sockbuf *, const char *); |
39236c6e A |
800 | extern int sb_notify(struct sockbuf *sb); |
801 | extern void sballoc(struct sockbuf *sb, struct mbuf *m); | |
802 | extern void sbfree(struct sockbuf *sb, struct mbuf *m); | |
803 | extern void sbfree_chunk(struct sockbuf *sb, struct mbuf *m); | |
804 | ||
805 | /* | |
806 | * Flags to sblock(). | |
807 | */ | |
808 | #define SBL_WAIT 0x00000001 /* Wait if not immediately available. */ | |
809 | #define SBL_NOINTR 0x00000002 /* Force non-interruptible sleep. */ | |
810 | #define SBL_IGNDEFUNCT 0x00000004 /* Ignore defunct'd state */ | |
811 | #define SBL_VALID (SBL_WAIT | SBL_NOINTR | SBL_IGNDEFUNCT) | |
812 | extern int sblock(struct sockbuf *sb, uint32_t flags); | |
813 | extern void sbunlock(struct sockbuf *sb, boolean_t keeplocked); | |
2d21ac55 | 814 | |
2d21ac55 A |
815 | extern int soaccept(struct socket *so, struct sockaddr **nam); |
816 | extern int soacceptlock(struct socket *so, struct sockaddr **nam, int dolock); | |
817 | extern int soacceptfilter(struct socket *so); | |
818 | extern struct socket *soalloc(int waitok, int dom, int type); | |
39236c6e | 819 | extern int sobindlock(struct socket *so, struct sockaddr *nam, int dolock); |
2d21ac55 | 820 | extern int soclose(struct socket *so); |
39236c6e A |
821 | extern int soclose_locked(struct socket *so); |
822 | extern void soclose_wait_locked(struct socket *so); | |
2d21ac55 A |
823 | extern int soconnect(struct socket *so, struct sockaddr *nam); |
824 | extern int soconnectlock(struct socket *so, struct sockaddr *nam, int dolock); | |
825 | extern int soconnect2(struct socket *so1, struct socket *so2); | |
39236c6e | 826 | extern int soconnectxlocked(struct socket *so, struct sockaddr_list **src_sl, |
3e170ce0 A |
827 | struct sockaddr_list **dst_sl, struct proc *, uint32_t, sae_associd_t, |
828 | sae_connid_t *, uint32_t, void *, u_int32_t, uio_t, user_ssize_t*); | |
829 | extern int sodisconnectx(struct socket *so, sae_associd_t, sae_connid_t); | |
830 | extern int sodisconnectxlocked(struct socket *so, sae_associd_t, sae_connid_t); | |
831 | extern int sopeelofflocked(struct socket *so, sae_associd_t, struct socket **); | |
39236c6e A |
832 | extern void soevupcall(struct socket *, u_int32_t); |
833 | /* flags for socreate_internal */ | |
834 | #define SOCF_ASYNC 0x1 /* non-blocking socket */ | |
835 | #define SOCF_MP_SUBFLOW 0x2 /* multipath subflow socket */ | |
836 | extern int socreate_internal(int dom, struct socket **aso, int type, int proto, | |
837 | struct proc *, uint32_t, struct proc *); | |
2d21ac55 | 838 | extern int socreate(int dom, struct socket **aso, int type, int proto); |
39236c6e | 839 | extern int socreate_delegate(int dom, struct socket **aso, int type, int proto, pid_t epid); |
2d21ac55 | 840 | extern void sodealloc(struct socket *so); |
2d21ac55 | 841 | extern int sodisconnectlocked(struct socket *so); |
2d21ac55 A |
842 | extern void soreference(struct socket *so); |
843 | extern void sodereference(struct socket *so); | |
844 | extern void somultipages(struct socket *, boolean_t); | |
fe8ab488 | 845 | extern void soif2kcl(struct socket *, boolean_t); |
6d2010ae A |
846 | extern int sosetdefunct(struct proc *, struct socket *, int level, boolean_t); |
847 | extern int sodefunct(struct proc *, struct socket *, int level); | |
3e170ce0 A |
848 | extern int soresume(struct proc *, struct socket *, int); |
849 | extern void resume_proc_sockets(proc_t); | |
850 | extern int so_check_extended_bk_idle_time(struct socket *); | |
851 | extern void so_drain_extended_bk_idle(struct socket *); | |
2d21ac55 | 852 | extern void sohasoutofband(struct socket *so); |
6d2010ae | 853 | extern void sodisconnectwakeup(struct socket *so); |
316670eb A |
854 | extern int soisthrottled(struct socket *so); |
855 | extern int soisprivilegedtraffic(struct socket *so); | |
39236c6e | 856 | extern int soissrcbackground(struct socket *so); |
fe8ab488 | 857 | extern int soissrcrealtime(struct socket *so); |
3e170ce0 | 858 | extern int soissrcbesteffort(struct socket *so); |
2d21ac55 A |
859 | extern int solisten(struct socket *so, int backlog); |
860 | extern struct socket *sodropablereq(struct socket *head); | |
2d21ac55 A |
861 | extern int socket_lock(struct socket *so, int refcount); |
862 | extern int socket_unlock(struct socket *so, int refcount); | |
b0d623f7 A |
863 | extern int sogetaddr_locked(struct socket *, struct sockaddr **, int); |
864 | extern const char *solockhistory_nr(struct socket *); | |
316670eb | 865 | extern void soevent(struct socket *so, long hint); |
39236c6e A |
866 | extern void sorflush(struct socket *so); |
867 | extern void sowflush(struct socket *so); | |
868 | extern void sowakeup(struct socket *so, struct sockbuf *sb); | |
869 | extern int soioctl(struct socket *so, u_long cmd, caddr_t data, struct proc *p); | |
870 | extern int sogetoptlock(struct socket *so, struct sockopt *sopt, int); | |
871 | extern int sosetoptlock(struct socket *so, struct sockopt *sopt, int); | |
872 | extern int soshutdown(struct socket *so, int how); | |
873 | extern int soshutdownlock(struct socket *so, int how); | |
fe8ab488 | 874 | extern int soshutdownlock_final(struct socket *so, int how); |
39236c6e A |
875 | extern void sotoxsocket(struct socket *so, struct xsocket *xso); |
876 | extern void sotoxsocket64(struct socket *so, struct xsocket64 *xso); | |
877 | extern int sosendallatonce(struct socket *so); | |
878 | extern int soreadable(struct socket *so); | |
879 | extern int sowriteable(struct socket *so); | |
880 | extern void sowwakeup(struct socket *so); | |
881 | extern int sosendcheck(struct socket *, struct sockaddr *, user_ssize_t, | |
882 | int32_t, int32_t, int, int *, struct mbuf *); | |
883 | ||
884 | extern int soo_ioctl(struct fileproc *, u_long, caddr_t, vfs_context_t); | |
885 | extern int soo_stat(struct socket *, void *, int); | |
886 | extern int soo_select(struct fileproc *, int, void *, vfs_context_t); | |
887 | extern int soo_kqfilter(struct fileproc *, struct knote *, vfs_context_t); | |
888 | ||
889 | extern struct sockaddr_entry *sockaddrentry_alloc(int); | |
890 | extern void sockaddrentry_free(struct sockaddr_entry *); | |
891 | extern struct sockaddr_entry *sockaddrentry_dup(const struct sockaddr_entry *, | |
892 | int); | |
893 | extern struct sockaddr_list *sockaddrlist_alloc(int); | |
894 | extern void sockaddrlist_free(struct sockaddr_list *); | |
895 | extern void sockaddrlist_insert(struct sockaddr_list *, | |
896 | struct sockaddr_entry *); | |
897 | extern void sockaddrlist_remove(struct sockaddr_list *, | |
898 | struct sockaddr_entry *); | |
899 | extern struct sockaddr_list *sockaddrlist_dup(const struct sockaddr_list *, | |
900 | int); | |
316670eb | 901 | |
316670eb A |
902 | /* Service class flags used for setting service class on a packet */ |
903 | #define PKT_SCF_IPV6 0x00000001 /* IPv6 packet */ | |
904 | #define PKT_SCF_TCP_ACK 0x00000002 /* Pure TCP ACK */ | |
905 | ||
3e170ce0 A |
906 | /* |
907 | * Flags for connectx(2) user-protocol request routine. | |
908 | */ | |
909 | ||
910 | #define CONNREQF_MPTCP 0x1 /* called internally by MPTCP */ | |
911 | #define CONNREQF_UIO 0x2 /* there's data */ | |
912 | #define CONNREQF_IDEM 0x4 /* data is idempotent */ | |
913 | ||
316670eb A |
914 | extern void set_packet_service_class(struct mbuf *, struct socket *, |
915 | mbuf_svc_class_t, u_int32_t); | |
39236c6e A |
916 | extern void so_tc_update_stats(struct mbuf *, struct socket *, |
917 | mbuf_svc_class_t); | |
316670eb A |
918 | extern mbuf_svc_class_t mbuf_service_class_from_control(struct mbuf *); |
919 | extern mbuf_svc_class_t so_tc2msc(int); | |
920 | extern int so_svc2tc(mbuf_svc_class_t); | |
921 | ||
39236c6e A |
922 | extern u_int8_t tcp_cansbgrow(struct sockbuf *sb); |
923 | extern int tcp_get_msg_priority(struct mbuf *, uint32_t *); | |
6d2010ae | 924 | extern void set_tcp_stream_priority(struct socket *so); |
39236c6e | 925 | |
6d2010ae A |
926 | extern int so_set_traffic_class(struct socket *, int); |
927 | extern void so_set_default_traffic_class(struct socket *); | |
316670eb A |
928 | extern int so_set_opportunistic(struct socket *, int); |
929 | extern int so_get_opportunistic(struct socket *); | |
930 | extern int so_set_recv_anyif(struct socket *, int); | |
931 | extern int so_get_recv_anyif(struct socket *); | |
39236c6e A |
932 | extern int so_set_effective_pid(struct socket *, int, struct proc *); |
933 | extern int so_set_effective_uuid(struct socket *, uuid_t, struct proc *); | |
934 | extern int so_set_restrictions(struct socket *, uint32_t); | |
935 | extern uint32_t so_get_restrictions(struct socket *); | |
6d2010ae A |
936 | extern void socket_tclass_init(void); |
937 | extern int so_set_tcdbg(struct socket *, struct so_tcdbg *); | |
938 | extern int sogetopt_tcdbg(struct socket *, struct sockopt *); | |
39236c6e A |
939 | extern void so_set_lro(struct socket*, int); |
940 | ||
941 | extern int so_isdstlocal(struct socket *); | |
6d2010ae | 942 | extern void so_recv_data_stat(struct socket *, struct mbuf *, size_t); |
fe8ab488 | 943 | extern void so_inc_recv_data_stat(struct socket *, size_t, size_t, uint32_t); |
316670eb | 944 | extern int so_wait_for_if_feedback(struct socket *); |
39236c6e | 945 | extern int msgq_sbspace(struct socket *so, struct mbuf *control); |
2d21ac55 A |
946 | extern int soopt_getm(struct sockopt *sopt, struct mbuf **mp); |
947 | extern int soopt_mcopyin(struct sockopt *sopt, struct mbuf *m); | |
948 | extern int soopt_mcopyout(struct sockopt *sopt, struct mbuf *m); | |
39236c6e | 949 | extern boolean_t so_cache_timer(void); |
2d21ac55 | 950 | |
490019cf | 951 | extern void mptcp_preproc_sbdrop(struct socket *, struct mbuf *, unsigned int); |
39236c6e A |
952 | extern void mptcp_postproc_sbdrop(struct mbuf *, u_int64_t, u_int32_t, |
953 | u_int32_t); | |
fe8ab488 | 954 | extern int mptcp_adj_rmap(struct socket *, struct mbuf *); |
1c79356b | 955 | |
39236c6e A |
956 | extern void netpolicy_post_msg(uint32_t, struct netpolicy_event_data *, |
957 | uint32_t); | |
fe8ab488 A |
958 | extern void socket_post_kev_msg(uint32_t, struct kev_socket_event_data *, |
959 | uint32_t); | |
960 | extern void socket_post_kev_msg_closed(struct socket *); | |
961 | /* | |
962 | * Socket operation routines. | |
963 | * These routines are called by the routines in | |
964 | * sys_socket.c or from a system process, and | |
965 | * implement the semantics of socket operations by | |
966 | * switching out to the protocol specific routines. | |
967 | */ | |
968 | extern void postevent(struct socket *, struct sockbuf *, int); | |
969 | extern void evsofree(struct socket *); | |
970 | ||
971 | extern int tcp_notsent_lowat_check(struct socket *so); | |
972 | ||
973 | extern user_ssize_t uio_array_resid(struct uio **, u_int); | |
3e170ce0 | 974 | extern user_ssize_t recv_msg_array_resid(struct recv_msg_elem *, u_int); |
fe8ab488 A |
975 | |
976 | void sotoxsocket_n(struct socket *, struct xsocket_n *); | |
977 | void sbtoxsockbuf_n(struct sockbuf *, struct xsockbuf_n *); | |
978 | void sbtoxsockstat_n(struct socket *, struct xsockstat_n *); | |
979 | ||
91447636 | 980 | __END_DECLS |
39236c6e | 981 | #endif /* BSD_KERNEL_PRIVATE */ |
91447636 | 982 | #endif /* KERNEL_PRIVATE */ |
1c79356b | 983 | #endif /* !_SYS_SOCKETVAR_H_ */ |