blob: 53204de71c39fa07ea23dddf71ed4896e5812154 [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
Eric Dumazetcc7ec452011-01-19 19:26:56 +000035struct gred_sched_data {
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 u32 limit; /* HARD maximal queue length */
Eric Dumazeta73ed262011-12-09 02:46:45 +000037 u32 DP; /* the drop parameters */
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
Eric Dumazetcc7ec452011-01-19 19:26:56 +000052struct gred_sched {
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 struct gred_sched_data *tab[MAX_DPs];
Thomas Grafdea3f622005-11-05 21:14:09 +010054 unsigned long flags;
Thomas Grafb38c7ee2005-11-05 21:14:27 +010055 u32 red_flags;
Thomas Graf1e4dfaf92005-11-05 21:14:25 +010056 u32 DPs;
57 u32 def;
Thomas Graf70517032005-11-05 21:14:23 +010058 struct red_parms wred_set;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059};
60
Thomas Grafdea3f622005-11-05 21:14:09 +010061static inline int gred_wred_mode(struct gred_sched *table)
62{
63 return test_bit(GRED_WRED_MODE, &table->flags);
64}
65
66static inline void gred_enable_wred_mode(struct gred_sched *table)
67{
68 __set_bit(GRED_WRED_MODE, &table->flags);
69}
70
71static inline void gred_disable_wred_mode(struct gred_sched *table)
72{
73 __clear_bit(GRED_WRED_MODE, &table->flags);
74}
75
Thomas Grafd6fd4e92005-11-05 21:14:10 +010076static inline int gred_rio_mode(struct gred_sched *table)
77{
78 return test_bit(GRED_RIO_MODE, &table->flags);
79}
80
81static inline void gred_enable_rio_mode(struct gred_sched *table)
82{
83 __set_bit(GRED_RIO_MODE, &table->flags);
84}
85
86static inline void gred_disable_rio_mode(struct gred_sched *table)
87{
88 __clear_bit(GRED_RIO_MODE, &table->flags);
89}
90
Thomas Grafdea3f622005-11-05 21:14:09 +010091static inline int gred_wred_mode_check(struct Qdisc *sch)
92{
93 struct gred_sched *table = qdisc_priv(sch);
94 int i;
95
96 /* Really ugly O(n^2) but shouldn't be necessary too frequent. */
97 for (i = 0; i < table->DPs; i++) {
98 struct gred_sched_data *q = table->tab[i];
99 int n;
100
101 if (q == NULL)
102 continue;
103
104 for (n = 0; n < table->DPs; n++)
105 if (table->tab[n] && table->tab[n] != q &&
106 table->tab[n]->prio == q->prio)
107 return 1;
108 }
109
110 return 0;
111}
112
Thomas Graf22b33422005-11-05 21:14:16 +0100113static inline unsigned int gred_backlog(struct gred_sched *table,
114 struct gred_sched_data *q,
115 struct Qdisc *sch)
116{
117 if (gred_wred_mode(table))
118 return sch->qstats.backlog;
119 else
120 return q->backlog;
121}
122
Thomas Graf716a1b42005-11-05 21:14:20 +0100123static inline u16 tc_index_to_dp(struct sk_buff *skb)
124{
125 return skb->tc_index & GRED_VQ_MASK;
126}
127
Thomas Graf70517032005-11-05 21:14:23 +0100128static inline void gred_load_wred_set(struct gred_sched *table,
129 struct gred_sched_data *q)
130{
131 q->parms.qavg = table->wred_set.qavg;
132 q->parms.qidlestart = table->wred_set.qidlestart;
133}
134
135static inline void gred_store_wred_set(struct gred_sched *table,
136 struct gred_sched_data *q)
137{
138 table->wred_set.qavg = q->parms.qavg;
139}
140
Thomas Grafb38c7ee2005-11-05 21:14:27 +0100141static inline int gred_use_ecn(struct gred_sched *t)
142{
143 return t->red_flags & TC_RED_ECN;
144}
145
Thomas Grafbdc450a2005-11-05 21:14:28 +0100146static inline int gred_use_harddrop(struct gred_sched *t)
147{
148 return t->red_flags & TC_RED_HARDDROP;
149}
150
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000151static int gred_enqueue(struct sk_buff *skb, struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000153 struct gred_sched_data *q = NULL;
154 struct gred_sched *t = qdisc_priv(sch);
Thomas Graf22b33422005-11-05 21:14:16 +0100155 unsigned long qavg = 0;
Thomas Graf4a591832005-11-05 21:14:22 +0100156 u16 dp = tc_index_to_dp(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000158 if (dp >= t->DPs || (q = t->tab[dp]) == NULL) {
Thomas Graf18e3fb842005-11-05 21:14:21 +0100159 dp = t->def;
160
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000161 q = t->tab[dp];
162 if (!q) {
Thomas Graf18e3fb842005-11-05 21:14:21 +0100163 /* 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 */
David S. Miller5ce2d482008-07-08 17:06:30 -0700167 if (skb_queue_len(&sch->q) < qdisc_dev(sch)->tx_queue_len)
Thomas Graf18e3fb842005-11-05 21:14:21 +0100168 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))
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000185 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++;
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700191 q->bytesin += qdisc_pkt_len(skb);
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)) {
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000205 case RED_DONT_MARK:
206 break;
Thomas Graf22b33422005-11-05 21:14:16 +0100207
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000208 case RED_PROB_MARK:
209 sch->qstats.overlimits++;
210 if (!gred_use_ecn(t) || !INET_ECN_set_ce(skb)) {
211 q->stats.prob_drop++;
212 goto congestion_drop;
213 }
Thomas Grafb38c7ee2005-11-05 21:14:27 +0100214
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000215 q->stats.prob_mark++;
216 break;
Thomas Graf22b33422005-11-05 21:14:16 +0100217
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000218 case RED_HARD_MARK:
219 sch->qstats.overlimits++;
220 if (gred_use_harddrop(t) || !gred_use_ecn(t) ||
221 !INET_ECN_set_ce(skb)) {
222 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
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700229 if (q->backlog + qdisc_pkt_len(skb) <= q->limit) {
230 q->backlog += qdisc_pkt_len(skb);
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
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000243static struct sk_buff *gred_dequeue(struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
245 struct sk_buff *skb;
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100246 struct gred_sched *t = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Thomas Grafedf7a7b2005-11-05 21:14:19 +0100248 skb = qdisc_dequeue_head(sch);
249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 if (skb) {
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100251 struct gred_sched_data *q;
Thomas Graf18e3fb842005-11-05 21:14:21 +0100252 u16 dp = tc_index_to_dp(skb);
253
254 if (dp >= t->DPs || (q = t->tab[dp]) == NULL) {
255 if (net_ratelimit())
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000256 pr_warning("GRED: Unable to relocate VQ 0x%x "
257 "after dequeue, screwing up "
258 "backlog.\n", tc_index_to_dp(skb));
Thomas Graf18e3fb842005-11-05 21:14:21 +0100259 } else {
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700260 q->backlog -= qdisc_pkt_len(skb);
Thomas Graf18e3fb842005-11-05 21:14:21 +0100261
Thomas Grafdea3f622005-11-05 21:14:09 +0100262 if (!q->backlog && !gred_wred_mode(t))
Thomas Graf22b33422005-11-05 21:14:16 +0100263 red_start_of_idle_period(&q->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 }
Thomas Graf18e3fb842005-11-05 21:14:21 +0100265
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 return skb;
267 }
268
Thomas Grafd8f64e12005-11-05 21:14:26 +0100269 if (gred_wred_mode(t) && !red_is_idling(&t->wred_set))
Thomas Graf70517032005-11-05 21:14:23 +0100270 red_start_of_idle_period(&t->wred_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
272 return NULL;
273}
274
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000275static unsigned int gred_drop(struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
277 struct sk_buff *skb;
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100278 struct gred_sched *t = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Thomas Grafedf7a7b2005-11-05 21:14:19 +0100280 skb = qdisc_dequeue_tail(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 if (skb) {
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700282 unsigned int len = qdisc_pkt_len(skb);
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100283 struct gred_sched_data *q;
Thomas Graf18e3fb842005-11-05 21:14:21 +0100284 u16 dp = tc_index_to_dp(skb);
285
286 if (dp >= t->DPs || (q = t->tab[dp]) == NULL) {
287 if (net_ratelimit())
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000288 pr_warning("GRED: Unable to relocate VQ 0x%x "
289 "while dropping, screwing up "
290 "backlog.\n", tc_index_to_dp(skb));
Thomas Graf18e3fb842005-11-05 21:14:21 +0100291 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 q->backlog -= len;
Thomas Graf22b33422005-11-05 21:14:16 +0100293 q->stats.other++;
Thomas Graf18e3fb842005-11-05 21:14:21 +0100294
Thomas Grafdea3f622005-11-05 21:14:09 +0100295 if (!q->backlog && !gred_wred_mode(t))
Thomas Graf22b33422005-11-05 21:14:16 +0100296 red_start_of_idle_period(&q->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 }
298
Thomas Grafedf7a7b2005-11-05 21:14:19 +0100299 qdisc_drop(skb, sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 return len;
301 }
302
Thomas Grafd8f64e12005-11-05 21:14:26 +0100303 if (gred_wred_mode(t) && !red_is_idling(&t->wred_set))
Thomas Graf70517032005-11-05 21:14:23 +0100304 red_start_of_idle_period(&t->wred_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 return 0;
307
308}
309
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000310static void gred_reset(struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311{
312 int i;
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100313 struct gred_sched *t = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Thomas Grafedf7a7b2005-11-05 21:14:19 +0100315 qdisc_reset_queue(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900317 for (i = 0; i < t->DPs; i++) {
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100318 struct gred_sched_data *q = t->tab[i];
319
320 if (!q)
321 continue;
322
Thomas Graf22b33422005-11-05 21:14:16 +0100323 red_restart(&q->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 q->backlog = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 }
326}
327
Thomas Graf66396072005-11-05 21:14:13 +0100328static inline void gred_destroy_vq(struct gred_sched_data *q)
329{
330 kfree(q);
331}
332
Patrick McHardy1e904742008-01-22 22:11:17 -0800333static inline int gred_change_table_def(struct Qdisc *sch, struct nlattr *dps)
Thomas Graf66396072005-11-05 21:14:13 +0100334{
335 struct gred_sched *table = qdisc_priv(sch);
336 struct tc_gred_sopt *sopt;
337 int i;
338
Patrick McHardy27a34212008-01-23 20:35:39 -0800339 if (dps == NULL)
Thomas Graf66396072005-11-05 21:14:13 +0100340 return -EINVAL;
341
Patrick McHardy1e904742008-01-22 22:11:17 -0800342 sopt = nla_data(dps);
Thomas Graf66396072005-11-05 21:14:13 +0100343
344 if (sopt->DPs > MAX_DPs || sopt->DPs == 0 || sopt->def_DP >= sopt->DPs)
345 return -EINVAL;
346
347 sch_tree_lock(sch);
348 table->DPs = sopt->DPs;
349 table->def = sopt->def_DP;
Thomas Grafb38c7ee2005-11-05 21:14:27 +0100350 table->red_flags = sopt->flags;
Thomas Graf66396072005-11-05 21:14:13 +0100351
352 /*
353 * Every entry point to GRED is synchronized with the above code
354 * and the DP is checked against DPs, i.e. shadowed VQs can no
355 * longer be found so we can unlock right here.
356 */
357 sch_tree_unlock(sch);
358
359 if (sopt->grio) {
360 gred_enable_rio_mode(table);
361 gred_disable_wred_mode(table);
362 if (gred_wred_mode_check(sch))
363 gred_enable_wred_mode(table);
364 } else {
365 gred_disable_rio_mode(table);
366 gred_disable_wred_mode(table);
367 }
368
369 for (i = table->DPs; i < MAX_DPs; i++) {
370 if (table->tab[i]) {
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000371 pr_warning("GRED: Warning: Destroying "
372 "shadowed VQ 0x%x\n", i);
Thomas Graf66396072005-11-05 21:14:13 +0100373 gred_destroy_vq(table->tab[i]);
374 table->tab[i] = NULL;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900375 }
Thomas Graf66396072005-11-05 21:14:13 +0100376 }
377
Thomas Graf66396072005-11-05 21:14:13 +0100378 return 0;
379}
380
Thomas Graff62d6b92005-11-05 21:14:15 +0100381static inline int gred_change_vq(struct Qdisc *sch, int dp,
Eric Dumazeta73ed262011-12-09 02:46:45 +0000382 struct tc_gred_qopt *ctl, int prio,
Eric Dumazet869aa412011-12-15 22:09:45 +0000383 u8 *stab, u32 max_P,
384 struct gred_sched_data **prealloc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385{
386 struct gred_sched *table = qdisc_priv(sch);
Eric Dumazet869aa412011-12-15 22:09:45 +0000387 struct gred_sched_data *q = table->tab[dp];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Eric Dumazet869aa412011-12-15 22:09:45 +0000389 if (!q) {
390 table->tab[dp] = q = *prealloc;
391 *prealloc = NULL;
392 if (!q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 }
395
Thomas Graff62d6b92005-11-05 21:14:15 +0100396 q->DP = dp;
397 q->prio = prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 q->limit = ctl->limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
Thomas Graf22b33422005-11-05 21:14:16 +0100400 if (q->backlog == 0)
401 red_end_of_idle_period(&q->parms);
402
403 red_set_parms(&q->parms,
404 ctl->qth_min, ctl->qth_max, ctl->Wlog, ctl->Plog,
Eric Dumazeta73ed262011-12-09 02:46:45 +0000405 ctl->Scell_log, stab, max_P);
Thomas Graf22b33422005-11-05 21:14:16 +0100406
Thomas Graff62d6b92005-11-05 21:14:15 +0100407 return 0;
408}
409
Patrick McHardy27a34212008-01-23 20:35:39 -0800410static const struct nla_policy gred_policy[TCA_GRED_MAX + 1] = {
411 [TCA_GRED_PARMS] = { .len = sizeof(struct tc_gred_qopt) },
412 [TCA_GRED_STAB] = { .len = 256 },
413 [TCA_GRED_DPS] = { .len = sizeof(struct tc_gred_sopt) },
Eric Dumazeta73ed262011-12-09 02:46:45 +0000414 [TCA_GRED_MAX_P] = { .type = NLA_U32 },
Patrick McHardy27a34212008-01-23 20:35:39 -0800415};
416
Patrick McHardy1e904742008-01-22 22:11:17 -0800417static int gred_change(struct Qdisc *sch, struct nlattr *opt)
Thomas Graff62d6b92005-11-05 21:14:15 +0100418{
419 struct gred_sched *table = qdisc_priv(sch);
420 struct tc_gred_qopt *ctl;
Patrick McHardy1e904742008-01-22 22:11:17 -0800421 struct nlattr *tb[TCA_GRED_MAX + 1];
Patrick McHardycee63722008-01-23 20:33:32 -0800422 int err, prio = GRED_DEF_PRIO;
Thomas Graff62d6b92005-11-05 21:14:15 +0100423 u8 *stab;
Eric Dumazeta73ed262011-12-09 02:46:45 +0000424 u32 max_P;
Eric Dumazet869aa412011-12-15 22:09:45 +0000425 struct gred_sched_data *prealloc;
Thomas Graff62d6b92005-11-05 21:14:15 +0100426
Patrick McHardycee63722008-01-23 20:33:32 -0800427 if (opt == NULL)
Thomas Graff62d6b92005-11-05 21:14:15 +0100428 return -EINVAL;
429
Patrick McHardy27a34212008-01-23 20:35:39 -0800430 err = nla_parse_nested(tb, TCA_GRED_MAX, opt, gred_policy);
Patrick McHardycee63722008-01-23 20:33:32 -0800431 if (err < 0)
432 return err;
433
Patrick McHardy1e904742008-01-22 22:11:17 -0800434 if (tb[TCA_GRED_PARMS] == NULL && tb[TCA_GRED_STAB] == NULL)
Thomas Graff62d6b92005-11-05 21:14:15 +0100435 return gred_change_table_def(sch, opt);
436
Patrick McHardy1e904742008-01-22 22:11:17 -0800437 if (tb[TCA_GRED_PARMS] == NULL ||
Patrick McHardy27a34212008-01-23 20:35:39 -0800438 tb[TCA_GRED_STAB] == NULL)
Thomas Graff62d6b92005-11-05 21:14:15 +0100439 return -EINVAL;
440
Eric Dumazeta73ed262011-12-09 02:46:45 +0000441 max_P = tb[TCA_GRED_MAX_P] ? nla_get_u32(tb[TCA_GRED_MAX_P]) : 0;
442
Patrick McHardycee63722008-01-23 20:33:32 -0800443 err = -EINVAL;
Patrick McHardy1e904742008-01-22 22:11:17 -0800444 ctl = nla_data(tb[TCA_GRED_PARMS]);
445 stab = nla_data(tb[TCA_GRED_STAB]);
Thomas Graff62d6b92005-11-05 21:14:15 +0100446
447 if (ctl->DP >= table->DPs)
448 goto errout;
449
450 if (gred_rio_mode(table)) {
451 if (ctl->prio == 0) {
452 int def_prio = GRED_DEF_PRIO;
453
454 if (table->tab[table->def])
455 def_prio = table->tab[table->def]->prio;
456
457 printk(KERN_DEBUG "GRED: DP %u does not have a prio "
458 "setting default to %d\n", ctl->DP, def_prio);
459
460 prio = def_prio;
461 } else
462 prio = ctl->prio;
463 }
464
Eric Dumazet869aa412011-12-15 22:09:45 +0000465 prealloc = kzalloc(sizeof(*prealloc), GFP_KERNEL);
Thomas Graff62d6b92005-11-05 21:14:15 +0100466 sch_tree_lock(sch);
467
Eric Dumazet869aa412011-12-15 22:09:45 +0000468 err = gred_change_vq(sch, ctl->DP, ctl, prio, stab, max_P, &prealloc);
Thomas Graff62d6b92005-11-05 21:14:15 +0100469 if (err < 0)
470 goto errout_locked;
471
Thomas Grafd6fd4e92005-11-05 21:14:10 +0100472 if (gred_rio_mode(table)) {
Thomas Grafdea3f622005-11-05 21:14:09 +0100473 gred_disable_wred_mode(table);
474 if (gred_wred_mode_check(sch))
475 gred_enable_wred_mode(table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 }
477
Thomas Graff62d6b92005-11-05 21:14:15 +0100478 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Thomas Graff62d6b92005-11-05 21:14:15 +0100480errout_locked:
481 sch_tree_unlock(sch);
Eric Dumazet869aa412011-12-15 22:09:45 +0000482 kfree(prealloc);
Thomas Graff62d6b92005-11-05 21:14:15 +0100483errout:
484 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485}
486
Patrick McHardy1e904742008-01-22 22:11:17 -0800487static int gred_init(struct Qdisc *sch, struct nlattr *opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488{
Patrick McHardy1e904742008-01-22 22:11:17 -0800489 struct nlattr *tb[TCA_GRED_MAX + 1];
Patrick McHardycee63722008-01-23 20:33:32 -0800490 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
Patrick McHardycee63722008-01-23 20:33:32 -0800492 if (opt == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 return -EINVAL;
494
Patrick McHardy27a34212008-01-23 20:35:39 -0800495 err = nla_parse_nested(tb, TCA_GRED_MAX, opt, gred_policy);
Patrick McHardycee63722008-01-23 20:33:32 -0800496 if (err < 0)
497 return err;
498
Patrick McHardy1e904742008-01-22 22:11:17 -0800499 if (tb[TCA_GRED_PARMS] || tb[TCA_GRED_STAB])
Thomas Graf66396072005-11-05 21:14:13 +0100500 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
Patrick McHardy1e904742008-01-22 22:11:17 -0800502 return gred_change_table_def(sch, tb[TCA_GRED_DPS]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503}
504
505static int gred_dump(struct Qdisc *sch, struct sk_buff *skb)
506{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 struct gred_sched *table = qdisc_priv(sch);
Patrick McHardy1e904742008-01-22 22:11:17 -0800508 struct nlattr *parms, *opts = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 int i;
Eric Dumazeta73ed262011-12-09 02:46:45 +0000510 u32 max_p[MAX_DPs];
Thomas Grafe0636822005-11-05 21:14:12 +0100511 struct tc_gred_sopt sopt = {
512 .DPs = table->DPs,
513 .def_DP = table->def,
514 .grio = gred_rio_mode(table),
Thomas Grafb38c7ee2005-11-05 21:14:27 +0100515 .flags = table->red_flags,
Thomas Grafe0636822005-11-05 21:14:12 +0100516 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Patrick McHardy1e904742008-01-22 22:11:17 -0800518 opts = nla_nest_start(skb, TCA_OPTIONS);
519 if (opts == NULL)
520 goto nla_put_failure;
521 NLA_PUT(skb, TCA_GRED_DPS, sizeof(sopt), &sopt);
Eric Dumazeta73ed262011-12-09 02:46:45 +0000522
523 for (i = 0; i < MAX_DPs; i++) {
524 struct gred_sched_data *q = table->tab[i];
525
526 max_p[i] = q ? q->parms.max_P : 0;
527 }
528 NLA_PUT(skb, TCA_GRED_MAX_P, sizeof(max_p), max_p);
529
Patrick McHardy1e904742008-01-22 22:11:17 -0800530 parms = nla_nest_start(skb, TCA_GRED_PARMS);
531 if (parms == NULL)
532 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Thomas Graf05f1cc02005-11-05 21:14:11 +0100534 for (i = 0; i < MAX_DPs; i++) {
535 struct gred_sched_data *q = table->tab[i];
536 struct tc_gred_qopt opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Thomas Graf05f1cc02005-11-05 21:14:11 +0100538 memset(&opt, 0, sizeof(opt));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
540 if (!q) {
541 /* hack -- fix at some point with proper message
542 This is how we indicate to tc that there is no VQ
543 at this DP */
544
Thomas Graf05f1cc02005-11-05 21:14:11 +0100545 opt.DP = MAX_DPs + i;
546 goto append_opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 }
548
Thomas Graf05f1cc02005-11-05 21:14:11 +0100549 opt.limit = q->limit;
550 opt.DP = q->DP;
551 opt.backlog = q->backlog;
552 opt.prio = q->prio;
Thomas Graf22b33422005-11-05 21:14:16 +0100553 opt.qth_min = q->parms.qth_min >> q->parms.Wlog;
554 opt.qth_max = q->parms.qth_max >> q->parms.Wlog;
555 opt.Wlog = q->parms.Wlog;
556 opt.Plog = q->parms.Plog;
557 opt.Scell_log = q->parms.Scell_log;
558 opt.other = q->stats.other;
559 opt.early = q->stats.prob_drop;
560 opt.forced = q->stats.forced_drop;
561 opt.pdrop = q->stats.pdrop;
Thomas Graf05f1cc02005-11-05 21:14:11 +0100562 opt.packets = q->packetsin;
563 opt.bytesin = q->bytesin;
564
Thomas Graf22b33422005-11-05 21:14:16 +0100565 if (gred_wred_mode(table)) {
566 q->parms.qidlestart =
567 table->tab[table->def]->parms.qidlestart;
568 q->parms.qavg = table->tab[table->def]->parms.qavg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Thomas Graf22b33422005-11-05 21:14:16 +0100571 opt.qave = red_calc_qavg(&q->parms, q->parms.qavg);
572
Thomas Graf05f1cc02005-11-05 21:14:11 +0100573append_opt:
Patrick McHardy1e904742008-01-22 22:11:17 -0800574 if (nla_append(skb, sizeof(opt), &opt) < 0)
575 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 }
577
Patrick McHardy1e904742008-01-22 22:11:17 -0800578 nla_nest_end(skb, parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Patrick McHardy1e904742008-01-22 22:11:17 -0800580 return nla_nest_end(skb, opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Patrick McHardy1e904742008-01-22 22:11:17 -0800582nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -0700583 nla_nest_cancel(skb, opts);
584 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585}
586
587static void gred_destroy(struct Qdisc *sch)
588{
589 struct gred_sched *table = qdisc_priv(sch);
590 int i;
591
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100592 for (i = 0; i < table->DPs; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 if (table->tab[i])
Thomas Graf66396072005-11-05 21:14:13 +0100594 gred_destroy_vq(table->tab[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 }
596}
597
Eric Dumazet20fea082007-11-14 01:44:41 -0800598static struct Qdisc_ops gred_qdisc_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 .id = "gred",
600 .priv_size = sizeof(struct gred_sched),
601 .enqueue = gred_enqueue,
602 .dequeue = gred_dequeue,
Jarek Poplawski8e3af972008-10-31 00:45:55 -0700603 .peek = qdisc_peek_head,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 .drop = gred_drop,
605 .init = gred_init,
606 .reset = gred_reset,
607 .destroy = gred_destroy,
608 .change = gred_change,
609 .dump = gred_dump,
610 .owner = THIS_MODULE,
611};
612
613static int __init gred_module_init(void)
614{
615 return register_qdisc(&gred_qdisc_ops);
616}
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100617
618static void __exit gred_module_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619{
620 unregister_qdisc(&gred_qdisc_ops);
621}
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100622
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623module_init(gred_module_init)
624module_exit(gred_module_exit)
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100625
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626MODULE_LICENSE("GPL");