1*d8b80295SApple OSS Distributions /* 2*d8b80295SApple OSS Distributions * Copyright (c) 2000-2020 Apple Inc. All rights reserved. 3*d8b80295SApple OSS Distributions * 4*d8b80295SApple OSS Distributions * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ 5*d8b80295SApple OSS Distributions * 6*d8b80295SApple OSS Distributions * This file contains Original Code and/or Modifications of Original Code 7*d8b80295SApple OSS Distributions * as defined in and that are subject to the Apple Public Source License 8*d8b80295SApple OSS Distributions * Version 2.0 (the 'License'). You may not use this file except in 9*d8b80295SApple OSS Distributions * compliance with the License. The rights granted to you under the License 10*d8b80295SApple OSS Distributions * may not be used to create, or enable the creation or redistribution of, 11*d8b80295SApple OSS Distributions * unlawful or unlicensed copies of an Apple operating system, or to 12*d8b80295SApple OSS Distributions * circumvent, violate, or enable the circumvention or violation of, any 13*d8b80295SApple OSS Distributions * terms of an Apple operating system software license agreement. 14*d8b80295SApple OSS Distributions * 15*d8b80295SApple OSS Distributions * Please obtain a copy of the License at 16*d8b80295SApple OSS Distributions * http://www.opensource.apple.com/apsl/ and read it before using this file. 17*d8b80295SApple OSS Distributions * 18*d8b80295SApple OSS Distributions * The Original Code and all software distributed under the License are 19*d8b80295SApple OSS Distributions * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 20*d8b80295SApple OSS Distributions * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, 21*d8b80295SApple OSS Distributions * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, 22*d8b80295SApple OSS Distributions * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 23*d8b80295SApple OSS Distributions * Please see the License for the specific language governing rights and 24*d8b80295SApple OSS Distributions * limitations under the License. 25*d8b80295SApple OSS Distributions * 26*d8b80295SApple OSS Distributions * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ 27*d8b80295SApple OSS Distributions */ 28*d8b80295SApple OSS Distributions /* Copyright (c) 1998, 1999 Apple Computer, Inc. All Rights Reserved */ 29*d8b80295SApple OSS Distributions /* Copyright (c) 1995 NeXT Computer, Inc. All Rights Reserved */ 30*d8b80295SApple OSS Distributions /* 31*d8b80295SApple OSS Distributions * Copyright (c) 1982, 1986, 1990, 1993 32*d8b80295SApple OSS Distributions * The Regents of the University of California. All rights reserved. 33*d8b80295SApple OSS Distributions * 34*d8b80295SApple OSS Distributions * Redistribution and use in source and binary forms, with or without 35*d8b80295SApple OSS Distributions * modification, are permitted provided that the following conditions 36*d8b80295SApple OSS Distributions * are met: 37*d8b80295SApple OSS Distributions * 1. Redistributions of source code must retain the above copyright 38*d8b80295SApple OSS Distributions * notice, this list of conditions and the following disclaimer. 39*d8b80295SApple OSS Distributions * 2. Redistributions in binary form must reproduce the above copyright 40*d8b80295SApple OSS Distributions * notice, this list of conditions and the following disclaimer in the 41*d8b80295SApple OSS Distributions * documentation and/or other materials provided with the distribution. 42*d8b80295SApple OSS Distributions * 3. All advertising materials mentioning features or use of this software 43*d8b80295SApple OSS Distributions * must display the following acknowledgement: 44*d8b80295SApple OSS Distributions * This product includes software developed by the University of 45*d8b80295SApple OSS Distributions * California, Berkeley and its contributors. 46*d8b80295SApple OSS Distributions * 4. Neither the name of the University nor the names of its contributors 47*d8b80295SApple OSS Distributions * may be used to endorse or promote products derived from this software 48*d8b80295SApple OSS Distributions * without specific prior written permission. 49*d8b80295SApple OSS Distributions * 50*d8b80295SApple OSS Distributions * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 51*d8b80295SApple OSS Distributions * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 52*d8b80295SApple OSS Distributions * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 53*d8b80295SApple OSS Distributions * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 54*d8b80295SApple OSS Distributions * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 55*d8b80295SApple OSS Distributions * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 56*d8b80295SApple OSS Distributions * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 57*d8b80295SApple OSS Distributions * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 58*d8b80295SApple OSS Distributions * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 59*d8b80295SApple OSS Distributions * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 60*d8b80295SApple OSS Distributions * SUCH DAMAGE. 61*d8b80295SApple OSS Distributions * 62*d8b80295SApple OSS Distributions * @(#)socketvar.h 8.3 (Berkeley) 2/19/95 63*d8b80295SApple OSS Distributions * $FreeBSD: src/sys/sys/socketvar.h,v 1.46.2.6 2001/08/31 13:45:49 jlemon Exp $ 64*d8b80295SApple OSS Distributions */ 65*d8b80295SApple OSS Distributions /* 66*d8b80295SApple OSS Distributions * NOTICE: This file was modified by SPARTA, Inc. in 2005 to introduce 67*d8b80295SApple OSS Distributions * support for mandatory and extensible security protections. This notice 68*d8b80295SApple OSS Distributions * is included in support of clause 2.2 (b) of the Apple Public License, 69*d8b80295SApple OSS Distributions * Version 2.0. 70*d8b80295SApple OSS Distributions */ 71*d8b80295SApple OSS Distributions 72*d8b80295SApple OSS Distributions #ifndef _SYS_SOCKETVAR_H_ 73*d8b80295SApple OSS Distributions #define _SYS_SOCKETVAR_H_ 74*d8b80295SApple OSS Distributions 75*d8b80295SApple OSS Distributions #include <sys/appleapiopts.h> 76*d8b80295SApple OSS Distributions #include <sys/cdefs.h> 77*d8b80295SApple OSS Distributions #include <sys/constrained_ctypes.h> 78*d8b80295SApple OSS Distributions #include <sys/types.h> /* u_quad_t */ 79*d8b80295SApple OSS Distributions #ifdef KERNEL_PRIVATE 80*d8b80295SApple OSS Distributions #include <sys/queue.h> /* for TAILQ macros */ 81*d8b80295SApple OSS Distributions #include <sys/select.h> /* for struct selinfo */ 82*d8b80295SApple OSS Distributions #include <net/kext_net.h> 83*d8b80295SApple OSS Distributions #include <sys/ev.h> 84*d8b80295SApple OSS Distributions #include <uuid/uuid.h> 85*d8b80295SApple OSS Distributions #ifdef BSD_KERNEL_PRIVATE 86*d8b80295SApple OSS Distributions #include <sys/eventhandler.h> 87*d8b80295SApple OSS Distributions #endif /* BSD_KERNEL_PRIVATE */ 88*d8b80295SApple OSS Distributions #endif /* KERNEL_PRIVATE */ 89*d8b80295SApple OSS Distributions #if !KERNEL 90*d8b80295SApple OSS Distributions #include <TargetConditionals.h> 91*d8b80295SApple OSS Distributions #include <uuid/uuid.h> 92*d8b80295SApple OSS Distributions #endif 93*d8b80295SApple OSS Distributions 94*d8b80295SApple OSS Distributions typedef u_quad_t so_gen_t; 95*d8b80295SApple OSS Distributions 96*d8b80295SApple OSS Distributions #ifdef KERNEL_PRIVATE 97*d8b80295SApple OSS Distributions struct mbuf; 98*d8b80295SApple OSS Distributions struct socket_filter_entry; 99*d8b80295SApple OSS Distributions struct protosw; 100*d8b80295SApple OSS Distributions struct sockif; 101*d8b80295SApple OSS Distributions struct sockutil; 102*d8b80295SApple OSS Distributions 103*d8b80295SApple OSS Distributions /* strings for sleep message: */ 104*d8b80295SApple OSS Distributions extern char netio[], netcon[], netcls[]; 105*d8b80295SApple OSS Distributions #define SOCKET_CACHE_ON 106*d8b80295SApple OSS Distributions #define SO_CACHE_FLUSH_INTERVAL 1 /* Seconds */ 107*d8b80295SApple OSS Distributions #define SO_CACHE_TIME_LIMIT (120/SO_CACHE_FLUSH_INTERVAL) /* Seconds */ 108*d8b80295SApple OSS Distributions #define SO_CACHE_MAX_FREE_BATCH 50 109*d8b80295SApple OSS Distributions #define MAX_CACHED_SOCKETS 512 110*d8b80295SApple OSS Distributions #define TEMPDEBUG 0 111*d8b80295SApple OSS Distributions #endif /* KERNEL_PRIVATE */ 112*d8b80295SApple OSS Distributions 113*d8b80295SApple OSS Distributions #ifdef PRIVATE 114*d8b80295SApple OSS Distributions #define SO_TC_STATS_MAX 4 115*d8b80295SApple OSS Distributions 116*d8b80295SApple OSS Distributions struct data_stats { 117*d8b80295SApple OSS Distributions u_int64_t rxpackets; 118*d8b80295SApple OSS Distributions u_int64_t rxbytes; 119*d8b80295SApple OSS Distributions u_int64_t txpackets; 120*d8b80295SApple OSS Distributions u_int64_t txbytes; 121*d8b80295SApple OSS Distributions }; 122*d8b80295SApple OSS Distributions #endif /* PRIVATE */ 123*d8b80295SApple OSS Distributions 124*d8b80295SApple OSS Distributions #ifdef KERNEL_PRIVATE 125*d8b80295SApple OSS Distributions /* 126*d8b80295SApple OSS Distributions * Kernel structure per socket. 127*d8b80295SApple OSS Distributions * Contains send and receive buffer queues, 128*d8b80295SApple OSS Distributions * handle on protocol and pointer to protocol 129*d8b80295SApple OSS Distributions * private data and error information. 130*d8b80295SApple OSS Distributions */ 131*d8b80295SApple OSS Distributions struct socket { 132*d8b80295SApple OSS Distributions int so_zone; /* zone we were allocated from */ 133*d8b80295SApple OSS Distributions short so_type; /* generic type, see socket.h */ 134*d8b80295SApple OSS Distributions uint16_t so_protocol; 135*d8b80295SApple OSS Distributions int so_family; 136*d8b80295SApple OSS Distributions u_short so_error; /* error affecting connection */ 137*d8b80295SApple OSS Distributions u_int32_t so_options; /* from socket call, see socket.h */ 138*d8b80295SApple OSS Distributions short so_linger; /* time to linger while closing */ 139*d8b80295SApple OSS Distributions short so_state; /* internal state flags SS_*, below */ 140*d8b80295SApple OSS Distributions void *so_pcb; /* protocol control block */ 141*d8b80295SApple OSS Distributions struct protosw *so_proto; /* protocol handle */ 142*d8b80295SApple OSS Distributions /* 143*d8b80295SApple OSS Distributions * Variables for connection queueing. 144*d8b80295SApple OSS Distributions * Socket where accepts occur is so_head in all subsidiary sockets. 145*d8b80295SApple OSS Distributions * If so_head is 0, socket is not related to an accept. 146*d8b80295SApple OSS Distributions * For head socket so_incomp queues partially completed connections, 147*d8b80295SApple OSS Distributions * while so_comp is a queue of connections ready to be accepted. 148*d8b80295SApple OSS Distributions * If a connection is aborted and it has so_head set, then 149*d8b80295SApple OSS Distributions * it has to be pulled out of either so_incomp or so_comp. 150*d8b80295SApple OSS Distributions * We allow connections to queue up based on current queue lengths 151*d8b80295SApple OSS Distributions * and limit on number of queued connections for this socket. 152*d8b80295SApple OSS Distributions */ 153*d8b80295SApple OSS Distributions struct socket *so_head; /* back pointer to accept socket */ 154*d8b80295SApple OSS Distributions TAILQ_HEAD(, socket) so_incomp; /* q of partially unaccepted conns */ 155*d8b80295SApple OSS Distributions TAILQ_HEAD(, socket) so_comp; /* q of complete unaccepted conns */ 156*d8b80295SApple OSS Distributions TAILQ_ENTRY(socket) so_list; /* list of unaccepted connections */ 157*d8b80295SApple OSS Distributions short so_qlen; /* number of unaccepted connections */ 158*d8b80295SApple OSS Distributions short so_incqlen; /* number of unaccepted incomplete 159*d8b80295SApple OSS Distributions * connections */ 160*d8b80295SApple OSS Distributions short so_qlimit; /* max number queued connections */ 161*d8b80295SApple OSS Distributions short so_timeo; /* connection timeout */ 162*d8b80295SApple OSS Distributions pid_t so_pgid; /* pgid for signals */ 163*d8b80295SApple OSS Distributions u_int32_t so_oobmark; /* chars to oob mark */ 164*d8b80295SApple OSS Distributions /* 165*d8b80295SApple OSS Distributions * Variables for socket buffering. 166*d8b80295SApple OSS Distributions */ 167*d8b80295SApple OSS Distributions struct sockbuf { 168*d8b80295SApple OSS Distributions uint32_t sb_cc; /* actual chars in buffer */ 169*d8b80295SApple OSS Distributions uint32_t sb_hiwat; /* max actual char count */ 170*d8b80295SApple OSS Distributions uint32_t sb_mbcnt; /* chars of mbufs used */ 171*d8b80295SApple OSS Distributions uint32_t sb_mbmax; /* max chars of mbufs to use */ 172*d8b80295SApple OSS Distributions uint32_t sb_ctl; /* non-data chars in buffer */ 173*d8b80295SApple OSS Distributions uint32_t sb_lowat; /* low water mark */ 174*d8b80295SApple OSS Distributions struct mbuf *sb_mb; /* the mbuf chain */ 175*d8b80295SApple OSS Distributions struct mbuf *sb_mbtail; /* the last mbuf in the chain */ 176*d8b80295SApple OSS Distributions struct mbuf *sb_lastrecord; /* first mbuf of last record */ 177*d8b80295SApple OSS Distributions struct socket *sb_so; /* socket back ptr for kexts */ 178*d8b80295SApple OSS Distributions struct selinfo sb_sel; /* process selecting rd/wr */ 179*d8b80295SApple OSS Distributions struct timeval sb_timeo; /* timeout for read/write */ 180*d8b80295SApple OSS Distributions uint32_t sb_flags; /* flags, see below */ 181*d8b80295SApple OSS Distributions uint32_t sb_idealsize; /* Ideal size for the sb based 182*d8b80295SApple OSS Distributions * on bandwidth and delay */ 183*d8b80295SApple OSS Distributions void (*sb_upcall)(struct socket *, void *arg, int waitf); 184*d8b80295SApple OSS Distributions void *sb_upcallarg; /* Arg for above */ 185*d8b80295SApple OSS Distributions uint32_t sb_wantlock; /* # of SB_LOCK waiters */ 186*d8b80295SApple OSS Distributions uint32_t sb_waiters; /* # of data/space waiters */ 187*d8b80295SApple OSS Distributions thread_t sb_cfil_thread; /* content filter thread */ 188*d8b80295SApple OSS Distributions uint32_t sb_cfil_refs; /* # of nested calls */ 189*d8b80295SApple OSS Distributions uint32_t sb_preconn_hiwat; /* preconnect hiwat mark */ 190*d8b80295SApple OSS Distributions struct mbuf *sb_sendhead; 191*d8b80295SApple OSS Distributions int sb_sendoff; 192*d8b80295SApple OSS Distributions } so_rcv, so_snd; 193*d8b80295SApple OSS Distributions #define SB_MAX (8192*1024) /* default for max chars in sockbuf */ 194*d8b80295SApple OSS Distributions #define SB_MSIZE_ADJ 256 /* fixed adjustment for mbuf */ 195*d8b80295SApple OSS Distributions #define LOW_SB_MAX (2*9*1024) /* lower limit on max socket buffer 196*d8b80295SApple OSS Distributions * size, 2 max datagrams */ 197*d8b80295SApple OSS Distributions #define SB_LOCK 0x1 /* lock on data queue */ 198*d8b80295SApple OSS Distributions #define SB_NOINTR 0x2 /* operations not interruptible */ 199*d8b80295SApple OSS Distributions #define SB_RECV 0x4 /* this is rcv sb */ 200*d8b80295SApple OSS Distributions #define SB_SEL 0x8 /* someone is selecting */ 201*d8b80295SApple OSS Distributions #define SB_ASYNC 0x10 /* ASYNC I/O, need signals */ 202*d8b80295SApple OSS Distributions #define SB_UPCALL 0x20 /* someone wants an upcall */ 203*d8b80295SApple OSS Distributions #define SB_KNOTE 0x40 /* kernel note attached */ 204*d8b80295SApple OSS Distributions #define SB_DROP 0x80 /* does not accept any more data */ 205*d8b80295SApple OSS Distributions #define SB_UNIX 0x100 /* UNIX domain socket buffer */ 206*d8b80295SApple OSS Distributions #define SB_USRSIZE 0x200 /* user specified sbreserve */ 207*d8b80295SApple OSS Distributions #define SB_AUTOSIZE 0x400 /* automatically size socket buffer */ 208*d8b80295SApple OSS Distributions #define SB_TRIM 0x800 /* Trim the socket buffer */ 209*d8b80295SApple OSS Distributions #define SB_NOCOMPRESS 0x1000 /* do not compress socket buffer */ 210*d8b80295SApple OSS Distributions #define SB_SNDBYTE_CNT 0x2000 /* keep track of snd bytes per interface */ 211*d8b80295SApple OSS Distributions #define SB_UPCALL_LOCK 0x4000 /* Keep socket locked when doing the upcall */ 212*d8b80295SApple OSS Distributions #define SB_LIMITED 0x8000 /* Socket buffer size limited */ 213*d8b80295SApple OSS Distributions #define SB_KCTL 0x10000 /* kernel control socket buffer */ 214*d8b80295SApple OSS Distributions #define SB_SENDHEAD 0x20000 215*d8b80295SApple OSS Distributions /* XXX Note that Unix domain socket's sb_flags is defined as short */ 216*d8b80295SApple OSS Distributions caddr_t so_tpcb; /* Misc. protocol control block, used 217*d8b80295SApple OSS Distributions * by some kexts */ 218*d8b80295SApple OSS Distributions 219*d8b80295SApple OSS Distributions void (*so_event)(struct socket *, void *, uint32_t); 220*d8b80295SApple OSS Distributions void *so_eventarg; /* Arg for above */ 221*d8b80295SApple OSS Distributions kauth_cred_t so_cred; /* cred of who opened the socket */ 222*d8b80295SApple OSS Distributions /* NB: generation count must not be first; easiest to make it last. */ 223*d8b80295SApple OSS Distributions so_gen_t so_gencnt; /* generation count */ 224*d8b80295SApple OSS Distributions STAILQ_ENTRY(socket) so_cache_ent; /* socache entry */ 225*d8b80295SApple OSS Distributions caddr_t so_saved_pcb; /* Saved pcb when cacheing */ 226*d8b80295SApple OSS Distributions u_int64_t cache_timestamp; /* time socket was cached */ 227*d8b80295SApple OSS Distributions uint32_t so_eventmask; /* event mask */ 228*d8b80295SApple OSS Distributions 229*d8b80295SApple OSS Distributions pid_t last_pid; /* pid of most recent accessor */ 230*d8b80295SApple OSS Distributions u_int64_t last_upid; /* upid of most recent accessor */ 231*d8b80295SApple OSS Distributions 232*d8b80295SApple OSS Distributions struct socket_filter_entry *so_filt; /* NKE hook */ 233*d8b80295SApple OSS Distributions u_int32_t so_flags; /* Flags */ 234*d8b80295SApple OSS Distributions #define SOF_NOSIGPIPE 0x00000001 235*d8b80295SApple OSS Distributions #define SOF_NOADDRAVAIL 0x00000002 /* EADDRNOTAVAIL if src addr is gone */ 236*d8b80295SApple OSS Distributions #define SOF_PCBCLEARING 0x00000004 /* pru_disconnect done; don't 237*d8b80295SApple OSS Distributions * call pru_detach */ 238*d8b80295SApple OSS Distributions #define SOF_DEFUNCT 0x00000008 /* socket marked as inactive */ 239*d8b80295SApple OSS Distributions #define SOF_CLOSEWAIT 0x00000010 /* blocked in close awaiting some events */ 240*d8b80295SApple OSS Distributions #define SOF_REUSESHAREUID 0x00000040 /* Allows SO_REUSEADDR/SO_REUSEPORT 241*d8b80295SApple OSS Distributions * for multiple so_uid */ 242*d8b80295SApple OSS Distributions #define SOF_MULTIPAGES 0x00000080 /* jumbo clusters may be used for sosend */ 243*d8b80295SApple OSS Distributions #define SOF_ABORTED 0x00000100 /* soabort was already called once */ 244*d8b80295SApple OSS Distributions #define SOF_OVERFLOW 0x00000200 /* socket was dropped as overflow of 245*d8b80295SApple OSS Distributions * listen q */ 246*d8b80295SApple OSS Distributions #define SOF_NOTIFYCONFLICT 0x00000400 /* notify that a bind was done on a 247*d8b80295SApple OSS Distributions * port already in use */ 248*d8b80295SApple OSS Distributions #define SOF_UPCALLCLOSEWAIT 0x00000800 /* block close until upcall returns */ 249*d8b80295SApple OSS Distributions #define SOF_BINDRANDOMPORT 0x00001000 /* Randomized port number for bind */ 250*d8b80295SApple OSS Distributions #define SOF_NPX_SETOPTSHUT 0x00002000 /* Non POSIX extension to allow 251*d8b80295SApple OSS Distributions * setsockopt(2) after shut down */ 252*d8b80295SApple OSS Distributions #define SOF_RECV_TRAFFIC_CLASS 0x00004000 /* Receive TC as ancillary data */ 253*d8b80295SApple OSS Distributions #define SOF_NODEFUNCT 0x00008000 /* socket cannot be defunct'd */ 254*d8b80295SApple OSS Distributions #define SOF_PRIVILEGED_TRAFFIC_CLASS 0x00010000 /* traffic class is privileged */ 255*d8b80295SApple OSS Distributions #define SOF_SUSPENDED 0x00020000 /* i/f output queue is suspended */ 256*d8b80295SApple OSS Distributions #define SOF_INCOMP_INPROGRESS 0x00040000 /* incomp socket is being processed */ 257*d8b80295SApple OSS Distributions #define SOF_NOTSENT_LOWAT 0x00080000 /* A different lowat on not sent 258*d8b80295SApple OSS Distributions * data has been set */ 259*d8b80295SApple OSS Distributions #define SOF_KNOTE 0x00100000 /* socket is on the EV_SOCK klist */ 260*d8b80295SApple OSS Distributions #define SOF_MARK_WAKE_PKT 0x00200000 /* Mark next packet as wake packet, one shot */ 261*d8b80295SApple OSS Distributions #define SOF_RECV_WAKE_PKT 0x00400000 /* Receive wake packet indication as ancillary data */ 262*d8b80295SApple OSS Distributions #define SOF_FLOW_DIVERT 0x00800000 /* Flow Divert is enabled */ 263*d8b80295SApple OSS Distributions #define SOF_MP_SUBFLOW 0x01000000 /* is a multipath subflow socket */ 264*d8b80295SApple OSS Distributions #define SOF_MP_SEC_SUBFLOW 0x04000000 /* Set up secondary flow */ 265*d8b80295SApple OSS Distributions #define SOF_MP_TRYFAILOVER 0x08000000 /* Failing subflow */ 266*d8b80295SApple OSS Distributions #define SOF_DELEGATED 0x10000000 /* on behalf of another process */ 267*d8b80295SApple OSS Distributions #define SOF_CONTENT_FILTER 0x20000000 /* Content filter enabled */ 268*d8b80295SApple OSS Distributions 269*d8b80295SApple OSS Distributions u_int32_t so_flags1; 270*d8b80295SApple OSS Distributions #define SOF1_POST_FALLBACK_SYNC 0x00000001 /* fallback to TCP */ 271*d8b80295SApple OSS Distributions #define SOF1_AWDL_PRIVILEGED 0x00000002 /* unused */ 272*d8b80295SApple OSS Distributions #define SOF1_IF_2KCL 0x00000004 /* interface prefers 2 KB clusters */ 273*d8b80295SApple OSS Distributions #define SOF1_DEFUNCTINPROG 0x00000008 274*d8b80295SApple OSS Distributions #define SOF1_DATA_IDEMPOTENT 0x00000010 /* idempotent data for TFO */ 275*d8b80295SApple OSS Distributions #define SOF1_PRECONNECT_DATA 0x00000020 /* request for preconnect data */ 276*d8b80295SApple OSS Distributions #define SOF1_EXTEND_BK_IDLE_WANTED 0x00000040 /* option set */ 277*d8b80295SApple OSS Distributions #define SOF1_EXTEND_BK_IDLE_INPROG 0x00000080 /* socket */ 278*d8b80295SApple OSS Distributions #define SOF1_CACHED_IN_SOCK_LAYER 0x00000100 /* bundled with inpcb and tcpcb */ 279*d8b80295SApple OSS Distributions #define SOF1_TFO_REWIND 0x00000200 /* rewind mptcp meta data */ 280*d8b80295SApple OSS Distributions #define SOF1_CELLFALLBACK 0x00000400 /* Initiated by cell fallback */ 281*d8b80295SApple OSS Distributions #define SOF1_QOSMARKING_ALLOWED 0x00000800 /* policy allows DSCP map */ 282*d8b80295SApple OSS Distributions #define SOF1_TC_NET_SERV_TYPE 0x00001000 /* traffic class set by SO_NETWORK_SERVICE_TYPE */ 283*d8b80295SApple OSS Distributions #define SOF1_TRAFFIC_MGT_SO_BACKGROUND 0x00002000 /* background socket */ 284*d8b80295SApple OSS Distributions #define SOF1_TRAFFIC_MGT_TCP_RECVBG 0x00004000 /* Only TCP sockets, receiver throttling */ 285*d8b80295SApple OSS Distributions #define SOF1_QOSMARKING_POLICY_OVERRIDE 0x00008000 /* Opt-out of QoS marking NECP policy */ 286*d8b80295SApple OSS Distributions #define SOF1_DATA_AUTHENTICATED 0x00010000 /* idempotent data is authenticated */ 287*d8b80295SApple OSS Distributions #define SOF1_ACCEPT_LIST_HELD 0x00020000 /* Another thread is accessing one of the accept lists */ 288*d8b80295SApple OSS Distributions #define SOF1_CONTENT_FILTER_SKIP 0x00040000 /* Content filter should be skipped, socket is blessed */ 289*d8b80295SApple OSS Distributions #define SOF1_HAS_NECP_CLIENT_UUID 0x00080000 /* NECP client UUID option set */ 290*d8b80295SApple OSS Distributions #define SOF1_IN_KERNEL_SOCKET 0x00100000 /* Socket created in kernel via KPI */ 291*d8b80295SApple OSS Distributions #define SOF1_CONNECT_COUNTED 0x00200000 /* connect() call was counted */ 292*d8b80295SApple OSS Distributions #define SOF1_DNS_COUNTED 0x00400000 /* socket counted to send DNS queries */ 293*d8b80295SApple OSS Distributions #define SOF1_MPKL_SEND_INFO 0x00800000 /* SO_MPKL_SEND_INFO option is set */ 294*d8b80295SApple OSS Distributions #define SOF1_INBOUND 0x01000000 /* Created via a passive listener */ 295*d8b80295SApple OSS Distributions #define SOF1_WANT_KEV_SOCK_CLOSED 0x02000000 /* Want generation of KEV_SOCKET_CLOSED event */ 296*d8b80295SApple OSS Distributions #define SOF1_FLOW_DIVERT_SKIP 0x04000000 /* Flow divert already declined to handle the socket */ 297*d8b80295SApple OSS Distributions #define SOF1_KNOWN_TRACKER 0x08000000 /* Socket is a connection to a known tracker */ 298*d8b80295SApple OSS Distributions #define SOF1_TRACKER_NON_APP_INITIATED 0x10000000 /* Tracker connection is non-app initiated */ 299*d8b80295SApple OSS Distributions #define SOF1_APPROVED_APP_DOMAIN 0x20000000 /* Connection is for an approved associated app domain */ 300*d8b80295SApple OSS Distributions #define SOF1_DOMAIN_INFO_SILENT 0x40000000 /* Maintain silence on any domain information */ 301*d8b80295SApple OSS Distributions 302*d8b80295SApple OSS Distributions uint32_t so_upcallusecount; /* number of upcalls in progress */ 303*d8b80295SApple OSS Distributions int so_usecount; /* refcounting of socket use */ 304*d8b80295SApple OSS Distributions int so_retaincnt; 305*d8b80295SApple OSS Distributions uint16_t so_traffic_class; 306*d8b80295SApple OSS Distributions int8_t so_netsvctype; 307*d8b80295SApple OSS Distributions uint8_t so_restrictions; 308*d8b80295SApple OSS Distributions thread_t so_send_filt_thread; 309*d8b80295SApple OSS Distributions 310*d8b80295SApple OSS Distributions /* for debug pruposes */ 311*d8b80295SApple OSS Distributions #define SO_LCKDBG_MAX 4 /* number of debug locking Link Registers recorded */ 312*d8b80295SApple OSS Distributions void *lock_lr[SO_LCKDBG_MAX]; /* locking calling history */ 313*d8b80295SApple OSS Distributions void *unlock_lr[SO_LCKDBG_MAX]; /* unlocking caller history */ 314*d8b80295SApple OSS Distributions u_int8_t next_lock_lr; 315*d8b80295SApple OSS Distributions u_int8_t next_unlock_lr; 316*d8b80295SApple OSS Distributions 317*d8b80295SApple OSS Distributions u_int16_t so_pktheadroom; /* headroom before packet payload */ 318*d8b80295SApple OSS Distributions 319*d8b80295SApple OSS Distributions u_int32_t so_ifdenied_notifies; /* # of notifications generated */ 320*d8b80295SApple OSS Distributions 321*d8b80295SApple OSS Distributions thread_t so_background_thread; /* thread that marked 322*d8b80295SApple OSS Distributions * this socket background */ 323*d8b80295SApple OSS Distributions struct data_stats so_tc_stats[SO_TC_STATS_MAX]; 324*d8b80295SApple OSS Distributions struct klist so_klist; /* klist for EV_SOCK events */ 325*d8b80295SApple OSS Distributions 326*d8b80295SApple OSS Distributions struct flow_divert_pcb *so_fd_pcb; /* Flow Divert control block */ 327*d8b80295SApple OSS Distributions 328*d8b80295SApple OSS Distributions struct soflow_db *so_flow_db; 329*d8b80295SApple OSS Distributions 330*d8b80295SApple OSS Distributions #if CONTENT_FILTER 331*d8b80295SApple OSS Distributions struct cfil_info *so_cfil; 332*d8b80295SApple OSS Distributions u_int32_t so_state_change_cnt; /* incr for each connect, disconnect */ 333*d8b80295SApple OSS Distributions #endif 334*d8b80295SApple OSS Distributions 335*d8b80295SApple OSS Distributions pid_t e_pid; /* pid of the effective owner */ 336*d8b80295SApple OSS Distributions u_int64_t e_upid; /* upid of the effective owner */ 337*d8b80295SApple OSS Distributions pid_t so_rpid; /* pid of the responsible process */ 338*d8b80295SApple OSS Distributions 339*d8b80295SApple OSS Distributions uuid_t last_uuid; /* uuid of most recent accessor */ 340*d8b80295SApple OSS Distributions uuid_t e_uuid; /* uuid of effective owner */ 341*d8b80295SApple OSS Distributions uuid_t so_vuuid; /* UUID of the Voucher originator */ 342*d8b80295SApple OSS Distributions uuid_t so_ruuid; /* UUID of the responsible process */ 343*d8b80295SApple OSS Distributions 344*d8b80295SApple OSS Distributions uid_t so_persona_id; /* persona of effective owner */ 345*d8b80295SApple OSS Distributions 346*d8b80295SApple OSS Distributions int32_t so_policy_gencnt; /* UUID policy gencnt */ 347*d8b80295SApple OSS Distributions 348*d8b80295SApple OSS Distributions u_int64_t so_extended_bk_start; 349*d8b80295SApple OSS Distributions 350*d8b80295SApple OSS Distributions u_int8_t so_fallback_mode; 351*d8b80295SApple OSS Distributions #define SO_FALLBACK_MODE_NONE 0 /* No fallback */ 352*d8b80295SApple OSS Distributions #define SO_FALLBACK_MODE_FAILOVER 1 /* Fell back after failing over */ 353*d8b80295SApple OSS Distributions #define SO_FALLBACK_MODE_SLOW 2 /* Fell back after a slow timer */ 354*d8b80295SApple OSS Distributions #define SO_FALLBACK_MODE_FAST 3 /* Fell back after a fast timer */ 355*d8b80295SApple OSS Distributions #define SO_FALLBACK_MODE_PREFER 4 /* Fell back with a headstart */ 356*d8b80295SApple OSS Distributions 357*d8b80295SApple OSS Distributions u_int8_t so_log_seqn; /* Multi-layer Packet Logging rolling sequence number */ 358*d8b80295SApple OSS Distributions uint8_t so_mpkl_send_proto; 359*d8b80295SApple OSS Distributions uuid_t so_mpkl_send_uuid; 360*d8b80295SApple OSS Distributions }; 361*d8b80295SApple OSS Distributions 362*d8b80295SApple OSS Distributions /* Control message accessor in mbufs */ 363*d8b80295SApple OSS Distributions 364*d8b80295SApple OSS Distributions #define _MIN_NXT_CMSGHDR_PTR(cmsg) \ 365*d8b80295SApple OSS Distributions ((char *)(cmsg) + \ 366*d8b80295SApple OSS Distributions __DARWIN_ALIGN32((__uint32_t)(cmsg)->cmsg_len) + \ 367*d8b80295SApple OSS Distributions __DARWIN_ALIGN32(sizeof(struct cmsghdr))) 368*d8b80295SApple OSS Distributions 369*d8b80295SApple OSS Distributions #define M_FIRST_CMSGHDR(m) \ 370*d8b80295SApple OSS Distributions ((char *)(m) != (char *)0L && \ 371*d8b80295SApple OSS Distributions (size_t)(m)->m_len >= sizeof (struct cmsghdr) && \ 372*d8b80295SApple OSS Distributions (socklen_t)(m)->m_len >= \ 373*d8b80295SApple OSS Distributions __DARWIN_ALIGN32(((struct cmsghdr *)(void *)(m)->m_data)->cmsg_len) ? \ 374*d8b80295SApple OSS Distributions (struct cmsghdr *)(void *)(m)->m_data : (struct cmsghdr *)0L) 375*d8b80295SApple OSS Distributions 376*d8b80295SApple OSS Distributions #define M_NXT_CMSGHDR(m, cmsg) \ 377*d8b80295SApple OSS Distributions ((char *)(cmsg) == (char *)0L ? M_FIRST_CMSGHDR(m) : \ 378*d8b80295SApple OSS Distributions _MIN_NXT_CMSGHDR_PTR(cmsg) > ((char *)(m)->m_data) + (m)->m_len || \ 379*d8b80295SApple OSS Distributions _MIN_NXT_CMSGHDR_PTR(cmsg) < (char *)(m)->m_data ? \ 380*d8b80295SApple OSS Distributions (struct cmsghdr *)0L /* NULL */ : \ 381*d8b80295SApple OSS Distributions (struct cmsghdr *)(void *)((unsigned char *)(cmsg) + \ 382*d8b80295SApple OSS Distributions __DARWIN_ALIGN32((__uint32_t)(cmsg)->cmsg_len))) 383*d8b80295SApple OSS Distributions 384*d8b80295SApple OSS Distributions /* 385*d8b80295SApple OSS Distributions * Need receive options 386*d8b80295SApple OSS Distributions */ 387*d8b80295SApple OSS Distributions #define SO_RECV_CONTROL_OPTS(so) \ 388*d8b80295SApple OSS Distributions (((so)->so_options & \ 389*d8b80295SApple OSS Distributions (SO_TIMESTAMP | SO_TIMESTAMP_MONOTONIC | SO_TIMESTAMP_CONTINUOUS)) || \ 390*d8b80295SApple OSS Distributions ((so)->so_flags & (SOF_RECV_TRAFFIC_CLASS | SOF_RECV_WAKE_PKT))) 391*d8b80295SApple OSS Distributions 392*d8b80295SApple OSS Distributions /* 393*d8b80295SApple OSS Distributions * Socket state bits. 394*d8b80295SApple OSS Distributions */ 395*d8b80295SApple OSS Distributions #define SS_NOFDREF 0x0001 /* no file table ref any more */ 396*d8b80295SApple OSS Distributions #define SS_ISCONNECTED 0x0002 /* socket connected to a peer */ 397*d8b80295SApple OSS Distributions #define SS_ISCONNECTING 0x0004 /* in process of connecting to peer */ 398*d8b80295SApple OSS Distributions #define SS_ISDISCONNECTING 0x0008 /* in process of disconnecting */ 399*d8b80295SApple OSS Distributions #define SS_CANTSENDMORE 0x0010 /* can't send more data to peer */ 400*d8b80295SApple OSS Distributions #define SS_CANTRCVMORE 0x0020 /* can't receive more data from peer */ 401*d8b80295SApple OSS Distributions #define SS_RCVATMARK 0x0040 /* at mark on input */ 402*d8b80295SApple OSS Distributions 403*d8b80295SApple OSS Distributions #define SS_PRIV 0x0080 /* privileged for broadcast, raw... */ 404*d8b80295SApple OSS Distributions #define SS_NBIO 0x0100 /* non-blocking ops */ 405*d8b80295SApple OSS Distributions #define SS_ASYNC 0x0200 /* async i/o notify */ 406*d8b80295SApple OSS Distributions #define SS_ISCONFIRMING 0x0400 /* deciding to accept connection req */ 407*d8b80295SApple OSS Distributions #define SS_INCOMP 0x0800 /* Unaccepted, incomplete connection */ 408*d8b80295SApple OSS Distributions #define SS_COMP 0x1000 /* unaccepted, complete connection */ 409*d8b80295SApple OSS Distributions #define SS_ISDISCONNECTED 0x2000 /* socket disconnected from peer */ 410*d8b80295SApple OSS Distributions #define SS_DRAINING 0x4000 /* close waiting for blocked system 411*d8b80295SApple OSS Distributions * calls to drain */ 412*d8b80295SApple OSS Distributions #define SS_DEFUNCT 0x8000 /* has been fully defunct'd */ 413*d8b80295SApple OSS Distributions #endif /* KERNEL_PRIVATE */ 414*d8b80295SApple OSS Distributions 415*d8b80295SApple OSS Distributions #if defined(__LP64__) 416*d8b80295SApple OSS Distributions #define _XSOCKET_PTR(x) u_int32_t 417*d8b80295SApple OSS Distributions #else 418*d8b80295SApple OSS Distributions #define _XSOCKET_PTR(x) x 419*d8b80295SApple OSS Distributions #endif 420*d8b80295SApple OSS Distributions 421*d8b80295SApple OSS Distributions #ifdef PRIVATE 422*d8b80295SApple OSS Distributions /* Flags returned in data field for EVFILT_SOCK events. */ 423*d8b80295SApple OSS Distributions #define SOCKEV_CONNECTED 0x00000001 /* connected */ 424*d8b80295SApple OSS Distributions #define SOCKEV_DISCONNECTED 0x00000002 /* disconnected */ 425*d8b80295SApple OSS Distributions #endif /* PRIVATE */ 426*d8b80295SApple OSS Distributions 427*d8b80295SApple OSS Distributions #pragma pack(4) 428*d8b80295SApple OSS Distributions 429*d8b80295SApple OSS Distributions struct xsockbuf { 430*d8b80295SApple OSS Distributions u_int32_t sb_cc; 431*d8b80295SApple OSS Distributions u_int32_t sb_hiwat; 432*d8b80295SApple OSS Distributions u_int32_t sb_mbcnt; 433*d8b80295SApple OSS Distributions u_int32_t sb_mbmax; 434*d8b80295SApple OSS Distributions int32_t sb_lowat; 435*d8b80295SApple OSS Distributions short sb_flags; 436*d8b80295SApple OSS Distributions short sb_timeo; 437*d8b80295SApple OSS Distributions }; 438*d8b80295SApple OSS Distributions 439*d8b80295SApple OSS Distributions /* 440*d8b80295SApple OSS Distributions * Externalized form of struct socket used by the sysctl(3) interface. 441*d8b80295SApple OSS Distributions */ 442*d8b80295SApple OSS Distributions struct xsocket { 443*d8b80295SApple OSS Distributions u_int32_t xso_len; /* length of this structure */ 444*d8b80295SApple OSS Distributions _XSOCKET_PTR(struct socket *) xso_so; /* makes a convenient handle */ 445*d8b80295SApple OSS Distributions short so_type; 446*d8b80295SApple OSS Distributions short so_options; 447*d8b80295SApple OSS Distributions short so_linger; 448*d8b80295SApple OSS Distributions short so_state; 449*d8b80295SApple OSS Distributions _XSOCKET_PTR(caddr_t) so_pcb; /* another convenient handle */ 450*d8b80295SApple OSS Distributions int xso_protocol; 451*d8b80295SApple OSS Distributions int xso_family; 452*d8b80295SApple OSS Distributions short so_qlen; 453*d8b80295SApple OSS Distributions short so_incqlen; 454*d8b80295SApple OSS Distributions short so_qlimit; 455*d8b80295SApple OSS Distributions short so_timeo; 456*d8b80295SApple OSS Distributions u_short so_error; 457*d8b80295SApple OSS Distributions pid_t so_pgid; 458*d8b80295SApple OSS Distributions u_int32_t so_oobmark; 459*d8b80295SApple OSS Distributions struct xsockbuf so_rcv; 460*d8b80295SApple OSS Distributions struct xsockbuf so_snd; 461*d8b80295SApple OSS Distributions uid_t so_uid; /* XXX */ 462*d8b80295SApple OSS Distributions }; 463*d8b80295SApple OSS Distributions 464*d8b80295SApple OSS Distributions #if XNU_TARGET_OS_OSX || KERNEL || !(TARGET_OS_IPHONE && !TARGET_OS_SIMULATOR) 465*d8b80295SApple OSS Distributions struct xsocket64 { 466*d8b80295SApple OSS Distributions u_int32_t xso_len; /* length of this structure */ 467*d8b80295SApple OSS Distributions u_int64_t xso_so; /* makes a convenient handle */ 468*d8b80295SApple OSS Distributions short so_type; 469*d8b80295SApple OSS Distributions short so_options; 470*d8b80295SApple OSS Distributions short so_linger; 471*d8b80295SApple OSS Distributions short so_state; 472*d8b80295SApple OSS Distributions u_int64_t so_pcb; /* another convenient handle */ 473*d8b80295SApple OSS Distributions int xso_protocol; 474*d8b80295SApple OSS Distributions int xso_family; 475*d8b80295SApple OSS Distributions short so_qlen; 476*d8b80295SApple OSS Distributions short so_incqlen; 477*d8b80295SApple OSS Distributions short so_qlimit; 478*d8b80295SApple OSS Distributions short so_timeo; 479*d8b80295SApple OSS Distributions u_short so_error; 480*d8b80295SApple OSS Distributions pid_t so_pgid; 481*d8b80295SApple OSS Distributions u_int32_t so_oobmark; 482*d8b80295SApple OSS Distributions struct xsockbuf so_rcv; 483*d8b80295SApple OSS Distributions struct xsockbuf so_snd; 484*d8b80295SApple OSS Distributions uid_t so_uid; /* XXX */ 485*d8b80295SApple OSS Distributions }; 486*d8b80295SApple OSS Distributions #endif /* XNU_TARGET_OS_OSX || KERNEL || !(TARGET_OS_IPHONE && !TARGET_OS_SIMULATOR) */ 487*d8b80295SApple OSS Distributions 488*d8b80295SApple OSS Distributions #ifdef PRIVATE 489*d8b80295SApple OSS Distributions #define XSO_SOCKET 0x001 490*d8b80295SApple OSS Distributions #define XSO_RCVBUF 0x002 491*d8b80295SApple OSS Distributions #define XSO_SNDBUF 0x004 492*d8b80295SApple OSS Distributions #define XSO_STATS 0x008 493*d8b80295SApple OSS Distributions #define XSO_INPCB 0x010 494*d8b80295SApple OSS Distributions #define XSO_TCPCB 0x020 495*d8b80295SApple OSS Distributions #define XSO_KCREG 0x040 496*d8b80295SApple OSS Distributions #define XSO_KCB 0x080 497*d8b80295SApple OSS Distributions #define XSO_EVT 0x100 498*d8b80295SApple OSS Distributions #define XSO_UNPCB 0x200 499*d8b80295SApple OSS Distributions 500*d8b80295SApple OSS Distributions struct xsocket_n { 501*d8b80295SApple OSS Distributions u_int32_t xso_len; /* length of this structure */ 502*d8b80295SApple OSS Distributions u_int32_t xso_kind; /* XSO_SOCKET */ 503*d8b80295SApple OSS Distributions u_int64_t xso_so; /* makes a convenient handle */ 504*d8b80295SApple OSS Distributions short so_type; 505*d8b80295SApple OSS Distributions u_int32_t so_options; 506*d8b80295SApple OSS Distributions short so_linger; 507*d8b80295SApple OSS Distributions short so_state; 508*d8b80295SApple OSS Distributions u_int64_t so_pcb; /* another convenient handle */ 509*d8b80295SApple OSS Distributions int xso_protocol; 510*d8b80295SApple OSS Distributions int xso_family; 511*d8b80295SApple OSS Distributions short so_qlen; 512*d8b80295SApple OSS Distributions short so_incqlen; 513*d8b80295SApple OSS Distributions short so_qlimit; 514*d8b80295SApple OSS Distributions short so_timeo; 515*d8b80295SApple OSS Distributions u_short so_error; 516*d8b80295SApple OSS Distributions pid_t so_pgid; 517*d8b80295SApple OSS Distributions u_int32_t so_oobmark; 518*d8b80295SApple OSS Distributions uid_t so_uid; /* XXX */ 519*d8b80295SApple OSS Distributions pid_t so_last_pid; 520*d8b80295SApple OSS Distributions pid_t so_e_pid; 521*d8b80295SApple OSS Distributions so_gen_t so_gencnt; 522*d8b80295SApple OSS Distributions u_int32_t so_flags; 523*d8b80295SApple OSS Distributions u_int32_t so_flags1; 524*d8b80295SApple OSS Distributions int32_t so_usecount; 525*d8b80295SApple OSS Distributions int32_t so_retaincnt; 526*d8b80295SApple OSS Distributions u_int32_t xso_filter_flags; 527*d8b80295SApple OSS Distributions }; 528*d8b80295SApple OSS Distributions 529*d8b80295SApple OSS Distributions /* 530*d8b80295SApple OSS Distributions * Values for xso_filter_flags 531*d8b80295SApple OSS Distributions */ 532*d8b80295SApple OSS Distributions #define XSOFF_SO_FILT 0x01 /* socket filter attached */ 533*d8b80295SApple OSS Distributions #define XSOFF_FLOW_DB 0x02 /* flow database attached */ 534*d8b80295SApple OSS Distributions #define XSOFF_CFIL 0x04 /* content filter attached */ 535*d8b80295SApple OSS Distributions #define XSOFF_FLOW_DIV 0x08 /* flow divert attached */ 536*d8b80295SApple OSS Distributions 537*d8b80295SApple OSS Distributions struct xsockbuf_n { 538*d8b80295SApple OSS Distributions u_int32_t xsb_len; /* length of this structure */ 539*d8b80295SApple OSS Distributions u_int32_t xsb_kind; /* XSO_RCVBUF or XSO_SNDBUF */ 540*d8b80295SApple OSS Distributions u_int32_t sb_cc; 541*d8b80295SApple OSS Distributions u_int32_t sb_hiwat; 542*d8b80295SApple OSS Distributions u_int32_t sb_mbcnt; 543*d8b80295SApple OSS Distributions u_int32_t sb_mbmax; 544*d8b80295SApple OSS Distributions int32_t sb_lowat; 545*d8b80295SApple OSS Distributions short sb_flags; 546*d8b80295SApple OSS Distributions short sb_timeo; 547*d8b80295SApple OSS Distributions }; 548*d8b80295SApple OSS Distributions 549*d8b80295SApple OSS Distributions struct xsockstat_n { 550*d8b80295SApple OSS Distributions u_int32_t xst_len; /* length of this structure */ 551*d8b80295SApple OSS Distributions u_int32_t xst_kind; /* XSO_STATS */ 552*d8b80295SApple OSS Distributions struct data_stats xst_tc_stats[SO_TC_STATS_MAX]; 553*d8b80295SApple OSS Distributions }; 554*d8b80295SApple OSS Distributions 555*d8b80295SApple OSS Distributions /* 556*d8b80295SApple OSS Distributions * Global socket statistics 557*d8b80295SApple OSS Distributions */ 558*d8b80295SApple OSS Distributions struct soextbkidlestat { 559*d8b80295SApple OSS Distributions u_int32_t so_xbkidle_maxperproc; 560*d8b80295SApple OSS Distributions u_int32_t so_xbkidle_time; 561*d8b80295SApple OSS Distributions u_int32_t so_xbkidle_rcvhiwat; 562*d8b80295SApple OSS Distributions int32_t so_xbkidle_notsupp; 563*d8b80295SApple OSS Distributions int32_t so_xbkidle_toomany; 564*d8b80295SApple OSS Distributions int32_t so_xbkidle_wantok; 565*d8b80295SApple OSS Distributions int32_t so_xbkidle_active; 566*d8b80295SApple OSS Distributions int32_t so_xbkidle_nocell; 567*d8b80295SApple OSS Distributions int32_t so_xbkidle_notime; 568*d8b80295SApple OSS Distributions int32_t so_xbkidle_forced; 569*d8b80295SApple OSS Distributions int32_t so_xbkidle_resumed; 570*d8b80295SApple OSS Distributions int32_t so_xbkidle_expired; 571*d8b80295SApple OSS Distributions int32_t so_xbkidle_resched; 572*d8b80295SApple OSS Distributions int32_t so_xbkidle_nodlgtd; 573*d8b80295SApple OSS Distributions int32_t so_xbkidle_drained; 574*d8b80295SApple OSS Distributions }; 575*d8b80295SApple OSS Distributions #endif /* PRIVATE */ 576*d8b80295SApple OSS Distributions 577*d8b80295SApple OSS Distributions #pragma pack() 578*d8b80295SApple OSS Distributions 579*d8b80295SApple OSS Distributions #ifdef KERNEL_PRIVATE 580*d8b80295SApple OSS Distributions #include <sys/kpi_mbuf.h> 581*d8b80295SApple OSS Distributions 582*d8b80295SApple OSS Distributions /* 583*d8b80295SApple OSS Distributions * Argument structure for sosetopt et seq. This is in the KERNEL 584*d8b80295SApple OSS Distributions * section because it will never be visible to user code. 585*d8b80295SApple OSS Distributions */ 586*d8b80295SApple OSS Distributions enum sopt_dir { SOPT_GET, SOPT_SET }; 587*d8b80295SApple OSS Distributions struct sockopt { 588*d8b80295SApple OSS Distributions enum sopt_dir sopt_dir; /* is this a get or a set? */ 589*d8b80295SApple OSS Distributions int sopt_level; /* second arg of [gs]etsockopt */ 590*d8b80295SApple OSS Distributions int sopt_name; /* third arg of [gs]etsockopt */ 591*d8b80295SApple OSS Distributions user_addr_t sopt_val; /* fourth arg of [gs]etsockopt */ 592*d8b80295SApple OSS Distributions size_t sopt_valsize; /* (almost) fifth arg of [gs]etsockopt */ 593*d8b80295SApple OSS Distributions struct proc *sopt_p; /* calling process or null if kernel */ 594*d8b80295SApple OSS Distributions }; 595*d8b80295SApple OSS Distributions 596*d8b80295SApple OSS Distributions #ifdef BSD_KERNEL_PRIVATE 597*d8b80295SApple OSS Distributions struct cmsghdr; 598*d8b80295SApple OSS Distributions extern boolean_t is_cmsg_valid(struct mbuf *control, struct cmsghdr *cmsg); 599*d8b80295SApple OSS Distributions 600*d8b80295SApple OSS Distributions /* 601*d8b80295SApple OSS Distributions * Socket extension mechanism: control block hooks: 602*d8b80295SApple OSS Distributions * This is the "head" of any control block for an extenstion 603*d8b80295SApple OSS Distributions * Note: we separate intercept function dispatch vectors from 604*d8b80295SApple OSS Distributions * the NFDescriptor to permit selective replacement during 605*d8b80295SApple OSS Distributions * operation, e.g., to disable some functions. 606*d8b80295SApple OSS Distributions */ 607*d8b80295SApple OSS Distributions struct kextcb { 608*d8b80295SApple OSS Distributions struct kextcb *e_next; /* Next kext control block */ 609*d8b80295SApple OSS Distributions void *e_fcb; /* Real filter control block */ 610*d8b80295SApple OSS Distributions struct NFDescriptor *e_nfd; /* NKE Descriptor */ 611*d8b80295SApple OSS Distributions /* Plug-in support - intercept functions */ 612*d8b80295SApple OSS Distributions struct sockif *e_soif; /* Socket functions */ 613*d8b80295SApple OSS Distributions struct sockutil *e_sout; /* Sockbuf utility functions */ 614*d8b80295SApple OSS Distributions }; 615*d8b80295SApple OSS Distributions #define EXT_NULL 0x0 /* STATE: Not in use */ 616*d8b80295SApple OSS Distributions 617*d8b80295SApple OSS Distributions /* Hints for socket event processing */ 618*d8b80295SApple OSS Distributions #define SO_FILT_HINT_LOCKED 0x00000001 /* socket is already locked */ 619*d8b80295SApple OSS Distributions #define SO_FILT_HINT_CONNRESET 0x00000002 /* Reset is received */ 620*d8b80295SApple OSS Distributions #define SO_FILT_HINT_CANTRCVMORE 0x00000004 /* No more data to read */ 621*d8b80295SApple OSS Distributions #define SO_FILT_HINT_CANTSENDMORE 0x00000008 /* Can't write more data */ 622*d8b80295SApple OSS Distributions #define SO_FILT_HINT_TIMEOUT 0x00000010 /* timeout */ 623*d8b80295SApple OSS Distributions #define SO_FILT_HINT_NOSRCADDR 0x00000020 /* No src address available */ 624*d8b80295SApple OSS Distributions #define SO_FILT_HINT_IFDENIED 0x00000040 /* interface denied access */ 625*d8b80295SApple OSS Distributions #define SO_FILT_HINT_SUSPEND 0x00000080 /* output queue suspended */ 626*d8b80295SApple OSS Distributions #define SO_FILT_HINT_RESUME 0x00000100 /* output queue resumed */ 627*d8b80295SApple OSS Distributions #define SO_FILT_HINT_KEEPALIVE 0x00000200 /* TCP Keepalive received */ 628*d8b80295SApple OSS Distributions #define SO_FILT_HINT_ADAPTIVE_WTIMO 0x00000400 /* TCP adaptive write timeout */ 629*d8b80295SApple OSS Distributions #define SO_FILT_HINT_ADAPTIVE_RTIMO 0x00000800 /* TCP adaptive read timeout */ 630*d8b80295SApple OSS Distributions #define SO_FILT_HINT_CONNECTED 0x00001000 /* socket is connected */ 631*d8b80295SApple OSS Distributions #define SO_FILT_HINT_DISCONNECTED 0x00002000 /* socket is disconnected */ 632*d8b80295SApple OSS Distributions #define SO_FILT_HINT_CONNINFO_UPDATED 0x00004000 /* updated conninfo avail. */ 633*d8b80295SApple OSS Distributions #define SO_FILT_HINT_MPFAILOVER 0x00008000 /* multipath failover */ 634*d8b80295SApple OSS Distributions #define SO_FILT_HINT_MPSTATUS 0x00010000 /* multipath status */ 635*d8b80295SApple OSS Distributions #define SO_FILT_HINT_MUSTRST 0x00020000 /* must send RST and close */ 636*d8b80295SApple OSS Distributions #define SO_FILT_HINT_MPCANTRCVMORE 0x00040000 /* MPTCP DFIN Received */ 637*d8b80295SApple OSS Distributions #define SO_FILT_HINT_NOTIFY_ACK 0x00080000 /* Notify Acknowledgement */ 638*d8b80295SApple OSS Distributions #define SO_FILT_HINT_MP_SUB_ERROR 0x00100000 /* Error happend on subflow */ 639*d8b80295SApple OSS Distributions #define SO_FILT_HINT_WAKE_PKT 0x00200000 /* received wake packet */ 640*d8b80295SApple OSS Distributions 641*d8b80295SApple OSS Distributions #define SO_FILT_HINT_BITS \ 642*d8b80295SApple OSS Distributions "\020\1LOCKED\2CONNRESET\3CANTRCVMORE\4CANTSENDMORE\5TIMEOUT" \ 643*d8b80295SApple OSS Distributions "\6NOSRCADDR\7IFDENIED\10SUSPEND\11RESUME\12KEEPALIVE\13AWTIMO" \ 644*d8b80295SApple OSS Distributions "\14ARTIMO\15CONNECTED\16DISCONNECTED\17CONNINFO_UPDATED" \ 645*d8b80295SApple OSS Distributions "\20MPFAILOVER\21MPSTATUS\22MUSTRST\23MPCANTRCVMORE\24NOTIFYACK"\ 646*d8b80295SApple OSS Distributions "\25MPSUBERROR\26WAKEPKT" 647*d8b80295SApple OSS Distributions 648*d8b80295SApple OSS Distributions /* Mask for hints that have corresponding kqueue events */ 649*d8b80295SApple OSS Distributions #define SO_FILT_HINT_EV \ 650*d8b80295SApple OSS Distributions (SO_FILT_HINT_CONNRESET | SO_FILT_HINT_CANTRCVMORE | \ 651*d8b80295SApple OSS Distributions SO_FILT_HINT_CANTSENDMORE | SO_FILT_HINT_TIMEOUT | \ 652*d8b80295SApple OSS Distributions SO_FILT_HINT_NOSRCADDR | SO_FILT_HINT_IFDENIED | \ 653*d8b80295SApple OSS Distributions SO_FILT_HINT_SUSPEND | SO_FILT_HINT_RESUME | \ 654*d8b80295SApple OSS Distributions SO_FILT_HINT_KEEPALIVE | SO_FILT_HINT_ADAPTIVE_WTIMO | \ 655*d8b80295SApple OSS Distributions SO_FILT_HINT_ADAPTIVE_RTIMO | SO_FILT_HINT_CONNECTED | \ 656*d8b80295SApple OSS Distributions SO_FILT_HINT_DISCONNECTED | SO_FILT_HINT_CONNINFO_UPDATED | \ 657*d8b80295SApple OSS Distributions SO_FILT_HINT_NOTIFY_ACK | SO_FILT_HINT_WAKE_PKT) 658*d8b80295SApple OSS Distributions 659*d8b80295SApple OSS Distributions #if SENDFILE 660*d8b80295SApple OSS Distributions struct sf_buf { 661*d8b80295SApple OSS Distributions SLIST_ENTRY(sf_buf) free_list; /* list of free buffer slots */ 662*d8b80295SApple OSS Distributions int refcnt; /* reference count */ 663*d8b80295SApple OSS Distributions struct vm_page *m; /* currently mapped page */ 664*d8b80295SApple OSS Distributions vm_offset_t kva; /* va of mapping */ 665*d8b80295SApple OSS Distributions }; 666*d8b80295SApple OSS Distributions #endif /* SENDFILE */ 667*d8b80295SApple OSS Distributions 668*d8b80295SApple OSS Distributions #define SBLASTRECORDCHK(sb, s) \ 669*d8b80295SApple OSS Distributions if (socket_debug) sblastrecordchk(sb, s); 670*d8b80295SApple OSS Distributions 671*d8b80295SApple OSS Distributions #define SBLASTMBUFCHK(sb, s) \ 672*d8b80295SApple OSS Distributions if (socket_debug) sblastmbufchk(sb, s); 673*d8b80295SApple OSS Distributions 674*d8b80295SApple OSS Distributions #define SB_EMPTY_FIXUP(sb) { \ 675*d8b80295SApple OSS Distributions if ((sb)->sb_mb == NULL) { \ 676*d8b80295SApple OSS Distributions (sb)->sb_mbtail = NULL; \ 677*d8b80295SApple OSS Distributions (sb)->sb_lastrecord = NULL; \ 678*d8b80295SApple OSS Distributions } \ 679*d8b80295SApple OSS Distributions } 680*d8b80295SApple OSS Distributions 681*d8b80295SApple OSS Distributions #define SB_MB_CHECK(sb) do { \ 682*d8b80295SApple OSS Distributions if (((sb)->sb_mb != NULL && \ 683*d8b80295SApple OSS Distributions (sb)->sb_cc == 0) || \ 684*d8b80295SApple OSS Distributions ((sb)->sb_mb == NULL && (sb)->sb_cc > 0)) \ 685*d8b80295SApple OSS Distributions panic("corrupt so_rcv: sb_mb %p sb_cc %d\n", \ 686*d8b80295SApple OSS Distributions (sb)->sb_mb, (sb)->sb_cc); \ 687*d8b80295SApple OSS Distributions } while (0) 688*d8b80295SApple OSS Distributions 689*d8b80295SApple OSS Distributions #define SODEFUNCTLOG(fmt, ...) do { \ 690*d8b80295SApple OSS Distributions if (sodefunctlog) \ 691*d8b80295SApple OSS Distributions printf(fmt, __VA_ARGS__); \ 692*d8b80295SApple OSS Distributions } while (0) 693*d8b80295SApple OSS Distributions 694*d8b80295SApple OSS Distributions #define SOTHROTTLELOG(fmt, ...) do { \ 695*d8b80295SApple OSS Distributions if (sothrottlelog) \ 696*d8b80295SApple OSS Distributions printf(fmt, __VA_ARGS__); \ 697*d8b80295SApple OSS Distributions } while (0) 698*d8b80295SApple OSS Distributions 699*d8b80295SApple OSS Distributions /* 700*d8b80295SApple OSS Distributions * For debugging traffic class behaviors 701*d8b80295SApple OSS Distributions */ 702*d8b80295SApple OSS Distributions #define SOTCDB_RESERVED 0x01 703*d8b80295SApple OSS Distributions #define SOTCDB_NO_MTC 0x02 /* Do not set the mbuf traffic class */ 704*d8b80295SApple OSS Distributions #define SOTCDB_NO_SENDTCPBG 0x04 /* Do not use background TCP CC algorithm for sender */ 705*d8b80295SApple OSS Distributions #define SOTCDB_NO_LCLTST 0x08 /* Do not test for local destination for setting DSCP */ 706*d8b80295SApple OSS Distributions #define SOTCDB_NO_DSCPTST 0x10 /* Overwritte any existing DSCP code */ 707*d8b80295SApple OSS Distributions #define SOTCDB_NO_RECVTCPBG 0x20 /* Do not use throttling on receiver-side of TCP */ 708*d8b80295SApple OSS Distributions #define SOTCDB_NO_PRIVILEGED 0x40 /* Do not set privileged traffic flag */ 709*d8b80295SApple OSS Distributions 710*d8b80295SApple OSS Distributions #define SOCK_DOM(so) ((so)->so_family) 711*d8b80295SApple OSS Distributions #define SOCK_TYPE(so) ((so)->so_type) 712*d8b80295SApple OSS Distributions #define SOCK_PROTO(so) ((so)->so_protocol) 713*d8b80295SApple OSS Distributions 714*d8b80295SApple OSS Distributions #define SOCK_CHECK_DOM(so, dom) (SOCK_DOM(so) == (dom)) 715*d8b80295SApple OSS Distributions #define SOCK_CHECK_TYPE(so, type) (SOCK_TYPE(so) == (type)) 716*d8b80295SApple OSS Distributions #define SOCK_CHECK_PROTO(so, proto) (SOCK_PROTO(so) == (proto)) 717*d8b80295SApple OSS Distributions 718*d8b80295SApple OSS Distributions /* 719*d8b80295SApple OSS Distributions * Socket process information 720*d8b80295SApple OSS Distributions */ 721*d8b80295SApple OSS Distributions struct so_procinfo { 722*d8b80295SApple OSS Distributions pid_t spi_pid; 723*d8b80295SApple OSS Distributions pid_t spi_epid; 724*d8b80295SApple OSS Distributions uuid_t spi_uuid; 725*d8b80295SApple OSS Distributions uuid_t spi_euuid; 726*d8b80295SApple OSS Distributions int spi_delegated; 727*d8b80295SApple OSS Distributions char spi_proc_name[MAXCOMLEN + 1]; 728*d8b80295SApple OSS Distributions char spi_e_proc_name[MAXCOMLEN + 1]; 729*d8b80295SApple OSS Distributions }; 730*d8b80295SApple OSS Distributions 731*d8b80295SApple OSS Distributions extern uint32_t sb_max; 732*d8b80295SApple OSS Distributions extern so_gen_t so_gencnt; 733*d8b80295SApple OSS Distributions extern int socket_debug; 734*d8b80295SApple OSS Distributions extern int sosendjcl; 735*d8b80295SApple OSS Distributions extern int sosendjcl_ignore_capab; 736*d8b80295SApple OSS Distributions extern int sodefunctlog; 737*d8b80295SApple OSS Distributions extern int sothrottlelog; 738*d8b80295SApple OSS Distributions extern int sorestrictrecv; 739*d8b80295SApple OSS Distributions extern int sorestrictsend; 740*d8b80295SApple OSS Distributions extern int somaxconn; 741*d8b80295SApple OSS Distributions extern uint32_t tcp_autosndbuf_max; 742*d8b80295SApple OSS Distributions extern uint32_t tcp_autosndbuf_inc; 743*d8b80295SApple OSS Distributions extern u_int32_t sotcdb; 744*d8b80295SApple OSS Distributions extern u_int32_t net_io_policy_log; 745*d8b80295SApple OSS Distributions extern u_int32_t net_io_policy_throttle_best_effort; 746*d8b80295SApple OSS Distributions #if CONFIG_PROC_UUID_POLICY 747*d8b80295SApple OSS Distributions extern u_int32_t net_io_policy_uuid; 748*d8b80295SApple OSS Distributions #endif /* CONFIG_PROC_UUID_POLICY */ 749*d8b80295SApple OSS Distributions 750*d8b80295SApple OSS Distributions extern struct soextbkidlestat soextbkidlestat; 751*d8b80295SApple OSS Distributions 752*d8b80295SApple OSS Distributions extern int soreserveheadroom; 753*d8b80295SApple OSS Distributions 754*d8b80295SApple OSS Distributions #endif /* BSD_KERNEL_PRIVATE */ 755*d8b80295SApple OSS Distributions 756*d8b80295SApple OSS Distributions struct mbuf; 757*d8b80295SApple OSS Distributions struct sockaddr; 758*d8b80295SApple OSS Distributions struct ucred; 759*d8b80295SApple OSS Distributions struct uio; 760*d8b80295SApple OSS Distributions 761*d8b80295SApple OSS Distributions #define SOCK_MSG_SA 0x01 762*d8b80295SApple OSS Distributions #define SOCK_MSG_CONTROL 0x02 763*d8b80295SApple OSS Distributions #define SOCK_MSG_DATA 0x04 764*d8b80295SApple OSS Distributions 765*d8b80295SApple OSS Distributions struct recv_msg_elem { 766*d8b80295SApple OSS Distributions struct uio *uio; 767*d8b80295SApple OSS Distributions struct sockaddr *psa; 768*d8b80295SApple OSS Distributions struct mbuf *controlp; 769*d8b80295SApple OSS Distributions int which; 770*d8b80295SApple OSS Distributions int flags; 771*d8b80295SApple OSS Distributions }; 772*d8b80295SApple OSS Distributions __CCT_DECLARE_CONSTRAINED_PTR_TYPES(struct recv_msg_elem, recv_msg_elem); 773*d8b80295SApple OSS Distributions 774*d8b80295SApple OSS Distributions /* 775*d8b80295SApple OSS Distributions * From uipc_socket and friends 776*d8b80295SApple OSS Distributions */ 777*d8b80295SApple OSS Distributions __BEGIN_DECLS 778*d8b80295SApple OSS Distributions __ASSUME_PTR_ABI_SINGLE_BEGIN 779*d8b80295SApple OSS Distributions /* Exported */ 780*d8b80295SApple OSS Distributions extern int sbappendaddr(struct sockbuf *sb, struct sockaddr *asa, 781*d8b80295SApple OSS Distributions struct mbuf *m0, struct mbuf *control, int *error_out); 782*d8b80295SApple OSS Distributions extern int sbappendchain(struct sockbuf *sb, struct mbuf *m, int space); 783*d8b80295SApple OSS Distributions extern int sbappendrecord(struct sockbuf *sb, struct mbuf *m0); 784*d8b80295SApple OSS Distributions extern int sbappendrecord_nodrop(struct sockbuf *sb, struct mbuf *m0); 785*d8b80295SApple OSS Distributions extern void sbflush(struct sockbuf *sb); 786*d8b80295SApple OSS Distributions extern int sbspace(struct sockbuf *sb); 787*d8b80295SApple OSS Distributions extern int soabort(struct socket *so); 788*d8b80295SApple OSS Distributions extern void socantrcvmore(struct socket *so); 789*d8b80295SApple OSS Distributions extern void socantsendmore(struct socket *so); 790*d8b80295SApple OSS Distributions extern int sodisconnect(struct socket *so); 791*d8b80295SApple OSS Distributions extern void sofree(struct socket *so); 792*d8b80295SApple OSS Distributions extern void sofreelastref(struct socket *, int); 793*d8b80295SApple OSS Distributions extern void soisconnected(struct socket *so); 794*d8b80295SApple OSS Distributions extern boolean_t socanwrite(struct socket *so); 795*d8b80295SApple OSS Distributions extern void soisconnecting(struct socket *so); 796*d8b80295SApple OSS Distributions extern void soisdisconnected(struct socket *so); 797*d8b80295SApple OSS Distributions extern void soisdisconnecting(struct socket *so); 798*d8b80295SApple OSS Distributions extern struct socket *sonewconn(struct socket *head, int connstatus, 799*d8b80295SApple OSS Distributions const struct sockaddr *from); 800*d8b80295SApple OSS Distributions extern int sopoll(struct socket *so, int events, struct ucred *cred, void *wql); 801*d8b80295SApple OSS Distributions extern int sooptcopyin(struct sockopt *sopt, void * __sized_by(len), size_t len, 802*d8b80295SApple OSS Distributions size_t minlen) 803*d8b80295SApple OSS Distributions __attribute__ ((warn_unused_result)); 804*d8b80295SApple OSS Distributions extern int sooptcopyout(struct sockopt *sopt, void *data, size_t len) 805*d8b80295SApple OSS Distributions __attribute__ ((warn_unused_result)); 806*d8b80295SApple OSS Distributions extern int soopt_cred_check(struct socket *so, int priv, boolean_t allow_root, 807*d8b80295SApple OSS Distributions boolean_t ignore_delegate); 808*d8b80295SApple OSS Distributions extern int soreceive(struct socket *so, struct sockaddr **paddr, 809*d8b80295SApple OSS Distributions struct uio *uio, struct mbuf **mp0, struct mbuf **controlp, int *flagsp); 810*d8b80295SApple OSS Distributions extern int soreserve(struct socket *so, uint32_t sndcc, uint32_t rcvcc); 811*d8b80295SApple OSS Distributions extern void soreserve_preconnect(struct socket *so, unsigned int pre_cc); 812*d8b80295SApple OSS Distributions extern void sorwakeup(struct socket *so); 813*d8b80295SApple OSS Distributions extern int sosend(struct socket *so, struct sockaddr *addr, struct uio *uio, 814*d8b80295SApple OSS Distributions struct mbuf *top, struct mbuf *control, int flags); 815*d8b80295SApple OSS Distributions extern int sosend_reinject(struct socket *so, struct sockaddr *addr, struct mbuf *top, 816*d8b80295SApple OSS Distributions struct mbuf *control, uint32_t sendflags); 817*d8b80295SApple OSS Distributions extern int sosend_list(struct socket *so, struct mbuf *pktlist, size_t total_pkt_len, u_int *pktcnt, int flags); 818*d8b80295SApple OSS Distributions extern int soreceive_list(struct socket *so, struct recv_msg_elem *msgarray, 819*d8b80295SApple OSS Distributions u_int msgcnt, int *flags); 820*d8b80295SApple OSS Distributions extern int soreceive_m_list(struct socket *, u_int *, struct mbuf **madrp, 821*d8b80295SApple OSS Distributions struct mbuf **, struct mbuf **, int *); 822*d8b80295SApple OSS Distributions extern void sonullevent(struct socket *so, void *arg, uint32_t hint); 823*d8b80295SApple OSS Distributions extern struct mbuf *sbconcat_mbufs(struct sockbuf *sb, struct sockaddr *asa, struct mbuf *m0, 824*d8b80295SApple OSS Distributions struct mbuf *control); 825*d8b80295SApple OSS Distributions 826*d8b80295SApple OSS Distributions 827*d8b80295SApple OSS Distributions __ASSUME_PTR_ABI_SINGLE_END 828*d8b80295SApple OSS Distributions __END_DECLS 829*d8b80295SApple OSS Distributions 830*d8b80295SApple OSS Distributions #ifdef BSD_KERNEL_PRIVATE 831*d8b80295SApple OSS Distributions struct file; 832*d8b80295SApple OSS Distributions struct filedesc; 833*d8b80295SApple OSS Distributions struct so_tcdbg; 834*d8b80295SApple OSS Distributions 835*d8b80295SApple OSS Distributions __BEGIN_DECLS 836*d8b80295SApple OSS Distributions __ASSUME_PTR_ABI_SINGLE_BEGIN 837*d8b80295SApple OSS Distributions /* Not exported */ 838*d8b80295SApple OSS Distributions extern void socketinit(void); 839*d8b80295SApple OSS Distributions extern struct sockaddr *dup_sockaddr(struct sockaddr *sa, int canwait); 840*d8b80295SApple OSS Distributions extern int getsock(struct filedesc *fdp, int fd, struct file **fpp); 841*d8b80295SApple OSS Distributions extern int sockargs(struct mbuf **mp, user_addr_t data, socklen_t buflen, int type); 842*d8b80295SApple OSS Distributions extern void get_sockev_state(struct socket *, u_int32_t *); 843*d8b80295SApple OSS Distributions extern void so_update_last_owner_locked(struct socket *, struct proc *); 844*d8b80295SApple OSS Distributions extern void so_update_policy(struct socket *); 845*d8b80295SApple OSS Distributions extern void so_acquire_accept_list(struct socket *, struct socket *); 846*d8b80295SApple OSS Distributions extern void so_release_accept_list(struct socket *); 847*d8b80295SApple OSS Distributions 848*d8b80295SApple OSS Distributions extern int sbappend(struct sockbuf *sb, struct mbuf *m); 849*d8b80295SApple OSS Distributions extern int sbappend_nodrop(struct sockbuf *sb, struct mbuf *m); 850*d8b80295SApple OSS Distributions extern int sbappendstream(struct sockbuf *sb, struct mbuf *m); 851*d8b80295SApple OSS Distributions extern int sbappendcontrol(struct sockbuf *sb, struct mbuf *m0, 852*d8b80295SApple OSS Distributions struct mbuf *control, int *error_out); 853*d8b80295SApple OSS Distributions extern int sbappendstream_rcvdemux(struct socket *so, struct mbuf *m); 854*d8b80295SApple OSS Distributions #if MPTCP 855*d8b80295SApple OSS Distributions extern int sbappendmptcpstream_rcv(struct sockbuf *sb, struct mbuf *m); 856*d8b80295SApple OSS Distributions #endif /* MPTCP */ 857*d8b80295SApple OSS Distributions extern void sbcheck(struct sockbuf *sb); 858*d8b80295SApple OSS Distributions extern void sblastmbufchk(struct sockbuf *, const char *); 859*d8b80295SApple OSS Distributions extern void sblastrecordchk(struct sockbuf *, const char *); 860*d8b80295SApple OSS Distributions extern struct mbuf *sbcreatecontrol(caddr_t p, int size, int type, int level); 861*d8b80295SApple OSS Distributions extern struct mbuf **sbcreatecontrol_mbuf(caddr_t p, int size, int type, 862*d8b80295SApple OSS Distributions int level, struct mbuf **m); 863*d8b80295SApple OSS Distributions extern void sbdrop(struct sockbuf *sb, int len); 864*d8b80295SApple OSS Distributions extern void sbdroprecord(struct sockbuf *sb); 865*d8b80295SApple OSS Distributions extern void sbrelease(struct sockbuf *sb); 866*d8b80295SApple OSS Distributions extern int sbreserve(struct sockbuf *sb, uint32_t cc); 867*d8b80295SApple OSS Distributions extern void sbtoxsockbuf(struct sockbuf *sb, struct xsockbuf *xsb); 868*d8b80295SApple OSS Distributions extern int sbwait(struct sockbuf *sb); 869*d8b80295SApple OSS Distributions extern void sbwakeup(struct sockbuf *sb); 870*d8b80295SApple OSS Distributions extern void sb_empty_assert(struct sockbuf *, const char *); 871*d8b80295SApple OSS Distributions extern int sb_notify(struct sockbuf *sb); 872*d8b80295SApple OSS Distributions extern void sballoc(struct sockbuf *sb, struct mbuf *m); 873*d8b80295SApple OSS Distributions extern void sbfree(struct sockbuf *sb, struct mbuf *m); 874*d8b80295SApple OSS Distributions 875*d8b80295SApple OSS Distributions /* Note: zero out the buffer and set sa_len to size */ 876*d8b80295SApple OSS Distributions extern void * __header_indexable alloc_sockaddr(size_t size, zalloc_flags_t flags); 877*d8b80295SApple OSS Distributions 878*d8b80295SApple OSS Distributions #if XNU_TARGET_OS_OSX 879*d8b80295SApple OSS Distributions #define free_sockaddr(sa) do { \ 880*d8b80295SApple OSS Distributions __typed_allocators_ignore_push \ 881*d8b80295SApple OSS Distributions kheap_free_addr(KHEAP_SONAME, (sa)); \ 882*d8b80295SApple OSS Distributions __typed_allocators_ignore_pop \ 883*d8b80295SApple OSS Distributions } while (0) 884*d8b80295SApple OSS Distributions #else /* XNU_TARGET_OS_OSX */ 885*d8b80295SApple OSS Distributions #define free_sockaddr(sa) do { \ 886*d8b80295SApple OSS Distributions if ((sa) != NULL) { \ 887*d8b80295SApple OSS Distributions __typed_allocators_ignore_push \ 888*d8b80295SApple OSS Distributions kheap_free_bounded(KHEAP_SONAME, (sa), 1, UINT8_MAX); \ 889*d8b80295SApple OSS Distributions __typed_allocators_ignore_pop \ 890*d8b80295SApple OSS Distributions } \ 891*d8b80295SApple OSS Distributions } while (0) 892*d8b80295SApple OSS Distributions #endif /* XNU_TARGET_OS_OSX */ 893*d8b80295SApple OSS Distributions 894*d8b80295SApple OSS Distributions /* 895*d8b80295SApple OSS Distributions * Flags to sblock(). 896*d8b80295SApple OSS Distributions */ 897*d8b80295SApple OSS Distributions #define SBL_WAIT 0x00000001 /* Wait if not immediately available. */ 898*d8b80295SApple OSS Distributions #define SBL_NOINTR 0x00000002 /* Force non-interruptible sleep. */ 899*d8b80295SApple OSS Distributions #define SBL_IGNDEFUNCT 0x00000004 /* Ignore defunct'd state */ 900*d8b80295SApple OSS Distributions #define SBL_VALID (SBL_WAIT | SBL_NOINTR | SBL_IGNDEFUNCT) 901*d8b80295SApple OSS Distributions extern int sblock(struct sockbuf *sb, uint32_t flags); 902*d8b80295SApple OSS Distributions extern void sbunlock(struct sockbuf *sb, boolean_t keeplocked); 903*d8b80295SApple OSS Distributions 904*d8b80295SApple OSS Distributions extern int soaccept(struct socket *so, struct sockaddr **nam); 905*d8b80295SApple OSS Distributions extern int soacceptlock(struct socket *so, struct sockaddr **nam, int dolock); 906*d8b80295SApple OSS Distributions extern int soacceptfilter(struct socket *so, struct socket *head); 907*d8b80295SApple OSS Distributions extern struct socket *soalloc(int waitok, int dom, int type); 908*d8b80295SApple OSS Distributions extern int sobindlock(struct socket *so, struct sockaddr *nam, int dolock); 909*d8b80295SApple OSS Distributions extern int soclose(struct socket *so); 910*d8b80295SApple OSS Distributions extern int soclose_locked(struct socket *so); 911*d8b80295SApple OSS Distributions extern void soclose_wait_locked(struct socket *so); 912*d8b80295SApple OSS Distributions extern int soconnect(struct socket *so, struct sockaddr *nam); 913*d8b80295SApple OSS Distributions extern int soconnectlock(struct socket *so, struct sockaddr *nam, int dolock); 914*d8b80295SApple OSS Distributions extern int soconnect2(struct socket *so1, struct socket *so2); 915*d8b80295SApple OSS Distributions extern int soconnectxlocked(struct socket *so, struct sockaddr *src, 916*d8b80295SApple OSS Distributions struct sockaddr *dst, struct proc *, uint32_t, sae_associd_t, 917*d8b80295SApple OSS Distributions sae_connid_t *, uint32_t, void *, u_int32_t, uio_t, user_ssize_t *); 918*d8b80295SApple OSS Distributions extern int sodisconnectx(struct socket *so, sae_associd_t, sae_connid_t); 919*d8b80295SApple OSS Distributions extern int sodisconnectxlocked(struct socket *so, sae_associd_t, sae_connid_t); 920*d8b80295SApple OSS Distributions /* flags for socreate_internal */ 921*d8b80295SApple OSS Distributions #define SOCF_MPTCP 0x1 /* MPTCP-subflow */ 922*d8b80295SApple OSS Distributions extern int socreate_internal(int dom, struct socket **aso, int type, int proto, 923*d8b80295SApple OSS Distributions struct proc *, uint32_t, struct proc *); 924*d8b80295SApple OSS Distributions extern int socreate(int dom, struct socket **aso, int type, int proto); 925*d8b80295SApple OSS Distributions extern int socreate_delegate(int dom, struct socket **aso, int type, int proto, 926*d8b80295SApple OSS Distributions pid_t epid); 927*d8b80295SApple OSS Distributions extern void sodealloc(struct socket *so); 928*d8b80295SApple OSS Distributions extern int sodisconnectlocked(struct socket *so); 929*d8b80295SApple OSS Distributions extern void soreference(struct socket *so); 930*d8b80295SApple OSS Distributions extern void sodereference(struct socket *so); 931*d8b80295SApple OSS Distributions extern void somultipages(struct socket *, boolean_t); 932*d8b80295SApple OSS Distributions extern void soif2kcl(struct socket *, boolean_t); 933*d8b80295SApple OSS Distributions extern int sosetdefunct(struct proc *, struct socket *, int level, boolean_t); 934*d8b80295SApple OSS Distributions extern int sodefunct(struct proc *, struct socket *, int level); 935*d8b80295SApple OSS Distributions extern int soresume(struct proc *, struct socket *, int); 936*d8b80295SApple OSS Distributions extern void resume_proc_sockets(proc_t); 937*d8b80295SApple OSS Distributions extern int so_check_extended_bk_idle_time(struct socket *); 938*d8b80295SApple OSS Distributions extern void so_drain_extended_bk_idle(struct socket *); 939*d8b80295SApple OSS Distributions extern void sohasoutofband(struct socket *so); 940*d8b80295SApple OSS Distributions extern void sodisconnectwakeup(struct socket *so); 941*d8b80295SApple OSS Distributions extern int soisthrottled(struct socket *so); 942*d8b80295SApple OSS Distributions extern int soisprivilegedtraffic(struct socket *so); 943*d8b80295SApple OSS Distributions extern int soissrcbackground(struct socket *so); 944*d8b80295SApple OSS Distributions extern int soissrcrealtime(struct socket *so); 945*d8b80295SApple OSS Distributions extern int soissrcbesteffort(struct socket *so); 946*d8b80295SApple OSS Distributions extern void soclearfastopen(struct socket *so); 947*d8b80295SApple OSS Distributions extern int solisten(struct socket *so, int backlog); 948*d8b80295SApple OSS Distributions extern struct socket *sodropablereq(struct socket *head); 949*d8b80295SApple OSS Distributions extern lck_mtx_t *socket_getlock(struct socket *so, int flags); 950*d8b80295SApple OSS Distributions extern void socket_lock(struct socket *so, int refcount); 951*d8b80295SApple OSS Distributions extern void socket_lock_assert_owned(struct socket *so); 952*d8b80295SApple OSS Distributions extern int socket_try_lock(struct socket *so); 953*d8b80295SApple OSS Distributions extern void socket_unlock(struct socket *so, int refcount); 954*d8b80295SApple OSS Distributions extern int sogetaddr_locked(struct socket *, struct sockaddr **, int); 955*d8b80295SApple OSS Distributions extern const char *solockhistory_nr(struct socket *); 956*d8b80295SApple OSS Distributions extern void soevent(struct socket *so, uint32_t hint); 957*d8b80295SApple OSS Distributions extern void sorflush(struct socket *so); 958*d8b80295SApple OSS Distributions extern void sowflush(struct socket *so); 959*d8b80295SApple OSS Distributions extern void sowakeup(struct socket *so, struct sockbuf *sb, struct socket *so2); 960*d8b80295SApple OSS Distributions extern int soioctl(struct socket *so, u_long cmd, caddr_t data, struct proc *p); 961*d8b80295SApple OSS Distributions extern int sogetoptlock(struct socket *so, struct sockopt *sopt, int); 962*d8b80295SApple OSS Distributions extern int sosetoptlock(struct socket *so, struct sockopt *sopt, int); 963*d8b80295SApple OSS Distributions extern int soshutdown(struct socket *so, int how); 964*d8b80295SApple OSS Distributions extern int soshutdownlock(struct socket *so, int how); 965*d8b80295SApple OSS Distributions extern int soshutdownlock_final(struct socket *so, int how); 966*d8b80295SApple OSS Distributions extern void sotoxsocket(struct socket *so, struct xsocket *xso); 967*d8b80295SApple OSS Distributions #if XNU_TARGET_OS_OSX 968*d8b80295SApple OSS Distributions extern void sotoxsocket64(struct socket *so, struct xsocket64 *xso); 969*d8b80295SApple OSS Distributions #endif /* XNU_TARGET_OS_OSX */ 970*d8b80295SApple OSS Distributions extern int sosendallatonce(struct socket *so); 971*d8b80295SApple OSS Distributions extern int soreadable(struct socket *so); 972*d8b80295SApple OSS Distributions extern int sowriteable(struct socket *so); 973*d8b80295SApple OSS Distributions extern void sowwakeup(struct socket *so); 974*d8b80295SApple OSS Distributions extern int sosendcheck(struct socket *, struct sockaddr *, user_ssize_t, 975*d8b80295SApple OSS Distributions int32_t, int32_t, int, int *); 976*d8b80295SApple OSS Distributions 977*d8b80295SApple OSS Distributions extern int soo_ioctl(struct fileproc *, u_long, caddr_t, vfs_context_t); 978*d8b80295SApple OSS Distributions extern int soo_stat(struct socket *, void *, int); 979*d8b80295SApple OSS Distributions extern int soo_select(struct fileproc *, int, void *, vfs_context_t); 980*d8b80295SApple OSS Distributions extern int soo_kqfilter(struct fileproc *, struct knote *, struct kevent_qos_s *); 981*d8b80295SApple OSS Distributions 982*d8b80295SApple OSS Distributions #define TRACKER_DOMAIN_MAX 253 983*d8b80295SApple OSS Distributions #define TRACKER_DOMAIN_SHORT_MAX 63 984*d8b80295SApple OSS Distributions 985*d8b80295SApple OSS Distributions typedef struct tracker_metadata { 986*d8b80295SApple OSS Distributions uint32_t flags; 987*d8b80295SApple OSS Distributions char domain[TRACKER_DOMAIN_MAX + 1]; 988*d8b80295SApple OSS Distributions char domain_owner[TRACKER_DOMAIN_MAX + 1]; 989*d8b80295SApple OSS Distributions } tracker_metadata_t; 990*d8b80295SApple OSS Distributions 991*d8b80295SApple OSS Distributions typedef struct tracker_metadata_short { 992*d8b80295SApple OSS Distributions uint32_t flags; 993*d8b80295SApple OSS Distributions char domain[TRACKER_DOMAIN_SHORT_MAX + 1]; 994*d8b80295SApple OSS Distributions char domain_owner[TRACKER_DOMAIN_SHORT_MAX + 1]; 995*d8b80295SApple OSS Distributions } tracker_metadata_short_t; 996*d8b80295SApple OSS Distributions 997*d8b80295SApple OSS Distributions extern int tracker_lookup(uuid_t app_uuid, struct sockaddr *, tracker_metadata_t *metadata); 998*d8b80295SApple OSS Distributions 999*d8b80295SApple OSS Distributions /* 1000*d8b80295SApple OSS Distributions * Socket flow management 1001*d8b80295SApple OSS Distributions */ 1002*d8b80295SApple OSS Distributions 1003*d8b80295SApple OSS Distributions #define IS_INET(so) (so != NULL && (SOCK_CHECK_DOM(so, AF_INET) || SOCK_CHECK_DOM(so, AF_INET6))) 1004*d8b80295SApple OSS Distributions #define IS_TCP(so) (so != NULL && SOCK_CHECK_TYPE(so, SOCK_STREAM) && SOCK_CHECK_PROTO(so, IPPROTO_TCP)) 1005*d8b80295SApple OSS Distributions #define IS_UDP(so) (so != NULL && SOCK_CHECK_TYPE(so, SOCK_DGRAM) && SOCK_CHECK_PROTO(so, IPPROTO_UDP)) 1006*d8b80295SApple OSS Distributions 1007*d8b80295SApple OSS Distributions // For iOS, keep track of flows for UDP sockets only. 1008*d8b80295SApple OSS Distributions // For OSX, keep track of flows for all datagram sockets. 1009*d8b80295SApple OSS Distributions #if !XNU_TARGET_OS_OSX 1010*d8b80295SApple OSS Distributions #define NEED_DGRAM_FLOW_TRACKING(so) (IS_INET(so) && IS_UDP(so)) 1011*d8b80295SApple OSS Distributions #else 1012*d8b80295SApple OSS Distributions #define NEED_DGRAM_FLOW_TRACKING(so) (IS_INET(so) && !IS_TCP(so)) 1013*d8b80295SApple OSS Distributions #endif 1014*d8b80295SApple OSS Distributions 1015*d8b80295SApple OSS Distributions // Check if socket flow tracking is present for socket 1016*d8b80295SApple OSS Distributions #define SOFLOW_ENABLED(so) (so != NULL && (so->so_flow_db != NULL)) 1017*d8b80295SApple OSS Distributions 1018*d8b80295SApple OSS Distributions extern struct soflow_hash_entry *soflow_get_flow(struct socket *, struct sockaddr *, struct sockaddr *, struct mbuf *, size_t, bool, u_short); 1019*d8b80295SApple OSS Distributions extern void soflow_free_flow(struct soflow_hash_entry *); 1020*d8b80295SApple OSS Distributions extern void soflow_detach(struct socket *); 1021*d8b80295SApple OSS Distributions 1022*d8b80295SApple OSS Distributions /* Service class flags used for setting service class on a packet */ 1023*d8b80295SApple OSS Distributions #define PKT_SCF_IPV6 0x00000001 /* IPv6 packet */ 1024*d8b80295SApple OSS Distributions #define PKT_SCF_TCP_ACK 0x00000002 /* Pure TCP ACK */ 1025*d8b80295SApple OSS Distributions #define PKT_SCF_TCP_SYN 0x00000004 /* TCP SYN */ 1026*d8b80295SApple OSS Distributions 1027*d8b80295SApple OSS Distributions extern void set_packet_service_class(struct mbuf *, struct socket *, 1028*d8b80295SApple OSS Distributions mbuf_svc_class_t, u_int32_t); 1029*d8b80295SApple OSS Distributions extern void so_tc_update_stats(struct mbuf *, struct socket *, 1030*d8b80295SApple OSS Distributions mbuf_svc_class_t); 1031*d8b80295SApple OSS Distributions extern int so_tos_from_control(struct mbuf *); 1032*d8b80295SApple OSS Distributions extern int so_tc_from_control(struct mbuf *, int *); 1033*d8b80295SApple OSS Distributions extern mbuf_svc_class_t so_tc2msc(int); 1034*d8b80295SApple OSS Distributions extern int so_svc2tc(mbuf_svc_class_t); 1035*d8b80295SApple OSS Distributions 1036*d8b80295SApple OSS Distributions extern void set_tcp_stream_priority(struct socket *so); 1037*d8b80295SApple OSS Distributions 1038*d8b80295SApple OSS Distributions extern int so_set_net_service_type(struct socket *, int); 1039*d8b80295SApple OSS Distributions extern int so_set_traffic_class(struct socket *, int); 1040*d8b80295SApple OSS Distributions extern void so_set_default_traffic_class(struct socket *); 1041*d8b80295SApple OSS Distributions extern int so_set_opportunistic(struct socket *, int); 1042*d8b80295SApple OSS Distributions extern int so_get_opportunistic(struct socket *); 1043*d8b80295SApple OSS Distributions extern int so_set_recv_anyif(struct socket *, int); 1044*d8b80295SApple OSS Distributions extern int so_get_recv_anyif(struct socket *); 1045*d8b80295SApple OSS Distributions extern int so_set_effective_pid(struct socket *so, int epid, struct proc *p, boolean_t check_cred); 1046*d8b80295SApple OSS Distributions extern int so_set_effective_uuid(struct socket *so, uuid_t euuid, struct proc *p, boolean_t check_cred); 1047*d8b80295SApple OSS Distributions extern int so_set_restrictions(struct socket *, uint32_t); 1048*d8b80295SApple OSS Distributions extern uint32_t so_get_restrictions(struct socket *); 1049*d8b80295SApple OSS Distributions #if (DEVELOPMENT || DEBUG) 1050*d8b80295SApple OSS Distributions extern int so_set_tcdbg(struct socket *, struct so_tcdbg *); 1051*d8b80295SApple OSS Distributions extern int sogetopt_tcdbg(struct socket *, struct sockopt *); 1052*d8b80295SApple OSS Distributions #endif /* (DEVELOPMENT || DEBUG) */ 1053*d8b80295SApple OSS Distributions 1054*d8b80295SApple OSS Distributions extern int so_isdstlocal(struct socket *); 1055*d8b80295SApple OSS Distributions extern void so_recv_data_stat(struct socket *, struct mbuf *, size_t); 1056*d8b80295SApple OSS Distributions extern void so_inc_recv_data_stat(struct socket *, size_t, size_t, uint32_t); 1057*d8b80295SApple OSS Distributions extern int so_wait_for_if_feedback(struct socket *); 1058*d8b80295SApple OSS Distributions extern int soopt_getm(struct sockopt *sopt, struct mbuf **mp); 1059*d8b80295SApple OSS Distributions extern int soopt_mcopyin(struct sockopt *sopt, struct mbuf *m); 1060*d8b80295SApple OSS Distributions extern int soopt_mcopyout(struct sockopt *sopt, struct mbuf *m); 1061*d8b80295SApple OSS Distributions extern boolean_t so_cache_timer(void); 1062*d8b80295SApple OSS Distributions 1063*d8b80295SApple OSS Distributions extern void mptcp_fallback_sbdrop(struct socket *so, struct mbuf *m, int len); 1064*d8b80295SApple OSS Distributions extern void mptcp_preproc_sbdrop(struct socket *, struct mbuf *, unsigned int); 1065*d8b80295SApple OSS Distributions extern void mptcp_postproc_sbdrop(struct mbuf *, u_int64_t, u_int32_t, 1066*d8b80295SApple OSS Distributions u_int32_t); 1067*d8b80295SApple OSS Distributions 1068*d8b80295SApple OSS Distributions extern void netpolicy_post_msg(uint32_t, struct netpolicy_event_data *, 1069*d8b80295SApple OSS Distributions uint32_t); 1070*d8b80295SApple OSS Distributions 1071*d8b80295SApple OSS Distributions extern int tcp_notsent_lowat_check(struct socket *so); 1072*d8b80295SApple OSS Distributions 1073*d8b80295SApple OSS Distributions extern user_ssize_t recv_msg_array_resid(struct recv_msg_elem * __counted_by(count), u_int count); 1074*d8b80295SApple OSS Distributions 1075*d8b80295SApple OSS Distributions void sotoxsocket_n(struct socket *, struct xsocket_n *); 1076*d8b80295SApple OSS Distributions void sbtoxsockbuf_n(struct sockbuf *, struct xsockbuf_n *); 1077*d8b80295SApple OSS Distributions void sbtoxsockstat_n(struct socket *, struct xsockstat_n *); 1078*d8b80295SApple OSS Distributions 1079*d8b80295SApple OSS Distributions __ASSUME_PTR_ABI_SINGLE_END 1080*d8b80295SApple OSS Distributions __END_DECLS 1081*d8b80295SApple OSS Distributions #endif /* BSD_KERNEL_PRIVATE */ 1082*d8b80295SApple OSS Distributions #endif /* KERNEL_PRIVATE */ 1083*d8b80295SApple OSS Distributions 1084*d8b80295SApple OSS Distributions // Tracker actions 1085*d8b80295SApple OSS Distributions enum so_tracker_action { 1086*d8b80295SApple OSS Distributions SO_TRACKER_ACTION_INVALID = 0, 1087*d8b80295SApple OSS Distributions SO_TRACKER_ACTION_ADD = 1, 1088*d8b80295SApple OSS Distributions SO_TRACKER_ACTION_DUMP_BY_APP = 2, 1089*d8b80295SApple OSS Distributions SO_TRACKER_ACTION_DUMP_ALL = 3, 1090*d8b80295SApple OSS Distributions SO_TRACKER_ACTION_DUMP_MAX, 1091*d8b80295SApple OSS Distributions }; 1092*d8b80295SApple OSS Distributions 1093*d8b80295SApple OSS Distributions // Tracker TLV attributes 1094*d8b80295SApple OSS Distributions enum so_tracker_attribute { 1095*d8b80295SApple OSS Distributions SO_TRACKER_ATTRIBUTE_INVALID = 0, 1096*d8b80295SApple OSS Distributions SO_TRACKER_ATTRIBUTE_ADDRESS_FAMILY = 1, 1097*d8b80295SApple OSS Distributions SO_TRACKER_ATTRIBUTE_ADDRESS = 2, 1098*d8b80295SApple OSS Distributions SO_TRACKER_ATTRIBUTE_APP_UUID = 3, 1099*d8b80295SApple OSS Distributions SO_TRACKER_ATTRIBUTE_DOMAIN = 4, 1100*d8b80295SApple OSS Distributions SO_TRACKER_ATTRIBUTE_DOMAIN_OWNER = 5, 1101*d8b80295SApple OSS Distributions SO_TRACKER_ATTRIBUTE_FLAGS = 6, 1102*d8b80295SApple OSS Distributions SO_TRACKER_ATTRIBUTE_DUMP_ENTRY = 7, 1103*d8b80295SApple OSS Distributions SO_TRACKER_ATTRIBUTE_MEMORY_USED = 8, 1104*d8b80295SApple OSS Distributions SO_TRACKER_ATTRIBUTE_MAX, 1105*d8b80295SApple OSS Distributions }; 1106*d8b80295SApple OSS Distributions 1107*d8b80295SApple OSS Distributions // Tracker flags 1108*d8b80295SApple OSS Distributions #define SO_TRACKER_ATTRIBUTE_FLAGS_APP_APPROVED 0x00000001 1109*d8b80295SApple OSS Distributions #define SO_TRACKER_ATTRIBUTE_FLAGS_TRACKER 0x00000002 1110*d8b80295SApple OSS Distributions #define SO_TRACKER_ATTRIBUTE_FLAGS_DOMAIN_SHORT 0x00000004 1111*d8b80295SApple OSS Distributions 1112*d8b80295SApple OSS Distributions #ifndef KERNEL 1113*d8b80295SApple OSS Distributions #define SO_TRACKER_TRANSPARENCY_VERSION 3 1114*d8b80295SApple OSS Distributions extern int tracker_action(int action, char *buffer, size_t buffer_size); 1115*d8b80295SApple OSS Distributions #endif 1116*d8b80295SApple OSS Distributions 1117*d8b80295SApple OSS Distributions #endif /* !_SYS_SOCKETVAR_H_ */ 1118