blob: af3cc2f4e1ad00dff0e011a4e94e0905d085d0ca [file] [log] [blame]
Greg Kroah-Hartman6f52b162017-11-01 15:08:43 +01001/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#ifndef __LINUX_PKT_SCHED_H
3#define __LINUX_PKT_SCHED_H
4
Jaswinder Singh Rajputb8adfd32009-01-30 22:07:05 +05305#include <linux/types.h>
6
Linus Torvalds1da177e2005-04-16 15:20:36 -07007/* Logical priority bands not depending on specific packet scheduler.
8 Every scheduler will map them to real traffic classes, if it has
9 no more precise mechanism to classify packets.
10
11 These numbers have no special meaning, though their coincidence
12 with obsolete IPv6 values is not occasional :-). New IPv6 drafts
13 preferred full anarchy inspired by diffserv group.
14
15 Note: TC_PRIO_BESTEFFORT does not mean that it is the most unhappy
16 class, actually, as rule it will be handled with more care than
17 filler or even bulk.
18 */
19
20#define TC_PRIO_BESTEFFORT 0
21#define TC_PRIO_FILLER 1
22#define TC_PRIO_BULK 2
23#define TC_PRIO_INTERACTIVE_BULK 4
24#define TC_PRIO_INTERACTIVE 6
25#define TC_PRIO_CONTROL 7
26
27#define TC_PRIO_MAX 15
28
29/* Generic queue statistics, available for all the elements.
30 Particular schedulers may have also their private records.
31 */
32
Eric Dumazetd94d9fe2009-11-04 09:50:58 -080033struct tc_stats {
stephen hemminger5eccdf5e2011-11-21 06:53:46 +000034 __u64 bytes; /* Number of enqueued bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 __u32 packets; /* Number of enqueued packets */
36 __u32 drops; /* Packets dropped because of lack of resources */
37 __u32 overlimits; /* Number of throttle events when this
38 * flow goes out of allocated bandwidth */
39 __u32 bps; /* Current flow byte rate */
40 __u32 pps; /* Current flow packet rate */
41 __u32 qlen;
42 __u32 backlog;
43};
44
Eric Dumazetd94d9fe2009-11-04 09:50:58 -080045struct tc_estimator {
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 signed char interval;
47 unsigned char ewma_log;
48};
49
50/* "Handles"
51 ---------
52
53 All the traffic control objects have 32bit identifiers, or "handles".
54
55 They can be considered as opaque numbers from user API viewpoint,
56 but actually they always consist of two fields: major and
57 minor numbers, which are interpreted by kernel specially,
58 that may be used by applications, though not recommended.
59
60 F.e. qdisc handles always have minor number equal to zero,
61 classes (or flows) have major equal to parent qdisc major, and
62 minor uniquely identifying class inside qdisc.
63
64 Macros to manipulate handles:
65 */
66
67#define TC_H_MAJ_MASK (0xFFFF0000U)
68#define TC_H_MIN_MASK (0x0000FFFFU)
69#define TC_H_MAJ(h) ((h)&TC_H_MAJ_MASK)
70#define TC_H_MIN(h) ((h)&TC_H_MIN_MASK)
71#define TC_H_MAKE(maj,min) (((maj)&TC_H_MAJ_MASK)|((min)&TC_H_MIN_MASK))
72
73#define TC_H_UNSPEC (0U)
74#define TC_H_ROOT (0xFFFFFFFFU)
75#define TC_H_INGRESS (0xFFFFFFF1U)
Daniel Borkmann1f211a12016-01-07 22:29:47 +010076#define TC_H_CLSACT TC_H_INGRESS
77
Alexander Duyck32302902017-10-12 11:38:45 -070078#define TC_H_MIN_PRIORITY 0xFFE0U
Daniel Borkmann1f211a12016-01-07 22:29:47 +010079#define TC_H_MIN_INGRESS 0xFFF2U
80#define TC_H_MIN_EGRESS 0xFFF3U
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Jesper Dangaard Brouer8a8e3d82013-08-14 23:47:11 +020082/* Need to corrospond to iproute2 tc/tc_core.h "enum link_layer" */
83enum tc_link_layer {
84 TC_LINKLAYER_UNAWARE, /* Indicate unaware old iproute2 util */
85 TC_LINKLAYER_ETHERNET,
86 TC_LINKLAYER_ATM,
87};
88#define TC_LINKLAYER_MASK 0x0F /* limit use to lower 4 bits */
89
Eric Dumazetd94d9fe2009-11-04 09:50:58 -080090struct tc_ratespec {
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 unsigned char cell_log;
Jesper Dangaard Brouer8a8e3d82013-08-14 23:47:11 +020092 __u8 linklayer; /* lower 4 bits */
Jesper Dangaard Brouere08b0992007-09-12 16:36:28 +020093 unsigned short overhead;
94 short cell_align;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 unsigned short mpu;
96 __u32 rate;
97};
98
Patrick McHardy5feb5e12008-01-23 20:35:19 -080099#define TC_RTAB_SIZE 1024
100
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700101struct tc_sizespec {
102 unsigned char cell_log;
103 unsigned char size_log;
104 short cell_align;
105 int overhead;
106 unsigned int linklayer;
107 unsigned int mpu;
108 unsigned int mtu;
109 unsigned int tsize;
110};
111
112enum {
113 TCA_STAB_UNSPEC,
114 TCA_STAB_BASE,
115 TCA_STAB_DATA,
116 __TCA_STAB_MAX
117};
118
119#define TCA_STAB_MAX (__TCA_STAB_MAX - 1)
120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121/* FIFO section */
122
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800123struct tc_fifo_qopt {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 __u32 limit; /* Queue length: bytes for bfifo, packets for pfifo */
125};
126
127/* PRIO section */
128
129#define TCQ_PRIO_BANDS 16
Thomas Grafbdc450a2005-11-05 21:14:28 +0100130#define TCQ_MIN_PRIO_BANDS 2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800132struct tc_prio_qopt {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 int bands; /* Number of bands */
134 __u8 priomap[TC_PRIO_MAX+1]; /* Map: logical priority -> PRIO band */
135};
136
Alexander Duyck92651942008-09-12 16:29:34 -0700137/* MULTIQ section */
138
139struct tc_multiq_qopt {
140 __u16 bands; /* Number of bands */
141 __u16 max_bands; /* Maximum number of queues */
142};
143
Shriram Rajagopalanc3059be2012-02-05 13:51:32 +0000144/* PLUG section */
145
146#define TCQ_PLUG_BUFFER 0
147#define TCQ_PLUG_RELEASE_ONE 1
148#define TCQ_PLUG_RELEASE_INDEFINITE 2
149#define TCQ_PLUG_LIMIT 3
150
151struct tc_plug_qopt {
152 /* TCQ_PLUG_BUFFER: Inset a plug into the queue and
153 * buffer any incoming packets
154 * TCQ_PLUG_RELEASE_ONE: Dequeue packets from queue head
155 * to beginning of the next plug.
156 * TCQ_PLUG_RELEASE_INDEFINITE: Dequeue all packets from queue.
157 * Stop buffering packets until the next TCQ_PLUG_BUFFER
158 * command is received (just act as a pass-thru queue).
159 * TCQ_PLUG_LIMIT: Increase/decrease queue size
160 */
161 int action;
162 __u32 limit;
163};
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165/* TBF section */
166
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800167struct tc_tbf_qopt {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 struct tc_ratespec rate;
169 struct tc_ratespec peakrate;
170 __u32 limit;
171 __u32 buffer;
172 __u32 mtu;
173};
174
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800175enum {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 TCA_TBF_UNSPEC,
177 TCA_TBF_PARMS,
178 TCA_TBF_RTAB,
179 TCA_TBF_PTAB,
Yang Yinglianga33c4a22013-11-08 10:23:34 +0800180 TCA_TBF_RATE64,
181 TCA_TBF_PRATE64,
Yang Yingliang2e04ad42013-12-20 09:24:47 +0800182 TCA_TBF_BURST,
183 TCA_TBF_PBURST,
Nicolas Dichtel2a51c1e2016-04-25 10:25:15 +0200184 TCA_TBF_PAD,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 __TCA_TBF_MAX,
186};
187
188#define TCA_TBF_MAX (__TCA_TBF_MAX - 1)
189
190
191/* TEQL section */
192
193/* TEQL does not require any parameters */
194
195/* SFQ section */
196
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800197struct tc_sfq_qopt {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 unsigned quantum; /* Bytes per round allocated to flow */
199 int perturb_period; /* Period of hash perturbation */
200 __u32 limit; /* Maximal packets in queue */
201 unsigned divisor; /* Hash divisor */
202 unsigned flows; /* Maximal number of flows */
203};
204
Eric Dumazetddecf0f2012-01-06 06:31:44 +0000205struct tc_sfqred_stats {
206 __u32 prob_drop; /* Early drops, below max threshold */
207 __u32 forced_drop; /* Early drops, after max threshold */
208 __u32 prob_mark; /* Marked packets, below max threshold */
209 __u32 forced_mark; /* Marked packets, after max threshold */
210 __u32 prob_mark_head; /* Marked packets, below max threshold */
211 __u32 forced_mark_head;/* Marked packets, after max threshold */
212};
213
Eric Dumazet18cb8092012-01-04 14:18:38 +0000214struct tc_sfq_qopt_v1 {
215 struct tc_sfq_qopt v0;
216 unsigned int depth; /* max number of packets per flow */
217 unsigned int headdrop;
Eric Dumazetddecf0f2012-01-06 06:31:44 +0000218/* SFQRED parameters */
219 __u32 limit; /* HARD maximal flow queue length (bytes) */
220 __u32 qth_min; /* Min average length threshold (bytes) */
221 __u32 qth_max; /* Max average length threshold (bytes) */
222 unsigned char Wlog; /* log(W) */
223 unsigned char Plog; /* log(P_max/(qth_max-qth_min)) */
224 unsigned char Scell_log; /* cell size for idle damping */
225 unsigned char flags;
226 __u32 max_P; /* probability, high resolution */
227/* SFQRED stats */
228 struct tc_sfqred_stats stats;
Eric Dumazet18cb8092012-01-04 14:18:38 +0000229};
230
231
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800232struct tc_sfq_xstats {
Patrick McHardy94de78d2008-01-31 18:37:16 -0800233 __s32 allot;
234};
235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236/* RED section */
237
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800238enum {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 TCA_RED_UNSPEC,
240 TCA_RED_PARMS,
241 TCA_RED_STAB,
Eric Dumazet8af2a212011-12-08 06:06:03 +0000242 TCA_RED_MAX_P,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 __TCA_RED_MAX,
244};
245
246#define TCA_RED_MAX (__TCA_RED_MAX - 1)
247
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800248struct tc_red_qopt {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 __u32 limit; /* HARD maximal queue length (bytes) */
250 __u32 qth_min; /* Min average length threshold (bytes) */
251 __u32 qth_max; /* Max average length threshold (bytes) */
252 unsigned char Wlog; /* log(W) */
253 unsigned char Plog; /* log(P_max/(qth_max-qth_min)) */
254 unsigned char Scell_log; /* cell size for idle damping */
255 unsigned char flags;
Eric Dumazet8af2a212011-12-08 06:06:03 +0000256#define TC_RED_ECN 1
257#define TC_RED_HARDDROP 2
258#define TC_RED_ADAPTATIVE 4
Nogah Frankel602f3ba2017-11-06 07:23:41 +0100259#define TC_RED_OFFLOADED 8
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260};
261
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800262struct tc_red_xstats {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 __u32 early; /* Early drops */
264 __u32 pdrop; /* Drops due to queue limits */
265 __u32 other; /* Drops due to drop() calls */
266 __u32 marked; /* Marked packets */
267};
268
269/* GRED section */
270
271#define MAX_DPs 16
272
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800273enum {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 TCA_GRED_UNSPEC,
275 TCA_GRED_PARMS,
276 TCA_GRED_STAB,
277 TCA_GRED_DPS,
Eric Dumazeta73ed262011-12-09 02:46:45 +0000278 TCA_GRED_MAX_P,
David Warda3eb95f2015-05-09 22:01:46 -0400279 TCA_GRED_LIMIT,
280 __TCA_GRED_MAX,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281};
282
283#define TCA_GRED_MAX (__TCA_GRED_MAX - 1)
284
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800285struct tc_gred_qopt {
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100286 __u32 limit; /* HARD maximal queue length (bytes) */
287 __u32 qth_min; /* Min average length threshold (bytes) */
288 __u32 qth_max; /* Max average length threshold (bytes) */
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300289 __u32 DP; /* up to 2^32 DPs */
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100290 __u32 backlog;
291 __u32 qave;
292 __u32 forced;
293 __u32 early;
294 __u32 other;
295 __u32 pdrop;
296 __u8 Wlog; /* log(W) */
297 __u8 Plog; /* log(P_max/(qth_max-qth_min)) */
298 __u8 Scell_log; /* cell size for idle damping */
299 __u8 prio; /* prio of this VQ */
300 __u32 packets;
301 __u32 bytesin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302};
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304/* gred setup */
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800305struct tc_gred_sopt {
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100306 __u32 DPs;
307 __u32 def_DP;
308 __u8 grio;
Thomas Grafb38c7ee2005-11-05 21:14:27 +0100309 __u8 flags;
310 __u16 pad1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311};
312
stephen hemminger45e14432011-02-02 15:21:10 +0000313/* CHOKe section */
314
315enum {
316 TCA_CHOKE_UNSPEC,
317 TCA_CHOKE_PARMS,
318 TCA_CHOKE_STAB,
Eric Dumazeta73ed262011-12-09 02:46:45 +0000319 TCA_CHOKE_MAX_P,
stephen hemminger45e14432011-02-02 15:21:10 +0000320 __TCA_CHOKE_MAX,
321};
322
323#define TCA_CHOKE_MAX (__TCA_CHOKE_MAX - 1)
324
325struct tc_choke_qopt {
326 __u32 limit; /* Hard queue length (packets) */
327 __u32 qth_min; /* Min average threshold (packets) */
328 __u32 qth_max; /* Max average threshold (packets) */
329 unsigned char Wlog; /* log(W) */
330 unsigned char Plog; /* log(P_max/(qth_max-qth_min)) */
331 unsigned char Scell_log; /* cell size for idle damping */
332 unsigned char flags; /* see RED flags */
333};
334
335struct tc_choke_xstats {
336 __u32 early; /* Early drops */
337 __u32 pdrop; /* Drops due to queue limits */
338 __u32 other; /* Drops due to drop() calls */
339 __u32 marked; /* Marked packets */
340 __u32 matched; /* Drops due to flow match */
341};
342
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343/* HTB section */
344#define TC_HTB_NUMPRIO 8
345#define TC_HTB_MAXDEPTH 8
346#define TC_HTB_PROTOVER 3 /* the same as HTB and TC's major */
347
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800348struct tc_htb_opt {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 struct tc_ratespec rate;
350 struct tc_ratespec ceil;
351 __u32 buffer;
352 __u32 cbuffer;
353 __u32 quantum;
354 __u32 level; /* out only */
355 __u32 prio;
356};
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800357struct tc_htb_glob {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 __u32 version; /* to match HTB/TC */
359 __u32 rate2quantum; /* bps->quantum divisor */
360 __u32 defcls; /* default class number */
361 __u32 debug; /* debug flags */
362
363 /* stats */
stephen hemminger5eccdf5e2011-11-21 06:53:46 +0000364 __u32 direct_pkts; /* count of non shaped packets */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365};
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800366enum {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 TCA_HTB_UNSPEC,
368 TCA_HTB_PARMS,
369 TCA_HTB_INIT,
370 TCA_HTB_CTAB,
371 TCA_HTB_RTAB,
Eric Dumazet6906f4e2013-03-06 06:49:21 +0000372 TCA_HTB_DIRECT_QLEN,
Eric Dumazetdf62cdf2013-09-19 09:10:20 -0700373 TCA_HTB_RATE64,
374 TCA_HTB_CEIL64,
Nicolas Dichtel2a51c1e2016-04-25 10:25:15 +0200375 TCA_HTB_PAD,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 __TCA_HTB_MAX,
377};
378
379#define TCA_HTB_MAX (__TCA_HTB_MAX - 1)
380
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800381struct tc_htb_xstats {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 __u32 lends;
383 __u32 borrows;
384 __u32 giants; /* too big packets (rate will not be accurate) */
385 __u32 tokens;
386 __u32 ctokens;
387};
388
389/* HFSC section */
390
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800391struct tc_hfsc_qopt {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 __u16 defcls; /* default class */
393};
394
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800395struct tc_service_curve {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 __u32 m1; /* slope of the first segment in bps */
397 __u32 d; /* x-projection of the first segment in us */
398 __u32 m2; /* slope of the second segment in bps */
399};
400
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800401struct tc_hfsc_stats {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 __u64 work; /* total work done */
403 __u64 rtwork; /* work done by real-time criteria */
404 __u32 period; /* current period */
405 __u32 level; /* class level in hierarchy */
406};
407
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800408enum {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 TCA_HFSC_UNSPEC,
410 TCA_HFSC_RSC,
411 TCA_HFSC_FSC,
412 TCA_HFSC_USC,
413 __TCA_HFSC_MAX,
414};
415
416#define TCA_HFSC_MAX (__TCA_HFSC_MAX - 1)
417
418
419/* CBQ section */
420
421#define TC_CBQ_MAXPRIO 8
422#define TC_CBQ_MAXLEVEL 8
423#define TC_CBQ_DEF_EWMA 5
424
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800425struct tc_cbq_lssopt {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 unsigned char change;
427 unsigned char flags;
428#define TCF_CBQ_LSS_BOUNDED 1
429#define TCF_CBQ_LSS_ISOLATED 2
430 unsigned char ewma_log;
431 unsigned char level;
432#define TCF_CBQ_LSS_FLAGS 1
433#define TCF_CBQ_LSS_EWMA 2
434#define TCF_CBQ_LSS_MAXIDLE 4
435#define TCF_CBQ_LSS_MINIDLE 8
436#define TCF_CBQ_LSS_OFFTIME 0x10
437#define TCF_CBQ_LSS_AVPKT 0x20
438 __u32 maxidle;
439 __u32 minidle;
440 __u32 offtime;
441 __u32 avpkt;
442};
443
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800444struct tc_cbq_wrropt {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 unsigned char flags;
446 unsigned char priority;
447 unsigned char cpriority;
448 unsigned char __reserved;
449 __u32 allot;
450 __u32 weight;
451};
452
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800453struct tc_cbq_ovl {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 unsigned char strategy;
455#define TC_CBQ_OVL_CLASSIC 0
456#define TC_CBQ_OVL_DELAY 1
457#define TC_CBQ_OVL_LOWPRIO 2
458#define TC_CBQ_OVL_DROP 3
459#define TC_CBQ_OVL_RCLASSIC 4
460 unsigned char priority2;
Patrick McHardy8a470772005-06-28 12:56:45 -0700461 __u16 pad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 __u32 penalty;
463};
464
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800465struct tc_cbq_police {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 unsigned char police;
467 unsigned char __res1;
468 unsigned short __res2;
469};
470
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800471struct tc_cbq_fopt {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 __u32 split;
473 __u32 defmap;
474 __u32 defchange;
475};
476
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800477struct tc_cbq_xstats {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 __u32 borrows;
479 __u32 overactions;
480 __s32 avgidle;
481 __s32 undertime;
482};
483
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800484enum {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 TCA_CBQ_UNSPEC,
486 TCA_CBQ_LSSOPT,
487 TCA_CBQ_WRROPT,
488 TCA_CBQ_FOPT,
489 TCA_CBQ_OVL_STRATEGY,
490 TCA_CBQ_RATE,
491 TCA_CBQ_RTAB,
492 TCA_CBQ_POLICE,
493 __TCA_CBQ_MAX,
494};
495
496#define TCA_CBQ_MAX (__TCA_CBQ_MAX - 1)
497
498/* dsmark section */
499
500enum {
501 TCA_DSMARK_UNSPEC,
502 TCA_DSMARK_INDICES,
503 TCA_DSMARK_DEFAULT_INDEX,
504 TCA_DSMARK_SET_TC_INDEX,
505 TCA_DSMARK_MASK,
506 TCA_DSMARK_VALUE,
507 __TCA_DSMARK_MAX,
508};
509
510#define TCA_DSMARK_MAX (__TCA_DSMARK_MAX - 1)
511
512/* ATM section */
513
514enum {
515 TCA_ATM_UNSPEC,
516 TCA_ATM_FD, /* file/socket descriptor */
517 TCA_ATM_PTR, /* pointer to descriptor - later */
518 TCA_ATM_HDR, /* LL header */
519 TCA_ATM_EXCESS, /* excess traffic class (0 for CLP) */
520 TCA_ATM_ADDR, /* PVC address (for output only) */
521 TCA_ATM_STATE, /* VC state (ATM_VS_*; for output only) */
522 __TCA_ATM_MAX,
523};
524
525#define TCA_ATM_MAX (__TCA_ATM_MAX - 1)
526
527/* Network emulator */
528
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800529enum {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 TCA_NETEM_UNSPEC,
531 TCA_NETEM_CORR,
532 TCA_NETEM_DELAY_DIST,
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700533 TCA_NETEM_REORDER,
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800534 TCA_NETEM_CORRUPT,
stephen hemminger661b7972011-02-23 13:04:21 +0000535 TCA_NETEM_LOSS,
Hagen Paul Pfeifer7bc0f282011-11-30 12:20:26 +0000536 TCA_NETEM_RATE,
Eric Dumazete4ae0042012-04-30 23:11:05 +0000537 TCA_NETEM_ECN,
Yang Yingliang6a031f62013-12-25 17:35:15 +0800538 TCA_NETEM_RATE64,
Nicolas Dichtel2a51c1e2016-04-25 10:25:15 +0200539 TCA_NETEM_PAD,
Dave Taht99803172017-11-08 15:12:27 -0800540 TCA_NETEM_LATENCY64,
541 TCA_NETEM_JITTER64,
Dave Taht836af832017-11-08 15:12:28 -0800542 TCA_NETEM_SLOT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 __TCA_NETEM_MAX,
544};
545
546#define TCA_NETEM_MAX (__TCA_NETEM_MAX - 1)
547
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800548struct tc_netem_qopt {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 __u32 latency; /* added delay (us) */
550 __u32 limit; /* fifo limit (packets) */
551 __u32 loss; /* random packet loss (0=none ~0=100%) */
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700552 __u32 gap; /* re-ordering gap (0 for none) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 __u32 duplicate; /* random packet dup (0=none ~0=100%) */
554 __u32 jitter; /* random jitter in latency (us) */
555};
556
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800557struct tc_netem_corr {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 __u32 delay_corr; /* delay correlation */
559 __u32 loss_corr; /* packet loss correlation */
560 __u32 dup_corr; /* duplicate correlation */
561};
562
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800563struct tc_netem_reorder {
Stephen Hemminger0dca51d2005-05-26 12:55:48 -0700564 __u32 probability;
565 __u32 correlation;
566};
567
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800568struct tc_netem_corrupt {
Stephen Hemmingerc865e5d2005-12-21 19:03:44 -0800569 __u32 probability;
570 __u32 correlation;
571};
572
Hagen Paul Pfeifer7bc0f282011-11-30 12:20:26 +0000573struct tc_netem_rate {
574 __u32 rate; /* byte/s */
Hagen Paul Pfeifer90b41a12011-12-12 14:30:00 +0000575 __s32 packet_overhead;
576 __u32 cell_size;
577 __s32 cell_overhead;
Hagen Paul Pfeifer7bc0f282011-11-30 12:20:26 +0000578};
579
Dave Taht836af832017-11-08 15:12:28 -0800580struct tc_netem_slot {
581 __s64 min_delay; /* nsec */
582 __s64 max_delay;
583 __s32 max_packets;
584 __s32 max_bytes;
585};
586
stephen hemminger661b7972011-02-23 13:04:21 +0000587enum {
588 NETEM_LOSS_UNSPEC,
589 NETEM_LOSS_GI, /* General Intuitive - 4 state model */
590 NETEM_LOSS_GE, /* Gilbert Elliot models */
591 __NETEM_LOSS_MAX
592};
593#define NETEM_LOSS_MAX (__NETEM_LOSS_MAX - 1)
594
stephen hemminger5eccdf5e2011-11-21 06:53:46 +0000595/* State transition probabilities for 4 state model */
stephen hemminger661b7972011-02-23 13:04:21 +0000596struct tc_netem_gimodel {
597 __u32 p13;
598 __u32 p31;
599 __u32 p32;
600 __u32 p14;
601 __u32 p23;
602};
603
604/* Gilbert-Elliot models */
605struct tc_netem_gemodel {
606 __u32 p;
607 __u32 r;
608 __u32 h;
609 __u32 k1;
610};
611
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612#define NETEM_DIST_SCALE 8192
stephen hemmingerdf173bd2011-02-23 13:04:19 +0000613#define NETEM_DIST_MAX 16384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Patrick McHardy13d2a1d2008-11-20 04:10:00 -0800615/* DRR */
616
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800617enum {
Patrick McHardy13d2a1d2008-11-20 04:10:00 -0800618 TCA_DRR_UNSPEC,
619 TCA_DRR_QUANTUM,
620 __TCA_DRR_MAX
621};
622
623#define TCA_DRR_MAX (__TCA_DRR_MAX - 1)
624
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800625struct tc_drr_stats {
Chuck Ebberte672f7d2009-02-10 17:18:17 -0800626 __u32 deficit;
Patrick McHardy13d2a1d2008-11-20 04:10:00 -0800627};
628
John Fastabendb8970f02011-01-17 08:06:09 +0000629/* MQPRIO */
630#define TC_QOPT_BITMASK 15
631#define TC_QOPT_MAX_QUEUE 16
632
Alexander Duyck2026fec2017-03-15 10:39:18 -0700633enum {
634 TC_MQPRIO_HW_OFFLOAD_NONE, /* no offload requested */
635 TC_MQPRIO_HW_OFFLOAD_TCS, /* offload TCs, no queue counts */
636 __TC_MQPRIO_HW_OFFLOAD_MAX
637};
638
639#define TC_MQPRIO_HW_OFFLOAD_MAX (__TC_MQPRIO_HW_OFFLOAD_MAX - 1)
640
Amritha Nambiar4e8b86c2017-09-07 04:00:06 -0700641enum {
642 TC_MQPRIO_MODE_DCB,
643 TC_MQPRIO_MODE_CHANNEL,
644 __TC_MQPRIO_MODE_MAX
645};
646
647#define __TC_MQPRIO_MODE_MAX (__TC_MQPRIO_MODE_MAX - 1)
648
649enum {
650 TC_MQPRIO_SHAPER_DCB,
651 TC_MQPRIO_SHAPER_BW_RATE, /* Add new shapers below */
652 __TC_MQPRIO_SHAPER_MAX
653};
654
655#define __TC_MQPRIO_SHAPER_MAX (__TC_MQPRIO_SHAPER_MAX - 1)
656
John Fastabendb8970f02011-01-17 08:06:09 +0000657struct tc_mqprio_qopt {
658 __u8 num_tc;
659 __u8 prio_tc_map[TC_QOPT_BITMASK + 1];
660 __u8 hw;
661 __u16 count[TC_QOPT_MAX_QUEUE];
662 __u16 offset[TC_QOPT_MAX_QUEUE];
663};
664
Amritha Nambiar4e8b86c2017-09-07 04:00:06 -0700665#define TC_MQPRIO_F_MODE 0x1
666#define TC_MQPRIO_F_SHAPER 0x2
667#define TC_MQPRIO_F_MIN_RATE 0x4
668#define TC_MQPRIO_F_MAX_RATE 0x8
669
670enum {
671 TCA_MQPRIO_UNSPEC,
672 TCA_MQPRIO_MODE,
673 TCA_MQPRIO_SHAPER,
674 TCA_MQPRIO_MIN_RATE64,
675 TCA_MQPRIO_MAX_RATE64,
676 __TCA_MQPRIO_MAX,
677};
678
679#define TCA_MQPRIO_MAX (__TCA_MQPRIO_MAX - 1)
680
Eric Dumazete13e02a2011-02-23 10:56:17 +0000681/* SFB */
682
683enum {
684 TCA_SFB_UNSPEC,
685 TCA_SFB_PARMS,
686 __TCA_SFB_MAX,
687};
688
689#define TCA_SFB_MAX (__TCA_SFB_MAX - 1)
690
691/*
692 * Note: increment, decrement are Q0.16 fixed-point values.
693 */
694struct tc_sfb_qopt {
695 __u32 rehash_interval; /* delay between hash move, in ms */
696 __u32 warmup_time; /* double buffering warmup time in ms (warmup_time < rehash_interval) */
697 __u32 max; /* max len of qlen_min */
698 __u32 bin_size; /* maximum queue length per bin */
699 __u32 increment; /* probability increment, (d1 in Blue) */
700 __u32 decrement; /* probability decrement, (d2 in Blue) */
701 __u32 limit; /* max SFB queue length */
702 __u32 penalty_rate; /* inelastic flows are rate limited to 'rate' pps */
703 __u32 penalty_burst;
704};
705
706struct tc_sfb_xstats {
707 __u32 earlydrop;
708 __u32 penaltydrop;
709 __u32 bucketdrop;
710 __u32 queuedrop;
711 __u32 childdrop; /* drops in child qdisc */
712 __u32 marked;
713 __u32 maxqlen;
714 __u32 maxprob;
715 __u32 avgprob;
716};
717
718#define SFB_MAX_PROB 0xFFFF
719
stephen hemminger0545a302011-04-04 05:30:58 +0000720/* QFQ */
721enum {
722 TCA_QFQ_UNSPEC,
723 TCA_QFQ_WEIGHT,
724 TCA_QFQ_LMAX,
725 __TCA_QFQ_MAX
726};
727
728#define TCA_QFQ_MAX (__TCA_QFQ_MAX - 1)
729
730struct tc_qfq_stats {
731 __u32 weight;
732 __u32 lmax;
733};
734
Eric Dumazet76e3cc12012-05-10 07:51:25 +0000735/* CODEL */
736
737enum {
738 TCA_CODEL_UNSPEC,
739 TCA_CODEL_TARGET,
740 TCA_CODEL_LIMIT,
741 TCA_CODEL_INTERVAL,
742 TCA_CODEL_ECN,
Eric Dumazet80ba92f2015-05-08 15:05:12 -0700743 TCA_CODEL_CE_THRESHOLD,
Eric Dumazet76e3cc12012-05-10 07:51:25 +0000744 __TCA_CODEL_MAX
745};
746
747#define TCA_CODEL_MAX (__TCA_CODEL_MAX - 1)
748
749struct tc_codel_xstats {
750 __u32 maxpacket; /* largest packet we've seen so far */
751 __u32 count; /* how many drops we've done since the last time we
752 * entered dropping state
753 */
754 __u32 lastcount; /* count at entry to dropping state */
755 __u32 ldelay; /* in-queue delay seen by most recently dequeued packet */
756 __s32 drop_next; /* time to drop next packet */
757 __u32 drop_overlimit; /* number of time max qdisc packet limit was hit */
758 __u32 ecn_mark; /* number of packets we ECN marked instead of dropped */
759 __u32 dropping; /* are we in dropping state ? */
Eric Dumazet80ba92f2015-05-08 15:05:12 -0700760 __u32 ce_mark; /* number of CE marked packets because of ce_threshold */
Eric Dumazet76e3cc12012-05-10 07:51:25 +0000761};
762
Eric Dumazet4b549a22012-05-11 09:30:50 +0000763/* FQ_CODEL */
764
765enum {
766 TCA_FQ_CODEL_UNSPEC,
767 TCA_FQ_CODEL_TARGET,
768 TCA_FQ_CODEL_LIMIT,
769 TCA_FQ_CODEL_INTERVAL,
770 TCA_FQ_CODEL_ECN,
771 TCA_FQ_CODEL_FLOWS,
772 TCA_FQ_CODEL_QUANTUM,
Eric Dumazet80ba92f2015-05-08 15:05:12 -0700773 TCA_FQ_CODEL_CE_THRESHOLD,
Eric Dumazet9d185622016-05-01 16:47:26 -0700774 TCA_FQ_CODEL_DROP_BATCH_SIZE,
Eric Dumazet95b58432016-05-06 08:55:12 -0700775 TCA_FQ_CODEL_MEMORY_LIMIT,
Eric Dumazet4b549a22012-05-11 09:30:50 +0000776 __TCA_FQ_CODEL_MAX
777};
778
779#define TCA_FQ_CODEL_MAX (__TCA_FQ_CODEL_MAX - 1)
780
781enum {
782 TCA_FQ_CODEL_XSTATS_QDISC,
783 TCA_FQ_CODEL_XSTATS_CLASS,
784};
785
786struct tc_fq_codel_qd_stats {
787 __u32 maxpacket; /* largest packet we've seen so far */
788 __u32 drop_overlimit; /* number of time max qdisc
789 * packet limit was hit
790 */
791 __u32 ecn_mark; /* number of packets we ECN marked
792 * instead of being dropped
793 */
794 __u32 new_flow_count; /* number of time packets
795 * created a 'new flow'
796 */
797 __u32 new_flows_len; /* count of flows in new list */
798 __u32 old_flows_len; /* count of flows in old list */
Eric Dumazet80ba92f2015-05-08 15:05:12 -0700799 __u32 ce_mark; /* packets above ce_threshold */
Eric Dumazet95b58432016-05-06 08:55:12 -0700800 __u32 memory_usage; /* in bytes */
801 __u32 drop_overmemory;
Eric Dumazet4b549a22012-05-11 09:30:50 +0000802};
803
804struct tc_fq_codel_cl_stats {
805 __s32 deficit;
806 __u32 ldelay; /* in-queue delay seen by most recently
807 * dequeued packet
808 */
809 __u32 count;
810 __u32 lastcount;
811 __u32 dropping;
812 __s32 drop_next;
813};
814
815struct tc_fq_codel_xstats {
816 __u32 type;
817 union {
818 struct tc_fq_codel_qd_stats qdisc_stats;
819 struct tc_fq_codel_cl_stats class_stats;
820 };
821};
822
Eric Dumazetafe4fd02013-08-29 15:49:55 -0700823/* FQ */
824
825enum {
826 TCA_FQ_UNSPEC,
827
828 TCA_FQ_PLIMIT, /* limit of total number of packets in queue */
829
830 TCA_FQ_FLOW_PLIMIT, /* limit of packets per flow */
831
832 TCA_FQ_QUANTUM, /* RR quantum */
833
834 TCA_FQ_INITIAL_QUANTUM, /* RR quantum for new flow */
835
836 TCA_FQ_RATE_ENABLE, /* enable/disable rate limiting */
837
Eric Dumazet65c51892013-11-15 08:57:26 -0800838 TCA_FQ_FLOW_DEFAULT_RATE,/* obsolete, do not use */
Eric Dumazetafe4fd02013-08-29 15:49:55 -0700839
840 TCA_FQ_FLOW_MAX_RATE, /* per flow max rate */
841
842 TCA_FQ_BUCKETS_LOG, /* log2(number of buckets) */
Eric Dumazetf52ed892013-11-15 08:58:14 -0800843
844 TCA_FQ_FLOW_REFILL_DELAY, /* flow credit refill delay in usec */
845
Eric Dumazet06eb3952015-02-04 21:30:40 -0800846 TCA_FQ_ORPHAN_MASK, /* mask applied to orphaned skb hashes */
847
Eric Dumazet77879142016-09-19 23:39:11 -0400848 TCA_FQ_LOW_RATE_THRESHOLD, /* per packet delay under this rate */
849
Eric Dumazetafe4fd02013-08-29 15:49:55 -0700850 __TCA_FQ_MAX
851};
852
853#define TCA_FQ_MAX (__TCA_FQ_MAX - 1)
854
855struct tc_fq_qd_stats {
856 __u64 gc_flows;
857 __u64 highprio_packets;
858 __u64 tcp_retrans;
859 __u64 throttled;
860 __u64 flows_plimit;
861 __u64 pkts_too_long;
862 __u64 allocation_errors;
863 __s64 time_next_delayed_flow;
864 __u32 flows;
865 __u32 inactive_flows;
866 __u32 throttled_flows;
Eric Dumazetfefa5692016-09-22 08:58:55 -0700867 __u32 unthrottle_latency_ns;
Eric Dumazetafe4fd02013-08-29 15:49:55 -0700868};
Terry Lam10239ed2013-12-15 00:30:21 -0800869
870/* Heavy-Hitter Filter */
871
872enum {
873 TCA_HHF_UNSPEC,
874 TCA_HHF_BACKLOG_LIMIT,
875 TCA_HHF_QUANTUM,
876 TCA_HHF_HH_FLOWS_LIMIT,
877 TCA_HHF_RESET_TIMEOUT,
878 TCA_HHF_ADMIT_BYTES,
879 TCA_HHF_EVICT_TIMEOUT,
880 TCA_HHF_NON_HH_WEIGHT,
881 __TCA_HHF_MAX
882};
883
884#define TCA_HHF_MAX (__TCA_HHF_MAX - 1)
885
886struct tc_hhf_xstats {
887 __u32 drop_overlimit; /* number of times max qdisc packet limit
888 * was hit
889 */
890 __u32 hh_overlimit; /* number of times max heavy-hitters was hit */
891 __u32 hh_tot_count; /* number of captured heavy-hitters so far */
892 __u32 hh_cur_count; /* number of current heavy-hitters */
893};
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800894
895/* PIE */
896enum {
897 TCA_PIE_UNSPEC,
898 TCA_PIE_TARGET,
899 TCA_PIE_LIMIT,
900 TCA_PIE_TUPDATE,
901 TCA_PIE_ALPHA,
902 TCA_PIE_BETA,
903 TCA_PIE_ECN,
904 TCA_PIE_BYTEMODE,
905 __TCA_PIE_MAX
906};
907#define TCA_PIE_MAX (__TCA_PIE_MAX - 1)
908
909struct tc_pie_xstats {
910 __u32 prob; /* current probability */
911 __u32 delay; /* current delay in ms */
912 __u32 avg_dq_rate; /* current average dq_rate in bits/pie_time */
913 __u32 packets_in; /* total number of packets enqueued */
914 __u32 dropped; /* packets dropped due to pie_action */
915 __u32 overlimit; /* dropped due to lack of space in queue */
916 __u32 maxq; /* maximum queue size */
917 __u32 ecn_mark; /* packets marked with ecn*/
918};
Vinicius Costa Gomes585d7632017-10-16 18:01:26 -0700919
920/* CBS */
921struct tc_cbs_qopt {
922 __u8 offload;
923 __u8 _pad[3];
924 __s32 hicredit;
925 __s32 locredit;
926 __s32 idleslope;
927 __s32 sendslope;
928};
929
930enum {
931 TCA_CBS_UNSPEC,
932 TCA_CBS_PARMS,
933 __TCA_CBS_MAX,
934};
935
936#define TCA_CBS_MAX (__TCA_CBS_MAX - 1)
937
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938#endif