blob: 62567bfe52c723262a291360cecd572fefced164 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * net/sched/sch_api.c Packet scheduler API.
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 * Fixes:
12 *
13 * Rani Assaf <rani@magic.metawire.com> :980802: JIFFIES and CPU clock sources are repaired.
14 * Eduardo J. Blanco <ejbs@netlabs.com.uy> :990222: kmod support
15 * Jamal Hadi Salim <hadi@nortelnetworks.com>: 990601: ingress support
16 */
17
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/module.h>
19#include <linux/types.h>
20#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/skbuff.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/init.h>
25#include <linux/proc_fs.h>
26#include <linux/seq_file.h>
27#include <linux/kmod.h>
28#include <linux/list.h>
Patrick McHardy41794772007-03-16 01:19:15 -070029#include <linux/hrtimer.h>
Jarek Poplawski25bfcd52008-08-18 20:53:34 -070030#include <linux/lockdep.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090031#include <linux/slab.h>
Jiri Kosina59cc1f62016-08-10 11:05:15 +020032#include <linux/hashtable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020034#include <net/net_namespace.h>
Denis V. Lunevb8542722007-12-01 00:21:31 +110035#include <net/sock.h>
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -070036#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <net/pkt_sched.h>
38
Tom Goff7316ae82010-03-19 15:40:13 +000039static int qdisc_notify(struct net *net, struct sk_buff *oskb,
40 struct nlmsghdr *n, u32 clid,
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 struct Qdisc *old, struct Qdisc *new);
Tom Goff7316ae82010-03-19 15:40:13 +000042static int tclass_notify(struct net *net, struct sk_buff *oskb,
43 struct nlmsghdr *n, struct Qdisc *q,
44 unsigned long cl, int event);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46/*
47
48 Short review.
49 -------------
50
51 This file consists of two interrelated parts:
52
53 1. queueing disciplines manager frontend.
54 2. traffic classes manager frontend.
55
56 Generally, queueing discipline ("qdisc") is a black box,
57 which is able to enqueue packets and to dequeue them (when
58 device is ready to send something) in order and at times
59 determined by algorithm hidden in it.
60
61 qdisc's are divided to two categories:
62 - "queues", which have no internal structure visible from outside.
63 - "schedulers", which split all the packets to "traffic classes",
64 using "packet classifiers" (look at cls_api.c)
65
66 In turn, classes may have child qdiscs (as rule, queues)
67 attached to them etc. etc. etc.
68
69 The goal of the routines in this file is to translate
70 information supplied by user in the form of handles
71 to more intelligible for kernel form, to make some sanity
72 checks and part of work, which is common to all qdiscs
73 and to provide rtnetlink notifications.
74
75 All real intelligent work is done inside qdisc modules.
76
77
78
79 Every discipline has two major routines: enqueue and dequeue.
80
81 ---dequeue
82
83 dequeue usually returns a skb to send. It is allowed to return NULL,
84 but it does not mean that queue is empty, it just means that
85 discipline does not want to send anything this time.
86 Queue is really empty if q->q.qlen == 0.
87 For complicated disciplines with multiple queues q->q is not
88 real packet queue, but however q->q.qlen must be valid.
89
90 ---enqueue
91
92 enqueue returns 0, if packet was enqueued successfully.
93 If packet (this one or another one) was dropped, it returns
94 not zero error code.
95 NET_XMIT_DROP - this packet dropped
96 Expected action: do not backoff, but wait until queue will clear.
97 NET_XMIT_CN - probably this packet enqueued, but another one dropped.
98 Expected action: backoff or ignore
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100 Auxiliary routines:
101
Jarek Poplawski99c0db22008-10-31 00:45:27 -0700102 ---peek
103
104 like dequeue but without removing a packet from the queue
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 ---reset
107
108 returns qdisc to initial state: purge all buffers, clear all
109 timers, counters (except for statistics) etc.
110
111 ---init
112
113 initializes newly created qdisc.
114
115 ---destroy
116
117 destroys resources allocated by init and during lifetime of qdisc.
118
119 ---change
120
121 changes qdisc parameters.
122 */
123
124/* Protects list of registered TC modules. It is pure SMP lock. */
125static DEFINE_RWLOCK(qdisc_mod_lock);
126
127
128/************************************************
129 * Queueing disciplines manipulation. *
130 ************************************************/
131
132
133/* The list of all installed queueing disciplines. */
134
135static struct Qdisc_ops *qdisc_base;
136
Zhi Yong Wu21eb2182014-01-01 04:34:51 +0800137/* Register/unregister queueing discipline */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
139int register_qdisc(struct Qdisc_ops *qops)
140{
141 struct Qdisc_ops *q, **qp;
142 int rc = -EEXIST;
143
144 write_lock(&qdisc_mod_lock);
145 for (qp = &qdisc_base; (q = *qp) != NULL; qp = &q->next)
146 if (!strcmp(qops->id, q->id))
147 goto out;
148
149 if (qops->enqueue == NULL)
150 qops->enqueue = noop_qdisc_ops.enqueue;
Jarek Poplawski99c0db22008-10-31 00:45:27 -0700151 if (qops->peek == NULL) {
Jarek Poplawski68fd26b2010-08-09 12:18:48 +0000152 if (qops->dequeue == NULL)
Jarek Poplawski99c0db22008-10-31 00:45:27 -0700153 qops->peek = noop_qdisc_ops.peek;
Jarek Poplawski68fd26b2010-08-09 12:18:48 +0000154 else
155 goto out_einval;
Jarek Poplawski99c0db22008-10-31 00:45:27 -0700156 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 if (qops->dequeue == NULL)
158 qops->dequeue = noop_qdisc_ops.dequeue;
159
Jarek Poplawski68fd26b2010-08-09 12:18:48 +0000160 if (qops->cl_ops) {
161 const struct Qdisc_class_ops *cops = qops->cl_ops;
162
Jarek Poplawski3e9e5a52010-08-10 22:31:20 +0000163 if (!(cops->get && cops->put && cops->walk && cops->leaf))
Jarek Poplawski68fd26b2010-08-09 12:18:48 +0000164 goto out_einval;
165
166 if (cops->tcf_chain && !(cops->bind_tcf && cops->unbind_tcf))
167 goto out_einval;
168 }
169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 qops->next = NULL;
171 *qp = qops;
172 rc = 0;
173out:
174 write_unlock(&qdisc_mod_lock);
175 return rc;
Jarek Poplawski68fd26b2010-08-09 12:18:48 +0000176
177out_einval:
178 rc = -EINVAL;
179 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180}
Patrick McHardy62e3ba12008-01-22 22:10:23 -0800181EXPORT_SYMBOL(register_qdisc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
183int unregister_qdisc(struct Qdisc_ops *qops)
184{
185 struct Qdisc_ops *q, **qp;
186 int err = -ENOENT;
187
188 write_lock(&qdisc_mod_lock);
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000189 for (qp = &qdisc_base; (q = *qp) != NULL; qp = &q->next)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 if (q == qops)
191 break;
192 if (q) {
193 *qp = q->next;
194 q->next = NULL;
195 err = 0;
196 }
197 write_unlock(&qdisc_mod_lock);
198 return err;
199}
Patrick McHardy62e3ba12008-01-22 22:10:23 -0800200EXPORT_SYMBOL(unregister_qdisc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
stephen hemminger6da7c8f2013-08-27 16:19:08 -0700202/* Get default qdisc if not otherwise specified */
203void qdisc_get_default(char *name, size_t len)
204{
205 read_lock(&qdisc_mod_lock);
206 strlcpy(name, default_qdisc_ops->id, len);
207 read_unlock(&qdisc_mod_lock);
208}
209
210static struct Qdisc_ops *qdisc_lookup_default(const char *name)
211{
212 struct Qdisc_ops *q = NULL;
213
214 for (q = qdisc_base; q; q = q->next) {
215 if (!strcmp(name, q->id)) {
216 if (!try_module_get(q->owner))
217 q = NULL;
218 break;
219 }
220 }
221
222 return q;
223}
224
225/* Set new default qdisc to use */
226int qdisc_set_default(const char *name)
227{
228 const struct Qdisc_ops *ops;
229
230 if (!capable(CAP_NET_ADMIN))
231 return -EPERM;
232
233 write_lock(&qdisc_mod_lock);
234 ops = qdisc_lookup_default(name);
235 if (!ops) {
236 /* Not found, drop lock and try to load module */
237 write_unlock(&qdisc_mod_lock);
238 request_module("sch_%s", name);
239 write_lock(&qdisc_mod_lock);
240
241 ops = qdisc_lookup_default(name);
242 }
243
244 if (ops) {
245 /* Set new default */
246 module_put(default_qdisc_ops->owner);
247 default_qdisc_ops = ops;
248 }
249 write_unlock(&qdisc_mod_lock);
250
251 return ops ? 0 : -ENOENT;
252}
253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254/* We know handle. Find qdisc among all qdisc's attached to device
Eric Dumazet4eaf3b82015-12-01 20:08:51 -0800255 * (root qdisc, all its children, children of children etc.)
256 * Note: caller either uses rtnl or rcu_read_lock()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 */
258
Hannes Eder6113b742008-11-28 03:06:46 -0800259static struct Qdisc *qdisc_match_from_root(struct Qdisc *root, u32 handle)
David S. Miller8123b422008-08-08 23:23:39 -0700260{
261 struct Qdisc *q;
262
Jiri Kosina69012ae2016-08-16 23:52:58 +0200263 if (!qdisc_dev(root))
264 return (root->handle == handle ? root : NULL);
265
David S. Miller8123b422008-08-08 23:23:39 -0700266 if (!(root->flags & TCQ_F_BUILTIN) &&
267 root->handle == handle)
268 return root;
269
Jiri Kosina59cc1f62016-08-10 11:05:15 +0200270 hash_for_each_possible_rcu(qdisc_dev(root)->qdisc_hash, q, hash, handle) {
David S. Miller8123b422008-08-08 23:23:39 -0700271 if (q->handle == handle)
272 return q;
273 }
274 return NULL;
275}
276
Jiri Kosina49b49972017-03-08 16:03:32 +0100277void qdisc_hash_add(struct Qdisc *q, bool invisible)
Jarek Poplawskif6e0b232008-08-22 03:24:05 -0700278{
Eric Dumazet37314362014-03-08 08:01:19 -0800279 if ((q->parent != TC_H_ROOT) && !(q->flags & TCQ_F_INGRESS)) {
280 struct Qdisc *root = qdisc_dev(q)->qdisc;
Eric Dumazete57a7842013-12-12 15:41:56 -0800281
Eric Dumazet37314362014-03-08 08:01:19 -0800282 WARN_ON_ONCE(root == &noop_qdisc);
Eric Dumazet4eaf3b82015-12-01 20:08:51 -0800283 ASSERT_RTNL();
Jiri Kosina59cc1f62016-08-10 11:05:15 +0200284 hash_add_rcu(qdisc_dev(q)->qdisc_hash, &q->hash, q->handle);
Jiri Kosina49b49972017-03-08 16:03:32 +0100285 if (invisible)
286 q->flags |= TCQ_F_INVISIBLE;
Eric Dumazet37314362014-03-08 08:01:19 -0800287 }
Jarek Poplawskif6e0b232008-08-22 03:24:05 -0700288}
Jiri Kosina59cc1f62016-08-10 11:05:15 +0200289EXPORT_SYMBOL(qdisc_hash_add);
Jarek Poplawskif6e0b232008-08-22 03:24:05 -0700290
Jiri Kosina59cc1f62016-08-10 11:05:15 +0200291void qdisc_hash_del(struct Qdisc *q)
Jarek Poplawskif6e0b232008-08-22 03:24:05 -0700292{
Eric Dumazet4eaf3b82015-12-01 20:08:51 -0800293 if ((q->parent != TC_H_ROOT) && !(q->flags & TCQ_F_INGRESS)) {
294 ASSERT_RTNL();
Jiri Kosina59cc1f62016-08-10 11:05:15 +0200295 hash_del_rcu(&q->hash);
Eric Dumazet4eaf3b82015-12-01 20:08:51 -0800296 }
Jarek Poplawskif6e0b232008-08-22 03:24:05 -0700297}
Jiri Kosina59cc1f62016-08-10 11:05:15 +0200298EXPORT_SYMBOL(qdisc_hash_del);
Jarek Poplawskif6e0b232008-08-22 03:24:05 -0700299
David S. Milleread81cc2008-07-17 00:50:32 -0700300struct Qdisc *qdisc_lookup(struct net_device *dev, u32 handle)
Patrick McHardy43effa12006-11-29 17:35:48 -0800301{
Jarek Poplawskif6e0b232008-08-22 03:24:05 -0700302 struct Qdisc *q;
303
Patrick McHardyaf356af2009-09-04 06:41:18 +0000304 q = qdisc_match_from_root(dev->qdisc, handle);
305 if (q)
306 goto out;
Jarek Poplawskif6e0b232008-08-22 03:24:05 -0700307
Eric Dumazet24824a02010-10-02 06:11:55 +0000308 if (dev_ingress_queue(dev))
309 q = qdisc_match_from_root(
310 dev_ingress_queue(dev)->qdisc_sleeping,
311 handle);
Jarek Poplawskif6486d42008-11-25 13:56:06 -0800312out:
Jarek Poplawskif6e0b232008-08-22 03:24:05 -0700313 return q;
Patrick McHardy43effa12006-11-29 17:35:48 -0800314}
315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316static struct Qdisc *qdisc_leaf(struct Qdisc *p, u32 classid)
317{
318 unsigned long cl;
319 struct Qdisc *leaf;
Eric Dumazet20fea082007-11-14 01:44:41 -0800320 const struct Qdisc_class_ops *cops = p->ops->cl_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
322 if (cops == NULL)
323 return NULL;
324 cl = cops->get(p, classid);
325
326 if (cl == 0)
327 return NULL;
328 leaf = cops->leaf(p, cl);
329 cops->put(p, cl);
330 return leaf;
331}
332
333/* Find queueing discipline by name */
334
Patrick McHardy1e904742008-01-22 22:11:17 -0800335static struct Qdisc_ops *qdisc_lookup_ops(struct nlattr *kind)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336{
337 struct Qdisc_ops *q = NULL;
338
339 if (kind) {
340 read_lock(&qdisc_mod_lock);
341 for (q = qdisc_base; q; q = q->next) {
Patrick McHardy1e904742008-01-22 22:11:17 -0800342 if (nla_strcmp(kind, q->id) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 if (!try_module_get(q->owner))
344 q = NULL;
345 break;
346 }
347 }
348 read_unlock(&qdisc_mod_lock);
349 }
350 return q;
351}
352
Jesper Dangaard Brouer8a8e3d82013-08-14 23:47:11 +0200353/* The linklayer setting were not transferred from iproute2, in older
354 * versions, and the rate tables lookup systems have been dropped in
355 * the kernel. To keep backward compatible with older iproute2 tc
356 * utils, we detect the linklayer setting by detecting if the rate
357 * table were modified.
358 *
359 * For linklayer ATM table entries, the rate table will be aligned to
360 * 48 bytes, thus some table entries will contain the same value. The
361 * mpu (min packet unit) is also encoded into the old rate table, thus
362 * starting from the mpu, we find low and high table entries for
363 * mapping this cell. If these entries contain the same value, when
364 * the rate tables have been modified for linklayer ATM.
365 *
366 * This is done by rounding mpu to the nearest 48 bytes cell/entry,
367 * and then roundup to the next cell, calc the table entry one below,
368 * and compare.
369 */
370static __u8 __detect_linklayer(struct tc_ratespec *r, __u32 *rtab)
371{
372 int low = roundup(r->mpu, 48);
373 int high = roundup(low+1, 48);
374 int cell_low = low >> r->cell_log;
375 int cell_high = (high >> r->cell_log) - 1;
376
377 /* rtab is too inaccurate at rates > 100Mbit/s */
378 if ((r->rate > (100000000/8)) || (rtab[0] == 0)) {
379 pr_debug("TC linklayer: Giving up ATM detection\n");
380 return TC_LINKLAYER_ETHERNET;
381 }
382
383 if ((cell_high > cell_low) && (cell_high < 256)
384 && (rtab[cell_low] == rtab[cell_high])) {
385 pr_debug("TC linklayer: Detected ATM, low(%d)=high(%d)=%u\n",
386 cell_low, cell_high, rtab[cell_high]);
387 return TC_LINKLAYER_ATM;
388 }
389 return TC_LINKLAYER_ETHERNET;
390}
391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392static struct qdisc_rate_table *qdisc_rtab_list;
393
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -0400394struct qdisc_rate_table *qdisc_get_rtab(struct tc_ratespec *r,
395 struct nlattr *tab)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396{
397 struct qdisc_rate_table *rtab;
398
Eric Dumazet40edeff2013-06-02 11:15:55 +0000399 if (tab == NULL || r->rate == 0 || r->cell_log == 0 ||
400 nla_len(tab) != TC_RTAB_SIZE)
401 return NULL;
402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 for (rtab = qdisc_rtab_list; rtab; rtab = rtab->next) {
Eric Dumazet40edeff2013-06-02 11:15:55 +0000404 if (!memcmp(&rtab->rate, r, sizeof(struct tc_ratespec)) &&
405 !memcmp(&rtab->data, nla_data(tab), 1024)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 rtab->refcnt++;
407 return rtab;
408 }
409 }
410
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 rtab = kmalloc(sizeof(*rtab), GFP_KERNEL);
412 if (rtab) {
413 rtab->rate = *r;
414 rtab->refcnt = 1;
Patrick McHardy1e904742008-01-22 22:11:17 -0800415 memcpy(rtab->data, nla_data(tab), 1024);
Jesper Dangaard Brouer8a8e3d82013-08-14 23:47:11 +0200416 if (r->linklayer == TC_LINKLAYER_UNAWARE)
417 r->linklayer = __detect_linklayer(r, rtab->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 rtab->next = qdisc_rtab_list;
419 qdisc_rtab_list = rtab;
420 }
421 return rtab;
422}
Patrick McHardy62e3ba12008-01-22 22:10:23 -0800423EXPORT_SYMBOL(qdisc_get_rtab);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
425void qdisc_put_rtab(struct qdisc_rate_table *tab)
426{
427 struct qdisc_rate_table *rtab, **rtabp;
428
429 if (!tab || --tab->refcnt)
430 return;
431
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000432 for (rtabp = &qdisc_rtab_list;
433 (rtab = *rtabp) != NULL;
434 rtabp = &rtab->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 if (rtab == tab) {
436 *rtabp = rtab->next;
437 kfree(rtab);
438 return;
439 }
440 }
441}
Patrick McHardy62e3ba12008-01-22 22:10:23 -0800442EXPORT_SYMBOL(qdisc_put_rtab);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700444static LIST_HEAD(qdisc_stab_list);
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700445
446static const struct nla_policy stab_policy[TCA_STAB_MAX + 1] = {
447 [TCA_STAB_BASE] = { .len = sizeof(struct tc_sizespec) },
448 [TCA_STAB_DATA] = { .type = NLA_BINARY },
449};
450
451static struct qdisc_size_table *qdisc_get_stab(struct nlattr *opt)
452{
453 struct nlattr *tb[TCA_STAB_MAX + 1];
454 struct qdisc_size_table *stab;
455 struct tc_sizespec *s;
456 unsigned int tsize = 0;
457 u16 *tab = NULL;
458 int err;
459
460 err = nla_parse_nested(tb, TCA_STAB_MAX, opt, stab_policy);
461 if (err < 0)
462 return ERR_PTR(err);
463 if (!tb[TCA_STAB_BASE])
464 return ERR_PTR(-EINVAL);
465
466 s = nla_data(tb[TCA_STAB_BASE]);
467
468 if (s->tsize > 0) {
469 if (!tb[TCA_STAB_DATA])
470 return ERR_PTR(-EINVAL);
471 tab = nla_data(tb[TCA_STAB_DATA]);
472 tsize = nla_len(tb[TCA_STAB_DATA]) / sizeof(u16);
473 }
474
Dan Carpenter00093fa2010-08-14 11:09:49 +0000475 if (tsize != s->tsize || (!tab && tsize > 0))
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700476 return ERR_PTR(-EINVAL);
477
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700478 list_for_each_entry(stab, &qdisc_stab_list, list) {
479 if (memcmp(&stab->szopts, s, sizeof(*s)))
480 continue;
481 if (tsize > 0 && memcmp(stab->data, tab, tsize * sizeof(u16)))
482 continue;
483 stab->refcnt++;
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700484 return stab;
485 }
486
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700487 stab = kmalloc(sizeof(*stab) + tsize * sizeof(u16), GFP_KERNEL);
488 if (!stab)
489 return ERR_PTR(-ENOMEM);
490
491 stab->refcnt = 1;
492 stab->szopts = *s;
493 if (tsize > 0)
494 memcpy(stab->data, tab, tsize * sizeof(u16));
495
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700496 list_add_tail(&stab->list, &qdisc_stab_list);
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700497
498 return stab;
499}
500
Eric Dumazeta2da5702011-01-20 03:48:19 +0000501static void stab_kfree_rcu(struct rcu_head *head)
502{
503 kfree(container_of(head, struct qdisc_size_table, rcu));
504}
505
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700506void qdisc_put_stab(struct qdisc_size_table *tab)
507{
508 if (!tab)
509 return;
510
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700511 if (--tab->refcnt == 0) {
512 list_del(&tab->list);
Eric Dumazeta2da5702011-01-20 03:48:19 +0000513 call_rcu_bh(&tab->rcu, stab_kfree_rcu);
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700514 }
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700515}
516EXPORT_SYMBOL(qdisc_put_stab);
517
518static int qdisc_dump_stab(struct sk_buff *skb, struct qdisc_size_table *stab)
519{
520 struct nlattr *nest;
521
522 nest = nla_nest_start(skb, TCA_STAB);
Patrick McHardy3aa46142008-11-20 04:07:14 -0800523 if (nest == NULL)
524 goto nla_put_failure;
David S. Miller1b34ec42012-03-29 05:11:39 -0400525 if (nla_put(skb, TCA_STAB_BASE, sizeof(stab->szopts), &stab->szopts))
526 goto nla_put_failure;
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700527 nla_nest_end(skb, nest);
528
529 return skb->len;
530
531nla_put_failure:
532 return -1;
533}
534
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -0400535void __qdisc_calculate_pkt_len(struct sk_buff *skb,
536 const struct qdisc_size_table *stab)
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700537{
538 int pkt_len, slot;
539
540 pkt_len = skb->len + stab->szopts.overhead;
541 if (unlikely(!stab->szopts.tsize))
542 goto out;
543
544 slot = pkt_len + stab->szopts.cell_align;
545 if (unlikely(slot < 0))
546 slot = 0;
547
548 slot >>= stab->szopts.cell_log;
549 if (likely(slot < stab->szopts.tsize))
550 pkt_len = stab->data[slot];
551 else
552 pkt_len = stab->data[stab->szopts.tsize - 1] *
553 (slot / stab->szopts.tsize) +
554 stab->data[slot % stab->szopts.tsize];
555
556 pkt_len <<= stab->szopts.size_log;
557out:
558 if (unlikely(pkt_len < 1))
559 pkt_len = 1;
560 qdisc_skb_cb(skb)->pkt_len = pkt_len;
561}
Eric Dumazeta2da5702011-01-20 03:48:19 +0000562EXPORT_SYMBOL(__qdisc_calculate_pkt_len);
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700563
Florian Westphal6e765a02014-06-11 20:35:18 +0200564void qdisc_warn_nonwc(const char *txt, struct Qdisc *qdisc)
Jarek Poplawskib00355d2009-02-01 01:12:42 -0800565{
566 if (!(qdisc->flags & TCQ_F_WARN_NONWC)) {
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000567 pr_warn("%s: %s qdisc %X: is non-work-conserving?\n",
568 txt, qdisc->ops->id, qdisc->handle >> 16);
Jarek Poplawskib00355d2009-02-01 01:12:42 -0800569 qdisc->flags |= TCQ_F_WARN_NONWC;
570 }
571}
572EXPORT_SYMBOL(qdisc_warn_nonwc);
573
Patrick McHardy41794772007-03-16 01:19:15 -0700574static enum hrtimer_restart qdisc_watchdog(struct hrtimer *timer)
575{
576 struct qdisc_watchdog *wd = container_of(timer, struct qdisc_watchdog,
David S. Miller2fbd3da2009-09-01 17:59:25 -0700577 timer);
Patrick McHardy41794772007-03-16 01:19:15 -0700578
John Fastabend1e203c12014-10-02 22:43:09 -0700579 rcu_read_lock();
David S. Miller8608db02008-08-18 20:51:18 -0700580 __netif_schedule(qdisc_root(wd->qdisc));
John Fastabend1e203c12014-10-02 22:43:09 -0700581 rcu_read_unlock();
Stephen Hemminger19365022007-03-22 12:18:35 -0700582
Patrick McHardy41794772007-03-16 01:19:15 -0700583 return HRTIMER_NORESTART;
584}
585
586void qdisc_watchdog_init(struct qdisc_watchdog *wd, struct Qdisc *qdisc)
587{
Eric Dumazet4a8e3202014-09-20 18:01:30 -0700588 hrtimer_init(&wd->timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS_PINNED);
David S. Miller2fbd3da2009-09-01 17:59:25 -0700589 wd->timer.function = qdisc_watchdog;
Patrick McHardy41794772007-03-16 01:19:15 -0700590 wd->qdisc = qdisc;
591}
592EXPORT_SYMBOL(qdisc_watchdog_init);
593
Eric Dumazet45f50be2016-06-10 16:41:39 -0700594void qdisc_watchdog_schedule_ns(struct qdisc_watchdog *wd, u64 expires)
Patrick McHardy41794772007-03-16 01:19:15 -0700595{
Jarek Poplawski2540e052008-08-21 05:11:14 -0700596 if (test_bit(__QDISC_STATE_DEACTIVATED,
597 &qdisc_root_sleeping(wd->qdisc)->state))
598 return;
599
Eric Dumazeta9efad82016-05-23 14:24:56 -0700600 if (wd->last_expires == expires)
601 return;
602
603 wd->last_expires = expires;
Eric Dumazet46baac32012-10-20 00:40:51 +0000604 hrtimer_start(&wd->timer,
Jiri Pirko34c5d292013-02-12 00:12:04 +0000605 ns_to_ktime(expires),
Eric Dumazet4a8e3202014-09-20 18:01:30 -0700606 HRTIMER_MODE_ABS_PINNED);
Patrick McHardy41794772007-03-16 01:19:15 -0700607}
Jiri Pirko34c5d292013-02-12 00:12:04 +0000608EXPORT_SYMBOL(qdisc_watchdog_schedule_ns);
Patrick McHardy41794772007-03-16 01:19:15 -0700609
610void qdisc_watchdog_cancel(struct qdisc_watchdog *wd)
611{
David S. Miller2fbd3da2009-09-01 17:59:25 -0700612 hrtimer_cancel(&wd->timer);
Patrick McHardy41794772007-03-16 01:19:15 -0700613}
614EXPORT_SYMBOL(qdisc_watchdog_cancel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
Adrian Bunka94f7792008-07-22 14:20:11 -0700616static struct hlist_head *qdisc_class_hash_alloc(unsigned int n)
Patrick McHardy6fe1c7a2008-07-05 23:21:31 -0700617{
618 unsigned int size = n * sizeof(struct hlist_head), i;
619 struct hlist_head *h;
620
621 if (size <= PAGE_SIZE)
622 h = kmalloc(size, GFP_KERNEL);
623 else
624 h = (struct hlist_head *)
625 __get_free_pages(GFP_KERNEL, get_order(size));
626
627 if (h != NULL) {
628 for (i = 0; i < n; i++)
629 INIT_HLIST_HEAD(&h[i]);
630 }
631 return h;
632}
633
634static void qdisc_class_hash_free(struct hlist_head *h, unsigned int n)
635{
636 unsigned int size = n * sizeof(struct hlist_head);
637
638 if (size <= PAGE_SIZE)
639 kfree(h);
640 else
641 free_pages((unsigned long)h, get_order(size));
642}
643
644void qdisc_class_hash_grow(struct Qdisc *sch, struct Qdisc_class_hash *clhash)
645{
646 struct Qdisc_class_common *cl;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800647 struct hlist_node *next;
Patrick McHardy6fe1c7a2008-07-05 23:21:31 -0700648 struct hlist_head *nhash, *ohash;
649 unsigned int nsize, nmask, osize;
650 unsigned int i, h;
651
652 /* Rehash when load factor exceeds 0.75 */
653 if (clhash->hashelems * 4 <= clhash->hashsize * 3)
654 return;
655 nsize = clhash->hashsize * 2;
656 nmask = nsize - 1;
657 nhash = qdisc_class_hash_alloc(nsize);
658 if (nhash == NULL)
659 return;
660
661 ohash = clhash->hash;
662 osize = clhash->hashsize;
663
664 sch_tree_lock(sch);
665 for (i = 0; i < osize; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -0800666 hlist_for_each_entry_safe(cl, next, &ohash[i], hnode) {
Patrick McHardy6fe1c7a2008-07-05 23:21:31 -0700667 h = qdisc_class_hash(cl->classid, nmask);
668 hlist_add_head(&cl->hnode, &nhash[h]);
669 }
670 }
671 clhash->hash = nhash;
672 clhash->hashsize = nsize;
673 clhash->hashmask = nmask;
674 sch_tree_unlock(sch);
675
676 qdisc_class_hash_free(ohash, osize);
677}
678EXPORT_SYMBOL(qdisc_class_hash_grow);
679
680int qdisc_class_hash_init(struct Qdisc_class_hash *clhash)
681{
682 unsigned int size = 4;
683
684 clhash->hash = qdisc_class_hash_alloc(size);
685 if (clhash->hash == NULL)
686 return -ENOMEM;
687 clhash->hashsize = size;
688 clhash->hashmask = size - 1;
689 clhash->hashelems = 0;
690 return 0;
691}
692EXPORT_SYMBOL(qdisc_class_hash_init);
693
694void qdisc_class_hash_destroy(struct Qdisc_class_hash *clhash)
695{
696 qdisc_class_hash_free(clhash->hash, clhash->hashsize);
697}
698EXPORT_SYMBOL(qdisc_class_hash_destroy);
699
700void qdisc_class_hash_insert(struct Qdisc_class_hash *clhash,
701 struct Qdisc_class_common *cl)
702{
703 unsigned int h;
704
705 INIT_HLIST_NODE(&cl->hnode);
706 h = qdisc_class_hash(cl->classid, clhash->hashmask);
707 hlist_add_head(&cl->hnode, &clhash->hash[h]);
708 clhash->hashelems++;
709}
710EXPORT_SYMBOL(qdisc_class_hash_insert);
711
712void qdisc_class_hash_remove(struct Qdisc_class_hash *clhash,
713 struct Qdisc_class_common *cl)
714{
715 hlist_del(&cl->hnode);
716 clhash->hashelems--;
717}
718EXPORT_SYMBOL(qdisc_class_hash_remove);
719
Eric Dumazetfa0f5aa2012-01-03 00:00:11 +0000720/* Allocate an unique handle from space managed by kernel
721 * Possible range is [8000-FFFF]:0000 (0x8000 values)
722 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723static u32 qdisc_alloc_handle(struct net_device *dev)
724{
Eric Dumazetfa0f5aa2012-01-03 00:00:11 +0000725 int i = 0x8000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 static u32 autohandle = TC_H_MAKE(0x80000000U, 0);
727
728 do {
729 autohandle += TC_H_MAKE(0x10000U, 0);
730 if (autohandle == TC_H_MAKE(TC_H_ROOT, 0))
731 autohandle = TC_H_MAKE(0x80000000U, 0);
Eric Dumazetfa0f5aa2012-01-03 00:00:11 +0000732 if (!qdisc_lookup(dev, autohandle))
733 return autohandle;
734 cond_resched();
735 } while (--i > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Eric Dumazetfa0f5aa2012-01-03 00:00:11 +0000737 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738}
739
WANG Cong2ccccf52016-02-25 14:55:01 -0800740void qdisc_tree_reduce_backlog(struct Qdisc *sch, unsigned int n,
741 unsigned int len)
Patrick McHardy43effa12006-11-29 17:35:48 -0800742{
Eric Dumazet20fea082007-11-14 01:44:41 -0800743 const struct Qdisc_class_ops *cops;
Patrick McHardy43effa12006-11-29 17:35:48 -0800744 unsigned long cl;
745 u32 parentid;
Eric Dumazet2c8c8e62013-10-07 08:32:32 -0700746 int drops;
Patrick McHardy43effa12006-11-29 17:35:48 -0800747
WANG Cong2ccccf52016-02-25 14:55:01 -0800748 if (n == 0 && len == 0)
Patrick McHardy43effa12006-11-29 17:35:48 -0800749 return;
Eric Dumazet2c8c8e62013-10-07 08:32:32 -0700750 drops = max_t(int, n, 0);
Eric Dumazet4eaf3b82015-12-01 20:08:51 -0800751 rcu_read_lock();
Patrick McHardy43effa12006-11-29 17:35:48 -0800752 while ((parentid = sch->parent)) {
Jarek Poplawski066a3b52008-04-14 15:10:42 -0700753 if (TC_H_MAJ(parentid) == TC_H_MAJ(TC_H_INGRESS))
Eric Dumazet4eaf3b82015-12-01 20:08:51 -0800754 break;
Jarek Poplawski066a3b52008-04-14 15:10:42 -0700755
Eric Dumazet4eaf3b82015-12-01 20:08:51 -0800756 if (sch->flags & TCQ_F_NOPARENT)
757 break;
758 /* TODO: perform the search on a per txq basis */
David S. Miller5ce2d482008-07-08 17:06:30 -0700759 sch = qdisc_lookup(qdisc_dev(sch), TC_H_MAJ(parentid));
Patrick McHardyffc8fef2007-07-30 17:11:50 -0700760 if (sch == NULL) {
Eric Dumazet4eaf3b82015-12-01 20:08:51 -0800761 WARN_ON_ONCE(parentid != TC_H_ROOT);
762 break;
Patrick McHardyffc8fef2007-07-30 17:11:50 -0700763 }
Patrick McHardy43effa12006-11-29 17:35:48 -0800764 cops = sch->ops->cl_ops;
765 if (cops->qlen_notify) {
766 cl = cops->get(sch, parentid);
767 cops->qlen_notify(sch, cl);
768 cops->put(sch, cl);
769 }
770 sch->q.qlen -= n;
WANG Cong2ccccf52016-02-25 14:55:01 -0800771 sch->qstats.backlog -= len;
John Fastabend25331d62014-09-28 11:53:29 -0700772 __qdisc_qstats_drop(sch, drops);
Patrick McHardy43effa12006-11-29 17:35:48 -0800773 }
Eric Dumazet4eaf3b82015-12-01 20:08:51 -0800774 rcu_read_unlock();
Patrick McHardy43effa12006-11-29 17:35:48 -0800775}
WANG Cong2ccccf52016-02-25 14:55:01 -0800776EXPORT_SYMBOL(qdisc_tree_reduce_backlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
Tom Goff7316ae82010-03-19 15:40:13 +0000778static void notify_and_destroy(struct net *net, struct sk_buff *skb,
779 struct nlmsghdr *n, u32 clid,
David S. Miller99194cf2008-07-17 04:54:10 -0700780 struct Qdisc *old, struct Qdisc *new)
781{
782 if (new || old)
Tom Goff7316ae82010-03-19 15:40:13 +0000783 qdisc_notify(net, skb, n, clid, old, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
David S. Miller4d8863a2008-08-18 21:03:15 -0700785 if (old)
David S. Miller99194cf2008-07-17 04:54:10 -0700786 qdisc_destroy(old);
David S. Miller99194cf2008-07-17 04:54:10 -0700787}
788
789/* Graft qdisc "new" to class "classid" of qdisc "parent" or
790 * to device "dev".
791 *
792 * When appropriate send a netlink notification using 'skb'
793 * and "n".
794 *
795 * On success, destroy old qdisc.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 */
797
798static int qdisc_graft(struct net_device *dev, struct Qdisc *parent,
David S. Miller99194cf2008-07-17 04:54:10 -0700799 struct sk_buff *skb, struct nlmsghdr *n, u32 classid,
800 struct Qdisc *new, struct Qdisc *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801{
David S. Miller99194cf2008-07-17 04:54:10 -0700802 struct Qdisc *q = old;
Tom Goff7316ae82010-03-19 15:40:13 +0000803 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900806 if (parent == NULL) {
David S. Miller99194cf2008-07-17 04:54:10 -0700807 unsigned int i, num_q, ingress;
808
809 ingress = 0;
810 num_q = dev->num_tx_queues;
David S. Miller8d50b532008-07-30 02:37:46 -0700811 if ((q && q->flags & TCQ_F_INGRESS) ||
812 (new && new->flags & TCQ_F_INGRESS)) {
David S. Miller99194cf2008-07-17 04:54:10 -0700813 num_q = 1;
814 ingress = 1;
Eric Dumazet24824a02010-10-02 06:11:55 +0000815 if (!dev_ingress_queue(dev))
816 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 }
David S. Miller99194cf2008-07-17 04:54:10 -0700818
819 if (dev->flags & IFF_UP)
820 dev_deactivate(dev);
821
WANG Cong86e363d2015-05-26 16:08:48 -0700822 if (new && new->ops->attach)
823 goto skip;
David S. Miller6ec1c692009-09-06 01:58:51 -0700824
David S. Miller99194cf2008-07-17 04:54:10 -0700825 for (i = 0; i < num_q; i++) {
Eric Dumazet24824a02010-10-02 06:11:55 +0000826 struct netdev_queue *dev_queue = dev_ingress_queue(dev);
David S. Miller99194cf2008-07-17 04:54:10 -0700827
828 if (!ingress)
829 dev_queue = netdev_get_tx_queue(dev, i);
830
David S. Miller8d50b532008-07-30 02:37:46 -0700831 old = dev_graft_qdisc(dev_queue, new);
832 if (new && i > 0)
833 atomic_inc(&new->refcnt);
834
Jarek Poplawski036d6a62009-09-13 22:35:44 +0000835 if (!ingress)
836 qdisc_destroy(old);
David S. Miller99194cf2008-07-17 04:54:10 -0700837 }
838
WANG Cong86e363d2015-05-26 16:08:48 -0700839skip:
Jarek Poplawski036d6a62009-09-13 22:35:44 +0000840 if (!ingress) {
Tom Goff7316ae82010-03-19 15:40:13 +0000841 notify_and_destroy(net, skb, n, classid,
842 dev->qdisc, new);
Jarek Poplawski036d6a62009-09-13 22:35:44 +0000843 if (new && !new->ops->attach)
844 atomic_inc(&new->refcnt);
845 dev->qdisc = new ? : &noop_qdisc;
WANG Cong86e363d2015-05-26 16:08:48 -0700846
847 if (new && new->ops->attach)
848 new->ops->attach(new);
Jarek Poplawski036d6a62009-09-13 22:35:44 +0000849 } else {
Tom Goff7316ae82010-03-19 15:40:13 +0000850 notify_and_destroy(net, skb, n, classid, old, new);
Jarek Poplawski036d6a62009-09-13 22:35:44 +0000851 }
Patrick McHardyaf356af2009-09-04 06:41:18 +0000852
David S. Miller99194cf2008-07-17 04:54:10 -0700853 if (dev->flags & IFF_UP)
854 dev_activate(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 } else {
Eric Dumazet20fea082007-11-14 01:44:41 -0800856 const struct Qdisc_class_ops *cops = parent->ops->cl_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Patrick McHardyc9f1d032009-09-04 06:41:13 +0000858 err = -EOPNOTSUPP;
859 if (cops && cops->graft) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 unsigned long cl = cops->get(parent, classid);
861 if (cl) {
David S. Miller99194cf2008-07-17 04:54:10 -0700862 err = cops->graft(parent, cl, new, &old);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 cops->put(parent, cl);
Patrick McHardyc9f1d032009-09-04 06:41:13 +0000864 } else
865 err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 }
David S. Miller99194cf2008-07-17 04:54:10 -0700867 if (!err)
Tom Goff7316ae82010-03-19 15:40:13 +0000868 notify_and_destroy(net, skb, n, classid, old, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 }
870 return err;
871}
872
Jarek Poplawski25bfcd52008-08-18 20:53:34 -0700873/* lockdep annotation is needed for ingress; egress gets it only for name */
874static struct lock_class_key qdisc_tx_lock;
875static struct lock_class_key qdisc_rx_lock;
876
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877/*
878 Allocate and initialize new qdisc.
879
880 Parameters are passed via opt.
881 */
882
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -0400883static struct Qdisc *qdisc_create(struct net_device *dev,
884 struct netdev_queue *dev_queue,
885 struct Qdisc *p, u32 parent, u32 handle,
886 struct nlattr **tca, int *errp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887{
888 int err;
Patrick McHardy1e904742008-01-22 22:11:17 -0800889 struct nlattr *kind = tca[TCA_KIND];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 struct Qdisc *sch;
891 struct Qdisc_ops *ops;
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700892 struct qdisc_size_table *stab;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
894 ops = qdisc_lookup_ops(kind);
Johannes Berg95a5afc2008-10-16 15:24:51 -0700895#ifdef CONFIG_MODULES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 if (ops == NULL && kind != NULL) {
897 char name[IFNAMSIZ];
Patrick McHardy1e904742008-01-22 22:11:17 -0800898 if (nla_strlcpy(name, kind, IFNAMSIZ) < IFNAMSIZ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 /* We dropped the RTNL semaphore in order to
900 * perform the module load. So, even if we
901 * succeeded in loading the module we have to
902 * tell the caller to replay the request. We
903 * indicate this using -EAGAIN.
904 * We replay the request because the device may
905 * go away in the mean time.
906 */
907 rtnl_unlock();
908 request_module("sch_%s", name);
909 rtnl_lock();
910 ops = qdisc_lookup_ops(kind);
911 if (ops != NULL) {
912 /* We will try again qdisc_lookup_ops,
913 * so don't keep a reference.
914 */
915 module_put(ops->owner);
916 err = -EAGAIN;
917 goto err_out;
918 }
919 }
920 }
921#endif
922
Jamal Hadi Salimb9e2cc02006-08-03 16:36:51 -0700923 err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 if (ops == NULL)
925 goto err_out;
926
David S. Miller5ce2d482008-07-08 17:06:30 -0700927 sch = qdisc_alloc(dev_queue, ops);
Thomas Graf3d54b822005-07-05 14:15:09 -0700928 if (IS_ERR(sch)) {
929 err = PTR_ERR(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 goto err_out2;
Thomas Graf3d54b822005-07-05 14:15:09 -0700931 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
Patrick McHardyffc8fef2007-07-30 17:11:50 -0700933 sch->parent = parent;
934
Thomas Graf3d54b822005-07-05 14:15:09 -0700935 if (handle == TC_H_INGRESS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 sch->flags |= TCQ_F_INGRESS;
Thomas Graf3d54b822005-07-05 14:15:09 -0700937 handle = TC_H_MAKE(TC_H_INGRESS, 0);
Jarek Poplawski25bfcd52008-08-18 20:53:34 -0700938 lockdep_set_class(qdisc_lock(sch), &qdisc_rx_lock);
Patrick McHardyfd44de72007-04-16 17:07:08 -0700939 } else {
Patrick McHardyfd44de72007-04-16 17:07:08 -0700940 if (handle == 0) {
941 handle = qdisc_alloc_handle(dev);
942 err = -ENOMEM;
943 if (handle == 0)
944 goto err_out3;
945 }
Jarek Poplawski25bfcd52008-08-18 20:53:34 -0700946 lockdep_set_class(qdisc_lock(sch), &qdisc_tx_lock);
Eric Dumazet1abbe132012-12-11 15:54:33 +0000947 if (!netif_is_multiqueue(dev))
Eric Dumazet225734d2015-12-15 09:43:12 -0800948 sch->flags |= TCQ_F_ONETXQUEUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 }
950
Thomas Graf3d54b822005-07-05 14:15:09 -0700951 sch->handle = handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
Jesper Dangaard Brouer84c46dd2016-11-03 14:56:11 +0100953 /* This exist to keep backward compatible with a userspace
954 * loophole, what allowed userspace to get IFF_NO_QUEUE
955 * facility on older kernels by setting tx_queue_len=0 (prior
956 * to qdisc init), and then forgot to reinit tx_queue_len
957 * before again attaching a qdisc.
958 */
959 if ((dev->priv_flags & IFF_NO_QUEUE) && (dev->tx_queue_len == 0)) {
960 dev->tx_queue_len = DEFAULT_TX_QUEUE_LEN;
961 netdev_info(dev, "Caught tx_queue_len zero misconfig\n");
962 }
963
Patrick McHardy1e904742008-01-22 22:11:17 -0800964 if (!ops->init || (err = ops->init(sch, tca[TCA_OPTIONS])) == 0) {
John Fastabend22e0f8b2014-09-28 11:52:56 -0700965 if (qdisc_is_percpu_stats(sch)) {
966 sch->cpu_bstats =
Sabrina Dubroca7c1c97d2014-10-21 11:23:30 +0200967 netdev_alloc_pcpu_stats(struct gnet_stats_basic_cpu);
John Fastabend22e0f8b2014-09-28 11:52:56 -0700968 if (!sch->cpu_bstats)
969 goto err_out4;
John Fastabendb0ab6f92014-09-28 11:54:24 -0700970
971 sch->cpu_qstats = alloc_percpu(struct gnet_stats_queue);
972 if (!sch->cpu_qstats)
973 goto err_out4;
John Fastabend22e0f8b2014-09-28 11:52:56 -0700974 }
975
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700976 if (tca[TCA_STAB]) {
977 stab = qdisc_get_stab(tca[TCA_STAB]);
978 if (IS_ERR(stab)) {
979 err = PTR_ERR(stab);
Jarek Poplawski7c64b9f2009-09-15 23:42:05 -0700980 goto err_out4;
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700981 }
Eric Dumazeta2da5702011-01-20 03:48:19 +0000982 rcu_assign_pointer(sch->stab, stab);
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700983 }
Patrick McHardy1e904742008-01-22 22:11:17 -0800984 if (tca[TCA_RATE]) {
Eric Dumazetedb09eb2016-06-06 09:37:16 -0700985 seqcount_t *running;
Jarek Poplawskif6f9b932008-08-27 02:25:17 -0700986
Patrick McHardy23bcf632009-09-09 18:11:23 -0700987 err = -EOPNOTSUPP;
988 if (sch->flags & TCQ_F_MQROOT)
989 goto err_out4;
990
Jarek Poplawskif6f9b932008-08-27 02:25:17 -0700991 if ((sch->parent != TC_H_ROOT) &&
Patrick McHardy23bcf632009-09-09 18:11:23 -0700992 !(sch->flags & TCQ_F_INGRESS) &&
993 (!p || !(p->flags & TCQ_F_MQROOT)))
Eric Dumazetedb09eb2016-06-06 09:37:16 -0700994 running = qdisc_root_sleeping_running(sch);
Jarek Poplawskif6f9b932008-08-27 02:25:17 -0700995 else
Eric Dumazetedb09eb2016-06-06 09:37:16 -0700996 running = &sch->running;
Jarek Poplawskif6f9b932008-08-27 02:25:17 -0700997
John Fastabend22e0f8b2014-09-28 11:52:56 -0700998 err = gen_new_estimator(&sch->bstats,
999 sch->cpu_bstats,
1000 &sch->rate_est,
Eric Dumazetedb09eb2016-06-06 09:37:16 -07001001 NULL,
1002 running,
John Fastabend22e0f8b2014-09-28 11:52:56 -07001003 tca[TCA_RATE]);
Patrick McHardy23bcf632009-09-09 18:11:23 -07001004 if (err)
1005 goto err_out4;
Thomas Graf023e09a2005-07-05 14:15:53 -07001006 }
Jarek Poplawskif6e0b232008-08-22 03:24:05 -07001007
Jiri Kosina49b49972017-03-08 16:03:32 +01001008 qdisc_hash_add(sch, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 return sch;
1011 }
Eric Dumazet87b60cf2017-02-10 10:31:49 -08001012 /* ops->init() failed, we call ->destroy() like qdisc_create_dflt() */
1013 ops->destroy(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014err_out3:
1015 dev_put(dev);
Thomas Graf3d54b822005-07-05 14:15:09 -07001016 kfree((char *) sch - sch->padded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017err_out2:
1018 module_put(ops->owner);
1019err_out:
1020 *errp = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 return NULL;
Patrick McHardy23bcf632009-09-09 18:11:23 -07001022
1023err_out4:
John Fastabend22e0f8b2014-09-28 11:52:56 -07001024 free_percpu(sch->cpu_bstats);
John Fastabendb0ab6f92014-09-28 11:54:24 -07001025 free_percpu(sch->cpu_qstats);
Patrick McHardy23bcf632009-09-09 18:11:23 -07001026 /*
1027 * Any broken qdiscs that would require a ops->reset() here?
1028 * The qdisc was never in action so it shouldn't be necessary.
1029 */
Eric Dumazeta2da5702011-01-20 03:48:19 +00001030 qdisc_put_stab(rtnl_dereference(sch->stab));
Patrick McHardy23bcf632009-09-09 18:11:23 -07001031 if (ops->destroy)
1032 ops->destroy(sch);
1033 goto err_out3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034}
1035
Patrick McHardy1e904742008-01-22 22:11:17 -08001036static int qdisc_change(struct Qdisc *sch, struct nlattr **tca)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037{
Eric Dumazeta2da5702011-01-20 03:48:19 +00001038 struct qdisc_size_table *ostab, *stab = NULL;
Jussi Kivilinna175f9c12008-07-20 00:08:47 -07001039 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
Jussi Kivilinna175f9c12008-07-20 00:08:47 -07001041 if (tca[TCA_OPTIONS]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 if (sch->ops->change == NULL)
1043 return -EINVAL;
Patrick McHardy1e904742008-01-22 22:11:17 -08001044 err = sch->ops->change(sch, tca[TCA_OPTIONS]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 if (err)
1046 return err;
1047 }
Jussi Kivilinna175f9c12008-07-20 00:08:47 -07001048
1049 if (tca[TCA_STAB]) {
1050 stab = qdisc_get_stab(tca[TCA_STAB]);
1051 if (IS_ERR(stab))
1052 return PTR_ERR(stab);
1053 }
1054
Eric Dumazeta2da5702011-01-20 03:48:19 +00001055 ostab = rtnl_dereference(sch->stab);
1056 rcu_assign_pointer(sch->stab, stab);
1057 qdisc_put_stab(ostab);
Jussi Kivilinna175f9c12008-07-20 00:08:47 -07001058
Patrick McHardy23bcf632009-09-09 18:11:23 -07001059 if (tca[TCA_RATE]) {
Stephen Hemminger71bcb092008-11-25 21:13:31 -08001060 /* NB: ignores errors from replace_estimator
1061 because change can't be undone. */
Patrick McHardy23bcf632009-09-09 18:11:23 -07001062 if (sch->flags & TCQ_F_MQROOT)
1063 goto out;
John Fastabend22e0f8b2014-09-28 11:52:56 -07001064 gen_replace_estimator(&sch->bstats,
1065 sch->cpu_bstats,
1066 &sch->rate_est,
Eric Dumazetedb09eb2016-06-06 09:37:16 -07001067 NULL,
1068 qdisc_root_sleeping_running(sch),
John Fastabend22e0f8b2014-09-28 11:52:56 -07001069 tca[TCA_RATE]);
Patrick McHardy23bcf632009-09-09 18:11:23 -07001070 }
1071out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 return 0;
1073}
1074
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001075struct check_loop_arg {
1076 struct qdisc_walker w;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 struct Qdisc *p;
1078 int depth;
1079};
1080
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -04001081static int check_loop_fn(struct Qdisc *q, unsigned long cl,
1082 struct qdisc_walker *w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083
1084static int check_loop(struct Qdisc *q, struct Qdisc *p, int depth)
1085{
1086 struct check_loop_arg arg;
1087
1088 if (q->ops->cl_ops == NULL)
1089 return 0;
1090
1091 arg.w.stop = arg.w.skip = arg.w.count = 0;
1092 arg.w.fn = check_loop_fn;
1093 arg.depth = depth;
1094 arg.p = p;
1095 q->ops->cl_ops->walk(q, &arg.w);
1096 return arg.w.stop ? -ELOOP : 0;
1097}
1098
1099static int
1100check_loop_fn(struct Qdisc *q, unsigned long cl, struct qdisc_walker *w)
1101{
1102 struct Qdisc *leaf;
Eric Dumazet20fea082007-11-14 01:44:41 -08001103 const struct Qdisc_class_ops *cops = q->ops->cl_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 struct check_loop_arg *arg = (struct check_loop_arg *)w;
1105
1106 leaf = cops->leaf(q, cl);
1107 if (leaf) {
1108 if (leaf == arg->p || arg->depth > 7)
1109 return -ELOOP;
1110 return check_loop(leaf, arg->p, arg->depth + 1);
1111 }
1112 return 0;
1113}
1114
1115/*
1116 * Delete/get qdisc.
1117 */
1118
Thomas Graf661d2962013-03-21 07:45:29 +00001119static int tc_get_qdisc(struct sk_buff *skb, struct nlmsghdr *n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001121 struct net *net = sock_net(skb->sk);
David S. Miller02ef22c2012-06-26 21:50:05 -07001122 struct tcmsg *tcm = nlmsg_data(n);
Patrick McHardy1e904742008-01-22 22:11:17 -08001123 struct nlattr *tca[TCA_MAX + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 struct net_device *dev;
Hong zhi guode179c82013-03-25 17:36:33 +00001125 u32 clid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 struct Qdisc *q = NULL;
1127 struct Qdisc *p = NULL;
1128 int err;
1129
Stéphane Graber4e8bbb82014-04-30 11:25:43 -04001130 if ((n->nlmsg_type != RTM_GETQDISC) &&
David S. Miller5f013c9b2014-05-12 13:19:14 -04001131 !netlink_ns_capable(skb, net->user_ns, CAP_NET_ADMIN))
Eric W. Biedermandfc47ef2012-11-16 03:03:00 +00001132 return -EPERM;
1133
Patrick McHardy1e904742008-01-22 22:11:17 -08001134 err = nlmsg_parse(n, sizeof(*tcm), tca, TCA_MAX, NULL);
1135 if (err < 0)
1136 return err;
1137
Hong zhi guode179c82013-03-25 17:36:33 +00001138 dev = __dev_get_by_index(net, tcm->tcm_ifindex);
1139 if (!dev)
1140 return -ENODEV;
1141
1142 clid = tcm->tcm_parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 if (clid) {
1144 if (clid != TC_H_ROOT) {
1145 if (TC_H_MAJ(clid) != TC_H_MAJ(TC_H_INGRESS)) {
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001146 p = qdisc_lookup(dev, TC_H_MAJ(clid));
1147 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 return -ENOENT;
1149 q = qdisc_leaf(p, clid);
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001150 } else if (dev_ingress_queue(dev)) {
1151 q = dev_ingress_queue(dev)->qdisc_sleeping;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +09001152 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 } else {
Patrick McHardyaf356af2009-09-04 06:41:18 +00001154 q = dev->qdisc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 }
1156 if (!q)
1157 return -ENOENT;
1158
1159 if (tcm->tcm_handle && q->handle != tcm->tcm_handle)
1160 return -EINVAL;
1161 } else {
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001162 q = qdisc_lookup(dev, tcm->tcm_handle);
1163 if (!q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 return -ENOENT;
1165 }
1166
Patrick McHardy1e904742008-01-22 22:11:17 -08001167 if (tca[TCA_KIND] && nla_strcmp(tca[TCA_KIND], q->ops->id))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 return -EINVAL;
1169
1170 if (n->nlmsg_type == RTM_DELQDISC) {
1171 if (!clid)
1172 return -EINVAL;
1173 if (q->handle == 0)
1174 return -ENOENT;
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001175 err = qdisc_graft(dev, p, skb, n, clid, NULL, q);
1176 if (err != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 } else {
Tom Goff7316ae82010-03-19 15:40:13 +00001179 qdisc_notify(net, skb, n, clid, NULL, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 }
1181 return 0;
1182}
1183
1184/*
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001185 * Create/change qdisc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 */
1187
Thomas Graf661d2962013-03-21 07:45:29 +00001188static int tc_modify_qdisc(struct sk_buff *skb, struct nlmsghdr *n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001190 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 struct tcmsg *tcm;
Patrick McHardy1e904742008-01-22 22:11:17 -08001192 struct nlattr *tca[TCA_MAX + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 struct net_device *dev;
1194 u32 clid;
1195 struct Qdisc *q, *p;
1196 int err;
1197
David S. Miller5f013c9b2014-05-12 13:19:14 -04001198 if (!netlink_ns_capable(skb, net->user_ns, CAP_NET_ADMIN))
Eric W. Biedermandfc47ef2012-11-16 03:03:00 +00001199 return -EPERM;
1200
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201replay:
1202 /* Reinit, just in case something touches this. */
Hong zhi guode179c82013-03-25 17:36:33 +00001203 err = nlmsg_parse(n, sizeof(*tcm), tca, TCA_MAX, NULL);
1204 if (err < 0)
1205 return err;
1206
David S. Miller02ef22c2012-06-26 21:50:05 -07001207 tcm = nlmsg_data(n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 clid = tcm->tcm_parent;
1209 q = p = NULL;
1210
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001211 dev = __dev_get_by_index(net, tcm->tcm_ifindex);
1212 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 return -ENODEV;
1214
Patrick McHardy1e904742008-01-22 22:11:17 -08001215
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 if (clid) {
1217 if (clid != TC_H_ROOT) {
1218 if (clid != TC_H_INGRESS) {
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001219 p = qdisc_lookup(dev, TC_H_MAJ(clid));
1220 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 return -ENOENT;
1222 q = qdisc_leaf(p, clid);
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001223 } else if (dev_ingress_queue_create(dev)) {
1224 q = dev_ingress_queue(dev)->qdisc_sleeping;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 }
1226 } else {
Patrick McHardyaf356af2009-09-04 06:41:18 +00001227 q = dev->qdisc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 }
1229
1230 /* It may be default qdisc, ignore it */
1231 if (q && q->handle == 0)
1232 q = NULL;
1233
1234 if (!q || !tcm->tcm_handle || q->handle != tcm->tcm_handle) {
1235 if (tcm->tcm_handle) {
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001236 if (q && !(n->nlmsg_flags & NLM_F_REPLACE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 return -EEXIST;
1238 if (TC_H_MIN(tcm->tcm_handle))
1239 return -EINVAL;
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001240 q = qdisc_lookup(dev, tcm->tcm_handle);
1241 if (!q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 goto create_n_graft;
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001243 if (n->nlmsg_flags & NLM_F_EXCL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 return -EEXIST;
Patrick McHardy1e904742008-01-22 22:11:17 -08001245 if (tca[TCA_KIND] && nla_strcmp(tca[TCA_KIND], q->ops->id))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 return -EINVAL;
1247 if (q == p ||
1248 (p && check_loop(q, p, 0)))
1249 return -ELOOP;
1250 atomic_inc(&q->refcnt);
1251 goto graft;
1252 } else {
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001253 if (!q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 goto create_n_graft;
1255
1256 /* This magic test requires explanation.
1257 *
1258 * We know, that some child q is already
1259 * attached to this parent and have choice:
1260 * either to change it or to create/graft new one.
1261 *
1262 * 1. We are allowed to create/graft only
1263 * if CREATE and REPLACE flags are set.
1264 *
1265 * 2. If EXCL is set, requestor wanted to say,
1266 * that qdisc tcm_handle is not expected
1267 * to exist, so that we choose create/graft too.
1268 *
1269 * 3. The last case is when no flags are set.
1270 * Alas, it is sort of hole in API, we
1271 * cannot decide what to do unambiguously.
1272 * For now we select create/graft, if
1273 * user gave KIND, which does not match existing.
1274 */
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001275 if ((n->nlmsg_flags & NLM_F_CREATE) &&
1276 (n->nlmsg_flags & NLM_F_REPLACE) &&
1277 ((n->nlmsg_flags & NLM_F_EXCL) ||
Patrick McHardy1e904742008-01-22 22:11:17 -08001278 (tca[TCA_KIND] &&
1279 nla_strcmp(tca[TCA_KIND], q->ops->id))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 goto create_n_graft;
1281 }
1282 }
1283 } else {
1284 if (!tcm->tcm_handle)
1285 return -EINVAL;
1286 q = qdisc_lookup(dev, tcm->tcm_handle);
1287 }
1288
1289 /* Change qdisc parameters */
1290 if (q == NULL)
1291 return -ENOENT;
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001292 if (n->nlmsg_flags & NLM_F_EXCL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 return -EEXIST;
Patrick McHardy1e904742008-01-22 22:11:17 -08001294 if (tca[TCA_KIND] && nla_strcmp(tca[TCA_KIND], q->ops->id))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 return -EINVAL;
1296 err = qdisc_change(q, tca);
1297 if (err == 0)
Tom Goff7316ae82010-03-19 15:40:13 +00001298 qdisc_notify(net, skb, n, clid, NULL, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 return err;
1300
1301create_n_graft:
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001302 if (!(n->nlmsg_flags & NLM_F_CREATE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 return -ENOENT;
Eric Dumazet24824a02010-10-02 06:11:55 +00001304 if (clid == TC_H_INGRESS) {
1305 if (dev_ingress_queue(dev))
1306 q = qdisc_create(dev, dev_ingress_queue(dev), p,
1307 tcm->tcm_parent, tcm->tcm_parent,
1308 tca, &err);
1309 else
1310 err = -ENOENT;
1311 } else {
Jarek Poplawski926e61b2009-09-15 02:53:07 -07001312 struct netdev_queue *dev_queue;
David S. Miller6ec1c692009-09-06 01:58:51 -07001313
1314 if (p && p->ops->cl_ops && p->ops->cl_ops->select_queue)
Jarek Poplawski926e61b2009-09-15 02:53:07 -07001315 dev_queue = p->ops->cl_ops->select_queue(p, tcm);
1316 else if (p)
1317 dev_queue = p->dev_queue;
1318 else
1319 dev_queue = netdev_get_tx_queue(dev, 0);
David S. Miller6ec1c692009-09-06 01:58:51 -07001320
Jarek Poplawski926e61b2009-09-15 02:53:07 -07001321 q = qdisc_create(dev, dev_queue, p,
David S. Millerbb949fb2008-07-08 16:55:56 -07001322 tcm->tcm_parent, tcm->tcm_handle,
Patrick McHardyffc8fef2007-07-30 17:11:50 -07001323 tca, &err);
David S. Miller6ec1c692009-09-06 01:58:51 -07001324 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 if (q == NULL) {
1326 if (err == -EAGAIN)
1327 goto replay;
1328 return err;
1329 }
1330
1331graft:
Ilpo Järvinene5befbd2008-08-18 22:30:01 -07001332 err = qdisc_graft(dev, p, skb, n, clid, q, NULL);
1333 if (err) {
1334 if (q)
1335 qdisc_destroy(q);
1336 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 }
Ilpo Järvinene5befbd2008-08-18 22:30:01 -07001338
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 return 0;
1340}
1341
1342static int tc_fill_qdisc(struct sk_buff *skb, struct Qdisc *q, u32 clid,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001343 u32 portid, u32 seq, u16 flags, int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344{
John Fastabend22e0f8b2014-09-28 11:52:56 -07001345 struct gnet_stats_basic_cpu __percpu *cpu_bstats = NULL;
John Fastabendb0ab6f92014-09-28 11:54:24 -07001346 struct gnet_stats_queue __percpu *cpu_qstats = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 struct tcmsg *tcm;
1348 struct nlmsghdr *nlh;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001349 unsigned char *b = skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 struct gnet_dump d;
Eric Dumazeta2da5702011-01-20 03:48:19 +00001351 struct qdisc_size_table *stab;
John Fastabend64015852014-09-28 11:53:57 -07001352 __u32 qlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
Eric Dumazetfba373d2014-03-10 17:11:43 -07001354 cond_resched();
Eric W. Biederman15e47302012-09-07 20:12:54 +00001355 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*tcm), flags);
David S. Miller02ef22c2012-06-26 21:50:05 -07001356 if (!nlh)
1357 goto out_nlmsg_trim;
1358 tcm = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 tcm->tcm_family = AF_UNSPEC;
Patrick McHardy9ef1d4c2005-06-28 12:55:30 -07001360 tcm->tcm__pad1 = 0;
1361 tcm->tcm__pad2 = 0;
David S. Miller5ce2d482008-07-08 17:06:30 -07001362 tcm->tcm_ifindex = qdisc_dev(q)->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 tcm->tcm_parent = clid;
1364 tcm->tcm_handle = q->handle;
1365 tcm->tcm_info = atomic_read(&q->refcnt);
David S. Miller1b34ec42012-03-29 05:11:39 -04001366 if (nla_put_string(skb, TCA_KIND, q->ops->id))
1367 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 if (q->ops->dump && q->ops->dump(q, skb) < 0)
Patrick McHardy1e904742008-01-22 22:11:17 -08001369 goto nla_put_failure;
John Fastabend64015852014-09-28 11:53:57 -07001370 qlen = q->q.qlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
Eric Dumazeta2da5702011-01-20 03:48:19 +00001372 stab = rtnl_dereference(q->stab);
1373 if (stab && qdisc_dump_stab(skb, stab) < 0)
Jussi Kivilinna175f9c12008-07-20 00:08:47 -07001374 goto nla_put_failure;
1375
Jarek Poplawski102396a2008-08-29 14:21:52 -07001376 if (gnet_stats_start_copy_compat(skb, TCA_STATS2, TCA_STATS, TCA_XSTATS,
Eric Dumazetedb09eb2016-06-06 09:37:16 -07001377 NULL, &d, TCA_PAD) < 0)
Patrick McHardy1e904742008-01-22 22:11:17 -08001378 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
1380 if (q->ops->dump_stats && q->ops->dump_stats(q, &d) < 0)
Patrick McHardy1e904742008-01-22 22:11:17 -08001381 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
John Fastabendb0ab6f92014-09-28 11:54:24 -07001383 if (qdisc_is_percpu_stats(q)) {
John Fastabend22e0f8b2014-09-28 11:52:56 -07001384 cpu_bstats = q->cpu_bstats;
John Fastabendb0ab6f92014-09-28 11:54:24 -07001385 cpu_qstats = q->cpu_qstats;
1386 }
John Fastabend22e0f8b2014-09-28 11:52:56 -07001387
Eric Dumazetedb09eb2016-06-06 09:37:16 -07001388 if (gnet_stats_copy_basic(qdisc_root_sleeping_running(q),
1389 &d, cpu_bstats, &q->bstats) < 0 ||
Eric Dumazet1c0d32f2016-12-04 09:48:16 -08001390 gnet_stats_copy_rate_est(&d, &q->rate_est) < 0 ||
John Fastabendb0ab6f92014-09-28 11:54:24 -07001391 gnet_stats_copy_queue(&d, cpu_qstats, &q->qstats, qlen) < 0)
Patrick McHardy1e904742008-01-22 22:11:17 -08001392 goto nla_put_failure;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +09001393
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 if (gnet_stats_finish_copy(&d) < 0)
Patrick McHardy1e904742008-01-22 22:11:17 -08001395 goto nla_put_failure;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +09001396
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001397 nlh->nlmsg_len = skb_tail_pointer(skb) - b;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 return skb->len;
1399
David S. Miller02ef22c2012-06-26 21:50:05 -07001400out_nlmsg_trim:
Patrick McHardy1e904742008-01-22 22:11:17 -08001401nla_put_failure:
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -07001402 nlmsg_trim(skb, b);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 return -1;
1404}
1405
Jiri Kosina49b49972017-03-08 16:03:32 +01001406static bool tc_qdisc_dump_ignore(struct Qdisc *q, bool dump_invisible)
Eric Dumazet53b0f082010-05-22 20:37:44 +00001407{
Jiri Kosina49b49972017-03-08 16:03:32 +01001408 if (q->flags & TCQ_F_BUILTIN)
1409 return true;
1410 if ((q->flags & TCQ_F_INVISIBLE) && !dump_invisible)
1411 return true;
1412
1413 return false;
Eric Dumazet53b0f082010-05-22 20:37:44 +00001414}
1415
Tom Goff7316ae82010-03-19 15:40:13 +00001416static int qdisc_notify(struct net *net, struct sk_buff *oskb,
1417 struct nlmsghdr *n, u32 clid,
1418 struct Qdisc *old, struct Qdisc *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419{
1420 struct sk_buff *skb;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001421 u32 portid = oskb ? NETLINK_CB(oskb).portid : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
1423 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
1424 if (!skb)
1425 return -ENOBUFS;
1426
Jiri Kosina49b49972017-03-08 16:03:32 +01001427 if (old && !tc_qdisc_dump_ignore(old, false)) {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001428 if (tc_fill_qdisc(skb, old, clid, portid, n->nlmsg_seq,
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001429 0, RTM_DELQDISC) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 goto err_out;
1431 }
Jiri Kosina49b49972017-03-08 16:03:32 +01001432 if (new && !tc_qdisc_dump_ignore(new, false)) {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001433 if (tc_fill_qdisc(skb, new, clid, portid, n->nlmsg_seq,
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001434 old ? NLM_F_REPLACE : 0, RTM_NEWQDISC) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 goto err_out;
1436 }
1437
1438 if (skb->len)
Eric W. Biederman15e47302012-09-07 20:12:54 +00001439 return rtnetlink_send(skb, net, portid, RTNLGRP_TC,
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001440 n->nlmsg_flags & NLM_F_ECHO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
1442err_out:
1443 kfree_skb(skb);
1444 return -EINVAL;
1445}
1446
David S. Miller30723672008-07-18 22:50:15 -07001447static int tc_dump_qdisc_root(struct Qdisc *root, struct sk_buff *skb,
1448 struct netlink_callback *cb,
Jiri Kosina49b49972017-03-08 16:03:32 +01001449 int *q_idx_p, int s_q_idx, bool recur,
1450 bool dump_invisible)
David S. Miller30723672008-07-18 22:50:15 -07001451{
1452 int ret = 0, q_idx = *q_idx_p;
1453 struct Qdisc *q;
Jiri Kosina59cc1f62016-08-10 11:05:15 +02001454 int b;
David S. Miller30723672008-07-18 22:50:15 -07001455
1456 if (!root)
1457 return 0;
1458
1459 q = root;
1460 if (q_idx < s_q_idx) {
1461 q_idx++;
1462 } else {
Jiri Kosina49b49972017-03-08 16:03:32 +01001463 if (!tc_qdisc_dump_ignore(q, dump_invisible) &&
Eric W. Biederman15e47302012-09-07 20:12:54 +00001464 tc_fill_qdisc(skb, q, q->parent, NETLINK_CB(cb->skb).portid,
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -04001465 cb->nlh->nlmsg_seq, NLM_F_MULTI,
1466 RTM_NEWQDISC) <= 0)
David S. Miller30723672008-07-18 22:50:15 -07001467 goto done;
1468 q_idx++;
1469 }
Jiri Kosina69012ae2016-08-16 23:52:58 +02001470
Jiri Kosinaea327462016-08-16 23:53:46 +02001471 /* If dumping singletons, there is no qdisc_dev(root) and the singleton
1472 * itself has already been dumped.
1473 *
1474 * If we've already dumped the top-level (ingress) qdisc above and the global
1475 * qdisc hashtable, we don't want to hit it again
1476 */
1477 if (!qdisc_dev(root) || !recur)
Jiri Kosina69012ae2016-08-16 23:52:58 +02001478 goto out;
1479
Jiri Kosina59cc1f62016-08-10 11:05:15 +02001480 hash_for_each(qdisc_dev(root)->qdisc_hash, b, q, hash) {
David S. Miller30723672008-07-18 22:50:15 -07001481 if (q_idx < s_q_idx) {
1482 q_idx++;
1483 continue;
1484 }
Jiri Kosina49b49972017-03-08 16:03:32 +01001485 if (!tc_qdisc_dump_ignore(q, dump_invisible) &&
Eric W. Biederman15e47302012-09-07 20:12:54 +00001486 tc_fill_qdisc(skb, q, q->parent, NETLINK_CB(cb->skb).portid,
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -04001487 cb->nlh->nlmsg_seq, NLM_F_MULTI,
1488 RTM_NEWQDISC) <= 0)
David S. Miller30723672008-07-18 22:50:15 -07001489 goto done;
1490 q_idx++;
1491 }
1492
1493out:
1494 *q_idx_p = q_idx;
1495 return ret;
1496done:
1497 ret = -1;
1498 goto out;
1499}
1500
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501static int tc_dump_qdisc(struct sk_buff *skb, struct netlink_callback *cb)
1502{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001503 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 int idx, q_idx;
1505 int s_idx, s_q_idx;
1506 struct net_device *dev;
Jiri Kosina49b49972017-03-08 16:03:32 +01001507 const struct nlmsghdr *nlh = cb->nlh;
1508 struct tcmsg *tcm = nlmsg_data(nlh);
1509 struct nlattr *tca[TCA_MAX + 1];
1510 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511
1512 s_idx = cb->args[0];
1513 s_q_idx = q_idx = cb->args[1];
stephen hemmingerf1e90162009-11-10 07:54:49 +00001514
Pavel Emelianov7562f872007-05-03 15:13:45 -07001515 idx = 0;
Eric Dumazet15dc36e2014-03-10 17:11:42 -07001516 ASSERT_RTNL();
Jiri Kosina49b49972017-03-08 16:03:32 +01001517
1518 err = nlmsg_parse(nlh, sizeof(*tcm), tca, TCA_MAX, NULL);
1519 if (err < 0)
1520 return err;
1521
Eric Dumazet15dc36e2014-03-10 17:11:42 -07001522 for_each_netdev(net, dev) {
David S. Miller30723672008-07-18 22:50:15 -07001523 struct netdev_queue *dev_queue;
1524
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 if (idx < s_idx)
Pavel Emelianov7562f872007-05-03 15:13:45 -07001526 goto cont;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 if (idx > s_idx)
1528 s_q_idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 q_idx = 0;
David S. Miller30723672008-07-18 22:50:15 -07001530
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -04001531 if (tc_dump_qdisc_root(dev->qdisc, skb, cb, &q_idx, s_q_idx,
Jiri Kosina49b49972017-03-08 16:03:32 +01001532 true, tca[TCA_DUMP_INVISIBLE]) < 0)
David S. Miller30723672008-07-18 22:50:15 -07001533 goto done;
1534
Eric Dumazet24824a02010-10-02 06:11:55 +00001535 dev_queue = dev_ingress_queue(dev);
1536 if (dev_queue &&
1537 tc_dump_qdisc_root(dev_queue->qdisc_sleeping, skb, cb,
Jiri Kosina49b49972017-03-08 16:03:32 +01001538 &q_idx, s_q_idx, false,
1539 tca[TCA_DUMP_INVISIBLE]) < 0)
David S. Miller30723672008-07-18 22:50:15 -07001540 goto done;
1541
Pavel Emelianov7562f872007-05-03 15:13:45 -07001542cont:
1543 idx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 }
1545
1546done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 cb->args[0] = idx;
1548 cb->args[1] = q_idx;
1549
1550 return skb->len;
1551}
1552
1553
1554
1555/************************************************
1556 * Traffic classes manipulation. *
1557 ************************************************/
1558
1559
1560
Thomas Graf661d2962013-03-21 07:45:29 +00001561static int tc_ctl_tclass(struct sk_buff *skb, struct nlmsghdr *n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001563 struct net *net = sock_net(skb->sk);
David S. Miller02ef22c2012-06-26 21:50:05 -07001564 struct tcmsg *tcm = nlmsg_data(n);
Patrick McHardy1e904742008-01-22 22:11:17 -08001565 struct nlattr *tca[TCA_MAX + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 struct net_device *dev;
1567 struct Qdisc *q = NULL;
Eric Dumazet20fea082007-11-14 01:44:41 -08001568 const struct Qdisc_class_ops *cops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 unsigned long cl = 0;
1570 unsigned long new_cl;
Hong zhi guode179c82013-03-25 17:36:33 +00001571 u32 portid;
1572 u32 clid;
1573 u32 qid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 int err;
1575
Stéphane Graber4e8bbb82014-04-30 11:25:43 -04001576 if ((n->nlmsg_type != RTM_GETTCLASS) &&
David S. Miller5f013c9b2014-05-12 13:19:14 -04001577 !netlink_ns_capable(skb, net->user_ns, CAP_NET_ADMIN))
Eric W. Biedermandfc47ef2012-11-16 03:03:00 +00001578 return -EPERM;
1579
Patrick McHardy1e904742008-01-22 22:11:17 -08001580 err = nlmsg_parse(n, sizeof(*tcm), tca, TCA_MAX, NULL);
1581 if (err < 0)
1582 return err;
1583
Hong zhi guode179c82013-03-25 17:36:33 +00001584 dev = __dev_get_by_index(net, tcm->tcm_ifindex);
1585 if (!dev)
1586 return -ENODEV;
1587
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 /*
1589 parent == TC_H_UNSPEC - unspecified parent.
1590 parent == TC_H_ROOT - class is root, which has no parent.
1591 parent == X:0 - parent is root class.
1592 parent == X:Y - parent is a node in hierarchy.
1593 parent == 0:Y - parent is X:Y, where X:0 is qdisc.
1594
1595 handle == 0:0 - generate handle from kernel pool.
1596 handle == 0:Y - class is X:Y, where X:0 is qdisc.
1597 handle == X:Y - clear.
1598 handle == X:0 - root class.
1599 */
1600
1601 /* Step 1. Determine qdisc handle X:0 */
1602
Hong zhi guode179c82013-03-25 17:36:33 +00001603 portid = tcm->tcm_parent;
1604 clid = tcm->tcm_handle;
1605 qid = TC_H_MAJ(clid);
1606
Eric W. Biederman15e47302012-09-07 20:12:54 +00001607 if (portid != TC_H_ROOT) {
1608 u32 qid1 = TC_H_MAJ(portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
1610 if (qid && qid1) {
1611 /* If both majors are known, they must be identical. */
1612 if (qid != qid1)
1613 return -EINVAL;
1614 } else if (qid1) {
1615 qid = qid1;
1616 } else if (qid == 0)
Patrick McHardyaf356af2009-09-04 06:41:18 +00001617 qid = dev->qdisc->handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618
1619 /* Now qid is genuine qdisc handle consistent
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001620 * both with parent and child.
1621 *
Eric W. Biederman15e47302012-09-07 20:12:54 +00001622 * TC_H_MAJ(portid) still may be unspecified, complete it now.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 */
Eric W. Biederman15e47302012-09-07 20:12:54 +00001624 if (portid)
1625 portid = TC_H_MAKE(qid, portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 } else {
1627 if (qid == 0)
Patrick McHardyaf356af2009-09-04 06:41:18 +00001628 qid = dev->qdisc->handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 }
1630
1631 /* OK. Locate qdisc */
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001632 q = qdisc_lookup(dev, qid);
1633 if (!q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 return -ENOENT;
1635
1636 /* An check that it supports classes */
1637 cops = q->ops->cl_ops;
1638 if (cops == NULL)
1639 return -EINVAL;
1640
1641 /* Now try to get class */
1642 if (clid == 0) {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001643 if (portid == TC_H_ROOT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 clid = qid;
1645 } else
1646 clid = TC_H_MAKE(qid, clid);
1647
1648 if (clid)
1649 cl = cops->get(q, clid);
1650
1651 if (cl == 0) {
1652 err = -ENOENT;
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001653 if (n->nlmsg_type != RTM_NEWTCLASS ||
1654 !(n->nlmsg_flags & NLM_F_CREATE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 goto out;
1656 } else {
1657 switch (n->nlmsg_type) {
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +09001658 case RTM_NEWTCLASS:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 err = -EEXIST;
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001660 if (n->nlmsg_flags & NLM_F_EXCL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 goto out;
1662 break;
1663 case RTM_DELTCLASS:
Patrick McHardyde6d5cd2009-09-04 06:41:16 +00001664 err = -EOPNOTSUPP;
1665 if (cops->delete)
1666 err = cops->delete(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 if (err == 0)
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -04001668 tclass_notify(net, skb, n, q, cl,
1669 RTM_DELTCLASS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 goto out;
1671 case RTM_GETTCLASS:
Tom Goff7316ae82010-03-19 15:40:13 +00001672 err = tclass_notify(net, skb, n, q, cl, RTM_NEWTCLASS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 goto out;
1674 default:
1675 err = -EINVAL;
1676 goto out;
1677 }
1678 }
1679
1680 new_cl = cl;
Patrick McHardyde6d5cd2009-09-04 06:41:16 +00001681 err = -EOPNOTSUPP;
1682 if (cops->change)
Eric W. Biederman15e47302012-09-07 20:12:54 +00001683 err = cops->change(q, clid, portid, tca, &new_cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 if (err == 0)
Tom Goff7316ae82010-03-19 15:40:13 +00001685 tclass_notify(net, skb, n, q, new_cl, RTM_NEWTCLASS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686
1687out:
1688 if (cl)
1689 cops->put(q, cl);
1690
1691 return err;
1692}
1693
1694
1695static int tc_fill_tclass(struct sk_buff *skb, struct Qdisc *q,
1696 unsigned long cl,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001697 u32 portid, u32 seq, u16 flags, int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698{
1699 struct tcmsg *tcm;
1700 struct nlmsghdr *nlh;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001701 unsigned char *b = skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 struct gnet_dump d;
Eric Dumazet20fea082007-11-14 01:44:41 -08001703 const struct Qdisc_class_ops *cl_ops = q->ops->cl_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704
Eric Dumazetfba373d2014-03-10 17:11:43 -07001705 cond_resched();
Eric W. Biederman15e47302012-09-07 20:12:54 +00001706 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*tcm), flags);
David S. Miller02ef22c2012-06-26 21:50:05 -07001707 if (!nlh)
1708 goto out_nlmsg_trim;
1709 tcm = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 tcm->tcm_family = AF_UNSPEC;
Eric Dumazet16ebb5e2009-09-02 02:40:09 +00001711 tcm->tcm__pad1 = 0;
1712 tcm->tcm__pad2 = 0;
David S. Miller5ce2d482008-07-08 17:06:30 -07001713 tcm->tcm_ifindex = qdisc_dev(q)->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 tcm->tcm_parent = q->handle;
1715 tcm->tcm_handle = q->handle;
1716 tcm->tcm_info = 0;
David S. Miller1b34ec42012-03-29 05:11:39 -04001717 if (nla_put_string(skb, TCA_KIND, q->ops->id))
1718 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 if (cl_ops->dump && cl_ops->dump(q, cl, skb, tcm) < 0)
Patrick McHardy1e904742008-01-22 22:11:17 -08001720 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721
Jarek Poplawski102396a2008-08-29 14:21:52 -07001722 if (gnet_stats_start_copy_compat(skb, TCA_STATS2, TCA_STATS, TCA_XSTATS,
Eric Dumazetedb09eb2016-06-06 09:37:16 -07001723 NULL, &d, TCA_PAD) < 0)
Patrick McHardy1e904742008-01-22 22:11:17 -08001724 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725
1726 if (cl_ops->dump_stats && cl_ops->dump_stats(q, cl, &d) < 0)
Patrick McHardy1e904742008-01-22 22:11:17 -08001727 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728
1729 if (gnet_stats_finish_copy(&d) < 0)
Patrick McHardy1e904742008-01-22 22:11:17 -08001730 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001732 nlh->nlmsg_len = skb_tail_pointer(skb) - b;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 return skb->len;
1734
David S. Miller02ef22c2012-06-26 21:50:05 -07001735out_nlmsg_trim:
Patrick McHardy1e904742008-01-22 22:11:17 -08001736nla_put_failure:
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -07001737 nlmsg_trim(skb, b);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 return -1;
1739}
1740
Tom Goff7316ae82010-03-19 15:40:13 +00001741static int tclass_notify(struct net *net, struct sk_buff *oskb,
1742 struct nlmsghdr *n, struct Qdisc *q,
1743 unsigned long cl, int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744{
1745 struct sk_buff *skb;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001746 u32 portid = oskb ? NETLINK_CB(oskb).portid : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747
1748 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
1749 if (!skb)
1750 return -ENOBUFS;
1751
Eric W. Biederman15e47302012-09-07 20:12:54 +00001752 if (tc_fill_tclass(skb, q, cl, portid, n->nlmsg_seq, 0, event) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 kfree_skb(skb);
1754 return -EINVAL;
1755 }
1756
Eric W. Biederman15e47302012-09-07 20:12:54 +00001757 return rtnetlink_send(skb, net, portid, RTNLGRP_TC,
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001758 n->nlmsg_flags & NLM_F_ECHO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759}
1760
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001761struct qdisc_dump_args {
1762 struct qdisc_walker w;
1763 struct sk_buff *skb;
1764 struct netlink_callback *cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765};
1766
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -04001767static int qdisc_class_dump(struct Qdisc *q, unsigned long cl,
1768 struct qdisc_walker *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769{
1770 struct qdisc_dump_args *a = (struct qdisc_dump_args *)arg;
1771
Eric W. Biederman15e47302012-09-07 20:12:54 +00001772 return tc_fill_tclass(a->skb, q, cl, NETLINK_CB(a->cb->skb).portid,
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -04001773 a->cb->nlh->nlmsg_seq, NLM_F_MULTI,
1774 RTM_NEWTCLASS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775}
1776
David S. Miller30723672008-07-18 22:50:15 -07001777static int tc_dump_tclass_qdisc(struct Qdisc *q, struct sk_buff *skb,
1778 struct tcmsg *tcm, struct netlink_callback *cb,
1779 int *t_p, int s_t)
1780{
1781 struct qdisc_dump_args arg;
1782
Jiri Kosina49b49972017-03-08 16:03:32 +01001783 if (tc_qdisc_dump_ignore(q, false) ||
David S. Miller30723672008-07-18 22:50:15 -07001784 *t_p < s_t || !q->ops->cl_ops ||
1785 (tcm->tcm_parent &&
1786 TC_H_MAJ(tcm->tcm_parent) != q->handle)) {
1787 (*t_p)++;
1788 return 0;
1789 }
1790 if (*t_p > s_t)
1791 memset(&cb->args[1], 0, sizeof(cb->args)-sizeof(cb->args[0]));
1792 arg.w.fn = qdisc_class_dump;
1793 arg.skb = skb;
1794 arg.cb = cb;
1795 arg.w.stop = 0;
1796 arg.w.skip = cb->args[1];
1797 arg.w.count = 0;
1798 q->ops->cl_ops->walk(q, &arg.w);
1799 cb->args[1] = arg.w.count;
1800 if (arg.w.stop)
1801 return -1;
1802 (*t_p)++;
1803 return 0;
1804}
1805
1806static int tc_dump_tclass_root(struct Qdisc *root, struct sk_buff *skb,
1807 struct tcmsg *tcm, struct netlink_callback *cb,
1808 int *t_p, int s_t)
1809{
1810 struct Qdisc *q;
Jiri Kosina59cc1f62016-08-10 11:05:15 +02001811 int b;
David S. Miller30723672008-07-18 22:50:15 -07001812
1813 if (!root)
1814 return 0;
1815
1816 if (tc_dump_tclass_qdisc(root, skb, tcm, cb, t_p, s_t) < 0)
1817 return -1;
1818
Jiri Kosina69012ae2016-08-16 23:52:58 +02001819 if (!qdisc_dev(root))
1820 return 0;
1821
Jiri Kosina59cc1f62016-08-10 11:05:15 +02001822 hash_for_each(qdisc_dev(root)->qdisc_hash, b, q, hash) {
David S. Miller30723672008-07-18 22:50:15 -07001823 if (tc_dump_tclass_qdisc(q, skb, tcm, cb, t_p, s_t) < 0)
1824 return -1;
1825 }
1826
1827 return 0;
1828}
1829
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830static int tc_dump_tclass(struct sk_buff *skb, struct netlink_callback *cb)
1831{
David S. Miller02ef22c2012-06-26 21:50:05 -07001832 struct tcmsg *tcm = nlmsg_data(cb->nlh);
David S. Miller30723672008-07-18 22:50:15 -07001833 struct net *net = sock_net(skb->sk);
1834 struct netdev_queue *dev_queue;
1835 struct net_device *dev;
1836 int t, s_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837
Hong zhi guo573ce262013-03-27 06:47:04 +00001838 if (nlmsg_len(cb->nlh) < sizeof(*tcm))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 return 0;
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001840 dev = dev_get_by_index(net, tcm->tcm_ifindex);
1841 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 return 0;
1843
1844 s_t = cb->args[0];
1845 t = 0;
1846
Patrick McHardyaf356af2009-09-04 06:41:18 +00001847 if (tc_dump_tclass_root(dev->qdisc, skb, tcm, cb, &t, s_t) < 0)
David S. Miller30723672008-07-18 22:50:15 -07001848 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
Eric Dumazet24824a02010-10-02 06:11:55 +00001850 dev_queue = dev_ingress_queue(dev);
1851 if (dev_queue &&
1852 tc_dump_tclass_root(dev_queue->qdisc_sleeping, skb, tcm, cb,
1853 &t, s_t) < 0)
David S. Miller30723672008-07-18 22:50:15 -07001854 goto done;
1855
1856done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 cb->args[0] = t;
1858
1859 dev_put(dev);
1860 return skb->len;
1861}
1862
1863/* Main classifier routine: scans classifier chain attached
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001864 * to this qdisc, (optionally) tests for protocol and asks
1865 * specific classifiers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 */
Daniel Borkmann3b3ae882015-08-26 23:00:06 +02001867int tc_classify(struct sk_buff *skb, const struct tcf_proto *tp,
1868 struct tcf_result *res, bool compat_mode)
Patrick McHardy73ca4912007-07-15 00:02:31 -07001869{
Jiri Pirkod8b96052015-01-13 17:13:43 +01001870 __be16 protocol = tc_skb_protocol(skb);
Daniel Borkmann3b3ae882015-08-26 23:00:06 +02001871#ifdef CONFIG_NET_CLS_ACT
Willem de Bruijnd6264072017-01-07 17:06:34 -05001872 const int max_reclassify_loop = 4;
Daniel Borkmann3b3ae882015-08-26 23:00:06 +02001873 const struct tcf_proto *old_tp = tp;
1874 int limit = 0;
Patrick McHardy73ca4912007-07-15 00:02:31 -07001875
Daniel Borkmann3b3ae882015-08-26 23:00:06 +02001876reclassify:
1877#endif
John Fastabend25d8c0d2014-09-12 20:05:27 -07001878 for (; tp; tp = rcu_dereference_bh(tp->next)) {
Daniel Borkmann3b3ae882015-08-26 23:00:06 +02001879 int err;
1880
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001881 if (tp->protocol != protocol &&
1882 tp->protocol != htons(ETH_P_ALL))
1883 continue;
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001884
Daniel Borkmann3b3ae882015-08-26 23:00:06 +02001885 err = tp->classify(skb, tp, res);
1886#ifdef CONFIG_NET_CLS_ACT
Daniel Borkmannc1b3b192015-08-28 18:46:39 +02001887 if (unlikely(err == TC_ACT_RECLASSIFY && !compat_mode))
Daniel Borkmann3b3ae882015-08-26 23:00:06 +02001888 goto reset;
1889#endif
Florian Westphale578d9c2015-05-11 19:50:41 +02001890 if (err >= 0)
Patrick McHardy73ca4912007-07-15 00:02:31 -07001891 return err;
Patrick McHardy73ca4912007-07-15 00:02:31 -07001892 }
Daniel Borkmann3b3ae882015-08-26 23:00:06 +02001893
Jamal Hadi Salim7e6e18f2016-02-18 08:04:43 -05001894 return TC_ACT_UNSPEC; /* signal: continue lookup */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895#ifdef CONFIG_NET_CLS_ACT
Daniel Borkmann3b3ae882015-08-26 23:00:06 +02001896reset:
Willem de Bruijnd6264072017-01-07 17:06:34 -05001897 if (unlikely(limit++ >= max_reclassify_loop)) {
Daniel Borkmannc1b3b192015-08-28 18:46:39 +02001898 net_notice_ratelimited("%s: reclassify loop, rule prio %u, protocol %02x\n",
1899 tp->q->ops->id, tp->prio & 0xffff,
1900 ntohs(tp->protocol));
Daniel Borkmann3b3ae882015-08-26 23:00:06 +02001901 return TC_ACT_SHOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 }
Daniel Borkmann3b3ae882015-08-26 23:00:06 +02001903
1904 tp = old_tp;
Jamal Hadi Salim619fe322016-02-18 07:38:04 -05001905 protocol = tc_skb_protocol(skb);
Daniel Borkmann3b3ae882015-08-26 23:00:06 +02001906 goto reclassify;
Patrick McHardy73ca4912007-07-15 00:02:31 -07001907#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908}
Patrick McHardy73ca4912007-07-15 00:02:31 -07001909EXPORT_SYMBOL(tc_classify);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911#ifdef CONFIG_PROC_FS
1912static int psched_show(struct seq_file *seq, void *v)
1913{
1914 seq_printf(seq, "%08x %08x %08x %08x\n",
Jarek Poplawskica44d6e2009-06-15 02:31:47 -07001915 (u32)NSEC_PER_USEC, (u32)PSCHED_TICKS2NS(1),
Patrick McHardy514bca32007-03-16 12:34:52 -07001916 1000000,
Thomas Gleixner1e317682015-04-14 21:08:28 +00001917 (u32)NSEC_PER_SEC / hrtimer_resolution);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918
1919 return 0;
1920}
1921
1922static int psched_open(struct inode *inode, struct file *file)
1923{
Tom Goff7e5ab152010-03-30 19:44:56 -07001924 return single_open(file, psched_show, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925}
1926
Arjan van de Venda7071d2007-02-12 00:55:36 -08001927static const struct file_operations psched_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 .owner = THIS_MODULE,
1929 .open = psched_open,
1930 .read = seq_read,
1931 .llseek = seq_lseek,
1932 .release = single_release,
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +09001933};
Tom Goff7316ae82010-03-19 15:40:13 +00001934
1935static int __net_init psched_net_init(struct net *net)
1936{
1937 struct proc_dir_entry *e;
1938
Gao fengd4beaa62013-02-18 01:34:54 +00001939 e = proc_create("psched", 0, net->proc_net, &psched_fops);
Tom Goff7316ae82010-03-19 15:40:13 +00001940 if (e == NULL)
1941 return -ENOMEM;
1942
1943 return 0;
1944}
1945
1946static void __net_exit psched_net_exit(struct net *net)
1947{
Gao fengece31ff2013-02-18 01:34:56 +00001948 remove_proc_entry("psched", net->proc_net);
Tom Goff7316ae82010-03-19 15:40:13 +00001949}
1950#else
1951static int __net_init psched_net_init(struct net *net)
1952{
1953 return 0;
1954}
1955
1956static void __net_exit psched_net_exit(struct net *net)
1957{
1958}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959#endif
1960
Tom Goff7316ae82010-03-19 15:40:13 +00001961static struct pernet_operations psched_net_ops = {
1962 .init = psched_net_init,
1963 .exit = psched_net_exit,
1964};
1965
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966static int __init pktsched_init(void)
1967{
Tom Goff7316ae82010-03-19 15:40:13 +00001968 int err;
1969
1970 err = register_pernet_subsys(&psched_net_ops);
1971 if (err) {
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001972 pr_err("pktsched_init: "
Tom Goff7316ae82010-03-19 15:40:13 +00001973 "cannot initialize per netns operations\n");
1974 return err;
1975 }
1976
stephen hemminger6da7c8f2013-08-27 16:19:08 -07001977 register_qdisc(&pfifo_fast_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 register_qdisc(&pfifo_qdisc_ops);
1979 register_qdisc(&bfifo_qdisc_ops);
Hagen Paul Pfeifer57dbb2d82010-01-24 12:30:59 +00001980 register_qdisc(&pfifo_head_drop_qdisc_ops);
David S. Miller6ec1c692009-09-06 01:58:51 -07001981 register_qdisc(&mq_qdisc_ops);
Phil Sutterd66d6c32015-08-27 21:21:38 +02001982 register_qdisc(&noqueue_qdisc_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983
Greg Rosec7ac8672011-06-10 01:27:09 +00001984 rtnl_register(PF_UNSPEC, RTM_NEWQDISC, tc_modify_qdisc, NULL, NULL);
1985 rtnl_register(PF_UNSPEC, RTM_DELQDISC, tc_get_qdisc, NULL, NULL);
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -04001986 rtnl_register(PF_UNSPEC, RTM_GETQDISC, tc_get_qdisc, tc_dump_qdisc,
1987 NULL);
Greg Rosec7ac8672011-06-10 01:27:09 +00001988 rtnl_register(PF_UNSPEC, RTM_NEWTCLASS, tc_ctl_tclass, NULL, NULL);
1989 rtnl_register(PF_UNSPEC, RTM_DELTCLASS, tc_ctl_tclass, NULL, NULL);
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -04001990 rtnl_register(PF_UNSPEC, RTM_GETTCLASS, tc_ctl_tclass, tc_dump_tclass,
1991 NULL);
Thomas Grafbe577dd2007-03-22 11:55:50 -07001992
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 return 0;
1994}
1995
1996subsys_initcall(pktsched_init);