blob: f849243eb095f74943612630c7e658f2601c20ad [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
Jamal Hadi Salim29f1df62006-01-08 22:35:55 -080041 *qerr = 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:
48 *qerr = NET_XMIT_SUCCESS;
49 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
77 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 }
91 sch->qstats.drops++;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +090092 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093}
94
95
96static int
97prio_requeue(struct sk_buff *skb, struct Qdisc* sch)
98{
99 struct Qdisc *qdisc;
100 int ret;
101
102 qdisc = prio_classify(skb, sch, &ret);
103#ifdef CONFIG_NET_CLS_ACT
104 if (qdisc == NULL) {
Jamal Hadi Salim29f1df62006-01-08 22:35:55 -0800105 if (ret == NET_XMIT_BYPASS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 sch->qstats.drops++;
107 kfree_skb(skb);
108 return ret;
109 }
110#endif
111
112 if ((ret = qdisc->ops->requeue(skb, qdisc)) == NET_XMIT_SUCCESS) {
113 sch->q.qlen++;
114 sch->qstats.requeues++;
115 return 0;
116 }
117 sch->qstats.drops++;
118 return NET_XMIT_DROP;
119}
120
121
David S. Miller1d8ae3f2008-07-15 02:52:19 -0700122static struct sk_buff *prio_dequeue(struct Qdisc* sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 struct prio_sched_data *q = qdisc_priv(sch);
125 int prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127 for (prio = 0; prio < q->bands; prio++) {
David S. Miller1d8ae3f2008-07-15 02:52:19 -0700128 struct Qdisc *qdisc = q->queues[prio];
129 struct sk_buff *skb = qdisc->dequeue(qdisc);
130 if (skb) {
131 sch->q.qlen--;
132 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 }
134 }
135 return NULL;
136
137}
138
139static unsigned int prio_drop(struct Qdisc* sch)
140{
141 struct prio_sched_data *q = qdisc_priv(sch);
142 int prio;
143 unsigned int len;
144 struct Qdisc *qdisc;
145
146 for (prio = q->bands-1; prio >= 0; prio--) {
147 qdisc = q->queues[prio];
Patrick McHardy6d037a22006-03-20 19:00:49 -0800148 if (qdisc->ops->drop && (len = qdisc->ops->drop(qdisc)) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 sch->q.qlen--;
150 return len;
151 }
152 }
153 return 0;
154}
155
156
157static void
158prio_reset(struct Qdisc* sch)
159{
160 int prio;
161 struct prio_sched_data *q = qdisc_priv(sch);
162
163 for (prio=0; prio<q->bands; prio++)
164 qdisc_reset(q->queues[prio]);
165 sch->q.qlen = 0;
166}
167
168static void
169prio_destroy(struct Qdisc* sch)
170{
171 int prio;
172 struct prio_sched_data *q = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Patrick McHardyff31ab52008-07-01 19:52:38 -0700174 tcf_destroy_chain(&q->filter_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 for (prio=0; prio<q->bands; prio++)
176 qdisc_destroy(q->queues[prio]);
177}
178
Patrick McHardy1e904742008-01-22 22:11:17 -0800179static int prio_tune(struct Qdisc *sch, struct nlattr *opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
181 struct prio_sched_data *q = qdisc_priv(sch);
Peter P Waskiewicz Jrd62733c2007-06-28 21:04:31 -0700182 struct tc_prio_qopt *qopt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 int i;
184
David S. Miller1d8ae3f2008-07-15 02:52:19 -0700185 if (nla_len(opt) < sizeof(*qopt))
186 return -EINVAL;
187 qopt = nla_data(opt);
Patrick McHardycee63722008-01-23 20:33:32 -0800188
David S. Miller1d8ae3f2008-07-15 02:52:19 -0700189 if (qopt->bands > TCQ_PRIO_BANDS || qopt->bands < 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 return -EINVAL;
191
192 for (i=0; i<=TC_PRIO_MAX; i++) {
David S. Miller1d8ae3f2008-07-15 02:52:19 -0700193 if (qopt->priomap[i] >= qopt->bands)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 return -EINVAL;
195 }
196
197 sch_tree_lock(sch);
David S. Miller1d8ae3f2008-07-15 02:52:19 -0700198 q->bands = qopt->bands;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 memcpy(q->prio2band, qopt->priomap, TC_PRIO_MAX+1);
200
201 for (i=q->bands; i<TCQ_PRIO_BANDS; i++) {
202 struct Qdisc *child = xchg(&q->queues[i], &noop_qdisc);
Patrick McHardy5e50da02006-11-29 17:36:20 -0800203 if (child != &noop_qdisc) {
204 qdisc_tree_decrease_qlen(child, child->q.qlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 qdisc_destroy(child);
Patrick McHardy5e50da02006-11-29 17:36:20 -0800206 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 }
208 sch_tree_unlock(sch);
209
Amnon Aaronsohndd914b42006-01-17 02:24:26 -0800210 for (i=0; i<q->bands; i++) {
211 if (q->queues[i] == &noop_qdisc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 struct Qdisc *child;
David S. Miller5ce2d482008-07-08 17:06:30 -0700213 child = qdisc_create_dflt(qdisc_dev(sch), sch->dev_queue,
David S. Millerbb949fb2008-07-08 16:55:56 -0700214 &pfifo_qdisc_ops,
Patrick McHardy9f9afec2006-11-29 17:35:18 -0800215 TC_H_MAKE(sch->handle, i + 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 if (child) {
217 sch_tree_lock(sch);
Amnon Aaronsohndd914b42006-01-17 02:24:26 -0800218 child = xchg(&q->queues[i], child);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Patrick McHardy5e50da02006-11-29 17:36:20 -0800220 if (child != &noop_qdisc) {
221 qdisc_tree_decrease_qlen(child,
222 child->q.qlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 qdisc_destroy(child);
Patrick McHardy5e50da02006-11-29 17:36:20 -0800224 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 sch_tree_unlock(sch);
226 }
227 }
228 }
229 return 0;
230}
231
Patrick McHardy1e904742008-01-22 22:11:17 -0800232static int prio_init(struct Qdisc *sch, struct nlattr *opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
234 struct prio_sched_data *q = qdisc_priv(sch);
235 int i;
236
237 for (i=0; i<TCQ_PRIO_BANDS; i++)
238 q->queues[i] = &noop_qdisc;
239
240 if (opt == NULL) {
241 return -EINVAL;
242 } else {
243 int err;
244
245 if ((err= prio_tune(sch, opt)) != 0)
246 return err;
247 }
248 return 0;
249}
250
251static int prio_dump(struct Qdisc *sch, struct sk_buff *skb)
252{
253 struct prio_sched_data *q = qdisc_priv(sch);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700254 unsigned char *b = skb_tail_pointer(skb);
Patrick McHardy1e904742008-01-22 22:11:17 -0800255 struct nlattr *nest;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 struct tc_prio_qopt opt;
257
258 opt.bands = q->bands;
259 memcpy(&opt.priomap, q->prio2band, TC_PRIO_MAX+1);
Peter P Waskiewicz Jrd62733c2007-06-28 21:04:31 -0700260
Patrick McHardy1e904742008-01-22 22:11:17 -0800261 nest = nla_nest_compat_start(skb, TCA_OPTIONS, sizeof(opt), &opt);
262 if (nest == NULL)
263 goto nla_put_failure;
Patrick McHardy1e904742008-01-22 22:11:17 -0800264 nla_nest_compat_end(skb, nest);
Peter P Waskiewicz Jrd62733c2007-06-28 21:04:31 -0700265
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 return skb->len;
267
Patrick McHardy1e904742008-01-22 22:11:17 -0800268nla_put_failure:
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -0700269 nlmsg_trim(skb, b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 return -1;
271}
272
273static int prio_graft(struct Qdisc *sch, unsigned long arg, struct Qdisc *new,
274 struct Qdisc **old)
275{
276 struct prio_sched_data *q = qdisc_priv(sch);
277 unsigned long band = arg - 1;
278
279 if (band >= q->bands)
280 return -EINVAL;
281
282 if (new == NULL)
283 new = &noop_qdisc;
284
285 sch_tree_lock(sch);
286 *old = q->queues[band];
287 q->queues[band] = new;
Patrick McHardy5e50da02006-11-29 17:36:20 -0800288 qdisc_tree_decrease_qlen(*old, (*old)->q.qlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 qdisc_reset(*old);
290 sch_tree_unlock(sch);
291
292 return 0;
293}
294
295static struct Qdisc *
296prio_leaf(struct Qdisc *sch, unsigned long arg)
297{
298 struct prio_sched_data *q = qdisc_priv(sch);
299 unsigned long band = arg - 1;
300
301 if (band >= q->bands)
302 return NULL;
303
304 return q->queues[band];
305}
306
307static unsigned long prio_get(struct Qdisc *sch, u32 classid)
308{
309 struct prio_sched_data *q = qdisc_priv(sch);
310 unsigned long band = TC_H_MIN(classid);
311
312 if (band - 1 >= q->bands)
313 return 0;
314 return band;
315}
316
317static unsigned long prio_bind(struct Qdisc *sch, unsigned long parent, u32 classid)
318{
319 return prio_get(sch, classid);
320}
321
322
323static void prio_put(struct Qdisc *q, unsigned long cl)
324{
325 return;
326}
327
Patrick McHardy1e904742008-01-22 22:11:17 -0800328static int prio_change(struct Qdisc *sch, u32 handle, u32 parent, struct nlattr **tca, unsigned long *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329{
330 unsigned long cl = *arg;
331 struct prio_sched_data *q = qdisc_priv(sch);
332
333 if (cl - 1 > q->bands)
334 return -ENOENT;
335 return 0;
336}
337
338static int prio_delete(struct Qdisc *sch, unsigned long cl)
339{
340 struct prio_sched_data *q = qdisc_priv(sch);
341 if (cl - 1 > q->bands)
342 return -ENOENT;
343 return 0;
344}
345
346
347static int prio_dump_class(struct Qdisc *sch, unsigned long cl, struct sk_buff *skb,
348 struct tcmsg *tcm)
349{
350 struct prio_sched_data *q = qdisc_priv(sch);
351
352 if (cl - 1 > q->bands)
353 return -ENOENT;
354 tcm->tcm_handle |= TC_H_MIN(cl);
355 if (q->queues[cl-1])
356 tcm->tcm_info = q->queues[cl-1]->handle;
357 return 0;
358}
359
Jarek Poplawski2cf6c362007-01-31 12:21:24 -0800360static int prio_dump_class_stats(struct Qdisc *sch, unsigned long cl,
361 struct gnet_dump *d)
362{
363 struct prio_sched_data *q = qdisc_priv(sch);
364 struct Qdisc *cl_q;
365
366 cl_q = q->queues[cl - 1];
367 if (gnet_stats_copy_basic(d, &cl_q->bstats) < 0 ||
368 gnet_stats_copy_queue(d, &cl_q->qstats) < 0)
369 return -1;
370
371 return 0;
372}
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374static void prio_walk(struct Qdisc *sch, struct qdisc_walker *arg)
375{
376 struct prio_sched_data *q = qdisc_priv(sch);
377 int prio;
378
379 if (arg->stop)
380 return;
381
382 for (prio = 0; prio < q->bands; prio++) {
383 if (arg->count < arg->skip) {
384 arg->count++;
385 continue;
386 }
387 if (arg->fn(sch, prio+1, arg) < 0) {
388 arg->stop = 1;
389 break;
390 }
391 arg->count++;
392 }
393}
394
395static struct tcf_proto ** prio_find_tcf(struct Qdisc *sch, unsigned long cl)
396{
397 struct prio_sched_data *q = qdisc_priv(sch);
398
399 if (cl)
400 return NULL;
401 return &q->filter_list;
402}
403
Eric Dumazet20fea082007-11-14 01:44:41 -0800404static const struct Qdisc_class_ops prio_class_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 .graft = prio_graft,
406 .leaf = prio_leaf,
407 .get = prio_get,
408 .put = prio_put,
409 .change = prio_change,
410 .delete = prio_delete,
411 .walk = prio_walk,
412 .tcf_chain = prio_find_tcf,
413 .bind_tcf = prio_bind,
414 .unbind_tcf = prio_put,
415 .dump = prio_dump_class,
Jarek Poplawski2cf6c362007-01-31 12:21:24 -0800416 .dump_stats = prio_dump_class_stats,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417};
418
Eric Dumazet20fea082007-11-14 01:44:41 -0800419static struct Qdisc_ops prio_qdisc_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 .next = NULL,
421 .cl_ops = &prio_class_ops,
422 .id = "prio",
423 .priv_size = sizeof(struct prio_sched_data),
424 .enqueue = prio_enqueue,
425 .dequeue = prio_dequeue,
426 .requeue = prio_requeue,
427 .drop = prio_drop,
428 .init = prio_init,
429 .reset = prio_reset,
430 .destroy = prio_destroy,
431 .change = prio_tune,
432 .dump = prio_dump,
433 .owner = THIS_MODULE,
434};
435
436static int __init prio_module_init(void)
437{
David S. Miller1d8ae3f2008-07-15 02:52:19 -0700438 return register_qdisc(&prio_qdisc_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439}
440
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900441static void __exit prio_module_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442{
443 unregister_qdisc(&prio_qdisc_ops);
444}
445
446module_init(prio_module_init)
447module_exit(prio_module_exit)
448
449MODULE_LICENSE("GPL");