sch_red.c 8.6 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11
/*
 * net/sched/sch_red.c	Random Early Detection queue.
 *
 *		This program is free software; you can redistribute it and/or
 *		modify it under the terms of the GNU General Public License
 *		as published by the Free Software Foundation; either version
 *		2 of the License, or (at your option) any later version.
 *
 * Authors:	Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
 *
 * Changes:
12
 * J Hadi Salim 980914:	computation fixes
L
Linus Torvalds 已提交
13
 * Alexey Makarenko <makar@phoenix.kharkov.ua> 990814: qave on idle link was calculated incorrectly.
14
 * J Hadi Salim 980816:  ECN support
L
Linus Torvalds 已提交
15 16 17 18 19 20 21 22
 */

#include <linux/module.h>
#include <linux/types.h>
#include <linux/kernel.h>
#include <linux/skbuff.h>
#include <net/pkt_sched.h>
#include <net/inet_ecn.h>
23
#include <net/red.h>
L
Linus Torvalds 已提交
24 25


26
/*	Parameters, settable by user:
L
Linus Torvalds 已提交
27 28 29 30 31 32 33 34 35 36 37 38
	-----------------------------

	limit		- bytes (must be > qth_max + burst)

	Hard limit on queue length, should be chosen >qth_max
	to allow packet bursts. This parameter does not
	affect the algorithms behaviour and can be chosen
	arbitrarily high (well, less than ram size)
	Really, this limit will never be reached
	if RED works correctly.
 */

E
Eric Dumazet 已提交
39
struct red_sched_data {
40 41
	u32			limit;		/* HARD maximal queue length */
	unsigned char		flags;
E
Eric Dumazet 已提交
42
	struct timer_list	adapt_timer;
43 44
	struct red_parms	parms;
	struct red_stats	stats;
45
	struct Qdisc		*qdisc;
L
Linus Torvalds 已提交
46 47
};

48
static inline int red_use_ecn(struct red_sched_data *q)
L
Linus Torvalds 已提交
49
{
50
	return q->flags & TC_RED_ECN;
L
Linus Torvalds 已提交
51 52
}

53 54 55 56 57
static inline int red_use_harddrop(struct red_sched_data *q)
{
	return q->flags & TC_RED_HARDDROP;
}

E
Eric Dumazet 已提交
58
static int red_enqueue(struct sk_buff *skb, struct Qdisc *sch)
L
Linus Torvalds 已提交
59 60
{
	struct red_sched_data *q = qdisc_priv(sch);
61 62
	struct Qdisc *child = q->qdisc;
	int ret;
L
Linus Torvalds 已提交
63

64
	q->parms.qavg = red_calc_qavg(&q->parms, child->qstats.backlog);
L
Linus Torvalds 已提交
65

66 67
	if (red_is_idling(&q->parms))
		red_end_of_idle_period(&q->parms);
L
Linus Torvalds 已提交
68

69
	switch (red_action(&q->parms, q->parms.qavg)) {
E
Eric Dumazet 已提交
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
	case RED_DONT_MARK:
		break;

	case RED_PROB_MARK:
		sch->qstats.overlimits++;
		if (!red_use_ecn(q) || !INET_ECN_set_ce(skb)) {
			q->stats.prob_drop++;
			goto congestion_drop;
		}

		q->stats.prob_mark++;
		break;

	case RED_HARD_MARK:
		sch->qstats.overlimits++;
		if (red_use_harddrop(q) || !red_use_ecn(q) ||
		    !INET_ECN_set_ce(skb)) {
			q->stats.forced_drop++;
			goto congestion_drop;
		}

		q->stats.forced_mark++;
		break;
L
Linus Torvalds 已提交
93 94
	}

95
	ret = qdisc_enqueue(skb, child);
96 97
	if (likely(ret == NET_XMIT_SUCCESS)) {
		sch->q.qlen++;
98
	} else if (net_xmit_drop_count(ret)) {
99 100 101 102
		q->stats.pdrop++;
		sch->qstats.drops++;
	}
	return ret;
103 104

congestion_drop:
105
	qdisc_drop(skb, sch);
L
Linus Torvalds 已提交
106 107 108
	return NET_XMIT_CN;
}

