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