2 * net/sched/sch_red.c Random Early Detection queue.
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.
9 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
12 * J Hadi Salim 980914: computation fixes
13 * Alexey Makarenko <makar@phoenix.kharkov.ua> 990814: qave on idle link was calculated incorrectly.
14 * J Hadi Salim 980816: ECN support
17 #include <linux/module.h>
18 #include <linux/types.h>
19 #include <linux/kernel.h>
20 #include <linux/skbuff.h>
21 #include <net/pkt_sched.h>
22 #include <net/inet_ecn.h>
26 /* Parameters, settable by user:
27 -----------------------------
29 limit - bytes (must be > qth_max + burst)
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.
41 u32 limit; /* HARD maximal queue length */
43 struct red_parms parms;
44 struct red_stats stats;
48 static inline int red_use_ecn(struct red_sched_data *q)
50 return q->flags & TC_RED_ECN;
53 static inline int red_use_harddrop(struct red_sched_data *q)
55 return q->flags & TC_RED_HARDDROP;
58 static int red_enqueue(struct sk_buff *skb, struct Qdisc* sch)
60 struct red_sched_data *q = qdisc_priv(sch);
61 struct Qdisc *child = q->qdisc;
64 q->parms.qavg = red_calc_qavg(&q->parms, child->qstats.backlog);
66 if (red_is_idling(&q->parms))
67 red_end_of_idle_period(&q->parms);
69 switch (red_action(&q->parms, q->parms.qavg)) {
74 sch->qstats.overlimits++;
75 if (!red_use_ecn(q) || !INET_ECN_set_ce(skb)) {
84 sch->qstats.overlimits++;
85 if (red_use_harddrop(q) || !red_use_ecn(q) ||
86 !INET_ECN_set_ce(skb)) {
87 q->stats.forced_drop++;
91 q->stats.forced_mark++;
95 ret = child->enqueue(skb, child);
96 if (likely(ret == NET_XMIT_SUCCESS)) {
97 sch->bstats.bytes += skb->len;
98 sch->bstats.packets++;
107 qdisc_drop(skb, sch);
111 static int red_requeue(struct sk_buff *skb, struct Qdisc* sch)
113 struct red_sched_data *q = qdisc_priv(sch);
114 struct Qdisc *child = q->qdisc;
117 if (red_is_idling(&q->parms))
118 red_end_of_idle_period(&q->parms);
120 ret = child->ops->requeue(skb, child);
121 if (likely(ret == NET_XMIT_SUCCESS)) {
122 sch->qstats.requeues++;
128 static struct sk_buff * red_dequeue(struct Qdisc* sch)
131 struct red_sched_data *q = qdisc_priv(sch);
132 struct Qdisc *child = q->qdisc;
134 skb = child->dequeue(child);
137 else if (!red_is_idling(&q->parms))
138 red_start_of_idle_period(&q->parms);
143 static unsigned int red_drop(struct Qdisc* sch)
145 struct red_sched_data *q = qdisc_priv(sch);
146 struct Qdisc *child = q->qdisc;
149 if (child->ops->drop && (len = child->ops->drop(child)) > 0) {
156 if (!red_is_idling(&q->parms))
157 red_start_of_idle_period(&q->parms);
162 static void red_reset(struct Qdisc* sch)
164 struct red_sched_data *q = qdisc_priv(sch);
166 qdisc_reset(q->qdisc);
168 red_restart(&q->parms);
171 static void red_destroy(struct Qdisc *sch)
173 struct red_sched_data *q = qdisc_priv(sch);
174 qdisc_destroy(q->qdisc);
177 static struct Qdisc *red_create_dflt(struct Qdisc *sch, u32 limit)
183 q = qdisc_create_dflt(sch->dev, &bfifo_qdisc_ops,
184 TC_H_MAKE(sch->handle, 1));
186 nla = kmalloc(nla_attr_size(sizeof(struct tc_fifo_qopt)),
189 nla->nla_type = RTM_NEWQDISC;
190 nla->nla_len = nla_attr_size(sizeof(struct tc_fifo_qopt));
191 ((struct tc_fifo_qopt *)nla_data(nla))->limit = limit;
193 ret = q->ops->change(q, nla);
204 static const struct nla_policy red_policy[TCA_RED_MAX + 1] = {
205 [TCA_RED_PARMS] = { .len = sizeof(struct tc_red_qopt) },
206 [TCA_RED_STAB] = { .len = RED_STAB_SIZE },
209 static int red_change(struct Qdisc *sch, struct nlattr *opt)
211 struct red_sched_data *q = qdisc_priv(sch);
212 struct nlattr *tb[TCA_RED_MAX + 1];
213 struct tc_red_qopt *ctl;
214 struct Qdisc *child = NULL;
220 err = nla_parse_nested(tb, TCA_RED_MAX, opt, red_policy);
224 if (tb[TCA_RED_PARMS] == NULL ||
225 tb[TCA_RED_STAB] == NULL)
228 ctl = nla_data(tb[TCA_RED_PARMS]);
230 if (ctl->limit > 0) {
231 child = red_create_dflt(sch, ctl->limit);
237 q->flags = ctl->flags;
238 q->limit = ctl->limit;
240 qdisc_tree_decrease_qlen(q->qdisc, q->qdisc->q.qlen);
241 qdisc_destroy(xchg(&q->qdisc, child));
244 red_set_parms(&q->parms, ctl->qth_min, ctl->qth_max, ctl->Wlog,
245 ctl->Plog, ctl->Scell_log,
246 nla_data(tb[TCA_RED_STAB]));
248 if (skb_queue_empty(&sch->q))
249 red_end_of_idle_period(&q->parms);
251 sch_tree_unlock(sch);
255 static int red_init(struct Qdisc* sch, struct nlattr *opt)
257 struct red_sched_data *q = qdisc_priv(sch);
259 q->qdisc = &noop_qdisc;
260 return red_change(sch, opt);
263 static int red_dump(struct Qdisc *sch, struct sk_buff *skb)
265 struct red_sched_data *q = qdisc_priv(sch);
266 struct nlattr *opts = NULL;
267 struct tc_red_qopt opt = {
270 .qth_min = q->parms.qth_min >> q->parms.Wlog,
271 .qth_max = q->parms.qth_max >> q->parms.Wlog,
272 .Wlog = q->parms.Wlog,
273 .Plog = q->parms.Plog,
274 .Scell_log = q->parms.Scell_log,
277 opts = nla_nest_start(skb, TCA_OPTIONS);
279 goto nla_put_failure;
280 NLA_PUT(skb, TCA_RED_PARMS, sizeof(opt), &opt);
281 return nla_nest_end(skb, opts);
284 return nla_nest_cancel(skb, opts);
287 static int red_dump_stats(struct Qdisc *sch, struct gnet_dump *d)
289 struct red_sched_data *q = qdisc_priv(sch);
290 struct tc_red_xstats st = {
291 .early = q->stats.prob_drop + q->stats.forced_drop,
292 .pdrop = q->stats.pdrop,
293 .other = q->stats.other,
294 .marked = q->stats.prob_mark + q->stats.forced_mark,
297 return gnet_stats_copy_app(d, &st, sizeof(st));
300 static int red_dump_class(struct Qdisc *sch, unsigned long cl,
301 struct sk_buff *skb, struct tcmsg *tcm)
303 struct red_sched_data *q = qdisc_priv(sch);
307 tcm->tcm_handle |= TC_H_MIN(1);
308 tcm->tcm_info = q->qdisc->handle;
312 static int red_graft(struct Qdisc *sch, unsigned long arg, struct Qdisc *new,
315 struct red_sched_data *q = qdisc_priv(sch);
321 *old = xchg(&q->qdisc, new);
322 qdisc_tree_decrease_qlen(*old, (*old)->q.qlen);
324 sch_tree_unlock(sch);
328 static struct Qdisc *red_leaf(struct Qdisc *sch, unsigned long arg)
330 struct red_sched_data *q = qdisc_priv(sch);
334 static unsigned long red_get(struct Qdisc *sch, u32 classid)
339 static void red_put(struct Qdisc *sch, unsigned long arg)
344 static int red_change_class(struct Qdisc *sch, u32 classid, u32 parentid,
345 struct nlattr **tca, unsigned long *arg)
350 static int red_delete(struct Qdisc *sch, unsigned long cl)
355 static void red_walk(struct Qdisc *sch, struct qdisc_walker *walker)
358 if (walker->count >= walker->skip)
359 if (walker->fn(sch, 1, walker) < 0) {
367 static struct tcf_proto **red_find_tcf(struct Qdisc *sch, unsigned long cl)
372 static const struct Qdisc_class_ops red_class_ops = {
377 .change = red_change_class,
378 .delete = red_delete,
380 .tcf_chain = red_find_tcf,
381 .dump = red_dump_class,
384 static struct Qdisc_ops red_qdisc_ops __read_mostly = {
386 .priv_size = sizeof(struct red_sched_data),
387 .cl_ops = &red_class_ops,
388 .enqueue = red_enqueue,
389 .dequeue = red_dequeue,
390 .requeue = red_requeue,
394 .destroy = red_destroy,
395 .change = red_change,
397 .dump_stats = red_dump_stats,
398 .owner = THIS_MODULE,
401 static int __init red_module_init(void)
403 return register_qdisc(&red_qdisc_ops);
406 static void __exit red_module_exit(void)
408 unregister_qdisc(&red_qdisc_ops);
411 module_init(red_module_init)
412 module_exit(red_module_exit)
414 MODULE_LICENSE("GPL");