blob: a6697c686c7fe18d3fdec32ab58e2e4671d3278a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * net/sched/sch_prio.c Simple 3-band priority "scheduler".
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>
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +090010 * Fixes: 19990609: J Hadi Salim <hadi@nortelnetworks.com>:
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * Init -- EINVAL when opt undefined
12 */
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/types.h>
16#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/skbuff.h>
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -070020#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <net/pkt_sched.h>
22
23
24struct prio_sched_data
25{
26 int bands;
27 struct tcf_proto *filter_list;
28 u8 prio2band[TC_PRIO_MAX+1];
29 struct Qdisc *queues[TCQ_PRIO_BANDS];
30};
31
32
33static struct Qdisc *
34prio_classify(struct sk_buff *skb, struct Qdisc *sch, int *qerr)
35{
36 struct prio_sched_data *q = qdisc_priv(sch);
37 u32 band = skb->priority;
38 struct tcf_result res;
Patrick McHardybdba91e2007-07-30 17:07:14 -070039 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Jarek Poplawskic27f3392008-08-04 22:39:11 -070041 *qerr = NET_XMIT_SUCCESS | __NET_XMIT_BYPASS;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 if (TC_H_MAJ(skb->priority) != sch->handle) {
Patrick McHardybdba91e2007-07-30 17:07:14 -070043 err = tc_classify(skb, q->filter_list, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#ifdef CONFIG_NET_CLS_ACT
Lucas Nussbaumdbaaa072007-08-30 22:35:46 -070045 switch (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 case TC_ACT_STOLEN:
47 case TC_ACT_QUEUED:
Jarek Poplawski378a2f02008-08-04 22:31:03 -070048 *qerr = NET_XMIT_SUCCESS | __NET_XMIT_STOLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 case TC_ACT_SHOT:
50 return NULL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -070051 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#endif
Patrick McHardybdba91e2007-07-30 17:07:14 -070053 if (!q->filter_list || err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 if (TC_H_MAJ(band))
55 band = 0;
David S. Miller1d8ae3f2008-07-15 02:52:19 -070056 return q->queues[q->prio2band[band&TC_PRIO_MAX]];
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 }
58 band = res.classid;
59 }
60 band = TC_H_MIN(band) - 1;
Jamal Hadi Salim3e5c2d32007-05-14 02:57:19 -070061 if (band >= q->bands)
David S. Miller1d8ae3f2008-07-15 02:52:19 -070062 return q->queues[q->prio2band[0]];
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 return q->queues[band];
65}
66
67static int
68prio_enqueue(struct sk_buff *skb, struct Qdisc *sch)
69{
70 struct Qdisc *qdisc;
71 int ret;
72
73 qdisc = prio_classify(skb, sch, &ret);
74#ifdef CONFIG_NET_CLS_ACT
75 if (qdisc == NULL) {
Jamal Hadi Salim29f1df62006-01-08 22:35:55 -080076
Jarek Poplawskic27f3392008-08-04 22:39:11 -070077 if (ret & __NET_XMIT_BYPASS)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 sch->qstats.drops++;
79 kfree_skb(skb);
80 return ret;
81 }
82#endif
83
Jussi Kivilinna5f861732008-07-20 00:08:04 -070084 ret = qdisc_enqueue(skb, qdisc);
85 if (ret == NET_XMIT_SUCCESS) {
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -070086 sch->bstats.bytes += qdisc_pkt_len(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 sch->bstats.packets++;
88 sch->q.qlen++;
89 return NET_XMIT_SUCCESS;
90 }
Jarek Poplawski378a2f02008-08-04 22:31:03 -070091 if (net_xmit_drop_count(ret))
92 sch->qstats.drops++;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +090093 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094}
95
96
97static int
98prio_requeue(struct sk_buff *skb, struct Qdisc* sch)
99{
100 struct Qdisc *qdisc;
101 int ret;
102
103 qdisc = prio_classify(skb, sch, &ret);
104#ifdef CONFIG_NET_CLS_ACT
105 if (qdisc == NULL) {
Jarek Poplawskic27f3392008-08-04 22:39:11 -0700106 if (ret & __NET_XMIT_BYPASS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 sch->qstats.drops++;
108 kfree_skb(skb);
109 return ret;
110 }
111#endif
112
113 if ((ret = qdisc->ops->requeue(skb, qdisc)) == NET_XMIT_SUCCESS) {
114 sch->q.qlen++;
115 sch->qstats.requeues++;
David S. Miller4cf7cb22008-08-17 22:45:17 -0700116 return NET_XMIT_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 }
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700118 if (net_xmit_drop_count(ret))
119 sch->qstats.drops++;
Jussi Kivilinna0d40b6e2008-08-17 22:43:56 -0700120 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121}
122
123
David S. Miller1d8ae3f2008-07-15 02:52:19 -0700124static struct sk_buff *prio_dequeue(struct Qdisc* sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 struct prio_sched_data *q = qdisc_priv(sch);
127 int prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129 for (prio = 0; prio < q->bands; prio++) {
David S. Miller1d8ae3f2008-07-15 02:52:19 -0700130 struct Qdisc *qdisc = q->queues[prio];
131 struct sk_buff *skb = qdisc->dequeue(qdisc);
132 if (skb) {
133 sch->q.qlen--;
134 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 }
136 }
137 return NULL;
138
139}
140
141static unsigned int prio_drop(struct Qdisc* sch)
142{
143 struct prio_sched_data *q = qdisc_priv(sch);
144 int prio;
145 unsigned int len;
146 struct Qdisc *qdisc;
147
148 for (prio = q->bands-1; prio >= 0; prio--) {
149 qdisc = q->queues[prio];
Patrick McHardy6d037a22006-03-20 19:00:49 -0800150 if (qdisc->ops->drop && (len = qdisc->ops->drop(qdisc)) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 sch->q.qlen--;
152 return len;
153 }
154 }
155 return 0;
156}
157
158
159static void
160prio_reset(struct Qdisc* sch)
161{
162 int prio;
163 struct prio_sched_data *q = qdisc_priv(sch);
164
165 for (prio=0; prio<q->bands; prio++)
166 qdisc_reset(q->queues[prio]);
167 sch->q.qlen = 0;
168}
169
170static void
171prio_destroy(struct Qdisc* sch)
172{
173 int prio;
174 struct prio_sched_data *q = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Patrick McHardyff31ab52008-07-01 19:52:38 -0700176 tcf_destroy_chain(&q->filter_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 for (prio=0; prio<q->bands; prio++)
178 qdisc_destroy(q->queues[prio]);
179}
180
Patrick McHardy1e904742008-01-22 22:11:17 -0800181static int prio_tune(struct Qdisc *sch, struct nlattr *opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
183 struct prio_sched_data *q = qdisc_priv(sch);
Peter P Waskiewicz Jrd62733c2007-06-28 21:04:31 -0700184 struct tc_prio_qopt *qopt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 int i;
186
David S. Miller1d8ae3f2008-07-15 02:52:19 -0700187 if (nla_len(opt) < sizeof(*qopt))
188 return -EINVAL;
189 qopt = nla_data(opt);
Patrick McHardycee63722008-01-23 20:33:32 -0800190
David S. Miller1d8ae3f2008-07-15 02:52:19 -0700191 if (qopt->bands > TCQ_PRIO_BANDS || qopt->bands < 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 return -EINVAL;
193
194 for (i=0; i<=TC_PRIO_MAX; i++) {
David S. Miller1d8ae3f2008-07-15 02:52:19 -0700195 if (qopt->priomap[i] >= qopt->bands)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 return -EINVAL;
197 }
198
199 sch_tree_lock(sch);
David S. Miller1d8ae3f2008-07-15 02:52:19 -0700200 q->bands = qopt->bands;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 memcpy(q->prio2band, qopt->priomap, TC_PRIO_MAX+1);
202
203 for (i=q->bands; i<TCQ_PRIO_BANDS; i++) {
204 struct Qdisc *child = xchg(&q->queues[i], &noop_qdisc);
Patrick McHardy5e50da02006-11-29 17:36:20 -0800205 if (child != &noop_qdisc) {
206 qdisc_tree_decrease_qlen(child, child->q.qlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 qdisc_destroy(child);
Patrick McHardy5e50da02006-11-29 17:36:20 -0800208 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 }
210 sch_tree_unlock(sch);
211
Amnon Aaronsohndd914b42006-01-17 02:24:26 -0800212 for (i=0; i<q->bands; i++) {
213 if (q->queues[i] == &noop_qdisc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 struct Qdisc *child;
David S. Miller5ce2d482008-07-08 17:06:30 -0700215 child = qdisc_create_dflt(qdisc_dev(sch), sch->dev_queue,
David S. Millerbb949fb2008-07-08 16:55:56 -0700216 &pfifo_qdisc_ops,
Patrick McHardy9f9afec2006-11-29 17:35:18 -0800217 TC_H_MAKE(sch->handle, i + 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 if (child) {
219 sch_tree_lock(sch);
Amnon Aaronsohndd914b42006-01-17 02:24:26 -0800220 child = xchg(&q->queues[i], child);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Patrick McHardy5e50da02006-11-29 17:36:20 -0800222 if (child != &noop_qdisc) {
223 qdisc_tree_decrease_qlen(child,
224 child->q.qlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 qdisc_destroy(child);
Patrick McHardy5e50da02006-11-29 17:36:20 -0800226 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 sch_tree_unlock(sch);
228 }
229 }
230 }
231 return 0;
232}
233
Patrick McHardy1e904742008-01-22 22:11:17 -0800234static int prio_init(struct Qdisc *sch, struct nlattr *opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235{
236 struct prio_sched_data *q = qdisc_priv(sch);
237 int i;
238
239 for (i=0; i<TCQ_PRIO_BANDS; i++)
240 q->queues[i] = &noop_qdisc;
241
242 if (opt == NULL) {
243 return -EINVAL;
244 } else {
245 int err;
246
247 if ((err= prio_tune(sch, opt)) != 0)
248 return err;
249 }
250 return 0;
251}
252
253static int prio_dump(struct Qdisc *sch, struct sk_buff *skb)
254{
255 struct prio_sched_data *q = qdisc_priv(sch);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700256 unsigned char *b = skb_tail_pointer(skb);
Patrick McHardy1e904742008-01-22 22:11:17 -0800257 struct nlattr *nest;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 struct tc_prio_qopt opt;
259
260 opt.bands = q->bands;
261 memcpy(&opt.priomap, q->prio2band, TC_PRIO_MAX+1);
Peter P Waskiewicz Jrd62733c2007-06-28 21:04:31 -0700262
Patrick McHardy1e904742008-01-22 22:11:17 -0800263 nest = nla_nest_compat_start(skb, TCA_OPTIONS, sizeof(opt), &opt);
264 if (nest == NULL)
265 goto nla_put_failure;
Patrick McHardy1e904742008-01-22 22:11:17 -0800266 nla_nest_compat_end(skb, nest);
Peter P Waskiewicz Jrd62733c2007-06-28 21:04:31 -0700267
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 return skb->len;
269
Patrick McHardy1e904742008-01-22 22:11:17 -0800270nla_put_failure:
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -0700271 nlmsg_trim(skb, b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 return -1;
273}
274
275static int prio_graft(struct Qdisc *sch, unsigned long arg, struct Qdisc *new,
276 struct Qdisc **old)
277{
278 struct prio_sched_data *q = qdisc_priv(sch);
279 unsigned long band = arg - 1;
280
281 if (band >= q->bands)
282 return -EINVAL;
283
284 if (new == NULL)
285 new = &noop_qdisc;
286
287 sch_tree_lock(sch);
288 *old = q->queues[band];
289 q->queues[band] = new;
Patrick McHardy5e50da02006-11-29 17:36:20 -0800290 qdisc_tree_decrease_qlen(*old, (*old)->q.qlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 qdisc_reset(*old);
292 sch_tree_unlock(sch);
293
294 return 0;
295}
296
297static struct Qdisc *
298prio_leaf(struct Qdisc *sch, unsigned long arg)
299{
300 struct prio_sched_data *q = qdisc_priv(sch);
301 unsigned long band = arg - 1;
302
303 if (band >= q->bands)
304 return NULL;
305
306 return q->queues[band];
307}
308
309static unsigned long prio_get(struct Qdisc *sch, u32 classid)
310{
311 struct prio_sched_data *q = qdisc_priv(sch);
312 unsigned long band = TC_H_MIN(classid);
313
314 if (band - 1 >= q->bands)
315 return 0;
316 return band;
317}
318
319static unsigned long prio_bind(struct Qdisc *sch, unsigned long parent, u32 classid)
320{
321 return prio_get(sch, classid);
322}
323
324
325static void prio_put(struct Qdisc *q, unsigned long cl)
326{
327 return;
328}
329
Patrick McHardy1e904742008-01-22 22:11:17 -0800330static int prio_change(struct Qdisc *sch, u32 handle, u32 parent, struct nlattr **tca, unsigned long *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331{
332 unsigned long cl = *arg;
333 struct prio_sched_data *q = qdisc_priv(sch);
334
335 if (cl - 1 > q->bands)
336 return -ENOENT;
337 return 0;
338}
339
340static int prio_delete(struct Qdisc *sch, unsigned long cl)
341{
342 struct prio_sched_data *q = qdisc_priv(sch);
343 if (cl - 1 > q->bands)
344 return -ENOENT;
345 return 0;
346}
347
348
349static int prio_dump_class(struct Qdisc *sch, unsigned long cl, struct sk_buff *skb,
350 struct tcmsg *tcm)
351{
352 struct prio_sched_data *q = qdisc_priv(sch);
353
354 if (cl - 1 > q->bands)
355 return -ENOENT;
356 tcm->tcm_handle |= TC_H_MIN(cl);
357 if (q->queues[cl-1])
358 tcm->tcm_info = q->queues[cl-1]->handle;
359 return 0;
360}
361
Jarek Poplawski2cf6c362007-01-31 12:21:24 -0800362static int prio_dump_class_stats(struct Qdisc *sch, unsigned long cl,
363 struct gnet_dump *d)
364{
365 struct prio_sched_data *q = qdisc_priv(sch);
366 struct Qdisc *cl_q;
367
368 cl_q = q->queues[cl - 1];
369 if (gnet_stats_copy_basic(d, &cl_q->bstats) < 0 ||
370 gnet_stats_copy_queue(d, &cl_q->qstats) < 0)
371 return -1;
372
373 return 0;
374}
375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376static void prio_walk(struct Qdisc *sch, struct qdisc_walker *arg)
377{
378 struct prio_sched_data *q = qdisc_priv(sch);
379 int prio;
380
381 if (arg->stop)
382 return;
383
384 for (prio = 0; prio < q->bands; prio++) {
385 if (arg->count < arg->skip) {
386 arg->count++;
387 continue;
388 }
389 if (arg->fn(sch, prio+1, arg) < 0) {
390 arg->stop = 1;
391 break;
392 }
393 arg->count++;
394 }
395}
396
397static struct tcf_proto ** prio_find_tcf(struct Qdisc *sch, unsigned long cl)
398{
399 struct prio_sched_data *q = qdisc_priv(sch);
400
401 if (cl)
402 return NULL;
403 return &q->filter_list;
404}
405
Eric Dumazet20fea082007-11-14 01:44:41 -0800406static const struct Qdisc_class_ops prio_class_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 .graft = prio_graft,
408 .leaf = prio_leaf,
409 .get = prio_get,
410 .put = prio_put,
411 .change = prio_change,
412 .delete = prio_delete,
413 .walk = prio_walk,
414 .tcf_chain = prio_find_tcf,
415 .bind_tcf = prio_bind,
416 .unbind_tcf = prio_put,
417 .dump = prio_dump_class,
Jarek Poplawski2cf6c362007-01-31 12:21:24 -0800418 .dump_stats = prio_dump_class_stats,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419};
420
Eric Dumazet20fea082007-11-14 01:44:41 -0800421static struct Qdisc_ops prio_qdisc_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 .next = NULL,
423 .cl_ops = &prio_class_ops,
424 .id = "prio",
425 .priv_size = sizeof(struct prio_sched_data),
426 .enqueue = prio_enqueue,
427 .dequeue = prio_dequeue,
428 .requeue = prio_requeue,
429 .drop = prio_drop,
430 .init = prio_init,
431 .reset = prio_reset,
432 .destroy = prio_destroy,
433 .change = prio_tune,
434 .dump = prio_dump,
435 .owner = THIS_MODULE,
436};
437
438static int __init prio_module_init(void)
439{
David S. Miller1d8ae3f2008-07-15 02:52:19 -0700440 return register_qdisc(&prio_qdisc_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441}
442
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900443static void __exit prio_module_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444{
445 unregister_qdisc(&prio_qdisc_ops);
446}
447
448module_init(prio_module_init)
449module_exit(prio_module_exit)
450
451MODULE_LICENSE("GPL");