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

#include <linux/config.h>
#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>
25
#include <net/red.h>
L
Linus Torvalds 已提交
26 27


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

	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
{
43 44 45 46
	u32			limit;		/* HARD maximal queue length */
	unsigned char		flags;
	struct red_parms	parms;
	struct red_stats	stats;
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
static int red_enqueue(struct sk_buff *skb, struct Qdisc* sch)
L
Linus Torvalds 已提交
55 56 57
{
	struct red_sched_data *q = qdisc_priv(sch);

58
	q->parms.qavg = red_calc_qavg(&q->parms, sch->qstats.backlog);
L
Linus Torvalds 已提交
59

60 61
	if (red_is_idling(&q->parms))
		red_end_of_idle_period(&q->parms);
L
Linus Torvalds 已提交
62

63 64 65
	switch (red_action(&q->parms, q->parms.qavg)) {
		case RED_DONT_MARK:
			break;
L
Linus Torvalds 已提交
66

67 68 69 70 71 72
		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 已提交
73

74 75 76 77 78 79 80 81 82 83 84 85
			q->stats.prob_mark++;
			break;

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

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

88 89
	if (sch->qstats.backlog + skb->len <= q->limit)
		return qdisc_enqueue_tail(skb, sch);
L
Linus Torvalds 已提交
90

91
	q->stats.pdrop++;
92
	return qdisc_drop(skb, sch);
93 94

congestion_drop:
95
	qdisc_drop(skb, sch);
L
Linus Torvalds 已提交
96 97 98
	return NET_XMIT_CN;
}

99
static int red_requeue(struct sk_buff *skb, struct Qdisc* sch)
L
Linus Torvalds 已提交
100 101 102
{
	struct red_sched_data *q = qdisc_priv(sch);

103 104
	if (red_is_idling(&q->parms))
		red_end_of_idle_period(&q->parms);
L
Linus Torvalds 已提交
105

106
	return qdisc_requeue(skb, sch);
L
Linus Torvalds 已提交
107 108
}

109
static struct sk_buff * red_dequeue(struct Qdisc* sch)
L
Linus Torvalds 已提交
110 111 112 113
{
	struct sk_buff *skb;
	struct red_sched_data *q = qdisc_priv(sch);

114
	skb = qdisc_dequeue_head(sch);
115

116
	if (skb == NULL && !red_is_idling(&q->parms))
117 118 119
		red_start_of_idle_period(&q->parms);

	return skb;
L
Linus Torvalds 已提交
120 121 122 123 124 125 126
}

static unsigned int red_drop(struct Qdisc* sch)
{
	struct sk_buff *skb;
	struct red_sched_data *q = qdisc_priv(sch);

127
	skb = qdisc_dequeue_tail(sch);
L
Linus Torvalds 已提交
128 129
	if (skb) {
		unsigned int len = skb->len;
130
		q->stats.other++;
131
		qdisc_drop(skb, sch);
L
Linus Torvalds 已提交
132 133
		return len;
	}
134

135 136 137
	if (!red_is_idling(&q->parms))
		red_start_of_idle_period(&q->parms);

L
Linus Torvalds 已提交
138 139 140 141 142 143 144
	return 0;
}

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

145
	qdisc_reset_queue(sch);
146
	red_restart(&q->parms);
L
Linus Torvalds 已提交
147 148 149 150 151
}

static int red_change(struct Qdisc *sch, struct rtattr *opt)
{
	struct red_sched_data *q = qdisc_priv(sch);
152
	struct rtattr *tb[TCA_RED_MAX];
L
Linus Torvalds 已提交
153 154
	struct tc_red_qopt *ctl;

155 156 157 158
	if (opt == NULL || rtattr_parse_nested(tb, TCA_RED_MAX, opt))
		return -EINVAL;

	if (tb[TCA_RED_PARMS-1] == NULL ||
L
Linus Torvalds 已提交
159
	    RTA_PAYLOAD(tb[TCA_RED_PARMS-1]) < sizeof(*ctl) ||
160 161
	    tb[TCA_RED_STAB-1] == NULL ||
	    RTA_PAYLOAD(tb[TCA_RED_STAB-1]) < RED_STAB_SIZE)
L
Linus Torvalds 已提交
162 163 164 165 166 167 168 169
		return -EINVAL;

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

	sch_tree_lock(sch);
	q->flags = ctl->flags;
	q->limit = ctl->limit;

170 171 172 173
	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]));

174
	if (skb_queue_empty(&sch->q))
175
		red_end_of_idle_period(&q->parms);
176

L
Linus Torvalds 已提交
177 178 179 180 181 182 183 184 185 186 187 188
	sch_tree_unlock(sch);
	return 0;
}

static int red_init(struct Qdisc* sch, struct rtattr *opt)
{
	return red_change(sch, opt);
}

static int red_dump(struct Qdisc *sch, struct sk_buff *skb)
{
	struct red_sched_data *q = qdisc_priv(sch);
189
	struct rtattr *opts = NULL;
190 191 192 193 194 195 196 197 198
	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 已提交
199

200
	opts = RTA_NEST(skb, TCA_OPTIONS);
L
Linus Torvalds 已提交
201
	RTA_PUT(skb, TCA_RED_PARMS, sizeof(opt), &opt);
202
	return RTA_NEST_END(skb, opts);
L
Linus Torvalds 已提交
203 204

rtattr_failure:
205
	return RTA_NEST_CANCEL(skb, opts);
L
Linus Torvalds 已提交
206 207 208 209 210
}

static int red_dump_stats(struct Qdisc *sch, struct gnet_dump *d)
{
	struct red_sched_data *q = qdisc_priv(sch);
211 212 213 214 215 216 217 218
	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 已提交
219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
}

static struct Qdisc_ops red_qdisc_ops = {
	.id		=	"red",
	.priv_size	=	sizeof(struct red_sched_data),
	.enqueue	=	red_enqueue,
	.dequeue	=	red_dequeue,
	.requeue	=	red_requeue,
	.drop		=	red_drop,
	.init		=	red_init,
	.reset		=	red_reset,
	.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);
}
240 241

static void __exit red_module_exit(void)
L
Linus Torvalds 已提交
242 243 244
{
	unregister_qdisc(&red_qdisc_ops);
}
245

L
Linus Torvalds 已提交
246 247
module_init(red_module_init)
module_exit(red_module_exit)
248

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