Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/module.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 14 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/types.h> |
| 16 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/string.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/errno.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/skbuff.h> |
Patrick McHardy | 0ba4805 | 2007-07-02 22:49:07 -0700 | [diff] [blame] | 20 | #include <net/netlink.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <net/pkt_sched.h> |
Jiri Pirko | cf1facd | 2017-02-09 14:38:56 +0100 | [diff] [blame] | 22 | #include <net/pkt_cls.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | |
| 24 | |
| 25 | /* Class-Based Queueing (CBQ) algorithm. |
| 26 | ======================================= |
| 27 | |
| 28 | Sources: [1] Sally Floyd and Van Jacobson, "Link-sharing and Resource |
YOSHIFUJI Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 29 | Management Models for Packet Networks", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | IEEE/ACM Transactions on Networking, Vol.3, No.4, 1995 |
| 31 | |
YOSHIFUJI Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 32 | [2] Sally Floyd, "Notes on CBQ and Guaranteed Service", 1995 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | |
YOSHIFUJI Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 34 | [3] Sally Floyd, "Notes on Class-Based Queueing: Setting |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | 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 Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 48 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
| 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 | |
| 73 | struct cbq_sched_data; |
| 74 | |
| 75 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 76 | struct cbq_class { |
Patrick McHardy | d77fea2 | 2008-07-05 23:22:05 -0700 | [diff] [blame] | 77 | struct Qdisc_class_common common; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | struct cbq_class *next_alive; /* next class with backlog in this priority band */ |
| 79 | |
| 80 | /* Parameters */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | /* 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 McHardy | 1a13cb6 | 2007-03-16 01:22:20 -0700 | [diff] [blame] | 123 | psched_time_t penalized; |
Eric Dumazet | c1a8f1f | 2009-08-16 09:36:49 +0000 | [diff] [blame] | 124 | struct gnet_stats_basic_packed bstats; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | struct gnet_stats_queue qstats; |
Eric Dumazet | 1c0d32f | 2016-12-04 09:48:16 -0800 | [diff] [blame] | 126 | struct net_rate_estimator __rcu *rate_est; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | struct tc_cbq_xstats xstats; |
| 128 | |
John Fastabend | 25d8c0d | 2014-09-12 20:05:27 -0700 | [diff] [blame] | 129 | struct tcf_proto __rcu *filter_list; |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 130 | struct tcf_block *block; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | int filters; |
| 133 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 134 | struct cbq_class *defaults[TC_PRIO_MAX + 1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | }; |
| 136 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 137 | struct cbq_sched_data { |
Patrick McHardy | d77fea2 | 2008-07-05 23:22:05 -0700 | [diff] [blame] | 138 | struct Qdisc_class_hash clhash; /* Hash table of all classes */ |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 139 | int nclasses[TC_CBQ_MAXPRIO + 1]; |
| 140 | unsigned int quanta[TC_CBQ_MAXPRIO + 1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | |
| 142 | struct cbq_class link; |
| 143 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 144 | unsigned int activemask; |
| 145 | struct cbq_class *active[TC_CBQ_MAXPRIO + 1]; /* List of all classes |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | with backlog */ |
| 147 | |
Patrick McHardy | c3bc7cf | 2007-07-15 00:03:05 -0700 | [diff] [blame] | 148 | #ifdef CONFIG_NET_CLS_ACT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | 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 Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 155 | unsigned int pmask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | |
David S. Miller | 2fbd3da | 2009-09-01 17:59:25 -0700 | [diff] [blame] | 157 | struct hrtimer delay_timer; |
Patrick McHardy | 88a9935 | 2007-03-16 01:21:11 -0700 | [diff] [blame] | 158 | struct qdisc_watchdog watchdog; /* Watchdog timer, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | started when CBQ has |
| 160 | backlog, but cannot |
| 161 | transmit just now */ |
Patrick McHardy | 88a9935 | 2007-03-16 01:21:11 -0700 | [diff] [blame] | 162 | psched_tdiff_t wd_expires; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | int toplevel; |
| 164 | u32 hgenerator; |
| 165 | }; |
| 166 | |
| 167 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 168 | #define L2T(cl, len) qdisc_l2t((cl)->R_tab, len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 170 | static inline struct cbq_class * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | cbq_class_lookup(struct cbq_sched_data *q, u32 classid) |
| 172 | { |
Patrick McHardy | d77fea2 | 2008-07-05 23:22:05 -0700 | [diff] [blame] | 173 | struct Qdisc_class_common *clc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | |
Patrick McHardy | d77fea2 | 2008-07-05 23:22:05 -0700 | [diff] [blame] | 175 | clc = qdisc_class_find(&q->clhash, classid); |
| 176 | if (clc == NULL) |
| 177 | return NULL; |
| 178 | return container_of(clc, struct cbq_class, common); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | } |
| 180 | |
Patrick McHardy | c3bc7cf | 2007-07-15 00:03:05 -0700 | [diff] [blame] | 181 | #ifdef CONFIG_NET_CLS_ACT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | |
| 183 | static struct cbq_class * |
| 184 | cbq_reclassify(struct sk_buff *skb, struct cbq_class *this) |
| 185 | { |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 186 | struct cbq_class *cl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 188 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | return new; |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 193 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | return NULL; |
| 195 | } |
| 196 | |
| 197 | #endif |
| 198 | |
| 199 | /* Classify packet. The procedure is pretty complicated, but |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 200 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | */ |
| 208 | |
| 209 | static struct cbq_class * |
| 210 | cbq_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 Fastabend | 25d8c0d | 2014-09-12 20:05:27 -0700 | [diff] [blame] | 217 | struct tcf_proto *fl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | struct tcf_result res; |
| 219 | |
| 220 | /* |
| 221 | * Step 1. If skb->priority points to one of our classes, use it. |
| 222 | */ |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 223 | if (TC_H_MAJ(prio ^ sch->handle) == 0 && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | (cl = cbq_class_lookup(q, prio)) != NULL) |
| 225 | return cl; |
| 226 | |
Jarek Poplawski | c27f339 | 2008-08-04 22:39:11 -0700 | [diff] [blame] | 227 | *qerr = NET_XMIT_SUCCESS | __NET_XMIT_BYPASS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | for (;;) { |
| 229 | int result = 0; |
| 230 | defmap = head->defaults; |
| 231 | |
John Fastabend | 25d8c0d | 2014-09-12 20:05:27 -0700 | [diff] [blame] | 232 | fl = rcu_dereference_bh(head->filter_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | /* |
| 234 | * Step 2+n. Apply classifier. |
| 235 | */ |
Jiri Pirko | 87d8309 | 2017-05-17 11:07:54 +0200 | [diff] [blame] | 236 | result = tcf_classify(skb, fl, &res, true); |
John Fastabend | 25d8c0d | 2014-09-12 20:05:27 -0700 | [diff] [blame] | 237 | if (!fl || result < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | goto fallback; |
| 239 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 240 | cl = (void *)res.class; |
| 241 | if (!cl) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | if (TC_H_MAJ(res.classid)) |
| 243 | cl = cbq_class_lookup(q, res.classid); |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 244 | else if ((cl = defmap[res.classid & TC_PRIO_MAX]) == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | cl = defmap[TC_PRIO_BESTEFFORT]; |
| 246 | |
Eric Dumazet | bdfc87f | 2012-09-11 13:11:12 +0000 | [diff] [blame] | 247 | if (cl == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | goto fallback; |
| 249 | } |
Eric Dumazet | bdfc87f | 2012-09-11 13:11:12 +0000 | [diff] [blame] | 250 | if (cl->level >= head->level) |
| 251 | goto fallback; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | #ifdef CONFIG_NET_CLS_ACT |
| 253 | switch (result) { |
| 254 | case TC_ACT_QUEUED: |
YOSHIFUJI Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 255 | case TC_ACT_STOLEN: |
Jiri Pirko | e25ea21 | 2017-06-06 14:12:02 +0200 | [diff] [blame] | 256 | case TC_ACT_TRAP: |
Jarek Poplawski | 378a2f0 | 2008-08-04 22:31:03 -0700 | [diff] [blame] | 257 | *qerr = NET_XMIT_SUCCESS | __NET_XMIT_STOLEN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | case TC_ACT_SHOT: |
| 259 | return NULL; |
Patrick McHardy | 73ca491 | 2007-07-15 00:02:31 -0700 | [diff] [blame] | 260 | case TC_ACT_RECLASSIFY: |
| 261 | return cbq_reclassify(skb, cl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | #endif |
| 264 | if (cl->level == 0) |
| 265 | return cl; |
| 266 | |
| 267 | /* |
| 268 | * Step 3+n. If classifier selected a link sharing class, |
| 269 | * apply agency specific classifier. |
| 270 | * Repeat this procdure until we hit a leaf node. |
| 271 | */ |
| 272 | head = cl; |
| 273 | } |
| 274 | |
| 275 | fallback: |
| 276 | cl = head; |
| 277 | |
| 278 | /* |
| 279 | * Step 4. No success... |
| 280 | */ |
| 281 | if (TC_H_MAJ(prio) == 0 && |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 282 | !(cl = head->defaults[prio & TC_PRIO_MAX]) && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | !(cl = head->defaults[TC_PRIO_BESTEFFORT])) |
| 284 | return head; |
| 285 | |
| 286 | return cl; |
| 287 | } |
| 288 | |
| 289 | /* |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 290 | * A packet has just been enqueued on the empty class. |
| 291 | * cbq_activate_class adds it to the tail of active class list |
| 292 | * of its priority band. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | */ |
| 294 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 295 | static inline void cbq_activate_class(struct cbq_class *cl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | { |
| 297 | struct cbq_sched_data *q = qdisc_priv(cl->qdisc); |
| 298 | int prio = cl->cpriority; |
| 299 | struct cbq_class *cl_tail; |
| 300 | |
| 301 | cl_tail = q->active[prio]; |
| 302 | q->active[prio] = cl; |
| 303 | |
| 304 | if (cl_tail != NULL) { |
| 305 | cl->next_alive = cl_tail->next_alive; |
| 306 | cl_tail->next_alive = cl; |
| 307 | } else { |
| 308 | cl->next_alive = cl; |
| 309 | q->activemask |= (1<<prio); |
| 310 | } |
| 311 | } |
| 312 | |
| 313 | /* |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 314 | * Unlink class from active chain. |
| 315 | * Note that this same procedure is done directly in cbq_dequeue* |
| 316 | * during round-robin procedure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | */ |
| 318 | |
| 319 | static void cbq_deactivate_class(struct cbq_class *this) |
| 320 | { |
| 321 | struct cbq_sched_data *q = qdisc_priv(this->qdisc); |
| 322 | int prio = this->cpriority; |
| 323 | struct cbq_class *cl; |
| 324 | struct cbq_class *cl_prev = q->active[prio]; |
| 325 | |
| 326 | do { |
| 327 | cl = cl_prev->next_alive; |
| 328 | if (cl == this) { |
| 329 | cl_prev->next_alive = cl->next_alive; |
| 330 | cl->next_alive = NULL; |
| 331 | |
| 332 | if (cl == q->active[prio]) { |
| 333 | q->active[prio] = cl_prev; |
| 334 | if (cl == q->active[prio]) { |
| 335 | q->active[prio] = NULL; |
| 336 | q->activemask &= ~(1<<prio); |
| 337 | return; |
| 338 | } |
| 339 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | return; |
| 341 | } |
| 342 | } while ((cl_prev = cl) != q->active[prio]); |
| 343 | } |
| 344 | |
| 345 | static void |
| 346 | cbq_mark_toplevel(struct cbq_sched_data *q, struct cbq_class *cl) |
| 347 | { |
| 348 | int toplevel = q->toplevel; |
| 349 | |
Eric Dumazet | cca605d | 2016-06-10 16:41:37 -0700 | [diff] [blame] | 350 | if (toplevel > cl->level) { |
Vasily Averin | 7201c1d | 2014-08-14 12:27:59 +0400 | [diff] [blame] | 351 | psched_time_t now = psched_get_time(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | |
| 353 | do { |
Patrick McHardy | 104e087 | 2007-03-23 11:28:07 -0700 | [diff] [blame] | 354 | if (cl->undertime < now) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | q->toplevel = cl->level; |
| 356 | return; |
| 357 | } |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 358 | } while ((cl = cl->borrow) != NULL && toplevel > cl->level); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | } |
| 360 | } |
| 361 | |
| 362 | static int |
Eric Dumazet | 520ac30 | 2016-06-21 23:16:49 -0700 | [diff] [blame] | 363 | cbq_enqueue(struct sk_buff *skb, struct Qdisc *sch, |
| 364 | struct sk_buff **to_free) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | { |
| 366 | struct cbq_sched_data *q = qdisc_priv(sch); |
Satyam Sharma | ddeee3c | 2007-09-16 14:54:05 -0700 | [diff] [blame] | 367 | int uninitialized_var(ret); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | struct cbq_class *cl = cbq_classify(skb, sch, &ret); |
| 369 | |
Patrick McHardy | c3bc7cf | 2007-07-15 00:03:05 -0700 | [diff] [blame] | 370 | #ifdef CONFIG_NET_CLS_ACT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | q->rx_class = cl; |
| 372 | #endif |
| 373 | if (cl == NULL) { |
Jarek Poplawski | c27f339 | 2008-08-04 22:39:11 -0700 | [diff] [blame] | 374 | if (ret & __NET_XMIT_BYPASS) |
John Fastabend | 25331d6 | 2014-09-28 11:53:29 -0700 | [diff] [blame] | 375 | qdisc_qstats_drop(sch); |
Eric Dumazet | 520ac30 | 2016-06-21 23:16:49 -0700 | [diff] [blame] | 376 | __qdisc_drop(skb, to_free); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | return ret; |
| 378 | } |
| 379 | |
Eric Dumazet | 520ac30 | 2016-06-21 23:16:49 -0700 | [diff] [blame] | 380 | ret = qdisc_enqueue(skb, cl->q, to_free); |
Jussi Kivilinna | 5f86173 | 2008-07-20 00:08:04 -0700 | [diff] [blame] | 381 | if (ret == NET_XMIT_SUCCESS) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | sch->q.qlen++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | cbq_mark_toplevel(q, cl); |
| 384 | if (!cl->next_alive) |
| 385 | cbq_activate_class(cl); |
| 386 | return ret; |
| 387 | } |
| 388 | |
Jarek Poplawski | 378a2f0 | 2008-08-04 22:31:03 -0700 | [diff] [blame] | 389 | if (net_xmit_drop_count(ret)) { |
John Fastabend | 25331d6 | 2014-09-28 11:53:29 -0700 | [diff] [blame] | 390 | qdisc_qstats_drop(sch); |
Jarek Poplawski | 378a2f0 | 2008-08-04 22:31:03 -0700 | [diff] [blame] | 391 | cbq_mark_toplevel(q, cl); |
| 392 | cl->qstats.drops++; |
| 393 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | return ret; |
| 395 | } |
| 396 | |
Florian Westphal | c3498d3 | 2016-06-09 00:27:39 +0200 | [diff] [blame] | 397 | /* Overlimit action: penalize leaf class by adding offtime */ |
| 398 | static void cbq_overlimit(struct cbq_class *cl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | { |
| 400 | struct cbq_sched_data *q = qdisc_priv(cl->qdisc); |
Patrick McHardy | 8edc0c3 | 2007-03-23 11:28:55 -0700 | [diff] [blame] | 401 | psched_tdiff_t delay = cl->undertime - q->now; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | |
| 403 | if (!cl->delayed) { |
| 404 | delay += cl->offtime; |
| 405 | |
YOSHIFUJI Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 406 | /* |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 407 | * Class goes to sleep, so that it will have no |
| 408 | * chance to work avgidle. Let's forgive it 8) |
| 409 | * |
| 410 | * BTW cbq-2.0 has a crap in this |
| 411 | * place, apparently they forgot to shift it by cl->ewma_log. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | */ |
| 413 | if (cl->avgidle < 0) |
| 414 | delay -= (-cl->avgidle) - ((-cl->avgidle) >> cl->ewma_log); |
| 415 | if (cl->avgidle < cl->minidle) |
| 416 | cl->avgidle = cl->minidle; |
| 417 | if (delay <= 0) |
| 418 | delay = 1; |
Patrick McHardy | 7c59e25 | 2007-03-23 11:27:45 -0700 | [diff] [blame] | 419 | cl->undertime = q->now + delay; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | |
| 421 | cl->xstats.overactions++; |
| 422 | cl->delayed = 1; |
| 423 | } |
| 424 | if (q->wd_expires == 0 || q->wd_expires > delay) |
| 425 | q->wd_expires = delay; |
| 426 | |
| 427 | /* Dirty work! We must schedule wakeups based on |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 428 | * real available rate, rather than leaf rate, |
| 429 | * which may be tiny (even zero). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | */ |
| 431 | if (q->toplevel == TC_CBQ_MAXLEVEL) { |
| 432 | struct cbq_class *b; |
| 433 | psched_tdiff_t base_delay = q->wd_expires; |
| 434 | |
| 435 | for (b = cl->borrow; b; b = b->borrow) { |
Patrick McHardy | 8edc0c3 | 2007-03-23 11:28:55 -0700 | [diff] [blame] | 436 | delay = b->undertime - q->now; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | if (delay < base_delay) { |
| 438 | if (delay <= 0) |
| 439 | delay = 1; |
| 440 | base_delay = delay; |
| 441 | } |
| 442 | } |
| 443 | |
| 444 | q->wd_expires = base_delay; |
| 445 | } |
| 446 | } |
| 447 | |
Patrick McHardy | 1a13cb6 | 2007-03-16 01:22:20 -0700 | [diff] [blame] | 448 | static psched_tdiff_t cbq_undelay_prio(struct cbq_sched_data *q, int prio, |
| 449 | psched_time_t now) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | { |
| 451 | struct cbq_class *cl; |
| 452 | struct cbq_class *cl_prev = q->active[prio]; |
Patrick McHardy | 1a13cb6 | 2007-03-16 01:22:20 -0700 | [diff] [blame] | 453 | psched_time_t sched = now; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | |
| 455 | if (cl_prev == NULL) |
Patrick McHardy | e9054a3 | 2007-03-16 01:21:40 -0700 | [diff] [blame] | 456 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | |
| 458 | do { |
| 459 | cl = cl_prev->next_alive; |
Patrick McHardy | 1a13cb6 | 2007-03-16 01:22:20 -0700 | [diff] [blame] | 460 | if (now - cl->penalized > 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | cl_prev->next_alive = cl->next_alive; |
| 462 | cl->next_alive = NULL; |
| 463 | cl->cpriority = cl->priority; |
| 464 | cl->delayed = 0; |
| 465 | cbq_activate_class(cl); |
| 466 | |
| 467 | if (cl == q->active[prio]) { |
| 468 | q->active[prio] = cl_prev; |
| 469 | if (cl == q->active[prio]) { |
| 470 | q->active[prio] = NULL; |
| 471 | return 0; |
| 472 | } |
| 473 | } |
| 474 | |
| 475 | cl = cl_prev->next_alive; |
Patrick McHardy | 1a13cb6 | 2007-03-16 01:22:20 -0700 | [diff] [blame] | 476 | } else if (sched - cl->penalized > 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | sched = cl->penalized; |
| 478 | } while ((cl_prev = cl) != q->active[prio]); |
| 479 | |
Patrick McHardy | 1a13cb6 | 2007-03-16 01:22:20 -0700 | [diff] [blame] | 480 | return sched - now; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | } |
| 482 | |
Patrick McHardy | 1a13cb6 | 2007-03-16 01:22:20 -0700 | [diff] [blame] | 483 | static enum hrtimer_restart cbq_undelay(struct hrtimer *timer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | { |
Patrick McHardy | 1a13cb6 | 2007-03-16 01:22:20 -0700 | [diff] [blame] | 485 | struct cbq_sched_data *q = container_of(timer, struct cbq_sched_data, |
David S. Miller | 2fbd3da | 2009-09-01 17:59:25 -0700 | [diff] [blame] | 486 | delay_timer); |
Patrick McHardy | 1a13cb6 | 2007-03-16 01:22:20 -0700 | [diff] [blame] | 487 | struct Qdisc *sch = q->watchdog.qdisc; |
| 488 | psched_time_t now; |
| 489 | psched_tdiff_t delay = 0; |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 490 | unsigned int pmask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 | |
Patrick McHardy | 3bebcda | 2007-03-23 11:29:25 -0700 | [diff] [blame] | 492 | now = psched_get_time(); |
Patrick McHardy | 1a13cb6 | 2007-03-16 01:22:20 -0700 | [diff] [blame] | 493 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | pmask = q->pmask; |
| 495 | q->pmask = 0; |
| 496 | |
| 497 | while (pmask) { |
| 498 | int prio = ffz(~pmask); |
Patrick McHardy | 1a13cb6 | 2007-03-16 01:22:20 -0700 | [diff] [blame] | 499 | psched_tdiff_t tmp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | |
| 501 | pmask &= ~(1<<prio); |
| 502 | |
Patrick McHardy | 1a13cb6 | 2007-03-16 01:22:20 -0700 | [diff] [blame] | 503 | tmp = cbq_undelay_prio(q, prio, now); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | if (tmp > 0) { |
| 505 | q->pmask |= 1<<prio; |
| 506 | if (tmp < delay || delay == 0) |
| 507 | delay = tmp; |
| 508 | } |
| 509 | } |
| 510 | |
| 511 | if (delay) { |
Patrick McHardy | 1a13cb6 | 2007-03-16 01:22:20 -0700 | [diff] [blame] | 512 | ktime_t time; |
| 513 | |
Thomas Gleixner | 8b0e195 | 2016-12-25 12:30:41 +0100 | [diff] [blame] | 514 | time = 0; |
Jarek Poplawski | ca44d6e | 2009-06-15 02:31:47 -0700 | [diff] [blame] | 515 | time = ktime_add_ns(time, PSCHED_TICKS2NS(now + delay)); |
Eric Dumazet | 4a8e320 | 2014-09-20 18:01:30 -0700 | [diff] [blame] | 516 | hrtimer_start(&q->delay_timer, time, HRTIMER_MODE_ABS_PINNED); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | } |
| 518 | |
David S. Miller | 8608db0 | 2008-08-18 20:51:18 -0700 | [diff] [blame] | 519 | __netif_schedule(qdisc_root(sch)); |
Patrick McHardy | 1a13cb6 | 2007-03-16 01:22:20 -0700 | [diff] [blame] | 520 | return HRTIMER_NORESTART; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | } |
| 522 | |
YOSHIFUJI Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 523 | /* |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 524 | * It is mission critical procedure. |
| 525 | * |
| 526 | * We "regenerate" toplevel cutoff, if transmitting class |
| 527 | * has backlog and it is not regulated. It is not part of |
| 528 | * original CBQ description, but looks more reasonable. |
| 529 | * Probably, it is wrong. This question needs further investigation. |
| 530 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 532 | static inline void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | cbq_update_toplevel(struct cbq_sched_data *q, struct cbq_class *cl, |
| 534 | struct cbq_class *borrowed) |
| 535 | { |
| 536 | if (cl && q->toplevel >= borrowed->level) { |
| 537 | if (cl->q->q.qlen > 1) { |
| 538 | do { |
Patrick McHardy | a084980 | 2007-03-23 11:28:30 -0700 | [diff] [blame] | 539 | if (borrowed->undertime == PSCHED_PASTPERFECT) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | q->toplevel = borrowed->level; |
| 541 | return; |
| 542 | } |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 543 | } while ((borrowed = borrowed->borrow) != NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | } |
YOSHIFUJI Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 545 | #if 0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | /* It is not necessary now. Uncommenting it |
| 547 | will save CPU cycles, but decrease fairness. |
| 548 | */ |
| 549 | q->toplevel = TC_CBQ_MAXLEVEL; |
| 550 | #endif |
| 551 | } |
| 552 | } |
| 553 | |
| 554 | static void |
| 555 | cbq_update(struct cbq_sched_data *q) |
| 556 | { |
| 557 | struct cbq_class *this = q->tx_class; |
| 558 | struct cbq_class *cl = this; |
| 559 | int len = q->tx_len; |
Vasily Averin | 73d0f37 | 2014-08-14 12:27:47 +0400 | [diff] [blame] | 560 | psched_time_t now; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | |
| 562 | q->tx_class = NULL; |
Vasily Averin | 73d0f37 | 2014-08-14 12:27:47 +0400 | [diff] [blame] | 563 | /* Time integrator. We calculate EOS time |
| 564 | * by adding expected packet transmission time. |
| 565 | */ |
| 566 | now = q->now + L2T(&q->link, len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | |
| 568 | for ( ; cl; cl = cl->share) { |
| 569 | long avgidle = cl->avgidle; |
| 570 | long idle; |
| 571 | |
| 572 | cl->bstats.packets++; |
| 573 | cl->bstats.bytes += len; |
| 574 | |
| 575 | /* |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 576 | * (now - last) is total time between packet right edges. |
| 577 | * (last_pktlen/rate) is "virtual" busy time, so that |
| 578 | * |
| 579 | * idle = (now - last) - last_pktlen/rate |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | */ |
| 581 | |
Vasily Averin | 73d0f37 | 2014-08-14 12:27:47 +0400 | [diff] [blame] | 582 | idle = now - cl->last; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | if ((unsigned long)idle > 128*1024*1024) { |
| 584 | avgidle = cl->maxidle; |
| 585 | } else { |
| 586 | idle -= L2T(cl, len); |
| 587 | |
| 588 | /* true_avgidle := (1-W)*true_avgidle + W*idle, |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 589 | * where W=2^{-ewma_log}. But cl->avgidle is scaled: |
| 590 | * cl->avgidle == true_avgidle/W, |
| 591 | * hence: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | */ |
| 593 | avgidle += idle - (avgidle>>cl->ewma_log); |
| 594 | } |
| 595 | |
| 596 | if (avgidle <= 0) { |
| 597 | /* Overlimit or at-limit */ |
| 598 | |
| 599 | if (avgidle < cl->minidle) |
| 600 | avgidle = cl->minidle; |
| 601 | |
| 602 | cl->avgidle = avgidle; |
| 603 | |
| 604 | /* Calculate expected time, when this class |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 605 | * will be allowed to send. |
| 606 | * It will occur, when: |
| 607 | * (1-W)*true_avgidle + W*delay = 0, i.e. |
| 608 | * idle = (1/W - 1)*(-true_avgidle) |
| 609 | * or |
| 610 | * idle = (1 - W)*(-cl->avgidle); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | */ |
| 612 | idle = (-avgidle) - ((-avgidle) >> cl->ewma_log); |
| 613 | |
| 614 | /* |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 615 | * That is not all. |
| 616 | * To maintain the rate allocated to the class, |
| 617 | * we add to undertime virtual clock, |
| 618 | * necessary to complete transmitted packet. |
| 619 | * (len/phys_bandwidth has been already passed |
| 620 | * to the moment of cbq_update) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | */ |
| 622 | |
| 623 | idle -= L2T(&q->link, len); |
| 624 | idle += L2T(cl, len); |
| 625 | |
Vasily Averin | 73d0f37 | 2014-08-14 12:27:47 +0400 | [diff] [blame] | 626 | cl->undertime = now + idle; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 627 | } else { |
| 628 | /* Underlimit */ |
| 629 | |
Patrick McHardy | a084980 | 2007-03-23 11:28:30 -0700 | [diff] [blame] | 630 | cl->undertime = PSCHED_PASTPERFECT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | if (avgidle > cl->maxidle) |
| 632 | cl->avgidle = cl->maxidle; |
| 633 | else |
| 634 | cl->avgidle = avgidle; |
| 635 | } |
Vasily Averin | 73d0f37 | 2014-08-14 12:27:47 +0400 | [diff] [blame] | 636 | if ((s64)(now - cl->last) > 0) |
| 637 | cl->last = now; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 | } |
| 639 | |
| 640 | cbq_update_toplevel(q, this, q->tx_borrowed); |
| 641 | } |
| 642 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 643 | static inline struct cbq_class * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | cbq_under_limit(struct cbq_class *cl) |
| 645 | { |
| 646 | struct cbq_sched_data *q = qdisc_priv(cl->qdisc); |
| 647 | struct cbq_class *this_cl = cl; |
| 648 | |
| 649 | if (cl->tparent == NULL) |
| 650 | return cl; |
| 651 | |
Patrick McHardy | a084980 | 2007-03-23 11:28:30 -0700 | [diff] [blame] | 652 | if (cl->undertime == PSCHED_PASTPERFECT || q->now >= cl->undertime) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | cl->delayed = 0; |
| 654 | return cl; |
| 655 | } |
| 656 | |
| 657 | do { |
| 658 | /* It is very suspicious place. Now overlimit |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 659 | * action is generated for not bounded classes |
| 660 | * only if link is completely congested. |
| 661 | * Though it is in agree with ancestor-only paradigm, |
| 662 | * it looks very stupid. Particularly, |
| 663 | * it means that this chunk of code will either |
| 664 | * never be called or result in strong amplification |
| 665 | * of burstiness. Dangerous, silly, and, however, |
| 666 | * no another solution exists. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | */ |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 668 | cl = cl->borrow; |
| 669 | if (!cl) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 670 | this_cl->qstats.overlimits++; |
Florian Westphal | c3498d3 | 2016-06-09 00:27:39 +0200 | [diff] [blame] | 671 | cbq_overlimit(this_cl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | return NULL; |
| 673 | } |
| 674 | if (cl->level > q->toplevel) |
| 675 | return NULL; |
Patrick McHardy | a084980 | 2007-03-23 11:28:30 -0700 | [diff] [blame] | 676 | } while (cl->undertime != PSCHED_PASTPERFECT && q->now < cl->undertime); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 677 | |
| 678 | cl->delayed = 0; |
| 679 | return cl; |
| 680 | } |
| 681 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 682 | static inline struct sk_buff * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 683 | cbq_dequeue_prio(struct Qdisc *sch, int prio) |
| 684 | { |
| 685 | struct cbq_sched_data *q = qdisc_priv(sch); |
| 686 | struct cbq_class *cl_tail, *cl_prev, *cl; |
| 687 | struct sk_buff *skb; |
| 688 | int deficit; |
| 689 | |
| 690 | cl_tail = cl_prev = q->active[prio]; |
| 691 | cl = cl_prev->next_alive; |
| 692 | |
| 693 | do { |
| 694 | deficit = 0; |
| 695 | |
| 696 | /* Start round */ |
| 697 | do { |
| 698 | struct cbq_class *borrow = cl; |
| 699 | |
| 700 | if (cl->q->q.qlen && |
| 701 | (borrow = cbq_under_limit(cl)) == NULL) |
| 702 | goto skip_class; |
| 703 | |
| 704 | if (cl->deficit <= 0) { |
| 705 | /* Class exhausted its allotment per |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 706 | * this round. Switch to the next one. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | */ |
| 708 | deficit = 1; |
| 709 | cl->deficit += cl->quantum; |
| 710 | goto next_class; |
| 711 | } |
| 712 | |
| 713 | skb = cl->q->dequeue(cl->q); |
| 714 | |
| 715 | /* Class did not give us any skb :-( |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 716 | * It could occur even if cl->q->q.qlen != 0 |
| 717 | * f.e. if cl->q == "tbf" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 718 | */ |
| 719 | if (skb == NULL) |
| 720 | goto skip_class; |
| 721 | |
Jussi Kivilinna | 0abf77e | 2008-07-20 00:08:27 -0700 | [diff] [blame] | 722 | cl->deficit -= qdisc_pkt_len(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | q->tx_class = cl; |
| 724 | q->tx_borrowed = borrow; |
| 725 | if (borrow != cl) { |
| 726 | #ifndef CBQ_XSTATS_BORROWS_BYTES |
| 727 | borrow->xstats.borrows++; |
| 728 | cl->xstats.borrows++; |
| 729 | #else |
Jussi Kivilinna | 0abf77e | 2008-07-20 00:08:27 -0700 | [diff] [blame] | 730 | borrow->xstats.borrows += qdisc_pkt_len(skb); |
| 731 | cl->xstats.borrows += qdisc_pkt_len(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 732 | #endif |
| 733 | } |
Jussi Kivilinna | 0abf77e | 2008-07-20 00:08:27 -0700 | [diff] [blame] | 734 | q->tx_len = qdisc_pkt_len(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | |
| 736 | if (cl->deficit <= 0) { |
| 737 | q->active[prio] = cl; |
| 738 | cl = cl->next_alive; |
| 739 | cl->deficit += cl->quantum; |
| 740 | } |
| 741 | return skb; |
| 742 | |
| 743 | skip_class: |
| 744 | if (cl->q->q.qlen == 0 || prio != cl->cpriority) { |
| 745 | /* Class is empty or penalized. |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 746 | * Unlink it from active chain. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 | */ |
| 748 | cl_prev->next_alive = cl->next_alive; |
| 749 | cl->next_alive = NULL; |
| 750 | |
| 751 | /* Did cl_tail point to it? */ |
| 752 | if (cl == cl_tail) { |
| 753 | /* Repair it! */ |
| 754 | cl_tail = cl_prev; |
| 755 | |
| 756 | /* Was it the last class in this band? */ |
| 757 | if (cl == cl_tail) { |
| 758 | /* Kill the band! */ |
| 759 | q->active[prio] = NULL; |
| 760 | q->activemask &= ~(1<<prio); |
| 761 | if (cl->q->q.qlen) |
| 762 | cbq_activate_class(cl); |
| 763 | return NULL; |
| 764 | } |
| 765 | |
| 766 | q->active[prio] = cl_tail; |
| 767 | } |
| 768 | if (cl->q->q.qlen) |
| 769 | cbq_activate_class(cl); |
| 770 | |
| 771 | cl = cl_prev; |
| 772 | } |
| 773 | |
| 774 | next_class: |
| 775 | cl_prev = cl; |
| 776 | cl = cl->next_alive; |
| 777 | } while (cl_prev != cl_tail); |
| 778 | } while (deficit); |
| 779 | |
| 780 | q->active[prio] = cl_prev; |
| 781 | |
| 782 | return NULL; |
| 783 | } |
| 784 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 785 | static inline struct sk_buff * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 786 | cbq_dequeue_1(struct Qdisc *sch) |
| 787 | { |
| 788 | struct cbq_sched_data *q = qdisc_priv(sch); |
| 789 | struct sk_buff *skb; |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 790 | unsigned int activemask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 791 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 792 | activemask = q->activemask & 0xFF; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 793 | while (activemask) { |
| 794 | int prio = ffz(~activemask); |
| 795 | activemask &= ~(1<<prio); |
| 796 | skb = cbq_dequeue_prio(sch, prio); |
| 797 | if (skb) |
| 798 | return skb; |
| 799 | } |
| 800 | return NULL; |
| 801 | } |
| 802 | |
| 803 | static struct sk_buff * |
| 804 | cbq_dequeue(struct Qdisc *sch) |
| 805 | { |
| 806 | struct sk_buff *skb; |
| 807 | struct cbq_sched_data *q = qdisc_priv(sch); |
| 808 | psched_time_t now; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 809 | |
Patrick McHardy | 3bebcda | 2007-03-23 11:29:25 -0700 | [diff] [blame] | 810 | now = psched_get_time(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 811 | |
Vasily Averin | 73d0f37 | 2014-08-14 12:27:47 +0400 | [diff] [blame] | 812 | if (q->tx_class) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 813 | cbq_update(q); |
Vasily Averin | 73d0f37 | 2014-08-14 12:27:47 +0400 | [diff] [blame] | 814 | |
| 815 | q->now = now; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 816 | |
| 817 | for (;;) { |
| 818 | q->wd_expires = 0; |
| 819 | |
| 820 | skb = cbq_dequeue_1(sch); |
| 821 | if (skb) { |
Eric Dumazet | 9190b3b | 2011-01-20 23:31:33 -0800 | [diff] [blame] | 822 | qdisc_bstats_update(sch, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 823 | sch->q.qlen--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 824 | return skb; |
| 825 | } |
| 826 | |
| 827 | /* All the classes are overlimit. |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 828 | * |
| 829 | * It is possible, if: |
| 830 | * |
| 831 | * 1. Scheduler is empty. |
| 832 | * 2. Toplevel cutoff inhibited borrowing. |
| 833 | * 3. Root class is overlimit. |
| 834 | * |
| 835 | * Reset 2d and 3d conditions and retry. |
| 836 | * |
| 837 | * Note, that NS and cbq-2.0 are buggy, peeking |
| 838 | * an arbitrary class is appropriate for ancestor-only |
| 839 | * sharing, but not for toplevel algorithm. |
| 840 | * |
| 841 | * Our version is better, but slower, because it requires |
| 842 | * two passes, but it is unavoidable with top-level sharing. |
| 843 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 844 | |
| 845 | if (q->toplevel == TC_CBQ_MAXLEVEL && |
Patrick McHardy | a084980 | 2007-03-23 11:28:30 -0700 | [diff] [blame] | 846 | q->link.undertime == PSCHED_PASTPERFECT) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 847 | break; |
| 848 | |
| 849 | q->toplevel = TC_CBQ_MAXLEVEL; |
Patrick McHardy | a084980 | 2007-03-23 11:28:30 -0700 | [diff] [blame] | 850 | q->link.undertime = PSCHED_PASTPERFECT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 851 | } |
| 852 | |
| 853 | /* No packets in scheduler or nobody wants to give them to us :-( |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 854 | * Sigh... start watchdog timer in the last case. |
| 855 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 856 | |
| 857 | if (sch->q.qlen) { |
John Fastabend | 25331d6 | 2014-09-28 11:53:29 -0700 | [diff] [blame] | 858 | qdisc_qstats_overlimit(sch); |
Patrick McHardy | 88a9935 | 2007-03-16 01:21:11 -0700 | [diff] [blame] | 859 | if (q->wd_expires) |
| 860 | qdisc_watchdog_schedule(&q->watchdog, |
Patrick McHardy | bb239ac | 2007-03-16 12:31:28 -0700 | [diff] [blame] | 861 | now + q->wd_expires); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 862 | } |
| 863 | return NULL; |
| 864 | } |
| 865 | |
| 866 | /* CBQ class maintanance routines */ |
| 867 | |
| 868 | static void cbq_adjust_levels(struct cbq_class *this) |
| 869 | { |
| 870 | if (this == NULL) |
| 871 | return; |
| 872 | |
| 873 | do { |
| 874 | int level = 0; |
| 875 | struct cbq_class *cl; |
| 876 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 877 | cl = this->children; |
| 878 | if (cl) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | do { |
| 880 | if (cl->level > level) |
| 881 | level = cl->level; |
| 882 | } while ((cl = cl->sibling) != this->children); |
| 883 | } |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 884 | this->level = level + 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | } while ((this = this->tparent) != NULL); |
| 886 | } |
| 887 | |
| 888 | static void cbq_normalize_quanta(struct cbq_sched_data *q, int prio) |
| 889 | { |
| 890 | struct cbq_class *cl; |
Patrick McHardy | d77fea2 | 2008-07-05 23:22:05 -0700 | [diff] [blame] | 891 | unsigned int h; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 892 | |
| 893 | if (q->quanta[prio] == 0) |
| 894 | return; |
| 895 | |
Patrick McHardy | d77fea2 | 2008-07-05 23:22:05 -0700 | [diff] [blame] | 896 | for (h = 0; h < q->clhash.hashsize; h++) { |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 897 | hlist_for_each_entry(cl, &q->clhash.hash[h], common.hnode) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 898 | /* BUGGGG... Beware! This expression suffer of |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 899 | * arithmetic overflows! |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 900 | */ |
| 901 | if (cl->priority == prio) { |
| 902 | cl->quantum = (cl->weight*cl->allot*q->nclasses[prio])/ |
| 903 | q->quanta[prio]; |
| 904 | } |
Yang Yingliang | 833fa74 | 2013-12-10 20:55:32 +0800 | [diff] [blame] | 905 | if (cl->quantum <= 0 || |
| 906 | cl->quantum > 32*qdisc_dev(cl->qdisc)->mtu) { |
Yang Yingliang | c17988a | 2013-12-23 17:38:58 +0800 | [diff] [blame] | 907 | pr_warn("CBQ: class %08x has bad quantum==%ld, repaired.\n", |
| 908 | cl->common.classid, cl->quantum); |
David S. Miller | 5ce2d48 | 2008-07-08 17:06:30 -0700 | [diff] [blame] | 909 | cl->quantum = qdisc_dev(cl->qdisc)->mtu/2 + 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 910 | } |
| 911 | } |
| 912 | } |
| 913 | } |
| 914 | |
| 915 | static void cbq_sync_defmap(struct cbq_class *cl) |
| 916 | { |
| 917 | struct cbq_sched_data *q = qdisc_priv(cl->qdisc); |
| 918 | struct cbq_class *split = cl->split; |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 919 | unsigned int h; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 920 | int i; |
| 921 | |
| 922 | if (split == NULL) |
| 923 | return; |
| 924 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 925 | for (i = 0; i <= TC_PRIO_MAX; i++) { |
| 926 | if (split->defaults[i] == cl && !(cl->defmap & (1<<i))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 927 | split->defaults[i] = NULL; |
| 928 | } |
| 929 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 930 | for (i = 0; i <= TC_PRIO_MAX; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 931 | int level = split->level; |
| 932 | |
| 933 | if (split->defaults[i]) |
| 934 | continue; |
| 935 | |
Patrick McHardy | d77fea2 | 2008-07-05 23:22:05 -0700 | [diff] [blame] | 936 | for (h = 0; h < q->clhash.hashsize; h++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 937 | struct cbq_class *c; |
| 938 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 939 | hlist_for_each_entry(c, &q->clhash.hash[h], |
Patrick McHardy | d77fea2 | 2008-07-05 23:22:05 -0700 | [diff] [blame] | 940 | common.hnode) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 941 | if (c->split == split && c->level < level && |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 942 | c->defmap & (1<<i)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 943 | split->defaults[i] = c; |
| 944 | level = c->level; |
| 945 | } |
| 946 | } |
| 947 | } |
| 948 | } |
| 949 | } |
| 950 | |
| 951 | static void cbq_change_defmap(struct cbq_class *cl, u32 splitid, u32 def, u32 mask) |
| 952 | { |
| 953 | struct cbq_class *split = NULL; |
| 954 | |
| 955 | if (splitid == 0) { |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 956 | split = cl->split; |
| 957 | if (!split) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 958 | return; |
Patrick McHardy | d77fea2 | 2008-07-05 23:22:05 -0700 | [diff] [blame] | 959 | splitid = split->common.classid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 | } |
| 961 | |
Patrick McHardy | d77fea2 | 2008-07-05 23:22:05 -0700 | [diff] [blame] | 962 | if (split == NULL || split->common.classid != splitid) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 963 | for (split = cl->tparent; split; split = split->tparent) |
Patrick McHardy | d77fea2 | 2008-07-05 23:22:05 -0700 | [diff] [blame] | 964 | if (split->common.classid == splitid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 965 | break; |
| 966 | } |
| 967 | |
| 968 | if (split == NULL) |
| 969 | return; |
| 970 | |
| 971 | if (cl->split != split) { |
| 972 | cl->defmap = 0; |
| 973 | cbq_sync_defmap(cl); |
| 974 | cl->split = split; |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 975 | cl->defmap = def & mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 976 | } else |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 977 | cl->defmap = (cl->defmap & ~mask) | (def & mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 978 | |
| 979 | cbq_sync_defmap(cl); |
| 980 | } |
| 981 | |
| 982 | static void cbq_unlink_class(struct cbq_class *this) |
| 983 | { |
| 984 | struct cbq_class *cl, **clp; |
| 985 | struct cbq_sched_data *q = qdisc_priv(this->qdisc); |
| 986 | |
Patrick McHardy | d77fea2 | 2008-07-05 23:22:05 -0700 | [diff] [blame] | 987 | qdisc_class_hash_remove(&q->clhash, &this->common); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 988 | |
| 989 | if (this->tparent) { |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 990 | clp = &this->sibling; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 991 | cl = *clp; |
| 992 | do { |
| 993 | if (cl == this) { |
| 994 | *clp = cl->sibling; |
| 995 | break; |
| 996 | } |
| 997 | clp = &cl->sibling; |
| 998 | } while ((cl = *clp) != this->sibling); |
| 999 | |
| 1000 | if (this->tparent->children == this) { |
| 1001 | this->tparent->children = this->sibling; |
| 1002 | if (this->sibling == this) |
| 1003 | this->tparent->children = NULL; |
| 1004 | } |
| 1005 | } else { |
Ilpo Järvinen | 547b792 | 2008-07-25 21:43:18 -0700 | [diff] [blame] | 1006 | WARN_ON(this->sibling != this); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1007 | } |
| 1008 | } |
| 1009 | |
| 1010 | static void cbq_link_class(struct cbq_class *this) |
| 1011 | { |
| 1012 | struct cbq_sched_data *q = qdisc_priv(this->qdisc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1013 | struct cbq_class *parent = this->tparent; |
| 1014 | |
| 1015 | this->sibling = this; |
Patrick McHardy | d77fea2 | 2008-07-05 23:22:05 -0700 | [diff] [blame] | 1016 | qdisc_class_hash_insert(&q->clhash, &this->common); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1017 | |
| 1018 | if (parent == NULL) |
| 1019 | return; |
| 1020 | |
| 1021 | if (parent->children == NULL) { |
| 1022 | parent->children = this; |
| 1023 | } else { |
| 1024 | this->sibling = parent->children->sibling; |
| 1025 | parent->children->sibling = this; |
| 1026 | } |
| 1027 | } |
| 1028 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1029 | static void |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 1030 | cbq_reset(struct Qdisc *sch) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1031 | { |
| 1032 | struct cbq_sched_data *q = qdisc_priv(sch); |
| 1033 | struct cbq_class *cl; |
| 1034 | int prio; |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 1035 | unsigned int h; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1036 | |
| 1037 | q->activemask = 0; |
| 1038 | q->pmask = 0; |
| 1039 | q->tx_class = NULL; |
| 1040 | q->tx_borrowed = NULL; |
Patrick McHardy | 88a9935 | 2007-03-16 01:21:11 -0700 | [diff] [blame] | 1041 | qdisc_watchdog_cancel(&q->watchdog); |
David S. Miller | 2fbd3da | 2009-09-01 17:59:25 -0700 | [diff] [blame] | 1042 | hrtimer_cancel(&q->delay_timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1043 | q->toplevel = TC_CBQ_MAXLEVEL; |
Patrick McHardy | 3bebcda | 2007-03-23 11:29:25 -0700 | [diff] [blame] | 1044 | q->now = psched_get_time(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1045 | |
| 1046 | for (prio = 0; prio <= TC_CBQ_MAXPRIO; prio++) |
| 1047 | q->active[prio] = NULL; |
| 1048 | |
Patrick McHardy | d77fea2 | 2008-07-05 23:22:05 -0700 | [diff] [blame] | 1049 | for (h = 0; h < q->clhash.hashsize; h++) { |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 1050 | hlist_for_each_entry(cl, &q->clhash.hash[h], common.hnode) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1051 | qdisc_reset(cl->q); |
| 1052 | |
| 1053 | cl->next_alive = NULL; |
Patrick McHardy | a084980 | 2007-03-23 11:28:30 -0700 | [diff] [blame] | 1054 | cl->undertime = PSCHED_PASTPERFECT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1055 | cl->avgidle = cl->maxidle; |
| 1056 | cl->deficit = cl->quantum; |
| 1057 | cl->cpriority = cl->priority; |
| 1058 | } |
| 1059 | } |
| 1060 | sch->q.qlen = 0; |
| 1061 | } |
| 1062 | |
| 1063 | |
| 1064 | static int cbq_set_lss(struct cbq_class *cl, struct tc_cbq_lssopt *lss) |
| 1065 | { |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 1066 | if (lss->change & TCF_CBQ_LSS_FLAGS) { |
| 1067 | cl->share = (lss->flags & TCF_CBQ_LSS_ISOLATED) ? NULL : cl->tparent; |
| 1068 | cl->borrow = (lss->flags & TCF_CBQ_LSS_BOUNDED) ? NULL : cl->tparent; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1069 | } |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 1070 | if (lss->change & TCF_CBQ_LSS_EWMA) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1071 | cl->ewma_log = lss->ewma_log; |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 1072 | if (lss->change & TCF_CBQ_LSS_AVPKT) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1073 | cl->avpkt = lss->avpkt; |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 1074 | if (lss->change & TCF_CBQ_LSS_MINIDLE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1075 | cl->minidle = -(long)lss->minidle; |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 1076 | if (lss->change & TCF_CBQ_LSS_MAXIDLE) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1077 | cl->maxidle = lss->maxidle; |
| 1078 | cl->avgidle = lss->maxidle; |
| 1079 | } |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 1080 | if (lss->change & TCF_CBQ_LSS_OFFTIME) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1081 | cl->offtime = lss->offtime; |
| 1082 | return 0; |
| 1083 | } |
| 1084 | |
| 1085 | static void cbq_rmprio(struct cbq_sched_data *q, struct cbq_class *cl) |
| 1086 | { |
| 1087 | q->nclasses[cl->priority]--; |
| 1088 | q->quanta[cl->priority] -= cl->weight; |
| 1089 | cbq_normalize_quanta(q, cl->priority); |
| 1090 | } |
| 1091 | |
| 1092 | static void cbq_addprio(struct cbq_sched_data *q, struct cbq_class *cl) |
| 1093 | { |
| 1094 | q->nclasses[cl->priority]++; |
| 1095 | q->quanta[cl->priority] += cl->weight; |
| 1096 | cbq_normalize_quanta(q, cl->priority); |
| 1097 | } |
| 1098 | |
| 1099 | static int cbq_set_wrr(struct cbq_class *cl, struct tc_cbq_wrropt *wrr) |
| 1100 | { |
| 1101 | struct cbq_sched_data *q = qdisc_priv(cl->qdisc); |
| 1102 | |
| 1103 | if (wrr->allot) |
| 1104 | cl->allot = wrr->allot; |
| 1105 | if (wrr->weight) |
| 1106 | cl->weight = wrr->weight; |
| 1107 | if (wrr->priority) { |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 1108 | cl->priority = wrr->priority - 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1109 | cl->cpriority = cl->priority; |
| 1110 | if (cl->priority >= cl->priority2) |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 1111 | cl->priority2 = TC_CBQ_MAXPRIO - 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1112 | } |
| 1113 | |
| 1114 | cbq_addprio(q, cl); |
| 1115 | return 0; |
| 1116 | } |
| 1117 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1118 | static int cbq_set_fopt(struct cbq_class *cl, struct tc_cbq_fopt *fopt) |
| 1119 | { |
| 1120 | cbq_change_defmap(cl, fopt->split, fopt->defmap, fopt->defchange); |
| 1121 | return 0; |
| 1122 | } |
| 1123 | |
Patrick McHardy | 27a3421 | 2008-01-23 20:35:39 -0800 | [diff] [blame] | 1124 | static const struct nla_policy cbq_policy[TCA_CBQ_MAX + 1] = { |
| 1125 | [TCA_CBQ_LSSOPT] = { .len = sizeof(struct tc_cbq_lssopt) }, |
| 1126 | [TCA_CBQ_WRROPT] = { .len = sizeof(struct tc_cbq_wrropt) }, |
| 1127 | [TCA_CBQ_FOPT] = { .len = sizeof(struct tc_cbq_fopt) }, |
| 1128 | [TCA_CBQ_OVL_STRATEGY] = { .len = sizeof(struct tc_cbq_ovl) }, |
| 1129 | [TCA_CBQ_RATE] = { .len = sizeof(struct tc_ratespec) }, |
| 1130 | [TCA_CBQ_RTAB] = { .type = NLA_BINARY, .len = TC_RTAB_SIZE }, |
| 1131 | [TCA_CBQ_POLICE] = { .len = sizeof(struct tc_cbq_police) }, |
| 1132 | }; |
| 1133 | |
Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 1134 | static int cbq_init(struct Qdisc *sch, struct nlattr *opt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1135 | { |
| 1136 | struct cbq_sched_data *q = qdisc_priv(sch); |
Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 1137 | struct nlattr *tb[TCA_CBQ_MAX + 1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1138 | struct tc_ratespec *r; |
Patrick McHardy | cee6372 | 2008-01-23 20:33:32 -0800 | [diff] [blame] | 1139 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1140 | |
Nikolay Aleksandrov | 3501d05 | 2017-08-30 12:49:01 +0300 | [diff] [blame] | 1141 | qdisc_watchdog_init(&q->watchdog, sch); |
| 1142 | hrtimer_init(&q->delay_timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS_PINNED); |
| 1143 | q->delay_timer.function = cbq_undelay; |
| 1144 | |
| 1145 | if (!opt) |
| 1146 | return -EINVAL; |
| 1147 | |
Johannes Berg | fceb643 | 2017-04-12 14:34:07 +0200 | [diff] [blame] | 1148 | err = nla_parse_nested(tb, TCA_CBQ_MAX, opt, cbq_policy, NULL); |
Patrick McHardy | cee6372 | 2008-01-23 20:33:32 -0800 | [diff] [blame] | 1149 | if (err < 0) |
| 1150 | return err; |
| 1151 | |
Patrick McHardy | 27a3421 | 2008-01-23 20:35:39 -0800 | [diff] [blame] | 1152 | if (tb[TCA_CBQ_RTAB] == NULL || tb[TCA_CBQ_RATE] == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1153 | return -EINVAL; |
| 1154 | |
Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 1155 | r = nla_data(tb[TCA_CBQ_RATE]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1156 | |
Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 1157 | if ((q->link.R_tab = qdisc_get_rtab(r, tb[TCA_CBQ_RTAB])) == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1158 | return -EINVAL; |
| 1159 | |
Patrick McHardy | d77fea2 | 2008-07-05 23:22:05 -0700 | [diff] [blame] | 1160 | err = qdisc_class_hash_init(&q->clhash); |
| 1161 | if (err < 0) |
| 1162 | goto put_rtab; |
| 1163 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1164 | q->link.sibling = &q->link; |
Patrick McHardy | d77fea2 | 2008-07-05 23:22:05 -0700 | [diff] [blame] | 1165 | q->link.common.classid = sch->handle; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1166 | q->link.qdisc = sch; |
Changli Gao | 3511c91 | 2010-10-16 13:04:08 +0000 | [diff] [blame] | 1167 | q->link.q = qdisc_create_dflt(sch->dev_queue, &pfifo_qdisc_ops, |
| 1168 | sch->handle); |
| 1169 | if (!q->link.q) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1170 | q->link.q = &noop_qdisc; |
Jiri Kosina | 49b4997 | 2017-03-08 16:03:32 +0100 | [diff] [blame] | 1171 | else |
| 1172 | qdisc_hash_add(q->link.q, true); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1173 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 1174 | q->link.priority = TC_CBQ_MAXPRIO - 1; |
| 1175 | q->link.priority2 = TC_CBQ_MAXPRIO - 1; |
| 1176 | q->link.cpriority = TC_CBQ_MAXPRIO - 1; |
David S. Miller | 5ce2d48 | 2008-07-08 17:06:30 -0700 | [diff] [blame] | 1177 | q->link.allot = psched_mtu(qdisc_dev(sch)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1178 | q->link.quantum = q->link.allot; |
| 1179 | q->link.weight = q->link.R_tab->rate.rate; |
| 1180 | |
| 1181 | q->link.ewma_log = TC_CBQ_DEF_EWMA; |
| 1182 | q->link.avpkt = q->link.allot/2; |
| 1183 | q->link.minidle = -0x7FFFFFFF; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1184 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1185 | q->toplevel = TC_CBQ_MAXLEVEL; |
Patrick McHardy | 3bebcda | 2007-03-23 11:29:25 -0700 | [diff] [blame] | 1186 | q->now = psched_get_time(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1187 | |
| 1188 | cbq_link_class(&q->link); |
| 1189 | |
Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 1190 | if (tb[TCA_CBQ_LSSOPT]) |
| 1191 | cbq_set_lss(&q->link, nla_data(tb[TCA_CBQ_LSSOPT])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1192 | |
| 1193 | cbq_addprio(q, &q->link); |
| 1194 | return 0; |
Patrick McHardy | d77fea2 | 2008-07-05 23:22:05 -0700 | [diff] [blame] | 1195 | |
| 1196 | put_rtab: |
| 1197 | qdisc_put_rtab(q->link.R_tab); |
| 1198 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1199 | } |
| 1200 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 1201 | static int cbq_dump_rate(struct sk_buff *skb, struct cbq_class *cl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1202 | { |
Arnaldo Carvalho de Melo | 27a884d | 2007-04-19 20:29:13 -0700 | [diff] [blame] | 1203 | unsigned char *b = skb_tail_pointer(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1204 | |
David S. Miller | 1b34ec4 | 2012-03-29 05:11:39 -0400 | [diff] [blame] | 1205 | if (nla_put(skb, TCA_CBQ_RATE, sizeof(cl->R_tab->rate), &cl->R_tab->rate)) |
| 1206 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1207 | return skb->len; |
| 1208 | |
Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 1209 | nla_put_failure: |
Arnaldo Carvalho de Melo | dc5fc57 | 2007-03-25 23:06:12 -0700 | [diff] [blame] | 1210 | nlmsg_trim(skb, b); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1211 | return -1; |
| 1212 | } |
| 1213 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 1214 | static int cbq_dump_lss(struct sk_buff *skb, struct cbq_class *cl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1215 | { |
Arnaldo Carvalho de Melo | 27a884d | 2007-04-19 20:29:13 -0700 | [diff] [blame] | 1216 | unsigned char *b = skb_tail_pointer(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1217 | struct tc_cbq_lssopt opt; |
| 1218 | |
| 1219 | opt.flags = 0; |
| 1220 | if (cl->borrow == NULL) |
| 1221 | opt.flags |= TCF_CBQ_LSS_BOUNDED; |
| 1222 | if (cl->share == NULL) |
| 1223 | opt.flags |= TCF_CBQ_LSS_ISOLATED; |
| 1224 | opt.ewma_log = cl->ewma_log; |
| 1225 | opt.level = cl->level; |
| 1226 | opt.avpkt = cl->avpkt; |
| 1227 | opt.maxidle = cl->maxidle; |
| 1228 | opt.minidle = (u32)(-cl->minidle); |
| 1229 | opt.offtime = cl->offtime; |
| 1230 | opt.change = ~0; |
David S. Miller | 1b34ec4 | 2012-03-29 05:11:39 -0400 | [diff] [blame] | 1231 | if (nla_put(skb, TCA_CBQ_LSSOPT, sizeof(opt), &opt)) |
| 1232 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1233 | return skb->len; |
| 1234 | |
Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 1235 | nla_put_failure: |
Arnaldo Carvalho de Melo | dc5fc57 | 2007-03-25 23:06:12 -0700 | [diff] [blame] | 1236 | nlmsg_trim(skb, b); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1237 | return -1; |
| 1238 | } |
| 1239 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 1240 | static int cbq_dump_wrr(struct sk_buff *skb, struct cbq_class *cl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1241 | { |
Arnaldo Carvalho de Melo | 27a884d | 2007-04-19 20:29:13 -0700 | [diff] [blame] | 1242 | unsigned char *b = skb_tail_pointer(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1243 | struct tc_cbq_wrropt opt; |
| 1244 | |
David S. Miller | a0db856 | 2013-07-30 00:16:21 -0700 | [diff] [blame] | 1245 | memset(&opt, 0, sizeof(opt)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1246 | opt.flags = 0; |
| 1247 | opt.allot = cl->allot; |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 1248 | opt.priority = cl->priority + 1; |
| 1249 | opt.cpriority = cl->cpriority + 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1250 | opt.weight = cl->weight; |
David S. Miller | 1b34ec4 | 2012-03-29 05:11:39 -0400 | [diff] [blame] | 1251 | if (nla_put(skb, TCA_CBQ_WRROPT, sizeof(opt), &opt)) |
| 1252 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1253 | return skb->len; |
| 1254 | |
Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 1255 | nla_put_failure: |
Arnaldo Carvalho de Melo | dc5fc57 | 2007-03-25 23:06:12 -0700 | [diff] [blame] | 1256 | nlmsg_trim(skb, b); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1257 | return -1; |
| 1258 | } |
| 1259 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 1260 | static int cbq_dump_fopt(struct sk_buff *skb, struct cbq_class *cl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1261 | { |
Arnaldo Carvalho de Melo | 27a884d | 2007-04-19 20:29:13 -0700 | [diff] [blame] | 1262 | unsigned char *b = skb_tail_pointer(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1263 | struct tc_cbq_fopt opt; |
| 1264 | |
| 1265 | if (cl->split || cl->defmap) { |
Patrick McHardy | d77fea2 | 2008-07-05 23:22:05 -0700 | [diff] [blame] | 1266 | opt.split = cl->split ? cl->split->common.classid : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1267 | opt.defmap = cl->defmap; |
| 1268 | opt.defchange = ~0; |
David S. Miller | 1b34ec4 | 2012-03-29 05:11:39 -0400 | [diff] [blame] | 1269 | if (nla_put(skb, TCA_CBQ_FOPT, sizeof(opt), &opt)) |
| 1270 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1271 | } |
| 1272 | return skb->len; |
| 1273 | |
Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 1274 | nla_put_failure: |
Arnaldo Carvalho de Melo | dc5fc57 | 2007-03-25 23:06:12 -0700 | [diff] [blame] | 1275 | nlmsg_trim(skb, b); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1276 | return -1; |
| 1277 | } |
| 1278 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1279 | static int cbq_dump_attr(struct sk_buff *skb, struct cbq_class *cl) |
| 1280 | { |
| 1281 | if (cbq_dump_lss(skb, cl) < 0 || |
| 1282 | cbq_dump_rate(skb, cl) < 0 || |
| 1283 | cbq_dump_wrr(skb, cl) < 0 || |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1284 | cbq_dump_fopt(skb, cl) < 0) |
| 1285 | return -1; |
| 1286 | return 0; |
| 1287 | } |
| 1288 | |
| 1289 | static int cbq_dump(struct Qdisc *sch, struct sk_buff *skb) |
| 1290 | { |
| 1291 | struct cbq_sched_data *q = qdisc_priv(sch); |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 1292 | struct nlattr *nest; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1293 | |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 1294 | nest = nla_nest_start(skb, TCA_OPTIONS); |
| 1295 | if (nest == NULL) |
| 1296 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1297 | if (cbq_dump_attr(skb, &q->link) < 0) |
Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 1298 | goto nla_put_failure; |
Yang Yingliang | d59b7d8 | 2014-03-12 10:20:32 +0800 | [diff] [blame] | 1299 | return nla_nest_end(skb, nest); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1300 | |
Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 1301 | nla_put_failure: |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 1302 | nla_nest_cancel(skb, nest); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1303 | return -1; |
| 1304 | } |
| 1305 | |
| 1306 | static int |
| 1307 | cbq_dump_stats(struct Qdisc *sch, struct gnet_dump *d) |
| 1308 | { |
| 1309 | struct cbq_sched_data *q = qdisc_priv(sch); |
| 1310 | |
| 1311 | q->link.xstats.avgidle = q->link.avgidle; |
| 1312 | return gnet_stats_copy_app(d, &q->link.xstats, sizeof(q->link.xstats)); |
| 1313 | } |
| 1314 | |
| 1315 | static int |
| 1316 | cbq_dump_class(struct Qdisc *sch, unsigned long arg, |
| 1317 | struct sk_buff *skb, struct tcmsg *tcm) |
| 1318 | { |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 1319 | struct cbq_class *cl = (struct cbq_class *)arg; |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 1320 | struct nlattr *nest; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1321 | |
| 1322 | if (cl->tparent) |
Patrick McHardy | d77fea2 | 2008-07-05 23:22:05 -0700 | [diff] [blame] | 1323 | tcm->tcm_parent = cl->tparent->common.classid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1324 | else |
| 1325 | tcm->tcm_parent = TC_H_ROOT; |
Patrick McHardy | d77fea2 | 2008-07-05 23:22:05 -0700 | [diff] [blame] | 1326 | tcm->tcm_handle = cl->common.classid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1327 | tcm->tcm_info = cl->q->handle; |
| 1328 | |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 1329 | nest = nla_nest_start(skb, TCA_OPTIONS); |
| 1330 | if (nest == NULL) |
| 1331 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1332 | if (cbq_dump_attr(skb, cl) < 0) |
Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 1333 | goto nla_put_failure; |
Yang Yingliang | d59b7d8 | 2014-03-12 10:20:32 +0800 | [diff] [blame] | 1334 | return nla_nest_end(skb, nest); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1335 | |
Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 1336 | nla_put_failure: |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 1337 | nla_nest_cancel(skb, nest); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1338 | return -1; |
| 1339 | } |
| 1340 | |
| 1341 | static int |
| 1342 | cbq_dump_class_stats(struct Qdisc *sch, unsigned long arg, |
| 1343 | struct gnet_dump *d) |
| 1344 | { |
| 1345 | struct cbq_sched_data *q = qdisc_priv(sch); |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 1346 | struct cbq_class *cl = (struct cbq_class *)arg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1347 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1348 | cl->xstats.avgidle = cl->avgidle; |
| 1349 | cl->xstats.undertime = 0; |
| 1350 | |
Patrick McHardy | a084980 | 2007-03-23 11:28:30 -0700 | [diff] [blame] | 1351 | if (cl->undertime != PSCHED_PASTPERFECT) |
Patrick McHardy | 8edc0c3 | 2007-03-23 11:28:55 -0700 | [diff] [blame] | 1352 | cl->xstats.undertime = cl->undertime - q->now; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1353 | |
Eric Dumazet | edb09eb | 2016-06-06 09:37:16 -0700 | [diff] [blame] | 1354 | if (gnet_stats_copy_basic(qdisc_root_sleeping_running(sch), |
| 1355 | d, NULL, &cl->bstats) < 0 || |
Eric Dumazet | 1c0d32f | 2016-12-04 09:48:16 -0800 | [diff] [blame] | 1356 | gnet_stats_copy_rate_est(d, &cl->rate_est) < 0 || |
John Fastabend | b0ab6f9 | 2014-09-28 11:54:24 -0700 | [diff] [blame] | 1357 | gnet_stats_copy_queue(d, NULL, &cl->qstats, cl->q->q.qlen) < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1358 | return -1; |
| 1359 | |
| 1360 | return gnet_stats_copy_app(d, &cl->xstats, sizeof(cl->xstats)); |
| 1361 | } |
| 1362 | |
| 1363 | static int cbq_graft(struct Qdisc *sch, unsigned long arg, struct Qdisc *new, |
| 1364 | struct Qdisc **old) |
| 1365 | { |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 1366 | struct cbq_class *cl = (struct cbq_class *)arg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1367 | |
Patrick McHardy | 5b9a9cc | 2009-09-04 06:41:17 +0000 | [diff] [blame] | 1368 | if (new == NULL) { |
Changli Gao | 3511c91 | 2010-10-16 13:04:08 +0000 | [diff] [blame] | 1369 | new = qdisc_create_dflt(sch->dev_queue, |
Patrick McHardy | 5b9a9cc | 2009-09-04 06:41:17 +0000 | [diff] [blame] | 1370 | &pfifo_qdisc_ops, cl->common.classid); |
| 1371 | if (new == NULL) |
| 1372 | return -ENOBUFS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1373 | } |
Patrick McHardy | 5b9a9cc | 2009-09-04 06:41:17 +0000 | [diff] [blame] | 1374 | |
WANG Cong | 86a7996 | 2016-02-25 14:55:00 -0800 | [diff] [blame] | 1375 | *old = qdisc_replace(sch, new, &cl->q); |
Patrick McHardy | 5b9a9cc | 2009-09-04 06:41:17 +0000 | [diff] [blame] | 1376 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1377 | } |
| 1378 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 1379 | static struct Qdisc *cbq_leaf(struct Qdisc *sch, unsigned long arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1380 | { |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 1381 | struct cbq_class *cl = (struct cbq_class *)arg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1382 | |
Patrick McHardy | 5b9a9cc | 2009-09-04 06:41:17 +0000 | [diff] [blame] | 1383 | return cl->q; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1384 | } |
| 1385 | |
Jarek Poplawski | a37ef2e | 2006-12-08 00:25:55 -0800 | [diff] [blame] | 1386 | static void cbq_qlen_notify(struct Qdisc *sch, unsigned long arg) |
| 1387 | { |
| 1388 | struct cbq_class *cl = (struct cbq_class *)arg; |
| 1389 | |
Konstantin Khlebnikov | 9594665 | 2017-08-15 16:39:59 +0300 | [diff] [blame] | 1390 | cbq_deactivate_class(cl); |
Jarek Poplawski | a37ef2e | 2006-12-08 00:25:55 -0800 | [diff] [blame] | 1391 | } |
| 1392 | |
WANG Cong | 143976c | 2017-08-24 16:51:29 -0700 | [diff] [blame] | 1393 | static unsigned long cbq_find(struct Qdisc *sch, u32 classid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1394 | { |
| 1395 | struct cbq_sched_data *q = qdisc_priv(sch); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1396 | |
WANG Cong | 143976c | 2017-08-24 16:51:29 -0700 | [diff] [blame] | 1397 | return (unsigned long)cbq_class_lookup(q, classid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1398 | } |
| 1399 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1400 | static void cbq_destroy_class(struct Qdisc *sch, struct cbq_class *cl) |
| 1401 | { |
| 1402 | struct cbq_sched_data *q = qdisc_priv(sch); |
| 1403 | |
Ilpo Järvinen | 547b792 | 2008-07-25 21:43:18 -0700 | [diff] [blame] | 1404 | WARN_ON(cl->filters); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1405 | |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 1406 | tcf_block_put(cl->block); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1407 | qdisc_destroy(cl->q); |
| 1408 | qdisc_put_rtab(cl->R_tab); |
Eric Dumazet | 1c0d32f | 2016-12-04 09:48:16 -0800 | [diff] [blame] | 1409 | gen_kill_estimator(&cl->rate_est); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1410 | if (cl != &q->link) |
| 1411 | kfree(cl); |
| 1412 | } |
| 1413 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 1414 | static void cbq_destroy(struct Qdisc *sch) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1415 | { |
| 1416 | struct cbq_sched_data *q = qdisc_priv(sch); |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 1417 | struct hlist_node *next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1418 | struct cbq_class *cl; |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 1419 | unsigned int h; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1420 | |
Patrick McHardy | c3bc7cf | 2007-07-15 00:03:05 -0700 | [diff] [blame] | 1421 | #ifdef CONFIG_NET_CLS_ACT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1422 | q->rx_class = NULL; |
| 1423 | #endif |
| 1424 | /* |
| 1425 | * Filters must be destroyed first because we don't destroy the |
| 1426 | * classes from root to leafs which means that filters can still |
| 1427 | * be bound to classes which have been destroyed already. --TGR '04 |
| 1428 | */ |
Patrick McHardy | d77fea2 | 2008-07-05 23:22:05 -0700 | [diff] [blame] | 1429 | for (h = 0; h < q->clhash.hashsize; h++) { |
Konstantin Khlebnikov | 8989042 | 2017-08-15 16:35:21 +0300 | [diff] [blame] | 1430 | hlist_for_each_entry(cl, &q->clhash.hash[h], common.hnode) { |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 1431 | tcf_block_put(cl->block); |
Konstantin Khlebnikov | 8989042 | 2017-08-15 16:35:21 +0300 | [diff] [blame] | 1432 | cl->block = NULL; |
| 1433 | } |
Patrick McHardy | b00b4bf | 2007-06-05 16:06:59 -0700 | [diff] [blame] | 1434 | } |
Patrick McHardy | d77fea2 | 2008-07-05 23:22:05 -0700 | [diff] [blame] | 1435 | for (h = 0; h < q->clhash.hashsize; h++) { |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 1436 | hlist_for_each_entry_safe(cl, next, &q->clhash.hash[h], |
Patrick McHardy | d77fea2 | 2008-07-05 23:22:05 -0700 | [diff] [blame] | 1437 | common.hnode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1438 | cbq_destroy_class(sch, cl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1439 | } |
Patrick McHardy | d77fea2 | 2008-07-05 23:22:05 -0700 | [diff] [blame] | 1440 | qdisc_class_hash_destroy(&q->clhash); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1441 | } |
| 1442 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1443 | static int |
Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 1444 | cbq_change_class(struct Qdisc *sch, u32 classid, u32 parentid, struct nlattr **tca, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1445 | unsigned long *arg) |
| 1446 | { |
| 1447 | int err; |
| 1448 | struct cbq_sched_data *q = qdisc_priv(sch); |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 1449 | struct cbq_class *cl = (struct cbq_class *)*arg; |
Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 1450 | struct nlattr *opt = tca[TCA_OPTIONS]; |
| 1451 | struct nlattr *tb[TCA_CBQ_MAX + 1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1452 | struct cbq_class *parent; |
| 1453 | struct qdisc_rate_table *rtab = NULL; |
| 1454 | |
Patrick McHardy | cee6372 | 2008-01-23 20:33:32 -0800 | [diff] [blame] | 1455 | if (opt == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1456 | return -EINVAL; |
| 1457 | |
Johannes Berg | fceb643 | 2017-04-12 14:34:07 +0200 | [diff] [blame] | 1458 | err = nla_parse_nested(tb, TCA_CBQ_MAX, opt, cbq_policy, NULL); |
Patrick McHardy | cee6372 | 2008-01-23 20:33:32 -0800 | [diff] [blame] | 1459 | if (err < 0) |
| 1460 | return err; |
| 1461 | |
Florian Westphal | dd47c1f | 2016-06-09 00:27:40 +0200 | [diff] [blame] | 1462 | if (tb[TCA_CBQ_OVL_STRATEGY] || tb[TCA_CBQ_POLICE]) |
Florian Westphal | c3498d3 | 2016-06-09 00:27:39 +0200 | [diff] [blame] | 1463 | return -EOPNOTSUPP; |
| 1464 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1465 | if (cl) { |
| 1466 | /* Check parent */ |
| 1467 | if (parentid) { |
Patrick McHardy | d77fea2 | 2008-07-05 23:22:05 -0700 | [diff] [blame] | 1468 | if (cl->tparent && |
| 1469 | cl->tparent->common.classid != parentid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1470 | return -EINVAL; |
| 1471 | if (!cl->tparent && parentid != TC_H_ROOT) |
| 1472 | return -EINVAL; |
| 1473 | } |
| 1474 | |
Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 1475 | if (tb[TCA_CBQ_RATE]) { |
Stephen Hemminger | 71bcb09 | 2008-11-25 21:13:31 -0800 | [diff] [blame] | 1476 | rtab = qdisc_get_rtab(nla_data(tb[TCA_CBQ_RATE]), |
| 1477 | tb[TCA_CBQ_RTAB]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1478 | if (rtab == NULL) |
| 1479 | return -EINVAL; |
| 1480 | } |
| 1481 | |
Stephen Hemminger | 71bcb09 | 2008-11-25 21:13:31 -0800 | [diff] [blame] | 1482 | if (tca[TCA_RATE]) { |
John Fastabend | 22e0f8b | 2014-09-28 11:52:56 -0700 | [diff] [blame] | 1483 | err = gen_replace_estimator(&cl->bstats, NULL, |
| 1484 | &cl->rate_est, |
Eric Dumazet | edb09eb | 2016-06-06 09:37:16 -0700 | [diff] [blame] | 1485 | NULL, |
| 1486 | qdisc_root_sleeping_running(sch), |
Stephen Hemminger | 71bcb09 | 2008-11-25 21:13:31 -0800 | [diff] [blame] | 1487 | tca[TCA_RATE]); |
| 1488 | if (err) { |
Yang Yingliang | 79c11f2 | 2013-12-17 15:29:17 +0800 | [diff] [blame] | 1489 | qdisc_put_rtab(rtab); |
Stephen Hemminger | 71bcb09 | 2008-11-25 21:13:31 -0800 | [diff] [blame] | 1490 | return err; |
| 1491 | } |
| 1492 | } |
| 1493 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1494 | /* Change class parameters */ |
| 1495 | sch_tree_lock(sch); |
| 1496 | |
| 1497 | if (cl->next_alive != NULL) |
| 1498 | cbq_deactivate_class(cl); |
| 1499 | |
| 1500 | if (rtab) { |
Patrick McHardy | b94c8af | 2008-11-20 04:11:36 -0800 | [diff] [blame] | 1501 | qdisc_put_rtab(cl->R_tab); |
| 1502 | cl->R_tab = rtab; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1503 | } |
| 1504 | |
Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 1505 | if (tb[TCA_CBQ_LSSOPT]) |
| 1506 | cbq_set_lss(cl, nla_data(tb[TCA_CBQ_LSSOPT])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1507 | |
Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 1508 | if (tb[TCA_CBQ_WRROPT]) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1509 | cbq_rmprio(q, cl); |
Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 1510 | cbq_set_wrr(cl, nla_data(tb[TCA_CBQ_WRROPT])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1511 | } |
| 1512 | |
Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 1513 | if (tb[TCA_CBQ_FOPT]) |
| 1514 | cbq_set_fopt(cl, nla_data(tb[TCA_CBQ_FOPT])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1515 | |
| 1516 | if (cl->q->q.qlen) |
| 1517 | cbq_activate_class(cl); |
| 1518 | |
| 1519 | sch_tree_unlock(sch); |
| 1520 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1521 | return 0; |
| 1522 | } |
| 1523 | |
| 1524 | if (parentid == TC_H_ROOT) |
| 1525 | return -EINVAL; |
| 1526 | |
Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 1527 | if (tb[TCA_CBQ_WRROPT] == NULL || tb[TCA_CBQ_RATE] == NULL || |
| 1528 | tb[TCA_CBQ_LSSOPT] == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1529 | return -EINVAL; |
| 1530 | |
Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 1531 | rtab = qdisc_get_rtab(nla_data(tb[TCA_CBQ_RATE]), tb[TCA_CBQ_RTAB]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1532 | if (rtab == NULL) |
| 1533 | return -EINVAL; |
| 1534 | |
| 1535 | if (classid) { |
| 1536 | err = -EINVAL; |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 1537 | if (TC_H_MAJ(classid ^ sch->handle) || |
| 1538 | cbq_class_lookup(q, classid)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1539 | goto failure; |
| 1540 | } else { |
| 1541 | int i; |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 1542 | classid = TC_H_MAKE(sch->handle, 0x8000); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1543 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 1544 | for (i = 0; i < 0x8000; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1545 | if (++q->hgenerator >= 0x8000) |
| 1546 | q->hgenerator = 1; |
| 1547 | if (cbq_class_lookup(q, classid|q->hgenerator) == NULL) |
| 1548 | break; |
| 1549 | } |
| 1550 | err = -ENOSR; |
| 1551 | if (i >= 0x8000) |
| 1552 | goto failure; |
| 1553 | classid = classid|q->hgenerator; |
| 1554 | } |
| 1555 | |
| 1556 | parent = &q->link; |
| 1557 | if (parentid) { |
| 1558 | parent = cbq_class_lookup(q, parentid); |
| 1559 | err = -EINVAL; |
| 1560 | if (parent == NULL) |
| 1561 | goto failure; |
| 1562 | } |
| 1563 | |
| 1564 | err = -ENOBUFS; |
Panagiotis Issaris | 0da974f | 2006-07-21 14:51:30 -0700 | [diff] [blame] | 1565 | cl = kzalloc(sizeof(*cl), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1566 | if (cl == NULL) |
| 1567 | goto failure; |
Stephen Hemminger | 71bcb09 | 2008-11-25 21:13:31 -0800 | [diff] [blame] | 1568 | |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 1569 | err = tcf_block_get(&cl->block, &cl->filter_list); |
| 1570 | if (err) { |
| 1571 | kfree(cl); |
| 1572 | return err; |
| 1573 | } |
| 1574 | |
Stephen Hemminger | 71bcb09 | 2008-11-25 21:13:31 -0800 | [diff] [blame] | 1575 | if (tca[TCA_RATE]) { |
John Fastabend | 22e0f8b | 2014-09-28 11:52:56 -0700 | [diff] [blame] | 1576 | err = gen_new_estimator(&cl->bstats, NULL, &cl->rate_est, |
Eric Dumazet | edb09eb | 2016-06-06 09:37:16 -0700 | [diff] [blame] | 1577 | NULL, |
| 1578 | qdisc_root_sleeping_running(sch), |
Stephen Hemminger | 71bcb09 | 2008-11-25 21:13:31 -0800 | [diff] [blame] | 1579 | tca[TCA_RATE]); |
| 1580 | if (err) { |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 1581 | tcf_block_put(cl->block); |
Stephen Hemminger | 71bcb09 | 2008-11-25 21:13:31 -0800 | [diff] [blame] | 1582 | kfree(cl); |
| 1583 | goto failure; |
| 1584 | } |
| 1585 | } |
| 1586 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1587 | cl->R_tab = rtab; |
| 1588 | rtab = NULL; |
Changli Gao | 3511c91 | 2010-10-16 13:04:08 +0000 | [diff] [blame] | 1589 | cl->q = qdisc_create_dflt(sch->dev_queue, &pfifo_qdisc_ops, classid); |
| 1590 | if (!cl->q) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1591 | cl->q = &noop_qdisc; |
Jiri Kosina | 49b4997 | 2017-03-08 16:03:32 +0100 | [diff] [blame] | 1592 | else |
| 1593 | qdisc_hash_add(cl->q, true); |
| 1594 | |
Patrick McHardy | d77fea2 | 2008-07-05 23:22:05 -0700 | [diff] [blame] | 1595 | cl->common.classid = classid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1596 | cl->tparent = parent; |
| 1597 | cl->qdisc = sch; |
| 1598 | cl->allot = parent->allot; |
| 1599 | cl->quantum = cl->allot; |
| 1600 | cl->weight = cl->R_tab->rate.rate; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1601 | |
| 1602 | sch_tree_lock(sch); |
| 1603 | cbq_link_class(cl); |
| 1604 | cl->borrow = cl->tparent; |
| 1605 | if (cl->tparent != &q->link) |
| 1606 | cl->share = cl->tparent; |
| 1607 | cbq_adjust_levels(parent); |
| 1608 | cl->minidle = -0x7FFFFFFF; |
Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 1609 | cbq_set_lss(cl, nla_data(tb[TCA_CBQ_LSSOPT])); |
| 1610 | cbq_set_wrr(cl, nla_data(tb[TCA_CBQ_WRROPT])); |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 1611 | if (cl->ewma_log == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1612 | cl->ewma_log = q->link.ewma_log; |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 1613 | if (cl->maxidle == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1614 | cl->maxidle = q->link.maxidle; |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 1615 | if (cl->avpkt == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1616 | cl->avpkt = q->link.avpkt; |
Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 1617 | if (tb[TCA_CBQ_FOPT]) |
| 1618 | cbq_set_fopt(cl, nla_data(tb[TCA_CBQ_FOPT])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1619 | sch_tree_unlock(sch); |
| 1620 | |
Patrick McHardy | d77fea2 | 2008-07-05 23:22:05 -0700 | [diff] [blame] | 1621 | qdisc_class_hash_grow(sch, &q->clhash); |
| 1622 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1623 | *arg = (unsigned long)cl; |
| 1624 | return 0; |
| 1625 | |
| 1626 | failure: |
| 1627 | qdisc_put_rtab(rtab); |
| 1628 | return err; |
| 1629 | } |
| 1630 | |
| 1631 | static int cbq_delete(struct Qdisc *sch, unsigned long arg) |
| 1632 | { |
| 1633 | struct cbq_sched_data *q = qdisc_priv(sch); |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 1634 | struct cbq_class *cl = (struct cbq_class *)arg; |
WANG Cong | 2ccccf5 | 2016-02-25 14:55:01 -0800 | [diff] [blame] | 1635 | unsigned int qlen, backlog; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1636 | |
| 1637 | if (cl->filters || cl->children || cl == &q->link) |
| 1638 | return -EBUSY; |
| 1639 | |
| 1640 | sch_tree_lock(sch); |
| 1641 | |
Jarek Poplawski | a37ef2e | 2006-12-08 00:25:55 -0800 | [diff] [blame] | 1642 | qlen = cl->q->q.qlen; |
WANG Cong | 2ccccf5 | 2016-02-25 14:55:01 -0800 | [diff] [blame] | 1643 | backlog = cl->q->qstats.backlog; |
Jarek Poplawski | a37ef2e | 2006-12-08 00:25:55 -0800 | [diff] [blame] | 1644 | qdisc_reset(cl->q); |
WANG Cong | 2ccccf5 | 2016-02-25 14:55:01 -0800 | [diff] [blame] | 1645 | qdisc_tree_reduce_backlog(cl->q, qlen, backlog); |
Jarek Poplawski | a37ef2e | 2006-12-08 00:25:55 -0800 | [diff] [blame] | 1646 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1647 | if (cl->next_alive) |
| 1648 | cbq_deactivate_class(cl); |
| 1649 | |
| 1650 | if (q->tx_borrowed == cl) |
| 1651 | q->tx_borrowed = q->tx_class; |
| 1652 | if (q->tx_class == cl) { |
| 1653 | q->tx_class = NULL; |
| 1654 | q->tx_borrowed = NULL; |
| 1655 | } |
Patrick McHardy | c3bc7cf | 2007-07-15 00:03:05 -0700 | [diff] [blame] | 1656 | #ifdef CONFIG_NET_CLS_ACT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1657 | if (q->rx_class == cl) |
| 1658 | q->rx_class = NULL; |
| 1659 | #endif |
| 1660 | |
| 1661 | cbq_unlink_class(cl); |
| 1662 | cbq_adjust_levels(cl->tparent); |
| 1663 | cl->defmap = 0; |
| 1664 | cbq_sync_defmap(cl); |
| 1665 | |
| 1666 | cbq_rmprio(q, cl); |
| 1667 | sch_tree_unlock(sch); |
| 1668 | |
WANG Cong | 143976c | 2017-08-24 16:51:29 -0700 | [diff] [blame] | 1669 | cbq_destroy_class(sch, cl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1670 | return 0; |
| 1671 | } |
| 1672 | |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 1673 | static struct tcf_block *cbq_tcf_block(struct Qdisc *sch, unsigned long arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1674 | { |
| 1675 | struct cbq_sched_data *q = qdisc_priv(sch); |
| 1676 | struct cbq_class *cl = (struct cbq_class *)arg; |
| 1677 | |
| 1678 | if (cl == NULL) |
| 1679 | cl = &q->link; |
| 1680 | |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 1681 | return cl->block; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1682 | } |
| 1683 | |
| 1684 | static unsigned long cbq_bind_filter(struct Qdisc *sch, unsigned long parent, |
| 1685 | u32 classid) |
| 1686 | { |
| 1687 | struct cbq_sched_data *q = qdisc_priv(sch); |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 1688 | struct cbq_class *p = (struct cbq_class *)parent; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1689 | struct cbq_class *cl = cbq_class_lookup(q, classid); |
| 1690 | |
| 1691 | if (cl) { |
| 1692 | if (p && p->level <= cl->level) |
| 1693 | return 0; |
| 1694 | cl->filters++; |
| 1695 | return (unsigned long)cl; |
| 1696 | } |
| 1697 | return 0; |
| 1698 | } |
| 1699 | |
| 1700 | static void cbq_unbind_filter(struct Qdisc *sch, unsigned long arg) |
| 1701 | { |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 1702 | struct cbq_class *cl = (struct cbq_class *)arg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1703 | |
| 1704 | cl->filters--; |
| 1705 | } |
| 1706 | |
| 1707 | static void cbq_walk(struct Qdisc *sch, struct qdisc_walker *arg) |
| 1708 | { |
| 1709 | struct cbq_sched_data *q = qdisc_priv(sch); |
Patrick McHardy | d77fea2 | 2008-07-05 23:22:05 -0700 | [diff] [blame] | 1710 | struct cbq_class *cl; |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 1711 | unsigned int h; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1712 | |
| 1713 | if (arg->stop) |
| 1714 | return; |
| 1715 | |
Patrick McHardy | d77fea2 | 2008-07-05 23:22:05 -0700 | [diff] [blame] | 1716 | for (h = 0; h < q->clhash.hashsize; h++) { |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 1717 | hlist_for_each_entry(cl, &q->clhash.hash[h], common.hnode) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1718 | if (arg->count < arg->skip) { |
| 1719 | arg->count++; |
| 1720 | continue; |
| 1721 | } |
| 1722 | if (arg->fn(sch, (unsigned long)cl, arg) < 0) { |
| 1723 | arg->stop = 1; |
| 1724 | return; |
| 1725 | } |
| 1726 | arg->count++; |
| 1727 | } |
| 1728 | } |
| 1729 | } |
| 1730 | |
Eric Dumazet | 20fea08 | 2007-11-14 01:44:41 -0800 | [diff] [blame] | 1731 | static const struct Qdisc_class_ops cbq_class_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1732 | .graft = cbq_graft, |
| 1733 | .leaf = cbq_leaf, |
Jarek Poplawski | a37ef2e | 2006-12-08 00:25:55 -0800 | [diff] [blame] | 1734 | .qlen_notify = cbq_qlen_notify, |
WANG Cong | 143976c | 2017-08-24 16:51:29 -0700 | [diff] [blame] | 1735 | .find = cbq_find, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1736 | .change = cbq_change_class, |
| 1737 | .delete = cbq_delete, |
| 1738 | .walk = cbq_walk, |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 1739 | .tcf_block = cbq_tcf_block, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1740 | .bind_tcf = cbq_bind_filter, |
| 1741 | .unbind_tcf = cbq_unbind_filter, |
| 1742 | .dump = cbq_dump_class, |
| 1743 | .dump_stats = cbq_dump_class_stats, |
| 1744 | }; |
| 1745 | |
Eric Dumazet | 20fea08 | 2007-11-14 01:44:41 -0800 | [diff] [blame] | 1746 | static struct Qdisc_ops cbq_qdisc_ops __read_mostly = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1747 | .next = NULL, |
| 1748 | .cl_ops = &cbq_class_ops, |
| 1749 | .id = "cbq", |
| 1750 | .priv_size = sizeof(struct cbq_sched_data), |
| 1751 | .enqueue = cbq_enqueue, |
| 1752 | .dequeue = cbq_dequeue, |
Jarek Poplawski | 77be155 | 2008-10-31 00:47:01 -0700 | [diff] [blame] | 1753 | .peek = qdisc_peek_dequeued, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1754 | .init = cbq_init, |
| 1755 | .reset = cbq_reset, |
| 1756 | .destroy = cbq_destroy, |
| 1757 | .change = NULL, |
| 1758 | .dump = cbq_dump, |
| 1759 | .dump_stats = cbq_dump_stats, |
| 1760 | .owner = THIS_MODULE, |
| 1761 | }; |
| 1762 | |
| 1763 | static int __init cbq_module_init(void) |
| 1764 | { |
| 1765 | return register_qdisc(&cbq_qdisc_ops); |
| 1766 | } |
YOSHIFUJI Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 1767 | static void __exit cbq_module_exit(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1768 | { |
| 1769 | unregister_qdisc(&cbq_qdisc_ops); |
| 1770 | } |
| 1771 | module_init(cbq_module_init) |
| 1772 | module_exit(cbq_module_exit) |
| 1773 | MODULE_LICENSE("GPL"); |