E
Eric Dumazet 已提交
109
static struct sk_buff *red_dequeue(struct Qdisc *sch)
L
Linus Torvalds 已提交
110 111 112
{
	struct sk_buff *skb;
	struct red_sched_data *q = qdisc_priv(sch);
113
	struct Qdisc *child = q->qdisc;
L
Linus Torvalds 已提交
114

115
	skb = child->dequeue(child);
116 117
	if (skb) {
		qdisc_bstats_update(sch, skb);
118
		sch->q.qlen--;
119 120 121 122
	} else {
		if (!red_is_idling(&q->parms))
			red_start_of_idle_period(&q->parms);
	}
123
	return skb;
L
Linus Torvalds 已提交
124 125
}

E
Eric Dumazet 已提交
126
static struct sk_buff *red_peek(struct Qdisc *sch)
127 128 129 130 131 132 133
{
	struct red_sched_data *q = qdisc_priv(sch);
	struct Qdisc *child = q->qdisc;

	return child->ops->peek(child);
}

E
Eric Dumazet 已提交
134
static unsigned int red_drop(struct Qdisc *sch)
L
Linus Torvalds 已提交
135 136
{
	struct red_sched_data *q = qdisc_priv(sch);
137 138
	struct Qdisc *child = q->qdisc;
	unsigned int len;
L
Linus Torvalds 已提交
139

140
	if (child->ops->drop && (len = child->ops->drop(child)) > 0) {
141
		q->stats.other++;
142 143
		sch->qstats.drops++;
		sch->q.qlen--;
L
Linus Torvalds 已提交
144 145
		return len;
	}
146

147 148 149
	if (!red_is_idling(&q->parms))
		red_start_of_idle_period(&q->parms);

L
Linus Torvalds 已提交
150 151 152
	return 0;
}

E
Eric Dumazet 已提交
153
static void red_reset(struct Qdisc *sch)
L
Linus Torvalds 已提交
154 155 156
{
	struct red_sched_data *q = qdisc_priv(sch);

157 158
	qdisc_reset(q->qdisc);
	sch->q.qlen = 0;
159
	red_restart(&q->parms);
L
Linus Torvalds 已提交
160 161
}

162 163 164
static void red_destroy(struct Qdisc *sch)
{
	struct red_sched_data *q = qdisc_priv(sch);
E
Eric Dumazet 已提交
165 166

	del_timer_sync(&q->adapt_timer);
167 168 169
	qdisc_destroy(q->qdisc);
}

170 171 172
static const struct nla_policy red_policy[TCA_RED_MAX + 1] = {
	[TCA_RED_PARMS]	= { .len = sizeof(struct tc_red_qopt) },
	[TCA_RED_STAB]	= { .len = RED_STAB_SIZE },
173
	[TCA_RED_MAX_P] = { .type = NLA_U32 },
174 175
};

