sch_red.c 5.7 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 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 62
{
	struct red_sched_data *q = qdisc_priv(sch);

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

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

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

72 73 74 75 76 77
		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 已提交
78

79 80 81 82 83
			q->stats.prob_mark++;
			break;

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

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

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

97
	q->stats.pdrop++;
98
	return qdisc_drop(skb, sch);
99 100

congestion_drop:
101
	qdisc_drop(skb, sch);
L
Linus Torvalds 已提交
102 103 104
	return NET_XMIT_CN;
}

105
static int red_requeue(struct sk_buff *skb, struct Qdisc* sch)
L
Linus Torvalds 已提交
106 107 108
{
	struct red_sched_data *q = qdisc_priv(sch);

109 110
	if (red_is_idling(&q->parms))
		red_end_of_idle_period(&q->parms);
L
Linus Torvalds 已提交
111

112
	return qdisc_requeue(skb, sch);
L
Linus Torvalds 已提交
113 114
}

115
static struct sk_buff * red_dequeue(struct Qdisc* sch)
L
Linus Torvalds 已提交
116 117 118 119
{
	struct sk_buff *skb;
	struct red_sched_data *q = qdisc_priv(sch);

120
	skb = qdisc_dequeue_head(sch);
121

122
	if (skb == NULL && !red_is_idling(&q->parms))
123 124 125
		red_start_of_idle_period(&q->parms);

	return skb;
L
Linus Torvalds 已提交
126 127 128 129 130 131 132
}

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

133
	skb = qdisc_dequeue_tail(sch);
L
Linus Torvalds 已提交
134 135
	if (skb) {
		unsigned int len = skb->len;
136
		q->stats.other++;
137
		qdisc_drop(skb, sch);
L
Linus Torvalds 已提交
138 139
		return len;
	}
140

141 142 143
	if (!red_is_idling(&q->parms))
		red_start_of_idle_period(&q->parms);

L
Linus Torvalds 已提交
144 145 146 147 148 149 150
	return 0;
}

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

151
	qdisc_reset_queue(sch);
152
	red_restart(&q->parms);
L
Linus Torvalds 已提交
153 154 155 156 157
}

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

161 162 163 164
	if (opt == NULL || rtattr_parse_nested(tb, TCA_RED_MAX, opt))
		return -EINVAL;

	if (tb[TCA_RED_PARMS-1] == NULL ||
L
Linus Torvalds 已提交
165
	    RTA_PAYLOAD(tb[TCA_RED_PARMS-1]) < sizeof(*ctl) ||
166 167
	    tb[TCA_RED_STAB-1] == NULL ||
	    RTA_PAYLOAD(tb[TCA_RED_STAB-1]) < RED_STAB_SIZE)
L
Linus Torvalds 已提交
168 169 170 171 172 173 174 175
		return -EINVAL;

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

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

176 177 178 179
	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]));

180
	if (skb_queue_empty(&sch->q))
181
		red_end_of_idle_period(&q->parms);
182

L
Linus Torvalds 已提交
183 184 185 186 187 188 189 190 191 192 193 194
	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);
195
	struct rtattr *opts = NULL;
196 197 198 199 200 201 202 203 204
	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 已提交
205

206
	opts = RTA_NEST(skb, TCA_OPTIONS);
L
Linus Torvalds 已提交
207
	RTA_PUT(skb, TCA_RED_PARMS, sizeof(opt), &opt);
208
	return RTA_NEST_END(skb, opts);
L
Linus Torvalds 已提交
209 210

rtattr_failure:
211
	return RTA_NEST_CANCEL(skb, opts);
L
Linus Torvalds 已提交
212 213 214 215 216
}

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

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);
}
246 247

static void __exit red_module_exit(void)
L
Linus Torvalds 已提交
248 249 250
{
	unregister_qdisc(&red_qdisc_ops);
}
251

L
Linus Torvalds 已提交
252 253
module_init(red_module_init)
module_exit(red_module_exit)
254

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