blob: 7abc51454c2d4026974fd674b931d5715032e18b [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
Jussi Kivilinna5f861732008-07-20 00:08:04 -070095 ret = qdisc_enqueue(skb, child);
Patrick McHardyf38c39d2006-03-20 19:20:44 -080096 if (likely(ret == NET_XMIT_SUCCESS)) {
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -070097 sch->bstats.bytes += qdisc_pkt_len(skb);
Patrick McHardyf38c39d2006-03-20 19:20:44 -080098 sch->bstats.packets++;
99 sch->q.qlen++;
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700100 } else if (net_xmit_drop_count(ret)) {
Patrick McHardyf38c39d2006-03-20 19:20:44 -0800101 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
Jarek Poplawski8e3af972008-10-31 00:45:55 -0700143static struct sk_buff * red_peek(struct Qdisc* sch)
144{
145 struct red_sched_data *q = qdisc_priv(sch);
146 struct Qdisc *child = q->qdisc;
147
148 return child->ops->peek(child);
149}
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151static unsigned int red_drop(struct Qdisc* sch)
152{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 struct red_sched_data *q = qdisc_priv(sch);
Patrick McHardyf38c39d2006-03-20 19:20:44 -0800154 struct Qdisc *child = q->qdisc;
155 unsigned int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Patrick McHardyf38c39d2006-03-20 19:20:44 -0800157 if (child->ops->drop && (len = child->ops->drop(child)) > 0) {
Thomas Graf6b31b282005-11-05 21:14:05 +0100158 q->stats.other++;
Patrick McHardyf38c39d2006-03-20 19:20:44 -0800159 sch->qstats.drops++;
160 sch->q.qlen--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 return len;
162 }
Thomas Graf6b31b282005-11-05 21:14:05 +0100163
Thomas Graf6a1b63d2005-11-05 21:14:07 +0100164 if (!red_is_idling(&q->parms))
165 red_start_of_idle_period(&q->parms);
166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 return 0;
168}
169
170static void red_reset(struct Qdisc* sch)
171{
172 struct red_sched_data *q = qdisc_priv(sch);
173
Patrick McHardyf38c39d2006-03-20 19:20:44 -0800174 qdisc_reset(q->qdisc);
175 sch->q.qlen = 0;
Thomas Graf6b31b282005-11-05 21:14:05 +0100176 red_restart(&q->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177}
178
Patrick McHardyf38c39d2006-03-20 19:20:44 -0800179static void red_destroy(struct Qdisc *sch)
180{
181 struct red_sched_data *q = qdisc_priv(sch);
182 qdisc_destroy(q->qdisc);
183}
184
Patrick McHardy27a34212008-01-23 20:35:39 -0800185static const struct nla_policy red_policy[TCA_RED_MAX + 1] = {
186 [TCA_RED_PARMS] = { .len = sizeof(struct tc_red_qopt) },
187 [TCA_RED_STAB] = { .len = RED_STAB_SIZE },
188};
189
Patrick McHardy1e904742008-01-22 22:11:17 -0800190static int red_change(struct Qdisc *sch, struct nlattr *opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
192 struct red_sched_data *q = qdisc_priv(sch);
Patrick McHardy1e904742008-01-22 22:11:17 -0800193 struct nlattr *tb[TCA_RED_MAX + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 struct tc_red_qopt *ctl;
Patrick McHardyf38c39d2006-03-20 19:20:44 -0800195 struct Qdisc *child = NULL;
Patrick McHardycee63722008-01-23 20:33:32 -0800196 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Patrick McHardycee63722008-01-23 20:33:32 -0800198 if (opt == NULL)
Thomas Grafdba051f2005-11-05 21:14:08 +0100199 return -EINVAL;
200
Patrick McHardy27a34212008-01-23 20:35:39 -0800201 err = nla_parse_nested(tb, TCA_RED_MAX, opt, red_policy);
Patrick McHardycee63722008-01-23 20:33:32 -0800202 if (err < 0)
203 return err;
204
Patrick McHardy1e904742008-01-22 22:11:17 -0800205 if (tb[TCA_RED_PARMS] == NULL ||
Patrick McHardy27a34212008-01-23 20:35:39 -0800206 tb[TCA_RED_STAB] == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 return -EINVAL;
208
Patrick McHardy1e904742008-01-22 22:11:17 -0800209 ctl = nla_data(tb[TCA_RED_PARMS]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Patrick McHardyf38c39d2006-03-20 19:20:44 -0800211 if (ctl->limit > 0) {
Patrick McHardyfb0305c2008-07-05 23:40:21 -0700212 child = fifo_create_dflt(sch, &bfifo_qdisc_ops, ctl->limit);
213 if (IS_ERR(child))
214 return PTR_ERR(child);
Patrick McHardyf38c39d2006-03-20 19:20:44 -0800215 }
216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 sch_tree_lock(sch);
218 q->flags = ctl->flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 q->limit = ctl->limit;
Patrick McHardy5e50da02006-11-29 17:36:20 -0800220 if (child) {
221 qdisc_tree_decrease_qlen(q->qdisc, q->qdisc->q.qlen);
Patrick McHardyf38c39d2006-03-20 19:20:44 -0800222 qdisc_destroy(xchg(&q->qdisc, child));
Patrick McHardy5e50da02006-11-29 17:36:20 -0800223 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Thomas Graf6b31b282005-11-05 21:14:05 +0100225 red_set_parms(&q->parms, ctl->qth_min, ctl->qth_max, ctl->Wlog,
226 ctl->Plog, ctl->Scell_log,
Patrick McHardy1e904742008-01-22 22:11:17 -0800227 nla_data(tb[TCA_RED_STAB]));
Thomas Graf6b31b282005-11-05 21:14:05 +0100228
David S. Millerb03efcf2005-07-08 14:57:23 -0700229 if (skb_queue_empty(&sch->q))
Thomas Graf6b31b282005-11-05 21:14:05 +0100230 red_end_of_idle_period(&q->parms);
Thomas Grafdba051f2005-11-05 21:14:08 +0100231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 sch_tree_unlock(sch);
233 return 0;
234}
235
Patrick McHardy1e904742008-01-22 22:11:17 -0800236static int red_init(struct Qdisc* sch, struct nlattr *opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237{
Patrick McHardyf38c39d2006-03-20 19:20:44 -0800238 struct red_sched_data *q = qdisc_priv(sch);
239
240 q->qdisc = &noop_qdisc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 return red_change(sch, opt);
242}
243
244static int red_dump(struct Qdisc *sch, struct sk_buff *skb)
245{
246 struct red_sched_data *q = qdisc_priv(sch);
Patrick McHardy1e904742008-01-22 22:11:17 -0800247 struct nlattr *opts = NULL;
Thomas Graf6b31b282005-11-05 21:14:05 +0100248 struct tc_red_qopt opt = {
249 .limit = q->limit,
250 .flags = q->flags,
251 .qth_min = q->parms.qth_min >> q->parms.Wlog,
252 .qth_max = q->parms.qth_max >> q->parms.Wlog,
253 .Wlog = q->parms.Wlog,
254 .Plog = q->parms.Plog,
255 .Scell_log = q->parms.Scell_log,
256 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Patrick McHardy1e904742008-01-22 22:11:17 -0800258 opts = nla_nest_start(skb, TCA_OPTIONS);
259 if (opts == NULL)
260 goto nla_put_failure;
261 NLA_PUT(skb, TCA_RED_PARMS, sizeof(opt), &opt);
262 return nla_nest_end(skb, opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Patrick McHardy1e904742008-01-22 22:11:17 -0800264nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -0700265 nla_nest_cancel(skb, opts);
266 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
268
269static int red_dump_stats(struct Qdisc *sch, struct gnet_dump *d)
270{
271 struct red_sched_data *q = qdisc_priv(sch);
Thomas Graf6b31b282005-11-05 21:14:05 +0100272 struct tc_red_xstats st = {
273 .early = q->stats.prob_drop + q->stats.forced_drop,
274 .pdrop = q->stats.pdrop,
275 .other = q->stats.other,
276 .marked = q->stats.prob_mark + q->stats.forced_mark,
277 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Thomas Graf6b31b282005-11-05 21:14:05 +0100279 return gnet_stats_copy_app(d, &st, sizeof(st));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280}
281
Patrick McHardyf38c39d2006-03-20 19:20:44 -0800282static int red_dump_class(struct Qdisc *sch, unsigned long cl,
283 struct sk_buff *skb, struct tcmsg *tcm)
284{
285 struct red_sched_data *q = qdisc_priv(sch);
286
287 if (cl != 1)
288 return -ENOENT;
289 tcm->tcm_handle |= TC_H_MIN(1);
290 tcm->tcm_info = q->qdisc->handle;
291 return 0;
292}
293
294static int red_graft(struct Qdisc *sch, unsigned long arg, struct Qdisc *new,
295 struct Qdisc **old)
296{
297 struct red_sched_data *q = qdisc_priv(sch);
298
299 if (new == NULL)
300 new = &noop_qdisc;
301
302 sch_tree_lock(sch);
303 *old = xchg(&q->qdisc, new);
Patrick McHardy5e50da02006-11-29 17:36:20 -0800304 qdisc_tree_decrease_qlen(*old, (*old)->q.qlen);
Patrick McHardyf38c39d2006-03-20 19:20:44 -0800305 qdisc_reset(*old);
Patrick McHardyf38c39d2006-03-20 19:20:44 -0800306 sch_tree_unlock(sch);
307 return 0;
308}
309
310static struct Qdisc *red_leaf(struct Qdisc *sch, unsigned long arg)
311{
312 struct red_sched_data *q = qdisc_priv(sch);
313 return q->qdisc;
314}
315
316static unsigned long red_get(struct Qdisc *sch, u32 classid)
317{
318 return 1;
319}
320
321static void red_put(struct Qdisc *sch, unsigned long arg)
322{
323 return;
324}
325
326static int red_change_class(struct Qdisc *sch, u32 classid, u32 parentid,
Patrick McHardy1e904742008-01-22 22:11:17 -0800327 struct nlattr **tca, unsigned long *arg)
Patrick McHardyf38c39d2006-03-20 19:20:44 -0800328{
329 return -ENOSYS;
330}
331
332static int red_delete(struct Qdisc *sch, unsigned long cl)
333{
334 return -ENOSYS;
335}
336
337static void red_walk(struct Qdisc *sch, struct qdisc_walker *walker)
338{
339 if (!walker->stop) {
340 if (walker->count >= walker->skip)
341 if (walker->fn(sch, 1, walker) < 0) {
342 walker->stop = 1;
343 return;
344 }
345 walker->count++;
346 }
347}
348
349static struct tcf_proto **red_find_tcf(struct Qdisc *sch, unsigned long cl)
350{
351 return NULL;
352}
353
Eric Dumazet20fea082007-11-14 01:44:41 -0800354static const struct Qdisc_class_ops red_class_ops = {
Patrick McHardyf38c39d2006-03-20 19:20:44 -0800355 .graft = red_graft,
356 .leaf = red_leaf,
357 .get = red_get,
358 .put = red_put,
359 .change = red_change_class,
360 .delete = red_delete,
361 .walk = red_walk,
362 .tcf_chain = red_find_tcf,
363 .dump = red_dump_class,
364};
365
Eric Dumazet20fea082007-11-14 01:44:41 -0800366static struct Qdisc_ops red_qdisc_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 .id = "red",
368 .priv_size = sizeof(struct red_sched_data),
Patrick McHardyf38c39d2006-03-20 19:20:44 -0800369 .cl_ops = &red_class_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 .enqueue = red_enqueue,
371 .dequeue = red_dequeue,
Jarek Poplawski8e3af972008-10-31 00:45:55 -0700372 .peek = red_peek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 .requeue = red_requeue,
374 .drop = red_drop,
375 .init = red_init,
376 .reset = red_reset,
Patrick McHardyf38c39d2006-03-20 19:20:44 -0800377 .destroy = red_destroy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 .change = red_change,
379 .dump = red_dump,
380 .dump_stats = red_dump_stats,
381 .owner = THIS_MODULE,
382};
383
384static int __init red_module_init(void)
385{
386 return register_qdisc(&red_qdisc_ops);
387}
Thomas Grafdba051f2005-11-05 21:14:08 +0100388
389static void __exit red_module_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390{
391 unregister_qdisc(&red_qdisc_ops);
392}
Thomas Grafdba051f2005-11-05 21:14:08 +0100393
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394module_init(red_module_init)
395module_exit(red_module_exit)
Thomas Grafdba051f2005-11-05 21:14:08 +0100396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397MODULE_LICENSE("GPL");