blob: 248ea26997b91eded41adc121acb4b657fb2869e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * net/sched/sch_cbq.c Class-Based Queueing discipline.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 *
9 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
10 *
11 */
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/types.h>
16#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/skbuff.h>
Patrick McHardy0ba48052007-07-02 22:49:07 -070020#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <net/pkt_sched.h>
Jiri Pirkocf1facd2017-02-09 14:38:56 +010022#include <net/pkt_cls.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24
25/* Class-Based Queueing (CBQ) algorithm.
26 =======================================
27
28 Sources: [1] Sally Floyd and Van Jacobson, "Link-sharing and Resource
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +090029 Management Models for Packet Networks",
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 IEEE/ACM Transactions on Networking, Vol.3, No.4, 1995
31
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +090032 [2] Sally Floyd, "Notes on CBQ and Guaranteed Service", 1995
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +090034 [3] Sally Floyd, "Notes on Class-Based Queueing: Setting
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 Parameters", 1996
36
37 [4] Sally Floyd and Michael Speer, "Experimental Results
38 for Class-Based Queueing", 1998, not published.
39
40 -----------------------------------------------------------------------
41
42 Algorithm skeleton was taken from NS simulator cbq.cc.
43 If someone wants to check this code against the LBL version,
44 he should take into account that ONLY the skeleton was borrowed,
45 the implementation is different. Particularly:
46
47 --- The WRR algorithm is different. Our version looks more
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +090048 reasonable (I hope) and works when quanta are allowed to be
49 less than MTU, which is always the case when real time classes
50 have small rates. Note, that the statement of [3] is
51 incomplete, delay may actually be estimated even if class
52 per-round allotment is less than MTU. Namely, if per-round
53 allotment is W*r_i, and r_1+...+r_k = r < 1
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55 delay_i <= ([MTU/(W*r_i)]*W*r + W*r + k*MTU)/B
56
57 In the worst case we have IntServ estimate with D = W*r+k*MTU
58 and C = MTU*r. The proof (if correct at all) is trivial.
59
60
61 --- It seems that cbq-2.0 is not very accurate. At least, I cannot
62 interpret some places, which look like wrong translations
63 from NS. Anyone is advised to find these differences
64 and explain to me, why I am wrong 8).
65
66 --- Linux has no EOI event, so that we cannot estimate true class
67 idle time. Workaround is to consider the next dequeue event
68 as sign that previous packet is finished. This is wrong because of
69 internal device queueing, but on a permanently loaded link it is true.
70 Moreover, combined with clock integrator, this scheme looks
71 very close to an ideal solution. */
72
73struct cbq_sched_data;
74
75
Eric Dumazetcc7ec452011-01-19 19:26:56 +000076struct cbq_class {
Patrick McHardyd77fea22008-07-05 23:22:05 -070077 struct Qdisc_class_common common;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 struct cbq_class *next_alive; /* next class with backlog in this priority band */
79
80/* Parameters */
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 unsigned char priority; /* class priority */
82 unsigned char priority2; /* priority to be used after overlimit */
83 unsigned char ewma_log; /* time constant for idle time calculation */
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85 u32 defmap;
86
87 /* Link-sharing scheduler parameters */
88 long maxidle; /* Class parameters: see below. */
89 long offtime;
90 long minidle;
91 u32 avpkt;
92 struct qdisc_rate_table *R_tab;
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 /* General scheduler (WRR) parameters */
95 long allot;
96 long quantum; /* Allotment per WRR round */
97 long weight; /* Relative allotment: see below */
98
99 struct Qdisc *qdisc; /* Ptr to CBQ discipline */
100 struct cbq_class *split; /* Ptr to split node */
101 struct cbq_class *share; /* Ptr to LS parent in the class tree */
102 struct cbq_class *tparent; /* Ptr to tree parent in the class tree */
103 struct cbq_class *borrow; /* NULL if class is bandwidth limited;
104 parent otherwise */
105 struct cbq_class *sibling; /* Sibling chain */
106 struct cbq_class *children; /* Pointer to children chain */
107
108 struct Qdisc *q; /* Elementary queueing discipline */
109
110
111/* Variables */
112 unsigned char cpriority; /* Effective priority */
113 unsigned char delayed;
114 unsigned char level; /* level of the class in hierarchy:
115 0 for leaf classes, and maximal
116 level of children + 1 for nodes.
117 */
118
119 psched_time_t last; /* Last end of service */
120 psched_time_t undertime;
121 long avgidle;
122 long deficit; /* Saved deficit for WRR */
Patrick McHardy1a13cb62007-03-16 01:22:20 -0700123 psched_time_t penalized;
Eric Dumazetc1a8f1f2009-08-16 09:36:49 +0000124 struct gnet_stats_basic_packed bstats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 struct gnet_stats_queue qstats;
Eric Dumazet1c0d32f2016-12-04 09:48:16 -0800126 struct net_rate_estimator __rcu *rate_est;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 struct tc_cbq_xstats xstats;
128
John Fastabend25d8c0d2014-09-12 20:05:27 -0700129 struct tcf_proto __rcu *filter_list;
Jiri Pirko6529eab2017-05-17 11:07:55 +0200130 struct tcf_block *block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 int filters;
133
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000134 struct cbq_class *defaults[TC_PRIO_MAX + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135};
136
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000137struct cbq_sched_data {
Patrick McHardyd77fea22008-07-05 23:22:05 -0700138 struct Qdisc_class_hash clhash; /* Hash table of all classes */
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000139 int nclasses[TC_CBQ_MAXPRIO + 1];
140 unsigned int quanta[TC_CBQ_MAXPRIO + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
142 struct cbq_class link;
143
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000144 unsigned int activemask;
145 struct cbq_class *active[TC_CBQ_MAXPRIO + 1]; /* List of all classes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 with backlog */
147
Patrick McHardyc3bc7cf2007-07-15 00:03:05 -0700148#ifdef CONFIG_NET_CLS_ACT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 struct cbq_class *rx_class;
150#endif
151 struct cbq_class *tx_class;
152 struct cbq_class *tx_borrowed;
153 int tx_len;
154 psched_time_t now; /* Cached timestamp */
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000155 unsigned int pmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
David S. Miller2fbd3da2009-09-01 17:59:25 -0700157 struct hrtimer delay_timer;
Patrick McHardy88a99352007-03-16 01:21:11 -0700158 struct qdisc_watchdog watchdog; /* Watchdog timer,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 started when CBQ has
160 backlog, but cannot
161 transmit just now */
Patrick McHardy88a99352007-03-16 01:21:11 -0700162 psched_tdiff_t wd_expires;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 int toplevel;
164 u32 hgenerator;
165};
166
167
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000168#define L2T(cl, len) qdisc_l2t((cl)->R_tab, len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000170static inline struct cbq_class *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171cbq_class_lookup(struct cbq_sched_data *q, u32 classid)
172{
Patrick McHardyd77fea22008-07-05 23:22:05 -0700173 struct Qdisc_class_common *clc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Patrick McHardyd77fea22008-07-05 23:22:05 -0700175 clc = qdisc_class_find(&q->clhash, classid);
176 if (clc == NULL)
177 return NULL;
178 return container_of(clc, struct cbq_class, common);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179}
180
Patrick McHardyc3bc7cf2007-07-15 00:03:05 -0700181#ifdef CONFIG_NET_CLS_ACT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
183static struct cbq_class *
184cbq_reclassify(struct sk_buff *skb, struct cbq_class *this)
185{
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000186 struct cbq_class *cl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000188 for (cl = this->tparent; cl; cl = cl->tparent) {
189 struct cbq_class *new = cl->defaults[TC_PRIO_BESTEFFORT];
190
191 if (new != NULL && new != this)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 return new;
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000193 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 return NULL;
195}
196
197#endif
198
199/* Classify packet. The procedure is pretty complicated, but
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000200 * it allows us to combine link sharing and priority scheduling
201 * transparently.
202 *
203 * Namely, you can put link sharing rules (f.e. route based) at root of CBQ,
204 * so that it resolves to split nodes. Then packets are classified
205 * by logical priority, or a more specific classifier may be attached
206 * to the split node.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 */
208
209static struct cbq_class *
210cbq_classify(struct sk_buff *skb, struct Qdisc *sch, int *qerr)
211{
212 struct cbq_sched_data *q = qdisc_priv(sch);
213 struct cbq_class *head = &q->link;
214 struct cbq_class **defmap;
215 struct cbq_class *cl = NULL;
216 u32 prio = skb->priority;
John Fastabend25d8c0d2014-09-12 20:05:27 -0700217 struct tcf_proto *fl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 struct tcf_result res;
219
220 /*
221 * Step 1. If skb->priority points to one of our classes, use it.
222 */
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000223 if (TC_H_MAJ(prio ^ sch->handle) == 0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 (cl = cbq_class_lookup(q, prio)) != NULL)
225 return cl;
226
Jarek Poplawskic27f3392008-08-04 22:39:11 -0700227 *qerr = NET_XMIT_SUCCESS | __NET_XMIT_BYPASS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 for (;;) {
229 int result = 0;
230 defmap = head->defaults;
231
John Fastabend25d8c0d2014-09-12 20:05:27 -0700232 fl = rcu_dereference_bh(head->filter_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 /*
234 * Step 2+n. Apply classifier.
235 */
Jiri Pirko87d83092017-05-17 11:07:54 +0200236 result = tcf_classify(skb, fl, &res, true);
John Fastabend25d8c0d2014-09-12 20:05:27 -0700237 if (!fl || result < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 goto fallback;
239
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000240 cl = (void *)res.class;
241 if (!cl) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 if (TC_H_MAJ(res.classid))
243 cl = cbq_class_lookup(q, res.classid);
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000244 else if ((cl = defmap[res.classid & TC_PRIO_MAX]) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 cl = defmap[TC_PRIO_BESTEFFORT];
246
Eric Dumazetbdfc87f2012-09-11 13:11:12 +0000247 if (cl == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 goto fallback;
249 }
Eric Dumazetbdfc87f2012-09-11 13:11:12 +0000250 if (cl->level >= head->level)
251 goto fallback;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252#ifdef CONFIG_NET_CLS_ACT
253 switch (result) {
254 case TC_ACT_QUEUED:
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900255 case TC_ACT_STOLEN:
Jiri Pirkoe25ea212017-06-06 14:12:02 +0200256 case TC_ACT_TRAP:
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700257 *qerr = NET_XMIT_SUCCESS | __NET_XMIT_STOLEN;
Gustavo A. R. Silvaf3ae6082017-10-19 16:28:24 -0500258 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 case TC_ACT_SHOT:
260 return NULL;
Patrick McHardy73ca4912007-07-15 00:02:31 -0700261 case TC_ACT_RECLASSIFY:
262 return cbq_reclassify(skb, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264#endif
265 if (cl->level == 0)
266 return cl;
267
268 /*
269 * Step 3+n. If classifier selected a link sharing class,
270 * apply agency specific classifier.
271 * Repeat this procdure until we hit a leaf node.
272 */
273 head = cl;
274 }
275
276fallback:
277 cl = head;
278
279 /*
280 * Step 4. No success...
281 */
282 if (TC_H_MAJ(prio) == 0 &&
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000283 !(cl = head->defaults[prio & TC_PRIO_MAX]) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 !(cl = head->defaults[TC_PRIO_BESTEFFORT]))
285 return head;
286
287 return cl;
288}
289
290/*
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000291 * A packet has just been enqueued on the empty class.
292 * cbq_activate_class adds it to the tail of active class list
293 * of its priority band.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 */
295
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000296static inline void cbq_activate_class(struct cbq_class *cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297{
298 struct cbq_sched_data *q = qdisc_priv(cl->qdisc);
299 int prio = cl->cpriority;
300 struct cbq_class *cl_tail;
301
302 cl_tail = q->active[prio];
303 q->active[prio] = cl;
304
305 if (cl_tail != NULL) {
306 cl->next_alive = cl_tail->next_alive;
307 cl_tail->next_alive = cl;
308 } else {
309 cl->next_alive = cl;
310 q->activemask |= (1<<prio);
311 }
312}
313
314/*
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000315 * Unlink class from active chain.
316 * Note that this same procedure is done directly in cbq_dequeue*
317 * during round-robin procedure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 */
319
320static void cbq_deactivate_class(struct cbq_class *this)
321{
322 struct cbq_sched_data *q = qdisc_priv(this->qdisc);
323 int prio = this->cpriority;
324 struct cbq_class *cl;
325 struct cbq_class *cl_prev = q->active[prio];
326
327 do {
328 cl = cl_prev->next_alive;
329 if (cl == this) {
330 cl_prev->next_alive = cl->next_alive;
331 cl->next_alive = NULL;
332
333 if (cl == q->active[prio]) {
334 q->active[prio] = cl_prev;
335 if (cl == q->active[prio]) {
336 q->active[prio] = NULL;
337 q->activemask &= ~(1<<prio);
338 return;
339 }
340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 return;
342 }
343 } while ((cl_prev = cl) != q->active[prio]);
344}
345
346static void
347cbq_mark_toplevel(struct cbq_sched_data *q, struct cbq_class *cl)
348{
349 int toplevel = q->toplevel;
350
Eric Dumazetcca605d2016-06-10 16:41:37 -0700351 if (toplevel > cl->level) {
Vasily Averin7201c1d2014-08-14 12:27:59 +0400352 psched_time_t now = psched_get_time();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
354 do {
Patrick McHardy104e0872007-03-23 11:28:07 -0700355 if (cl->undertime < now) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 q->toplevel = cl->level;
357 return;
358 }
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000359 } while ((cl = cl->borrow) != NULL && toplevel > cl->level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 }
361}
362
363static int
Eric Dumazet520ac302016-06-21 23:16:49 -0700364cbq_enqueue(struct sk_buff *skb, struct Qdisc *sch,
365 struct sk_buff **to_free)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366{
367 struct cbq_sched_data *q = qdisc_priv(sch);
Satyam Sharmaddeee3c2007-09-16 14:54:05 -0700368 int uninitialized_var(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 struct cbq_class *cl = cbq_classify(skb, sch, &ret);
370
Patrick McHardyc3bc7cf2007-07-15 00:03:05 -0700371#ifdef CONFIG_NET_CLS_ACT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 q->rx_class = cl;
373#endif
374 if (cl == NULL) {
Jarek Poplawskic27f3392008-08-04 22:39:11 -0700375 if (ret & __NET_XMIT_BYPASS)
John Fastabend25331d62014-09-28 11:53:29 -0700376 qdisc_qstats_drop(sch);
Eric Dumazet520ac302016-06-21 23:16:49 -0700377 __qdisc_drop(skb, to_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 return ret;
379 }
380
Eric Dumazet520ac302016-06-21 23:16:49 -0700381 ret = qdisc_enqueue(skb, cl->q, to_free);
Jussi Kivilinna5f861732008-07-20 00:08:04 -0700382 if (ret == NET_XMIT_SUCCESS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 sch->q.qlen++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 cbq_mark_toplevel(q, cl);
385 if (!cl->next_alive)
386 cbq_activate_class(cl);
387 return ret;
388 }
389
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700390 if (net_xmit_drop_count(ret)) {
John Fastabend25331d62014-09-28 11:53:29 -0700391 qdisc_qstats_drop(sch);
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700392 cbq_mark_toplevel(q, cl);
393 cl->qstats.drops++;
394 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 return ret;
396}
397
Florian Westphalc3498d32016-06-09 00:27:39 +0200398/* Overlimit action: penalize leaf class by adding offtime */
399static void cbq_overlimit(struct cbq_class *cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
401 struct cbq_sched_data *q = qdisc_priv(cl->qdisc);
Patrick McHardy8edc0c32007-03-23 11:28:55 -0700402 psched_tdiff_t delay = cl->undertime - q->now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
404 if (!cl->delayed) {
405 delay += cl->offtime;
406
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900407 /*
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000408 * Class goes to sleep, so that it will have no
409 * chance to work avgidle. Let's forgive it 8)
410 *
411 * BTW cbq-2.0 has a crap in this
412 * place, apparently they forgot to shift it by cl->ewma_log.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 */
414 if (cl->avgidle < 0)
415 delay -= (-cl->avgidle) - ((-cl->avgidle) >> cl->ewma_log);
416 if (cl->avgidle < cl->minidle)
417 cl->avgidle = cl->minidle;
418 if (delay <= 0)
419 delay = 1;
Patrick McHardy7c59e252007-03-23 11:27:45 -0700420 cl->undertime = q->now + delay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
422 cl->xstats.overactions++;
423 cl->delayed = 1;
424 }
425 if (q->wd_expires == 0 || q->wd_expires > delay)
426 q->wd_expires = delay;
427
428 /* Dirty work! We must schedule wakeups based on
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000429 * real available rate, rather than leaf rate,
430 * which may be tiny (even zero).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 */
432 if (q->toplevel == TC_CBQ_MAXLEVEL) {
433 struct cbq_class *b;
434 psched_tdiff_t base_delay = q->wd_expires;
435
436 for (b = cl->borrow; b; b = b->borrow) {
Patrick McHardy8edc0c32007-03-23 11:28:55 -0700437 delay = b->undertime - q->now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 if (delay < base_delay) {
439 if (delay <= 0)
440 delay = 1;
441 base_delay = delay;
442 }
443 }
444
445 q->wd_expires = base_delay;
446 }
447}
448
Patrick McHardy1a13cb62007-03-16 01:22:20 -0700449static psched_tdiff_t cbq_undelay_prio(struct cbq_sched_data *q, int prio,
450 psched_time_t now)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451{
452 struct cbq_class *cl;
453 struct cbq_class *cl_prev = q->active[prio];
Patrick McHardy1a13cb62007-03-16 01:22:20 -0700454 psched_time_t sched = now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
456 if (cl_prev == NULL)
Patrick McHardye9054a32007-03-16 01:21:40 -0700457 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
459 do {
460 cl = cl_prev->next_alive;
Patrick McHardy1a13cb62007-03-16 01:22:20 -0700461 if (now - cl->penalized > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 cl_prev->next_alive = cl->next_alive;
463 cl->next_alive = NULL;
464 cl->cpriority = cl->priority;
465 cl->delayed = 0;
466 cbq_activate_class(cl);
467
468 if (cl == q->active[prio]) {
469 q->active[prio] = cl_prev;
470 if (cl == q->active[prio]) {
471 q->active[prio] = NULL;
472 return 0;
473 }
474 }
475
476 cl = cl_prev->next_alive;
Patrick McHardy1a13cb62007-03-16 01:22:20 -0700477 } else if (sched - cl->penalized > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 sched = cl->penalized;
479 } while ((cl_prev = cl) != q->active[prio]);
480
Patrick McHardy1a13cb62007-03-16 01:22:20 -0700481 return sched - now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482}
483
Patrick McHardy1a13cb62007-03-16 01:22:20 -0700484static enum hrtimer_restart cbq_undelay(struct hrtimer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485{
Patrick McHardy1a13cb62007-03-16 01:22:20 -0700486 struct cbq_sched_data *q = container_of(timer, struct cbq_sched_data,
David S. Miller2fbd3da2009-09-01 17:59:25 -0700487 delay_timer);
Patrick McHardy1a13cb62007-03-16 01:22:20 -0700488 struct Qdisc *sch = q->watchdog.qdisc;
489 psched_time_t now;
490 psched_tdiff_t delay = 0;
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000491 unsigned int pmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
Patrick McHardy3bebcda2007-03-23 11:29:25 -0700493 now = psched_get_time();
Patrick McHardy1a13cb62007-03-16 01:22:20 -0700494
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 pmask = q->pmask;
496 q->pmask = 0;
497
498 while (pmask) {
499 int prio = ffz(~pmask);
Patrick McHardy1a13cb62007-03-16 01:22:20 -0700500 psched_tdiff_t tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
502 pmask &= ~(1<<prio);
503
Patrick McHardy1a13cb62007-03-16 01:22:20 -0700504 tmp = cbq_undelay_prio(q, prio, now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 if (tmp > 0) {
506 q->pmask |= 1<<prio;
507 if (tmp < delay || delay == 0)
508 delay = tmp;
509 }
510 }
511
512 if (delay) {
Patrick McHardy1a13cb62007-03-16 01:22:20 -0700513 ktime_t time;
514
Thomas Gleixner8b0e1952016-12-25 12:30:41 +0100515 time = 0;
Jarek Poplawskica44d6e2009-06-15 02:31:47 -0700516 time = ktime_add_ns(time, PSCHED_TICKS2NS(now + delay));
Eric Dumazet4a8e3202014-09-20 18:01:30 -0700517 hrtimer_start(&q->delay_timer, time, HRTIMER_MODE_ABS_PINNED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 }
519
David S. Miller8608db02008-08-18 20:51:18 -0700520 __netif_schedule(qdisc_root(sch));
Patrick McHardy1a13cb62007-03-16 01:22:20 -0700521 return HRTIMER_NORESTART;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522}
523
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900524/*
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000525 * It is mission critical procedure.
526 *
527 * We "regenerate" toplevel cutoff, if transmitting class
528 * has backlog and it is not regulated. It is not part of
529 * original CBQ description, but looks more reasonable.
530 * Probably, it is wrong. This question needs further investigation.
531 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000533static inline void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534cbq_update_toplevel(struct cbq_sched_data *q, struct cbq_class *cl,
535 struct cbq_class *borrowed)
536{
537 if (cl && q->toplevel >= borrowed->level) {
538 if (cl->q->q.qlen > 1) {
539 do {
Patrick McHardya0849802007-03-23 11:28:30 -0700540 if (borrowed->undertime == PSCHED_PASTPERFECT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 q->toplevel = borrowed->level;
542 return;
543 }
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000544 } while ((borrowed = borrowed->borrow) != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 }
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900546#if 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 /* It is not necessary now. Uncommenting it
548 will save CPU cycles, but decrease fairness.
549 */
550 q->toplevel = TC_CBQ_MAXLEVEL;
551#endif
552 }
553}
554
555static void
556cbq_update(struct cbq_sched_data *q)
557{
558 struct cbq_class *this = q->tx_class;
559 struct cbq_class *cl = this;
560 int len = q->tx_len;
Vasily Averin73d0f372014-08-14 12:27:47 +0400561 psched_time_t now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
563 q->tx_class = NULL;
Vasily Averin73d0f372014-08-14 12:27:47 +0400564 /* Time integrator. We calculate EOS time
565 * by adding expected packet transmission time.
566 */
567 now = q->now + L2T(&q->link, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
569 for ( ; cl; cl = cl->share) {
570 long avgidle = cl->avgidle;
571 long idle;
572
573 cl->bstats.packets++;
574 cl->bstats.bytes += len;
575
576 /*
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000577 * (now - last) is total time between packet right edges.
578 * (last_pktlen/rate) is "virtual" busy time, so that
579 *
580 * idle = (now - last) - last_pktlen/rate
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 */
582
Vasily Averin73d0f372014-08-14 12:27:47 +0400583 idle = now - cl->last;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 if ((unsigned long)idle > 128*1024*1024) {
585 avgidle = cl->maxidle;
586 } else {
587 idle -= L2T(cl, len);
588
589 /* true_avgidle := (1-W)*true_avgidle + W*idle,
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000590 * where W=2^{-ewma_log}. But cl->avgidle is scaled:
591 * cl->avgidle == true_avgidle/W,
592 * hence:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 */
594 avgidle += idle - (avgidle>>cl->ewma_log);
595 }
596
597 if (avgidle <= 0) {
598 /* Overlimit or at-limit */
599
600 if (avgidle < cl->minidle)
601 avgidle = cl->minidle;
602
603 cl->avgidle = avgidle;
604
605 /* Calculate expected time, when this class
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000606 * will be allowed to send.
607 * It will occur, when:
608 * (1-W)*true_avgidle + W*delay = 0, i.e.
609 * idle = (1/W - 1)*(-true_avgidle)
610 * or
611 * idle = (1 - W)*(-cl->avgidle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 */
613 idle = (-avgidle) - ((-avgidle) >> cl->ewma_log);
614
615 /*
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000616 * That is not all.
617 * To maintain the rate allocated to the class,
618 * we add to undertime virtual clock,
619 * necessary to complete transmitted packet.
620 * (len/phys_bandwidth has been already passed
621 * to the moment of cbq_update)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 */
623
624 idle -= L2T(&q->link, len);
625 idle += L2T(cl, len);
626
Vasily Averin73d0f372014-08-14 12:27:47 +0400627 cl->undertime = now + idle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 } else {
629 /* Underlimit */
630
Patrick McHardya0849802007-03-23 11:28:30 -0700631 cl->undertime = PSCHED_PASTPERFECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 if (avgidle > cl->maxidle)
633 cl->avgidle = cl->maxidle;
634 else
635 cl->avgidle = avgidle;
636 }
Vasily Averin73d0f372014-08-14 12:27:47 +0400637 if ((s64)(now - cl->last) > 0)
638 cl->last = now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 }
640
641 cbq_update_toplevel(q, this, q->tx_borrowed);
642}
643
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000644static inline struct cbq_class *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645cbq_under_limit(struct cbq_class *cl)
646{
647 struct cbq_sched_data *q = qdisc_priv(cl->qdisc);
648 struct cbq_class *this_cl = cl;
649
650 if (cl->tparent == NULL)
651 return cl;
652
Patrick McHardya0849802007-03-23 11:28:30 -0700653 if (cl->undertime == PSCHED_PASTPERFECT || q->now >= cl->undertime) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 cl->delayed = 0;
655 return cl;
656 }
657
658 do {
659 /* It is very suspicious place. Now overlimit
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000660 * action is generated for not bounded classes
661 * only if link is completely congested.
662 * Though it is in agree with ancestor-only paradigm,
663 * it looks very stupid. Particularly,
664 * it means that this chunk of code will either
665 * never be called or result in strong amplification
666 * of burstiness. Dangerous, silly, and, however,
667 * no another solution exists.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 */
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000669 cl = cl->borrow;
670 if (!cl) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 this_cl->qstats.overlimits++;
Florian Westphalc3498d32016-06-09 00:27:39 +0200672 cbq_overlimit(this_cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 return NULL;
674 }
675 if (cl->level > q->toplevel)
676 return NULL;
Patrick McHardya0849802007-03-23 11:28:30 -0700677 } while (cl->undertime != PSCHED_PASTPERFECT && q->now < cl->undertime);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
679 cl->delayed = 0;
680 return cl;
681}
682
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000683static inline struct sk_buff *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684cbq_dequeue_prio(struct Qdisc *sch, int prio)
685{
686 struct cbq_sched_data *q = qdisc_priv(sch);
687 struct cbq_class *cl_tail, *cl_prev, *cl;
688 struct sk_buff *skb;
689 int deficit;
690
691 cl_tail = cl_prev = q->active[prio];
692 cl = cl_prev->next_alive;
693
694 do {
695 deficit = 0;
696
697 /* Start round */
698 do {
699 struct cbq_class *borrow = cl;
700
701 if (cl->q->q.qlen &&
702 (borrow = cbq_under_limit(cl)) == NULL)
703 goto skip_class;
704
705 if (cl->deficit <= 0) {
706 /* Class exhausted its allotment per
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000707 * this round. Switch to the next one.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 */
709 deficit = 1;
710 cl->deficit += cl->quantum;
711 goto next_class;
712 }
713
714 skb = cl->q->dequeue(cl->q);
715
716 /* Class did not give us any skb :-(
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000717 * It could occur even if cl->q->q.qlen != 0
718 * f.e. if cl->q == "tbf"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 */
720 if (skb == NULL)
721 goto skip_class;
722
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700723 cl->deficit -= qdisc_pkt_len(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 q->tx_class = cl;
725 q->tx_borrowed = borrow;
726 if (borrow != cl) {
727#ifndef CBQ_XSTATS_BORROWS_BYTES
728 borrow->xstats.borrows++;
729 cl->xstats.borrows++;
730#else
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700731 borrow->xstats.borrows += qdisc_pkt_len(skb);
732 cl->xstats.borrows += qdisc_pkt_len(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733#endif
734 }
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700735 q->tx_len = qdisc_pkt_len(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
737 if (cl->deficit <= 0) {
738 q->active[prio] = cl;
739 cl = cl->next_alive;
740 cl->deficit += cl->quantum;
741 }
742 return skb;
743
744skip_class:
745 if (cl->q->q.qlen == 0 || prio != cl->cpriority) {
746 /* Class is empty or penalized.
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000747 * Unlink it from active chain.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 */
749 cl_prev->next_alive = cl->next_alive;
750 cl->next_alive = NULL;
751
752 /* Did cl_tail point to it? */
753 if (cl == cl_tail) {
754 /* Repair it! */
755 cl_tail = cl_prev;
756
757 /* Was it the last class in this band? */
758 if (cl == cl_tail) {
759 /* Kill the band! */
760 q->active[prio] = NULL;
761 q->activemask &= ~(1<<prio);
762 if (cl->q->q.qlen)
763 cbq_activate_class(cl);
764 return NULL;
765 }
766
767 q->active[prio] = cl_tail;
768 }
769 if (cl->q->q.qlen)
770 cbq_activate_class(cl);
771
772 cl = cl_prev;
773 }
774
775next_class:
776 cl_prev = cl;
777 cl = cl->next_alive;
778 } while (cl_prev != cl_tail);
779 } while (deficit);
780
781 q->active[prio] = cl_prev;
782
783 return NULL;
784}
785
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000786static inline struct sk_buff *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787cbq_dequeue_1(struct Qdisc *sch)
788{
789 struct cbq_sched_data *q = qdisc_priv(sch);
790 struct sk_buff *skb;
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000791 unsigned int activemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000793 activemask = q->activemask & 0xFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 while (activemask) {
795 int prio = ffz(~activemask);
796 activemask &= ~(1<<prio);
797 skb = cbq_dequeue_prio(sch, prio);
798 if (skb)
799 return skb;
800 }
801 return NULL;
802}
803
804static struct sk_buff *
805cbq_dequeue(struct Qdisc *sch)
806{
807 struct sk_buff *skb;
808 struct cbq_sched_data *q = qdisc_priv(sch);
809 psched_time_t now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
Patrick McHardy3bebcda2007-03-23 11:29:25 -0700811 now = psched_get_time();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
Vasily Averin73d0f372014-08-14 12:27:47 +0400813 if (q->tx_class)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 cbq_update(q);
Vasily Averin73d0f372014-08-14 12:27:47 +0400815
816 q->now = now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
818 for (;;) {
819 q->wd_expires = 0;
820
821 skb = cbq_dequeue_1(sch);
822 if (skb) {
Eric Dumazet9190b3b2011-01-20 23:31:33 -0800823 qdisc_bstats_update(sch, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 sch->q.qlen--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 return skb;
826 }
827
828 /* All the classes are overlimit.
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000829 *
830 * It is possible, if:
831 *
832 * 1. Scheduler is empty.
833 * 2. Toplevel cutoff inhibited borrowing.
834 * 3. Root class is overlimit.
835 *
836 * Reset 2d and 3d conditions and retry.
837 *
838 * Note, that NS and cbq-2.0 are buggy, peeking
839 * an arbitrary class is appropriate for ancestor-only
840 * sharing, but not for toplevel algorithm.
841 *
842 * Our version is better, but slower, because it requires
843 * two passes, but it is unavoidable with top-level sharing.
844 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
846 if (q->toplevel == TC_CBQ_MAXLEVEL &&
Patrick McHardya0849802007-03-23 11:28:30 -0700847 q->link.undertime == PSCHED_PASTPERFECT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 break;
849
850 q->toplevel = TC_CBQ_MAXLEVEL;
Patrick McHardya0849802007-03-23 11:28:30 -0700851 q->link.undertime = PSCHED_PASTPERFECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 }
853
854 /* No packets in scheduler or nobody wants to give them to us :-(
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000855 * Sigh... start watchdog timer in the last case.
856 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
858 if (sch->q.qlen) {
John Fastabend25331d62014-09-28 11:53:29 -0700859 qdisc_qstats_overlimit(sch);
Patrick McHardy88a99352007-03-16 01:21:11 -0700860 if (q->wd_expires)
861 qdisc_watchdog_schedule(&q->watchdog,
Patrick McHardybb239ac2007-03-16 12:31:28 -0700862 now + q->wd_expires);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 }
864 return NULL;
865}
866
867/* CBQ class maintanance routines */
868
869static void cbq_adjust_levels(struct cbq_class *this)
870{
871 if (this == NULL)
872 return;
873
874 do {
875 int level = 0;
876 struct cbq_class *cl;
877
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000878 cl = this->children;
879 if (cl) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 do {
881 if (cl->level > level)
882 level = cl->level;
883 } while ((cl = cl->sibling) != this->children);
884 }
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000885 this->level = level + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 } while ((this = this->tparent) != NULL);
887}
888
889static void cbq_normalize_quanta(struct cbq_sched_data *q, int prio)
890{
891 struct cbq_class *cl;
Patrick McHardyd77fea22008-07-05 23:22:05 -0700892 unsigned int h;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
894 if (q->quanta[prio] == 0)
895 return;
896
Patrick McHardyd77fea22008-07-05 23:22:05 -0700897 for (h = 0; h < q->clhash.hashsize; h++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -0800898 hlist_for_each_entry(cl, &q->clhash.hash[h], common.hnode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 /* BUGGGG... Beware! This expression suffer of
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000900 * arithmetic overflows!
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 */
902 if (cl->priority == prio) {
903 cl->quantum = (cl->weight*cl->allot*q->nclasses[prio])/
904 q->quanta[prio];
905 }
Yang Yingliang833fa742013-12-10 20:55:32 +0800906 if (cl->quantum <= 0 ||
907 cl->quantum > 32*qdisc_dev(cl->qdisc)->mtu) {
Yang Yingliangc17988a2013-12-23 17:38:58 +0800908 pr_warn("CBQ: class %08x has bad quantum==%ld, repaired.\n",
909 cl->common.classid, cl->quantum);
David S. Miller5ce2d482008-07-08 17:06:30 -0700910 cl->quantum = qdisc_dev(cl->qdisc)->mtu/2 + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 }
912 }
913 }
914}
915
916static void cbq_sync_defmap(struct cbq_class *cl)
917{
918 struct cbq_sched_data *q = qdisc_priv(cl->qdisc);
919 struct cbq_class *split = cl->split;
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000920 unsigned int h;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 int i;
922
923 if (split == NULL)
924 return;
925
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000926 for (i = 0; i <= TC_PRIO_MAX; i++) {
927 if (split->defaults[i] == cl && !(cl->defmap & (1<<i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 split->defaults[i] = NULL;
929 }
930
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000931 for (i = 0; i <= TC_PRIO_MAX; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 int level = split->level;
933
934 if (split->defaults[i])
935 continue;
936
Patrick McHardyd77fea22008-07-05 23:22:05 -0700937 for (h = 0; h < q->clhash.hashsize; h++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 struct cbq_class *c;
939
Sasha Levinb67bfe02013-02-27 17:06:00 -0800940 hlist_for_each_entry(c, &q->clhash.hash[h],
Patrick McHardyd77fea22008-07-05 23:22:05 -0700941 common.hnode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 if (c->split == split && c->level < level &&
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000943 c->defmap & (1<<i)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 split->defaults[i] = c;
945 level = c->level;
946 }
947 }
948 }
949 }
950}
951
952static void cbq_change_defmap(struct cbq_class *cl, u32 splitid, u32 def, u32 mask)
953{
954 struct cbq_class *split = NULL;
955
956 if (splitid == 0) {
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000957 split = cl->split;
958 if (!split)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 return;
Patrick McHardyd77fea22008-07-05 23:22:05 -0700960 splitid = split->common.classid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 }
962
Patrick McHardyd77fea22008-07-05 23:22:05 -0700963 if (split == NULL || split->common.classid != splitid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 for (split = cl->tparent; split; split = split->tparent)
Patrick McHardyd77fea22008-07-05 23:22:05 -0700965 if (split->common.classid == splitid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 break;
967 }
968
969 if (split == NULL)
970 return;
971
972 if (cl->split != split) {
973 cl->defmap = 0;
974 cbq_sync_defmap(cl);
975 cl->split = split;
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000976 cl->defmap = def & mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 } else
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000978 cl->defmap = (cl->defmap & ~mask) | (def & mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
980 cbq_sync_defmap(cl);
981}
982
983static void cbq_unlink_class(struct cbq_class *this)
984{
985 struct cbq_class *cl, **clp;
986 struct cbq_sched_data *q = qdisc_priv(this->qdisc);
987
Patrick McHardyd77fea22008-07-05 23:22:05 -0700988 qdisc_class_hash_remove(&q->clhash, &this->common);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
990 if (this->tparent) {
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000991 clp = &this->sibling;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 cl = *clp;
993 do {
994 if (cl == this) {
995 *clp = cl->sibling;
996 break;
997 }
998 clp = &cl->sibling;
999 } while ((cl = *clp) != this->sibling);
1000
1001 if (this->tparent->children == this) {
1002 this->tparent->children = this->sibling;
1003 if (this->sibling == this)
1004 this->tparent->children = NULL;
1005 }
1006 } else {
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001007 WARN_ON(this->sibling != this);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 }
1009}
1010
1011static void cbq_link_class(struct cbq_class *this)
1012{
1013 struct cbq_sched_data *q = qdisc_priv(this->qdisc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 struct cbq_class *parent = this->tparent;
1015
1016 this->sibling = this;
Patrick McHardyd77fea22008-07-05 23:22:05 -07001017 qdisc_class_hash_insert(&q->clhash, &this->common);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
1019 if (parent == NULL)
1020 return;
1021
1022 if (parent->children == NULL) {
1023 parent->children = this;
1024 } else {
1025 this->sibling = parent->children->sibling;
1026 parent->children->sibling = this;
1027 }
1028}
1029
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030static void
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001031cbq_reset(struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032{
1033 struct cbq_sched_data *q = qdisc_priv(sch);
1034 struct cbq_class *cl;
1035 int prio;
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001036 unsigned int h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
1038 q->activemask = 0;
1039 q->pmask = 0;
1040 q->tx_class = NULL;
1041 q->tx_borrowed = NULL;
Patrick McHardy88a99352007-03-16 01:21:11 -07001042 qdisc_watchdog_cancel(&q->watchdog);
David S. Miller2fbd3da2009-09-01 17:59:25 -07001043 hrtimer_cancel(&q->delay_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 q->toplevel = TC_CBQ_MAXLEVEL;
Patrick McHardy3bebcda2007-03-23 11:29:25 -07001045 q->now = psched_get_time();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046
1047 for (prio = 0; prio <= TC_CBQ_MAXPRIO; prio++)
1048 q->active[prio] = NULL;
1049
Patrick McHardyd77fea22008-07-05 23:22:05 -07001050 for (h = 0; h < q->clhash.hashsize; h++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001051 hlist_for_each_entry(cl, &q->clhash.hash[h], common.hnode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 qdisc_reset(cl->q);
1053
1054 cl->next_alive = NULL;
Patrick McHardya0849802007-03-23 11:28:30 -07001055 cl->undertime = PSCHED_PASTPERFECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 cl->avgidle = cl->maxidle;
1057 cl->deficit = cl->quantum;
1058 cl->cpriority = cl->priority;
1059 }
1060 }
1061 sch->q.qlen = 0;
1062}
1063
1064
1065static int cbq_set_lss(struct cbq_class *cl, struct tc_cbq_lssopt *lss)
1066{
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001067 if (lss->change & TCF_CBQ_LSS_FLAGS) {
1068 cl->share = (lss->flags & TCF_CBQ_LSS_ISOLATED) ? NULL : cl->tparent;
1069 cl->borrow = (lss->flags & TCF_CBQ_LSS_BOUNDED) ? NULL : cl->tparent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 }
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001071 if (lss->change & TCF_CBQ_LSS_EWMA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 cl->ewma_log = lss->ewma_log;
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001073 if (lss->change & TCF_CBQ_LSS_AVPKT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 cl->avpkt = lss->avpkt;
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001075 if (lss->change & TCF_CBQ_LSS_MINIDLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 cl->minidle = -(long)lss->minidle;
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001077 if (lss->change & TCF_CBQ_LSS_MAXIDLE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 cl->maxidle = lss->maxidle;
1079 cl->avgidle = lss->maxidle;
1080 }
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001081 if (lss->change & TCF_CBQ_LSS_OFFTIME)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 cl->offtime = lss->offtime;
1083 return 0;
1084}
1085
1086static void cbq_rmprio(struct cbq_sched_data *q, struct cbq_class *cl)
1087{
1088 q->nclasses[cl->priority]--;
1089 q->quanta[cl->priority] -= cl->weight;
1090 cbq_normalize_quanta(q, cl->priority);
1091}
1092
1093static void cbq_addprio(struct cbq_sched_data *q, struct cbq_class *cl)
1094{
1095 q->nclasses[cl->priority]++;
1096 q->quanta[cl->priority] += cl->weight;
1097 cbq_normalize_quanta(q, cl->priority);
1098}
1099
1100static int cbq_set_wrr(struct cbq_class *cl, struct tc_cbq_wrropt *wrr)
1101{
1102 struct cbq_sched_data *q = qdisc_priv(cl->qdisc);
1103
1104 if (wrr->allot)
1105 cl->allot = wrr->allot;
1106 if (wrr->weight)
1107 cl->weight = wrr->weight;
1108 if (wrr->priority) {
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001109 cl->priority = wrr->priority - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 cl->cpriority = cl->priority;
1111 if (cl->priority >= cl->priority2)
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001112 cl->priority2 = TC_CBQ_MAXPRIO - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 }
1114
1115 cbq_addprio(q, cl);
1116 return 0;
1117}
1118
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119static int cbq_set_fopt(struct cbq_class *cl, struct tc_cbq_fopt *fopt)
1120{
1121 cbq_change_defmap(cl, fopt->split, fopt->defmap, fopt->defchange);
1122 return 0;
1123}
1124
Patrick McHardy27a34212008-01-23 20:35:39 -08001125static const struct nla_policy cbq_policy[TCA_CBQ_MAX + 1] = {
1126 [TCA_CBQ_LSSOPT] = { .len = sizeof(struct tc_cbq_lssopt) },
1127 [TCA_CBQ_WRROPT] = { .len = sizeof(struct tc_cbq_wrropt) },
1128 [TCA_CBQ_FOPT] = { .len = sizeof(struct tc_cbq_fopt) },
1129 [TCA_CBQ_OVL_STRATEGY] = { .len = sizeof(struct tc_cbq_ovl) },
1130 [TCA_CBQ_RATE] = { .len = sizeof(struct tc_ratespec) },
1131 [TCA_CBQ_RTAB] = { .type = NLA_BINARY, .len = TC_RTAB_SIZE },
1132 [TCA_CBQ_POLICE] = { .len = sizeof(struct tc_cbq_police) },
1133};
1134
Alexander Aringe63d7df2017-12-20 12:35:13 -05001135static int cbq_init(struct Qdisc *sch, struct nlattr *opt,
1136 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137{
1138 struct cbq_sched_data *q = qdisc_priv(sch);
Patrick McHardy1e904742008-01-22 22:11:17 -08001139 struct nlattr *tb[TCA_CBQ_MAX + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 struct tc_ratespec *r;
Patrick McHardycee63722008-01-23 20:33:32 -08001141 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
Nikolay Aleksandrov3501d052017-08-30 12:49:01 +03001143 qdisc_watchdog_init(&q->watchdog, sch);
1144 hrtimer_init(&q->delay_timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS_PINNED);
1145 q->delay_timer.function = cbq_undelay;
1146
1147 if (!opt)
1148 return -EINVAL;
1149
Johannes Bergfceb6432017-04-12 14:34:07 +02001150 err = nla_parse_nested(tb, TCA_CBQ_MAX, opt, cbq_policy, NULL);
Patrick McHardycee63722008-01-23 20:33:32 -08001151 if (err < 0)
1152 return err;
1153
Alexander Aringac8ef4a2017-12-20 12:35:11 -05001154 if (!tb[TCA_CBQ_RTAB] || !tb[TCA_CBQ_RATE])
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 return -EINVAL;
1156
Patrick McHardy1e904742008-01-22 22:11:17 -08001157 r = nla_data(tb[TCA_CBQ_RATE]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
Alexander Aringe9bc3fa2017-12-20 12:35:18 -05001159 q->link.R_tab = qdisc_get_rtab(r, tb[TCA_CBQ_RTAB], extack);
Alexander Aringac8ef4a2017-12-20 12:35:11 -05001160 if (!q->link.R_tab)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 return -EINVAL;
1162
Alexander Aring8d1a77f2017-12-20 12:35:19 -05001163 err = tcf_block_get(&q->link.block, &q->link.filter_list, sch, extack);
Jiri Pirkod51aae62017-11-27 18:37:21 +01001164 if (err)
1165 goto put_rtab;
1166
Patrick McHardyd77fea22008-07-05 23:22:05 -07001167 err = qdisc_class_hash_init(&q->clhash);
1168 if (err < 0)
Jiri Pirkod51aae62017-11-27 18:37:21 +01001169 goto put_block;
Patrick McHardyd77fea22008-07-05 23:22:05 -07001170
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 q->link.sibling = &q->link;
Patrick McHardyd77fea22008-07-05 23:22:05 -07001172 q->link.common.classid = sch->handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 q->link.qdisc = sch;
Changli Gao3511c912010-10-16 13:04:08 +00001174 q->link.q = qdisc_create_dflt(sch->dev_queue, &pfifo_qdisc_ops,
1175 sch->handle);
1176 if (!q->link.q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 q->link.q = &noop_qdisc;
Jiri Kosina49b49972017-03-08 16:03:32 +01001178 else
1179 qdisc_hash_add(q->link.q, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001181 q->link.priority = TC_CBQ_MAXPRIO - 1;
1182 q->link.priority2 = TC_CBQ_MAXPRIO - 1;
1183 q->link.cpriority = TC_CBQ_MAXPRIO - 1;
David S. Miller5ce2d482008-07-08 17:06:30 -07001184 q->link.allot = psched_mtu(qdisc_dev(sch));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 q->link.quantum = q->link.allot;
1186 q->link.weight = q->link.R_tab->rate.rate;
1187
1188 q->link.ewma_log = TC_CBQ_DEF_EWMA;
1189 q->link.avpkt = q->link.allot/2;
1190 q->link.minidle = -0x7FFFFFFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 q->toplevel = TC_CBQ_MAXLEVEL;
Patrick McHardy3bebcda2007-03-23 11:29:25 -07001193 q->now = psched_get_time();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
1195 cbq_link_class(&q->link);
1196
Patrick McHardy1e904742008-01-22 22:11:17 -08001197 if (tb[TCA_CBQ_LSSOPT])
1198 cbq_set_lss(&q->link, nla_data(tb[TCA_CBQ_LSSOPT]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
1200 cbq_addprio(q, &q->link);
1201 return 0;
Patrick McHardyd77fea22008-07-05 23:22:05 -07001202
Jiri Pirkod51aae62017-11-27 18:37:21 +01001203put_block:
1204 tcf_block_put(q->link.block);
1205
Patrick McHardyd77fea22008-07-05 23:22:05 -07001206put_rtab:
1207 qdisc_put_rtab(q->link.R_tab);
1208 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209}
1210
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001211static int cbq_dump_rate(struct sk_buff *skb, struct cbq_class *cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212{
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001213 unsigned char *b = skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
David S. Miller1b34ec42012-03-29 05:11:39 -04001215 if (nla_put(skb, TCA_CBQ_RATE, sizeof(cl->R_tab->rate), &cl->R_tab->rate))
1216 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 return skb->len;
1218
Patrick McHardy1e904742008-01-22 22:11:17 -08001219nla_put_failure:
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -07001220 nlmsg_trim(skb, b);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 return -1;
1222}
1223
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001224static int cbq_dump_lss(struct sk_buff *skb, struct cbq_class *cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225{
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001226 unsigned char *b = skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 struct tc_cbq_lssopt opt;
1228
1229 opt.flags = 0;
1230 if (cl->borrow == NULL)
1231 opt.flags |= TCF_CBQ_LSS_BOUNDED;
1232 if (cl->share == NULL)
1233 opt.flags |= TCF_CBQ_LSS_ISOLATED;
1234 opt.ewma_log = cl->ewma_log;
1235 opt.level = cl->level;
1236 opt.avpkt = cl->avpkt;
1237 opt.maxidle = cl->maxidle;
1238 opt.minidle = (u32)(-cl->minidle);
1239 opt.offtime = cl->offtime;
1240 opt.change = ~0;
David S. Miller1b34ec42012-03-29 05:11:39 -04001241 if (nla_put(skb, TCA_CBQ_LSSOPT, sizeof(opt), &opt))
1242 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 return skb->len;
1244
Patrick McHardy1e904742008-01-22 22:11:17 -08001245nla_put_failure:
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -07001246 nlmsg_trim(skb, b);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 return -1;
1248}
1249
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001250static int cbq_dump_wrr(struct sk_buff *skb, struct cbq_class *cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251{
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001252 unsigned char *b = skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 struct tc_cbq_wrropt opt;
1254
David S. Millera0db8562013-07-30 00:16:21 -07001255 memset(&opt, 0, sizeof(opt));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 opt.flags = 0;
1257 opt.allot = cl->allot;
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001258 opt.priority = cl->priority + 1;
1259 opt.cpriority = cl->cpriority + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 opt.weight = cl->weight;
David S. Miller1b34ec42012-03-29 05:11:39 -04001261 if (nla_put(skb, TCA_CBQ_WRROPT, sizeof(opt), &opt))
1262 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 return skb->len;
1264
Patrick McHardy1e904742008-01-22 22:11:17 -08001265nla_put_failure:
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -07001266 nlmsg_trim(skb, b);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 return -1;
1268}
1269
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001270static int cbq_dump_fopt(struct sk_buff *skb, struct cbq_class *cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271{
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001272 unsigned char *b = skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 struct tc_cbq_fopt opt;
1274
1275 if (cl->split || cl->defmap) {
Patrick McHardyd77fea22008-07-05 23:22:05 -07001276 opt.split = cl->split ? cl->split->common.classid : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 opt.defmap = cl->defmap;
1278 opt.defchange = ~0;
David S. Miller1b34ec42012-03-29 05:11:39 -04001279 if (nla_put(skb, TCA_CBQ_FOPT, sizeof(opt), &opt))
1280 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 }
1282 return skb->len;
1283
Patrick McHardy1e904742008-01-22 22:11:17 -08001284nla_put_failure:
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -07001285 nlmsg_trim(skb, b);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 return -1;
1287}
1288
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289static int cbq_dump_attr(struct sk_buff *skb, struct cbq_class *cl)
1290{
1291 if (cbq_dump_lss(skb, cl) < 0 ||
1292 cbq_dump_rate(skb, cl) < 0 ||
1293 cbq_dump_wrr(skb, cl) < 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 cbq_dump_fopt(skb, cl) < 0)
1295 return -1;
1296 return 0;
1297}
1298
1299static int cbq_dump(struct Qdisc *sch, struct sk_buff *skb)
1300{
1301 struct cbq_sched_data *q = qdisc_priv(sch);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001302 struct nlattr *nest;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001304 nest = nla_nest_start(skb, TCA_OPTIONS);
1305 if (nest == NULL)
1306 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 if (cbq_dump_attr(skb, &q->link) < 0)
Patrick McHardy1e904742008-01-22 22:11:17 -08001308 goto nla_put_failure;
Yang Yingliangd59b7d82014-03-12 10:20:32 +08001309 return nla_nest_end(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
Patrick McHardy1e904742008-01-22 22:11:17 -08001311nla_put_failure:
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001312 nla_nest_cancel(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 return -1;
1314}
1315
1316static int
1317cbq_dump_stats(struct Qdisc *sch, struct gnet_dump *d)
1318{
1319 struct cbq_sched_data *q = qdisc_priv(sch);
1320
1321 q->link.xstats.avgidle = q->link.avgidle;
1322 return gnet_stats_copy_app(d, &q->link.xstats, sizeof(q->link.xstats));
1323}
1324
1325static int
1326cbq_dump_class(struct Qdisc *sch, unsigned long arg,
1327 struct sk_buff *skb, struct tcmsg *tcm)
1328{
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001329 struct cbq_class *cl = (struct cbq_class *)arg;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001330 struct nlattr *nest;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
1332 if (cl->tparent)
Patrick McHardyd77fea22008-07-05 23:22:05 -07001333 tcm->tcm_parent = cl->tparent->common.classid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 else
1335 tcm->tcm_parent = TC_H_ROOT;
Patrick McHardyd77fea22008-07-05 23:22:05 -07001336 tcm->tcm_handle = cl->common.classid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 tcm->tcm_info = cl->q->handle;
1338
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001339 nest = nla_nest_start(skb, TCA_OPTIONS);
1340 if (nest == NULL)
1341 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 if (cbq_dump_attr(skb, cl) < 0)
Patrick McHardy1e904742008-01-22 22:11:17 -08001343 goto nla_put_failure;
Yang Yingliangd59b7d82014-03-12 10:20:32 +08001344 return nla_nest_end(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
Patrick McHardy1e904742008-01-22 22:11:17 -08001346nla_put_failure:
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001347 nla_nest_cancel(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 return -1;
1349}
1350
1351static int
1352cbq_dump_class_stats(struct Qdisc *sch, unsigned long arg,
1353 struct gnet_dump *d)
1354{
1355 struct cbq_sched_data *q = qdisc_priv(sch);
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001356 struct cbq_class *cl = (struct cbq_class *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 cl->xstats.avgidle = cl->avgidle;
1359 cl->xstats.undertime = 0;
1360
Patrick McHardya0849802007-03-23 11:28:30 -07001361 if (cl->undertime != PSCHED_PASTPERFECT)
Patrick McHardy8edc0c32007-03-23 11:28:55 -07001362 cl->xstats.undertime = cl->undertime - q->now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363
Eric Dumazetedb09eb2016-06-06 09:37:16 -07001364 if (gnet_stats_copy_basic(qdisc_root_sleeping_running(sch),
1365 d, NULL, &cl->bstats) < 0 ||
Eric Dumazet1c0d32f2016-12-04 09:48:16 -08001366 gnet_stats_copy_rate_est(d, &cl->rate_est) < 0 ||
John Fastabendb0ab6f92014-09-28 11:54:24 -07001367 gnet_stats_copy_queue(d, NULL, &cl->qstats, cl->q->q.qlen) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 return -1;
1369
1370 return gnet_stats_copy_app(d, &cl->xstats, sizeof(cl->xstats));
1371}
1372
1373static int cbq_graft(struct Qdisc *sch, unsigned long arg, struct Qdisc *new,
Alexander Aring653d6fd2017-12-20 12:35:17 -05001374 struct Qdisc **old, struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375{
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001376 struct cbq_class *cl = (struct cbq_class *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
Patrick McHardy5b9a9cc2009-09-04 06:41:17 +00001378 if (new == NULL) {
Changli Gao3511c912010-10-16 13:04:08 +00001379 new = qdisc_create_dflt(sch->dev_queue,
Patrick McHardy5b9a9cc2009-09-04 06:41:17 +00001380 &pfifo_qdisc_ops, cl->common.classid);
1381 if (new == NULL)
1382 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 }
Patrick McHardy5b9a9cc2009-09-04 06:41:17 +00001384
WANG Cong86a79962016-02-25 14:55:00 -08001385 *old = qdisc_replace(sch, new, &cl->q);
Patrick McHardy5b9a9cc2009-09-04 06:41:17 +00001386 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387}
1388
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001389static struct Qdisc *cbq_leaf(struct Qdisc *sch, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390{
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001391 struct cbq_class *cl = (struct cbq_class *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392
Patrick McHardy5b9a9cc2009-09-04 06:41:17 +00001393 return cl->q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394}
1395
Jarek Poplawskia37ef2e2006-12-08 00:25:55 -08001396static void cbq_qlen_notify(struct Qdisc *sch, unsigned long arg)
1397{
1398 struct cbq_class *cl = (struct cbq_class *)arg;
1399
Konstantin Khlebnikov95946652017-08-15 16:39:59 +03001400 cbq_deactivate_class(cl);
Jarek Poplawskia37ef2e2006-12-08 00:25:55 -08001401}
1402
WANG Cong143976c2017-08-24 16:51:29 -07001403static unsigned long cbq_find(struct Qdisc *sch, u32 classid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404{
1405 struct cbq_sched_data *q = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
WANG Cong143976c2017-08-24 16:51:29 -07001407 return (unsigned long)cbq_class_lookup(q, classid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408}
1409
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410static void cbq_destroy_class(struct Qdisc *sch, struct cbq_class *cl)
1411{
1412 struct cbq_sched_data *q = qdisc_priv(sch);
1413
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001414 WARN_ON(cl->filters);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415
Jiri Pirko6529eab2017-05-17 11:07:55 +02001416 tcf_block_put(cl->block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 qdisc_destroy(cl->q);
1418 qdisc_put_rtab(cl->R_tab);
Eric Dumazet1c0d32f2016-12-04 09:48:16 -08001419 gen_kill_estimator(&cl->rate_est);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 if (cl != &q->link)
1421 kfree(cl);
1422}
1423
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001424static void cbq_destroy(struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425{
1426 struct cbq_sched_data *q = qdisc_priv(sch);
Sasha Levinb67bfe02013-02-27 17:06:00 -08001427 struct hlist_node *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 struct cbq_class *cl;
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001429 unsigned int h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
Patrick McHardyc3bc7cf2007-07-15 00:03:05 -07001431#ifdef CONFIG_NET_CLS_ACT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 q->rx_class = NULL;
1433#endif
1434 /*
1435 * Filters must be destroyed first because we don't destroy the
1436 * classes from root to leafs which means that filters can still
1437 * be bound to classes which have been destroyed already. --TGR '04
1438 */
Patrick McHardyd77fea22008-07-05 23:22:05 -07001439 for (h = 0; h < q->clhash.hashsize; h++) {
Konstantin Khlebnikov89890422017-08-15 16:35:21 +03001440 hlist_for_each_entry(cl, &q->clhash.hash[h], common.hnode) {
Jiri Pirko6529eab2017-05-17 11:07:55 +02001441 tcf_block_put(cl->block);
Konstantin Khlebnikov89890422017-08-15 16:35:21 +03001442 cl->block = NULL;
1443 }
Patrick McHardyb00b4bf2007-06-05 16:06:59 -07001444 }
Patrick McHardyd77fea22008-07-05 23:22:05 -07001445 for (h = 0; h < q->clhash.hashsize; h++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001446 hlist_for_each_entry_safe(cl, next, &q->clhash.hash[h],
Patrick McHardyd77fea22008-07-05 23:22:05 -07001447 common.hnode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 cbq_destroy_class(sch, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 }
Patrick McHardyd77fea22008-07-05 23:22:05 -07001450 qdisc_class_hash_destroy(&q->clhash);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451}
1452
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453static int
Patrick McHardy1e904742008-01-22 22:11:17 -08001454cbq_change_class(struct Qdisc *sch, u32 classid, u32 parentid, struct nlattr **tca,
Alexander Aring793d81d2017-12-20 12:35:15 -05001455 unsigned long *arg, struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456{
1457 int err;
1458 struct cbq_sched_data *q = qdisc_priv(sch);
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001459 struct cbq_class *cl = (struct cbq_class *)*arg;
Patrick McHardy1e904742008-01-22 22:11:17 -08001460 struct nlattr *opt = tca[TCA_OPTIONS];
1461 struct nlattr *tb[TCA_CBQ_MAX + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 struct cbq_class *parent;
1463 struct qdisc_rate_table *rtab = NULL;
1464
Alexander Aringac8ef4a2017-12-20 12:35:11 -05001465 if (!opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 return -EINVAL;
1467
Johannes Bergfceb6432017-04-12 14:34:07 +02001468 err = nla_parse_nested(tb, TCA_CBQ_MAX, opt, cbq_policy, NULL);
Patrick McHardycee63722008-01-23 20:33:32 -08001469 if (err < 0)
1470 return err;
1471
Florian Westphaldd47c1f2016-06-09 00:27:40 +02001472 if (tb[TCA_CBQ_OVL_STRATEGY] || tb[TCA_CBQ_POLICE])
Florian Westphalc3498d32016-06-09 00:27:39 +02001473 return -EOPNOTSUPP;
1474
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 if (cl) {
1476 /* Check parent */
1477 if (parentid) {
Patrick McHardyd77fea22008-07-05 23:22:05 -07001478 if (cl->tparent &&
1479 cl->tparent->common.classid != parentid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 return -EINVAL;
1481 if (!cl->tparent && parentid != TC_H_ROOT)
1482 return -EINVAL;
1483 }
1484
Patrick McHardy1e904742008-01-22 22:11:17 -08001485 if (tb[TCA_CBQ_RATE]) {
Stephen Hemminger71bcb092008-11-25 21:13:31 -08001486 rtab = qdisc_get_rtab(nla_data(tb[TCA_CBQ_RATE]),
Alexander Aringe9bc3fa2017-12-20 12:35:18 -05001487 tb[TCA_CBQ_RTAB], extack);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 if (rtab == NULL)
1489 return -EINVAL;
1490 }
1491
Stephen Hemminger71bcb092008-11-25 21:13:31 -08001492 if (tca[TCA_RATE]) {
John Fastabend22e0f8b2014-09-28 11:52:56 -07001493 err = gen_replace_estimator(&cl->bstats, NULL,
1494 &cl->rate_est,
Eric Dumazetedb09eb2016-06-06 09:37:16 -07001495 NULL,
1496 qdisc_root_sleeping_running(sch),
Stephen Hemminger71bcb092008-11-25 21:13:31 -08001497 tca[TCA_RATE]);
1498 if (err) {
Yang Yingliang79c11f22013-12-17 15:29:17 +08001499 qdisc_put_rtab(rtab);
Stephen Hemminger71bcb092008-11-25 21:13:31 -08001500 return err;
1501 }
1502 }
1503
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 /* Change class parameters */
1505 sch_tree_lock(sch);
1506
1507 if (cl->next_alive != NULL)
1508 cbq_deactivate_class(cl);
1509
1510 if (rtab) {
Patrick McHardyb94c8af2008-11-20 04:11:36 -08001511 qdisc_put_rtab(cl->R_tab);
1512 cl->R_tab = rtab;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 }
1514
Patrick McHardy1e904742008-01-22 22:11:17 -08001515 if (tb[TCA_CBQ_LSSOPT])
1516 cbq_set_lss(cl, nla_data(tb[TCA_CBQ_LSSOPT]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
Patrick McHardy1e904742008-01-22 22:11:17 -08001518 if (tb[TCA_CBQ_WRROPT]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 cbq_rmprio(q, cl);
Patrick McHardy1e904742008-01-22 22:11:17 -08001520 cbq_set_wrr(cl, nla_data(tb[TCA_CBQ_WRROPT]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 }
1522
Patrick McHardy1e904742008-01-22 22:11:17 -08001523 if (tb[TCA_CBQ_FOPT])
1524 cbq_set_fopt(cl, nla_data(tb[TCA_CBQ_FOPT]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
1526 if (cl->q->q.qlen)
1527 cbq_activate_class(cl);
1528
1529 sch_tree_unlock(sch);
1530
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 return 0;
1532 }
1533
1534 if (parentid == TC_H_ROOT)
1535 return -EINVAL;
1536
Alexander Aringac8ef4a2017-12-20 12:35:11 -05001537 if (!tb[TCA_CBQ_WRROPT] || !tb[TCA_CBQ_RATE] || !tb[TCA_CBQ_LSSOPT])
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 return -EINVAL;
1539
Alexander Aringe9bc3fa2017-12-20 12:35:18 -05001540 rtab = qdisc_get_rtab(nla_data(tb[TCA_CBQ_RATE]), tb[TCA_CBQ_RTAB],
1541 extack);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 if (rtab == NULL)
1543 return -EINVAL;
1544
1545 if (classid) {
1546 err = -EINVAL;
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001547 if (TC_H_MAJ(classid ^ sch->handle) ||
1548 cbq_class_lookup(q, classid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 goto failure;
1550 } else {
1551 int i;
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001552 classid = TC_H_MAKE(sch->handle, 0x8000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001554 for (i = 0; i < 0x8000; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 if (++q->hgenerator >= 0x8000)
1556 q->hgenerator = 1;
1557 if (cbq_class_lookup(q, classid|q->hgenerator) == NULL)
1558 break;
1559 }
1560 err = -ENOSR;
1561 if (i >= 0x8000)
1562 goto failure;
1563 classid = classid|q->hgenerator;
1564 }
1565
1566 parent = &q->link;
1567 if (parentid) {
1568 parent = cbq_class_lookup(q, parentid);
1569 err = -EINVAL;
Alexander Aringac8ef4a2017-12-20 12:35:11 -05001570 if (!parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 goto failure;
1572 }
1573
1574 err = -ENOBUFS;
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001575 cl = kzalloc(sizeof(*cl), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 if (cl == NULL)
1577 goto failure;
Stephen Hemminger71bcb092008-11-25 21:13:31 -08001578
Alexander Aring8d1a77f2017-12-20 12:35:19 -05001579 err = tcf_block_get(&cl->block, &cl->filter_list, sch, extack);
Jiri Pirko6529eab2017-05-17 11:07:55 +02001580 if (err) {
1581 kfree(cl);
1582 return err;
1583 }
1584
Stephen Hemminger71bcb092008-11-25 21:13:31 -08001585 if (tca[TCA_RATE]) {
John Fastabend22e0f8b2014-09-28 11:52:56 -07001586 err = gen_new_estimator(&cl->bstats, NULL, &cl->rate_est,
Eric Dumazetedb09eb2016-06-06 09:37:16 -07001587 NULL,
1588 qdisc_root_sleeping_running(sch),
Stephen Hemminger71bcb092008-11-25 21:13:31 -08001589 tca[TCA_RATE]);
1590 if (err) {
Jiri Pirko6529eab2017-05-17 11:07:55 +02001591 tcf_block_put(cl->block);
Stephen Hemminger71bcb092008-11-25 21:13:31 -08001592 kfree(cl);
1593 goto failure;
1594 }
1595 }
1596
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 cl->R_tab = rtab;
1598 rtab = NULL;
Changli Gao3511c912010-10-16 13:04:08 +00001599 cl->q = qdisc_create_dflt(sch->dev_queue, &pfifo_qdisc_ops, classid);
1600 if (!cl->q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 cl->q = &noop_qdisc;
Jiri Kosina49b49972017-03-08 16:03:32 +01001602 else
1603 qdisc_hash_add(cl->q, true);
1604
Patrick McHardyd77fea22008-07-05 23:22:05 -07001605 cl->common.classid = classid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 cl->tparent = parent;
1607 cl->qdisc = sch;
1608 cl->allot = parent->allot;
1609 cl->quantum = cl->allot;
1610 cl->weight = cl->R_tab->rate.rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
1612 sch_tree_lock(sch);
1613 cbq_link_class(cl);
1614 cl->borrow = cl->tparent;
1615 if (cl->tparent != &q->link)
1616 cl->share = cl->tparent;
1617 cbq_adjust_levels(parent);
1618 cl->minidle = -0x7FFFFFFF;
Patrick McHardy1e904742008-01-22 22:11:17 -08001619 cbq_set_lss(cl, nla_data(tb[TCA_CBQ_LSSOPT]));
1620 cbq_set_wrr(cl, nla_data(tb[TCA_CBQ_WRROPT]));
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001621 if (cl->ewma_log == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 cl->ewma_log = q->link.ewma_log;
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001623 if (cl->maxidle == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 cl->maxidle = q->link.maxidle;
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001625 if (cl->avpkt == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 cl->avpkt = q->link.avpkt;
Patrick McHardy1e904742008-01-22 22:11:17 -08001627 if (tb[TCA_CBQ_FOPT])
1628 cbq_set_fopt(cl, nla_data(tb[TCA_CBQ_FOPT]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 sch_tree_unlock(sch);
1630
Patrick McHardyd77fea22008-07-05 23:22:05 -07001631 qdisc_class_hash_grow(sch, &q->clhash);
1632
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 *arg = (unsigned long)cl;
1634 return 0;
1635
1636failure:
1637 qdisc_put_rtab(rtab);
1638 return err;
1639}
1640
1641static int cbq_delete(struct Qdisc *sch, unsigned long arg)
1642{
1643 struct cbq_sched_data *q = qdisc_priv(sch);
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001644 struct cbq_class *cl = (struct cbq_class *)arg;
WANG Cong2ccccf52016-02-25 14:55:01 -08001645 unsigned int qlen, backlog;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646
1647 if (cl->filters || cl->children || cl == &q->link)
1648 return -EBUSY;
1649
1650 sch_tree_lock(sch);
1651
Jarek Poplawskia37ef2e2006-12-08 00:25:55 -08001652 qlen = cl->q->q.qlen;
WANG Cong2ccccf52016-02-25 14:55:01 -08001653 backlog = cl->q->qstats.backlog;
Jarek Poplawskia37ef2e2006-12-08 00:25:55 -08001654 qdisc_reset(cl->q);
WANG Cong2ccccf52016-02-25 14:55:01 -08001655 qdisc_tree_reduce_backlog(cl->q, qlen, backlog);
Jarek Poplawskia37ef2e2006-12-08 00:25:55 -08001656
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 if (cl->next_alive)
1658 cbq_deactivate_class(cl);
1659
1660 if (q->tx_borrowed == cl)
1661 q->tx_borrowed = q->tx_class;
1662 if (q->tx_class == cl) {
1663 q->tx_class = NULL;
1664 q->tx_borrowed = NULL;
1665 }
Patrick McHardyc3bc7cf2007-07-15 00:03:05 -07001666#ifdef CONFIG_NET_CLS_ACT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 if (q->rx_class == cl)
1668 q->rx_class = NULL;
1669#endif
1670
1671 cbq_unlink_class(cl);
1672 cbq_adjust_levels(cl->tparent);
1673 cl->defmap = 0;
1674 cbq_sync_defmap(cl);
1675
1676 cbq_rmprio(q, cl);
1677 sch_tree_unlock(sch);
1678
WANG Cong143976c2017-08-24 16:51:29 -07001679 cbq_destroy_class(sch, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 return 0;
1681}
1682
Alexander Aringcbaacc42017-12-20 12:35:16 -05001683static struct tcf_block *cbq_tcf_block(struct Qdisc *sch, unsigned long arg,
1684 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685{
1686 struct cbq_sched_data *q = qdisc_priv(sch);
1687 struct cbq_class *cl = (struct cbq_class *)arg;
1688
1689 if (cl == NULL)
1690 cl = &q->link;
1691
Jiri Pirko6529eab2017-05-17 11:07:55 +02001692 return cl->block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693}
1694
1695static unsigned long cbq_bind_filter(struct Qdisc *sch, unsigned long parent,
1696 u32 classid)
1697{
1698 struct cbq_sched_data *q = qdisc_priv(sch);
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001699 struct cbq_class *p = (struct cbq_class *)parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 struct cbq_class *cl = cbq_class_lookup(q, classid);
1701
1702 if (cl) {
1703 if (p && p->level <= cl->level)
1704 return 0;
1705 cl->filters++;
1706 return (unsigned long)cl;
1707 }
1708 return 0;
1709}
1710
1711static void cbq_unbind_filter(struct Qdisc *sch, unsigned long arg)
1712{
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001713 struct cbq_class *cl = (struct cbq_class *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714
1715 cl->filters--;
1716}
1717
1718static void cbq_walk(struct Qdisc *sch, struct qdisc_walker *arg)
1719{
1720 struct cbq_sched_data *q = qdisc_priv(sch);
Patrick McHardyd77fea22008-07-05 23:22:05 -07001721 struct cbq_class *cl;
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001722 unsigned int h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723
1724 if (arg->stop)
1725 return;
1726
Patrick McHardyd77fea22008-07-05 23:22:05 -07001727 for (h = 0; h < q->clhash.hashsize; h++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001728 hlist_for_each_entry(cl, &q->clhash.hash[h], common.hnode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 if (arg->count < arg->skip) {
1730 arg->count++;
1731 continue;
1732 }
1733 if (arg->fn(sch, (unsigned long)cl, arg) < 0) {
1734 arg->stop = 1;
1735 return;
1736 }
1737 arg->count++;
1738 }
1739 }
1740}
1741
Eric Dumazet20fea082007-11-14 01:44:41 -08001742static const struct Qdisc_class_ops cbq_class_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 .graft = cbq_graft,
1744 .leaf = cbq_leaf,
Jarek Poplawskia37ef2e2006-12-08 00:25:55 -08001745 .qlen_notify = cbq_qlen_notify,
WANG Cong143976c2017-08-24 16:51:29 -07001746 .find = cbq_find,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 .change = cbq_change_class,
1748 .delete = cbq_delete,
1749 .walk = cbq_walk,
Jiri Pirko6529eab2017-05-17 11:07:55 +02001750 .tcf_block = cbq_tcf_block,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 .bind_tcf = cbq_bind_filter,
1752 .unbind_tcf = cbq_unbind_filter,
1753 .dump = cbq_dump_class,
1754 .dump_stats = cbq_dump_class_stats,
1755};
1756
Eric Dumazet20fea082007-11-14 01:44:41 -08001757static struct Qdisc_ops cbq_qdisc_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 .next = NULL,
1759 .cl_ops = &cbq_class_ops,
1760 .id = "cbq",
1761 .priv_size = sizeof(struct cbq_sched_data),
1762 .enqueue = cbq_enqueue,
1763 .dequeue = cbq_dequeue,
Jarek Poplawski77be1552008-10-31 00:47:01 -07001764 .peek = qdisc_peek_dequeued,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 .init = cbq_init,
1766 .reset = cbq_reset,
1767 .destroy = cbq_destroy,
1768 .change = NULL,
1769 .dump = cbq_dump,
1770 .dump_stats = cbq_dump_stats,
1771 .owner = THIS_MODULE,
1772};
1773
1774static int __init cbq_module_init(void)
1775{
1776 return register_qdisc(&cbq_qdisc_ops);
1777}
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +09001778static void __exit cbq_module_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779{
1780 unregister_qdisc(&cbq_qdisc_ops);
1781}
1782module_init(cbq_module_init)
1783module_exit(cbq_module_exit)
1784MODULE_LICENSE("GPL");