blob: 51dcc2aa5c926b735fa683135bddaf3c66114355 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * net/sched/sch_gred.c Generic Random Early Detection queue.
3 *
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version
8 * 2 of the License, or (at your option) any later version.
9 *
10 * Authors: J Hadi Salim (hadi@cyberus.ca) 1998-2002
11 *
12 * 991129: - Bug fix with grio mode
13 * - a better sing. AvgQ mode with Grio(WRED)
14 * - A finer grained VQ dequeue based on sugestion
15 * from Ren Liu
16 * - More error checks
17 *
Thomas Graf1e4dfaf92005-11-05 21:14:25 +010018 * For all the glorious comments look at include/net/red.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 */
20
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/types.h>
24#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/skbuff.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <net/pkt_sched.h>
Thomas Graf22b33422005-11-05 21:14:16 +010027#include <net/red.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Thomas Graff62d6b92005-11-05 21:14:15 +010029#define GRED_DEF_PRIO (MAX_DPs / 2)
Thomas Graf716a1b42005-11-05 21:14:20 +010030#define GRED_VQ_MASK (MAX_DPs - 1)
Thomas Graff62d6b92005-11-05 21:14:15 +010031
Linus Torvalds1da177e2005-04-16 15:20:36 -070032struct gred_sched_data;
33struct gred_sched;
34
35struct gred_sched_data
36{
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 u32 limit; /* HARD maximal queue length */
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 u32 DP; /* the drop pramaters */
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 u32 bytesin; /* bytes seen on virtualQ so far*/
40 u32 packetsin; /* packets seen on virtualQ so far*/
41 u32 backlog; /* bytes on the virtualQ */
Thomas Graf1e4dfaf92005-11-05 21:14:25 +010042 u8 prio; /* the prio of this vq */
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Thomas Graf22b33422005-11-05 21:14:16 +010044 struct red_parms parms;
45 struct red_stats stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046};
47
Thomas Grafdea3f622005-11-05 21:14:09 +010048enum {
49 GRED_WRED_MODE = 1,
Thomas Grafd6fd4e92005-11-05 21:14:10 +010050 GRED_RIO_MODE,
Thomas Grafdea3f622005-11-05 21:14:09 +010051};
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053struct gred_sched
54{
55 struct gred_sched_data *tab[MAX_DPs];
Thomas Grafdea3f622005-11-05 21:14:09 +010056 unsigned long flags;
Thomas Grafb38c7ee2005-11-05 21:14:27 +010057 u32 red_flags;
Thomas Graf1e4dfaf92005-11-05 21:14:25 +010058 u32 DPs;
59 u32 def;
Thomas Graf70517032005-11-05 21:14:23 +010060 struct red_parms wred_set;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061};
62
Thomas Grafdea3f622005-11-05 21:14:09 +010063static inline int gred_wred_mode(struct gred_sched *table)
64{
65 return test_bit(GRED_WRED_MODE, &table->flags);
66}
67
68static inline void gred_enable_wred_mode(struct gred_sched *table)
69{
70 __set_bit(GRED_WRED_MODE, &table->flags);
71}
72
73static inline void gred_disable_wred_mode(struct gred_sched *table)
74{
75 __clear_bit(GRED_WRED_MODE, &table->flags);
76}
77
Thomas Grafd6fd4e92005-11-05 21:14:10 +010078static inline int gred_rio_mode(struct gred_sched *table)
79{
80 return test_bit(GRED_RIO_MODE, &table->flags);
81}
82
83static inline void gred_enable_rio_mode(struct gred_sched *table)
84{
85 __set_bit(GRED_RIO_MODE, &table->flags);
86}
87
88static inline void gred_disable_rio_mode(struct gred_sched *table)
89{
90 __clear_bit(GRED_RIO_MODE, &table->flags);
91}
92
Thomas Grafdea3f622005-11-05 21:14:09 +010093static inline int gred_wred_mode_check(struct Qdisc *sch)
94{
95 struct gred_sched *table = qdisc_priv(sch);
96 int i;
97
98 /* Really ugly O(n^2) but shouldn't be necessary too frequent. */
99 for (i = 0; i < table->DPs; i++) {
100 struct gred_sched_data *q = table->tab[i];
101 int n;
102
103 if (q == NULL)
104 continue;
105
106 for (n = 0; n < table->DPs; n++)
107 if (table->tab[n] && table->tab[n] != q &&
108 table->tab[n]->prio == q->prio)
109 return 1;
110 }
111
112 return 0;
113}
114
Thomas Graf22b33422005-11-05 21:14:16 +0100115static inline unsigned int gred_backlog(struct gred_sched *table,
116 struct gred_sched_data *q,
117 struct Qdisc *sch)
118{
119 if (gred_wred_mode(table))
120 return sch->qstats.backlog;
121 else
122 return q->backlog;
123}
124
Thomas Graf716a1b42005-11-05 21:14:20 +0100125static inline u16 tc_index_to_dp(struct sk_buff *skb)
126{
127 return skb->tc_index & GRED_VQ_MASK;
128}
129
Thomas Graf70517032005-11-05 21:14:23 +0100130static inline void gred_load_wred_set(struct gred_sched *table,
131 struct gred_sched_data *q)
132{
133 q->parms.qavg = table->wred_set.qavg;
134 q->parms.qidlestart = table->wred_set.qidlestart;
135}
136
137static inline void gred_store_wred_set(struct gred_sched *table,
138 struct gred_sched_data *q)
139{
140 table->wred_set.qavg = q->parms.qavg;
141}
142
Thomas Grafb38c7ee2005-11-05 21:14:27 +0100143static inline int gred_use_ecn(struct gred_sched *t)
144{
145 return t->red_flags & TC_RED_ECN;
146}
147
Thomas Grafbdc450a2005-11-05 21:14:28 +0100148static inline int gred_use_harddrop(struct gred_sched *t)
149{
150 return t->red_flags & TC_RED_HARDDROP;
151}
152
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100153static int gred_enqueue(struct sk_buff *skb, struct Qdisc* sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 struct gred_sched_data *q=NULL;
156 struct gred_sched *t= qdisc_priv(sch);
Thomas Graf22b33422005-11-05 21:14:16 +0100157 unsigned long qavg = 0;
Thomas Graf4a591832005-11-05 21:14:22 +0100158 u16 dp = tc_index_to_dp(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Thomas Graf716a1b42005-11-05 21:14:20 +0100160 if (dp >= t->DPs || (q = t->tab[dp]) == NULL) {
Thomas Graf18e3fb842005-11-05 21:14:21 +0100161 dp = t->def;
162
163 if ((q = t->tab[dp]) == NULL) {
164 /* Pass through packets not assigned to a DP
165 * if no default DP has been configured. This
166 * allows for DP flows to be left untouched.
167 */
David S. Miller5ce2d482008-07-08 17:06:30 -0700168 if (skb_queue_len(&sch->q) < qdisc_dev(sch)->tx_queue_len)
Thomas Graf18e3fb842005-11-05 21:14:21 +0100169 return qdisc_enqueue_tail(skb, sch);
170 else
171 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 }
Thomas Graf18e3fb842005-11-05 21:14:21 +0100173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 /* fix tc_index? --could be controvesial but needed for
175 requeueing */
Thomas Graf18e3fb842005-11-05 21:14:21 +0100176 skb->tc_index = (skb->tc_index & ~GRED_VQ_MASK) | dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 }
178
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100179 /* sum up all the qaves of prios <= to ours to get the new qave */
Thomas Grafd6fd4e92005-11-05 21:14:10 +0100180 if (!gred_wred_mode(t) && gred_rio_mode(t)) {
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100181 int i;
182
183 for (i = 0; i < t->DPs; i++) {
184 if (t->tab[i] && t->tab[i]->prio < q->prio &&
Thomas Graf22b33422005-11-05 21:14:16 +0100185 !red_is_idling(&t->tab[i]->parms))
186 qavg +=t->tab[i]->parms.qavg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 }
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 }
190
191 q->packetsin++;
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700192 q->bytesin += qdisc_pkt_len(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100194 if (gred_wred_mode(t))
Thomas Graf70517032005-11-05 21:14:23 +0100195 gred_load_wred_set(t, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Thomas Graf22b33422005-11-05 21:14:16 +0100197 q->parms.qavg = red_calc_qavg(&q->parms, gred_backlog(t, q, sch));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Thomas Graf22b33422005-11-05 21:14:16 +0100199 if (red_is_idling(&q->parms))
200 red_end_of_idle_period(&q->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Thomas Grafdea3f622005-11-05 21:14:09 +0100202 if (gred_wred_mode(t))
Thomas Graf70517032005-11-05 21:14:23 +0100203 gred_store_wred_set(t, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Thomas Graf22b33422005-11-05 21:14:16 +0100205 switch (red_action(&q->parms, q->parms.qavg + qavg)) {
206 case RED_DONT_MARK:
207 break;
208
209 case RED_PROB_MARK:
210 sch->qstats.overlimits++;
Thomas Grafb38c7ee2005-11-05 21:14:27 +0100211 if (!gred_use_ecn(t) || !INET_ECN_set_ce(skb)) {
212 q->stats.prob_drop++;
213 goto congestion_drop;
214 }
215
216 q->stats.prob_mark++;
217 break;
Thomas Graf22b33422005-11-05 21:14:16 +0100218
219 case RED_HARD_MARK:
220 sch->qstats.overlimits++;
Thomas Grafbdc450a2005-11-05 21:14:28 +0100221 if (gred_use_harddrop(t) || !gred_use_ecn(t) ||
222 !INET_ECN_set_ce(skb)) {
Thomas Grafb38c7ee2005-11-05 21:14:27 +0100223 q->stats.forced_drop++;
224 goto congestion_drop;
225 }
226 q->stats.forced_mark++;
227 break;
Thomas Graf22b33422005-11-05 21:14:16 +0100228 }
229
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700230 if (q->backlog + qdisc_pkt_len(skb) <= q->limit) {
231 q->backlog += qdisc_pkt_len(skb);
Thomas Grafedf7a7b2005-11-05 21:14:19 +0100232 return qdisc_enqueue_tail(skb, sch);
Thomas Graf22b33422005-11-05 21:14:16 +0100233 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Thomas Graf22b33422005-11-05 21:14:16 +0100235 q->stats.pdrop++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236drop:
Thomas Grafedf7a7b2005-11-05 21:14:19 +0100237 return qdisc_drop(skb, sch);
Thomas Grafc3b553c2005-11-05 21:14:18 +0100238
239congestion_drop:
Thomas Grafedf7a7b2005-11-05 21:14:19 +0100240 qdisc_drop(skb, sch);
Thomas Grafc3b553c2005-11-05 21:14:18 +0100241 return NET_XMIT_CN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242}
243
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100244static struct sk_buff *gred_dequeue(struct Qdisc* sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
246 struct sk_buff *skb;
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100247 struct gred_sched *t = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Thomas Grafedf7a7b2005-11-05 21:14:19 +0100249 skb = qdisc_dequeue_head(sch);
250
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 if (skb) {
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100252 struct gred_sched_data *q;
Thomas Graf18e3fb842005-11-05 21:14:21 +0100253 u16 dp = tc_index_to_dp(skb);
254
255 if (dp >= t->DPs || (q = t->tab[dp]) == NULL) {
256 if (net_ratelimit())
257 printk(KERN_WARNING "GRED: Unable to relocate "
258 "VQ 0x%x after dequeue, screwing up "
259 "backlog.\n", tc_index_to_dp(skb));
260 } else {
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700261 q->backlog -= qdisc_pkt_len(skb);
Thomas Graf18e3fb842005-11-05 21:14:21 +0100262
Thomas Grafdea3f622005-11-05 21:14:09 +0100263 if (!q->backlog && !gred_wred_mode(t))
Thomas Graf22b33422005-11-05 21:14:16 +0100264 red_start_of_idle_period(&q->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 }
Thomas Graf18e3fb842005-11-05 21:14:21 +0100266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 return skb;
268 }
269
Thomas Grafd8f64e12005-11-05 21:14:26 +0100270 if (gred_wred_mode(t) && !red_is_idling(&t->wred_set))
Thomas Graf70517032005-11-05 21:14:23 +0100271 red_start_of_idle_period(&t->wred_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
273 return NULL;
274}
275
276static unsigned int gred_drop(struct Qdisc* sch)
277{
278 struct sk_buff *skb;
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100279 struct gred_sched *t = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Thomas Grafedf7a7b2005-11-05 21:14:19 +0100281 skb = qdisc_dequeue_tail(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 if (skb) {
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700283 unsigned int len = qdisc_pkt_len(skb);
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100284 struct gred_sched_data *q;
Thomas Graf18e3fb842005-11-05 21:14:21 +0100285 u16 dp = tc_index_to_dp(skb);
286
287 if (dp >= t->DPs || (q = t->tab[dp]) == NULL) {
288 if (net_ratelimit())
289 printk(KERN_WARNING "GRED: Unable to relocate "
290 "VQ 0x%x while dropping, screwing up "
291 "backlog.\n", tc_index_to_dp(skb));
292 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 q->backlog -= len;
Thomas Graf22b33422005-11-05 21:14:16 +0100294 q->stats.other++;
Thomas Graf18e3fb842005-11-05 21:14:21 +0100295
Thomas Grafdea3f622005-11-05 21:14:09 +0100296 if (!q->backlog && !gred_wred_mode(t))
Thomas Graf22b33422005-11-05 21:14:16 +0100297 red_start_of_idle_period(&q->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 }
299
Thomas Grafedf7a7b2005-11-05 21:14:19 +0100300 qdisc_drop(skb, sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 return len;
302 }
303
Thomas Grafd8f64e12005-11-05 21:14:26 +0100304 if (gred_wred_mode(t) && !red_is_idling(&t->wred_set))
Thomas Graf70517032005-11-05 21:14:23 +0100305 red_start_of_idle_period(&t->wred_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 return 0;
308
309}
310
311static void gred_reset(struct Qdisc* sch)
312{
313 int i;
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100314 struct gred_sched *t = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Thomas Grafedf7a7b2005-11-05 21:14:19 +0100316 qdisc_reset_queue(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900318 for (i = 0; i < t->DPs; i++) {
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100319 struct gred_sched_data *q = t->tab[i];
320
321 if (!q)
322 continue;
323
Thomas Graf22b33422005-11-05 21:14:16 +0100324 red_restart(&q->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 q->backlog = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 }
327}
328
Thomas Graf66396072005-11-05 21:14:13 +0100329static inline void gred_destroy_vq(struct gred_sched_data *q)
330{
331 kfree(q);
332}
333
Patrick McHardy1e904742008-01-22 22:11:17 -0800334static inline int gred_change_table_def(struct Qdisc *sch, struct nlattr *dps)
Thomas Graf66396072005-11-05 21:14:13 +0100335{
336 struct gred_sched *table = qdisc_priv(sch);
337 struct tc_gred_sopt *sopt;
338 int i;
339
Patrick McHardy27a34212008-01-23 20:35:39 -0800340 if (dps == NULL)
Thomas Graf66396072005-11-05 21:14:13 +0100341 return -EINVAL;
342
Patrick McHardy1e904742008-01-22 22:11:17 -0800343 sopt = nla_data(dps);
Thomas Graf66396072005-11-05 21:14:13 +0100344
345 if (sopt->DPs > MAX_DPs || sopt->DPs == 0 || sopt->def_DP >= sopt->DPs)
346 return -EINVAL;
347
348 sch_tree_lock(sch);
349 table->DPs = sopt->DPs;
350 table->def = sopt->def_DP;
Thomas Grafb38c7ee2005-11-05 21:14:27 +0100351 table->red_flags = sopt->flags;
Thomas Graf66396072005-11-05 21:14:13 +0100352
353 /*
354 * Every entry point to GRED is synchronized with the above code
355 * and the DP is checked against DPs, i.e. shadowed VQs can no
356 * longer be found so we can unlock right here.
357 */
358 sch_tree_unlock(sch);
359
360 if (sopt->grio) {
361 gred_enable_rio_mode(table);
362 gred_disable_wred_mode(table);
363 if (gred_wred_mode_check(sch))
364 gred_enable_wred_mode(table);
365 } else {
366 gred_disable_rio_mode(table);
367 gred_disable_wred_mode(table);
368 }
369
370 for (i = table->DPs; i < MAX_DPs; i++) {
371 if (table->tab[i]) {
372 printk(KERN_WARNING "GRED: Warning: Destroying "
373 "shadowed VQ 0x%x\n", i);
374 gred_destroy_vq(table->tab[i]);
375 table->tab[i] = NULL;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900376 }
Thomas Graf66396072005-11-05 21:14:13 +0100377 }
378
Thomas Graf66396072005-11-05 21:14:13 +0100379 return 0;
380}
381
Thomas Graff62d6b92005-11-05 21:14:15 +0100382static inline int gred_change_vq(struct Qdisc *sch, int dp,
383 struct tc_gred_qopt *ctl, int prio, u8 *stab)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384{
385 struct gred_sched *table = qdisc_priv(sch);
386 struct gred_sched_data *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Thomas Graff62d6b92005-11-05 21:14:15 +0100388 if (table->tab[dp] == NULL) {
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700389 table->tab[dp] = kzalloc(sizeof(*q), GFP_KERNEL);
Thomas Graff62d6b92005-11-05 21:14:15 +0100390 if (table->tab[dp] == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 }
393
Thomas Graff62d6b92005-11-05 21:14:15 +0100394 q = table->tab[dp];
395 q->DP = dp;
396 q->prio = prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 q->limit = ctl->limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Thomas Graf22b33422005-11-05 21:14:16 +0100399 if (q->backlog == 0)
400 red_end_of_idle_period(&q->parms);
401
402 red_set_parms(&q->parms,
403 ctl->qth_min, ctl->qth_max, ctl->Wlog, ctl->Plog,
404 ctl->Scell_log, stab);
405
Thomas Graff62d6b92005-11-05 21:14:15 +0100406 return 0;
407}
408
Patrick McHardy27a34212008-01-23 20:35:39 -0800409static const struct nla_policy gred_policy[TCA_GRED_MAX + 1] = {
410 [TCA_GRED_PARMS] = { .len = sizeof(struct tc_gred_qopt) },
411 [TCA_GRED_STAB] = { .len = 256 },
412 [TCA_GRED_DPS] = { .len = sizeof(struct tc_gred_sopt) },
413};
414
Patrick McHardy1e904742008-01-22 22:11:17 -0800415static int gred_change(struct Qdisc *sch, struct nlattr *opt)
Thomas Graff62d6b92005-11-05 21:14:15 +0100416{
417 struct gred_sched *table = qdisc_priv(sch);
418 struct tc_gred_qopt *ctl;
Patrick McHardy1e904742008-01-22 22:11:17 -0800419 struct nlattr *tb[TCA_GRED_MAX + 1];
Patrick McHardycee63722008-01-23 20:33:32 -0800420 int err, prio = GRED_DEF_PRIO;
Thomas Graff62d6b92005-11-05 21:14:15 +0100421 u8 *stab;
422
Patrick McHardycee63722008-01-23 20:33:32 -0800423 if (opt == NULL)
Thomas Graff62d6b92005-11-05 21:14:15 +0100424 return -EINVAL;
425
Patrick McHardy27a34212008-01-23 20:35:39 -0800426 err = nla_parse_nested(tb, TCA_GRED_MAX, opt, gred_policy);
Patrick McHardycee63722008-01-23 20:33:32 -0800427 if (err < 0)
428 return err;
429
Patrick McHardy1e904742008-01-22 22:11:17 -0800430 if (tb[TCA_GRED_PARMS] == NULL && tb[TCA_GRED_STAB] == NULL)
Thomas Graff62d6b92005-11-05 21:14:15 +0100431 return gred_change_table_def(sch, opt);
432
Patrick McHardy1e904742008-01-22 22:11:17 -0800433 if (tb[TCA_GRED_PARMS] == NULL ||
Patrick McHardy27a34212008-01-23 20:35:39 -0800434 tb[TCA_GRED_STAB] == NULL)
Thomas Graff62d6b92005-11-05 21:14:15 +0100435 return -EINVAL;
436
Patrick McHardycee63722008-01-23 20:33:32 -0800437 err = -EINVAL;
Patrick McHardy1e904742008-01-22 22:11:17 -0800438 ctl = nla_data(tb[TCA_GRED_PARMS]);
439 stab = nla_data(tb[TCA_GRED_STAB]);
Thomas Graff62d6b92005-11-05 21:14:15 +0100440
441 if (ctl->DP >= table->DPs)
442 goto errout;
443
444 if (gred_rio_mode(table)) {
445 if (ctl->prio == 0) {
446 int def_prio = GRED_DEF_PRIO;
447
448 if (table->tab[table->def])
449 def_prio = table->tab[table->def]->prio;
450
451 printk(KERN_DEBUG "GRED: DP %u does not have a prio "
452 "setting default to %d\n", ctl->DP, def_prio);
453
454 prio = def_prio;
455 } else
456 prio = ctl->prio;
457 }
458
459 sch_tree_lock(sch);
460
461 err = gred_change_vq(sch, ctl->DP, ctl, prio, stab);
462 if (err < 0)
463 goto errout_locked;
464
Thomas Grafd6fd4e92005-11-05 21:14:10 +0100465 if (gred_rio_mode(table)) {
Thomas Grafdea3f622005-11-05 21:14:09 +0100466 gred_disable_wred_mode(table);
467 if (gred_wred_mode_check(sch))
468 gred_enable_wred_mode(table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 }
470
Thomas Graff62d6b92005-11-05 21:14:15 +0100471 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
Thomas Graff62d6b92005-11-05 21:14:15 +0100473errout_locked:
474 sch_tree_unlock(sch);
475errout:
476 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477}
478
Patrick McHardy1e904742008-01-22 22:11:17 -0800479static int gred_init(struct Qdisc *sch, struct nlattr *opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480{
Patrick McHardy1e904742008-01-22 22:11:17 -0800481 struct nlattr *tb[TCA_GRED_MAX + 1];
Patrick McHardycee63722008-01-23 20:33:32 -0800482 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Patrick McHardycee63722008-01-23 20:33:32 -0800484 if (opt == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 return -EINVAL;
486
Patrick McHardy27a34212008-01-23 20:35:39 -0800487 err = nla_parse_nested(tb, TCA_GRED_MAX, opt, gred_policy);
Patrick McHardycee63722008-01-23 20:33:32 -0800488 if (err < 0)
489 return err;
490
Patrick McHardy1e904742008-01-22 22:11:17 -0800491 if (tb[TCA_GRED_PARMS] || tb[TCA_GRED_STAB])
Thomas Graf66396072005-11-05 21:14:13 +0100492 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Patrick McHardy1e904742008-01-22 22:11:17 -0800494 return gred_change_table_def(sch, tb[TCA_GRED_DPS]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495}
496
497static int gred_dump(struct Qdisc *sch, struct sk_buff *skb)
498{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 struct gred_sched *table = qdisc_priv(sch);
Patrick McHardy1e904742008-01-22 22:11:17 -0800500 struct nlattr *parms, *opts = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 int i;
Thomas Grafe0636822005-11-05 21:14:12 +0100502 struct tc_gred_sopt sopt = {
503 .DPs = table->DPs,
504 .def_DP = table->def,
505 .grio = gred_rio_mode(table),
Thomas Grafb38c7ee2005-11-05 21:14:27 +0100506 .flags = table->red_flags,
Thomas Grafe0636822005-11-05 21:14:12 +0100507 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
Patrick McHardy1e904742008-01-22 22:11:17 -0800509 opts = nla_nest_start(skb, TCA_OPTIONS);
510 if (opts == NULL)
511 goto nla_put_failure;
512 NLA_PUT(skb, TCA_GRED_DPS, sizeof(sopt), &sopt);
513 parms = nla_nest_start(skb, TCA_GRED_PARMS);
514 if (parms == NULL)
515 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
Thomas Graf05f1cc02005-11-05 21:14:11 +0100517 for (i = 0; i < MAX_DPs; i++) {
518 struct gred_sched_data *q = table->tab[i];
519 struct tc_gred_qopt opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Thomas Graf05f1cc02005-11-05 21:14:11 +0100521 memset(&opt, 0, sizeof(opt));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
523 if (!q) {
524 /* hack -- fix at some point with proper message
525 This is how we indicate to tc that there is no VQ
526 at this DP */
527
Thomas Graf05f1cc02005-11-05 21:14:11 +0100528 opt.DP = MAX_DPs + i;
529 goto append_opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 }
531
Thomas Graf05f1cc02005-11-05 21:14:11 +0100532 opt.limit = q->limit;
533 opt.DP = q->DP;
534 opt.backlog = q->backlog;
535 opt.prio = q->prio;
Thomas Graf22b33422005-11-05 21:14:16 +0100536 opt.qth_min = q->parms.qth_min >> q->parms.Wlog;
537 opt.qth_max = q->parms.qth_max >> q->parms.Wlog;
538 opt.Wlog = q->parms.Wlog;
539 opt.Plog = q->parms.Plog;
540 opt.Scell_log = q->parms.Scell_log;
541 opt.other = q->stats.other;
542 opt.early = q->stats.prob_drop;
543 opt.forced = q->stats.forced_drop;
544 opt.pdrop = q->stats.pdrop;
Thomas Graf05f1cc02005-11-05 21:14:11 +0100545 opt.packets = q->packetsin;
546 opt.bytesin = q->bytesin;
547
Thomas Graf22b33422005-11-05 21:14:16 +0100548 if (gred_wred_mode(table)) {
549 q->parms.qidlestart =
550 table->tab[table->def]->parms.qidlestart;
551 q->parms.qavg = table->tab[table->def]->parms.qavg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Thomas Graf22b33422005-11-05 21:14:16 +0100554 opt.qave = red_calc_qavg(&q->parms, q->parms.qavg);
555
Thomas Graf05f1cc02005-11-05 21:14:11 +0100556append_opt:
Patrick McHardy1e904742008-01-22 22:11:17 -0800557 if (nla_append(skb, sizeof(opt), &opt) < 0)
558 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 }
560
Patrick McHardy1e904742008-01-22 22:11:17 -0800561 nla_nest_end(skb, parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Patrick McHardy1e904742008-01-22 22:11:17 -0800563 return nla_nest_end(skb, opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
Patrick McHardy1e904742008-01-22 22:11:17 -0800565nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -0700566 nla_nest_cancel(skb, opts);
567 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568}
569
570static void gred_destroy(struct Qdisc *sch)
571{
572 struct gred_sched *table = qdisc_priv(sch);
573 int i;
574
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100575 for (i = 0; i < table->DPs; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 if (table->tab[i])
Thomas Graf66396072005-11-05 21:14:13 +0100577 gred_destroy_vq(table->tab[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 }
579}
580
Eric Dumazet20fea082007-11-14 01:44:41 -0800581static struct Qdisc_ops gred_qdisc_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 .id = "gred",
583 .priv_size = sizeof(struct gred_sched),
584 .enqueue = gred_enqueue,
585 .dequeue = gred_dequeue,
Jarek Poplawski8e3af972008-10-31 00:45:55 -0700586 .peek = qdisc_peek_head,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 .drop = gred_drop,
588 .init = gred_init,
589 .reset = gred_reset,
590 .destroy = gred_destroy,
591 .change = gred_change,
592 .dump = gred_dump,
593 .owner = THIS_MODULE,
594};
595
596static int __init gred_module_init(void)
597{
598 return register_qdisc(&gred_qdisc_ops);
599}
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100600
601static void __exit gred_module_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602{
603 unregister_qdisc(&gred_qdisc_ops);
604}
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100605
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606module_init(gred_module_init)
607module_exit(gred_module_exit)
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100608
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609MODULE_LICENSE("GPL");