sch_red.c 8.8 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 23
 */

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


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

	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.
 */

struct red_sched_data
{
42 43 44 45
	u32			limit;		/* HARD maximal queue length */
	unsigned char		flags;
	struct red_parms	parms;
	struct red_stats	stats;
46
	struct Qdisc		*qdisc;
L
Linus Torvalds 已提交
47 48
};

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

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

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

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

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

70 71 72
	switch (red_action(&q->parms, q->parms.qavg)) {
		case RED_DONT_MARK:
			break;
L
Linus Torvalds 已提交
73

74 75 76 77 78 79
		case RED_PROB_MARK:
			sch->qstats.overlimits++;
			if (!red_use_ecn(q) || !INET_ECN_set_ce(skb)) {
				q->stats.prob_drop++;
				goto congestion_drop;
			}
L
Linus Torvalds 已提交
80

81 82 83 84 85
			q->stats.prob_mark++;
			break;

		case RED_HARD_MARK:
			sch->qstats.overlimits++;
86 87
			if (red_use_harddrop(q) || !red_use_ecn(q) ||
			    !INET_ECN_set_ce(skb)) {
88 89 90 91 92 93
				q->stats.forced_drop++;
				goto congestion_drop;
			}

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

96 97 98 99 100 101 102 103 104 105
	ret = child->enqueue(skb, child);
	if (likely(ret == NET_XMIT_SUCCESS)) {
		sch->bstats.bytes += skb->len;
		sch->bstats.packets++;
		sch->q.qlen++;
	} else {
		q->stats.pdrop++;
		sch->qstats.drops++;
	}
	return ret;
106 107

congestion_drop:
108
	qdisc_drop(skb, sch);
L
Linus Torvalds 已提交
109 110 111
	return NET_XMIT_CN;
}

112
static int red_requeue(struct sk_buff *skb, struct Qdisc* sch)
L
Linus Torvalds 已提交
113 114
{
	struct red_sched_data *q = qdisc_priv(sch);
115 116
	struct Qdisc *child = q->qdisc;
	int ret;
L
Linus Torvalds 已提交
117

118 119
	if (red_is_idling(&q->parms))
		red_end_of_idle_period(&q->parms);
L
Linus Torvalds 已提交
120

121 122 123 124 125 126
	ret = child->ops->requeue(skb, child);
	if (likely(ret == NET_XMIT_SUCCESS)) {
		sch->qstats.requeues++;
		sch->q.qlen++;
	}
	return ret;
L
Linus Torvalds 已提交
127 128
}

129
static struct sk_buff * red_dequeue(struct Qdisc* sch)
L
Linus Torvalds 已提交
130 131 132
{
	struct sk_buff *skb;
	struct red_sched_data *q = qdisc_priv(sch);
133
	struct Qdisc *child = q->qdisc;
L
Linus Torvalds 已提交
134

135 136 137 138
	skb = child->dequeue(child);
	if (skb)
		sch->q.qlen--;
	else if (!red_is_idling(&q->parms))
139 140 141
		red_start_of_idle_period(&q->parms);

	return skb;
L
Linus Torvalds 已提交
142 143 144 145 146
}

static unsigned int red_drop(struct Qdisc* sch)
{
	struct red_sched_data *q = qdisc_priv(sch);
147 148
	struct Qdisc *child = q->qdisc;
	unsigned int len;
L
Linus Torvalds 已提交
149

150
	if (child->ops->drop && (len = child->ops->drop(child)) > 0) {
151
		q->stats.other++;
152 153
		sch->qstats.drops++;
		sch->q.qlen--;
L
Linus Torvalds 已提交
154 155
		return len;
	}
156

157 158 159
	if (!red_is_idling(&q->parms))
		red_start_of_idle_period(&q->parms);

L
Linus Torvalds 已提交
160 161 162 163 164 165 166
	return 0;
}

static void red_reset(struct Qdisc* sch)
{
	struct red_sched_data *q = qdisc_priv(sch);

167 168
	qdisc_reset(q->qdisc);
	sch->q.qlen = 0;
169
	red_restart(&q->parms);
L
Linus Torvalds 已提交
170 171
}

172 173 174 175 176 177
static void red_destroy(struct Qdisc *sch)
{
	struct red_sched_data *q = qdisc_priv(sch);
	qdisc_destroy(q->qdisc);
}

178
static struct Qdisc *red_create_dflt(struct Qdisc *sch, u32 limit)
179
{
180
	struct Qdisc *q;
181 182 183
	struct rtattr *rta;
	int ret;

184 185
	q = qdisc_create_dflt(sch->dev, &bfifo_qdisc_ops,
			      TC_H_MAKE(sch->handle, 1));
186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204
	if (q) {
		rta = kmalloc(RTA_LENGTH(sizeof(struct tc_fifo_qopt)),
		              GFP_KERNEL);
		if (rta) {
			rta->rta_type = RTM_NEWQDISC;
			rta->rta_len = RTA_LENGTH(sizeof(struct tc_fifo_qopt));
			((struct tc_fifo_qopt *)RTA_DATA(rta))->limit = limit;

			ret = q->ops->change(q, rta);
			kfree(rta);

			if (ret == 0)
				return q;
		}
		qdisc_destroy(q);
	}
	return NULL;
}