176
static int red_change(struct Qdisc *sch, struct nlattr *opt)
L
Linus Torvalds 已提交
177 178
{
	struct red_sched_data *q = qdisc_priv(sch);
179
	struct nlattr *tb[TCA_RED_MAX + 1];
L
Linus Torvalds 已提交
180
	struct tc_red_qopt *ctl;
181
	struct Qdisc *child = NULL;
182
	int err;
183
	u32 max_P;
L
Linus Torvalds 已提交
184

185
	if (opt == NULL)
186 187
		return -EINVAL;

188
	err = nla_parse_nested(tb, TCA_RED_MAX, opt, red_policy);
189 190 191
	if (err < 0)
		return err;

192
	if (tb[TCA_RED_PARMS] == NULL ||
193
	    tb[TCA_RED_STAB] == NULL)
L
Linus Torvalds 已提交
194 195
		return -EINVAL;

196 197
	max_P = tb[TCA_RED_MAX_P] ? nla_get_u32(tb[TCA_RED_MAX_P]) : 0;

198
	ctl = nla_data(tb[TCA_RED_PARMS]);
L
Linus Torvalds 已提交
199

200
	if (ctl->limit > 0) {
201 202 203
		child = fifo_create_dflt(sch, &bfifo_qdisc_ops, ctl->limit);
		if (IS_ERR(child))
			return PTR_ERR(child);
204 205
	}

L
Linus Torvalds 已提交
206 207 208
	sch_tree_lock(sch);
	q->flags = ctl->flags;
	q->limit = ctl->limit;
209 210
	if (child) {
		qdisc_tree_decrease_qlen(q->qdisc, q->qdisc->q.qlen);
211 212
		qdisc_destroy(q->qdisc);
		q->qdisc = child;
213
	}
L
Linus Torvalds 已提交
214

215
	red_set_parms(&q->parms, ctl->qth_min, ctl->qth_max, ctl->Wlog,
216 217 218
		      ctl->Plog, ctl->Scell_log,
		      nla_data(tb[TCA_RED_STAB]),
		      max_P);
219

E
Eric Dumazet 已提交
220 221 222 223
	del_timer(&q->adapt_timer);
	if (ctl->flags & TC_RED_ADAPTATIVE)
		mod_timer(&q->adapt_timer, jiffies + HZ/2);

E
Eric Dumazet 已提交
224 225
	if (!q->qdisc->q.qlen)
		red_start_of_idle_period(&q->parms);
226

L
Linus Torvalds 已提交
227 228 229 230
	sch_tree_unlock(sch);
	return 0;
}

E
Eric Dumazet 已提交
231 232 233 234 235 236 237 238 239 240 241 242
static inline void red_adaptative_timer(unsigned long arg)
{
	struct Qdisc *sch = (struct Qdisc *)arg;
	struct red_sched_data *q = qdisc_priv(sch);
	spinlock_t *root_lock = qdisc_lock(qdisc_root_sleeping(sch));

	spin_lock(root_lock);
	red_adaptative_algo(&q->parms);
	mod_timer(&q->adapt_timer, jiffies + HZ/2);
	spin_unlock(root_lock);
}

E
Eric Dumazet 已提交
243
static int red_init(struct Qdisc *sch, struct nlattr *opt)
L
Linus Torvalds 已提交
244
{
245 246 247
	struct red_sched_data *q = qdisc_priv(sch);

	q->qdisc = &noop_qdisc;
E
Eric Dumazet 已提交
248
	setup_timer(&q->adapt_timer, red_adaptative_timer, (unsigned long)sch);
L
Linus Torvalds 已提交
249 250 251 252 253 254
	return red_change(sch, opt);
}

static int red_dump(struct Qdisc *sch, struct sk_buff *skb)
{
	struct red_sched_data *q = qdisc_priv(sch);
255
	struct nlattr *opts = NULL;
256 257 258 259 260 261 262 263 264
	struct tc_red_qopt opt = {
		.limit		= q->limit,
		.flags		= q->flags,
		.qth_min	= q->parms.qth_min >> q->parms.Wlog,
		.qth_max	= q->parms.qth_max >> q->parms.Wlog,
		.Wlog		= q->parms.Wlog,
		.Plog		= q->parms.Plog,
		.Scell_log	= q->parms.Scell_log,
	};
L
Linus Torvalds 已提交
265

266
	sch->qstats.backlog = q->qdisc->qstats.backlog;
267 268 269 270
	opts = nla_nest_start(skb, TCA_OPTIONS);
	if (opts == NULL)
		goto nla_put_failure;
	NLA_PUT(skb, TCA_RED_PARMS, sizeof(opt), &opt);
E
Eric Dumazet 已提交
271
	NLA_PUT_U32(skb, TCA_RED_MAX_P, q->parms.max_P);
272
	return nla_nest_end(skb, opts);
L
Linus Torvalds 已提交
273

274
nla_put_failure:
275 276
	nla_nest_cancel(skb, opts);
	return -EMSGSIZE;
L
Linus Torvalds 已提交
277 278 279 280 281
}

