blob: 6d6fe16289f3fd8e3102e73cdd186b5fc362f588 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020032#include <net/net_namespace.h>
Denis V. Lunevb8542722007-12-01 00:21:31 +110033#include <net/sock.h>
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -070034#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <net/pkt_sched.h>
36
Tom Goff7316ae82010-03-19 15:40:13 +000037static int qdisc_notify(struct net *net, struct sk_buff *oskb,
38 struct nlmsghdr *n, u32 clid,
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 struct Qdisc *old, struct Qdisc *new);
Tom Goff7316ae82010-03-19 15:40:13 +000040static int tclass_notify(struct net *net, struct sk_buff *oskb,
41 struct nlmsghdr *n, struct Qdisc *q,
42 unsigned long cl, int event);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44/*
45
46 Short review.
47 -------------
48
49 This file consists of two interrelated parts:
50
51 1. queueing disciplines manager frontend.
52 2. traffic classes manager frontend.
53
54 Generally, queueing discipline ("qdisc") is a black box,
55 which is able to enqueue packets and to dequeue them (when
56 device is ready to send something) in order and at times
57 determined by algorithm hidden in it.
58
59 qdisc's are divided to two categories:
60 - "queues", which have no internal structure visible from outside.
61 - "schedulers", which split all the packets to "traffic classes",
62 using "packet classifiers" (look at cls_api.c)
63
64 In turn, classes may have child qdiscs (as rule, queues)
65 attached to them etc. etc. etc.
66
67 The goal of the routines in this file is to translate
68 information supplied by user in the form of handles
69 to more intelligible for kernel form, to make some sanity
70 checks and part of work, which is common to all qdiscs
71 and to provide rtnetlink notifications.
72
73 All real intelligent work is done inside qdisc modules.
74
75
76
77 Every discipline has two major routines: enqueue and dequeue.
78
79 ---dequeue
80
81 dequeue usually returns a skb to send. It is allowed to return NULL,
82 but it does not mean that queue is empty, it just means that
83 discipline does not want to send anything this time.
84 Queue is really empty if q->q.qlen == 0.
85 For complicated disciplines with multiple queues q->q is not
86 real packet queue, but however q->q.qlen must be valid.
87
88 ---enqueue
89
90 enqueue returns 0, if packet was enqueued successfully.
91 If packet (this one or another one) was dropped, it returns
92 not zero error code.
93 NET_XMIT_DROP - this packet dropped
94 Expected action: do not backoff, but wait until queue will clear.
95 NET_XMIT_CN - probably this packet enqueued, but another one dropped.
96 Expected action: backoff or ignore
97 NET_XMIT_POLICED - dropped by police.
98 Expected action: backoff or error to real-time apps.
99
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
137/* Register/uregister queueing discipline */
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;
Jarek Poplawski99c0db22008-10-31 00:45:27 -0700151 if (qops->peek == NULL) {
152 if (qops->dequeue == NULL) {
153 qops->peek = noop_qdisc_ops.peek;
154 } else {
155 rc = -EINVAL;
156 goto out;
157 }
158 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 if (qops->dequeue == NULL)
160 qops->dequeue = noop_qdisc_ops.dequeue;
161
162 qops->next = NULL;
163 *qp = qops;
164 rc = 0;
165out:
166 write_unlock(&qdisc_mod_lock);
167 return rc;
168}
Patrick McHardy62e3ba12008-01-22 22:10:23 -0800169EXPORT_SYMBOL(register_qdisc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
171int unregister_qdisc(struct Qdisc_ops *qops)
172{
173 struct Qdisc_ops *q, **qp;
174 int err = -ENOENT;
175
176 write_lock(&qdisc_mod_lock);
177 for (qp = &qdisc_base; (q=*qp)!=NULL; qp = &q->next)
178 if (q == qops)
179 break;
180 if (q) {
181 *qp = q->next;
182 q->next = NULL;
183 err = 0;
184 }
185 write_unlock(&qdisc_mod_lock);
186 return err;
187}
Patrick McHardy62e3ba12008-01-22 22:10:23 -0800188EXPORT_SYMBOL(unregister_qdisc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
190/* We know handle. Find qdisc among all qdisc's attached to device
191 (root qdisc, all its children, children of children etc.)
192 */
193
Hannes Eder6113b742008-11-28 03:06:46 -0800194static struct Qdisc *qdisc_match_from_root(struct Qdisc *root, u32 handle)
David S. Miller8123b422008-08-08 23:23:39 -0700195{
196 struct Qdisc *q;
197
198 if (!(root->flags & TCQ_F_BUILTIN) &&
199 root->handle == handle)
200 return root;
201
202 list_for_each_entry(q, &root->list, list) {
203 if (q->handle == handle)
204 return q;
205 }
206 return NULL;
207}
208
Jarek Poplawskif6e0b232008-08-22 03:24:05 -0700209static void qdisc_list_add(struct Qdisc *q)
210{
Jarek Poplawskif6486d42008-11-25 13:56:06 -0800211 if ((q->parent != TC_H_ROOT) && !(q->flags & TCQ_F_INGRESS))
Patrick McHardyaf356af2009-09-04 06:41:18 +0000212 list_add_tail(&q->list, &qdisc_dev(q)->qdisc->list);
Jarek Poplawskif6e0b232008-08-22 03:24:05 -0700213}
214
215void qdisc_list_del(struct Qdisc *q)
216{
Jarek Poplawskif6486d42008-11-25 13:56:06 -0800217 if ((q->parent != TC_H_ROOT) && !(q->flags & TCQ_F_INGRESS))
Jarek Poplawskif6e0b232008-08-22 03:24:05 -0700218 list_del(&q->list);
Jarek Poplawskif6e0b232008-08-22 03:24:05 -0700219}
220EXPORT_SYMBOL(qdisc_list_del);
221
David S. Milleread81cc2008-07-17 00:50:32 -0700222struct Qdisc *qdisc_lookup(struct net_device *dev, u32 handle)
Patrick McHardy43effa12006-11-29 17:35:48 -0800223{
Jarek Poplawskif6e0b232008-08-22 03:24:05 -0700224 struct Qdisc *q;
225
Patrick McHardyaf356af2009-09-04 06:41:18 +0000226 q = qdisc_match_from_root(dev->qdisc, handle);
227 if (q)
228 goto out;
Jarek Poplawskif6e0b232008-08-22 03:24:05 -0700229
230 q = qdisc_match_from_root(dev->rx_queue.qdisc_sleeping, handle);
Jarek Poplawskif6486d42008-11-25 13:56:06 -0800231out:
Jarek Poplawskif6e0b232008-08-22 03:24:05 -0700232 return q;
Patrick McHardy43effa12006-11-29 17:35:48 -0800233}
234
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235static struct Qdisc *qdisc_leaf(struct Qdisc *p, u32 classid)
236{
237 unsigned long cl;
238 struct Qdisc *leaf;
Eric Dumazet20fea082007-11-14 01:44:41 -0800239 const struct Qdisc_class_ops *cops = p->ops->cl_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241 if (cops == NULL)
242 return NULL;
243 cl = cops->get(p, classid);
244
245 if (cl == 0)
246 return NULL;
247 leaf = cops->leaf(p, cl);
248 cops->put(p, cl);
249 return leaf;
250}
251
252/* Find queueing discipline by name */
253
Patrick McHardy1e904742008-01-22 22:11:17 -0800254static struct Qdisc_ops *qdisc_lookup_ops(struct nlattr *kind)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
256 struct Qdisc_ops *q = NULL;
257
258 if (kind) {
259 read_lock(&qdisc_mod_lock);
260 for (q = qdisc_base; q; q = q->next) {
Patrick McHardy1e904742008-01-22 22:11:17 -0800261 if (nla_strcmp(kind, q->id) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 if (!try_module_get(q->owner))
263 q = NULL;
264 break;
265 }
266 }
267 read_unlock(&qdisc_mod_lock);
268 }
269 return q;
270}
271
272static struct qdisc_rate_table *qdisc_rtab_list;
273
Patrick McHardy1e904742008-01-22 22:11:17 -0800274struct qdisc_rate_table *qdisc_get_rtab(struct tc_ratespec *r, struct nlattr *tab)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
276 struct qdisc_rate_table *rtab;
277
278 for (rtab = qdisc_rtab_list; rtab; rtab = rtab->next) {
279 if (memcmp(&rtab->rate, r, sizeof(struct tc_ratespec)) == 0) {
280 rtab->refcnt++;
281 return rtab;
282 }
283 }
284
Patrick McHardy5feb5e12008-01-23 20:35:19 -0800285 if (tab == NULL || r->rate == 0 || r->cell_log == 0 ||
286 nla_len(tab) != TC_RTAB_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 return NULL;
288
289 rtab = kmalloc(sizeof(*rtab), GFP_KERNEL);
290 if (rtab) {
291 rtab->rate = *r;
292 rtab->refcnt = 1;
Patrick McHardy1e904742008-01-22 22:11:17 -0800293 memcpy(rtab->data, nla_data(tab), 1024);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 rtab->next = qdisc_rtab_list;
295 qdisc_rtab_list = rtab;
296 }
297 return rtab;
298}
Patrick McHardy62e3ba12008-01-22 22:10:23 -0800299EXPORT_SYMBOL(qdisc_get_rtab);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
301void qdisc_put_rtab(struct qdisc_rate_table *tab)
302{
303 struct qdisc_rate_table *rtab, **rtabp;
304
305 if (!tab || --tab->refcnt)
306 return;
307
308 for (rtabp = &qdisc_rtab_list; (rtab=*rtabp) != NULL; rtabp = &rtab->next) {
309 if (rtab == tab) {
310 *rtabp = rtab->next;
311 kfree(rtab);
312 return;
313 }
314 }
315}
Patrick McHardy62e3ba12008-01-22 22:10:23 -0800316EXPORT_SYMBOL(qdisc_put_rtab);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700318static LIST_HEAD(qdisc_stab_list);
319static DEFINE_SPINLOCK(qdisc_stab_lock);
320
321static const struct nla_policy stab_policy[TCA_STAB_MAX + 1] = {
322 [TCA_STAB_BASE] = { .len = sizeof(struct tc_sizespec) },
323 [TCA_STAB_DATA] = { .type = NLA_BINARY },
324};
325
326static struct qdisc_size_table *qdisc_get_stab(struct nlattr *opt)
327{
328 struct nlattr *tb[TCA_STAB_MAX + 1];
329 struct qdisc_size_table *stab;
330 struct tc_sizespec *s;
331 unsigned int tsize = 0;
332 u16 *tab = NULL;
333 int err;
334
335 err = nla_parse_nested(tb, TCA_STAB_MAX, opt, stab_policy);
336 if (err < 0)
337 return ERR_PTR(err);
338 if (!tb[TCA_STAB_BASE])
339 return ERR_PTR(-EINVAL);
340
341 s = nla_data(tb[TCA_STAB_BASE]);
342
343 if (s->tsize > 0) {
344 if (!tb[TCA_STAB_DATA])
345 return ERR_PTR(-EINVAL);
346 tab = nla_data(tb[TCA_STAB_DATA]);
347 tsize = nla_len(tb[TCA_STAB_DATA]) / sizeof(u16);
348 }
349
350 if (!s || tsize != s->tsize || (!tab && tsize > 0))
351 return ERR_PTR(-EINVAL);
352
David S. Millerf3b96052008-08-18 22:33:05 -0700353 spin_lock(&qdisc_stab_lock);
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700354
355 list_for_each_entry(stab, &qdisc_stab_list, list) {
356 if (memcmp(&stab->szopts, s, sizeof(*s)))
357 continue;
358 if (tsize > 0 && memcmp(stab->data, tab, tsize * sizeof(u16)))
359 continue;
360 stab->refcnt++;
David S. Millerf3b96052008-08-18 22:33:05 -0700361 spin_unlock(&qdisc_stab_lock);
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700362 return stab;
363 }
364
David S. Millerf3b96052008-08-18 22:33:05 -0700365 spin_unlock(&qdisc_stab_lock);
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700366
367 stab = kmalloc(sizeof(*stab) + tsize * sizeof(u16), GFP_KERNEL);
368 if (!stab)
369 return ERR_PTR(-ENOMEM);
370
371 stab->refcnt = 1;
372 stab->szopts = *s;
373 if (tsize > 0)
374 memcpy(stab->data, tab, tsize * sizeof(u16));
375
David S. Millerf3b96052008-08-18 22:33:05 -0700376 spin_lock(&qdisc_stab_lock);
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700377 list_add_tail(&stab->list, &qdisc_stab_list);
David S. Millerf3b96052008-08-18 22:33:05 -0700378 spin_unlock(&qdisc_stab_lock);
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700379
380 return stab;
381}
382
383void qdisc_put_stab(struct qdisc_size_table *tab)
384{
385 if (!tab)
386 return;
387
David S. Millerf3b96052008-08-18 22:33:05 -0700388 spin_lock(&qdisc_stab_lock);
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700389
390 if (--tab->refcnt == 0) {
391 list_del(&tab->list);
392 kfree(tab);
393 }
394
David S. Millerf3b96052008-08-18 22:33:05 -0700395 spin_unlock(&qdisc_stab_lock);
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700396}
397EXPORT_SYMBOL(qdisc_put_stab);
398
399static int qdisc_dump_stab(struct sk_buff *skb, struct qdisc_size_table *stab)
400{
401 struct nlattr *nest;
402
403 nest = nla_nest_start(skb, TCA_STAB);
Patrick McHardy3aa46142008-11-20 04:07:14 -0800404 if (nest == NULL)
405 goto nla_put_failure;
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700406 NLA_PUT(skb, TCA_STAB_BASE, sizeof(stab->szopts), &stab->szopts);
407 nla_nest_end(skb, nest);
408
409 return skb->len;
410
411nla_put_failure:
412 return -1;
413}
414
415void qdisc_calculate_pkt_len(struct sk_buff *skb, struct qdisc_size_table *stab)
416{
417 int pkt_len, slot;
418
419 pkt_len = skb->len + stab->szopts.overhead;
420 if (unlikely(!stab->szopts.tsize))
421 goto out;
422
423 slot = pkt_len + stab->szopts.cell_align;
424 if (unlikely(slot < 0))
425 slot = 0;
426
427 slot >>= stab->szopts.cell_log;
428 if (likely(slot < stab->szopts.tsize))
429 pkt_len = stab->data[slot];
430 else
431 pkt_len = stab->data[stab->szopts.tsize - 1] *
432 (slot / stab->szopts.tsize) +
433 stab->data[slot % stab->szopts.tsize];
434
435 pkt_len <<= stab->szopts.size_log;
436out:
437 if (unlikely(pkt_len < 1))
438 pkt_len = 1;
439 qdisc_skb_cb(skb)->pkt_len = pkt_len;
440}
441EXPORT_SYMBOL(qdisc_calculate_pkt_len);
442
Jarek Poplawskib00355d2009-02-01 01:12:42 -0800443void qdisc_warn_nonwc(char *txt, struct Qdisc *qdisc)
444{
445 if (!(qdisc->flags & TCQ_F_WARN_NONWC)) {
446 printk(KERN_WARNING
447 "%s: %s qdisc %X: is non-work-conserving?\n",
448 txt, qdisc->ops->id, qdisc->handle >> 16);
449 qdisc->flags |= TCQ_F_WARN_NONWC;
450 }
451}
452EXPORT_SYMBOL(qdisc_warn_nonwc);
453
Patrick McHardy41794772007-03-16 01:19:15 -0700454static enum hrtimer_restart qdisc_watchdog(struct hrtimer *timer)
455{
456 struct qdisc_watchdog *wd = container_of(timer, struct qdisc_watchdog,
David S. Miller2fbd3da2009-09-01 17:59:25 -0700457 timer);
Patrick McHardy41794772007-03-16 01:19:15 -0700458
459 wd->qdisc->flags &= ~TCQ_F_THROTTLED;
David S. Miller8608db02008-08-18 20:51:18 -0700460 __netif_schedule(qdisc_root(wd->qdisc));
Stephen Hemminger19365022007-03-22 12:18:35 -0700461
Patrick McHardy41794772007-03-16 01:19:15 -0700462 return HRTIMER_NORESTART;
463}
464
465void qdisc_watchdog_init(struct qdisc_watchdog *wd, struct Qdisc *qdisc)
466{
David S. Miller2fbd3da2009-09-01 17:59:25 -0700467 hrtimer_init(&wd->timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
468 wd->timer.function = qdisc_watchdog;
Patrick McHardy41794772007-03-16 01:19:15 -0700469 wd->qdisc = qdisc;
470}
471EXPORT_SYMBOL(qdisc_watchdog_init);
472
473void qdisc_watchdog_schedule(struct qdisc_watchdog *wd, psched_time_t expires)
474{
475 ktime_t time;
476
Jarek Poplawski2540e052008-08-21 05:11:14 -0700477 if (test_bit(__QDISC_STATE_DEACTIVATED,
478 &qdisc_root_sleeping(wd->qdisc)->state))
479 return;
480
Patrick McHardy41794772007-03-16 01:19:15 -0700481 wd->qdisc->flags |= TCQ_F_THROTTLED;
482 time = ktime_set(0, 0);
Jarek Poplawskica44d6e2009-06-15 02:31:47 -0700483 time = ktime_add_ns(time, PSCHED_TICKS2NS(expires));
David S. Miller2fbd3da2009-09-01 17:59:25 -0700484 hrtimer_start(&wd->timer, time, HRTIMER_MODE_ABS);
Patrick McHardy41794772007-03-16 01:19:15 -0700485}
486EXPORT_SYMBOL(qdisc_watchdog_schedule);
487
488void qdisc_watchdog_cancel(struct qdisc_watchdog *wd)
489{
David S. Miller2fbd3da2009-09-01 17:59:25 -0700490 hrtimer_cancel(&wd->timer);
Patrick McHardy41794772007-03-16 01:19:15 -0700491 wd->qdisc->flags &= ~TCQ_F_THROTTLED;
492}
493EXPORT_SYMBOL(qdisc_watchdog_cancel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Adrian Bunka94f7792008-07-22 14:20:11 -0700495static struct hlist_head *qdisc_class_hash_alloc(unsigned int n)
Patrick McHardy6fe1c7a2008-07-05 23:21:31 -0700496{
497 unsigned int size = n * sizeof(struct hlist_head), i;
498 struct hlist_head *h;
499
500 if (size <= PAGE_SIZE)
501 h = kmalloc(size, GFP_KERNEL);
502 else
503 h = (struct hlist_head *)
504 __get_free_pages(GFP_KERNEL, get_order(size));
505
506 if (h != NULL) {
507 for (i = 0; i < n; i++)
508 INIT_HLIST_HEAD(&h[i]);
509 }
510 return h;
511}
512
513static void qdisc_class_hash_free(struct hlist_head *h, unsigned int n)
514{
515 unsigned int size = n * sizeof(struct hlist_head);
516
517 if (size <= PAGE_SIZE)
518 kfree(h);
519 else
520 free_pages((unsigned long)h, get_order(size));
521}
522
523void qdisc_class_hash_grow(struct Qdisc *sch, struct Qdisc_class_hash *clhash)
524{
525 struct Qdisc_class_common *cl;
526 struct hlist_node *n, *next;
527 struct hlist_head *nhash, *ohash;
528 unsigned int nsize, nmask, osize;
529 unsigned int i, h;
530
531 /* Rehash when load factor exceeds 0.75 */
532 if (clhash->hashelems * 4 <= clhash->hashsize * 3)
533 return;
534 nsize = clhash->hashsize * 2;
535 nmask = nsize - 1;
536 nhash = qdisc_class_hash_alloc(nsize);
537 if (nhash == NULL)
538 return;
539
540 ohash = clhash->hash;
541 osize = clhash->hashsize;
542
543 sch_tree_lock(sch);
544 for (i = 0; i < osize; i++) {
545 hlist_for_each_entry_safe(cl, n, next, &ohash[i], hnode) {
546 h = qdisc_class_hash(cl->classid, nmask);
547 hlist_add_head(&cl->hnode, &nhash[h]);
548 }
549 }
550 clhash->hash = nhash;
551 clhash->hashsize = nsize;
552 clhash->hashmask = nmask;
553 sch_tree_unlock(sch);
554
555 qdisc_class_hash_free(ohash, osize);
556}
557EXPORT_SYMBOL(qdisc_class_hash_grow);
558
559int qdisc_class_hash_init(struct Qdisc_class_hash *clhash)
560{
561 unsigned int size = 4;
562
563 clhash->hash = qdisc_class_hash_alloc(size);
564 if (clhash->hash == NULL)
565 return -ENOMEM;
566 clhash->hashsize = size;
567 clhash->hashmask = size - 1;
568 clhash->hashelems = 0;
569 return 0;
570}
571EXPORT_SYMBOL(qdisc_class_hash_init);
572
573void qdisc_class_hash_destroy(struct Qdisc_class_hash *clhash)
574{
575 qdisc_class_hash_free(clhash->hash, clhash->hashsize);
576}
577EXPORT_SYMBOL(qdisc_class_hash_destroy);
578
579void qdisc_class_hash_insert(struct Qdisc_class_hash *clhash,
580 struct Qdisc_class_common *cl)
581{
582 unsigned int h;
583
584 INIT_HLIST_NODE(&cl->hnode);
585 h = qdisc_class_hash(cl->classid, clhash->hashmask);
586 hlist_add_head(&cl->hnode, &clhash->hash[h]);
587 clhash->hashelems++;
588}
589EXPORT_SYMBOL(qdisc_class_hash_insert);
590
591void qdisc_class_hash_remove(struct Qdisc_class_hash *clhash,
592 struct Qdisc_class_common *cl)
593{
594 hlist_del(&cl->hnode);
595 clhash->hashelems--;
596}
597EXPORT_SYMBOL(qdisc_class_hash_remove);
598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599/* Allocate an unique handle from space managed by kernel */
600
601static u32 qdisc_alloc_handle(struct net_device *dev)
602{
603 int i = 0x10000;
604 static u32 autohandle = TC_H_MAKE(0x80000000U, 0);
605
606 do {
607 autohandle += TC_H_MAKE(0x10000U, 0);
608 if (autohandle == TC_H_MAKE(TC_H_ROOT, 0))
609 autohandle = TC_H_MAKE(0x80000000U, 0);
610 } while (qdisc_lookup(dev, autohandle) && --i > 0);
611
612 return i>0 ? autohandle : 0;
613}
614
Patrick McHardy43effa12006-11-29 17:35:48 -0800615void qdisc_tree_decrease_qlen(struct Qdisc *sch, unsigned int n)
616{
Eric Dumazet20fea082007-11-14 01:44:41 -0800617 const struct Qdisc_class_ops *cops;
Patrick McHardy43effa12006-11-29 17:35:48 -0800618 unsigned long cl;
619 u32 parentid;
620
621 if (n == 0)
622 return;
623 while ((parentid = sch->parent)) {
Jarek Poplawski066a3b52008-04-14 15:10:42 -0700624 if (TC_H_MAJ(parentid) == TC_H_MAJ(TC_H_INGRESS))
625 return;
626
David S. Miller5ce2d482008-07-08 17:06:30 -0700627 sch = qdisc_lookup(qdisc_dev(sch), TC_H_MAJ(parentid));
Patrick McHardyffc8fef2007-07-30 17:11:50 -0700628 if (sch == NULL) {
629 WARN_ON(parentid != TC_H_ROOT);
630 return;
631 }
Patrick McHardy43effa12006-11-29 17:35:48 -0800632 cops = sch->ops->cl_ops;
633 if (cops->qlen_notify) {
634 cl = cops->get(sch, parentid);
635 cops->qlen_notify(sch, cl);
636 cops->put(sch, cl);
637 }
638 sch->q.qlen -= n;
639 }
640}
641EXPORT_SYMBOL(qdisc_tree_decrease_qlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Tom Goff7316ae82010-03-19 15:40:13 +0000643static void notify_and_destroy(struct net *net, struct sk_buff *skb,
644 struct nlmsghdr *n, u32 clid,
David S. Miller99194cf2008-07-17 04:54:10 -0700645 struct Qdisc *old, struct Qdisc *new)
646{
647 if (new || old)
Tom Goff7316ae82010-03-19 15:40:13 +0000648 qdisc_notify(net, skb, n, clid, old, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
David S. Miller4d8863a2008-08-18 21:03:15 -0700650 if (old)
David S. Miller99194cf2008-07-17 04:54:10 -0700651 qdisc_destroy(old);
David S. Miller99194cf2008-07-17 04:54:10 -0700652}
653
654/* Graft qdisc "new" to class "classid" of qdisc "parent" or
655 * to device "dev".
656 *
657 * When appropriate send a netlink notification using 'skb'
658 * and "n".
659 *
660 * On success, destroy old qdisc.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 */
662
663static int qdisc_graft(struct net_device *dev, struct Qdisc *parent,
David S. Miller99194cf2008-07-17 04:54:10 -0700664 struct sk_buff *skb, struct nlmsghdr *n, u32 classid,
665 struct Qdisc *new, struct Qdisc *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666{
David S. Miller99194cf2008-07-17 04:54:10 -0700667 struct Qdisc *q = old;
Tom Goff7316ae82010-03-19 15:40:13 +0000668 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900671 if (parent == NULL) {
David S. Miller99194cf2008-07-17 04:54:10 -0700672 unsigned int i, num_q, ingress;
673
674 ingress = 0;
675 num_q = dev->num_tx_queues;
David S. Miller8d50b532008-07-30 02:37:46 -0700676 if ((q && q->flags & TCQ_F_INGRESS) ||
677 (new && new->flags & TCQ_F_INGRESS)) {
David S. Miller99194cf2008-07-17 04:54:10 -0700678 num_q = 1;
679 ingress = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 }
David S. Miller99194cf2008-07-17 04:54:10 -0700681
682 if (dev->flags & IFF_UP)
683 dev_deactivate(dev);
684
David S. Miller6ec1c692009-09-06 01:58:51 -0700685 if (new && new->ops->attach) {
686 new->ops->attach(new);
687 num_q = 0;
688 }
689
David S. Miller99194cf2008-07-17 04:54:10 -0700690 for (i = 0; i < num_q; i++) {
691 struct netdev_queue *dev_queue = &dev->rx_queue;
692
693 if (!ingress)
694 dev_queue = netdev_get_tx_queue(dev, i);
695
David S. Miller8d50b532008-07-30 02:37:46 -0700696 old = dev_graft_qdisc(dev_queue, new);
697 if (new && i > 0)
698 atomic_inc(&new->refcnt);
699
Jarek Poplawski036d6a62009-09-13 22:35:44 +0000700 if (!ingress)
701 qdisc_destroy(old);
David S. Miller99194cf2008-07-17 04:54:10 -0700702 }
703
Jarek Poplawski036d6a62009-09-13 22:35:44 +0000704 if (!ingress) {
Tom Goff7316ae82010-03-19 15:40:13 +0000705 notify_and_destroy(net, skb, n, classid,
706 dev->qdisc, new);
Jarek Poplawski036d6a62009-09-13 22:35:44 +0000707 if (new && !new->ops->attach)
708 atomic_inc(&new->refcnt);
709 dev->qdisc = new ? : &noop_qdisc;
710 } else {
Tom Goff7316ae82010-03-19 15:40:13 +0000711 notify_and_destroy(net, skb, n, classid, old, new);
Jarek Poplawski036d6a62009-09-13 22:35:44 +0000712 }
Patrick McHardyaf356af2009-09-04 06:41:18 +0000713
David S. Miller99194cf2008-07-17 04:54:10 -0700714 if (dev->flags & IFF_UP)
715 dev_activate(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 } else {
Eric Dumazet20fea082007-11-14 01:44:41 -0800717 const struct Qdisc_class_ops *cops = parent->ops->cl_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
Patrick McHardyc9f1d032009-09-04 06:41:13 +0000719 err = -EOPNOTSUPP;
720 if (cops && cops->graft) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 unsigned long cl = cops->get(parent, classid);
722 if (cl) {
David S. Miller99194cf2008-07-17 04:54:10 -0700723 err = cops->graft(parent, cl, new, &old);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 cops->put(parent, cl);
Patrick McHardyc9f1d032009-09-04 06:41:13 +0000725 } else
726 err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 }
David S. Miller99194cf2008-07-17 04:54:10 -0700728 if (!err)
Tom Goff7316ae82010-03-19 15:40:13 +0000729 notify_and_destroy(net, skb, n, classid, old, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 }
731 return err;
732}
733
Jarek Poplawski25bfcd52008-08-18 20:53:34 -0700734/* lockdep annotation is needed for ingress; egress gets it only for name */
735static struct lock_class_key qdisc_tx_lock;
736static struct lock_class_key qdisc_rx_lock;
737
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738/*
739 Allocate and initialize new qdisc.
740
741 Parameters are passed via opt.
742 */
743
744static struct Qdisc *
David S. Millerbb949fb2008-07-08 16:55:56 -0700745qdisc_create(struct net_device *dev, struct netdev_queue *dev_queue,
Patrick McHardy23bcf632009-09-09 18:11:23 -0700746 struct Qdisc *p, u32 parent, u32 handle,
747 struct nlattr **tca, int *errp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748{
749 int err;
Patrick McHardy1e904742008-01-22 22:11:17 -0800750 struct nlattr *kind = tca[TCA_KIND];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 struct Qdisc *sch;
752 struct Qdisc_ops *ops;
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700753 struct qdisc_size_table *stab;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
755 ops = qdisc_lookup_ops(kind);
Johannes Berg95a5afc2008-10-16 15:24:51 -0700756#ifdef CONFIG_MODULES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 if (ops == NULL && kind != NULL) {
758 char name[IFNAMSIZ];
Patrick McHardy1e904742008-01-22 22:11:17 -0800759 if (nla_strlcpy(name, kind, IFNAMSIZ) < IFNAMSIZ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 /* We dropped the RTNL semaphore in order to
761 * perform the module load. So, even if we
762 * succeeded in loading the module we have to
763 * tell the caller to replay the request. We
764 * indicate this using -EAGAIN.
765 * We replay the request because the device may
766 * go away in the mean time.
767 */
768 rtnl_unlock();
769 request_module("sch_%s", name);
770 rtnl_lock();
771 ops = qdisc_lookup_ops(kind);
772 if (ops != NULL) {
773 /* We will try again qdisc_lookup_ops,
774 * so don't keep a reference.
775 */
776 module_put(ops->owner);
777 err = -EAGAIN;
778 goto err_out;
779 }
780 }
781 }
782#endif
783
Jamal Hadi Salimb9e2cc02006-08-03 16:36:51 -0700784 err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 if (ops == NULL)
786 goto err_out;
787
David S. Miller5ce2d482008-07-08 17:06:30 -0700788 sch = qdisc_alloc(dev_queue, ops);
Thomas Graf3d54b822005-07-05 14:15:09 -0700789 if (IS_ERR(sch)) {
790 err = PTR_ERR(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 goto err_out2;
Thomas Graf3d54b822005-07-05 14:15:09 -0700792 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
Patrick McHardyffc8fef2007-07-30 17:11:50 -0700794 sch->parent = parent;
795
Thomas Graf3d54b822005-07-05 14:15:09 -0700796 if (handle == TC_H_INGRESS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 sch->flags |= TCQ_F_INGRESS;
Thomas Graf3d54b822005-07-05 14:15:09 -0700798 handle = TC_H_MAKE(TC_H_INGRESS, 0);
Jarek Poplawski25bfcd52008-08-18 20:53:34 -0700799 lockdep_set_class(qdisc_lock(sch), &qdisc_rx_lock);
Patrick McHardyfd44de72007-04-16 17:07:08 -0700800 } else {
Patrick McHardyfd44de72007-04-16 17:07:08 -0700801 if (handle == 0) {
802 handle = qdisc_alloc_handle(dev);
803 err = -ENOMEM;
804 if (handle == 0)
805 goto err_out3;
806 }
Jarek Poplawski25bfcd52008-08-18 20:53:34 -0700807 lockdep_set_class(qdisc_lock(sch), &qdisc_tx_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 }
809
Thomas Graf3d54b822005-07-05 14:15:09 -0700810 sch->handle = handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
Patrick McHardy1e904742008-01-22 22:11:17 -0800812 if (!ops->init || (err = ops->init(sch, tca[TCA_OPTIONS])) == 0) {
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700813 if (tca[TCA_STAB]) {
814 stab = qdisc_get_stab(tca[TCA_STAB]);
815 if (IS_ERR(stab)) {
816 err = PTR_ERR(stab);
Jarek Poplawski7c64b9f2009-09-15 23:42:05 -0700817 goto err_out4;
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700818 }
819 sch->stab = stab;
820 }
Patrick McHardy1e904742008-01-22 22:11:17 -0800821 if (tca[TCA_RATE]) {
Jarek Poplawskif6f9b932008-08-27 02:25:17 -0700822 spinlock_t *root_lock;
823
Patrick McHardy23bcf632009-09-09 18:11:23 -0700824 err = -EOPNOTSUPP;
825 if (sch->flags & TCQ_F_MQROOT)
826 goto err_out4;
827
Jarek Poplawskif6f9b932008-08-27 02:25:17 -0700828 if ((sch->parent != TC_H_ROOT) &&
Patrick McHardy23bcf632009-09-09 18:11:23 -0700829 !(sch->flags & TCQ_F_INGRESS) &&
830 (!p || !(p->flags & TCQ_F_MQROOT)))
Jarek Poplawskif6f9b932008-08-27 02:25:17 -0700831 root_lock = qdisc_root_sleeping_lock(sch);
832 else
833 root_lock = qdisc_lock(sch);
834
Thomas Graf023e09a2005-07-05 14:15:53 -0700835 err = gen_new_estimator(&sch->bstats, &sch->rate_est,
Jarek Poplawskif6f9b932008-08-27 02:25:17 -0700836 root_lock, tca[TCA_RATE]);
Patrick McHardy23bcf632009-09-09 18:11:23 -0700837 if (err)
838 goto err_out4;
Thomas Graf023e09a2005-07-05 14:15:53 -0700839 }
Jarek Poplawskif6e0b232008-08-22 03:24:05 -0700840
841 qdisc_list_add(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 return sch;
844 }
845err_out3:
846 dev_put(dev);
Thomas Graf3d54b822005-07-05 14:15:09 -0700847 kfree((char *) sch - sch->padded);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848err_out2:
849 module_put(ops->owner);
850err_out:
851 *errp = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 return NULL;
Patrick McHardy23bcf632009-09-09 18:11:23 -0700853
854err_out4:
855 /*
856 * Any broken qdiscs that would require a ops->reset() here?
857 * The qdisc was never in action so it shouldn't be necessary.
858 */
Jarek Poplawski7c64b9f2009-09-15 23:42:05 -0700859 qdisc_put_stab(sch->stab);
Patrick McHardy23bcf632009-09-09 18:11:23 -0700860 if (ops->destroy)
861 ops->destroy(sch);
862 goto err_out3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863}
864
Patrick McHardy1e904742008-01-22 22:11:17 -0800865static int qdisc_change(struct Qdisc *sch, struct nlattr **tca)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866{
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700867 struct qdisc_size_table *stab = NULL;
868 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700870 if (tca[TCA_OPTIONS]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 if (sch->ops->change == NULL)
872 return -EINVAL;
Patrick McHardy1e904742008-01-22 22:11:17 -0800873 err = sch->ops->change(sch, tca[TCA_OPTIONS]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 if (err)
875 return err;
876 }
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700877
878 if (tca[TCA_STAB]) {
879 stab = qdisc_get_stab(tca[TCA_STAB]);
880 if (IS_ERR(stab))
881 return PTR_ERR(stab);
882 }
883
884 qdisc_put_stab(sch->stab);
885 sch->stab = stab;
886
Patrick McHardy23bcf632009-09-09 18:11:23 -0700887 if (tca[TCA_RATE]) {
Stephen Hemminger71bcb092008-11-25 21:13:31 -0800888 /* NB: ignores errors from replace_estimator
889 because change can't be undone. */
Patrick McHardy23bcf632009-09-09 18:11:23 -0700890 if (sch->flags & TCQ_F_MQROOT)
891 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 gen_replace_estimator(&sch->bstats, &sch->rate_est,
Stephen Hemminger71bcb092008-11-25 21:13:31 -0800893 qdisc_root_sleeping_lock(sch),
894 tca[TCA_RATE]);
Patrick McHardy23bcf632009-09-09 18:11:23 -0700895 }
896out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 return 0;
898}
899
900struct check_loop_arg
901{
902 struct qdisc_walker w;
903 struct Qdisc *p;
904 int depth;
905};
906
907static int check_loop_fn(struct Qdisc *q, unsigned long cl, struct qdisc_walker *w);
908
909static int check_loop(struct Qdisc *q, struct Qdisc *p, int depth)
910{
911 struct check_loop_arg arg;
912
913 if (q->ops->cl_ops == NULL)
914 return 0;
915
916 arg.w.stop = arg.w.skip = arg.w.count = 0;
917 arg.w.fn = check_loop_fn;
918 arg.depth = depth;
919 arg.p = p;
920 q->ops->cl_ops->walk(q, &arg.w);
921 return arg.w.stop ? -ELOOP : 0;
922}
923
924static int
925check_loop_fn(struct Qdisc *q, unsigned long cl, struct qdisc_walker *w)
926{
927 struct Qdisc *leaf;
Eric Dumazet20fea082007-11-14 01:44:41 -0800928 const struct Qdisc_class_ops *cops = q->ops->cl_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 struct check_loop_arg *arg = (struct check_loop_arg *)w;
930
931 leaf = cops->leaf(q, cl);
932 if (leaf) {
933 if (leaf == arg->p || arg->depth > 7)
934 return -ELOOP;
935 return check_loop(leaf, arg->p, arg->depth + 1);
936 }
937 return 0;
938}
939
940/*
941 * Delete/get qdisc.
942 */
943
944static int tc_get_qdisc(struct sk_buff *skb, struct nlmsghdr *n, void *arg)
945{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900946 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 struct tcmsg *tcm = NLMSG_DATA(n);
Patrick McHardy1e904742008-01-22 22:11:17 -0800948 struct nlattr *tca[TCA_MAX + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 struct net_device *dev;
950 u32 clid = tcm->tcm_parent;
951 struct Qdisc *q = NULL;
952 struct Qdisc *p = NULL;
953 int err;
954
Tom Goff7316ae82010-03-19 15:40:13 +0000955 if ((dev = __dev_get_by_index(net, tcm->tcm_ifindex)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 return -ENODEV;
957
Patrick McHardy1e904742008-01-22 22:11:17 -0800958 err = nlmsg_parse(n, sizeof(*tcm), tca, TCA_MAX, NULL);
959 if (err < 0)
960 return err;
961
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 if (clid) {
963 if (clid != TC_H_ROOT) {
964 if (TC_H_MAJ(clid) != TC_H_MAJ(TC_H_INGRESS)) {
965 if ((p = qdisc_lookup(dev, TC_H_MAJ(clid))) == NULL)
966 return -ENOENT;
967 q = qdisc_leaf(p, clid);
968 } else { /* ingress */
David S. Miller8123b422008-08-08 23:23:39 -0700969 q = dev->rx_queue.qdisc_sleeping;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900970 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 } else {
Patrick McHardyaf356af2009-09-04 06:41:18 +0000972 q = dev->qdisc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 }
974 if (!q)
975 return -ENOENT;
976
977 if (tcm->tcm_handle && q->handle != tcm->tcm_handle)
978 return -EINVAL;
979 } else {
980 if ((q = qdisc_lookup(dev, tcm->tcm_handle)) == NULL)
981 return -ENOENT;
982 }
983
Patrick McHardy1e904742008-01-22 22:11:17 -0800984 if (tca[TCA_KIND] && nla_strcmp(tca[TCA_KIND], q->ops->id))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 return -EINVAL;
986
987 if (n->nlmsg_type == RTM_DELQDISC) {
988 if (!clid)
989 return -EINVAL;
990 if (q->handle == 0)
991 return -ENOENT;
David S. Miller99194cf2008-07-17 04:54:10 -0700992 if ((err = qdisc_graft(dev, p, skb, n, clid, NULL, q)) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 } else {
Tom Goff7316ae82010-03-19 15:40:13 +0000995 qdisc_notify(net, skb, n, clid, NULL, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 }
997 return 0;
998}
999
1000/*
1001 Create/change qdisc.
1002 */
1003
1004static int tc_modify_qdisc(struct sk_buff *skb, struct nlmsghdr *n, void *arg)
1005{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001006 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 struct tcmsg *tcm;
Patrick McHardy1e904742008-01-22 22:11:17 -08001008 struct nlattr *tca[TCA_MAX + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 struct net_device *dev;
1010 u32 clid;
1011 struct Qdisc *q, *p;
1012 int err;
1013
1014replay:
1015 /* Reinit, just in case something touches this. */
1016 tcm = NLMSG_DATA(n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 clid = tcm->tcm_parent;
1018 q = p = NULL;
1019
Tom Goff7316ae82010-03-19 15:40:13 +00001020 if ((dev = __dev_get_by_index(net, tcm->tcm_ifindex)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 return -ENODEV;
1022
Patrick McHardy1e904742008-01-22 22:11:17 -08001023 err = nlmsg_parse(n, sizeof(*tcm), tca, TCA_MAX, NULL);
1024 if (err < 0)
1025 return err;
1026
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 if (clid) {
1028 if (clid != TC_H_ROOT) {
1029 if (clid != TC_H_INGRESS) {
1030 if ((p = qdisc_lookup(dev, TC_H_MAJ(clid))) == NULL)
1031 return -ENOENT;
1032 q = qdisc_leaf(p, clid);
1033 } else { /*ingress */
David S. Miller8123b422008-08-08 23:23:39 -07001034 q = dev->rx_queue.qdisc_sleeping;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 }
1036 } else {
Patrick McHardyaf356af2009-09-04 06:41:18 +00001037 q = dev->qdisc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 }
1039
1040 /* It may be default qdisc, ignore it */
1041 if (q && q->handle == 0)
1042 q = NULL;
1043
1044 if (!q || !tcm->tcm_handle || q->handle != tcm->tcm_handle) {
1045 if (tcm->tcm_handle) {
1046 if (q && !(n->nlmsg_flags&NLM_F_REPLACE))
1047 return -EEXIST;
1048 if (TC_H_MIN(tcm->tcm_handle))
1049 return -EINVAL;
1050 if ((q = qdisc_lookup(dev, tcm->tcm_handle)) == NULL)
1051 goto create_n_graft;
1052 if (n->nlmsg_flags&NLM_F_EXCL)
1053 return -EEXIST;
Patrick McHardy1e904742008-01-22 22:11:17 -08001054 if (tca[TCA_KIND] && nla_strcmp(tca[TCA_KIND], q->ops->id))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 return -EINVAL;
1056 if (q == p ||
1057 (p && check_loop(q, p, 0)))
1058 return -ELOOP;
1059 atomic_inc(&q->refcnt);
1060 goto graft;
1061 } else {
1062 if (q == NULL)
1063 goto create_n_graft;
1064
1065 /* This magic test requires explanation.
1066 *
1067 * We know, that some child q is already
1068 * attached to this parent and have choice:
1069 * either to change it or to create/graft new one.
1070 *
1071 * 1. We are allowed to create/graft only
1072 * if CREATE and REPLACE flags are set.
1073 *
1074 * 2. If EXCL is set, requestor wanted to say,
1075 * that qdisc tcm_handle is not expected
1076 * to exist, so that we choose create/graft too.
1077 *
1078 * 3. The last case is when no flags are set.
1079 * Alas, it is sort of hole in API, we
1080 * cannot decide what to do unambiguously.
1081 * For now we select create/graft, if
1082 * user gave KIND, which does not match existing.
1083 */
1084 if ((n->nlmsg_flags&NLM_F_CREATE) &&
1085 (n->nlmsg_flags&NLM_F_REPLACE) &&
1086 ((n->nlmsg_flags&NLM_F_EXCL) ||
Patrick McHardy1e904742008-01-22 22:11:17 -08001087 (tca[TCA_KIND] &&
1088 nla_strcmp(tca[TCA_KIND], q->ops->id))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 goto create_n_graft;
1090 }
1091 }
1092 } else {
1093 if (!tcm->tcm_handle)
1094 return -EINVAL;
1095 q = qdisc_lookup(dev, tcm->tcm_handle);
1096 }
1097
1098 /* Change qdisc parameters */
1099 if (q == NULL)
1100 return -ENOENT;
1101 if (n->nlmsg_flags&NLM_F_EXCL)
1102 return -EEXIST;
Patrick McHardy1e904742008-01-22 22:11:17 -08001103 if (tca[TCA_KIND] && nla_strcmp(tca[TCA_KIND], q->ops->id))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 return -EINVAL;
1105 err = qdisc_change(q, tca);
1106 if (err == 0)
Tom Goff7316ae82010-03-19 15:40:13 +00001107 qdisc_notify(net, skb, n, clid, NULL, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 return err;
1109
1110create_n_graft:
1111 if (!(n->nlmsg_flags&NLM_F_CREATE))
1112 return -ENOENT;
1113 if (clid == TC_H_INGRESS)
Patrick McHardy23bcf632009-09-09 18:11:23 -07001114 q = qdisc_create(dev, &dev->rx_queue, p,
David S. Millerbb949fb2008-07-08 16:55:56 -07001115 tcm->tcm_parent, tcm->tcm_parent,
Patrick McHardyffc8fef2007-07-30 17:11:50 -07001116 tca, &err);
David S. Miller6ec1c692009-09-06 01:58:51 -07001117 else {
Jarek Poplawski926e61b2009-09-15 02:53:07 -07001118 struct netdev_queue *dev_queue;
David S. Miller6ec1c692009-09-06 01:58:51 -07001119
1120 if (p && p->ops->cl_ops && p->ops->cl_ops->select_queue)
Jarek Poplawski926e61b2009-09-15 02:53:07 -07001121 dev_queue = p->ops->cl_ops->select_queue(p, tcm);
1122 else if (p)
1123 dev_queue = p->dev_queue;
1124 else
1125 dev_queue = netdev_get_tx_queue(dev, 0);
David S. Miller6ec1c692009-09-06 01:58:51 -07001126
Jarek Poplawski926e61b2009-09-15 02:53:07 -07001127 q = qdisc_create(dev, dev_queue, p,
David S. Millerbb949fb2008-07-08 16:55:56 -07001128 tcm->tcm_parent, tcm->tcm_handle,
Patrick McHardyffc8fef2007-07-30 17:11:50 -07001129 tca, &err);
David S. Miller6ec1c692009-09-06 01:58:51 -07001130 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 if (q == NULL) {
1132 if (err == -EAGAIN)
1133 goto replay;
1134 return err;
1135 }
1136
1137graft:
Ilpo Järvinene5befbd2008-08-18 22:30:01 -07001138 err = qdisc_graft(dev, p, skb, n, clid, q, NULL);
1139 if (err) {
1140 if (q)
1141 qdisc_destroy(q);
1142 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 }
Ilpo Järvinene5befbd2008-08-18 22:30:01 -07001144
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 return 0;
1146}
1147
1148static int tc_fill_qdisc(struct sk_buff *skb, struct Qdisc *q, u32 clid,
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -07001149 u32 pid, u32 seq, u16 flags, int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150{
1151 struct tcmsg *tcm;
1152 struct nlmsghdr *nlh;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001153 unsigned char *b = skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 struct gnet_dump d;
1155
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -07001156 nlh = NLMSG_NEW(skb, pid, seq, event, sizeof(*tcm), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 tcm = NLMSG_DATA(nlh);
1158 tcm->tcm_family = AF_UNSPEC;
Patrick McHardy9ef1d4c2005-06-28 12:55:30 -07001159 tcm->tcm__pad1 = 0;
1160 tcm->tcm__pad2 = 0;
David S. Miller5ce2d482008-07-08 17:06:30 -07001161 tcm->tcm_ifindex = qdisc_dev(q)->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 tcm->tcm_parent = clid;
1163 tcm->tcm_handle = q->handle;
1164 tcm->tcm_info = atomic_read(&q->refcnt);
Patrick McHardy57e1c482008-01-23 20:34:28 -08001165 NLA_PUT_STRING(skb, TCA_KIND, q->ops->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 if (q->ops->dump && q->ops->dump(q, skb) < 0)
Patrick McHardy1e904742008-01-22 22:11:17 -08001167 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 q->qstats.qlen = q->q.qlen;
1169
Jussi Kivilinna175f9c12008-07-20 00:08:47 -07001170 if (q->stab && qdisc_dump_stab(skb, q->stab) < 0)
1171 goto nla_put_failure;
1172
Jarek Poplawski102396a2008-08-29 14:21:52 -07001173 if (gnet_stats_start_copy_compat(skb, TCA_STATS2, TCA_STATS, TCA_XSTATS,
1174 qdisc_root_sleeping_lock(q), &d) < 0)
Patrick McHardy1e904742008-01-22 22:11:17 -08001175 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
1177 if (q->ops->dump_stats && q->ops->dump_stats(q, &d) < 0)
Patrick McHardy1e904742008-01-22 22:11:17 -08001178 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179
1180 if (gnet_stats_copy_basic(&d, &q->bstats) < 0 ||
Eric Dumazetd250a5f2009-10-02 10:32:18 +00001181 gnet_stats_copy_rate_est(&d, &q->bstats, &q->rate_est) < 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 gnet_stats_copy_queue(&d, &q->qstats) < 0)
Patrick McHardy1e904742008-01-22 22:11:17 -08001183 goto nla_put_failure;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +09001184
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 if (gnet_stats_finish_copy(&d) < 0)
Patrick McHardy1e904742008-01-22 22:11:17 -08001186 goto nla_put_failure;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +09001187
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001188 nlh->nlmsg_len = skb_tail_pointer(skb) - b;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 return skb->len;
1190
1191nlmsg_failure:
Patrick McHardy1e904742008-01-22 22:11:17 -08001192nla_put_failure:
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -07001193 nlmsg_trim(skb, b);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 return -1;
1195}
1196
Tom Goff7316ae82010-03-19 15:40:13 +00001197static int qdisc_notify(struct net *net, struct sk_buff *oskb,
1198 struct nlmsghdr *n, u32 clid,
1199 struct Qdisc *old, struct Qdisc *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200{
1201 struct sk_buff *skb;
1202 u32 pid = oskb ? NETLINK_CB(oskb).pid : 0;
1203
1204 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
1205 if (!skb)
1206 return -ENOBUFS;
1207
1208 if (old && old->handle) {
1209 if (tc_fill_qdisc(skb, old, clid, pid, n->nlmsg_seq, 0, RTM_DELQDISC) < 0)
1210 goto err_out;
1211 }
1212 if (new) {
1213 if (tc_fill_qdisc(skb, new, clid, pid, n->nlmsg_seq, old ? NLM_F_REPLACE : 0, RTM_NEWQDISC) < 0)
1214 goto err_out;
1215 }
1216
1217 if (skb->len)
Tom Goff7316ae82010-03-19 15:40:13 +00001218 return rtnetlink_send(skb, net, pid, RTNLGRP_TC, n->nlmsg_flags&NLM_F_ECHO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
1220err_out:
1221 kfree_skb(skb);
1222 return -EINVAL;
1223}
1224
David S. Miller30723672008-07-18 22:50:15 -07001225static bool tc_qdisc_dump_ignore(struct Qdisc *q)
1226{
1227 return (q->flags & TCQ_F_BUILTIN) ? true : false;
1228}
1229
1230static int tc_dump_qdisc_root(struct Qdisc *root, struct sk_buff *skb,
1231 struct netlink_callback *cb,
1232 int *q_idx_p, int s_q_idx)
1233{
1234 int ret = 0, q_idx = *q_idx_p;
1235 struct Qdisc *q;
1236
1237 if (!root)
1238 return 0;
1239
1240 q = root;
1241 if (q_idx < s_q_idx) {
1242 q_idx++;
1243 } else {
1244 if (!tc_qdisc_dump_ignore(q) &&
1245 tc_fill_qdisc(skb, q, q->parent, NETLINK_CB(cb->skb).pid,
1246 cb->nlh->nlmsg_seq, NLM_F_MULTI, RTM_NEWQDISC) <= 0)
1247 goto done;
1248 q_idx++;
1249 }
1250 list_for_each_entry(q, &root->list, list) {
1251 if (q_idx < s_q_idx) {
1252 q_idx++;
1253 continue;
1254 }
1255 if (!tc_qdisc_dump_ignore(q) &&
1256 tc_fill_qdisc(skb, q, q->parent, NETLINK_CB(cb->skb).pid,
1257 cb->nlh->nlmsg_seq, NLM_F_MULTI, RTM_NEWQDISC) <= 0)
1258 goto done;
1259 q_idx++;
1260 }
1261
1262out:
1263 *q_idx_p = q_idx;
1264 return ret;
1265done:
1266 ret = -1;
1267 goto out;
1268}
1269
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270static int tc_dump_qdisc(struct sk_buff *skb, struct netlink_callback *cb)
1271{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001272 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 int idx, q_idx;
1274 int s_idx, s_q_idx;
1275 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
1277 s_idx = cb->args[0];
1278 s_q_idx = q_idx = cb->args[1];
stephen hemmingerf1e90162009-11-10 07:54:49 +00001279
1280 rcu_read_lock();
Pavel Emelianov7562f872007-05-03 15:13:45 -07001281 idx = 0;
Tom Goff7316ae82010-03-19 15:40:13 +00001282 for_each_netdev_rcu(net, dev) {
David S. Miller30723672008-07-18 22:50:15 -07001283 struct netdev_queue *dev_queue;
1284
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 if (idx < s_idx)
Pavel Emelianov7562f872007-05-03 15:13:45 -07001286 goto cont;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 if (idx > s_idx)
1288 s_q_idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 q_idx = 0;
David S. Miller30723672008-07-18 22:50:15 -07001290
Patrick McHardyaf356af2009-09-04 06:41:18 +00001291 if (tc_dump_qdisc_root(dev->qdisc, skb, cb, &q_idx, s_q_idx) < 0)
David S. Miller30723672008-07-18 22:50:15 -07001292 goto done;
1293
1294 dev_queue = &dev->rx_queue;
David S. Miller827ebd62008-08-07 20:26:40 -07001295 if (tc_dump_qdisc_root(dev_queue->qdisc_sleeping, skb, cb, &q_idx, s_q_idx) < 0)
David S. Miller30723672008-07-18 22:50:15 -07001296 goto done;
1297
Pavel Emelianov7562f872007-05-03 15:13:45 -07001298cont:
1299 idx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 }
1301
1302done:
stephen hemmingerf1e90162009-11-10 07:54:49 +00001303 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
1305 cb->args[0] = idx;
1306 cb->args[1] = q_idx;
1307
1308 return skb->len;
1309}
1310
1311
1312
1313/************************************************
1314 * Traffic classes manipulation. *
1315 ************************************************/
1316
1317
1318
1319static int tc_ctl_tclass(struct sk_buff *skb, struct nlmsghdr *n, void *arg)
1320{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001321 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 struct tcmsg *tcm = NLMSG_DATA(n);
Patrick McHardy1e904742008-01-22 22:11:17 -08001323 struct nlattr *tca[TCA_MAX + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 struct net_device *dev;
1325 struct Qdisc *q = NULL;
Eric Dumazet20fea082007-11-14 01:44:41 -08001326 const struct Qdisc_class_ops *cops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 unsigned long cl = 0;
1328 unsigned long new_cl;
1329 u32 pid = tcm->tcm_parent;
1330 u32 clid = tcm->tcm_handle;
1331 u32 qid = TC_H_MAJ(clid);
1332 int err;
1333
Tom Goff7316ae82010-03-19 15:40:13 +00001334 if ((dev = __dev_get_by_index(net, tcm->tcm_ifindex)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 return -ENODEV;
1336
Patrick McHardy1e904742008-01-22 22:11:17 -08001337 err = nlmsg_parse(n, sizeof(*tcm), tca, TCA_MAX, NULL);
1338 if (err < 0)
1339 return err;
1340
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 /*
1342 parent == TC_H_UNSPEC - unspecified parent.
1343 parent == TC_H_ROOT - class is root, which has no parent.
1344 parent == X:0 - parent is root class.
1345 parent == X:Y - parent is a node in hierarchy.
1346 parent == 0:Y - parent is X:Y, where X:0 is qdisc.
1347
1348 handle == 0:0 - generate handle from kernel pool.
1349 handle == 0:Y - class is X:Y, where X:0 is qdisc.
1350 handle == X:Y - clear.
1351 handle == X:0 - root class.
1352 */
1353
1354 /* Step 1. Determine qdisc handle X:0 */
1355
1356 if (pid != TC_H_ROOT) {
1357 u32 qid1 = TC_H_MAJ(pid);
1358
1359 if (qid && qid1) {
1360 /* If both majors are known, they must be identical. */
1361 if (qid != qid1)
1362 return -EINVAL;
1363 } else if (qid1) {
1364 qid = qid1;
1365 } else if (qid == 0)
Patrick McHardyaf356af2009-09-04 06:41:18 +00001366 qid = dev->qdisc->handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
1368 /* Now qid is genuine qdisc handle consistent
1369 both with parent and child.
1370
1371 TC_H_MAJ(pid) still may be unspecified, complete it now.
1372 */
1373 if (pid)
1374 pid = TC_H_MAKE(qid, pid);
1375 } else {
1376 if (qid == 0)
Patrick McHardyaf356af2009-09-04 06:41:18 +00001377 qid = dev->qdisc->handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 }
1379
1380 /* OK. Locate qdisc */
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +09001381 if ((q = qdisc_lookup(dev, qid)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 return -ENOENT;
1383
1384 /* An check that it supports classes */
1385 cops = q->ops->cl_ops;
1386 if (cops == NULL)
1387 return -EINVAL;
1388
1389 /* Now try to get class */
1390 if (clid == 0) {
1391 if (pid == TC_H_ROOT)
1392 clid = qid;
1393 } else
1394 clid = TC_H_MAKE(qid, clid);
1395
1396 if (clid)
1397 cl = cops->get(q, clid);
1398
1399 if (cl == 0) {
1400 err = -ENOENT;
1401 if (n->nlmsg_type != RTM_NEWTCLASS || !(n->nlmsg_flags&NLM_F_CREATE))
1402 goto out;
1403 } else {
1404 switch (n->nlmsg_type) {
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +09001405 case RTM_NEWTCLASS:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 err = -EEXIST;
1407 if (n->nlmsg_flags&NLM_F_EXCL)
1408 goto out;
1409 break;
1410 case RTM_DELTCLASS:
Patrick McHardyde6d5cd2009-09-04 06:41:16 +00001411 err = -EOPNOTSUPP;
1412 if (cops->delete)
1413 err = cops->delete(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 if (err == 0)
Tom Goff7316ae82010-03-19 15:40:13 +00001415 tclass_notify(net, skb, n, q, cl, RTM_DELTCLASS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 goto out;
1417 case RTM_GETTCLASS:
Tom Goff7316ae82010-03-19 15:40:13 +00001418 err = tclass_notify(net, skb, n, q, cl, RTM_NEWTCLASS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 goto out;
1420 default:
1421 err = -EINVAL;
1422 goto out;
1423 }
1424 }
1425
1426 new_cl = cl;
Patrick McHardyde6d5cd2009-09-04 06:41:16 +00001427 err = -EOPNOTSUPP;
1428 if (cops->change)
1429 err = cops->change(q, clid, pid, tca, &new_cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 if (err == 0)
Tom Goff7316ae82010-03-19 15:40:13 +00001431 tclass_notify(net, skb, n, q, new_cl, RTM_NEWTCLASS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432
1433out:
1434 if (cl)
1435 cops->put(q, cl);
1436
1437 return err;
1438}
1439
1440
1441static int tc_fill_tclass(struct sk_buff *skb, struct Qdisc *q,
1442 unsigned long cl,
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -07001443 u32 pid, u32 seq, u16 flags, int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444{
1445 struct tcmsg *tcm;
1446 struct nlmsghdr *nlh;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001447 unsigned char *b = skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 struct gnet_dump d;
Eric Dumazet20fea082007-11-14 01:44:41 -08001449 const struct Qdisc_class_ops *cl_ops = q->ops->cl_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -07001451 nlh = NLMSG_NEW(skb, pid, seq, event, sizeof(*tcm), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 tcm = NLMSG_DATA(nlh);
1453 tcm->tcm_family = AF_UNSPEC;
Eric Dumazet16ebb5e2009-09-02 02:40:09 +00001454 tcm->tcm__pad1 = 0;
1455 tcm->tcm__pad2 = 0;
David S. Miller5ce2d482008-07-08 17:06:30 -07001456 tcm->tcm_ifindex = qdisc_dev(q)->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 tcm->tcm_parent = q->handle;
1458 tcm->tcm_handle = q->handle;
1459 tcm->tcm_info = 0;
Patrick McHardy57e1c482008-01-23 20:34:28 -08001460 NLA_PUT_STRING(skb, TCA_KIND, q->ops->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 if (cl_ops->dump && cl_ops->dump(q, cl, skb, tcm) < 0)
Patrick McHardy1e904742008-01-22 22:11:17 -08001462 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463
Jarek Poplawski102396a2008-08-29 14:21:52 -07001464 if (gnet_stats_start_copy_compat(skb, TCA_STATS2, TCA_STATS, TCA_XSTATS,
1465 qdisc_root_sleeping_lock(q), &d) < 0)
Patrick McHardy1e904742008-01-22 22:11:17 -08001466 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467
1468 if (cl_ops->dump_stats && cl_ops->dump_stats(q, cl, &d) < 0)
Patrick McHardy1e904742008-01-22 22:11:17 -08001469 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
1471 if (gnet_stats_finish_copy(&d) < 0)
Patrick McHardy1e904742008-01-22 22:11:17 -08001472 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001474 nlh->nlmsg_len = skb_tail_pointer(skb) - b;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 return skb->len;
1476
1477nlmsg_failure:
Patrick McHardy1e904742008-01-22 22:11:17 -08001478nla_put_failure:
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -07001479 nlmsg_trim(skb, b);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 return -1;
1481}
1482
Tom Goff7316ae82010-03-19 15:40:13 +00001483static int tclass_notify(struct net *net, struct sk_buff *oskb,
1484 struct nlmsghdr *n, struct Qdisc *q,
1485 unsigned long cl, int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486{
1487 struct sk_buff *skb;
1488 u32 pid = oskb ? NETLINK_CB(oskb).pid : 0;
1489
1490 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
1491 if (!skb)
1492 return -ENOBUFS;
1493
1494 if (tc_fill_tclass(skb, q, cl, pid, n->nlmsg_seq, 0, event) < 0) {
1495 kfree_skb(skb);
1496 return -EINVAL;
1497 }
1498
Tom Goff7316ae82010-03-19 15:40:13 +00001499 return rtnetlink_send(skb, net, pid, RTNLGRP_TC, n->nlmsg_flags&NLM_F_ECHO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500}
1501
1502struct qdisc_dump_args
1503{
1504 struct qdisc_walker w;
1505 struct sk_buff *skb;
1506 struct netlink_callback *cb;
1507};
1508
1509static int qdisc_class_dump(struct Qdisc *q, unsigned long cl, struct qdisc_walker *arg)
1510{
1511 struct qdisc_dump_args *a = (struct qdisc_dump_args *)arg;
1512
1513 return tc_fill_tclass(a->skb, q, cl, NETLINK_CB(a->cb->skb).pid,
1514 a->cb->nlh->nlmsg_seq, NLM_F_MULTI, RTM_NEWTCLASS);
1515}
1516
David S. Miller30723672008-07-18 22:50:15 -07001517static int tc_dump_tclass_qdisc(struct Qdisc *q, struct sk_buff *skb,
1518 struct tcmsg *tcm, struct netlink_callback *cb,
1519 int *t_p, int s_t)
1520{
1521 struct qdisc_dump_args arg;
1522
1523 if (tc_qdisc_dump_ignore(q) ||
1524 *t_p < s_t || !q->ops->cl_ops ||
1525 (tcm->tcm_parent &&
1526 TC_H_MAJ(tcm->tcm_parent) != q->handle)) {
1527 (*t_p)++;
1528 return 0;
1529 }
1530 if (*t_p > s_t)
1531 memset(&cb->args[1], 0, sizeof(cb->args)-sizeof(cb->args[0]));
1532 arg.w.fn = qdisc_class_dump;
1533 arg.skb = skb;
1534 arg.cb = cb;
1535 arg.w.stop = 0;
1536 arg.w.skip = cb->args[1];
1537 arg.w.count = 0;
1538 q->ops->cl_ops->walk(q, &arg.w);
1539 cb->args[1] = arg.w.count;
1540 if (arg.w.stop)
1541 return -1;
1542 (*t_p)++;
1543 return 0;
1544}
1545
1546static int tc_dump_tclass_root(struct Qdisc *root, struct sk_buff *skb,
1547 struct tcmsg *tcm, struct netlink_callback *cb,
1548 int *t_p, int s_t)
1549{
1550 struct Qdisc *q;
1551
1552 if (!root)
1553 return 0;
1554
1555 if (tc_dump_tclass_qdisc(root, skb, tcm, cb, t_p, s_t) < 0)
1556 return -1;
1557
1558 list_for_each_entry(q, &root->list, list) {
1559 if (tc_dump_tclass_qdisc(q, skb, tcm, cb, t_p, s_t) < 0)
1560 return -1;
1561 }
1562
1563 return 0;
1564}
1565
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566static int tc_dump_tclass(struct sk_buff *skb, struct netlink_callback *cb)
1567{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 struct tcmsg *tcm = (struct tcmsg*)NLMSG_DATA(cb->nlh);
David S. Miller30723672008-07-18 22:50:15 -07001569 struct net *net = sock_net(skb->sk);
1570 struct netdev_queue *dev_queue;
1571 struct net_device *dev;
1572 int t, s_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573
1574 if (cb->nlh->nlmsg_len < NLMSG_LENGTH(sizeof(*tcm)))
1575 return 0;
Tom Goff7316ae82010-03-19 15:40:13 +00001576 if ((dev = dev_get_by_index(net, tcm->tcm_ifindex)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 return 0;
1578
1579 s_t = cb->args[0];
1580 t = 0;
1581
Patrick McHardyaf356af2009-09-04 06:41:18 +00001582 if (tc_dump_tclass_root(dev->qdisc, skb, tcm, cb, &t, s_t) < 0)
David S. Miller30723672008-07-18 22:50:15 -07001583 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584
David S. Miller30723672008-07-18 22:50:15 -07001585 dev_queue = &dev->rx_queue;
David S. Miller8123b422008-08-08 23:23:39 -07001586 if (tc_dump_tclass_root(dev_queue->qdisc_sleeping, skb, tcm, cb, &t, s_t) < 0)
David S. Miller30723672008-07-18 22:50:15 -07001587 goto done;
1588
1589done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 cb->args[0] = t;
1591
1592 dev_put(dev);
1593 return skb->len;
1594}
1595
1596/* Main classifier routine: scans classifier chain attached
1597 to this qdisc, (optionally) tests for protocol and asks
1598 specific classifiers.
1599 */
Patrick McHardy73ca4912007-07-15 00:02:31 -07001600int tc_classify_compat(struct sk_buff *skb, struct tcf_proto *tp,
1601 struct tcf_result *res)
1602{
1603 __be16 protocol = skb->protocol;
1604 int err = 0;
1605
1606 for (; tp; tp = tp->next) {
1607 if ((tp->protocol == protocol ||
1608 tp->protocol == htons(ETH_P_ALL)) &&
1609 (err = tp->classify(skb, tp, res)) >= 0) {
1610#ifdef CONFIG_NET_CLS_ACT
1611 if (err != TC_ACT_RECLASSIFY && skb->tc_verd)
1612 skb->tc_verd = SET_TC_VERD(skb->tc_verd, 0);
1613#endif
1614 return err;
1615 }
1616 }
1617 return -1;
1618}
1619EXPORT_SYMBOL(tc_classify_compat);
1620
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621int tc_classify(struct sk_buff *skb, struct tcf_proto *tp,
Patrick McHardy73ca4912007-07-15 00:02:31 -07001622 struct tcf_result *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623{
1624 int err = 0;
Patrick McHardy73ca4912007-07-15 00:02:31 -07001625 __be16 protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626#ifdef CONFIG_NET_CLS_ACT
1627 struct tcf_proto *otp = tp;
1628reclassify:
1629#endif
1630 protocol = skb->protocol;
1631
Patrick McHardy73ca4912007-07-15 00:02:31 -07001632 err = tc_classify_compat(skb, tp, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633#ifdef CONFIG_NET_CLS_ACT
Patrick McHardy73ca4912007-07-15 00:02:31 -07001634 if (err == TC_ACT_RECLASSIFY) {
1635 u32 verd = G_TC_VERD(skb->tc_verd);
1636 tp = otp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637
Patrick McHardy73ca4912007-07-15 00:02:31 -07001638 if (verd++ >= MAX_REC_LOOP) {
1639 printk("rule prio %u protocol %02x reclassify loop, "
1640 "packet dropped\n",
1641 tp->prio&0xffff, ntohs(tp->protocol));
1642 return TC_ACT_SHOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 }
Patrick McHardy73ca4912007-07-15 00:02:31 -07001644 skb->tc_verd = SET_TC_VERD(skb->tc_verd, verd);
1645 goto reclassify;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 }
Patrick McHardy73ca4912007-07-15 00:02:31 -07001647#endif
1648 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649}
Patrick McHardy73ca4912007-07-15 00:02:31 -07001650EXPORT_SYMBOL(tc_classify);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651
Patrick McHardya48b5a62007-03-23 11:29:43 -07001652void tcf_destroy(struct tcf_proto *tp)
1653{
1654 tp->ops->destroy(tp);
1655 module_put(tp->ops->owner);
1656 kfree(tp);
1657}
1658
Patrick McHardyff31ab52008-07-01 19:52:38 -07001659void tcf_destroy_chain(struct tcf_proto **fl)
Patrick McHardya48b5a62007-03-23 11:29:43 -07001660{
1661 struct tcf_proto *tp;
1662
Patrick McHardyff31ab52008-07-01 19:52:38 -07001663 while ((tp = *fl) != NULL) {
1664 *fl = tp->next;
Patrick McHardya48b5a62007-03-23 11:29:43 -07001665 tcf_destroy(tp);
1666 }
1667}
1668EXPORT_SYMBOL(tcf_destroy_chain);
1669
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670#ifdef CONFIG_PROC_FS
1671static int psched_show(struct seq_file *seq, void *v)
1672{
Patrick McHardy3c0cfc12007-10-10 16:32:41 -07001673 struct timespec ts;
1674
1675 hrtimer_get_res(CLOCK_MONOTONIC, &ts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 seq_printf(seq, "%08x %08x %08x %08x\n",
Jarek Poplawskica44d6e2009-06-15 02:31:47 -07001677 (u32)NSEC_PER_USEC, (u32)PSCHED_TICKS2NS(1),
Patrick McHardy514bca32007-03-16 12:34:52 -07001678 1000000,
Patrick McHardy3c0cfc12007-10-10 16:32:41 -07001679 (u32)NSEC_PER_SEC/(u32)ktime_to_ns(timespec_to_ktime(ts)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680
1681 return 0;
1682}
1683
1684static int psched_open(struct inode *inode, struct file *file)
1685{
1686 return single_open(file, psched_show, PDE(inode)->data);
1687}
1688
Arjan van de Venda7071d2007-02-12 00:55:36 -08001689static const struct file_operations psched_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 .owner = THIS_MODULE,
1691 .open = psched_open,
1692 .read = seq_read,
1693 .llseek = seq_lseek,
1694 .release = single_release,
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +09001695};
Tom Goff7316ae82010-03-19 15:40:13 +00001696
1697static int __net_init psched_net_init(struct net *net)
1698{
1699 struct proc_dir_entry *e;
1700
1701 e = proc_net_fops_create(net, "psched", 0, &psched_fops);
1702 if (e == NULL)
1703 return -ENOMEM;
1704
1705 return 0;
1706}
1707
1708static void __net_exit psched_net_exit(struct net *net)
1709{
1710 proc_net_remove(net, "psched");
1711
1712 return;
1713}
1714#else
1715static int __net_init psched_net_init(struct net *net)
1716{
1717 return 0;
1718}
1719
1720static void __net_exit psched_net_exit(struct net *net)
1721{
1722}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723#endif
1724
Tom Goff7316ae82010-03-19 15:40:13 +00001725static struct pernet_operations psched_net_ops = {
1726 .init = psched_net_init,
1727 .exit = psched_net_exit,
1728};
1729
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730static int __init pktsched_init(void)
1731{
Tom Goff7316ae82010-03-19 15:40:13 +00001732 int err;
1733
1734 err = register_pernet_subsys(&psched_net_ops);
1735 if (err) {
1736 printk(KERN_ERR "pktsched_init: "
1737 "cannot initialize per netns operations\n");
1738 return err;
1739 }
1740
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 register_qdisc(&pfifo_qdisc_ops);
1742 register_qdisc(&bfifo_qdisc_ops);
Hagen Paul Pfeifer57dbb2d2010-01-24 12:30:59 +00001743 register_qdisc(&pfifo_head_drop_qdisc_ops);
David S. Miller6ec1c692009-09-06 01:58:51 -07001744 register_qdisc(&mq_qdisc_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745
Thomas Grafbe577dd2007-03-22 11:55:50 -07001746 rtnl_register(PF_UNSPEC, RTM_NEWQDISC, tc_modify_qdisc, NULL);
1747 rtnl_register(PF_UNSPEC, RTM_DELQDISC, tc_get_qdisc, NULL);
1748 rtnl_register(PF_UNSPEC, RTM_GETQDISC, tc_get_qdisc, tc_dump_qdisc);
1749 rtnl_register(PF_UNSPEC, RTM_NEWTCLASS, tc_ctl_tclass, NULL);
1750 rtnl_register(PF_UNSPEC, RTM_DELTCLASS, tc_ctl_tclass, NULL);
1751 rtnl_register(PF_UNSPEC, RTM_GETTCLASS, tc_ctl_tclass, tc_dump_tclass);
1752
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 return 0;
1754}
1755
1756subsys_initcall(pktsched_init);