L
Linus Torvalds 已提交
205 206 207
static int red_change(struct Qdisc *sch, struct rtattr *opt)
{
	struct red_sched_data *q = qdisc_priv(sch);
208
	struct rtattr *tb[TCA_RED_MAX];
L
Linus Torvalds 已提交
209
	struct tc_red_qopt *ctl;
210
	struct Qdisc *child = NULL;
L
Linus Torvalds 已提交
211

212 213 214 215
	if (opt == NULL || rtattr_parse_nested(tb, TCA_RED_MAX, opt))
		return -EINVAL;

	if (tb[TCA_RED_PARMS-1] == NULL ||
L
Linus Torvalds 已提交
216
	    RTA_PAYLOAD(tb[TCA_RED_PARMS-1]) < sizeof(*ctl) ||
217 218
	    tb[TCA_RED_STAB-1] == NULL ||
	    RTA_PAYLOAD(tb[TCA_RED_STAB-1]) < RED_STAB_SIZE)
L
Linus Torvalds 已提交
219 220 221 222
		return -EINVAL;

	ctl = RTA_DATA(tb[TCA_RED_PARMS-1]);

223
	if (ctl->limit > 0) {
224
		child = red_create_dflt(sch, ctl->limit);
225 226 227 228
		if (child == NULL)
			return -ENOMEM;
	}

L
Linus Torvalds 已提交
229 230 231
	sch_tree_lock(sch);
	q->flags = ctl->flags;
	q->limit = ctl->limit;
232 233
	if (child) {
		qdisc_tree_decrease_qlen(q->qdisc, q->qdisc->q.qlen);
234
		qdisc_destroy(xchg(&q->qdisc, child));
235
	}
L
Linus Torvalds 已提交
236

237 238 239 240
	red_set_parms(&q->parms, ctl->qth_min, ctl->qth_max, ctl->Wlog,
				 ctl->Plog, ctl->Scell_log,
				 RTA_DATA(tb[TCA_RED_STAB-1]));

241
	if (skb_queue_empty(&sch->q))
242
		red_end_of_idle_period(&q->parms);
243

L
Linus Torvalds 已提交
244 245 246 247 248 249
	sch_tree_unlock(sch);
	return 0;
}

static int red_init(struct Qdisc* sch, struct rtattr *opt)
{
250 251 252
	struct red_sched_data *q = qdisc_priv(sch);

	q->qdisc = &noop_qdisc;
L
Linus Torvalds 已提交
253 254 255 256 257 258
	return red_change(sch, opt);
}

static int red_dump(struct Qdisc *sch, struct sk_buff *skb)
{
	struct red_sched_data *q = qdisc_priv(sch);
259
	struct rtattr *opts = NULL;
260 261 262 263 264 265 266 267 268
	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 已提交
269

270
	opts = RTA_NEST(skb, TCA_OPTIONS);
L
Linus Torvalds 已提交
271
	RTA_PUT(skb, TCA_RED_PARMS, sizeof(opt), &opt);
272
	return RTA_NEST_END(skb, opts);
L
Linus Torvalds 已提交
273 274

rtattr_failure:
275
	return RTA_NEST_CANCEL(skb, opts);
L
Linus Torvalds 已提交
276 277 278 279 280
}

static int red_dump_stats(struct Qdisc *sch, struct gnet_dump *d)
{
	struct red_sched_data *q = qdisc_priv(sch);
281 282 283 284 285 286 287 288
	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 已提交
289 290
}

291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312
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);

	if (cl != 1)
		return -ENOENT;
	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);
	*old = xchg(&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 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374
	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)
{
	return;
}

static int red_change_class(struct Qdisc *sch, u32 classid, u32 parentid,
			    struct rtattr **tca, unsigned long *arg)
{
	return -ENOSYS;
}

static int red_delete(struct Qdisc *sch, unsigned long cl)
{
	return -ENOSYS;
}

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++;
	}
}

static struct tcf_proto **red_find_tcf(struct Qdisc *sch, unsigned long cl)
{
	return NULL;
}

static struct Qdisc_class_ops red_class_ops = {
	.graft		=	red_graft,
	.leaf		=	red_leaf,
	.get		=	red_get,
	.put		=	red_put,
	.change		=	red_change_class,
	.delete		=	red_delete,
	.walk		=	red_walk,
	.tcf_chain	=	red_find_tcf,
	.dump		=	red_dump_class,
};

L
Linus Torvalds 已提交
375 376 377
static struct Qdisc_ops red_qdisc_ops = {
	.id		=	"red",
	.priv_size	=	sizeof(struct red_sched_data),
378
	.cl_ops		=	&red_class_ops,
L
Linus Torvalds 已提交
379 380 381 382 383 384
	.enqueue	=	red_enqueue,
	.dequeue	=	red_dequeue,
	.requeue	=	red_requeue,
	.drop		=	red_drop,
	.init		=	red_init,
	.reset		=	red_reset,
385
	.destroy	=	red_destroy,
L
Linus Torvalds 已提交
386 387 388 389 390 391 392 393 394 395
	.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);
}
396 397

static void __exit red_module_exit(void)
L
Linus Torvalds 已提交
398 399 400
{
	unregister_qdisc(&red_qdisc_ops);
}
401

L
Linus Torvalds 已提交
402 403
module_init(red_module_init)
module_exit(red_module_exit)
404

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