static int red_dump_stats(struct Qdisc *sch, struct gnet_dump *d)
{
	struct red_sched_data *q = qdisc_priv(sch);
282 283 284 285 286 287 288 289
	struct tc_red_xstats st = {
		.early	= q->stats.prob_drop + q->stats.forced_drop,
		.pdrop	= q->stats.pdrop,
		.other	= q->stats.other,
		.marked	= q->stats.prob_mark + q->stats.forced_mark,
	};

	return gnet_stats_copy_app(d, &st, sizeof(st));
L
Linus Torvalds 已提交
290 291
}

292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310
static int red_dump_class(struct Qdisc *sch, unsigned long cl,
			  struct sk_buff *skb, struct tcmsg *tcm)
{
	struct red_sched_data *q = qdisc_priv(sch);

	tcm->tcm_handle |= TC_H_MIN(1);
	tcm->tcm_info = q->qdisc->handle;
	return 0;
}

static int red_graft(struct Qdisc *sch, unsigned long arg, struct Qdisc *new,
		     struct Qdisc **old)
{
	struct red_sched_data *q = qdisc_priv(sch);

	if (new == NULL)
		new = &noop_qdisc;

	sch_tree_lock(sch);
311 312
	*old = q->qdisc;
	q->qdisc = new;
313
	qdisc_tree_decrease_qlen(*old, (*old)->q.qlen);
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345
	qdisc_reset(*old);
	sch_tree_unlock(sch);
	return 0;
}

static struct Qdisc *red_leaf(struct Qdisc *sch, unsigned long arg)
{
	struct red_sched_data *q = qdisc_priv(sch);
	return q->qdisc;
}

static unsigned long red_get(struct Qdisc *sch, u32 classid)
{
	return 1;
}

static void red_put(struct Qdisc *sch, unsigned long arg)
{
}

static void red_walk(struct Qdisc *sch, struct qdisc_walker *walker)
{
	if (!walker->stop) {
		if (walker->count >= walker->skip)
			if (walker->fn(sch, 1, walker) < 0) {
				walker->stop = 1;
				return;
			}
		walker->count++;
	}
}

346
static const struct Qdisc_class_ops red_class_ops = {
347 348 349 350 351 352 353 354
	.graft		=	red_graft,
	.leaf		=	red_leaf,
	.get		=	red_get,
	.put		=	red_put,
	.walk		=	red_walk,
	.dump		=	red_dump_class,
};

355
static struct Qdisc_ops red_qdisc_ops __read_mostly = {
L
Linus Torvalds 已提交
356 357
	.id		=	"red",
	.priv_size	=	sizeof(struct red_sched_data),
358
	.cl_ops		=	&red_class_ops,
L
Linus Torvalds 已提交
359 360
	.enqueue	=	red_enqueue,
	.dequeue	=	red_dequeue,
361
	.peek		=	red_peek,
L
Linus Torvalds 已提交
362 363 364
	.drop		=	red_drop,
	.init		=	red_init,
	.reset		=	red_reset,
365
	.destroy	=	red_destroy,
L
Linus Torvalds 已提交
366 367 368 369 370 371 372 373 374 375
	.change		=	red_change,
	.dump		=	red_dump,
	.dump_stats	=	red_dump_stats,
	.owner		=	THIS_MODULE,
};

static int __init red_module_init(void)
{
	return register_qdisc(&red_qdisc_ops);
}
376 377

static void __exit red_module_exit(void)
L
Linus Torvalds 已提交
378 379 380
{
	unregister_qdisc(&red_qdisc_ops);
}
381

L
Linus Torvalds 已提交
382 383
module_init(red_module_init)
module_exit(red_module_exit)
384

L
Linus Torvalds 已提交
385
MODULE_LICENSE("GPL");