blob: 3cc6dda02e2e0a1297ecc8a2d5a7e3707a4b556c [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/types.h>
23#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/skbuff.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <net/pkt_sched.h>
Thomas Graf22b33422005-11-05 21:14:16 +010026#include <net/red.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Thomas Graff62d6b92005-11-05 21:14:15 +010028#define GRED_DEF_PRIO (MAX_DPs / 2)
Thomas Graf716a1b42005-11-05 21:14:20 +010029#define GRED_VQ_MASK (MAX_DPs - 1)
Thomas Graff62d6b92005-11-05 21:14:15 +010030
Linus Torvalds1da177e2005-04-16 15:20:36 -070031struct gred_sched_data;
32struct gred_sched;
33
34struct gred_sched_data
35{
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 u32 limit; /* HARD maximal queue length */
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 u32 DP; /* the drop pramaters */
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 u32 bytesin; /* bytes seen on virtualQ so far*/
39 u32 packetsin; /* packets seen on virtualQ so far*/
40 u32 backlog; /* bytes on the virtualQ */
Thomas Graf1e4dfaf92005-11-05 21:14:25 +010041 u8 prio; /* the prio of this vq */
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Thomas Graf22b33422005-11-05 21:14:16 +010043 struct red_parms parms;
44 struct red_stats stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045};
46
Thomas Grafdea3f622005-11-05 21:14:09 +010047enum {
48 GRED_WRED_MODE = 1,
Thomas Grafd6fd4e92005-11-05 21:14:10 +010049 GRED_RIO_MODE,
Thomas Grafdea3f622005-11-05 21:14:09 +010050};
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052struct gred_sched
53{
54 struct gred_sched_data *tab[MAX_DPs];
Thomas Grafdea3f622005-11-05 21:14:09 +010055 unsigned long flags;
Thomas Grafb38c7ee2005-11-05 21:14:27 +010056 u32 red_flags;
Thomas Graf1e4dfaf92005-11-05 21:14:25 +010057 u32 DPs;
58 u32 def;
Thomas Graf70517032005-11-05 21:14:23 +010059 struct red_parms wred_set;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060};
61
Thomas Grafdea3f622005-11-05 21:14:09 +010062static inline int gred_wred_mode(struct gred_sched *table)
63{
64 return test_bit(GRED_WRED_MODE, &table->flags);
65}
66
67static inline void gred_enable_wred_mode(struct gred_sched *table)
68{
69 __set_bit(GRED_WRED_MODE, &table->flags);
70}
71
72static inline void gred_disable_wred_mode(struct gred_sched *table)
73{
74 __clear_bit(GRED_WRED_MODE, &table->flags);
75}
76
Thomas Grafd6fd4e92005-11-05 21:14:10 +010077static inline int gred_rio_mode(struct gred_sched *table)
78{
79 return test_bit(GRED_RIO_MODE, &table->flags);
80}
81
82static inline void gred_enable_rio_mode(struct gred_sched *table)
83{
84 __set_bit(GRED_RIO_MODE, &table->flags);
85}
86
87static inline void gred_disable_rio_mode(struct gred_sched *table)
88{
89 __clear_bit(GRED_RIO_MODE, &table->flags);
90}
91
Thomas Grafdea3f622005-11-05 21:14:09 +010092static inline int gred_wred_mode_check(struct Qdisc *sch)
93{
94 struct gred_sched *table = qdisc_priv(sch);
95 int i;
96
97 /* Really ugly O(n^2) but shouldn't be necessary too frequent. */
98 for (i = 0; i < table->DPs; i++) {
99 struct gred_sched_data *q = table->tab[i];
100 int n;
101
102 if (q == NULL)
103 continue;
104
105 for (n = 0; n < table->DPs; n++)
106 if (table->tab[n] && table->tab[n] != q &&
107 table->tab[n]->prio == q->prio)
108 return 1;
109 }
110
111 return 0;
112}
113
Thomas Graf22b33422005-11-05 21:14:16 +0100114static inline unsigned int gred_backlog(struct gred_sched *table,
115 struct gred_sched_data *q,
116 struct Qdisc *sch)
117{
118 if (gred_wred_mode(table))
119 return sch->qstats.backlog;
120 else
121 return q->backlog;
122}
123
Thomas Graf716a1b42005-11-05 21:14:20 +0100124static inline u16 tc_index_to_dp(struct sk_buff *skb)
125{
126 return skb->tc_index & GRED_VQ_MASK;
127}
128
Thomas Graf70517032005-11-05 21:14:23 +0100129static inline void gred_load_wred_set(struct gred_sched *table,
130 struct gred_sched_data *q)
131{
132 q->parms.qavg = table->wred_set.qavg;
133 q->parms.qidlestart = table->wred_set.qidlestart;
134}
135
136static inline void gred_store_wred_set(struct gred_sched *table,
137 struct gred_sched_data *q)
138{
139 table->wred_set.qavg = q->parms.qavg;
140}
141
Thomas Grafb38c7ee2005-11-05 21:14:27 +0100142static inline int gred_use_ecn(struct gred_sched *t)
143{
144 return t->red_flags & TC_RED_ECN;
145}
146
Thomas Grafbdc450a2005-11-05 21:14:28 +0100147static inline int gred_use_harddrop(struct gred_sched *t)
148{
149 return t->red_flags & TC_RED_HARDDROP;
150}
151
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100152static int gred_enqueue(struct sk_buff *skb, struct Qdisc* sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 struct gred_sched_data *q=NULL;
155 struct gred_sched *t= qdisc_priv(sch);
Thomas Graf22b33422005-11-05 21:14:16 +0100156 unsigned long qavg = 0;
Thomas Graf4a591832005-11-05 21:14:22 +0100157 u16 dp = tc_index_to_dp(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Thomas Graf716a1b42005-11-05 21:14:20 +0100159 if (dp >= t->DPs || (q = t->tab[dp]) == NULL) {
Thomas Graf18e3fb842005-11-05 21:14:21 +0100160 dp = t->def;
161
162 if ((q = t->tab[dp]) == NULL) {
163 /* Pass through packets not assigned to a DP
164 * if no default DP has been configured. This
165 * allows for DP flows to be left untouched.
166 */
167 if (skb_queue_len(&sch->q) < sch->dev->tx_queue_len)
168 return qdisc_enqueue_tail(skb, sch);
169 else
170 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 }
Thomas Graf18e3fb842005-11-05 21:14:21 +0100172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 /* fix tc_index? --could be controvesial but needed for
174 requeueing */
Thomas Graf18e3fb842005-11-05 21:14:21 +0100175 skb->tc_index = (skb->tc_index & ~GRED_VQ_MASK) | dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 }
177
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100178 /* sum up all the qaves of prios <= to ours to get the new qave */
Thomas Grafd6fd4e92005-11-05 21:14:10 +0100179 if (!gred_wred_mode(t) && gred_rio_mode(t)) {
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100180 int i;
181
182 for (i = 0; i < t->DPs; i++) {
183 if (t->tab[i] && t->tab[i]->prio < q->prio &&
Thomas Graf22b33422005-11-05 21:14:16 +0100184 !red_is_idling(&t->tab[i]->parms))
185 qavg +=t->tab[i]->parms.qavg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 }
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 }
189
190 q->packetsin++;
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100191 q->bytesin += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100193 if (gred_wred_mode(t))
Thomas Graf70517032005-11-05 21:14:23 +0100194 gred_load_wred_set(t, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Thomas Graf22b33422005-11-05 21:14:16 +0100196 q->parms.qavg = red_calc_qavg(&q->parms, gred_backlog(t, q, sch));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Thomas Graf22b33422005-11-05 21:14:16 +0100198 if (red_is_idling(&q->parms))
199 red_end_of_idle_period(&q->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Thomas Grafdea3f622005-11-05 21:14:09 +0100201 if (gred_wred_mode(t))
Thomas Graf70517032005-11-05 21:14:23 +0100202 gred_store_wred_set(t, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Thomas Graf22b33422005-11-05 21:14:16 +0100204 switch (red_action(&q->parms, q->parms.qavg + qavg)) {
205 case RED_DONT_MARK:
206 break;
207
208 case RED_PROB_MARK:
209 sch->qstats.overlimits++;
Thomas Grafb38c7ee2005-11-05 21:14:27 +0100210 if (!gred_use_ecn(t) || !INET_ECN_set_ce(skb)) {
211 q->stats.prob_drop++;
212 goto congestion_drop;
213 }
214
215 q->stats.prob_mark++;
216 break;
Thomas Graf22b33422005-11-05 21:14:16 +0100217
218 case RED_HARD_MARK:
219 sch->qstats.overlimits++;
Thomas Grafbdc450a2005-11-05 21:14:28 +0100220 if (gred_use_harddrop(t) || !gred_use_ecn(t) ||
221 !INET_ECN_set_ce(skb)) {
Thomas Grafb38c7ee2005-11-05 21:14:27 +0100222 q->stats.forced_drop++;
223 goto congestion_drop;
224 }
225 q->stats.forced_mark++;
226 break;
Thomas Graf22b33422005-11-05 21:14:16 +0100227 }
228
229 if (q->backlog + skb->len <= q->limit) {
230 q->backlog += skb->len;
Thomas Grafedf7a7b2005-11-05 21:14:19 +0100231 return qdisc_enqueue_tail(skb, sch);
Thomas Graf22b33422005-11-05 21:14:16 +0100232 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Thomas Graf22b33422005-11-05 21:14:16 +0100234 q->stats.pdrop++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235drop:
Thomas Grafedf7a7b2005-11-05 21:14:19 +0100236 return qdisc_drop(skb, sch);
Thomas Grafc3b553c2005-11-05 21:14:18 +0100237
238congestion_drop:
Thomas Grafedf7a7b2005-11-05 21:14:19 +0100239 qdisc_drop(skb, sch);
Thomas Grafc3b553c2005-11-05 21:14:18 +0100240 return NET_XMIT_CN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241}
242
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100243static int gred_requeue(struct sk_buff *skb, struct Qdisc* sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
Thomas Graf716a1b42005-11-05 21:14:20 +0100245 struct gred_sched *t = qdisc_priv(sch);
Thomas Graf18e3fb842005-11-05 21:14:21 +0100246 struct gred_sched_data *q;
247 u16 dp = tc_index_to_dp(skb);
Thomas Graf22b33422005-11-05 21:14:16 +0100248
Thomas Graf18e3fb842005-11-05 21:14:21 +0100249 if (dp >= t->DPs || (q = t->tab[dp]) == NULL) {
250 if (net_ratelimit())
251 printk(KERN_WARNING "GRED: Unable to relocate VQ 0x%x "
252 "for requeue, screwing up backlog.\n",
253 tc_index_to_dp(skb));
254 } else {
255 if (red_is_idling(&q->parms))
256 red_end_of_idle_period(&q->parms);
257 q->backlog += skb->len;
258 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Thomas Grafedf7a7b2005-11-05 21:14:19 +0100260 return qdisc_requeue(skb, sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261}
262
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100263static struct sk_buff *gred_dequeue(struct Qdisc* sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264{
265 struct sk_buff *skb;
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100266 struct gred_sched *t = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Thomas Grafedf7a7b2005-11-05 21:14:19 +0100268 skb = qdisc_dequeue_head(sch);
269
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 if (skb) {
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100271 struct gred_sched_data *q;
Thomas Graf18e3fb842005-11-05 21:14:21 +0100272 u16 dp = tc_index_to_dp(skb);
273
274 if (dp >= t->DPs || (q = t->tab[dp]) == NULL) {
275 if (net_ratelimit())
276 printk(KERN_WARNING "GRED: Unable to relocate "
277 "VQ 0x%x after dequeue, screwing up "
278 "backlog.\n", tc_index_to_dp(skb));
279 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 q->backlog -= skb->len;
Thomas Graf18e3fb842005-11-05 21:14:21 +0100281
Thomas Grafdea3f622005-11-05 21:14:09 +0100282 if (!q->backlog && !gred_wred_mode(t))
Thomas Graf22b33422005-11-05 21:14:16 +0100283 red_start_of_idle_period(&q->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 }
Thomas Graf18e3fb842005-11-05 21:14:21 +0100285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 return skb;
287 }
288
Thomas Grafd8f64e12005-11-05 21:14:26 +0100289 if (gred_wred_mode(t) && !red_is_idling(&t->wred_set))
Thomas Graf70517032005-11-05 21:14:23 +0100290 red_start_of_idle_period(&t->wred_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
292 return NULL;
293}
294
295static unsigned int gred_drop(struct Qdisc* sch)
296{
297 struct sk_buff *skb;
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100298 struct gred_sched *t = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Thomas Grafedf7a7b2005-11-05 21:14:19 +0100300 skb = qdisc_dequeue_tail(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 if (skb) {
302 unsigned int len = skb->len;
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100303 struct gred_sched_data *q;
Thomas Graf18e3fb842005-11-05 21:14:21 +0100304 u16 dp = tc_index_to_dp(skb);
305
306 if (dp >= t->DPs || (q = t->tab[dp]) == NULL) {
307 if (net_ratelimit())
308 printk(KERN_WARNING "GRED: Unable to relocate "
309 "VQ 0x%x while dropping, screwing up "
310 "backlog.\n", tc_index_to_dp(skb));
311 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 q->backlog -= len;
Thomas Graf22b33422005-11-05 21:14:16 +0100313 q->stats.other++;
Thomas Graf18e3fb842005-11-05 21:14:21 +0100314
Thomas Grafdea3f622005-11-05 21:14:09 +0100315 if (!q->backlog && !gred_wred_mode(t))
Thomas Graf22b33422005-11-05 21:14:16 +0100316 red_start_of_idle_period(&q->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 }
318
Thomas Grafedf7a7b2005-11-05 21:14:19 +0100319 qdisc_drop(skb, sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 return len;
321 }
322
Thomas Grafd8f64e12005-11-05 21:14:26 +0100323 if (gred_wred_mode(t) && !red_is_idling(&t->wred_set))
Thomas Graf70517032005-11-05 21:14:23 +0100324 red_start_of_idle_period(&t->wred_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 return 0;
327
328}
329
330static void gred_reset(struct Qdisc* sch)
331{
332 int i;
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100333 struct gred_sched *t = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Thomas Grafedf7a7b2005-11-05 21:14:19 +0100335 qdisc_reset_queue(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900337 for (i = 0; i < t->DPs; i++) {
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100338 struct gred_sched_data *q = t->tab[i];
339
340 if (!q)
341 continue;
342
Thomas Graf22b33422005-11-05 21:14:16 +0100343 red_restart(&q->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 q->backlog = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 }
346}
347
Thomas Graf66396072005-11-05 21:14:13 +0100348static inline void gred_destroy_vq(struct gred_sched_data *q)
349{
350 kfree(q);
351}
352
353static inline int gred_change_table_def(struct Qdisc *sch, struct rtattr *dps)
354{
355 struct gred_sched *table = qdisc_priv(sch);
356 struct tc_gred_sopt *sopt;
357 int i;
358
359 if (dps == NULL || RTA_PAYLOAD(dps) < sizeof(*sopt))
360 return -EINVAL;
361
362 sopt = RTA_DATA(dps);
363
364 if (sopt->DPs > MAX_DPs || sopt->DPs == 0 || sopt->def_DP >= sopt->DPs)
365 return -EINVAL;
366
367 sch_tree_lock(sch);
368 table->DPs = sopt->DPs;
369 table->def = sopt->def_DP;
Thomas Grafb38c7ee2005-11-05 21:14:27 +0100370 table->red_flags = sopt->flags;
Thomas Graf66396072005-11-05 21:14:13 +0100371
372 /*
373 * Every entry point to GRED is synchronized with the above code
374 * and the DP is checked against DPs, i.e. shadowed VQs can no
375 * longer be found so we can unlock right here.
376 */
377 sch_tree_unlock(sch);
378
379 if (sopt->grio) {
380 gred_enable_rio_mode(table);
381 gred_disable_wred_mode(table);
382 if (gred_wred_mode_check(sch))
383 gred_enable_wred_mode(table);
384 } else {
385 gred_disable_rio_mode(table);
386 gred_disable_wred_mode(table);
387 }
388
389 for (i = table->DPs; i < MAX_DPs; i++) {
390 if (table->tab[i]) {
391 printk(KERN_WARNING "GRED: Warning: Destroying "
392 "shadowed VQ 0x%x\n", i);
393 gred_destroy_vq(table->tab[i]);
394 table->tab[i] = NULL;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900395 }
Thomas Graf66396072005-11-05 21:14:13 +0100396 }
397
Thomas Graf66396072005-11-05 21:14:13 +0100398 return 0;
399}
400
Thomas Graff62d6b92005-11-05 21:14:15 +0100401static inline int gred_change_vq(struct Qdisc *sch, int dp,
402 struct tc_gred_qopt *ctl, int prio, u8 *stab)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403{
404 struct gred_sched *table = qdisc_priv(sch);
405 struct gred_sched_data *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Thomas Graff62d6b92005-11-05 21:14:15 +0100407 if (table->tab[dp] == NULL) {
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700408 table->tab[dp] = kzalloc(sizeof(*q), GFP_KERNEL);
Thomas Graff62d6b92005-11-05 21:14:15 +0100409 if (table->tab[dp] == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 }
412
Thomas Graff62d6b92005-11-05 21:14:15 +0100413 q = table->tab[dp];
414 q->DP = dp;
415 q->prio = prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 q->limit = ctl->limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Thomas Graf22b33422005-11-05 21:14:16 +0100418 if (q->backlog == 0)
419 red_end_of_idle_period(&q->parms);
420
421 red_set_parms(&q->parms,
422 ctl->qth_min, ctl->qth_max, ctl->Wlog, ctl->Plog,
423 ctl->Scell_log, stab);
424
Thomas Graff62d6b92005-11-05 21:14:15 +0100425 return 0;
426}
427
428static int gred_change(struct Qdisc *sch, struct rtattr *opt)
429{
430 struct gred_sched *table = qdisc_priv(sch);
431 struct tc_gred_qopt *ctl;
432 struct rtattr *tb[TCA_GRED_MAX];
433 int err = -EINVAL, prio = GRED_DEF_PRIO;
434 u8 *stab;
435
436 if (opt == NULL || rtattr_parse_nested(tb, TCA_GRED_MAX, opt))
437 return -EINVAL;
438
439 if (tb[TCA_GRED_PARMS-1] == NULL && tb[TCA_GRED_STAB-1] == NULL)
440 return gred_change_table_def(sch, opt);
441
442 if (tb[TCA_GRED_PARMS-1] == NULL ||
443 RTA_PAYLOAD(tb[TCA_GRED_PARMS-1]) < sizeof(*ctl) ||
444 tb[TCA_GRED_STAB-1] == NULL ||
445 RTA_PAYLOAD(tb[TCA_GRED_STAB-1]) < 256)
446 return -EINVAL;
447
448 ctl = RTA_DATA(tb[TCA_GRED_PARMS-1]);
449 stab = RTA_DATA(tb[TCA_GRED_STAB-1]);
450
451 if (ctl->DP >= table->DPs)
452 goto errout;
453
454 if (gred_rio_mode(table)) {
455 if (ctl->prio == 0) {
456 int def_prio = GRED_DEF_PRIO;
457
458 if (table->tab[table->def])
459 def_prio = table->tab[table->def]->prio;
460
461 printk(KERN_DEBUG "GRED: DP %u does not have a prio "
462 "setting default to %d\n", ctl->DP, def_prio);
463
464 prio = def_prio;
465 } else
466 prio = ctl->prio;
467 }
468
469 sch_tree_lock(sch);
470
471 err = gred_change_vq(sch, ctl->DP, ctl, prio, stab);
472 if (err < 0)
473 goto errout_locked;
474
Thomas Grafd6fd4e92005-11-05 21:14:10 +0100475 if (gred_rio_mode(table)) {
Thomas Grafdea3f622005-11-05 21:14:09 +0100476 gred_disable_wred_mode(table);
477 if (gred_wred_mode_check(sch))
478 gred_enable_wred_mode(table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 }
480
Thomas Graff62d6b92005-11-05 21:14:15 +0100481 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Thomas Graff62d6b92005-11-05 21:14:15 +0100483errout_locked:
484 sch_tree_unlock(sch);
485errout:
486 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487}
488
489static int gred_init(struct Qdisc *sch, struct rtattr *opt)
490{
Thomas Graf66396072005-11-05 21:14:13 +0100491 struct rtattr *tb[TCA_GRED_MAX];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
Thomas Graf66396072005-11-05 21:14:13 +0100493 if (opt == NULL || rtattr_parse_nested(tb, TCA_GRED_MAX, opt))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 return -EINVAL;
495
Thomas Graf66396072005-11-05 21:14:13 +0100496 if (tb[TCA_GRED_PARMS-1] || tb[TCA_GRED_STAB-1])
497 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
Thomas Graf66396072005-11-05 21:14:13 +0100499 return gred_change_table_def(sch, tb[TCA_GRED_DPS-1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500}
501
502static int gred_dump(struct Qdisc *sch, struct sk_buff *skb)
503{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 struct gred_sched *table = qdisc_priv(sch);
Thomas Graf05f1cc02005-11-05 21:14:11 +0100505 struct rtattr *parms, *opts = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 int i;
Thomas Grafe0636822005-11-05 21:14:12 +0100507 struct tc_gred_sopt sopt = {
508 .DPs = table->DPs,
509 .def_DP = table->def,
510 .grio = gred_rio_mode(table),
Thomas Grafb38c7ee2005-11-05 21:14:27 +0100511 .flags = table->red_flags,
Thomas Grafe0636822005-11-05 21:14:12 +0100512 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Thomas Graf05f1cc02005-11-05 21:14:11 +0100514 opts = RTA_NEST(skb, TCA_OPTIONS);
Thomas Grafe0636822005-11-05 21:14:12 +0100515 RTA_PUT(skb, TCA_GRED_DPS, sizeof(sopt), &sopt);
Thomas Graf05f1cc02005-11-05 21:14:11 +0100516 parms = RTA_NEST(skb, TCA_GRED_PARMS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Thomas Graf05f1cc02005-11-05 21:14:11 +0100518 for (i = 0; i < MAX_DPs; i++) {
519 struct gred_sched_data *q = table->tab[i];
520 struct tc_gred_qopt opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Thomas Graf05f1cc02005-11-05 21:14:11 +0100522 memset(&opt, 0, sizeof(opt));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
524 if (!q) {
525 /* hack -- fix at some point with proper message
526 This is how we indicate to tc that there is no VQ
527 at this DP */
528
Thomas Graf05f1cc02005-11-05 21:14:11 +0100529 opt.DP = MAX_DPs + i;
530 goto append_opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 }
532
Thomas Graf05f1cc02005-11-05 21:14:11 +0100533 opt.limit = q->limit;
534 opt.DP = q->DP;
535 opt.backlog = q->backlog;
536 opt.prio = q->prio;
Thomas Graf22b33422005-11-05 21:14:16 +0100537 opt.qth_min = q->parms.qth_min >> q->parms.Wlog;
538 opt.qth_max = q->parms.qth_max >> q->parms.Wlog;
539 opt.Wlog = q->parms.Wlog;
540 opt.Plog = q->parms.Plog;
541 opt.Scell_log = q->parms.Scell_log;
542 opt.other = q->stats.other;
543 opt.early = q->stats.prob_drop;
544 opt.forced = q->stats.forced_drop;
545 opt.pdrop = q->stats.pdrop;
Thomas Graf05f1cc02005-11-05 21:14:11 +0100546 opt.packets = q->packetsin;
547 opt.bytesin = q->bytesin;
548
Thomas Graf22b33422005-11-05 21:14:16 +0100549 if (gred_wred_mode(table)) {
550 q->parms.qidlestart =
551 table->tab[table->def]->parms.qidlestart;
552 q->parms.qavg = table->tab[table->def]->parms.qavg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Thomas Graf22b33422005-11-05 21:14:16 +0100555 opt.qave = red_calc_qavg(&q->parms, q->parms.qavg);
556
Thomas Graf05f1cc02005-11-05 21:14:11 +0100557append_opt:
558 RTA_APPEND(skb, sizeof(opt), &opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 }
560
Thomas Graf05f1cc02005-11-05 21:14:11 +0100561 RTA_NEST_END(skb, parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Thomas Graf05f1cc02005-11-05 21:14:11 +0100563 return RTA_NEST_END(skb, opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
565rtattr_failure:
Thomas Graf05f1cc02005-11-05 21:14:11 +0100566 return RTA_NEST_CANCEL(skb, opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567}
568
569static void gred_destroy(struct Qdisc *sch)
570{
571 struct gred_sched *table = qdisc_priv(sch);
572 int i;
573
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100574 for (i = 0; i < table->DPs; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 if (table->tab[i])
Thomas Graf66396072005-11-05 21:14:13 +0100576 gred_destroy_vq(table->tab[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 }
578}
579
580static struct Qdisc_ops gred_qdisc_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 .id = "gred",
582 .priv_size = sizeof(struct gred_sched),
583 .enqueue = gred_enqueue,
584 .dequeue = gred_dequeue,
585 .requeue = gred_requeue,
586 .drop = gred_drop,
587 .init = gred_init,
588 .reset = gred_reset,
589 .destroy = gred_destroy,
590 .change = gred_change,
591 .dump = gred_dump,
592 .owner = THIS_MODULE,
593};
594
595static int __init gred_module_init(void)
596{
597 return register_qdisc(&gred_qdisc_ops);
598}
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100599
600static void __exit gred_module_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601{
602 unregister_qdisc(&gred_qdisc_ops);
603}
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605module_init(gred_module_init)
606module_exit(gred_module_exit)
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608MODULE_LICENSE("GPL");