blob: 9b95fefb70f46b881c8cb21f57a461561db024c9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * net/sched/sch_red.c Random Early Detection queue.
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 * Changes:
Thomas Grafdba051f2005-11-05 21:14:08 +010012 * J Hadi Salim 980914: computation fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 * Alexey Makarenko <makar@phoenix.kharkov.ua> 990814: qave on idle link was calculated incorrectly.
Thomas Grafdba051f2005-11-05 21:14:08 +010014 * J Hadi Salim 980816: ECN support
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 */
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/types.h>
19#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/skbuff.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <net/pkt_sched.h>
22#include <net/inet_ecn.h>
Thomas Graf6b31b282005-11-05 21:14:05 +010023#include <net/red.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25
Thomas Graf6b31b282005-11-05 21:14:05 +010026/* Parameters, settable by user:
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 -----------------------------
28
29 limit - bytes (must be > qth_max + burst)
30
31 Hard limit on queue length, should be chosen >qth_max
32 to allow packet bursts. This parameter does not
33 affect the algorithms behaviour and can be chosen
34 arbitrarily high (well, less than ram size)
35 Really, this limit will never be reached
36 if RED works correctly.
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 */
38
39struct red_sched_data
40{
Thomas Graf6b31b282005-11-05 21:14:05 +010041 u32 limit; /* HARD maximal queue length */
42 unsigned char flags;
43 struct red_parms parms;
44 struct red_stats stats;
Patrick McHardyf38c39d2006-03-20 19:20:44 -080045 struct Qdisc *qdisc;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046};
47
Thomas Graf6b31b282005-11-05 21:14:05 +010048static inline int red_use_ecn(struct red_sched_data *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049{
Thomas Graf6b31b282005-11-05 21:14:05 +010050 return q->flags & TC_RED_ECN;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051}
52
Thomas Grafbdc450a2005-11-05 21:14:28 +010053static inline int red_use_harddrop(struct red_sched_data *q)
54{
55 return q->flags & TC_RED_HARDDROP;
56}
57
Thomas Grafdba051f2005-11-05 21:14:08 +010058static int red_enqueue(struct sk_buff *skb, struct Qdisc* sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059{
60 struct red_sched_data *q = qdisc_priv(sch);
Patrick McHardyf38c39d2006-03-20 19:20:44 -080061 struct Qdisc *child = q->qdisc;
62 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Patrick McHardyf38c39d2006-03-20 19:20:44 -080064 q->parms.qavg = red_calc_qavg(&q->parms, child->qstats.backlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Thomas Graf6b31b282005-11-05 21:14:05 +010066 if (red_is_idling(&q->parms))
67 red_end_of_idle_period(&q->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Thomas Graf6b31b282005-11-05 21:14:05 +010069 switch (red_action(&q->parms, q->parms.qavg)) {
70 case RED_DONT_MARK:
71 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Thomas Graf6b31b282005-11-05 21:14:05 +010073 case RED_PROB_MARK:
74 sch->qstats.overlimits++;
75 if (!red_use_ecn(q) || !INET_ECN_set_ce(skb)) {
76 q->stats.prob_drop++;
77 goto congestion_drop;
78 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Thomas Graf6b31b282005-11-05 21:14:05 +010080 q->stats.prob_mark++;
81 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Thomas Graf6b31b282005-11-05 21:14:05 +010083 case RED_HARD_MARK:
84 sch->qstats.overlimits++;
Thomas Grafbdc450a2005-11-05 21:14:28 +010085 if (red_use_harddrop(q) || !red_use_ecn(q) ||
86 !INET_ECN_set_ce(skb)) {
Thomas Graf6b31b282005-11-05 21:14:05 +010087 q->stats.forced_drop++;
88 goto congestion_drop;
89 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Thomas Graf6b31b282005-11-05 21:14:05 +010091 q->stats.forced_mark++;
92 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 }
94
Patrick McHardyf38c39d2006-03-20 19:20:44 -080095 ret = child->enqueue(skb, child);
96 if (likely(ret == NET_XMIT_SUCCESS)) {
97 sch->bstats.bytes += skb->len;
98 sch->bstats.packets++;
99 sch->q.qlen++;
100 } else {
101 q->stats.pdrop++;
102 sch->qstats.drops++;
103 }
104 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Thomas Graf6b31b282005-11-05 21:14:05 +0100106congestion_drop:
Thomas Graf9e178ff2005-11-05 21:14:06 +0100107 qdisc_drop(skb, sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 return NET_XMIT_CN;
109}
110
Thomas Grafdba051f2005-11-05 21:14:08 +0100111static int red_requeue(struct sk_buff *skb, struct Qdisc* sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112{
113 struct red_sched_data *q = qdisc_priv(sch);
Patrick McHardyf38c39d2006-03-20 19:20:44 -0800114 struct Qdisc *child = q->qdisc;
115 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Thomas Graf6b31b282005-11-05 21:14:05 +0100117 if (red_is_idling(&q->parms))
118 red_end_of_idle_period(&q->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Patrick McHardyf38c39d2006-03-20 19:20:44 -0800120 ret = child->ops->requeue(skb, child);
121 if (likely(ret == NET_XMIT_SUCCESS)) {
122 sch->qstats.requeues++;
123 sch->q.qlen++;
124 }
125 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126}
127
Thomas Grafdba051f2005-11-05 21:14:08 +0100128static struct sk_buff * red_dequeue(struct Qdisc* sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
130 struct sk_buff *skb;
131 struct red_sched_data *q = qdisc_priv(sch);
Patrick McHardyf38c39d2006-03-20 19:20:44 -0800132 struct Qdisc *child = q->qdisc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Patrick McHardyf38c39d2006-03-20 19:20:44 -0800134 skb = child->dequeue(child);
135 if (skb)
136 sch->q.qlen--;
137 else if (!red_is_idling(&q->parms))
Thomas Graf9e178ff2005-11-05 21:14:06 +0100138 red_start_of_idle_period(&q->parms);
139
140 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141}
142
143static unsigned int red_drop(struct Qdisc* sch)
144{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 struct red_sched_data *q = qdisc_priv(sch);
Patrick McHardyf38c39d2006-03-20 19:20:44 -0800146 struct Qdisc *child = q->qdisc;
147 unsigned int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Patrick McHardyf38c39d2006-03-20 19:20:44 -0800149 if (child->ops->drop && (len = child->ops->drop(child)) > 0) {
Thomas Graf6b31b282005-11-05 21:14:05 +0100150 q->stats.other++;
Patrick McHardyf38c39d2006-03-20 19:20:44 -0800151 sch->qstats.drops++;
152 sch->q.qlen--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 return len;
154 }
Thomas Graf6b31b282005-11-05 21:14:05 +0100155
Thomas Graf6a1b63d2005-11-05 21:14:07 +0100156 if (!red_is_idling(&q->parms))
157 red_start_of_idle_period(&q->parms);
158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 return 0;
160}
161
162static void red_reset(struct Qdisc* sch)
163{
164 struct red_sched_data *q = qdisc_priv(sch);
165
Patrick McHardyf38c39d2006-03-20 19:20:44 -0800166 qdisc_reset(q->qdisc);
167 sch->q.qlen = 0;
Thomas Graf6b31b282005-11-05 21:14:05 +0100168 red_restart(&q->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169}
170
Patrick McHardyf38c39d2006-03-20 19:20:44 -0800171static void red_destroy(struct Qdisc *sch)
172{
173 struct red_sched_data *q = qdisc_priv(sch);
174 qdisc_destroy(q->qdisc);
175}
176
Patrick McHardy9f9afec2006-11-29 17:35:18 -0800177static struct Qdisc *red_create_dflt(struct Qdisc *sch, u32 limit)
Patrick McHardyf38c39d2006-03-20 19:20:44 -0800178{
Patrick McHardy9f9afec2006-11-29 17:35:18 -0800179 struct Qdisc *q;
Patrick McHardyf38c39d2006-03-20 19:20:44 -0800180 struct rtattr *rta;
181 int ret;
182
Patrick McHardy9f9afec2006-11-29 17:35:18 -0800183 q = qdisc_create_dflt(sch->dev, &bfifo_qdisc_ops,
184 TC_H_MAKE(sch->handle, 1));
Patrick McHardyf38c39d2006-03-20 19:20:44 -0800185 if (q) {
186 rta = kmalloc(RTA_LENGTH(sizeof(struct tc_fifo_qopt)),
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900187 GFP_KERNEL);
Patrick McHardyf38c39d2006-03-20 19:20:44 -0800188 if (rta) {
189 rta->rta_type = RTM_NEWQDISC;
190 rta->rta_len = RTA_LENGTH(sizeof(struct tc_fifo_qopt));
191 ((struct tc_fifo_qopt *)RTA_DATA(rta))->limit = limit;
192
193 ret = q->ops->change(q, rta);
194 kfree(rta);
195
196 if (ret == 0)
197 return q;
198 }
199 qdisc_destroy(q);
200 }
201 return NULL;
202}
203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204static int red_change(struct Qdisc *sch, struct rtattr *opt)
205{
206 struct red_sched_data *q = qdisc_priv(sch);
Thomas Grafdba051f2005-11-05 21:14:08 +0100207 struct rtattr *tb[TCA_RED_MAX];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 struct tc_red_qopt *ctl;
Patrick McHardyf38c39d2006-03-20 19:20:44 -0800209 struct Qdisc *child = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Thomas Grafdba051f2005-11-05 21:14:08 +0100211 if (opt == NULL || rtattr_parse_nested(tb, TCA_RED_MAX, opt))
212 return -EINVAL;
213
214 if (tb[TCA_RED_PARMS-1] == NULL ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 RTA_PAYLOAD(tb[TCA_RED_PARMS-1]) < sizeof(*ctl) ||
Thomas Grafdba051f2005-11-05 21:14:08 +0100216 tb[TCA_RED_STAB-1] == NULL ||
217 RTA_PAYLOAD(tb[TCA_RED_STAB-1]) < RED_STAB_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 return -EINVAL;
219
220 ctl = RTA_DATA(tb[TCA_RED_PARMS-1]);
221
Patrick McHardyf38c39d2006-03-20 19:20:44 -0800222 if (ctl->limit > 0) {
Patrick McHardy9f9afec2006-11-29 17:35:18 -0800223 child = red_create_dflt(sch, ctl->limit);
Patrick McHardyf38c39d2006-03-20 19:20:44 -0800224 if (child == NULL)
225 return -ENOMEM;
226 }
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 sch_tree_lock(sch);
229 q->flags = ctl->flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 q->limit = ctl->limit;
Patrick McHardy5e50da02006-11-29 17:36:20 -0800231 if (child) {
232 qdisc_tree_decrease_qlen(q->qdisc, q->qdisc->q.qlen);
Patrick McHardyf38c39d2006-03-20 19:20:44 -0800233 qdisc_destroy(xchg(&q->qdisc, child));
Patrick McHardy5e50da02006-11-29 17:36:20 -0800234 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Thomas Graf6b31b282005-11-05 21:14:05 +0100236 red_set_parms(&q->parms, ctl->qth_min, ctl->qth_max, ctl->Wlog,
237 ctl->Plog, ctl->Scell_log,
238 RTA_DATA(tb[TCA_RED_STAB-1]));
239
David S. Millerb03efcf2005-07-08 14:57:23 -0700240 if (skb_queue_empty(&sch->q))
Thomas Graf6b31b282005-11-05 21:14:05 +0100241 red_end_of_idle_period(&q->parms);
Thomas Grafdba051f2005-11-05 21:14:08 +0100242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 sch_tree_unlock(sch);
244 return 0;
245}
246
247static int red_init(struct Qdisc* sch, struct rtattr *opt)
248{
Patrick McHardyf38c39d2006-03-20 19:20:44 -0800249 struct red_sched_data *q = qdisc_priv(sch);
250
251 q->qdisc = &noop_qdisc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 return red_change(sch, opt);
253}
254
255static int red_dump(struct Qdisc *sch, struct sk_buff *skb)
256{
257 struct red_sched_data *q = qdisc_priv(sch);
Thomas Grafdba051f2005-11-05 21:14:08 +0100258 struct rtattr *opts = NULL;
Thomas Graf6b31b282005-11-05 21:14:05 +0100259 struct tc_red_qopt opt = {
260 .limit = q->limit,
261 .flags = q->flags,
262 .qth_min = q->parms.qth_min >> q->parms.Wlog,
263 .qth_max = q->parms.qth_max >> q->parms.Wlog,
264 .Wlog = q->parms.Wlog,
265 .Plog = q->parms.Plog,
266 .Scell_log = q->parms.Scell_log,
267 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Thomas Grafdba051f2005-11-05 21:14:08 +0100269 opts = RTA_NEST(skb, TCA_OPTIONS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 RTA_PUT(skb, TCA_RED_PARMS, sizeof(opt), &opt);
Thomas Grafdba051f2005-11-05 21:14:08 +0100271 return RTA_NEST_END(skb, opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
273rtattr_failure:
Thomas Grafdba051f2005-11-05 21:14:08 +0100274 return RTA_NEST_CANCEL(skb, opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275}
276
277static int red_dump_stats(struct Qdisc *sch, struct gnet_dump *d)
278{
279 struct red_sched_data *q = qdisc_priv(sch);
Thomas Graf6b31b282005-11-05 21:14:05 +0100280 struct tc_red_xstats st = {
281 .early = q->stats.prob_drop + q->stats.forced_drop,
282 .pdrop = q->stats.pdrop,
283 .other = q->stats.other,
284 .marked = q->stats.prob_mark + q->stats.forced_mark,
285 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Thomas Graf6b31b282005-11-05 21:14:05 +0100287 return gnet_stats_copy_app(d, &st, sizeof(st));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288}
289
Patrick McHardyf38c39d2006-03-20 19:20:44 -0800290static int red_dump_class(struct Qdisc *sch, unsigned long cl,
291 struct sk_buff *skb, struct tcmsg *tcm)
292{
293 struct red_sched_data *q = qdisc_priv(sch);
294
295 if (cl != 1)
296 return -ENOENT;
297 tcm->tcm_handle |= TC_H_MIN(1);
298 tcm->tcm_info = q->qdisc->handle;
299 return 0;
300}
301
302static int red_graft(struct Qdisc *sch, unsigned long arg, struct Qdisc *new,
303 struct Qdisc **old)
304{
305 struct red_sched_data *q = qdisc_priv(sch);
306
307 if (new == NULL)
308 new = &noop_qdisc;
309
310 sch_tree_lock(sch);
311 *old = xchg(&q->qdisc, new);
Patrick McHardy5e50da02006-11-29 17:36:20 -0800312 qdisc_tree_decrease_qlen(*old, (*old)->q.qlen);
Patrick McHardyf38c39d2006-03-20 19:20:44 -0800313 qdisc_reset(*old);
Patrick McHardyf38c39d2006-03-20 19:20:44 -0800314 sch_tree_unlock(sch);
315 return 0;
316}
317
318static struct Qdisc *red_leaf(struct Qdisc *sch, unsigned long arg)
319{
320 struct red_sched_data *q = qdisc_priv(sch);
321 return q->qdisc;
322}
323
324static unsigned long red_get(struct Qdisc *sch, u32 classid)
325{
326 return 1;
327}
328
329static void red_put(struct Qdisc *sch, unsigned long arg)
330{
331 return;
332}
333
334static int red_change_class(struct Qdisc *sch, u32 classid, u32 parentid,
335 struct rtattr **tca, unsigned long *arg)
336{
337 return -ENOSYS;
338}
339
340static int red_delete(struct Qdisc *sch, unsigned long cl)
341{
342 return -ENOSYS;
343}
344
345static void red_walk(struct Qdisc *sch, struct qdisc_walker *walker)
346{
347 if (!walker->stop) {
348 if (walker->count >= walker->skip)
349 if (walker->fn(sch, 1, walker) < 0) {
350 walker->stop = 1;
351 return;
352 }
353 walker->count++;
354 }
355}
356
357static struct tcf_proto **red_find_tcf(struct Qdisc *sch, unsigned long cl)
358{
359 return NULL;
360}
361
362static struct Qdisc_class_ops red_class_ops = {
363 .graft = red_graft,
364 .leaf = red_leaf,
365 .get = red_get,
366 .put = red_put,
367 .change = red_change_class,
368 .delete = red_delete,
369 .walk = red_walk,
370 .tcf_chain = red_find_tcf,
371 .dump = red_dump_class,
372};
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374static struct Qdisc_ops red_qdisc_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 .id = "red",
376 .priv_size = sizeof(struct red_sched_data),
Patrick McHardyf38c39d2006-03-20 19:20:44 -0800377 .cl_ops = &red_class_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 .enqueue = red_enqueue,
379 .dequeue = red_dequeue,
380 .requeue = red_requeue,
381 .drop = red_drop,
382 .init = red_init,
383 .reset = red_reset,
Patrick McHardyf38c39d2006-03-20 19:20:44 -0800384 .destroy = red_destroy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 .change = red_change,
386 .dump = red_dump,
387 .dump_stats = red_dump_stats,
388 .owner = THIS_MODULE,
389};
390
391static int __init red_module_init(void)
392{
393 return register_qdisc(&red_qdisc_ops);
394}
Thomas Grafdba051f2005-11-05 21:14:08 +0100395
396static void __exit red_module_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397{
398 unregister_qdisc(&red_qdisc_ops);
399}
Thomas Grafdba051f2005-11-05 21:14:08 +0100400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401module_init(red_module_init)
402module_exit(red_module_exit)
Thomas Grafdba051f2005-11-05 21:14:08 +0100403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404MODULE_LICENSE("GPL");