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