xref: /xnu-11417.140.69/bsd/netinet/in_tclass.h (revision 43a90889846e00bfb5cf1d255cdc0a701a1e05a4)
1*43a90889SApple OSS Distributions /*
2*43a90889SApple OSS Distributions  * Copyright (c) 2015-2017 Apple Inc. All rights reserved.
3*43a90889SApple OSS Distributions  *
4*43a90889SApple OSS Distributions  * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
5*43a90889SApple OSS Distributions  *
6*43a90889SApple OSS Distributions  * This file contains Original Code and/or Modifications of Original Code
7*43a90889SApple OSS Distributions  * as defined in and that are subject to the Apple Public Source License
8*43a90889SApple OSS Distributions  * Version 2.0 (the 'License'). You may not use this file except in
9*43a90889SApple OSS Distributions  * compliance with the License. The rights granted to you under the License
10*43a90889SApple OSS Distributions  * may not be used to create, or enable the creation or redistribution of,
11*43a90889SApple OSS Distributions  * unlawful or unlicensed copies of an Apple operating system, or to
12*43a90889SApple OSS Distributions  * circumvent, violate, or enable the circumvention or violation of, any
13*43a90889SApple OSS Distributions  * terms of an Apple operating system software license agreement.
14*43a90889SApple OSS Distributions  *
15*43a90889SApple OSS Distributions  * Please obtain a copy of the License at
16*43a90889SApple OSS Distributions  * http://www.opensource.apple.com/apsl/ and read it before using this file.
17*43a90889SApple OSS Distributions  *
18*43a90889SApple OSS Distributions  * The Original Code and all software distributed under the License are
19*43a90889SApple OSS Distributions  * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20*43a90889SApple OSS Distributions  * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21*43a90889SApple OSS Distributions  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22*43a90889SApple OSS Distributions  * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23*43a90889SApple OSS Distributions  * Please see the License for the specific language governing rights and
24*43a90889SApple OSS Distributions  * limitations under the License.
25*43a90889SApple OSS Distributions  *
26*43a90889SApple OSS Distributions  * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
27*43a90889SApple OSS Distributions  */
28*43a90889SApple OSS Distributions 
29*43a90889SApple OSS Distributions #ifndef __NETINET_IN_TCLASS_H__
30*43a90889SApple OSS Distributions #define __NETINET_IN_TCLASS_H__
31*43a90889SApple OSS Distributions 
32*43a90889SApple OSS Distributions #ifdef PRIVATE
33*43a90889SApple OSS Distributions 
34*43a90889SApple OSS Distributions #include <sys/types.h>
35*43a90889SApple OSS Distributions #include <sys/socket.h>
36*43a90889SApple OSS Distributions #include <sys/socketvar.h>
37*43a90889SApple OSS Distributions #include <sys/mbuf.h>
38*43a90889SApple OSS Distributions #include <net/if.h>
39*43a90889SApple OSS Distributions #include <net/if_var.h>
40*43a90889SApple OSS Distributions 
41*43a90889SApple OSS Distributions #define SO_TCDBG_PID            0x01    /* Set/get traffic class policy for PID */
42*43a90889SApple OSS Distributions #define SO_TCDBG_PNAME          0x02    /* Set/get traffic class policy for processes of that name */
43*43a90889SApple OSS Distributions #define SO_TCDBG_PURGE          0x04    /* Purge entries for unused PIDs */
44*43a90889SApple OSS Distributions #define SO_TCDBG_FLUSH          0x08    /* Flush all entries */
45*43a90889SApple OSS Distributions #define SO_TCDBG_COUNT          0x10    /* Get count of entries */
46*43a90889SApple OSS Distributions #define SO_TCDBG_LIST           0x20    /* List entries */
47*43a90889SApple OSS Distributions #define SO_TCDBG_DELETE         0x40    /* Delete a process entry */
48*43a90889SApple OSS Distributions #define SO_TCDBG_TCFLUSH_PID    0x80    /* Flush traffic class for PID */
49*43a90889SApple OSS Distributions 
50*43a90889SApple OSS Distributions struct so_tcdbg {
51*43a90889SApple OSS Distributions 	u_int32_t       so_tcdbg_cmd;
52*43a90889SApple OSS Distributions 	int32_t         so_tcdbg_tclass;
53*43a90889SApple OSS Distributions 	int32_t         so_tcdbg_netsvctype;
54*43a90889SApple OSS Distributions 	uint8_t         so_tcdbg_ecn_val;  /* 1 is ECT(1) and 2 is ECT(0) */
55*43a90889SApple OSS Distributions 	u_int32_t       so_tcdbg_count;
56*43a90889SApple OSS Distributions 	pid_t           so_tcdbg_pid;
57*43a90889SApple OSS Distributions 	u_int32_t       so_tcbbg_qos_mode;
58*43a90889SApple OSS Distributions 	char            so_tcdbg_pname[(2 * MAXCOMLEN) + 1];
59*43a90889SApple OSS Distributions };
60*43a90889SApple OSS Distributions #define QOS_MODE_MARKING_POLICY_DEFAULT         0
61*43a90889SApple OSS Distributions #define QOS_MODE_MARKING_POLICY_ENABLE          1
62*43a90889SApple OSS Distributions #define QOS_MODE_MARKING_POLICY_DISABLE         2
63*43a90889SApple OSS Distributions 
64*43a90889SApple OSS Distributions #define NET_QOS_MARKING_POLICY_DEFAULT QOS_MODE_MARKING_POLICY_DEFAULT /* obsolete, to be removed */
65*43a90889SApple OSS Distributions #define NET_QOS_MARKING_POLICY_ENABLE QOS_MODE_MARKING_POLICY_ENABLE /* obsolete, to be removed */
66*43a90889SApple OSS Distributions #define NET_QOS_MARKING_POLICY_DISABLE QOS_MODE_MARKING_POLICY_DISABLE /* obsolete, to be removed */
67*43a90889SApple OSS Distributions 
68*43a90889SApple OSS Distributions struct net_qos_param {
69*43a90889SApple OSS Distributions 	u_int64_t nq_transfer_size;     /* transfer size in bytes */
70*43a90889SApple OSS Distributions 	u_int32_t nq_use_expensive:1,   /* allowed = 1 otherwise 0 */
71*43a90889SApple OSS Distributions 	    nq_uplink:1,                /* uplink = 1 otherwise 0 */
72*43a90889SApple OSS Distributions 	    nq_use_constrained:1;       /* allowed = 1 otherwise 0 */
73*43a90889SApple OSS Distributions 	u_int32_t nq_unused;            /* for future expansion */
74*43a90889SApple OSS Distributions };
75*43a90889SApple OSS Distributions 
76*43a90889SApple OSS Distributions #ifndef KERNEL
77*43a90889SApple OSS Distributions 
78*43a90889SApple OSS Distributions /*
79*43a90889SApple OSS Distributions  * Returns whether a large upload or download transfer should be marked as
80*43a90889SApple OSS Distributions  * BK service type for network activity. This is a system level
81*43a90889SApple OSS Distributions  * hint/suggestion to classify application traffic based on statistics
82*43a90889SApple OSS Distributions  * collected from the current network attachment
83*43a90889SApple OSS Distributions  *
84*43a90889SApple OSS Distributions  *	@param	param	transfer parameters
85*43a90889SApple OSS Distributions  *	@param	param_len parameter length
86*43a90889SApple OSS Distributions  *	@return	returns 1 for BK and 0 for default
87*43a90889SApple OSS Distributions  */
88*43a90889SApple OSS Distributions extern int net_qos_guideline(struct net_qos_param *param, size_t param_len);
89*43a90889SApple OSS Distributions 
90*43a90889SApple OSS Distributions #endif /* !KERNEL */
91*43a90889SApple OSS Distributions 
92*43a90889SApple OSS Distributions #ifdef BSD_KERNEL_PRIVATE
93*43a90889SApple OSS Distributions 
94*43a90889SApple OSS Distributions extern int net_qos_policy_restricted;
95*43a90889SApple OSS Distributions extern int net_qos_policy_wifi_enabled;
96*43a90889SApple OSS Distributions extern int net_qos_policy_capable_enabled;
97*43a90889SApple OSS Distributions 
98*43a90889SApple OSS Distributions extern void net_qos_map_init(void);
99*43a90889SApple OSS Distributions extern void net_qos_map_change(uint32_t mode);
100*43a90889SApple OSS Distributions extern errno_t set_packet_qos(struct mbuf *, struct ifnet *, boolean_t, int,
101*43a90889SApple OSS Distributions     int, u_int8_t *);
102*43a90889SApple OSS Distributions extern int so_get_netsvc_marking_level(struct socket *);
103*43a90889SApple OSS Distributions 
104*43a90889SApple OSS Distributions extern uint8_t fastlane_sc_to_dscp(uint32_t svc_class);
105*43a90889SApple OSS Distributions extern uint8_t rfc4594_sc_to_dscp(uint32_t svc_class);
106*43a90889SApple OSS Distributions extern uint8_t custom_sc_to_dscp(uint32_t svc_class);
107*43a90889SApple OSS Distributions 
108*43a90889SApple OSS Distributions extern mbuf_traffic_class_t rfc4594_dscp_to_tc(uint8_t dscp);
109*43a90889SApple OSS Distributions 
110*43a90889SApple OSS Distributions #endif /* BSD_KERNEL_PRIVATE */
111*43a90889SApple OSS Distributions 
112*43a90889SApple OSS Distributions #endif /* PRIVATE */
113*43a90889SApple OSS Distributions 
114*43a90889SApple OSS Distributions #endif /* __NETINET_IN_TCLASS_H__ */
115