2 * Copyright (c) 2013-2019 Apple Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
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.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
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.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
32 #include <net/net_kev.h>
35 #include <netinet/in.h>
36 #include <netinet/in_stat.h>
37 #include <sys/socket.h>
41 * Name registered by the NECP
43 #define NECP_CONTROL_NAME "com.apple.net.necp_control"
45 #define NECP_TLV_LENGTH_UINT32 1
47 struct necp_packet_header
{
54 * Control message commands
56 #define NECP_PACKET_TYPE_POLICY_ADD 1
57 #define NECP_PACKET_TYPE_POLICY_GET 2
58 #define NECP_PACKET_TYPE_POLICY_DELETE 3
59 #define NECP_PACKET_TYPE_POLICY_APPLY_ALL 4
60 #define NECP_PACKET_TYPE_POLICY_LIST_ALL 5
61 #define NECP_PACKET_TYPE_POLICY_DELETE_ALL 6
62 #define NECP_PACKET_TYPE_SET_SESSION_PRIORITY 7
63 #define NECP_PACKET_TYPE_LOCK_SESSION_TO_PROC 8
64 #define NECP_PACKET_TYPE_REGISTER_SERVICE 9
65 #define NECP_PACKET_TYPE_UNREGISTER_SERVICE 10
66 #define NECP_PACKET_TYPE_POLICY_DUMP_ALL 11
71 #define NECP_SESSION_ACTION_POLICY_ADD 1 // In: Policy TLVs Out: necp_policy_id
72 #define NECP_SESSION_ACTION_POLICY_GET 2 // In: necp_policy_id Out: Policy TLVs
73 #define NECP_SESSION_ACTION_POLICY_DELETE 3 // In: necp_policy_id Out: None
74 #define NECP_SESSION_ACTION_POLICY_APPLY_ALL 4 // In: None Out: None
75 #define NECP_SESSION_ACTION_POLICY_LIST_ALL 5 // In: None Out: TLVs of IDs
76 #define NECP_SESSION_ACTION_POLICY_DELETE_ALL 6 // In: None Out: None
77 #define NECP_SESSION_ACTION_SET_SESSION_PRIORITY 7 // In: necp_session_priority Out: None
78 #define NECP_SESSION_ACTION_LOCK_SESSION_TO_PROC 8 // In: None Out: None
79 #define NECP_SESSION_ACTION_REGISTER_SERVICE 9 // In: uuid_t Out: None
80 #define NECP_SESSION_ACTION_UNREGISTER_SERVICE 10 // In: uuid_t Out: None
81 #define NECP_SESSION_ACTION_POLICY_DUMP_ALL 11 // In: None Out: uint32_t bytes length, then Policy TLVs
84 * Control message flags
86 #define NECP_PACKET_FLAGS_RESPONSE 0x01 // Used for acks, errors, and query responses
89 * Control message TLV types
91 #define NECP_TLV_NIL 0
92 #define NECP_TLV_ERROR 1 // u_int32_t
93 #define NECP_TLV_POLICY_ORDER 2 // u_int32_t
94 #define NECP_TLV_POLICY_CONDITION 3
95 #define NECP_TLV_POLICY_RESULT 4
96 #define NECP_TLV_POLICY_ID 5 // u_int32_t
97 #define NECP_TLV_SESSION_PRIORITY 6 // u_int32_t
98 #define NECP_TLV_ATTRIBUTE_DOMAIN 7 // char[]
99 #define NECP_TLV_ATTRIBUTE_ACCOUNT 8 // char[]
100 #define NECP_TLV_SERVICE_UUID 9 // uuid_t
101 #define NECP_TLV_ROUTE_RULE 10
104 * Control message TLV sent only by the kernel to userspace
106 #define NECP_TLV_POLICY_OWNER 100 // char []
107 #define NECP_TLV_POLICY_DUMP 101
108 #define NECP_TLV_POLICY_RESULT_STRING 102 // char []
109 #define NECP_TLV_POLICY_SESSION_ORDER 103 // u_int32_t
114 #define NECP_POLICY_CONDITION_FLAGS_NEGATIVE 0x01 // Negative
118 * Used for setting policies as well as passing parameters to necp_match_policy.
120 #define NECP_POLICY_CONDITION_DEFAULT 0 // N/A, not valid with any other conditions
121 // Socket/Application conditions
122 #define NECP_POLICY_CONDITION_APPLICATION 1 // uuid_t, uses effective UUID when possible
123 #define NECP_POLICY_CONDITION_REAL_APPLICATION 2 // uuid_t, never uses effective UUID. Only valid with NECP_POLICY_CONDITION_APPLICATION
124 #define NECP_POLICY_CONDITION_DOMAIN 3 // String, such as apple.com
125 #define NECP_POLICY_CONDITION_ACCOUNT 4 // String
126 #define NECP_POLICY_CONDITION_ENTITLEMENT 5 // String
127 #define NECP_POLICY_CONDITION_PID 6 // pid_t
128 #define NECP_POLICY_CONDITION_UID 7 // uid_t
129 #define NECP_POLICY_CONDITION_ALL_INTERFACES 8 // N/A
130 #define NECP_POLICY_CONDITION_BOUND_INTERFACE 9 // String
131 #define NECP_POLICY_CONDITION_TRAFFIC_CLASS 10 // necp_policy_condition_tc_range
132 // Socket/IP conditions
133 #define NECP_POLICY_CONDITION_IP_PROTOCOL 11 // u_int16_t
134 #define NECP_POLICY_CONDITION_LOCAL_ADDR 12 // necp_policy_condition_addr
135 #define NECP_POLICY_CONDITION_REMOTE_ADDR 13 // necp_policy_condition_addr
136 #define NECP_POLICY_CONDITION_LOCAL_ADDR_RANGE 14 // necp_policy_condition_addr_range
137 #define NECP_POLICY_CONDITION_REMOTE_ADDR_RANGE 15 // necp_policy_condition_addr_range
138 #define NECP_POLICY_CONDITION_AGENT_TYPE 16 // struct necp_policy_condition_agent_type
139 #define NECP_POLICY_CONDITION_HAS_CLIENT 17 // N/A
140 #define NECP_POLICY_CONDITION_LOCAL_NETWORKS 18 // Matches all local networks
141 // Socket-only conditions
142 #define NECP_POLICY_CONDITION_FLOW_IP_PROTOCOL 19 // u_int16_t
143 #define NECP_POLICY_CONDITION_FLOW_LOCAL_ADDR 20 // necp_policy_condition_addr
144 #define NECP_POLICY_CONDITION_FLOW_REMOTE_ADDR 21 // necp_policy_condition_addr
145 #define NECP_POLICY_CONDITION_FLOW_LOCAL_ADDR_RANGE 22 // necp_policy_condition_addr_range
146 #define NECP_POLICY_CONDITION_FLOW_REMOTE_ADDR_RANGE 23 // necp_policy_condition_addr_range
147 // Socket/Application conditions, continued
148 #define NECP_POLICY_CONDITION_CLIENT_FLAGS 24 // u_int32_t, values from NECP_CLIENT_PARAMETER_FLAG_*
149 #define NECP_POLICY_CONDITION_FLOW_LOCAL_ADDR_EMPTY 25 // N/A
150 #define NECP_POLICY_CONDITION_FLOW_REMOTE_ADDR_EMPTY 26 // N/A
151 #define NECP_POLICY_CONDITION_PLATFORM_BINARY 27 // N/A
156 #define NECP_POLICY_RESULT_PASS 1 // N/A
157 #define NECP_POLICY_RESULT_SKIP 2 // u_int32_t, policy order to skip to. 0 to skip all session policies.
158 #define NECP_POLICY_RESULT_DROP 3 // N/A
159 #define NECP_POLICY_RESULT_SOCKET_DIVERT 4 // u_int32_t, flow divert control unit
160 #define NECP_POLICY_RESULT_SOCKET_FILTER 5 // u_int32_t, filter control unit
161 #define NECP_POLICY_RESULT_IP_TUNNEL 6 // String, interface name
162 #define NECP_POLICY_RESULT_IP_FILTER 7 // ?
163 #define NECP_POLICY_RESULT_TRIGGER 8 // service uuid_t
164 #define NECP_POLICY_RESULT_TRIGGER_IF_NEEDED 9 // service uuid_t
165 #define NECP_POLICY_RESULT_TRIGGER_SCOPED 10 // service uuid_t
166 #define NECP_POLICY_RESULT_NO_TRIGGER_SCOPED 11 // service uuid_t
167 #define NECP_POLICY_RESULT_SOCKET_SCOPED 12 // String, interface name
168 #define NECP_POLICY_RESULT_ROUTE_RULES 13 // N/A, must have route rules defined
169 #define NECP_POLICY_RESULT_USE_NETAGENT 14 // netagent uuid_t
170 #define NECP_POLICY_RESULT_NETAGENT_SCOPED 15 // netagent uuid_t
171 #define NECP_POLICY_RESULT_SCOPED_DIRECT 16 // N/A, scopes to primary physical interface
172 #define NECP_POLICY_RESULT_ALLOW_UNENTITLED 17 // N/A
174 #define NECP_POLICY_RESULT_MAX NECP_POLICY_RESULT_ALLOW_UNENTITLED
178 * Detailed parameters for NECP_POLICY_RESULT_ROUTE_RULES.
180 #define NECP_ROUTE_RULE_NONE 0 // N/A
181 #define NECP_ROUTE_RULE_DENY_INTERFACE 1 // String, or empty to match all
182 #define NECP_ROUTE_RULE_ALLOW_INTERFACE 2 // String, or empty to match all
183 #define NECP_ROUTE_RULE_QOS_MARKING 3 // String, or empty to match all
184 #define NECP_ROUTE_RULE_DENY_LQM_ABORT 4 // String, or empty to match all
186 #define NECP_ROUTE_RULE_FLAG_CELLULAR 0x01
187 #define NECP_ROUTE_RULE_FLAG_WIFI 0x02
188 #define NECP_ROUTE_RULE_FLAG_WIRED 0x04
189 #define NECP_ROUTE_RULE_FLAG_EXPENSIVE 0x08
190 #define NECP_ROUTE_RULE_FLAG_CONSTRAINED 0x10
195 #define NECP_ERROR_INTERNAL 0
196 #define NECP_ERROR_UNKNOWN_PACKET_TYPE 1
197 #define NECP_ERROR_INVALID_TLV 2
198 #define NECP_ERROR_POLICY_RESULT_INVALID 3
199 #define NECP_ERROR_POLICY_CONDITIONS_INVALID 4
200 #define NECP_ERROR_POLICY_ID_NOT_FOUND 5
201 #define NECP_ERROR_INVALID_PROCESS 6
202 #define NECP_ERROR_ROUTE_RULES_INVALID 7
205 #define NECP_MASK_USERSPACE_ONLY 0x80000000 // on filter_control_unit value
207 struct necp_policy_condition_tc_range
{
210 } __attribute__((__packed__
));
212 struct necp_policy_condition_addr
{
216 struct sockaddr_in sin
;
217 struct sockaddr_in6 sin6
;
219 } __attribute__((__packed__
));
221 struct necp_policy_condition_addr_range
{
224 struct sockaddr_in sin
;
225 struct sockaddr_in6 sin6
;
229 struct sockaddr_in sin
;
230 struct sockaddr_in6 sin6
;
232 } __attribute__((__packed__
));
234 struct necp_policy_condition_agent_type
{
235 char agent_domain
[32];
237 } __attribute__((__packed__
));
239 #define NECP_SESSION_PRIORITY_UNKNOWN 0
240 #define NECP_SESSION_PRIORITY_CONTROL 1
241 #define NECP_SESSION_PRIORITY_PRIVILEGED_TUNNEL 2
242 #define NECP_SESSION_PRIORITY_HIGH 3
243 #define NECP_SESSION_PRIORITY_DEFAULT 4
244 #define NECP_SESSION_PRIORITY_LOW 5
246 #define NECP_SESSION_NUM_PRIORITIES NECP_SESSION_PRIORITY_LOW
248 typedef u_int32_t necp_policy_id
;
249 typedef u_int32_t necp_policy_order
;
250 typedef u_int32_t necp_session_priority
;
252 typedef u_int32_t necp_kernel_policy_result
;
253 typedef u_int32_t necp_kernel_policy_filter
;
256 u_int tunnel_interface_index
;
257 u_int scoped_interface_index
;
258 u_int32_t flow_divert_control_unit
;
259 u_int32_t filter_control_unit
;
260 } necp_kernel_policy_routing_result_parameter
;
262 #define NECP_SERVICE_FLAGS_REGISTERED 0x01
263 #define NECP_MAX_NETAGENTS 8
265 #define NECP_AGENT_USE_FLAG_SCOPE 0x01
267 #define NECP_TFO_COOKIE_LEN_MAX 16
268 struct necp_aggregate_result
{
269 necp_kernel_policy_result routing_result
;
270 necp_kernel_policy_routing_result_parameter routing_result_parameter
;
271 necp_kernel_policy_filter filter_control_unit
;
272 necp_kernel_policy_result service_action
;
274 u_int32_t service_flags
;
275 u_int32_t service_data
;
276 u_int routed_interface_index
;
278 uuid_t netagents
[NECP_MAX_NETAGENTS
];
279 u_int32_t netagent_use_flags
[NECP_MAX_NETAGENTS
];
280 u_int8_t mss_recommended
;
284 * Statistics. It would be nice if the definitions in ntstat.h could be used,
285 * but they get entangled with #defines for v4 etc in pfvar.h and it may be better practice
286 * to have separate definitions here.
288 struct necp_stat_counts
{
290 u_int64_t necp_stat_rxpackets
__attribute__((aligned(8)));
291 u_int64_t necp_stat_rxbytes
__attribute__((aligned(8)));
292 u_int64_t necp_stat_txpackets
__attribute__((aligned(8)));
293 u_int64_t necp_stat_txbytes
__attribute__((aligned(8)));
295 u_int32_t necp_stat_rxduplicatebytes
;
296 u_int32_t necp_stat_rxoutoforderbytes
;
297 u_int32_t necp_stat_txretransmit
;
299 u_int32_t necp_stat_connectattempts
;
300 u_int32_t necp_stat_connectsuccesses
;
302 u_int32_t necp_stat_min_rtt
;
303 u_int32_t necp_stat_avg_rtt
;
304 u_int32_t necp_stat_var_rtt
;
306 #define NECP_STAT_ROUTE_FLAGS 1
307 u_int32_t necp_stat_route_flags
;
310 // Note, some metadata is implicit in the necp client itself:
311 // From the process itself : pid, upid, uuid, proc name.
312 // From the necp client parameters: local and remote addresses, euuid, traffic class, ifindex
314 // The following may well be supplied via future necp client parameters,
315 // but they are here so they don't get forgotten.
316 struct necp_basic_metadata
{
317 u_int32_t rcvbufsize
;
318 u_int32_t rcvbufused
;
321 struct necp_connection_probe_status
{
322 unsigned int probe_activated
: 1;
323 unsigned int write_probe_failed
: 1;
324 unsigned int read_probe_failed
: 1;
325 unsigned int conn_probe_failed
: 1;
328 struct necp_extra_tcp_metadata
{
329 struct necp_connection_probe_status probestatus
;
331 u_int32_t sndbufsize
;
332 u_int32_t sndbufused
;
336 u_int32_t flags
; // use SOF_*
337 u_int32_t flags1
; // use SOF1_*
338 u_int32_t traffic_mgt_flags
;
339 u_int32_t cc_alg_index
;
343 struct necp_stats_hdr
{
344 u_int32_t necp_stats_type
__attribute__((aligned(8)));
345 u_int32_t necp_stats_ver
;
346 u_int64_t __necp_stats_reserved
; // Pad the field for future use
349 #define NECP_CLIENT_STATISTICS_TYPE_TCP 1 // Identifies use of necp_tcp_stats
350 #define NECP_CLIENT_STATISTICS_TYPE_UDP 2 // Identifies use of necp_udp_stats
351 #define NECP_CLIENT_STATISTICS_TYPE_QUIC 3 // Identifies use of necp_quic_stats
353 #define NECP_CLIENT_STATISTICS_TYPE_TCP_VER_1 1 // Currently supported version for TCP
354 #define NECP_CLIENT_STATISTICS_TYPE_UDP_VER_1 1 // Currently supported version for UDP
355 #define NECP_CLIENT_STATISTICS_TYPE_QUIC_VER_1 1 // Currently supported version for QUIC
357 #define NECP_CLIENT_STATISTICS_TYPE_TCP_CURRENT_VER NECP_CLIENT_STATISTICS_TYPE_TCP_VER_1
358 #define NECP_CLIENT_STATISTICS_TYPE_UDP_CURRENT_VER NECP_CLIENT_STATISTICS_TYPE_UDP_VER_1
359 #define NECP_CLIENT_STATISTICS_TYPE_QUIC_CURRENT_VER NECP_CLIENT_STATISTICS_TYPE_QUIC_VER_1
361 #define NECP_CLIENT_STATISTICS_EVENT_INIT 0x00000000 // Register the flow
362 #define NECP_CLIENT_STATISTICS_EVENT_TIME_WAIT 0x00000001 // The flow is effectively finished but waiting on timer
364 struct necp_tcp_stats
{
365 struct necp_stats_hdr necp_tcp_hdr
;
366 struct necp_stat_counts necp_tcp_counts
;
367 struct necp_basic_metadata necp_tcp_basic
;
368 struct necp_extra_tcp_metadata necp_tcp_extra
;
371 struct necp_udp_stats
{
372 struct necp_stats_hdr necp_udp_hdr
;
373 struct necp_stat_counts necp_udp_counts
;
374 struct necp_basic_metadata necp_udp_basic
;
379 * The following reflects the special case for QUIC.
380 * It is a streaming protocol built on top of UDP.
381 * Therefore QUIC stats are defined as basic UDP stats
382 * with some extra meta data.
383 * TODO: For now the extra metadata is an exact replica
384 * of the metadata for TCP. However keeping that separate allows
385 * the structures to diverge later as new stats are added.
387 #define QUIC_STATELESS_RESET_TOKEN_SIZE 16
388 struct necp_extra_quic_metadata
{
389 u_int32_t sndbufsize
;
390 u_int32_t sndbufused
;
394 u_int32_t traffic_mgt_flags
;
395 u_int32_t cc_alg_index
;
397 u_int8_t ssr_token
[QUIC_STATELESS_RESET_TOKEN_SIZE
];
400 #define necp_quic_hdr necp_quic_udp_stats.necp_udp_hdr
401 #define necp_quic_counts necp_quic_udp_stats.necp_udp_counts
402 #define necp_quic_basic necp_quic_udp_stats.necp_udp_basic
403 struct necp_quic_stats
{
404 struct necp_udp_stats necp_quic_udp_stats
;
405 struct necp_extra_quic_metadata necp_quic_extra
;
408 typedef struct necp_all_stats
{
410 struct necp_tcp_stats tcp_stats
;
411 struct necp_udp_stats udp_stats
;
412 struct necp_quic_stats quic_stats
;
416 // Memory for statistics is requested via a necp_stats_bufreq
418 struct necp_stats_bufreq
{
419 u_int32_t necp_stats_bufreq_id
__attribute__((aligned(8)));
420 u_int32_t necp_stats_bufreq_type
; // NECP_CLIENT_STATISTICS_TYPE_*
421 u_int32_t necp_stats_bufreq_ver
; // NECP_CLIENT_STATISTICS_TYPE_*_VER
422 u_int32_t necp_stats_bufreq_size
;
424 void *necp_stats_bufreq_addr
;
425 mach_vm_address_t necp_stats_bufreq_uaddr
;
429 #define NECP_CLIENT_STATISTICS_BUFREQ_ID 0xbf // Distinguishes from statistics actions taking a necp_all_stats struct
431 // There is a limit to the number of statistics structures that may be allocated per process, subject to change
433 #define NECP_MAX_PER_PROCESS_CLIENT_STATISTICS_STRUCTS 512
435 #define NECP_TCP_ECN_HEURISTICS_SYN_RST 1
436 typedef struct necp_tcp_ecn_cache
{
437 u_int8_t necp_tcp_ecn_heuristics_success
:1;
438 u_int8_t necp_tcp_ecn_heuristics_loss
:1;
439 u_int8_t necp_tcp_ecn_heuristics_drop_rst
:1;
440 u_int8_t necp_tcp_ecn_heuristics_drop_rxmt
:1;
441 u_int8_t necp_tcp_ecn_heuristics_aggressive
:1;
442 u_int8_t necp_tcp_ecn_heuristics_syn_rst
:1;
443 } necp_tcp_ecn_cache
;
445 #define NECP_TCP_TFO_HEURISTICS_RST 1
446 typedef struct necp_tcp_tfo_cache
{
447 u_int8_t necp_tcp_tfo_cookie
[NECP_TFO_COOKIE_LEN_MAX
];
448 u_int8_t necp_tcp_tfo_cookie_len
;
449 u_int8_t necp_tcp_tfo_heuristics_success
:1; // TFO succeeded with data in the SYN
450 u_int8_t necp_tcp_tfo_heuristics_loss
:1; // TFO SYN-loss with data
451 u_int8_t necp_tcp_tfo_heuristics_middlebox
:1; // TFO middlebox detected
452 u_int8_t necp_tcp_tfo_heuristics_success_req
:1; // TFO succeeded with the TFO-option in the SYN
453 u_int8_t necp_tcp_tfo_heuristics_loss_req
:1; // TFO SYN-loss with the TFO-option
454 u_int8_t necp_tcp_tfo_heuristics_rst_data
:1; // Recevied RST upon SYN with data in the SYN
455 u_int8_t necp_tcp_tfo_heuristics_rst_req
:1; // Received RST upon SYN with the TFO-option
456 } necp_tcp_tfo_cache
;
458 #define NECP_CLIENT_CACHE_TYPE_ECN 1 // Identifies use of necp_tcp_ecn_cache
459 #define NECP_CLIENT_CACHE_TYPE_TFO 2 // Identifies use of necp_tcp_tfo_cache
461 #define NECP_CLIENT_CACHE_TYPE_ECN_VER_1 1 // Currently supported version for ECN
462 #define NECP_CLIENT_CACHE_TYPE_TFO_VER_1 1 // Currently supported version for TFO
464 typedef struct necp_cache_buffer
{
465 u_int8_t necp_cache_buf_type
; // NECP_CLIENT_CACHE_TYPE_*
466 u_int8_t necp_cache_buf_ver
; // NECP_CLIENT_CACHE_TYPE_*_VER
467 u_int32_t necp_cache_buf_size
;
468 mach_vm_address_t necp_cache_buf_addr
;
472 * NECP Client definitions
474 #define NECP_MAX_CLIENT_PARAMETERS_SIZE 1024
475 #define NECP_MAX_CLIENT_RESULT_SIZE 512
477 #define NECP_OPEN_FLAG_OBSERVER 0x01 // Observers can query clients they don't own
478 #define NECP_OPEN_FLAG_BACKGROUND 0x02 // Mark this fd as backgrounded
479 #define NECP_OPEN_FLAG_PUSH_OBSERVER 0x04 // When used with the OBSERVER flag, allows updates to be pushed. Adding clients is not allowed in this mode.
481 #define NECP_FD_SUPPORTS_GUARD 1
483 #define NECP_CLIENT_ACTION_ADD 1 // Register a new client. Input: parameters in buffer; Output: client_id
484 #define NECP_CLIENT_ACTION_REMOVE 2 // Unregister a client. Input: client_id, optional struct ifnet_stats_per_flow
485 #define NECP_CLIENT_ACTION_COPY_PARAMETERS 3 // Copy client parameters. Input: client_id; Output: parameters in buffer
486 #define NECP_CLIENT_ACTION_COPY_RESULT 4 // Copy client result. Input: client_id; Output: result in buffer
487 #define NECP_CLIENT_ACTION_COPY_LIST 5 // Copy all client IDs. Output: struct necp_client_list in buffer
488 #define NECP_CLIENT_ACTION_REQUEST_NEXUS_INSTANCE 6 // Request a nexus instance from a nexus provider, optional struct necp_stats_bufreq
489 #define NECP_CLIENT_ACTION_AGENT 7 // Interact with agent. Input: client_id, agent parameters
490 #define NECP_CLIENT_ACTION_COPY_AGENT 8 // Copy agent content. Input: agent UUID; Output: struct netagent
491 #define NECP_CLIENT_ACTION_COPY_INTERFACE 9 // Copy interface details. Input: ifindex cast to UUID; Output: struct necp_interface_details
492 #define NECP_CLIENT_ACTION_SET_STATISTICS 10 // Deprecated
493 #define NECP_CLIENT_ACTION_COPY_ROUTE_STATISTICS 11 // Get route statistics. Input: client_id; Output: struct necp_stat_counts
494 #define NECP_CLIENT_ACTION_AGENT_USE 12 // Return the use count and increment the use count. Input/Output: struct necp_agent_use_parameters
495 #define NECP_CLIENT_ACTION_MAP_SYSCTLS 13 // Get the read-only sysctls memory location. Output: mach_vm_address_t
496 #define NECP_CLIENT_ACTION_UPDATE_CACHE 14 // Update heuristics and cache
497 #define NECP_CLIENT_ACTION_COPY_CLIENT_UPDATE 15 // Fetch an updated client for push-mode observer. Output: Client id, struct necp_client_observer_update in buffer
498 #define NECP_CLIENT_ACTION_COPY_UPDATED_RESULT 16 // Copy client result only if changed. Input: client_id; Output: result in buffer
499 #define NECP_CLIENT_ACTION_ADD_FLOW 17 // Add a flow. Input: client_id; Output: struct necp_client_add_flow
500 #define NECP_CLIENT_ACTION_REMOVE_FLOW 18 // Remove a flow. Input: flow_id, optional struct ifnet_stats_per_flow
501 #define NECP_CLIENT_ACTION_CLAIM 19 // Claim a client that has been added for this unique PID. Input: client_id
502 #define NECP_CLIENT_ACTION_SIGN 20 // Sign a resolver answer. Input: struct necp_client_resolver_answer; Output: signed tag, expected to be 32 bytes
504 #define NECP_CLIENT_PARAMETER_APPLICATION NECP_POLICY_CONDITION_APPLICATION // Requires entitlement
505 #define NECP_CLIENT_PARAMETER_REAL_APPLICATION NECP_POLICY_CONDITION_REAL_APPLICATION // Requires entitlement
506 #define NECP_CLIENT_PARAMETER_DOMAIN NECP_POLICY_CONDITION_DOMAIN
507 #define NECP_CLIENT_PARAMETER_ACCOUNT NECP_POLICY_CONDITION_ACCOUNT
508 #define NECP_CLIENT_PARAMETER_PID NECP_POLICY_CONDITION_PID // Requires entitlement
509 #define NECP_CLIENT_PARAMETER_UID NECP_POLICY_CONDITION_UID // Requires entitlement
510 #define NECP_CLIENT_PARAMETER_BOUND_INTERFACE NECP_POLICY_CONDITION_BOUND_INTERFACE
511 #define NECP_CLIENT_PARAMETER_TRAFFIC_CLASS NECP_POLICY_CONDITION_TRAFFIC_CLASS
512 #define NECP_CLIENT_PARAMETER_IP_PROTOCOL NECP_POLICY_CONDITION_IP_PROTOCOL
513 #define NECP_CLIENT_PARAMETER_LOCAL_ADDRESS NECP_POLICY_CONDITION_LOCAL_ADDR
514 #define NECP_CLIENT_PARAMETER_REMOTE_ADDRESS NECP_POLICY_CONDITION_REMOTE_ADDR
515 #define NECP_CLIENT_PARAMETER_NEXUS_KEY 102
517 // "Prohibit" will never choose an interface with that property
518 #define NECP_CLIENT_PARAMETER_PROHIBIT_INTERFACE 100 // String, interface name
519 #define NECP_CLIENT_PARAMETER_PROHIBIT_IF_TYPE 101 // u_int8_t, see ifru_functional_type in <net/if.h>
520 #define NECP_CLIENT_PARAMETER_PROHIBIT_AGENT 102 // uuid_t, network agent UUID
521 #define NECP_CLIENT_PARAMETER_PROHIBIT_AGENT_TYPE 103 // struct necp_client_parameter_netagent_type
523 // "Require" will choose an interface with that property, or none if not found
524 #define NECP_CLIENT_PARAMETER_REQUIRE_IF_TYPE 111 // u_int8_t, see ifru_functional_type in <net/if.h>
525 #define NECP_CLIENT_PARAMETER_REQUIRE_AGENT 112 // uuid_t, network agent UUID
526 #define NECP_CLIENT_PARAMETER_REQUIRE_AGENT_TYPE 113 // struct necp_client_parameter_netagent_type
528 // "Prefer" will choose an interface with an agent, or best otherwise if not found
529 #define NECP_CLIENT_PARAMETER_PREFER_AGENT 122 // uuid_t, network agent UUID
530 #define NECP_CLIENT_PARAMETER_PREFER_AGENT_TYPE 123 // struct necp_client_parameter_netagent_type
532 // "Avoid" will choose an interface without an agent, or best otherwise if unavoidable
533 #define NECP_CLIENT_PARAMETER_AVOID_AGENT 124 // uuid_t, network agent UUID
534 #define NECP_CLIENT_PARAMETER_AVOID_AGENT_TYPE 125 // struct necp_client_parameter_netagent_type
536 // Use actions with NECP_CLIENT_ACTION_AGENT
537 #define NECP_CLIENT_PARAMETER_TRIGGER_AGENT 130 // uuid_t, network agent UUID
538 #define NECP_CLIENT_PARAMETER_ASSERT_AGENT 131 // uuid_t, network agent UUID
539 #define NECP_CLIENT_PARAMETER_UNASSERT_AGENT 132 // uuid_t, network agent UUID
541 #define NECP_CLIENT_PARAMETER_PARENT_ID 150 // uuid_t, client UUID
543 #define NECP_CLIENT_PARAMETER_LOCAL_ENDPOINT 200 // struct necp_client_endpoint
544 #define NECP_CLIENT_PARAMETER_REMOTE_ENDPOINT 201 // struct necp_client_endpoint
545 #define NECP_CLIENT_PARAMETER_BROWSE_DESCRIPTOR 202 // struct necp_client_endpoint
546 #define NECP_CLIENT_PARAMETER_RESOLVER_TAG 203 // Tag as bytes, expected to be 32 bytes
547 #define NECP_CLIENT_PARAMETER_ADVERTISE_DESCRIPTOR 204 // struct necp_client_endpoint
549 #define NECP_CLIENT_PARAMETER_DELEGATED_UPID 210 // u_int64_t, requires entitlement
551 #define NECP_CLIENT_PARAMETER_ETHERTYPE 220 // u_int16_t, ethertype
552 #define NECP_CLIENT_PARAMETER_TRANSPORT_PROTOCOL 221 // u_int8_t, IPPROTO_
554 #define NECP_CLIENT_PARAMETER_LOCAL_ADDRESS_PREFERENCE 230 // u_int8_t, NECP_CLIENT_PARAMETER_LOCAL_ADDRESS_PREFERENCE_
556 #define NECP_CLIENT_PARAMETER_LOCAL_ADDRESS_PREFERENCE_DEFAULT 0
557 #define NECP_CLIENT_PARAMETER_LOCAL_ADDRESS_PREFERENCE_TEMPORARY 1
558 #define NECP_CLIENT_PARAMETER_LOCAL_ADDRESS_PREFERENCE_STABLE 2
560 #define NECP_CLIENT_PARAMETER_FLAGS 250 // u_int32_t, see NECP_CLIENT_PAREMETER_FLAG_* values
562 #define NECP_CLIENT_PARAMETER_FLAG_MULTIPATH 0x0001 // Get multipath interface results
563 #define NECP_CLIENT_PARAMETER_FLAG_BROWSE 0x0002 // Agent assertions on nexuses are requests to browse
564 #define NECP_CLIENT_PARAMETER_FLAG_PROHIBIT_EXPENSIVE 0x0004 // Prohibit expensive interfaces
565 #define NECP_CLIENT_PARAMETER_FLAG_LISTENER 0x0008 // Client is interested in listening for inbound connections
566 #define NECP_CLIENT_PARAMETER_FLAG_DISCRETIONARY 0x0010 // Client's traffic is discretionary, and eligible for early defuncting
567 #define NECP_CLIENT_PARAMETER_FLAG_ECN_ENABLE 0x0020 // Client is requesting to enable ECN
568 #define NECP_CLIENT_PARAMETER_FLAG_ECN_DISABLE 0x0040 // Client is requesting to disable ECN
569 #define NECP_CLIENT_PARAMETER_FLAG_TFO_ENABLE 0x0080 // Client is requesting to enable TFO
570 #define NECP_CLIENT_PARAMETER_FLAG_ONLY_PRIMARY_REQUIRES_TYPE 0x0100 // Interpret NECP_CLIENT_PARAMETER_REQUIRE_IF_TYPE only for primary interface, and allow exceptions for multipath or listeners
571 #define NECP_CLIENT_PARAMETER_FLAG_CUSTOM_ETHER 0x0200 // Client expects to open a custom ethernet channel
572 #define NECP_CLIENT_PARAMETER_FLAG_CUSTOM_IP 0x0400 // Client expects to open a custom IP protocol channel
573 #define NECP_CLIENT_PARAMETER_FLAG_INTERPOSE 0x0800 // Client expects to open an interpose filter channel
574 #define NECP_CLIENT_PARAMETER_FLAG_PROHIBIT_CONSTRAINED 0x1000 // Prohibit constrained interfaces
575 #define NECP_CLIENT_PARAMETER_FLAG_FALLBACK_TRAFFIC 0x2000 // Fallback traffic
576 #define NECP_CLIENT_PARAMETER_FLAG_INBOUND 0x4000 // Flow is inbound (passive)
578 #define NECP_CLIENT_RESULT_CLIENT_ID 1 // uuid_t
579 #define NECP_CLIENT_RESULT_POLICY_RESULT 2 // u_int32_t
580 #define NECP_CLIENT_RESULT_POLICY_RESULT_PARAMETER 3 // u_int32_t
581 #define NECP_CLIENT_RESULT_FILTER_CONTROL_UNIT 4 // u_int32_t
582 #define NECP_CLIENT_RESULT_INTERFACE_INDEX 5 // u_int32_t
583 #define NECP_CLIENT_RESULT_NETAGENT 6 // struct necp_client_result_netagent
584 #define NECP_CLIENT_RESULT_FLAGS 7 // u_int32_t, see NECP_CLIENT_RESULT_FLAG_* values
585 #define NECP_CLIENT_RESULT_INTERFACE 8 // struct necp_client_result_interface
586 #define NECP_CLIENT_RESULT_INTERFACE_OPTION 9 // struct necp_client_interface_option
587 #define NECP_CLIENT_RESULT_EFFECTIVE_MTU 10 // u_int32_t
588 #define NECP_CLIENT_RESULT_FLOW 11 // TLV array of a single flow's state
589 #define NECP_CLIENT_RESULT_PROTO_CTL_EVENT 12
590 #define NECP_CLIENT_RESULT_TFO_COOKIE 13 // NECP_TFO_COOKIE_LEN_MAX
591 #define NECP_CLIENT_RESULT_TFO_FLAGS 14 // u_int8_t
592 #define NECP_CLIENT_RESULT_RECOMMENDED_MSS 15 // u_int8_t
593 #define NECP_CLIENT_RESULT_FLOW_ID 16 // uuid_t
594 #define NECP_CLIENT_RESULT_INTERFACE_TIME_DELTA 17 // u_int32_t, seconds since interface up/down
595 #define NECP_CLIENT_RESULT_REASON 18 // u_int32_t, see NECP_CLIENT_RESULT_REASON_* values
597 #define NECP_CLIENT_RESULT_NEXUS_INSTANCE 100 // uuid_t
598 #define NECP_CLIENT_RESULT_NEXUS_PORT 101 // u_int16_t
599 #define NECP_CLIENT_RESULT_NEXUS_KEY 102 // uuid_t
600 #define NECP_CLIENT_RESULT_NEXUS_PORT_FLOW_INDEX 103 // u_int32_t
601 #define NECP_CLIENT_RESULT_NEXUS_FLOW_STATS 104 // struct sk_stats_flow *
603 #define NECP_CLIENT_RESULT_LOCAL_ENDPOINT 200 // struct necp_client_endpoint
604 #define NECP_CLIENT_RESULT_REMOTE_ENDPOINT 201 // struct necp_client_endpoint
605 #define NECP_CLIENT_RESULT_DISCOVERED_ENDPOINT 202 // struct necp_client_endpoint, result of browse
606 #define NECP_CLIENT_RESULT_RESOLVED_ENDPOINT 203 // struct necp_client_endpoint, result of resolve
607 #define NECP_CLIENT_RESULT_LOCAL_ETHER_ADDR 204 // struct ether_addr
608 #define NECP_CLIENT_RESULT_REMOTE_ETHER_ADDR 205 // struct ether_addr
609 #define NECP_CLIENT_RESULT_EFFECTIVE_TRAFFIC_CLASS 210 // u_int32_t
610 #define NECP_CLIENT_RESULT_TRAFFIC_MGMT_BG 211 // u_int32_t, 1: background, 0: not background
611 #define NECP_CLIENT_RESULT_GATEWAY 212 // struct necp_client_endpoint
613 #define NECP_CLIENT_RESULT_FLAG_IS_LOCAL 0x0001 // Routes to this device
614 #define NECP_CLIENT_RESULT_FLAG_IS_DIRECT 0x0002 // Routes to directly accessible peer
615 #define NECP_CLIENT_RESULT_FLAG_HAS_IPV4 0x0004 // Supports IPv4
616 #define NECP_CLIENT_RESULT_FLAG_HAS_IPV6 0x0008 // Supports IPv6
617 #define NECP_CLIENT_RESULT_FLAG_DEFUNCT 0x0010 // Defunct
618 #define NECP_CLIENT_RESULT_FLAG_SATISFIED 0x0020 // Satisfied path
619 #define NECP_CLIENT_RESULT_FLAG_FLOW_ASSIGNED 0x0040 // Assigned, the flow is active
620 #define NECP_CLIENT_RESULT_FLAG_FLOW_VIABLE 0x0080 // Viable, the flow has a valid route
621 #define NECP_CLIENT_RESULT_FLAG_PROBE_CONNECTIVITY 0x0100 // Flow should probe connectivity
622 #define NECP_CLIENT_RESULT_FLAG_ECN_ENABLED 0x0200 // ECN should be used
623 #define NECP_CLIENT_RESULT_FLAG_FAST_OPEN_BLOCKED 0x0400 // Fast open should not be used
624 #define NECP_CLIENT_RESULT_FLAG_LINK_QUALITY_ABORT 0x0800 // Link quality is very bad, recommend close connections
625 #define NECP_CLIENT_RESULT_FLAG_ALLOW_QOS_MARKING 0x1000 // QoS marking is allowed
626 #define NECP_CLIENT_RESULT_FLAG_HAS_NAT64 0x2000 // Has NAT64 prefix
627 #define NECP_CLIENT_RESULT_FLAG_INTERFACE_LOW_POWER 0x4000 // Interface is in low-power mode
628 #define NECP_CLIENT_RESULT_FLAG_SPECIFIC_LISTENER 0x8000 // Listener should not listen on all interfaces
630 #define NECP_CLIENT_RESULT_FLAG_FORCE_UPDATE (NECP_CLIENT_RESULT_FLAG_HAS_IPV4 | NECP_CLIENT_RESULT_FLAG_HAS_IPV6 | NECP_CLIENT_RESULT_FLAG_HAS_NAT64 | NECP_CLIENT_RESULT_FLAG_INTERFACE_LOW_POWER)
632 #define NECP_CLIENT_RESULT_FAST_OPEN_SND_PROBE 0x01 // DEPRECATED - Fast open send probe
633 #define NECP_CLIENT_RESULT_FAST_OPEN_RCV_PROBE 0x02 // DEPRECATED - Fast open receive probe
635 #define NECP_CLIENT_RESULT_RECOMMENDED_MSS_NONE 0x01
636 #define NECP_CLIENT_RESULT_RECOMMENDED_MSS_LOW 0x02
637 #define NECP_CLIENT_RESULT_RECOMMENDED_MSS_MEDIUM 0x04
639 #define NECP_CLIENT_RESULT_REASON_EXPENSIVE_PROHIBITED 1 // Expensive networks were prohibited
640 #define NECP_CLIENT_RESULT_REASON_CONSTRAINED_PROHIBITED 2 // Constrained networks were prohibited
641 #define NECP_CLIENT_RESULT_REASON_CELLULAR_DENIED 3 // Denied by a cellular route rule
642 #define NECP_CLIENT_RESULT_REASON_WIFI_DENIED 4 // Denied by a wifi route rule
644 struct necp_interface_signature
{
645 u_int8_t signature
[IFNET_SIGNATURELEN
];
646 u_int8_t signature_len
;
649 struct necp_interface_details
{
650 char name
[IFXNAMSIZ
];
652 u_int32_t generation
;
653 u_int32_t functional_type
;
654 u_int32_t delegate_index
;
655 u_int32_t flags
; // see NECP_INTERFACE_FLAG_*
657 struct necp_interface_signature ipv4_signature
;
658 struct necp_interface_signature ipv6_signature
;
659 u_int32_t ipv4_netmask
;
660 u_int32_t ipv4_broadcast
;
663 #define NECP_INTERFACE_FLAG_EXPENSIVE 0x0001
664 #define NECP_INTERFACE_FLAG_TXSTART 0X0002
665 #define NECP_INTERFACE_FLAG_NOACKPRI 0x0004
666 #define NECP_INTERFACE_FLAG_3CARRIERAGG 0x0008
667 #define NECP_INTERFACE_FLAG_IS_LOW_POWER 0x0010
668 #define NECP_INTERFACE_FLAG_MPK_LOG 0x0020 // Multi-layer Packet Logging
669 #define NECP_INTERFACE_FLAG_CONSTRAINED 0x0040
670 #define NECP_INTERFACE_FLAG_HAS_NETMASK 0x0080
671 #define NECP_INTERFACE_FLAG_HAS_BROADCAST 0x0100
673 struct necp_client_parameter_netagent_type
{
674 char netagent_domain
[32];
675 char netagent_type
[32];
678 struct necp_client_result_netagent
{
679 u_int32_t generation
;
680 uuid_t netagent_uuid
;
683 struct necp_client_result_interface
{
684 u_int32_t generation
;
688 struct necp_client_interface_option
{
689 u_int32_t interface_index
;
690 u_int32_t interface_generation
;
694 struct necp_client_endpoint
{
697 struct sockaddr_in sin
;
698 struct sockaddr_in6 sin6
;
700 u_int8_t endpoint_length
;
701 u_int8_t endpoint_family
; // Use AF_UNSPEC to target a name
702 u_int16_t endpoint_port
;
703 u_int32_t endpoint_type
; // Client-specific type
704 char endpoint_data
[0]; // Type-specific endpoint value
709 struct necp_client_list
{
710 u_int32_t client_count
;
714 struct kev_necp_policies_changed_data
{
715 u_int32_t changed_count
; // Defaults to 0.
718 #define NECP_CLIENT_FLOW_FLAGS_ALLOW_NEXUS 0x01 // Request a nexus instance upon adding a flow
719 #define NECP_CLIENT_FLOW_FLAGS_USE_CLIENT_ID 0x02 // Register the client ID rather than the flow registration ID with network agents
720 #define NECP_CLIENT_FLOW_FLAGS_BROWSE 0x04 // Create request with a browse agent
721 #define NECP_CLIENT_FLOW_FLAGS_RESOLVE 0x08 // Create request with a resolution agent
723 struct necp_client_flow_stats
{
724 u_int32_t stats_type
; // NECP_CLIENT_STATISTICS_TYPE_*
725 u_int32_t stats_version
; // NECP_CLIENT_STATISTICS_TYPE_*_VER
726 u_int32_t stats_size
;
727 mach_vm_address_t stats_addr
;
730 struct necp_client_add_flow
{
732 uuid_t registration_id
;
733 u_int16_t flags
; // NECP_CLIENT_FLOW_FLAGS_*
734 u_int16_t stats_request_count
;
735 struct necp_client_flow_stats stats_requests
[0];
736 } __attribute__((__packed__
));
738 struct necp_agent_use_parameters
{
740 uint64_t out_use_count
;
743 struct necp_client_flow_protoctl_event
{
744 uint32_t protoctl_event_code
;
745 uint32_t protoctl_event_val
;
746 /* TCP seq number is in host byte order */
747 uint32_t protoctl_event_tcp_seq_num
;
750 #define NECP_CLIENT_UPDATE_TYPE_PARAMETERS 1 // Parameters, for a new client
751 #define NECP_CLIENT_UPDATE_TYPE_RESULT 2 // Result, for a udpated client
752 #define NECP_CLIENT_UPDATE_TYPE_REMOVE 3 // Empty, for a removed client
754 struct necp_client_observer_update
{
755 u_int32_t update_type
; // NECP_CLIENT_UPDATE_TYPE_*
756 u_int8_t tlv_buffer
[0]; // Parameters or result as TLVs, based on type
759 #define NECP_CLIENT_SIGN_TYPE_RESOLVER_ANSWER 1
761 struct necp_client_signable
{
764 } __attribute__((__packed__
));
766 struct necp_client_resolver_answer
{
769 union sockaddr_in_4_6 address_answer
;
770 u_int32_t hostname_length
;
772 } __attribute__((__packed__
));
774 #define NECP_FILTER_UNIT_NO_FILTER UINT32_MAX // Reserved filter unit value that prohibits all filters and socket filters
777 * The sysctl "net.necp.necp_drop_dest_level" controls the global drop rule policy for
778 * a set of destinations addresses at the given level -- the drop rule is the last one
779 * to be evaluated at this level.
781 #define MAX_NECP_DROP_DEST_LEVEL_ADDRS 8
783 struct necp_drop_dest_entry
{
784 u_int32_t level
; // priority level
785 u_int32_t order
; // session order (read only via sysctl)
786 struct necp_policy_condition_addr cond_addr
;
789 struct necp_drop_dest_policy
{
790 u_int32_t entry_count
;
791 struct necp_drop_dest_entry entries
[MAX_NECP_DROP_DEST_LEVEL_ADDRS
];
794 #ifdef BSD_KERNEL_PRIVATE
796 #include <sys/socketvar.h>
797 #include <sys/kern_control.h>
798 #include <netinet/ip_var.h>
799 #include <netinet6/ip6_var.h>
800 #include <net/if_var.h>
801 #include <sys/syslog.h>
802 #include <net/network_agent.h>
803 #include <net/ethernet.h>
806 SYSCTL_DECL(_net_necp
);
808 #define NECPLOG(level, format, ...) do { \
809 log((level > LOG_NOTICE ? LOG_NOTICE : level), "%s: " format "\n", __FUNCTION__, __VA_ARGS__); \
812 #define NECPLOG0(level, msg) do { \
813 log((level > LOG_NOTICE ? LOG_NOTICE : level), "%s: %s\n", __FUNCTION__, msg); \
816 enum necp_fd_type_t
{
817 necp_fd_type_invalid
= 0,
818 necp_fd_type_session
= 1,
819 necp_fd_type_client
= 2,
822 union necp_sockaddr_union
{
824 struct sockaddr_in sin
;
825 struct sockaddr_in6 sin6
;
830 * The ustats and kstats region are mirrored. So when we allocate with
831 * skmem_cache from kstats region, we also get an ustats object. To tie them
832 * together, kstats has an extra *necp_stats_ustats pointer pointing to the
835 struct necp_all_kstats
{
836 struct necp_all_stats necp_stats_comm
; /* kernel private stats snapshot */
837 struct necp_all_stats
*necp_stats_ustats
; /* points to user-visible stats (in shared ustats region) */
840 extern errno_t
necp_client_init(void);
841 extern int necp_application_find_policy_match_internal(proc_t proc
, u_int8_t
*parameters
, u_int32_t parameters_size
,
842 struct necp_aggregate_result
*returned_result
,
843 u_int32_t
*flags
, u_int32_t
*reason
, u_int required_interface_index
,
844 const union necp_sockaddr_union
*override_local_addr
,
845 const union necp_sockaddr_union
*override_remote_addr
,
846 struct necp_client_endpoint
*returned_v4_gateway
,
847 struct necp_client_endpoint
*returned_v6_gateway
,
848 struct rtentry
**returned_route
, bool ignore_address
,
853 * Note that these functions (other than necp_buffer_find_tlv) do not check the length of the entire buffer,
854 * so the caller must be sure that the entire TLV is within bounds.
856 struct necp_tlv_header
{
859 } __attribute__((__packed__
));
861 extern u_int8_t
*necp_buffer_write_tlv(u_int8_t
*cursor
, u_int8_t type
, u_int32_t length
, const void *value
,
862 u_int8_t
*buffer
, u_int32_t buffer_length
);
863 extern u_int8_t
*necp_buffer_write_tlv_if_different(u_int8_t
*cursor
, u_int8_t type
,
864 u_int32_t length
, const void *value
, bool *updated
,
865 u_int8_t
*buffer
, u_int32_t buffer_length
);
866 extern u_int8_t
necp_buffer_get_tlv_type(u_int8_t
*buffer
, int tlv_offset
);
867 extern u_int32_t
necp_buffer_get_tlv_length(u_int8_t
*buffer
, int tlv_offset
);
868 extern u_int8_t
*necp_buffer_get_tlv_value(u_int8_t
*buffer
, int tlv_offset
, u_int32_t
*value_size
);
869 extern int necp_buffer_find_tlv(u_int8_t
*buffer
, u_int32_t buffer_length
, int offset
, u_int8_t type
, int *err
, int next
);
871 #define NECPCTL_DROP_ALL_LEVEL 1 /* Drop all packets if no policy matches above this level */
872 #define NECPCTL_DEBUG 2 /* Log all kernel policy matches */
873 #define NECPCTL_PASS_LOOPBACK 3 /* Pass all loopback traffic */
874 #define NECPCTL_PASS_KEEPALIVES 4 /* Pass all kernel-generated keepalive traffic */
875 #define NECPCTL_SOCKET_POLICY_COUNT 5 /* Count of all socket-level policies */
876 #define NECPCTL_SOCKET_NON_APP_POLICY_COUNT 6 /* Count of non-per-app socket-level policies */
877 #define NECPCTL_IP_POLICY_COUNT 7 /* Count of all ip-level policies */
878 #define NECPCTL_SESSION_COUNT 8 /* Count of NECP sessions */
879 #define NECPCTL_CLIENT_FD_COUNT 9 /* Count of NECP client fds */
880 #define NECPCTL_CLIENT_COUNT 10 /* Count of NECP clients */
881 #define NECPCTL_ARENA_COUNT 11 /* Count of NECP arenas (stats, etc) */
882 #define NECPCTL_NEXUS_FLOW_COUNT 12 /* Count of NECP nexus flows */
883 #define NECPCTL_SOCKET_FLOW_COUNT 13 /* Count of NECP socket flows */
884 #define NECPCTL_IF_FLOW_COUNT 14 /* Count of NECP socket flows */
885 #define NECPCTL_OBSERVER_FD_COUNT 15 /* Count of NECP observer fds */
886 #define NECPCTL_OBSERVER_MESSAGE_LIMIT 16 /* Number of of NECP observer messages allowed to be queued */
887 #define NECPCTL_SYSCTL_ARENA_COUNT 17 /* Count of sysctl arenas */
888 #define NECPCTL_DROP_UNENTITLED_LEVEL 18 /* Drop unentitled process traffic above this level */
889 #define NECPCTL_PASS_INTERPOSE 19 /* Pass interpose */
891 #define NECPCTL_NAMES { \
893 { "drop_all_level", CTLTYPE_INT }, \
894 { "debug", CTLTYPE_INT }, \
895 { "pass_loopback", CTLTYPE_INT }, \
896 { "pass_keepalives", CTLTYPE_INT }, \
897 { "pass_interpose", CTLTYPE_INT }, \
900 typedef u_int32_t necp_kernel_policy_id
;
901 #define NECP_KERNEL_POLICY_ID_NONE 0
902 #define NECP_KERNEL_POLICY_ID_NO_MATCH 1
903 #define NECP_KERNEL_POLICY_ID_FIRST_VALID_SOCKET 2
904 #define NECP_KERNEL_POLICY_ID_FIRST_VALID_IP UINT16_MAX
906 typedef u_int32_t necp_app_id
;
908 #define NECP_KERNEL_POLICY_RESULT_NONE 0
909 #define NECP_KERNEL_POLICY_RESULT_PASS NECP_POLICY_RESULT_PASS
910 #define NECP_KERNEL_POLICY_RESULT_SKIP NECP_POLICY_RESULT_SKIP
911 #define NECP_KERNEL_POLICY_RESULT_DROP NECP_POLICY_RESULT_DROP
912 #define NECP_KERNEL_POLICY_RESULT_SOCKET_DIVERT NECP_POLICY_RESULT_SOCKET_DIVERT
913 #define NECP_KERNEL_POLICY_RESULT_SOCKET_FILTER NECP_POLICY_RESULT_SOCKET_FILTER
914 #define NECP_KERNEL_POLICY_RESULT_IP_TUNNEL NECP_POLICY_RESULT_IP_TUNNEL
915 #define NECP_KERNEL_POLICY_RESULT_IP_FILTER NECP_POLICY_RESULT_IP_FILTER
916 #define NECP_KERNEL_POLICY_RESULT_TRIGGER NECP_POLICY_RESULT_TRIGGER
917 #define NECP_KERNEL_POLICY_RESULT_TRIGGER_IF_NEEDED NECP_POLICY_RESULT_TRIGGER_IF_NEEDED
918 #define NECP_KERNEL_POLICY_RESULT_TRIGGER_SCOPED NECP_POLICY_RESULT_TRIGGER_SCOPED
919 #define NECP_KERNEL_POLICY_RESULT_NO_TRIGGER_SCOPED NECP_POLICY_RESULT_NO_TRIGGER_SCOPED
920 #define NECP_KERNEL_POLICY_RESULT_SOCKET_SCOPED NECP_POLICY_RESULT_SOCKET_SCOPED
921 #define NECP_KERNEL_POLICY_RESULT_ROUTE_RULES NECP_POLICY_RESULT_ROUTE_RULES
922 #define NECP_KERNEL_POLICY_RESULT_USE_NETAGENT NECP_POLICY_RESULT_USE_NETAGENT
923 #define NECP_KERNEL_POLICY_RESULT_NETAGENT_SCOPED NECP_POLICY_RESULT_NETAGENT_SCOPED
924 #define NECP_KERNEL_POLICY_RESULT_SCOPED_DIRECT NECP_POLICY_RESULT_SCOPED_DIRECT
925 #define NECP_KERNEL_POLICY_RESULT_ALLOW_UNENTITLED NECP_POLICY_RESULT_ALLOW_UNENTITLED
928 u_int32_t identifier
;
930 } necp_kernel_policy_service
;
933 u_int tunnel_interface_index
;
934 u_int scoped_interface_index
;
935 u_int32_t flow_divert_control_unit
;
936 u_int32_t filter_control_unit
;
937 u_int32_t skip_policy_order
;
938 u_int32_t route_rule_id
;
939 u_int32_t netagent_id
;
940 necp_kernel_policy_service service
;
941 } necp_kernel_policy_result_parameter
;
943 enum necp_boolean_state
{
944 necp_boolean_state_unknown
= 0,
945 necp_boolean_state_false
= 1,
946 necp_boolean_state_true
= 2,
949 struct necp_kernel_socket_policy
{
950 LIST_ENTRY(necp_kernel_socket_policy
) chain
;
951 necp_kernel_policy_id id
;
952 necp_policy_order order
;
953 u_int32_t session_order
;
956 u_int32_t condition_mask
;
957 u_int32_t condition_negated_mask
;
958 u_int32_t cond_client_flags
;
959 necp_kernel_policy_id cond_policy_id
;
960 u_int32_t cond_app_id
; // Locally assigned ID value stored
961 u_int32_t cond_real_app_id
; // Locally assigned ID value stored
962 char *cond_custom_entitlement
; // String
963 u_int8_t cond_custom_entitlement_matched
;// Boolean if entitlement matched app
964 u_int32_t cond_account_id
; // Locally assigned ID value stored
965 char *cond_domain
; // String
966 u_int8_t cond_domain_dot_count
; // Number of dots in cond_domain
969 ifnet_t cond_bound_interface
; // Matches specific binding only
970 struct necp_policy_condition_tc_range cond_traffic_class
; // Matches traffic class in range
971 u_int16_t cond_protocol
; // Matches IP protcol number
972 union necp_sockaddr_union cond_local_start
; // Matches local IP address (or start)
973 union necp_sockaddr_union cond_local_end
; // Matches IP address range
974 u_int8_t cond_local_prefix
; // Defines subnet
975 union necp_sockaddr_union cond_remote_start
; // Matches remote IP address (or start)
976 union necp_sockaddr_union cond_remote_end
; // Matches IP address range
977 u_int8_t cond_remote_prefix
; // Defines subnet
978 struct necp_policy_condition_agent_type cond_agent_type
;
980 necp_kernel_policy_result result
;
981 necp_kernel_policy_result_parameter result_parameter
;
984 struct necp_kernel_ip_output_policy
{
985 LIST_ENTRY(necp_kernel_ip_output_policy
) chain
;
986 necp_kernel_policy_id id
;
987 necp_policy_order suborder
;
988 necp_policy_order order
;
989 u_int32_t session_order
;
992 u_int32_t condition_mask
;
993 u_int32_t condition_negated_mask
;
994 necp_kernel_policy_id cond_policy_id
;
995 ifnet_t cond_bound_interface
; // Matches specific binding only
996 u_int16_t cond_protocol
; // Matches IP protcol number
997 union necp_sockaddr_union cond_local_start
; // Matches local IP address (or start)
998 union necp_sockaddr_union cond_local_end
; // Matches IP address range
999 u_int8_t cond_local_prefix
; // Defines subnet
1000 union necp_sockaddr_union cond_remote_start
; // Matches remote IP address (or start)
1001 union necp_sockaddr_union cond_remote_end
; // Matches IP address range
1002 u_int8_t cond_remote_prefix
; // Defines subnet
1003 u_int32_t cond_last_interface_index
;
1005 necp_kernel_policy_result result
;
1006 necp_kernel_policy_result_parameter result_parameter
;
1009 #define MAX_KERNEL_SOCKET_POLICIES 1
1010 #define MAX_KERNEL_IP_OUTPUT_POLICIES 4
1011 struct necp_session_policy
{
1012 LIST_ENTRY(necp_session_policy
) chain
;
1013 bool applied
; // Applied into the kernel table
1014 bool pending_deletion
; // Waiting to be removed from kernel table
1015 bool pending_update
; // Policy has been modified since creation/last application
1016 necp_policy_id local_id
;
1017 necp_policy_order order
;
1019 u_int32_t result_size
;
1020 u_int8_t
*conditions
; // Array of conditions, each with a u_int32_t length at start
1021 u_int32_t conditions_size
;
1022 u_int8_t
*route_rules
; // Array of route rules, each with a u_int32_t length at start
1023 u_int32_t route_rules_size
;
1025 uuid_t applied_app_uuid
;
1026 uuid_t applied_real_app_uuid
;
1027 char *applied_account
;
1029 uuid_t applied_result_uuid
;
1031 u_int32_t applied_route_rules_id
;
1033 necp_kernel_policy_id kernel_socket_policies
[MAX_KERNEL_SOCKET_POLICIES
];
1034 necp_kernel_policy_id kernel_ip_output_policies
[MAX_KERNEL_IP_OUTPUT_POLICIES
];
1037 struct necp_aggregate_socket_result
{
1038 necp_kernel_policy_result result
;
1039 necp_kernel_policy_result_parameter result_parameter
;
1040 necp_kernel_policy_filter filter_control_unit
;
1041 u_int32_t route_rule_id
;
1042 int32_t qos_marking_gencount
;
1045 struct necp_inpcb_result
{
1047 necp_kernel_policy_id policy_id
;
1048 necp_kernel_policy_id skip_policy_id
;
1049 int32_t policy_gencount
;
1051 struct necp_aggregate_socket_result results
;
1054 extern errno_t
necp_init(void);
1056 extern errno_t
necp_set_socket_attributes(struct socket
*so
, struct sockopt
*sopt
);
1057 extern errno_t
necp_get_socket_attributes(struct socket
*so
, struct sockopt
*sopt
);
1058 extern void necp_inpcb_remove_cb(struct inpcb
*inp
);
1059 extern void necp_inpcb_dispose(struct inpcb
*inp
);
1061 extern u_int32_t
necp_socket_get_content_filter_control_unit(struct socket
*so
);
1063 extern bool necp_socket_should_use_flow_divert(struct inpcb
*inp
);
1064 extern u_int32_t
necp_socket_get_flow_divert_control_unit(struct inpcb
*inp
);
1066 extern bool necp_socket_should_rescope(struct inpcb
*inp
);
1067 extern u_int
necp_socket_get_rescope_if_index(struct inpcb
*inp
);
1068 extern u_int32_t
necp_socket_get_effective_mtu(struct inpcb
*inp
, u_int32_t current_mtu
);
1070 extern bool necp_socket_is_allowed_to_recv_on_interface(struct inpcb
*inp
, ifnet_t interface
);
1072 extern bool necp_socket_is_allowed_to_send_recv(struct inpcb
*inp
, ifnet_t interface
,
1073 necp_kernel_policy_id
*return_policy_id
,
1074 u_int32_t
*return_route_rule_id
,
1075 necp_kernel_policy_id
*return_skip_policy_id
);
1076 extern bool necp_socket_is_allowed_to_send_recv_v4(struct inpcb
*inp
, u_int16_t local_port
,
1077 u_int16_t remote_port
, struct in_addr
*local_addr
,
1078 struct in_addr
*remote_addr
, ifnet_t interface
,
1079 necp_kernel_policy_id
*return_policy_id
, u_int32_t
*return_route_rule_id
,
1080 necp_kernel_policy_id
*return_skip_policy_id
);
1081 extern bool necp_socket_is_allowed_to_send_recv_v6(struct inpcb
*inp
, u_int16_t local_port
,
1082 u_int16_t remote_port
, struct in6_addr
*local_addr
,
1083 struct in6_addr
*remote_addr
, ifnet_t interface
,
1084 necp_kernel_policy_id
*return_policy_id
, u_int32_t
*return_route_rule_id
,
1085 necp_kernel_policy_id
*return_skip_policy_id
);
1086 extern void necp_socket_update_qos_marking(struct inpcb
*inp
, struct rtentry
*route
, struct ifnet
*interface
, u_int32_t route_rule_id
);
1087 extern int necp_mark_packet_from_socket(struct mbuf
*packet
, struct inpcb
*inp
, necp_kernel_policy_id policy_id
,
1088 u_int32_t route_rule_id
, necp_kernel_policy_id skip_policy_id
);
1089 extern necp_kernel_policy_id
necp_get_policy_id_from_packet(struct mbuf
*packet
);
1090 extern necp_kernel_policy_id
necp_get_skip_policy_id_from_packet(struct mbuf
*packet
);
1091 extern bool necp_packet_should_skip_filters(struct mbuf
*packet
);
1092 extern u_int32_t
necp_get_last_interface_index_from_packet(struct mbuf
*packet
);
1093 extern u_int32_t
necp_get_route_rule_id_from_packet(struct mbuf
*packet
);
1094 extern int necp_get_app_uuid_from_packet(struct mbuf
*packet
,
1097 extern necp_kernel_policy_id
necp_socket_find_policy_match(struct inpcb
*inp
, struct sockaddr
*override_local_addr
,
1098 struct sockaddr
*override_remote_addr
, u_int32_t override_bound_interface
);
1099 extern necp_kernel_policy_id
necp_ip_output_find_policy_match(struct mbuf
*packet
, int flags
, struct ip_out_args
*ipoa
,
1101 necp_kernel_policy_result
*result
,
1102 necp_kernel_policy_result_parameter
*result_parameter
);
1103 extern necp_kernel_policy_id
necp_ip6_output_find_policy_match(struct mbuf
*packet
, int flags
, struct ip6_out_args
*ip6oa
,
1105 necp_kernel_policy_result
*result
,
1106 necp_kernel_policy_result_parameter
*result_parameter
);
1108 extern int necp_mark_packet_from_ip(struct mbuf
*packet
, necp_kernel_policy_id policy_id
);
1109 extern int necp_mark_packet_from_interface(struct mbuf
*packet
, ifnet_t interface
);
1111 extern ifnet_t
necp_get_ifnet_from_result_parameter(necp_kernel_policy_result_parameter
*result_parameter
);
1112 extern bool necp_packet_can_rebind_to_ifnet(struct mbuf
*packet
, struct ifnet
*interface
, struct route
*new_route
, int family
);
1114 extern bool necp_packet_is_allowed_over_interface(struct mbuf
*packet
, struct ifnet
*interface
);
1116 extern int necp_mark_packet_as_keepalive(struct mbuf
*packet
, bool is_keepalive
);
1117 extern bool necp_get_is_keepalive_from_packet(struct mbuf
*packet
);
1119 extern int necp_sign_resolver_answer(uuid_t client_id
, u_int8_t
*query
, u_int32_t query_length
,
1120 u_int8_t
*answer
, u_int32_t answer_length
,
1121 u_int8_t
*tag
, u_int32_t
*out_tag_length
);
1123 extern bool necp_validate_resolver_answer(uuid_t client_id
, u_int8_t
*query
, u_int32_t query_length
,
1124 u_int8_t
*answer
, u_int32_t answer_length
,
1125 u_int8_t
*tag
, u_int32_t tag_length
);
1127 extern void necp_update_all_clients(void); // Handle general re-evaluate event
1128 extern void necp_update_all_clients_immediately_if_needed(bool should_update_immediately
); // Handle general re-evaluate event
1130 extern void necp_force_update_client(uuid_t client_id
, uuid_t remove_netagent_uuid
, u_int32_t agent_generation
); // Cause a single client to get an update event
1132 extern bool necp_set_client_as_background(proc_t proc
, struct fileproc
*fp
, bool background
); // Set all clients for an fp as background or not
1134 struct necp_fd_data
;
1135 extern void necp_fd_memstatus(proc_t proc
, uint32_t status
, struct necp_fd_data
*client_fd
); // Purge memory of clients for the process
1136 extern void necp_fd_defunct(proc_t proc
, struct necp_fd_data
*client_fd
); // Set all clients for an process as defunct
1138 extern int necp_client_register_socket_flow(pid_t pid
, uuid_t client_id
, struct inpcb
*inp
);
1140 extern int necp_client_register_socket_listener(pid_t pid
, uuid_t client_id
, struct inpcb
*inp
);
1143 extern int necp_client_assert_bb_radio_manager(uuid_t client_id
, bool assert);
1145 extern int necp_client_assign_from_socket(pid_t pid
, uuid_t client_id
, struct inpcb
*inp
);
1147 extern int necp_assign_client_result(uuid_t netagent_uuid
, uuid_t client_id
,
1148 u_int8_t
*assigned_results
, size_t assigned_results_length
);
1149 struct skmem_obj_info
; // forward declaration
1150 extern int necp_stats_ctor(struct skmem_obj_info
*oi
, struct skmem_obj_info
*oim
, void *arg
, uint32_t skmflag
);
1151 extern int necp_stats_dtor(void *addr
, void *arg
);
1153 /* value to denote invalid flow advisory index */
1154 struct netagent_session
;
1156 necp_update_flow_protoctl_event(uuid_t netagent_uuid
, uuid_t client_id
,
1157 uint32_t protoctl_event_code
, uint32_t protoctl_event_val
,
1158 uint32_t protoctl_event_tcp_seq_num
);
1160 #define NECP_FLOWADV_IDX_INVALID UINT32_MAX
1161 extern void *necp_create_nexus_assign_message(uuid_t nexus_instance
, u_int32_t nexus_port
, void *key
, uint32_t key_length
,
1162 struct necp_client_endpoint
*local_endpoint
, struct necp_client_endpoint
*remote_endpoint
,
1163 struct ether_addr
*local_ether_addr
,
1164 u_int32_t flow_adv_index
, void *flow_stats
, size_t *message_length
);
1166 struct necp_client_nexus_parameters
{
1170 union necp_sockaddr_union local_addr
;
1171 union necp_sockaddr_union remote_addr
;
1172 u_int8_t ip_protocol
;
1173 u_int8_t transport_protocol
;
1174 u_int16_t ethertype
;
1175 u_int32_t traffic_class
;
1176 necp_policy_id policy_id
;
1177 unsigned is_listener
:1;
1178 unsigned is_interpose
:1;
1179 unsigned is_custom_ether
:1;
1180 unsigned allow_qos_marking
:1;
1181 unsigned override_address_selection
:1;
1182 unsigned use_stable_address
:1; // Used if override_address_selection is set
1185 struct necp_client_agent_parameters
{
1187 struct necp_client_nexus_parameters nexus_request
;
1188 u_int8_t close_token
[QUIC_STATELESS_RESET_TOKEN_SIZE
];
1192 #define NECP_CLIENT_CBACTION_NONVIABLE 1
1193 #define NECP_CLIENT_CBACTION_VIABLE 2
1194 #define NECP_CLIENT_CBACTION_INITIAL 3
1196 struct necp_client_add_flow_default
{
1198 uuid_t registration_id
;
1199 u_int16_t flags
; // NECP_CLIENT_FLOW_FLAGS_*
1200 u_int16_t stats_request_count
;
1201 struct necp_client_flow_stats stats_requests
[1];
1202 } __attribute__((__packed__
));
1204 typedef void (*necp_client_flow_cb
)(void *handle
, int action
, uint32_t interface_index
, uint32_t necp_flags
, bool *viable
);
1206 extern void necp_client_reap_caches(boolean_t purge
);
1209 #endif /* BSD_KERNEL_PRIVATE */
1212 #ifdef KERNEL_PRIVATE
1213 extern bool net_domain_contains_hostname(char *hostname_string
, char *domain_string
);
1214 #endif /* KERNEL_PRIVATE */
1219 extern int necp_match_policy(const uint8_t *parameters
, size_t parameters_size
, struct necp_aggregate_result
*returned_result
);
1221 extern int necp_open(int flags
);
1223 extern int necp_client_action(int necp_fd
, uint32_t action
, uuid_t client_id
,
1224 size_t client_id_len
, uint8_t *buffer
, size_t buffer_size
);
1226 extern int necp_session_open(int flags
);
1228 extern int necp_session_action(int necp_fd
, uint32_t action
,
1229 uint8_t *in_buffer
, size_t in_buffer_length
,
1230 uint8_t *out_buffer
, size_t out_buffer_length
);
1232 #endif /* !KERNEL */
1234 #endif /* PRIVATE */