]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - net/sched/sch_api.c
net: sched: make default fifo qdiscs appear in the dump
[mirror_ubuntu-artful-kernel.git] / net / sched / sch_api.c
CommitLineData
1da177e4
LT
1/*
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
1da177e4
LT
18#include <linux/module.h>
19#include <linux/types.h>
20#include <linux/kernel.h>
1da177e4 21#include <linux/string.h>
1da177e4 22#include <linux/errno.h>
1da177e4 23#include <linux/skbuff.h>
1da177e4
LT
24#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>
4179477f 29#include <linux/hrtimer.h>
25bfcd5a 30#include <linux/lockdep.h>
5a0e3ad6 31#include <linux/slab.h>
59cc1f61 32#include <linux/hashtable.h>
1da177e4 33
457c4cbc 34#include <net/net_namespace.h>
b854272b 35#include <net/sock.h>
dc5fc579 36#include <net/netlink.h>
1da177e4
LT
37#include <net/pkt_sched.h>
38
7316ae88
TG
39static int qdisc_notify(struct net *net, struct sk_buff *oskb,
40 struct nlmsghdr *n, u32 clid,
1da177e4 41 struct Qdisc *old, struct Qdisc *new);
7316ae88
TG
42static int tclass_notify(struct net *net, struct sk_buff *oskb,
43 struct nlmsghdr *n, struct Qdisc *q,
44 unsigned long cl, int event);
1da177e4
LT
45
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
1da177e4
LT
99
100 Auxiliary routines:
101
99c0db26
JP
102 ---peek
103
104 like dequeue but without removing a packet from the queue
105
1da177e4
LT
106 ---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
21eb2189 137/* Register/unregister queueing discipline */
1da177e4
LT
138
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;
99c0db26 151 if (qops->peek == NULL) {
68fd26b5 152 if (qops->dequeue == NULL)
99c0db26 153 qops->peek = noop_qdisc_ops.peek;
68fd26b5
JP
154 else
155 goto out_einval;
99c0db26 156 }
1da177e4
LT
157 if (qops->dequeue == NULL)
158 qops->dequeue = noop_qdisc_ops.dequeue;
159
68fd26b5
JP
160 if (qops->cl_ops) {
161 const struct Qdisc_class_ops *cops = qops->cl_ops;
162
3e9e5a59 163 if (!(cops->get && cops->put && cops->walk && cops->leaf))
68fd26b5
JP
164 goto out_einval;
165
166 if (cops->tcf_chain && !(cops->bind_tcf && cops->unbind_tcf))
167 goto out_einval;
168 }
169
1da177e4
LT
170 qops->next = NULL;
171 *qp = qops;
172 rc = 0;
173out:
174 write_unlock(&qdisc_mod_lock);
175 return rc;
68fd26b5
JP
176
177out_einval:
178 rc = -EINVAL;
179 goto out;
1da177e4 180}
62e3ba1b 181EXPORT_SYMBOL(register_qdisc);
1da177e4
LT
182
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);
cc7ec456 189 for (qp = &qdisc_base; (q = *qp) != NULL; qp = &q->next)
1da177e4
LT
190 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}
62e3ba1b 200EXPORT_SYMBOL(unregister_qdisc);
1da177e4 201
6da7c8fc 202/* 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
1da177e4 254/* We know handle. Find qdisc among all qdisc's attached to device
4eaf3b84
ED
255 * (root qdisc, all its children, children of children etc.)
256 * Note: caller either uses rtnl or rcu_read_lock()
1da177e4
LT
257 */
258
6113b748 259static struct Qdisc *qdisc_match_from_root(struct Qdisc *root, u32 handle)
8123b421
DM
260{
261 struct Qdisc *q;
262
69012ae4
JK
263 if (!qdisc_dev(root))
264 return (root->handle == handle ? root : NULL);
265
8123b421
DM
266 if (!(root->flags & TCQ_F_BUILTIN) &&
267 root->handle == handle)
268 return root;
269
59cc1f61 270 hash_for_each_possible_rcu(qdisc_dev(root)->qdisc_hash, q, hash, handle) {
8123b421
DM
271 if (q->handle == handle)
272 return q;
273 }
274 return NULL;
275}
276
49b49971 277void qdisc_hash_add(struct Qdisc *q, bool invisible)
f6e0b239 278{
37314363
ED
279 if ((q->parent != TC_H_ROOT) && !(q->flags & TCQ_F_INGRESS)) {
280 struct Qdisc *root = qdisc_dev(q)->qdisc;
e57a784d 281
37314363 282 WARN_ON_ONCE(root == &noop_qdisc);
4eaf3b84 283 ASSERT_RTNL();
59cc1f61 284 hash_add_rcu(qdisc_dev(q)->qdisc_hash, &q->hash, q->handle);
49b49971
JK
285 if (invisible)
286 q->flags |= TCQ_F_INVISIBLE;
37314363 287 }
f6e0b239 288}
59cc1f61 289EXPORT_SYMBOL(qdisc_hash_add);
f6e0b239 290
59cc1f61 291void qdisc_hash_del(struct Qdisc *q)
f6e0b239 292{
4eaf3b84
ED
293 if ((q->parent != TC_H_ROOT) && !(q->flags & TCQ_F_INGRESS)) {
294 ASSERT_RTNL();
59cc1f61 295 hash_del_rcu(&q->hash);
4eaf3b84 296 }
f6e0b239 297}
59cc1f61 298EXPORT_SYMBOL(qdisc_hash_del);
f6e0b239 299
ead81cc5 300struct Qdisc *qdisc_lookup(struct net_device *dev, u32 handle)
1da177e4 301{
f6e0b239
JP
302 struct Qdisc *q;
303
af356afa
PM
304 q = qdisc_match_from_root(dev->qdisc, handle);
305 if (q)
306 goto out;
f6e0b239 307
24824a09
ED
308 if (dev_ingress_queue(dev))
309 q = qdisc_match_from_root(
310 dev_ingress_queue(dev)->qdisc_sleeping,
311 handle);
f6486d40 312out:
f6e0b239 313 return q;
1da177e4
LT
314}
315
316static struct Qdisc *qdisc_leaf(struct Qdisc *p, u32 classid)
317{
318 unsigned long cl;
319 struct Qdisc *leaf;
20fea08b 320 const struct Qdisc_class_ops *cops = p->ops->cl_ops;
1da177e4
LT
321
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
1e90474c 335static struct Qdisc_ops *qdisc_lookup_ops(struct nlattr *kind)
1da177e4
LT
336{
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) {
1e90474c 342 if (nla_strcmp(kind, q->id) == 0) {
1da177e4
LT
343 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
8a8e3d84
JDB
353/* 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
1da177e4
LT
392static struct qdisc_rate_table *qdisc_rtab_list;
393
5a7a5555
JHS
394struct qdisc_rate_table *qdisc_get_rtab(struct tc_ratespec *r,
395 struct nlattr *tab)
1da177e4
LT
396{
397 struct qdisc_rate_table *rtab;
398
40edeff6
ED
399 if (tab == NULL || r->rate == 0 || r->cell_log == 0 ||
400 nla_len(tab) != TC_RTAB_SIZE)
401 return NULL;
402
1da177e4 403 for (rtab = qdisc_rtab_list; rtab; rtab = rtab->next) {
40edeff6
ED
404 if (!memcmp(&rtab->rate, r, sizeof(struct tc_ratespec)) &&
405 !memcmp(&rtab->data, nla_data(tab), 1024)) {
1da177e4
LT
406 rtab->refcnt++;
407 return rtab;
408 }
409 }
410
1da177e4
LT
411 rtab = kmalloc(sizeof(*rtab), GFP_KERNEL);
412 if (rtab) {
413 rtab->rate = *r;
414 rtab->refcnt = 1;
1e90474c 415 memcpy(rtab->data, nla_data(tab), 1024);
8a8e3d84
JDB
416 if (r->linklayer == TC_LINKLAYER_UNAWARE)
417 r->linklayer = __detect_linklayer(r, rtab->data);
1da177e4
LT
418 rtab->next = qdisc_rtab_list;
419 qdisc_rtab_list = rtab;
420 }
421 return rtab;
422}
62e3ba1b 423EXPORT_SYMBOL(qdisc_get_rtab);
1da177e4
LT
424
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
cc7ec456
ED
432 for (rtabp = &qdisc_rtab_list;
433 (rtab = *rtabp) != NULL;
434 rtabp = &rtab->next) {
1da177e4
LT
435 if (rtab == tab) {
436 *rtabp = rtab->next;
437 kfree(rtab);
438 return;
439 }
440 }
441}
62e3ba1b 442EXPORT_SYMBOL(qdisc_put_rtab);
1da177e4 443
175f9c1b 444static LIST_HEAD(qdisc_stab_list);
175f9c1b
JK
445
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
00093fab 475 if (tsize != s->tsize || (!tab && tsize > 0))
175f9c1b
JK
476 return ERR_PTR(-EINVAL);
477
175f9c1b
JK
478 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++;
175f9c1b
JK
484 return stab;
485 }
486
175f9c1b
JK
487 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
175f9c1b 496 list_add_tail(&stab->list, &qdisc_stab_list);
175f9c1b
JK
497
498 return stab;
499}
500
a2da570d
ED
501static void stab_kfree_rcu(struct rcu_head *head)
502{
503 kfree(container_of(head, struct qdisc_size_table, rcu));
504}
505
175f9c1b
JK
506void qdisc_put_stab(struct qdisc_size_table *tab)
507{
508 if (!tab)
509 return;
510
175f9c1b
JK
511 if (--tab->refcnt == 0) {
512 list_del(&tab->list);
a2da570d 513 call_rcu_bh(&tab->rcu, stab_kfree_rcu);
175f9c1b 514 }
175f9c1b
JK
515}
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);
3aa4614d
PM
523 if (nest == NULL)
524 goto nla_put_failure;
1b34ec43
DM
525 if (nla_put(skb, TCA_STAB_BASE, sizeof(stab->szopts), &stab->szopts))
526 goto nla_put_failure;
175f9c1b
JK
527 nla_nest_end(skb, nest);
528
529 return skb->len;
530
531nla_put_failure:
532 return -1;
533}
534
5a7a5555
JHS
535void __qdisc_calculate_pkt_len(struct sk_buff *skb,
536 const struct qdisc_size_table *stab)
175f9c1b
JK
537{
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}
a2da570d 562EXPORT_SYMBOL(__qdisc_calculate_pkt_len);
175f9c1b 563
6e765a00 564void qdisc_warn_nonwc(const char *txt, struct Qdisc *qdisc)
b00355db
JP
565{
566 if (!(qdisc->flags & TCQ_F_WARN_NONWC)) {
cc7ec456
ED
567 pr_warn("%s: %s qdisc %X: is non-work-conserving?\n",
568 txt, qdisc->ops->id, qdisc->handle >> 16);
b00355db
JP
569 qdisc->flags |= TCQ_F_WARN_NONWC;
570 }
571}
572EXPORT_SYMBOL(qdisc_warn_nonwc);
573
4179477f
PM
574static enum hrtimer_restart qdisc_watchdog(struct hrtimer *timer)
575{
576 struct qdisc_watchdog *wd = container_of(timer, struct qdisc_watchdog,
2fbd3da3 577 timer);
4179477f 578
1e203c1a 579 rcu_read_lock();
8608db03 580 __netif_schedule(qdisc_root(wd->qdisc));
1e203c1a 581 rcu_read_unlock();
1936502d 582
4179477f
PM
583 return HRTIMER_NORESTART;
584}
585
586void qdisc_watchdog_init(struct qdisc_watchdog *wd, struct Qdisc *qdisc)
587{
4a8e320c 588 hrtimer_init(&wd->timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS_PINNED);
2fbd3da3 589 wd->timer.function = qdisc_watchdog;
4179477f
PM
590 wd->qdisc = qdisc;
591}
592EXPORT_SYMBOL(qdisc_watchdog_init);
593
45f50bed 594void qdisc_watchdog_schedule_ns(struct qdisc_watchdog *wd, u64 expires)
4179477f 595{
2540e051
JP
596 if (test_bit(__QDISC_STATE_DEACTIVATED,
597 &qdisc_root_sleeping(wd->qdisc)->state))
598 return;
599
a9efad8b
ED
600 if (wd->last_expires == expires)
601 return;
602
603 wd->last_expires = expires;
46baac38 604 hrtimer_start(&wd->timer,
34c5d292 605 ns_to_ktime(expires),
4a8e320c 606 HRTIMER_MODE_ABS_PINNED);
4179477f 607}
34c5d292 608EXPORT_SYMBOL(qdisc_watchdog_schedule_ns);
4179477f
PM
609
610void qdisc_watchdog_cancel(struct qdisc_watchdog *wd)
611{
2fbd3da3 612 hrtimer_cancel(&wd->timer);
4179477f
PM
613}
614EXPORT_SYMBOL(qdisc_watchdog_cancel);
1da177e4 615
a94f779f 616static struct hlist_head *qdisc_class_hash_alloc(unsigned int n)
6fe1c7a5
PM
617{
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;
b67bfe0d 647 struct hlist_node *next;
6fe1c7a5
PM
648 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++) {
b67bfe0d 666 hlist_for_each_entry_safe(cl, next, &ohash[i], hnode) {
6fe1c7a5
PM
667 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
fa0f5aa7
ED
720/* Allocate an unique handle from space managed by kernel
721 * Possible range is [8000-FFFF]:0000 (0x8000 values)
722 */
1da177e4
LT
723static u32 qdisc_alloc_handle(struct net_device *dev)
724{
fa0f5aa7 725 int i = 0x8000;
1da177e4
LT
726 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);
fa0f5aa7
ED
732 if (!qdisc_lookup(dev, autohandle))
733 return autohandle;
734 cond_resched();
735 } while (--i > 0);
1da177e4 736
fa0f5aa7 737 return 0;
1da177e4
LT
738}
739
2ccccf5f
WC
740void qdisc_tree_reduce_backlog(struct Qdisc *sch, unsigned int n,
741 unsigned int len)
43effa1e 742{
20fea08b 743 const struct Qdisc_class_ops *cops;
43effa1e
PM
744 unsigned long cl;
745 u32 parentid;
2c8c8e6f 746 int drops;
43effa1e 747
2ccccf5f 748 if (n == 0 && len == 0)
43effa1e 749 return;
2c8c8e6f 750 drops = max_t(int, n, 0);
4eaf3b84 751 rcu_read_lock();
43effa1e 752 while ((parentid = sch->parent)) {
066a3b5b 753 if (TC_H_MAJ(parentid) == TC_H_MAJ(TC_H_INGRESS))
4eaf3b84 754 break;
066a3b5b 755
4eaf3b84
ED
756 if (sch->flags & TCQ_F_NOPARENT)
757 break;
758 /* TODO: perform the search on a per txq basis */
5ce2d488 759 sch = qdisc_lookup(qdisc_dev(sch), TC_H_MAJ(parentid));
ffc8fefa 760 if (sch == NULL) {
4eaf3b84
ED
761 WARN_ON_ONCE(parentid != TC_H_ROOT);
762 break;
ffc8fefa 763 }
43effa1e
PM
764 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;
2ccccf5f 771 sch->qstats.backlog -= len;
25331d6c 772 __qdisc_qstats_drop(sch, drops);
43effa1e 773 }
4eaf3b84 774 rcu_read_unlock();
43effa1e 775}
2ccccf5f 776EXPORT_SYMBOL(qdisc_tree_reduce_backlog);
1da177e4 777
7316ae88
TG
778static void notify_and_destroy(struct net *net, struct sk_buff *skb,
779 struct nlmsghdr *n, u32 clid,
99194cff
DM
780 struct Qdisc *old, struct Qdisc *new)
781{
782 if (new || old)
7316ae88 783 qdisc_notify(net, skb, n, clid, old, new);
1da177e4 784
4d8863a2 785 if (old)
99194cff 786 qdisc_destroy(old);
99194cff
DM
787}
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.
1da177e4
LT
796 */
797
798static int qdisc_graft(struct net_device *dev, struct Qdisc *parent,
99194cff
DM
799 struct sk_buff *skb, struct nlmsghdr *n, u32 classid,
800 struct Qdisc *new, struct Qdisc *old)
1da177e4 801{
99194cff 802 struct Qdisc *q = old;
7316ae88 803 struct net *net = dev_net(dev);
1da177e4 804 int err = 0;
1da177e4 805
10297b99 806 if (parent == NULL) {
99194cff
DM
807 unsigned int i, num_q, ingress;
808
809 ingress = 0;
810 num_q = dev->num_tx_queues;
8d50b53d
DM
811 if ((q && q->flags & TCQ_F_INGRESS) ||
812 (new && new->flags & TCQ_F_INGRESS)) {
99194cff
DM
813 num_q = 1;
814 ingress = 1;
24824a09
ED
815 if (!dev_ingress_queue(dev))
816 return -ENOENT;
99194cff
DM
817 }
818
819 if (dev->flags & IFF_UP)
820 dev_deactivate(dev);
821
86e363dc
WC
822 if (new && new->ops->attach)
823 goto skip;
6ec1c69a 824
99194cff 825 for (i = 0; i < num_q; i++) {
24824a09 826 struct netdev_queue *dev_queue = dev_ingress_queue(dev);
99194cff
DM
827
828 if (!ingress)
829 dev_queue = netdev_get_tx_queue(dev, i);
830
8d50b53d
DM
831 old = dev_graft_qdisc(dev_queue, new);
832 if (new && i > 0)
833 atomic_inc(&new->refcnt);
834
036d6a67
JP
835 if (!ingress)
836 qdisc_destroy(old);
1da177e4 837 }
99194cff 838
86e363dc 839skip:
036d6a67 840 if (!ingress) {
7316ae88
TG
841 notify_and_destroy(net, skb, n, classid,
842 dev->qdisc, new);
036d6a67
JP
843 if (new && !new->ops->attach)
844 atomic_inc(&new->refcnt);
845 dev->qdisc = new ? : &noop_qdisc;
86e363dc
WC
846
847 if (new && new->ops->attach)
848 new->ops->attach(new);
036d6a67 849 } else {
7316ae88 850 notify_and_destroy(net, skb, n, classid, old, new);
036d6a67 851 }
af356afa 852
99194cff
DM
853 if (dev->flags & IFF_UP)
854 dev_activate(dev);
1da177e4 855 } else {
20fea08b 856 const struct Qdisc_class_ops *cops = parent->ops->cl_ops;
1da177e4 857
c9f1d038
PM
858 err = -EOPNOTSUPP;
859 if (cops && cops->graft) {
1da177e4
LT
860 unsigned long cl = cops->get(parent, classid);
861 if (cl) {
99194cff 862 err = cops->graft(parent, cl, new, &old);
1da177e4 863 cops->put(parent, cl);
c9f1d038
PM
864 } else
865 err = -ENOENT;
1da177e4 866 }
99194cff 867 if (!err)
7316ae88 868 notify_and_destroy(net, skb, n, classid, old, new);
1da177e4
LT
869 }
870 return err;
871}
872
25bfcd5a
JP
873/* 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
1da177e4
LT
877/*
878 Allocate and initialize new qdisc.
879
880 Parameters are passed via opt.
881 */
882
5a7a5555
JHS
883static 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)
1da177e4
LT
887{
888 int err;
1e90474c 889 struct nlattr *kind = tca[TCA_KIND];
1da177e4
LT
890 struct Qdisc *sch;
891 struct Qdisc_ops *ops;
175f9c1b 892 struct qdisc_size_table *stab;
1da177e4
LT
893
894 ops = qdisc_lookup_ops(kind);
95a5afca 895#ifdef CONFIG_MODULES
1da177e4
LT
896 if (ops == NULL && kind != NULL) {
897 char name[IFNAMSIZ];
1e90474c 898 if (nla_strlcpy(name, kind, IFNAMSIZ) < IFNAMSIZ) {
1da177e4
LT
899 /* 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
b9e2cc0f 923 err = -ENOENT;
1da177e4
LT
924 if (ops == NULL)
925 goto err_out;
926
5ce2d488 927 sch = qdisc_alloc(dev_queue, ops);
3d54b82f
TG
928 if (IS_ERR(sch)) {
929 err = PTR_ERR(sch);
1da177e4 930 goto err_out2;
3d54b82f 931 }
1da177e4 932
ffc8fefa
PM
933 sch->parent = parent;
934
3d54b82f 935 if (handle == TC_H_INGRESS) {
1da177e4 936 sch->flags |= TCQ_F_INGRESS;
3d54b82f 937 handle = TC_H_MAKE(TC_H_INGRESS, 0);
25bfcd5a 938 lockdep_set_class(qdisc_lock(sch), &qdisc_rx_lock);
fd44de7c 939 } else {
fd44de7c
PM
940 if (handle == 0) {
941 handle = qdisc_alloc_handle(dev);
942 err = -ENOMEM;
943 if (handle == 0)
944 goto err_out3;
945 }
25bfcd5a 946 lockdep_set_class(qdisc_lock(sch), &qdisc_tx_lock);
1abbe139 947 if (!netif_is_multiqueue(dev))
225734de 948 sch->flags |= TCQ_F_ONETXQUEUE;
1da177e4
LT
949 }
950
3d54b82f 951 sch->handle = handle;
1da177e4 952
84c46dd8
JDB
953 /* 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
1e90474c 964 if (!ops->init || (err = ops->init(sch, tca[TCA_OPTIONS])) == 0) {
22e0f8b9
JF
965 if (qdisc_is_percpu_stats(sch)) {
966 sch->cpu_bstats =
7c1c97d5 967 netdev_alloc_pcpu_stats(struct gnet_stats_basic_cpu);
22e0f8b9
JF
968 if (!sch->cpu_bstats)
969 goto err_out4;
b0ab6f92
JF
970
971 sch->cpu_qstats = alloc_percpu(struct gnet_stats_queue);
972 if (!sch->cpu_qstats)
973 goto err_out4;
22e0f8b9
JF
974 }
975
175f9c1b
JK
976 if (tca[TCA_STAB]) {
977 stab = qdisc_get_stab(tca[TCA_STAB]);
978 if (IS_ERR(stab)) {
979 err = PTR_ERR(stab);
7c64b9f3 980 goto err_out4;
175f9c1b 981 }
a2da570d 982 rcu_assign_pointer(sch->stab, stab);
175f9c1b 983 }
1e90474c 984 if (tca[TCA_RATE]) {
edb09eb1 985 seqcount_t *running;
f6f9b93f 986
23bcf634
PM
987 err = -EOPNOTSUPP;
988 if (sch->flags & TCQ_F_MQROOT)
989 goto err_out4;
990
f6f9b93f 991 if ((sch->parent != TC_H_ROOT) &&
23bcf634
PM
992 !(sch->flags & TCQ_F_INGRESS) &&
993 (!p || !(p->flags & TCQ_F_MQROOT)))
edb09eb1 994 running = qdisc_root_sleeping_running(sch);
f6f9b93f 995 else
edb09eb1 996 running = &sch->running;
f6f9b93f 997
22e0f8b9
JF
998 err = gen_new_estimator(&sch->bstats,
999 sch->cpu_bstats,
1000 &sch->rate_est,
edb09eb1
ED
1001 NULL,
1002 running,
22e0f8b9 1003 tca[TCA_RATE]);
23bcf634
PM
1004 if (err)
1005 goto err_out4;
023e09a7 1006 }
f6e0b239 1007
49b49971 1008 qdisc_hash_add(sch, false);
1da177e4 1009
1da177e4
LT
1010 return sch;
1011 }
87b60cfa
ED
1012 /* ops->init() failed, we call ->destroy() like qdisc_create_dflt() */
1013 ops->destroy(sch);
1da177e4
LT
1014err_out3:
1015 dev_put(dev);
3d54b82f 1016 kfree((char *) sch - sch->padded);
1da177e4
LT
1017err_out2:
1018 module_put(ops->owner);
1019err_out:
1020 *errp = err;
1da177e4 1021 return NULL;
23bcf634
PM
1022
1023err_out4:
22e0f8b9 1024 free_percpu(sch->cpu_bstats);
b0ab6f92 1025 free_percpu(sch->cpu_qstats);
23bcf634
PM
1026 /*
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 */
a2da570d 1030 qdisc_put_stab(rtnl_dereference(sch->stab));
23bcf634
PM
1031 if (ops->destroy)
1032 ops->destroy(sch);
1033 goto err_out3;
1da177e4
LT
1034}
1035
1e90474c 1036static int qdisc_change(struct Qdisc *sch, struct nlattr **tca)
1da177e4 1037{
a2da570d 1038 struct qdisc_size_table *ostab, *stab = NULL;
175f9c1b 1039 int err = 0;
1da177e4 1040
175f9c1b 1041 if (tca[TCA_OPTIONS]) {
1da177e4
LT
1042 if (sch->ops->change == NULL)
1043 return -EINVAL;
1e90474c 1044 err = sch->ops->change(sch, tca[TCA_OPTIONS]);
1da177e4
LT
1045 if (err)
1046 return err;
1047 }
175f9c1b
JK
1048
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
a2da570d
ED
1055 ostab = rtnl_dereference(sch->stab);
1056 rcu_assign_pointer(sch->stab, stab);
1057 qdisc_put_stab(ostab);
175f9c1b 1058
23bcf634 1059 if (tca[TCA_RATE]) {
71bcb09a
SH
1060 /* NB: ignores errors from replace_estimator
1061 because change can't be undone. */
23bcf634
PM
1062 if (sch->flags & TCQ_F_MQROOT)
1063 goto out;
22e0f8b9
JF
1064 gen_replace_estimator(&sch->bstats,
1065 sch->cpu_bstats,
1066 &sch->rate_est,
edb09eb1
ED
1067 NULL,
1068 qdisc_root_sleeping_running(sch),
22e0f8b9 1069 tca[TCA_RATE]);
23bcf634
PM
1070 }
1071out:
1da177e4
LT
1072 return 0;
1073}
1074
cc7ec456
ED
1075struct check_loop_arg {
1076 struct qdisc_walker w;
1da177e4
LT
1077 struct Qdisc *p;
1078 int depth;
1079};
1080
5a7a5555
JHS
1081static int check_loop_fn(struct Qdisc *q, unsigned long cl,
1082 struct qdisc_walker *w);
1da177e4
LT
1083
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;
20fea08b 1103 const struct Qdisc_class_ops *cops = q->ops->cl_ops;
1da177e4
LT
1104 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
661d2967 1119static int tc_get_qdisc(struct sk_buff *skb, struct nlmsghdr *n)
1da177e4 1120{
3b1e0a65 1121 struct net *net = sock_net(skb->sk);
02ef22ca 1122 struct tcmsg *tcm = nlmsg_data(n);
1e90474c 1123 struct nlattr *tca[TCA_MAX + 1];
1da177e4 1124 struct net_device *dev;
de179c8c 1125 u32 clid;
1da177e4
LT
1126 struct Qdisc *q = NULL;
1127 struct Qdisc *p = NULL;
1128 int err;
1129
4e8bbb81 1130 if ((n->nlmsg_type != RTM_GETQDISC) &&
5f013c9b 1131 !netlink_ns_capable(skb, net->user_ns, CAP_NET_ADMIN))
dfc47ef8
EB
1132 return -EPERM;
1133
1e90474c
PM
1134 err = nlmsg_parse(n, sizeof(*tcm), tca, TCA_MAX, NULL);
1135 if (err < 0)
1136 return err;
1137
de179c8c
H
1138 dev = __dev_get_by_index(net, tcm->tcm_ifindex);
1139 if (!dev)
1140 return -ENODEV;
1141
1142 clid = tcm->tcm_parent;
1da177e4
LT
1143 if (clid) {
1144 if (clid != TC_H_ROOT) {
1145 if (TC_H_MAJ(clid) != TC_H_MAJ(TC_H_INGRESS)) {
cc7ec456
ED
1146 p = qdisc_lookup(dev, TC_H_MAJ(clid));
1147 if (!p)
1da177e4
LT
1148 return -ENOENT;
1149 q = qdisc_leaf(p, clid);
cc7ec456
ED
1150 } else if (dev_ingress_queue(dev)) {
1151 q = dev_ingress_queue(dev)->qdisc_sleeping;
10297b99 1152 }
1da177e4 1153 } else {
af356afa 1154 q = dev->qdisc;
1da177e4
LT
1155 }
1156 if (!q)
1157 return -ENOENT;
1158
1159 if (tcm->tcm_handle && q->handle != tcm->tcm_handle)
1160 return -EINVAL;
1161 } else {
cc7ec456
ED
1162 q = qdisc_lookup(dev, tcm->tcm_handle);
1163 if (!q)
1da177e4
LT
1164 return -ENOENT;
1165 }
1166
1e90474c 1167 if (tca[TCA_KIND] && nla_strcmp(tca[TCA_KIND], q->ops->id))
1da177e4
LT
1168 return -EINVAL;
1169
1170 if (n->nlmsg_type == RTM_DELQDISC) {
1171 if (!clid)
1172 return -EINVAL;
1173 if (q->handle == 0)
1174 return -ENOENT;
cc7ec456
ED
1175 err = qdisc_graft(dev, p, skb, n, clid, NULL, q);
1176 if (err != 0)
1da177e4 1177 return err;
1da177e4 1178 } else {
7316ae88 1179 qdisc_notify(net, skb, n, clid, NULL, q);
1da177e4
LT
1180 }
1181 return 0;
1182}
1183
1184/*
cc7ec456 1185 * Create/change qdisc.
1da177e4
LT
1186 */
1187
661d2967 1188static int tc_modify_qdisc(struct sk_buff *skb, struct nlmsghdr *n)
1da177e4 1189{
3b1e0a65 1190 struct net *net = sock_net(skb->sk);
1da177e4 1191 struct tcmsg *tcm;
1e90474c 1192 struct nlattr *tca[TCA_MAX + 1];
1da177e4
LT
1193 struct net_device *dev;
1194 u32 clid;
1195 struct Qdisc *q, *p;
1196 int err;
1197
5f013c9b 1198 if (!netlink_ns_capable(skb, net->user_ns, CAP_NET_ADMIN))
dfc47ef8
EB
1199 return -EPERM;
1200
1da177e4
LT
1201replay:
1202 /* Reinit, just in case something touches this. */
de179c8c
H
1203 err = nlmsg_parse(n, sizeof(*tcm), tca, TCA_MAX, NULL);
1204 if (err < 0)
1205 return err;
1206
02ef22ca 1207 tcm = nlmsg_data(n);
1da177e4
LT
1208 clid = tcm->tcm_parent;
1209 q = p = NULL;
1210
cc7ec456
ED
1211 dev = __dev_get_by_index(net, tcm->tcm_ifindex);
1212 if (!dev)
1da177e4
LT
1213 return -ENODEV;
1214
1e90474c 1215
1da177e4
LT
1216 if (clid) {
1217 if (clid != TC_H_ROOT) {
1218 if (clid != TC_H_INGRESS) {
cc7ec456
ED
1219 p = qdisc_lookup(dev, TC_H_MAJ(clid));
1220 if (!p)
1da177e4
LT
1221 return -ENOENT;
1222 q = qdisc_leaf(p, clid);
cc7ec456
ED
1223 } else if (dev_ingress_queue_create(dev)) {
1224 q = dev_ingress_queue(dev)->qdisc_sleeping;
1da177e4
LT
1225 }
1226 } else {
af356afa 1227 q = dev->qdisc;
1da177e4
LT
1228 }
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) {
cc7ec456 1236 if (q && !(n->nlmsg_flags & NLM_F_REPLACE))
1da177e4
LT
1237 return -EEXIST;
1238 if (TC_H_MIN(tcm->tcm_handle))
1239 return -EINVAL;
cc7ec456
ED
1240 q = qdisc_lookup(dev, tcm->tcm_handle);
1241 if (!q)
1da177e4 1242 goto create_n_graft;
cc7ec456 1243 if (n->nlmsg_flags & NLM_F_EXCL)
1da177e4 1244 return -EEXIST;
1e90474c 1245 if (tca[TCA_KIND] && nla_strcmp(tca[TCA_KIND], q->ops->id))
1da177e4
LT
1246 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 {
cc7ec456 1253 if (!q)
1da177e4
LT
1254 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 */
cc7ec456
ED
1275 if ((n->nlmsg_flags & NLM_F_CREATE) &&
1276 (n->nlmsg_flags & NLM_F_REPLACE) &&
1277 ((n->nlmsg_flags & NLM_F_EXCL) ||
1e90474c
PM
1278 (tca[TCA_KIND] &&
1279 nla_strcmp(tca[TCA_KIND], q->ops->id))))
1da177e4
LT
1280 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;
cc7ec456 1292 if (n->nlmsg_flags & NLM_F_EXCL)
1da177e4 1293 return -EEXIST;
1e90474c 1294 if (tca[TCA_KIND] && nla_strcmp(tca[TCA_KIND], q->ops->id))
1da177e4
LT
1295 return -EINVAL;
1296 err = qdisc_change(q, tca);
1297 if (err == 0)
7316ae88 1298 qdisc_notify(net, skb, n, clid, NULL, q);
1da177e4
LT
1299 return err;
1300
1301create_n_graft:
cc7ec456 1302 if (!(n->nlmsg_flags & NLM_F_CREATE))
1da177e4 1303 return -ENOENT;
24824a09
ED
1304 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 {
926e61b7 1312 struct netdev_queue *dev_queue;
6ec1c69a
DM
1313
1314 if (p && p->ops->cl_ops && p->ops->cl_ops->select_queue)
926e61b7
JP
1315 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);
6ec1c69a 1320
926e61b7 1321 q = qdisc_create(dev, dev_queue, p,
bb949fbd 1322 tcm->tcm_parent, tcm->tcm_handle,
ffc8fefa 1323 tca, &err);
6ec1c69a 1324 }
1da177e4
LT
1325 if (q == NULL) {
1326 if (err == -EAGAIN)
1327 goto replay;
1328 return err;
1329 }
1330
1331graft:
e5befbd9
IJ
1332 err = qdisc_graft(dev, p, skb, n, clid, q, NULL);
1333 if (err) {
1334 if (q)
1335 qdisc_destroy(q);
1336 return err;
1da177e4 1337 }
e5befbd9 1338
1da177e4
LT
1339 return 0;
1340}
1341
1342static int tc_fill_qdisc(struct sk_buff *skb, struct Qdisc *q, u32 clid,
15e47304 1343 u32 portid, u32 seq, u16 flags, int event)
1da177e4 1344{
22e0f8b9 1345 struct gnet_stats_basic_cpu __percpu *cpu_bstats = NULL;
b0ab6f92 1346 struct gnet_stats_queue __percpu *cpu_qstats = NULL;
1da177e4
LT
1347 struct tcmsg *tcm;
1348 struct nlmsghdr *nlh;
27a884dc 1349 unsigned char *b = skb_tail_pointer(skb);
1da177e4 1350 struct gnet_dump d;
a2da570d 1351 struct qdisc_size_table *stab;
64015853 1352 __u32 qlen;
1da177e4 1353
fba373d2 1354 cond_resched();
15e47304 1355 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*tcm), flags);
02ef22ca
DM
1356 if (!nlh)
1357 goto out_nlmsg_trim;
1358 tcm = nlmsg_data(nlh);
1da177e4 1359 tcm->tcm_family = AF_UNSPEC;
9ef1d4c7
PM
1360 tcm->tcm__pad1 = 0;
1361 tcm->tcm__pad2 = 0;
5ce2d488 1362 tcm->tcm_ifindex = qdisc_dev(q)->ifindex;
1da177e4
LT
1363 tcm->tcm_parent = clid;
1364 tcm->tcm_handle = q->handle;
1365 tcm->tcm_info = atomic_read(&q->refcnt);
1b34ec43
DM
1366 if (nla_put_string(skb, TCA_KIND, q->ops->id))
1367 goto nla_put_failure;
1da177e4 1368 if (q->ops->dump && q->ops->dump(q, skb) < 0)
1e90474c 1369 goto nla_put_failure;
64015853 1370 qlen = q->q.qlen;
1da177e4 1371
a2da570d
ED
1372 stab = rtnl_dereference(q->stab);
1373 if (stab && qdisc_dump_stab(skb, stab) < 0)
175f9c1b
JK
1374 goto nla_put_failure;
1375
102396ae 1376 if (gnet_stats_start_copy_compat(skb, TCA_STATS2, TCA_STATS, TCA_XSTATS,
edb09eb1 1377 NULL, &d, TCA_PAD) < 0)
1e90474c 1378 goto nla_put_failure;
1da177e4
LT
1379
1380 if (q->ops->dump_stats && q->ops->dump_stats(q, &d) < 0)
1e90474c 1381 goto nla_put_failure;
1da177e4 1382
b0ab6f92 1383 if (qdisc_is_percpu_stats(q)) {
22e0f8b9 1384 cpu_bstats = q->cpu_bstats;
b0ab6f92
JF
1385 cpu_qstats = q->cpu_qstats;
1386 }
22e0f8b9 1387
edb09eb1
ED
1388 if (gnet_stats_copy_basic(qdisc_root_sleeping_running(q),
1389 &d, cpu_bstats, &q->bstats) < 0 ||
1c0d32fd 1390 gnet_stats_copy_rate_est(&d, &q->rate_est) < 0 ||
b0ab6f92 1391 gnet_stats_copy_queue(&d, cpu_qstats, &q->qstats, qlen) < 0)
1e90474c 1392 goto nla_put_failure;
10297b99 1393
1da177e4 1394 if (gnet_stats_finish_copy(&d) < 0)
1e90474c 1395 goto nla_put_failure;
10297b99 1396
27a884dc 1397 nlh->nlmsg_len = skb_tail_pointer(skb) - b;
1da177e4
LT
1398 return skb->len;
1399
02ef22ca 1400out_nlmsg_trim:
1e90474c 1401nla_put_failure:
dc5fc579 1402 nlmsg_trim(skb, b);
1da177e4
LT
1403 return -1;
1404}
1405
49b49971 1406static bool tc_qdisc_dump_ignore(struct Qdisc *q, bool dump_invisible)
53b0f080 1407{
49b49971
JK
1408 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;
53b0f080
ED
1414}
1415
7316ae88
TG
1416static int qdisc_notify(struct net *net, struct sk_buff *oskb,
1417 struct nlmsghdr *n, u32 clid,
1418 struct Qdisc *old, struct Qdisc *new)
1da177e4
LT
1419{
1420 struct sk_buff *skb;
15e47304 1421 u32 portid = oskb ? NETLINK_CB(oskb).portid : 0;
1da177e4
LT
1422
1423 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
1424 if (!skb)
1425 return -ENOBUFS;
1426
49b49971 1427 if (old && !tc_qdisc_dump_ignore(old, false)) {
15e47304 1428 if (tc_fill_qdisc(skb, old, clid, portid, n->nlmsg_seq,
cc7ec456 1429 0, RTM_DELQDISC) < 0)
1da177e4
LT
1430 goto err_out;
1431 }
49b49971 1432 if (new && !tc_qdisc_dump_ignore(new, false)) {
15e47304 1433 if (tc_fill_qdisc(skb, new, clid, portid, n->nlmsg_seq,
cc7ec456 1434 old ? NLM_F_REPLACE : 0, RTM_NEWQDISC) < 0)
1da177e4
LT
1435 goto err_out;
1436 }
1437
1438 if (skb->len)
15e47304 1439 return rtnetlink_send(skb, net, portid, RTNLGRP_TC,
cc7ec456 1440 n->nlmsg_flags & NLM_F_ECHO);
1da177e4
LT
1441
1442err_out:
1443 kfree_skb(skb);
1444 return -EINVAL;
1445}
1446
30723673
DM
1447static int tc_dump_qdisc_root(struct Qdisc *root, struct sk_buff *skb,
1448 struct netlink_callback *cb,
49b49971
JK
1449 int *q_idx_p, int s_q_idx, bool recur,
1450 bool dump_invisible)
30723673
DM
1451{
1452 int ret = 0, q_idx = *q_idx_p;
1453 struct Qdisc *q;
59cc1f61 1454 int b;
30723673
DM
1455
1456 if (!root)
1457 return 0;
1458
1459 q = root;
1460 if (q_idx < s_q_idx) {
1461 q_idx++;
1462 } else {
49b49971 1463 if (!tc_qdisc_dump_ignore(q, dump_invisible) &&
15e47304 1464 tc_fill_qdisc(skb, q, q->parent, NETLINK_CB(cb->skb).portid,
5a7a5555
JHS
1465 cb->nlh->nlmsg_seq, NLM_F_MULTI,
1466 RTM_NEWQDISC) <= 0)
30723673
DM
1467 goto done;
1468 q_idx++;
1469 }
69012ae4 1470
ea327469
JK
1471 /* 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)
69012ae4
JK
1478 goto out;
1479
59cc1f61 1480 hash_for_each(qdisc_dev(root)->qdisc_hash, b, q, hash) {
30723673
DM
1481 if (q_idx < s_q_idx) {
1482 q_idx++;
1483 continue;
1484 }
49b49971 1485 if (!tc_qdisc_dump_ignore(q, dump_invisible) &&
15e47304 1486 tc_fill_qdisc(skb, q, q->parent, NETLINK_CB(cb->skb).portid,
5a7a5555
JHS
1487 cb->nlh->nlmsg_seq, NLM_F_MULTI,
1488 RTM_NEWQDISC) <= 0)
30723673
DM
1489 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
1da177e4
LT
1501static int tc_dump_qdisc(struct sk_buff *skb, struct netlink_callback *cb)
1502{
3b1e0a65 1503 struct net *net = sock_net(skb->sk);
1da177e4
LT
1504 int idx, q_idx;
1505 int s_idx, s_q_idx;
1506 struct net_device *dev;
49b49971
JK
1507 const struct nlmsghdr *nlh = cb->nlh;
1508 struct tcmsg *tcm = nlmsg_data(nlh);
1509 struct nlattr *tca[TCA_MAX + 1];
1510 int err;
1da177e4
LT
1511
1512 s_idx = cb->args[0];
1513 s_q_idx = q_idx = cb->args[1];
f1e9016d 1514
7562f876 1515 idx = 0;
15dc36eb 1516 ASSERT_RTNL();
49b49971
JK
1517
1518 err = nlmsg_parse(nlh, sizeof(*tcm), tca, TCA_MAX, NULL);
1519 if (err < 0)
1520 return err;
1521
15dc36eb 1522 for_each_netdev(net, dev) {
30723673
DM
1523 struct netdev_queue *dev_queue;
1524
1da177e4 1525 if (idx < s_idx)
7562f876 1526 goto cont;
1da177e4
LT
1527 if (idx > s_idx)
1528 s_q_idx = 0;
1da177e4 1529 q_idx = 0;
30723673 1530
5a7a5555 1531 if (tc_dump_qdisc_root(dev->qdisc, skb, cb, &q_idx, s_q_idx,
49b49971 1532 true, tca[TCA_DUMP_INVISIBLE]) < 0)
30723673
DM
1533 goto done;
1534
24824a09
ED
1535 dev_queue = dev_ingress_queue(dev);
1536 if (dev_queue &&
1537 tc_dump_qdisc_root(dev_queue->qdisc_sleeping, skb, cb,
49b49971
JK
1538 &q_idx, s_q_idx, false,
1539 tca[TCA_DUMP_INVISIBLE]) < 0)
30723673
DM
1540 goto done;
1541
7562f876
PE
1542cont:
1543 idx++;
1da177e4
LT
1544 }
1545
1546done:
1da177e4
LT
1547 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
661d2967 1561static int tc_ctl_tclass(struct sk_buff *skb, struct nlmsghdr *n)
1da177e4 1562{
3b1e0a65 1563 struct net *net = sock_net(skb->sk);
02ef22ca 1564 struct tcmsg *tcm = nlmsg_data(n);
1e90474c 1565 struct nlattr *tca[TCA_MAX + 1];
1da177e4
LT
1566 struct net_device *dev;
1567 struct Qdisc *q = NULL;
20fea08b 1568 const struct Qdisc_class_ops *cops;
1da177e4
LT
1569 unsigned long cl = 0;
1570 unsigned long new_cl;
de179c8c
H
1571 u32 portid;
1572 u32 clid;
1573 u32 qid;
1da177e4
LT
1574 int err;
1575
4e8bbb81 1576 if ((n->nlmsg_type != RTM_GETTCLASS) &&
5f013c9b 1577 !netlink_ns_capable(skb, net->user_ns, CAP_NET_ADMIN))
dfc47ef8
EB
1578 return -EPERM;
1579
1e90474c
PM
1580 err = nlmsg_parse(n, sizeof(*tcm), tca, TCA_MAX, NULL);
1581 if (err < 0)
1582 return err;
1583
de179c8c
H
1584 dev = __dev_get_by_index(net, tcm->tcm_ifindex);
1585 if (!dev)
1586 return -ENODEV;
1587
1da177e4
LT
1588 /*
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
de179c8c
H
1603 portid = tcm->tcm_parent;
1604 clid = tcm->tcm_handle;
1605 qid = TC_H_MAJ(clid);
1606
15e47304
EB
1607 if (portid != TC_H_ROOT) {
1608 u32 qid1 = TC_H_MAJ(portid);
1da177e4
LT
1609
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)
af356afa 1617 qid = dev->qdisc->handle;
1da177e4
LT
1618
1619 /* Now qid is genuine qdisc handle consistent
cc7ec456
ED
1620 * both with parent and child.
1621 *
15e47304 1622 * TC_H_MAJ(portid) still may be unspecified, complete it now.
1da177e4 1623 */
15e47304
EB
1624 if (portid)
1625 portid = TC_H_MAKE(qid, portid);
1da177e4
LT
1626 } else {
1627 if (qid == 0)
af356afa 1628 qid = dev->qdisc->handle;
1da177e4
LT
1629 }
1630
1631 /* OK. Locate qdisc */
cc7ec456
ED
1632 q = qdisc_lookup(dev, qid);
1633 if (!q)
1da177e4
LT
1634 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) {
15e47304 1643 if (portid == TC_H_ROOT)
1da177e4
LT
1644 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;
cc7ec456
ED
1653 if (n->nlmsg_type != RTM_NEWTCLASS ||
1654 !(n->nlmsg_flags & NLM_F_CREATE))
1da177e4
LT
1655 goto out;
1656 } else {
1657 switch (n->nlmsg_type) {
10297b99 1658 case RTM_NEWTCLASS:
1da177e4 1659 err = -EEXIST;
cc7ec456 1660 if (n->nlmsg_flags & NLM_F_EXCL)
1da177e4
LT
1661 goto out;
1662 break;
1663 case RTM_DELTCLASS:
de6d5cdf
PM
1664 err = -EOPNOTSUPP;
1665 if (cops->delete)
1666 err = cops->delete(q, cl);
1da177e4 1667 if (err == 0)
5a7a5555
JHS
1668 tclass_notify(net, skb, n, q, cl,
1669 RTM_DELTCLASS);
1da177e4
LT
1670 goto out;
1671 case RTM_GETTCLASS:
7316ae88 1672 err = tclass_notify(net, skb, n, q, cl, RTM_NEWTCLASS);
1da177e4
LT
1673 goto out;
1674 default:
1675 err = -EINVAL;
1676 goto out;
1677 }
1678 }
1679
1680 new_cl = cl;
de6d5cdf
PM
1681 err = -EOPNOTSUPP;
1682 if (cops->change)
15e47304 1683 err = cops->change(q, clid, portid, tca, &new_cl);
1da177e4 1684 if (err == 0)
7316ae88 1685 tclass_notify(net, skb, n, q, new_cl, RTM_NEWTCLASS);
1da177e4
LT
1686
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,
15e47304 1697 u32 portid, u32 seq, u16 flags, int event)
1da177e4
LT
1698{
1699 struct tcmsg *tcm;
1700 struct nlmsghdr *nlh;
27a884dc 1701 unsigned char *b = skb_tail_pointer(skb);
1da177e4 1702 struct gnet_dump d;
20fea08b 1703 const struct Qdisc_class_ops *cl_ops = q->ops->cl_ops;
1da177e4 1704
fba373d2 1705 cond_resched();
15e47304 1706 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*tcm), flags);
02ef22ca
DM
1707 if (!nlh)
1708 goto out_nlmsg_trim;
1709 tcm = nlmsg_data(nlh);
1da177e4 1710 tcm->tcm_family = AF_UNSPEC;
16ebb5e0
ED
1711 tcm->tcm__pad1 = 0;
1712 tcm->tcm__pad2 = 0;
5ce2d488 1713 tcm->tcm_ifindex = qdisc_dev(q)->ifindex;
1da177e4
LT
1714 tcm->tcm_parent = q->handle;
1715 tcm->tcm_handle = q->handle;
1716 tcm->tcm_info = 0;
1b34ec43
DM
1717 if (nla_put_string(skb, TCA_KIND, q->ops->id))
1718 goto nla_put_failure;
1da177e4 1719 if (cl_ops->dump && cl_ops->dump(q, cl, skb, tcm) < 0)
1e90474c 1720 goto nla_put_failure;
1da177e4 1721
102396ae 1722 if (gnet_stats_start_copy_compat(skb, TCA_STATS2, TCA_STATS, TCA_XSTATS,
edb09eb1 1723 NULL, &d, TCA_PAD) < 0)
1e90474c 1724 goto nla_put_failure;
1da177e4
LT
1725
1726 if (cl_ops->dump_stats && cl_ops->dump_stats(q, cl, &d) < 0)
1e90474c 1727 goto nla_put_failure;
1da177e4
LT
1728
1729 if (gnet_stats_finish_copy(&d) < 0)
1e90474c 1730 goto nla_put_failure;
1da177e4 1731
27a884dc 1732 nlh->nlmsg_len = skb_tail_pointer(skb) - b;
1da177e4
LT
1733 return skb->len;
1734
02ef22ca 1735out_nlmsg_trim:
1e90474c 1736nla_put_failure:
dc5fc579 1737 nlmsg_trim(skb, b);
1da177e4
LT
1738 return -1;
1739}
1740
7316ae88
TG
1741static int tclass_notify(struct net *net, struct sk_buff *oskb,
1742 struct nlmsghdr *n, struct Qdisc *q,
1743 unsigned long cl, int event)
1da177e4
LT
1744{
1745 struct sk_buff *skb;
15e47304 1746 u32 portid = oskb ? NETLINK_CB(oskb).portid : 0;
1da177e4
LT
1747
1748 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
1749 if (!skb)
1750 return -ENOBUFS;
1751
15e47304 1752 if (tc_fill_tclass(skb, q, cl, portid, n->nlmsg_seq, 0, event) < 0) {
1da177e4
LT
1753 kfree_skb(skb);
1754 return -EINVAL;
1755 }
1756
15e47304 1757 return rtnetlink_send(skb, net, portid, RTNLGRP_TC,
cc7ec456 1758 n->nlmsg_flags & NLM_F_ECHO);
1da177e4
LT
1759}
1760
cc7ec456
ED
1761struct qdisc_dump_args {
1762 struct qdisc_walker w;
1763 struct sk_buff *skb;
1764 struct netlink_callback *cb;
1da177e4
LT
1765};
1766
5a7a5555
JHS
1767static int qdisc_class_dump(struct Qdisc *q, unsigned long cl,
1768 struct qdisc_walker *arg)
1da177e4
LT
1769{
1770 struct qdisc_dump_args *a = (struct qdisc_dump_args *)arg;
1771
15e47304 1772 return tc_fill_tclass(a->skb, q, cl, NETLINK_CB(a->cb->skb).portid,
5a7a5555
JHS
1773 a->cb->nlh->nlmsg_seq, NLM_F_MULTI,
1774 RTM_NEWTCLASS);
1da177e4
LT
1775}
1776
30723673
DM
1777static 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
49b49971 1783 if (tc_qdisc_dump_ignore(q, false) ||
30723673
DM
1784 *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;
59cc1f61 1811 int b;
30723673
DM
1812
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
69012ae4
JK
1819 if (!qdisc_dev(root))
1820 return 0;
1821
59cc1f61 1822 hash_for_each(qdisc_dev(root)->qdisc_hash, b, q, hash) {
30723673
DM
1823 if (tc_dump_tclass_qdisc(q, skb, tcm, cb, t_p, s_t) < 0)
1824 return -1;
1825 }
1826
1827 return 0;
1828}
1829
1da177e4
LT
1830static int tc_dump_tclass(struct sk_buff *skb, struct netlink_callback *cb)
1831{
02ef22ca 1832 struct tcmsg *tcm = nlmsg_data(cb->nlh);
3b1e0a65 1833 struct net *net = sock_net(skb->sk);
30723673 1834 struct netdev_queue *dev_queue;
1da177e4 1835 struct net_device *dev;
30723673 1836 int t, s_t;
1da177e4 1837
573ce260 1838 if (nlmsg_len(cb->nlh) < sizeof(*tcm))
1da177e4 1839 return 0;
cc7ec456
ED
1840 dev = dev_get_by_index(net, tcm->tcm_ifindex);
1841 if (!dev)
1da177e4
LT
1842 return 0;
1843
1844 s_t = cb->args[0];
1845 t = 0;
1846
af356afa 1847 if (tc_dump_tclass_root(dev->qdisc, skb, tcm, cb, &t, s_t) < 0)
30723673
DM
1848 goto done;
1849
24824a09
ED
1850 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)
30723673 1854 goto done;
1da177e4 1855
30723673 1856done:
1da177e4
LT
1857 cb->args[0] = t;
1858
1859 dev_put(dev);
1860 return skb->len;
1861}
1862
1863/* Main classifier routine: scans classifier chain attached
cc7ec456
ED
1864 * to this qdisc, (optionally) tests for protocol and asks
1865 * specific classifiers.
1da177e4 1866 */
3b3ae880
DB
1867int tc_classify(struct sk_buff *skb, const struct tcf_proto *tp,
1868 struct tcf_result *res, bool compat_mode)
73ca4918 1869{
d8b9605d 1870 __be16 protocol = tc_skb_protocol(skb);
3b3ae880 1871#ifdef CONFIG_NET_CLS_ACT
d6264071 1872 const int max_reclassify_loop = 4;
3b3ae880
DB
1873 const struct tcf_proto *old_tp = tp;
1874 int limit = 0;
73ca4918 1875
3b3ae880
DB
1876reclassify:
1877#endif
25d8c0d5 1878 for (; tp; tp = rcu_dereference_bh(tp->next)) {
3b3ae880
DB
1879 int err;
1880
cc7ec456
ED
1881 if (tp->protocol != protocol &&
1882 tp->protocol != htons(ETH_P_ALL))
1883 continue;
cc7ec456 1884
3b3ae880
DB
1885 err = tp->classify(skb, tp, res);
1886#ifdef CONFIG_NET_CLS_ACT
c1b3b199 1887 if (unlikely(err == TC_ACT_RECLASSIFY && !compat_mode))
3b3ae880
DB
1888 goto reset;
1889#endif
e578d9c0 1890 if (err >= 0)
73ca4918 1891 return err;
73ca4918 1892 }
73ca4918 1893
7e6e18fb 1894 return TC_ACT_UNSPEC; /* signal: continue lookup */
1da177e4 1895#ifdef CONFIG_NET_CLS_ACT
3b3ae880 1896reset:
d6264071 1897 if (unlikely(limit++ >= max_reclassify_loop)) {
c1b3b199
DB
1898 net_notice_ratelimited("%s: reclassify loop, rule prio %u, protocol %02x\n",
1899 tp->q->ops->id, tp->prio & 0xffff,
1900 ntohs(tp->protocol));
3b3ae880 1901 return TC_ACT_SHOT;
1da177e4 1902 }
3b3ae880
DB
1903
1904 tp = old_tp;
619fe326 1905 protocol = tc_skb_protocol(skb);
3b3ae880 1906 goto reclassify;
73ca4918 1907#endif
1da177e4 1908}
73ca4918 1909EXPORT_SYMBOL(tc_classify);
1da177e4 1910
1da177e4
LT
1911#ifdef CONFIG_PROC_FS
1912static int psched_show(struct seq_file *seq, void *v)
1913{
1914 seq_printf(seq, "%08x %08x %08x %08x\n",
ca44d6e6 1915 (u32)NSEC_PER_USEC, (u32)PSCHED_TICKS2NS(1),
514bca32 1916 1000000,
1e317688 1917 (u32)NSEC_PER_SEC / hrtimer_resolution);
1da177e4
LT
1918
1919 return 0;
1920}
1921
1922static int psched_open(struct inode *inode, struct file *file)
1923{
7e5ab157 1924 return single_open(file, psched_show, NULL);
1da177e4
LT
1925}
1926
da7071d7 1927static const struct file_operations psched_fops = {
1da177e4
LT
1928 .owner = THIS_MODULE,
1929 .open = psched_open,
1930 .read = seq_read,
1931 .llseek = seq_lseek,
1932 .release = single_release,
10297b99 1933};
7316ae88
TG
1934
1935static int __net_init psched_net_init(struct net *net)
1936{
1937 struct proc_dir_entry *e;
1938
d4beaa66 1939 e = proc_create("psched", 0, net->proc_net, &psched_fops);
7316ae88
TG
1940 if (e == NULL)
1941 return -ENOMEM;
1942
1943 return 0;
1944}
1945
1946static void __net_exit psched_net_exit(struct net *net)
1947{
ece31ffd 1948 remove_proc_entry("psched", net->proc_net);
7316ae88
TG
1949}
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}
1da177e4
LT
1959#endif
1960
7316ae88
TG
1961static struct pernet_operations psched_net_ops = {
1962 .init = psched_net_init,
1963 .exit = psched_net_exit,
1964};
1965
1da177e4
LT
1966static int __init pktsched_init(void)
1967{
7316ae88
TG
1968 int err;
1969
1970 err = register_pernet_subsys(&psched_net_ops);
1971 if (err) {
cc7ec456 1972 pr_err("pktsched_init: "
7316ae88
TG
1973 "cannot initialize per netns operations\n");
1974 return err;
1975 }
1976
6da7c8fc 1977 register_qdisc(&pfifo_fast_ops);
1da177e4
LT
1978 register_qdisc(&pfifo_qdisc_ops);
1979 register_qdisc(&bfifo_qdisc_ops);
57dbb2d8 1980 register_qdisc(&pfifo_head_drop_qdisc_ops);
6ec1c69a 1981 register_qdisc(&mq_qdisc_ops);
d66d6c31 1982 register_qdisc(&noqueue_qdisc_ops);
1da177e4 1983
c7ac8679
GR
1984 rtnl_register(PF_UNSPEC, RTM_NEWQDISC, tc_modify_qdisc, NULL, NULL);
1985 rtnl_register(PF_UNSPEC, RTM_DELQDISC, tc_get_qdisc, NULL, NULL);
5a7a5555
JHS
1986 rtnl_register(PF_UNSPEC, RTM_GETQDISC, tc_get_qdisc, tc_dump_qdisc,
1987 NULL);
c7ac8679
GR
1988 rtnl_register(PF_UNSPEC, RTM_NEWTCLASS, tc_ctl_tclass, NULL, NULL);
1989 rtnl_register(PF_UNSPEC, RTM_DELTCLASS, tc_ctl_tclass, NULL, NULL);
5a7a5555
JHS
1990 rtnl_register(PF_UNSPEC, RTM_GETTCLASS, tc_ctl_tclass, tc_dump_tclass,
1991 NULL);
be577ddc 1992
1da177e4
LT
1993 return 0;
1994}
1995
1996subsys_initcall(pktsched_init);