]> git.saurik.com Git - apple/xnu.git/blob - bsd/net/if.h
2bb7c665585ecb8c403328f516282e1e3c45926d
[apple/xnu.git] / bsd / net / if.h
1 /*
2 * Copyright (c) 2000-2017 Apple Inc. All rights reserved.
3 *
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
5 *
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
14 *
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
17 *
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
25 *
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
27 */
28 /*
29 * Copyright (c) 1982, 1986, 1989, 1993
30 * The Regents of the University of California. All rights reserved.
31 *
32 * Redistribution and use in source and binary forms, with or without
33 * modification, are permitted provided that the following conditions
34 * are met:
35 * 1. Redistributions of source code must retain the above copyright
36 * notice, this list of conditions and the following disclaimer.
37 * 2. Redistributions in binary form must reproduce the above copyright
38 * notice, this list of conditions and the following disclaimer in the
39 * documentation and/or other materials provided with the distribution.
40 * 3. All advertising materials mentioning features or use of this software
41 * must display the following acknowledgement:
42 * This product includes software developed by the University of
43 * California, Berkeley and its contributors.
44 * 4. Neither the name of the University nor the names of its contributors
45 * may be used to endorse or promote products derived from this software
46 * without specific prior written permission.
47 *
48 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
49 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
50 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
51 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
52 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
53 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
54 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
55 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
56 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
57 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
58 * SUCH DAMAGE.
59 *
60 * @(#)if.h 8.1 (Berkeley) 6/10/93
61 */
62
63 #ifndef _NET_IF_H_
64 #define _NET_IF_H_
65
66 #include <sys/cdefs.h>
67 #include <net/net_kev.h>
68
69 #define IF_NAMESIZE 16
70
71 #if !defined(_POSIX_C_SOURCE) || defined(_DARWIN_C_SOURCE)
72 #include <sys/appleapiopts.h>
73 #ifdef __APPLE__
74
75 #include <net/if_var.h>
76 #include <sys/types.h>
77 #include <sys/socket.h>
78
79 #ifdef PRIVATE
80 #include <net/if_dl.h>
81 #include <netinet/in.h>
82 #include <mach/vm_types.h>
83 #endif /* PRIVATE */
84 #endif
85
86 struct if_clonereq {
87 int ifcr_total; /* total cloners (out) */
88 int ifcr_count; /* room for this many in user buffer */
89 char *ifcr_buffer; /* buffer for cloner names */
90 };
91
92 #ifdef KERNEL_PRIVATE
93 #define IF_MAXUNIT 0x7fff /* historical value */
94
95 struct if_clonereq64 {
96 int ifcr_total; /* total cloners (out) */
97 int ifcr_count; /* room for this many in user buffer */
98 user64_addr_t ifcru_buffer __attribute__((aligned(8)));
99 };
100
101 struct if_clonereq32 {
102 int ifcr_total; /* total cloners (out) */
103 int ifcr_count; /* room for this many in user buffer */
104 user32_addr_t ifcru_buffer;
105 };
106 #endif /* KERNEL_PRIVATE */
107
108 #define IFF_UP 0x1 /* interface is up */
109 #define IFF_BROADCAST 0x2 /* broadcast address valid */
110 #define IFF_DEBUG 0x4 /* turn on debugging */
111 #define IFF_LOOPBACK 0x8 /* is a loopback net */
112 #define IFF_POINTOPOINT 0x10 /* interface is point-to-point link */
113 #define IFF_NOTRAILERS 0x20 /* obsolete: avoid use of trailers */
114 #define IFF_RUNNING 0x40 /* resources allocated */
115 #define IFF_NOARP 0x80 /* no address resolution protocol */
116 #define IFF_PROMISC 0x100 /* receive all packets */
117 #define IFF_ALLMULTI 0x200 /* receive all multicast packets */
118 #define IFF_OACTIVE 0x400 /* transmission in progress */
119 #define IFF_SIMPLEX 0x800 /* can't hear own transmissions */
120 #define IFF_LINK0 0x1000 /* per link layer defined bit */
121 #define IFF_LINK1 0x2000 /* per link layer defined bit */
122 #define IFF_LINK2 0x4000 /* per link layer defined bit */
123 #define IFF_ALTPHYS IFF_LINK2 /* use alternate physical connection */
124 #define IFF_MULTICAST 0x8000 /* supports multicast */
125
126 #ifdef PRIVATE
127 /* extended flags definitions: (all bits reserved for internal/future use) */
128 #define IFEF_AUTOCONFIGURING 0x00000001 /* allow BOOTP/DHCP replies to enter */
129 #define IFEF_ENQUEUE_MULTI 0x00000002 /* enqueue multiple packets at once */
130 #define IFEF_DELAY_START 0x00000004 /* delay start callback */
131 #define IFEF_PROBE_CONNECTIVITY 0x00000008 /* Probe connections going over this interface */
132 #define IFEF_QOSMARKING_CAPABLE 0x00000010 /* XXX Obsolete, to be removed */
133 #define IFEF_IPV6_DISABLED 0x00000020 /* coupled to ND6_IFF_IFDISABLED */
134 #define IFEF_ACCEPT_RTADV 0x00000040 /* accepts IPv6 RA on the interface */
135 #define IFEF_TXSTART 0x00000080 /* has start callback */
136 #define IFEF_RXPOLL 0x00000100 /* supports opportunistic input poll */
137 #define IFEF_VLAN 0x00000200 /* interface has one or more vlans */
138 #define IFEF_BOND 0x00000400 /* interface is part of bond */
139 #define IFEF_ARPLL 0x00000800 /* ARP for IPv4LL addresses */
140 /*
141 * XXX IFEF_NOAUTOIPV6LL is deprecated and should be done away with.
142 * Configd pretty much manages the interface configuration.
143 * Rather than looking at the flag we check if a specific LLA
144 * has to be configured or the IID has to be generated by kernel.
145 */
146 #define IFEF_NOAUTOIPV6LL 0x00002000 /* Need explicit IPv6 LL address */
147 #define IFEF_EXPENSIVE 0x00004000 /* Data access has a cost */
148 #define IFEF_IPV4_ROUTER 0x00008000 /* interior when in IPv4 router mode */
149 #define IFEF_IPV6_ROUTER 0x00010000 /* interior when in IPv6 router mode */
150 #define IFEF_LOCALNET_PRIVATE 0x00020000 /* local private network */
151 #define IFEF_SERVICE_TRIGGERED IFEF_LOCALNET_PRIVATE
152 #define IFEF_IPV6_ND6ALT 0x00040000 /* alternative. KPI for ND6 */
153 #define IFEF_RESTRICTED_RECV 0x00080000 /* interface restricts inbound pkts */
154 #define IFEF_AWDL 0x00100000 /* Apple Wireless Direct Link */
155 #define IFEF_NOACKPRI 0x00200000 /* No TCP ACK prioritization */
156 #define IFEF_AWDL_RESTRICTED 0x00400000 /* Restricted AWDL mode */
157 #define IFEF_2KCL 0x00800000 /* prefers 2K cluster (socket based tunnel) */
158 #define IFEF_ECN_ENABLE 0x01000000 /* use ECN for TCP connections on the interface */
159 #define IFEF_ECN_DISABLE 0x02000000 /* do not use ECN for TCP connections on the interface */
160 #define IFEF_SKYWALK_NATIVE 0x04000000 /* Native Skywalk support */
161 #define IFEF_3CA 0x08000000 /* Capable of 3CA */
162 #define IFEF_SENDLIST 0x10000000 /* Supports tx packet lists */
163 #define IFEF_DIRECTLINK 0x20000000 /* point-to-point topology */
164 #define IFEF_QOSMARKING_ENABLED 0x40000000 /* OoS marking is enabled */
165 #define IFEF_UPDOWNCHANGE 0x80000000 /* up/down state is changing */
166
167 #ifdef XNU_KERNEL_PRIVATE
168 /*
169 * Extra flags
170 */
171 #define IFXF_WAKE_ON_MAGIC_PACKET 0x00000001 /* wake on magic packet */
172 #define IFXF_TIMESTAMP_ENABLED 0x00000002 /* time stamping enabled */
173 #define IFXF_NX_NOAUTO 0x00000004 /* no auto config nexus */
174 #define IFXF_MULTISTACK_BPF_TAP 0x00000008 /* multistack bpf tap */
175 #define IFXF_LOW_INTERNET_UL 0x00000010 /* Uplink Low Internet is confirmed */
176 #define IFXF_LOW_INTERNET_DL 0x00000020 /* Downlink Low Internet is confirmed */
177 #define IFXF_ALLOC_KPI 0x00000040 /* Allocated via the ifnet_alloc KPI */
178
179 /*
180 * Current requirements for an AWDL interface. Setting/clearing IFEF_AWDL
181 * will also trigger the setting/clearing of the rest of the flags. Once
182 * IFEF_AWDL is set, the rest of flags cannot be cleared, by definition.
183 */
184 #define IFEF_AWDL_MASK \
185 (IFEF_LOCALNET_PRIVATE | IFEF_IPV6_ND6ALT | IFEF_RESTRICTED_RECV | \
186 IFEF_AWDL)
187 #endif /* XNU_KERNEL_PRIVATE */
188 #endif /* PRIVATE */
189
190 #ifdef KERNEL_PRIVATE
191 /*
192 * !!! NOTE !!!
193 *
194 * if_idle_flags definitions: (all bits are reserved for internal/future
195 * use). Setting these flags MUST be done via the ifnet_set_idle_flags()
196 * KPI due to the associated reference counting. Clearing them may be done by
197 * calling the KPI, otherwise implicitly at interface detach time. Setting
198 * the if_idle_flags field to a non-zero value will cause the networking
199 * stack to aggressively purge expired objects (routes, etc.)
200 */
201 #define IFRF_IDLE_NOTIFY 0x1 /* Generate notifications on idle */
202
203 /* flags set internally only: */
204 #define IFF_CANTCHANGE \
205 (IFF_BROADCAST|IFF_POINTOPOINT|IFF_RUNNING|IFF_OACTIVE|\
206 IFF_SIMPLEX|IFF_MULTICAST|IFF_ALLMULTI)
207 #endif /* KERNEL_PRIVATE */
208
209 /*
210 * Capabilities that interfaces can advertise.
211 *
212 * struct ifnet.if_capabilities
213 * contains the optional features & capabilities a particular interface
214 * supports (not only the driver but also the detected hw revision).
215 * Capabilities are defined by IFCAP_* below.
216 * struct ifnet.if_capenable
217 * contains the enabled (either by default or through ifconfig) optional
218 * features & capabilities on this interface.
219 * Capabilities are defined by IFCAP_* below.
220 * struct if_data.ifi_hwassist in IFNET_* form, defined in net/kpi_interface.h,
221 * contains the enabled optional features & capabilites that can be used
222 * individually per packet and are specified in the mbuf pkthdr.csum_flags
223 * field. IFCAP_* and IFNET_* do not match one to one and IFNET_* may be
224 * more detailed or differentiated than IFCAP_*.
225 * IFNET_* hwassist flags have corresponding CSUM_* in sys/mbuf.h
226 */
227 #define IFCAP_RXCSUM 0x00001 /* can offload checksum on RX */
228 #define IFCAP_TXCSUM 0x00002 /* can offload checksum on TX */
229 #define IFCAP_VLAN_MTU 0x00004 /* VLAN-compatible MTU */
230 #define IFCAP_VLAN_HWTAGGING 0x00008 /* hardware VLAN tag support */
231 #define IFCAP_JUMBO_MTU 0x00010 /* 9000 byte MTU supported */
232 #define IFCAP_TSO4 0x00020 /* can do TCP Segmentation Offload */
233 #define IFCAP_TSO6 0x00040 /* can do TCP6 Segmentation Offload */
234 #define IFCAP_LRO 0x00080 /* can do Large Receive Offload */
235 #define IFCAP_AV 0x00100 /* can do 802.1 AV Bridging */
236 #define IFCAP_TXSTATUS 0x00200 /* can return linklevel xmit status */
237 #define IFCAP_SKYWALK 0x00400 /* Skywalk mode supported/enabled */
238 #define IFCAP_HW_TIMESTAMP 0x00800 /* Time stamping in hardware */
239 #define IFCAP_SW_TIMESTAMP 0x01000 /* Time stamping in software */
240 #define IFCAP_CSUM_PARTIAL 0x02000 /* can offload partial checksum */
241 #define IFCAP_CSUM_ZERO_INVERT 0x04000 /* can invert 0 to -0 (0xffff) */
242
243 #define IFCAP_HWCSUM (IFCAP_RXCSUM | IFCAP_TXCSUM)
244 #define IFCAP_TSO (IFCAP_TSO4 | IFCAP_TSO6)
245
246 #define IFCAP_VALID (IFCAP_HWCSUM | IFCAP_TSO | IFCAP_LRO | IFCAP_VLAN_MTU | \
247 IFCAP_VLAN_HWTAGGING | IFCAP_JUMBO_MTU | IFCAP_AV | IFCAP_TXSTATUS | \
248 IFCAP_SKYWALK | IFCAP_SW_TIMESTAMP | IFCAP_HW_TIMESTAMP | \
249 IFCAP_CSUM_PARTIAL | IFCAP_CSUM_ZERO_INVERT)
250
251 #define IFQ_MAXLEN 128
252 #define IFNET_SLOWHZ 1 /* granularity is 1 second */
253 #define IFQ_TARGET_DELAY (10ULL * 1000 * 1000) /* 10 ms */
254 #define IFQ_UPDATE_INTERVAL (100ULL * 1000 * 1000) /* 100 ms */
255
256 /*
257 * Message format for use in obtaining information about interfaces
258 * from sysctl and the routing socket
259 */
260 struct if_msghdr {
261 unsigned short ifm_msglen; /* to skip non-understood messages */
262 unsigned char ifm_version; /* future binary compatability */
263 unsigned char ifm_type; /* message type */
264 int ifm_addrs; /* like rtm_addrs */
265 int ifm_flags; /* value of if_flags */
266 unsigned short ifm_index; /* index for associated ifp */
267 struct if_data ifm_data; /* statistics and other data about if */
268 };
269
270 /*
271 * Message format for use in obtaining information about interface addresses
272 * from sysctl and the routing socket
273 */
274 struct ifa_msghdr {
275 unsigned short ifam_msglen; /* to skip non-understood messages */
276 unsigned char ifam_version; /* future binary compatability */
277 unsigned char ifam_type; /* message type */
278 int ifam_addrs; /* like rtm_addrs */
279 int ifam_flags; /* value of ifa_flags */
280 unsigned short ifam_index; /* index for associated ifp */
281 int ifam_metric; /* value of ifa_metric */
282 };
283
284 /*
285 * Message format for use in obtaining information about multicast addresses
286 * from the routing socket
287 */
288 struct ifma_msghdr {
289 unsigned short ifmam_msglen; /* to skip non-understood messages */
290 unsigned char ifmam_version; /* future binary compatability */
291 unsigned char ifmam_type; /* message type */
292 int ifmam_addrs; /* like rtm_addrs */
293 int ifmam_flags; /* value of ifa_flags */
294 unsigned short ifmam_index; /* index for associated ifp */
295 };
296
297 /*
298 * Message format for use in obtaining information about interfaces
299 * from sysctl
300 */
301 struct if_msghdr2 {
302 u_short ifm_msglen; /* to skip over non-understood messages */
303 u_char ifm_version; /* future binary compatability */
304 u_char ifm_type; /* message type */
305 int ifm_addrs; /* like rtm_addrs */
306 int ifm_flags; /* value of if_flags */
307 u_short ifm_index; /* index for associated ifp */
308 int ifm_snd_len; /* instantaneous length of send queue */
309 int ifm_snd_maxlen; /* maximum length of send queue */
310 int ifm_snd_drops; /* number of drops in send queue */
311 int ifm_timer; /* time until if_watchdog called */
312 struct if_data64 ifm_data; /* statistics and other data */
313 };
314
315 /*
316 * Message format for use in obtaining information about multicast addresses
317 * from sysctl
318 */
319 struct ifma_msghdr2 {
320 u_short ifmam_msglen; /* to skip over non-understood messages */
321 u_char ifmam_version; /* future binary compatability */
322 u_char ifmam_type; /* message type */
323 int ifmam_addrs; /* like rtm_addrs */
324 int ifmam_flags; /* value of ifa_flags */
325 u_short ifmam_index; /* index for associated ifp */
326 int32_t ifmam_refcount;
327 };
328
329 /*
330 * ifdevmtu: interface device mtu
331 * Used with SIOCGIFDEVMTU to get the current mtu in use by the device,
332 * as well as the minimum and maximum mtu allowed by the device.
333 */
334 struct ifdevmtu {
335 int ifdm_current;
336 int ifdm_min;
337 int ifdm_max;
338 };
339
340 #pragma pack(4)
341
342 /*
343 ifkpi: interface kpi ioctl
344 Used with SIOCSIFKPI and SIOCGIFKPI.
345
346 ifk_module_id - From in the kernel, a value from kev_vendor_code_find. From
347 user space, a value from SIOCGKEVVENDOR ioctl on a kernel event socket.
348 ifk_type - The type. Types are specific to each module id.
349 ifk_data - The data. ifk_ptr may be a 64bit pointer for 64 bit processes.
350
351 Copying data between user space and kernel space is done using copyin
352 and copyout. A process may be running in 64bit mode. In such a case,
353 the pointer will be a 64bit pointer, not a 32bit pointer. The following
354 sample is a safe way to copy the data in to the kernel from either a
355 32bit or 64bit process:
356
357 user_addr_t tmp_ptr;
358 if (IS_64BIT_PROCESS(current_proc())) {
359 tmp_ptr = CAST_USER_ADDR_T(ifkpi.ifk_data.ifk_ptr64);
360 }
361 else {
362 tmp_ptr = CAST_USER_ADDR_T(ifkpi.ifk_data.ifk_ptr);
363 }
364 error = copyin(tmp_ptr, allocated_dst_buffer, size of allocated_dst_buffer);
365 */
366
367 struct ifkpi {
368 unsigned int ifk_module_id;
369 unsigned int ifk_type;
370 union {
371 void *ifk_ptr;
372 int ifk_value;
373 #ifdef KERNEL
374 u_int64_t ifk_ptr64;
375 #endif /* KERNEL */
376 } ifk_data;
377 };
378
379 /* Wake capabilities of a interface */
380 #define IF_WAKE_ON_MAGIC_PACKET 0x01
381 #ifdef KERNEL_PRIVATE
382 #define IF_WAKE_VALID_FLAGS IF_WAKE_ON_MAGIC_PACKET
383 #endif /* KERNEL_PRIVATE */
384
385
386 #pragma pack()
387
388 /*
389 * Interface request structure used for socket
390 * ioctl's. All interface ioctl's must have parameter
391 * definitions which begin with ifr_name. The
392 * remainder may be interface specific.
393 */
394 struct ifreq {
395 #ifndef IFNAMSIZ
396 #define IFNAMSIZ IF_NAMESIZE
397 #endif
398 char ifr_name[IFNAMSIZ]; /* if name, e.g. "en0" */
399 union {
400 struct sockaddr ifru_addr;
401 struct sockaddr ifru_dstaddr;
402 struct sockaddr ifru_broadaddr;
403 short ifru_flags;
404 int ifru_metric;
405 int ifru_mtu;
406 int ifru_phys;
407 int ifru_media;
408 int ifru_intval;
409 caddr_t ifru_data;
410 #ifdef KERNEL_PRIVATE
411 u_int64_t ifru_data64; /* 64-bit ifru_data */
412 #endif /* KERNEL_PRIVATE */
413 struct ifdevmtu ifru_devmtu;
414 struct ifkpi ifru_kpi;
415 u_int32_t ifru_wake_flags;
416 u_int32_t ifru_route_refcnt;
417 #ifdef PRIVATE
418 int ifru_link_quality_metric;
419 #endif /* PRIVATE */
420 int ifru_cap[2];
421 #ifdef PRIVATE
422 struct {
423 uint32_t ifo_flags;
424 #define IFRIFOF_BLOCK_OPPORTUNISTIC 0x00000001
425 uint32_t ifo_inuse;
426 } ifru_opportunistic;
427 u_int64_t ifru_eflags;
428 struct {
429 int32_t ifl_level;
430 uint32_t ifl_flags;
431 #define IFRLOGF_DLIL 0x00000001
432 #define IFRLOGF_FAMILY 0x00010000
433 #define IFRLOGF_DRIVER 0x01000000
434 #define IFRLOGF_FIRMWARE 0x10000000
435 int32_t ifl_category;
436 #define IFRLOGCAT_CONNECTIVITY 1
437 #define IFRLOGCAT_QUALITY 2
438 #define IFRLOGCAT_PERFORMANCE 3
439 int32_t ifl_subcategory;
440 } ifru_log;
441 u_int32_t ifru_delegated;
442 struct {
443 uint32_t ift_type;
444 uint32_t ift_family;
445 #define IFRTYPE_FAMILY_ANY 0
446 #define IFRTYPE_FAMILY_LOOPBACK 1
447 #define IFRTYPE_FAMILY_ETHERNET 2
448 #define IFRTYPE_FAMILY_SLIP 3
449 #define IFRTYPE_FAMILY_TUN 4
450 #define IFRTYPE_FAMILY_VLAN 5
451 #define IFRTYPE_FAMILY_PPP 6
452 #define IFRTYPE_FAMILY_PVC 7
453 #define IFRTYPE_FAMILY_DISC 8
454 #define IFRTYPE_FAMILY_MDECAP 9
455 #define IFRTYPE_FAMILY_GIF 10
456 #define IFRTYPE_FAMILY_FAITH 11
457 #define IFRTYPE_FAMILY_STF 12
458 #define IFRTYPE_FAMILY_FIREWIRE 13
459 #define IFRTYPE_FAMILY_BOND 14
460 #define IFRTYPE_FAMILY_CELLULAR 15
461 uint32_t ift_subfamily;
462 #define IFRTYPE_SUBFAMILY_ANY 0
463 #define IFRTYPE_SUBFAMILY_USB 1
464 #define IFRTYPE_SUBFAMILY_BLUETOOTH 2
465 #define IFRTYPE_SUBFAMILY_WIFI 3
466 #define IFRTYPE_SUBFAMILY_THUNDERBOLT 4
467 #define IFRTYPE_SUBFAMILY_RESERVED 5
468 #define IFRTYPE_SUBFAMILY_INTCOPROC 6
469 } ifru_type;
470 #endif /* PRIVATE */
471 u_int32_t ifru_functional_type;
472 #define IFRTYPE_FUNCTIONAL_UNKNOWN 0
473 #define IFRTYPE_FUNCTIONAL_LOOPBACK 1
474 #define IFRTYPE_FUNCTIONAL_WIRED 2
475 #define IFRTYPE_FUNCTIONAL_WIFI_INFRA 3
476 #define IFRTYPE_FUNCTIONAL_WIFI_AWDL 4
477 #define IFRTYPE_FUNCTIONAL_CELLULAR 5
478 #define IFRTYPE_FUNCTIONAL_INTCOPROC 6
479 #define IFRTYPE_FUNCTIONAL_LAST 6
480 #ifdef PRIVATE
481 u_int32_t ifru_expensive;
482 u_int32_t ifru_2kcl;
483 struct {
484 u_int32_t qlen;
485 u_int32_t timeout;
486 } ifru_start_delay;
487 struct if_interface_state ifru_interface_state;
488 u_int32_t ifru_probe_connectivity;
489 u_int32_t ifru_ecn_mode;
490 #define IFRTYPE_ECN_DEFAULT 0
491 #define IFRTYPE_ECN_ENABLE 1
492 #define IFRTYPE_ECN_DISABLE 2
493 u_int32_t ifru_qosmarking_mode;
494 #define IFRTYPE_QOSMARKING_MODE_NONE 0
495 #define IFRTYPE_QOSMARKING_FASTLANE 1
496 u_int32_t ifru_qosmarking_enabled;
497 u_int32_t ifru_disable_output;
498 u_int32_t ifru_low_internet;
499 #define IFRTYPE_LOW_INTERNET_DISABLE_UL_DL 0x0000
500 #define IFRTYPE_LOW_INTERNET_ENABLE_UL 0x0001
501 #define IFRTYPE_LOW_INTERNET_ENABLE_DL 0x0002
502
503 #endif /* PRIVATE */
504 } ifr_ifru;
505 #define ifr_addr ifr_ifru.ifru_addr /* address */
506 #define ifr_dstaddr ifr_ifru.ifru_dstaddr /* other end of p-to-p link */
507 #define ifr_broadaddr ifr_ifru.ifru_broadaddr /* broadcast address */
508 #ifdef __APPLE__
509 #define ifr_flags ifr_ifru.ifru_flags /* flags */
510 #else
511 #define ifr_flags ifr_ifru.ifru_flags[0] /* flags */
512 #define ifr_prevflags ifr_ifru.ifru_flags[1] /* flags */
513 #endif /* __APPLE__ */
514 #define ifr_metric ifr_ifru.ifru_metric /* metric */
515 #define ifr_mtu ifr_ifru.ifru_mtu /* mtu */
516 #define ifr_phys ifr_ifru.ifru_phys /* physical wire */
517 #define ifr_media ifr_ifru.ifru_media /* physical media */
518 #define ifr_data ifr_ifru.ifru_data /* for use by interface */
519 #define ifr_devmtu ifr_ifru.ifru_devmtu
520 #define ifr_intval ifr_ifru.ifru_intval /* integer value */
521 #ifdef KERNEL_PRIVATE
522 #define ifr_data64 ifr_ifru.ifru_data64 /* 64-bit pointer */
523 #endif /* KERNEL_PRIVATE */
524 #define ifr_kpi ifr_ifru.ifru_kpi
525 #define ifr_wake_flags ifr_ifru.ifru_wake_flags /* wake capabilities */
526 #define ifr_route_refcnt ifr_ifru.ifru_route_refcnt /* route references count */
527 #ifdef PRIVATE
528 #define ifr_link_quality_metric ifr_ifru.ifru_link_quality_metric /* LQM */
529 #endif /* PRIVATE */
530 #define ifr_reqcap ifr_ifru.ifru_cap[0] /* requested capabilities */
531 #define ifr_curcap ifr_ifru.ifru_cap[1] /* current capabilities */
532 #ifdef PRIVATE
533 #define ifr_opportunistic ifr_ifru.ifru_opportunistic
534 #define ifr_eflags ifr_ifru.ifru_eflags /* extended flags */
535 #define ifr_log ifr_ifru.ifru_log /* logging level/flags */
536 #define ifr_delegated ifr_ifru.ifru_delegated /* delegated interface index */
537 #define ifr_expensive ifr_ifru.ifru_expensive
538 #define ifr_type ifr_ifru.ifru_type /* interface type */
539 #define ifr_functional_type ifr_ifru.ifru_functional_type
540 #define ifr_2kcl ifr_ifru.ifru_2kcl
541 #define ifr_start_delay_qlen ifr_ifru.ifru_start_delay.qlen
542 #define ifr_start_delay_timeout ifr_ifru.ifru_start_delay.timeout
543 #define ifr_interface_state ifr_ifru.ifru_interface_state
544 #define ifr_probe_connectivity ifr_ifru.ifru_probe_connectivity
545 #define ifr_ecn_mode ifr_ifru.ifru_ecn_mode
546 #define ifr_qosmarking_mode ifr_ifru.ifru_qosmarking_mode
547 #define ifr_fastlane_capable ifr_qosmarking_mode
548 #define ifr_qosmarking_enabled ifr_ifru.ifru_qosmarking_enabled
549 #define ifr_fastlane_enabled ifr_qosmarking_enabled
550 #define ifr_disable_output ifr_ifru.ifru_disable_output
551 #define ifr_low_internet ifr_ifru.ifru_low_internet
552
553 #endif /* PRIVATE */
554 };
555
556 #define _SIZEOF_ADDR_IFREQ(ifr) \
557 ((ifr).ifr_addr.sa_len > sizeof (struct sockaddr) ? \
558 (sizeof (struct ifreq) - sizeof (struct sockaddr) + \
559 (ifr).ifr_addr.sa_len) : sizeof (struct ifreq))
560
561 struct ifaliasreq {
562 char ifra_name[IFNAMSIZ]; /* if name, e.g. "en0" */
563 struct sockaddr ifra_addr;
564 struct sockaddr ifra_broadaddr;
565 struct sockaddr ifra_mask;
566 };
567
568 struct rslvmulti_req {
569 struct sockaddr *sa;
570 struct sockaddr **llsa;
571 };
572
573 #if !defined(KERNEL) || defined(KERNEL_PRIVATE)
574 #pragma pack(4)
575
576 struct ifmediareq {
577 char ifm_name[IFNAMSIZ]; /* if name, e.g. "en0" */
578 int ifm_current; /* current media options */
579 int ifm_mask; /* don't care mask */
580 int ifm_status; /* media status */
581 int ifm_active; /* active options */
582 int ifm_count; /* # entries in ifm_ulist array */
583 int *ifm_ulist; /* media words */
584 };
585
586 #pragma pack()
587 #endif /* !KERNEL || KERNEL_PRIVATE */
588
589 #ifdef KERNEL_PRIVATE
590 #pragma pack(4)
591 struct ifmediareq64 {
592 char ifm_name[IFNAMSIZ]; /* if name, e.g. "en0" */
593 int ifm_current; /* current media options */
594 int ifm_mask; /* don't care mask */
595 int ifm_status; /* media status */
596 int ifm_active; /* active options */
597 int ifm_count; /* # entries in ifm_ulist array */
598 user64_addr_t ifmu_ulist __attribute__((aligned(8)));
599 };
600
601 struct ifmediareq32 {
602 char ifm_name[IFNAMSIZ]; /* if name, e.g. "en0" */
603 int ifm_current; /* current media options */
604 int ifm_mask; /* don't care mask */
605 int ifm_status; /* media status */
606 int ifm_active; /* active options */
607 int ifm_count; /* # entries in ifm_ulist array */
608 user32_addr_t ifmu_ulist; /* 32-bit pointer */
609 };
610 #pragma pack()
611 #endif /* KERNEL_PRIVATE */
612
613
614 #pragma pack(4)
615 struct ifdrv {
616 char ifd_name[IFNAMSIZ]; /* if name, e.g. "en0" */
617 unsigned long ifd_cmd;
618 size_t ifd_len; /* length of ifd_data buffer */
619 void *ifd_data;
620 };
621 #pragma pack()
622
623 #ifdef KERNEL_PRIVATE
624 #pragma pack(4)
625 struct ifdrv32 {
626 char ifd_name[IFNAMSIZ]; /* if name, e.g. "en0" */
627 u_int32_t ifd_cmd;
628 u_int32_t ifd_len;
629 user32_addr_t ifd_data;
630 };
631
632 struct ifdrv64 {
633 char ifd_name[IFNAMSIZ]; /* if name, e.g. "en0" */
634 u_int64_t ifd_cmd;
635 u_int64_t ifd_len;
636 user64_addr_t ifd_data;
637 };
638 #pragma pack()
639 #endif /* KERNEL_PRIVATE */
640
641 /*
642 * Structure used to retrieve aux status data from interfaces.
643 * Kernel suppliers to this interface should respect the formatting
644 * needed by ifconfig(8): each line starts with a TAB and ends with
645 * a newline.
646 */
647
648 #define IFSTATMAX 800 /* 10 lines of text */
649 struct ifstat {
650 char ifs_name[IFNAMSIZ]; /* if name, e.g. "en0" */
651 char ascii[IFSTATMAX + 1];
652 };
653
654 #if !defined(KERNEL) || defined(KERNEL_PRIVATE)
655 /*
656 * Structure used in SIOCGIFCONF request.
657 * Used to retrieve interface configuration
658 * for machine (useful for programs which
659 * must know all networks accessible).
660 */
661 #pragma pack(4)
662 struct ifconf {
663 int ifc_len; /* size of associated buffer */
664 union {
665 caddr_t ifcu_buf;
666 struct ifreq *ifcu_req;
667 } ifc_ifcu;
668 };
669 #pragma pack()
670 #define ifc_buf ifc_ifcu.ifcu_buf /* buffer address */
671 #define ifc_req ifc_ifcu.ifcu_req /* array of structures returned */
672 #endif /* !KERNEL || KERNEL_PRIVATE */
673
674 #if defined(KERNEL_PRIVATE)
675 #pragma pack(4)
676 struct ifconf32 {
677 int ifc_len; /* size of associated buffer */
678 struct {
679 user32_addr_t ifcu_req;
680 } ifc_ifcu;
681 };
682
683 struct ifconf64 {
684 int ifc_len; /* size of associated buffer */
685 struct {
686 user64_addr_t ifcu_req __attribute__((aligned(8)));
687 } ifc_ifcu;
688 };
689 #pragma pack()
690 #endif /* KERNEL_PRIVATE */
691
692 /*
693 * DLIL KEV_DL_PROTO_ATTACHED/DETACHED structure
694 */
695 struct kev_dl_proto_data {
696 struct net_event_data link_data;
697 u_int32_t proto_family;
698 u_int32_t proto_remaining_count;
699 };
700
701 #ifdef PRIVATE
702 /*
703 * Link Quality Metrics
704 *
705 * IFNET_LQM_THRESH_OFF Metric is not available; device is off.
706 * IFNET_LQM_THRESH_UNKNOWN Metric is not (yet) known.
707 * IFNET_LQM_THRESH_BAD Link quality is considered bad by driver.
708 * IFNET_LQM_THRESH_POOR Link quality is considered poor by driver.
709 * IFNET_LQM_THRESH_GOOD Link quality is considered good by driver.
710 */
711 enum {
712 IFNET_LQM_THRESH_OFF = (-2),
713 IFNET_LQM_THRESH_UNKNOWN = (-1),
714 IFNET_LQM_THRESH_ABORT = 10,
715 IFNET_LQM_THRESH_MINIMALLY_VIABLE = 20,
716 IFNET_LQM_THRESH_POOR = 50,
717 IFNET_LQM_THRESH_GOOD = 100
718 };
719 #define IFNET_LQM_THRESH_BAD IFNET_LQM_THRESH_ABORT
720
721 #ifdef XNU_KERNEL_PRIVATE
722 #define IFNET_LQM_MIN IFNET_LQM_THRESH_OFF
723 #define IFNET_LQM_MAX IFNET_LQM_THRESH_GOOD
724 #endif /* XNU_KERNEL_PRIVATE */
725
726 /*
727 * DLIL KEV_DL_LINK_QUALITY_METRIC_CHANGED structure
728 */
729 struct kev_dl_link_quality_metric_data {
730 struct net_event_data link_data;
731 int link_quality_metric;
732 };
733
734 #define IF_DESCSIZE 128
735
736 /*
737 * Structure for SIOC[SG]IFDESC
738 */
739 struct if_descreq {
740 char ifdr_name[IFNAMSIZ]; /* interface name */
741 u_int32_t ifdr_len; /* up to IF_DESCSIZE */
742 u_int8_t ifdr_desc[IF_DESCSIZE]; /* opaque data */
743 };
744
745 /*
746 * Output packet scheduling models
747 *
748 * IFNET_SCHED_MODEL_NORMAL The default output packet scheduling model
749 * where the driver or media does not require strict scheduling
750 * strategy, and that the networking stack is free to choose the
751 * most appropriate scheduling and queueing algorithm, including
752 * shaping traffics.
753 * IFNET_SCHED_MODEL_DRIVER_MANAGED The alternative output packet
754 * scheduling model where the driver or media requires strict
755 * scheduling strategy (e.g. 802.11 WMM), and that the networking
756 * stack is only responsible for creating multiple queues for the
757 * corresponding service classes.
758 */
759 enum {
760 IFNET_SCHED_MODEL_NORMAL = 0,
761 IFNET_SCHED_MODEL_DRIVER_MANAGED = 1,
762 IFNET_SCHED_MODEL_FQ_CODEL = 2,
763 #ifdef XNU_KERNEL_PRIVATE
764 IFNET_SCHED_MODEL_MAX = 3,
765 #endif /* XNU_KERNEL_PRIVATE */
766 };
767
768 /*
769 * Values for iflpr_flags
770 */
771 #define IFLPRF_ALTQ 0x1 /* configured via PF/ALTQ */
772 #define IFLPRF_DRVMANAGED 0x2 /* output queue scheduled by drv */
773
774 /*
775 * Structure for SIOCGIFLINKPARAMS
776 */
777 struct if_linkparamsreq {
778 char iflpr_name[IFNAMSIZ]; /* interface name */
779 u_int32_t iflpr_flags;
780 u_int32_t iflpr_output_sched;
781 u_int64_t iflpr_output_tbr_rate;
782 u_int32_t iflpr_output_tbr_percent;
783 struct if_bandwidths iflpr_output_bw;
784 struct if_bandwidths iflpr_input_bw;
785 struct if_latencies iflpr_output_lt;
786 struct if_latencies iflpr_input_lt;
787 };
788
789 /*
790 * Structure for SIOCGIFQUEUESTATS
791 */
792 struct if_qstatsreq {
793 char ifqr_name[IFNAMSIZ]; /* interface name */
794 u_int32_t ifqr_slot;
795 void *ifqr_buf __attribute__((aligned(8)));
796 int ifqr_len __attribute__((aligned(8)));
797 };
798
799 /*
800 * Node Proximity Metrics
801 */
802 enum {
803 IFNET_NPM_THRESH_UNKNOWN = (-1),
804 IFNET_NPM_THRESH_NEAR = 30,
805 IFNET_NPM_THRESH_GENERAL = 70,
806 IFNET_NPM_THRESH_FAR = 100,
807 };
808
809 /*
810 * Received Signal Strength Indication [special values]
811 *
812 * IFNET_RSSI_UNKNOWN Metric is not (yet) known.
813 */
814 enum {
815 IFNET_RSSI_UNKNOWN = ((-2147483647)-1), /* INT32_MIN */
816 };
817
818
819 /*
820 * DLIL KEV_DL_NODE_PRESENCE/KEV_DL_NODE_ABSENCE event structures
821 */
822 struct kev_dl_node_presence {
823 struct net_event_data link_data;
824 struct sockaddr_in6 sin6_node_address;
825 struct sockaddr_dl sdl_node_address;
826 int32_t rssi;
827 int link_quality_metric;
828 int node_proximity_metric;
829 u_int8_t node_service_info[48];
830 };
831
832 struct kev_dl_node_absence {
833 struct net_event_data link_data;
834 struct sockaddr_in6 sin6_node_address;
835 struct sockaddr_dl sdl_node_address;
836 };
837
838 /*
839 * Structure for SIOC[SG]IFTHROTTLE
840 */
841 struct if_throttlereq {
842 char ifthr_name[IFNAMSIZ]; /* interface name */
843 u_int32_t ifthr_level;
844 };
845
846 /*
847 * Interface throttling levels
848 *
849 * IFNET_THROTTLE_OFF The default throttling level (no throttling.)
850 * All service class queues operate normally according to the
851 * standard packet scheduler configuration.
852 * IFNET_THROTTLE_OPPORTUNISTIC One or more service class queues that
853 * are responsible for managing "opportunistic" traffics are
854 * suspended. Packets enqueued on those queues will be dropped
855 * and a flow advisory error will be generated to the data
856 * source. Existing packets in the queues will stay enqueued
857 * until the interface is no longer throttled, or until they
858 * are explicitly flushed.
859 */
860 enum {
861 IFNET_THROTTLE_OFF = 0,
862 IFNET_THROTTLE_OPPORTUNISTIC = 1,
863 #ifdef XNU_KERNEL_PRIVATE
864 IFNET_THROTTLE_MAX = 2,
865 #endif /* XNU_KERNEL_PRIVATE */
866 };
867
868 /*
869 * Structure for SIOC[A/D]IFAGENTID
870 */
871 struct if_agentidreq {
872 char ifar_name[IFNAMSIZ]; /* interface name */
873 uuid_t ifar_uuid; /* agent UUID to add or delete */
874 };
875
876 /*
877 * Structure for SIOCGIFAGENTIDS
878 */
879 struct if_agentidsreq {
880 char ifar_name[IFNAMSIZ]; /* interface name */
881 u_int32_t ifar_count; /* number of agent UUIDs */
882 uuid_t *ifar_uuids; /* array of agent UUIDs */
883 };
884
885 /*
886 * Structure for SIOCGIFNEXUS
887 */
888 struct if_nexusreq {
889 char ifnr_name[IFNAMSIZ]; /* interface name */
890 uint64_t ifnr_flags; /* unused, must be zero */
891 uuid_t ifnr_netif; /* netif nexus instance UUID */
892 uuid_t ifnr_multistack; /* multistack nexus UUID */
893 uint64_t ifnr_reserved[5];
894 };
895
896 #ifdef BSD_KERNEL_PRIVATE
897 struct if_agentidsreq32 {
898 char ifar_name[IFNAMSIZ];
899 u_int32_t ifar_count;
900 user32_addr_t ifar_uuids;
901 };
902 struct if_agentidsreq64 {
903 char ifar_name[IFNAMSIZ];
904 u_int32_t ifar_count;
905 user64_addr_t ifar_uuids __attribute__((aligned(8)));
906 };
907 #endif /* BSD_KERNEL_PRIVATE */
908
909 #define DLIL_MODIDLEN 20 /* same as IFNET_MODIDLEN */
910 #define DLIL_MODARGLEN 12 /* same as IFNET_MODARGLEN */
911
912 /*
913 * DLIL KEV_DL_ISSUES event structure
914 */
915 struct kev_dl_issues {
916 struct net_event_data link_data;
917 u_int8_t modid[DLIL_MODIDLEN];
918 u_int64_t timestamp;
919 u_int8_t info[DLIL_MODARGLEN];
920 };
921
922 /*
923 * DLIL KEV_DL_RRC_STATE_CHANGED structure
924 */
925 struct kev_dl_rrc_state {
926 struct net_event_data link_data;
927 u_int32_t rrc_state;
928 };
929
930 /*
931 * Length of network signature/fingerprint blob.
932 */
933 #define IFNET_SIGNATURELEN 20
934
935 /*
936 * Structure for SIOC[S/G]IFNETSIGNATURE
937 */
938 struct if_nsreq {
939 char ifnsr_name[IFNAMSIZ];
940 u_int8_t ifnsr_family; /* address family */
941 u_int8_t ifnsr_len; /* data length */
942 u_int16_t ifnsr_flags; /* for future */
943 u_int8_t ifnsr_data[IFNET_SIGNATURELEN];
944 };
945
946
947 #define NAT64_PREFIX_LEN_32 4
948 #define NAT64_PREFIX_LEN_40 5
949 #define NAT64_PREFIX_LEN_48 6
950 #define NAT64_PREFIX_LEN_56 7
951 #define NAT64_PREFIX_LEN_64 8
952 #define NAT64_PREFIX_LEN_96 12
953 #define NAT64_PREFIX_LEN_MAX NAT64_PREFIX_LEN_96
954
955 #define NAT64_MAX_NUM_PREFIXES 4
956
957 struct ipv6_prefix {
958 struct in6_addr ipv6_prefix;
959 uint32_t prefix_len;
960 };
961
962 /*
963 * Structure for SIOC[S/G]IFNAT64PREFIX
964 */
965 struct if_nat64req {
966 char ifnat64_name[IFNAMSIZ];
967 struct ipv6_prefix ifnat64_prefixes[NAT64_MAX_NUM_PREFIXES];
968 };
969
970 /*
971 * Structure for SIOC[S/G]IFORDER
972 *
973 * When setting, ifo_count is the number of u_int32_t interface indices
974 * in the ifo_ordered_indices array.
975 *
976 * When getting, if ifo_count is 0, the length of the ordered list will
977 * be returned. If the ifo_count is non-0, it is the number of u_int32_t
978 * interface indices allocated. Upon return, ifo_count will contain the number
979 * of indices copied into the array.
980 */
981 struct if_order {
982 u_int32_t ifo_count;
983 u_int32_t ifo_reserved;
984 mach_vm_address_t ifo_ordered_indices; /* array of u_int32_t */
985 };
986
987 /*
988 * Struct for traffic class to DSCP mapping
989 */
990 struct if_tdmreq {
991 char iftdm_name[IFNAMSIZ];
992 u_int32_t iftdm_len; /* byte length of the table */
993 struct netsvctype_dscp_map *iftdm_table;
994 };
995
996 #ifdef BSD_KERNEL_PRIVATE
997 struct if_tdmreq32 {
998 char iftdm_name[IFNAMSIZ];
999 u_int32_t iftdm_len; /* byte length of the table */
1000 user32_addr_t iftdm_table;
1001 };
1002
1003 struct if_tdmreq64 {
1004 char iftdm_name[IFNAMSIZ];
1005 u_int32_t iftdm_len; /* byte length of the table */
1006 user64_addr_t iftdm_table __attribute__((aligned(8)));
1007 };
1008 #endif
1009
1010 #endif /* PRIVATE */
1011
1012 #ifdef KERNEL
1013 #ifdef MALLOC_DECLARE
1014 MALLOC_DECLARE(M_IFADDR);
1015 MALLOC_DECLARE(M_IFMADDR);
1016 #endif
1017 #endif
1018 #endif /* (_POSIX_C_SOURCE && !_DARWIN_C_SOURCE) */
1019
1020 #ifndef KERNEL
1021 struct if_nameindex {
1022 unsigned int if_index; /* 1, 2, ... */
1023 char *if_name; /* null terminated name: "le0", ... */
1024 };
1025
1026 __BEGIN_DECLS
1027 unsigned int if_nametoindex(const char *);
1028 char *if_indextoname(unsigned int, char *);
1029 struct if_nameindex *if_nameindex(void);
1030 void if_freenameindex(struct if_nameindex *);
1031 __END_DECLS
1032 #endif
1033
1034 #ifdef KERNEL
1035 #include <net/kpi_interface.h>
1036 #endif
1037
1038 #endif /* !_NET_IF_H_ */