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