blob: e901583e4ea533581f13e0fb39599f72e57b3e4c [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;
Eric Dumazeteeca6682012-01-05 02:25:16 +000044 struct red_vars vars;
Thomas Graf22b33422005-11-05 21:14:16 +010045 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
Eric Dumazetcc7ec452011-01-19 19:26:56 +000053struct gred_sched {
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 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;
Eric Dumazeteeca6682012-01-05 02:25:16 +000059 struct red_vars 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
Eric Dumazeteeca6682012-01-05 02:25:16 +0000129static inline void gred_load_wred_set(const struct gred_sched *table,
Thomas Graf70517032005-11-05 21:14:23 +0100130 struct gred_sched_data *q)
131{
Eric Dumazeteeca6682012-01-05 02:25:16 +0000132 q->vars.qavg = table->wred_set.qavg;
133 q->vars.qidlestart = table->wred_set.qidlestart;
Thomas Graf70517032005-11-05 21:14:23 +0100134}
135
136static inline void gred_store_wred_set(struct gred_sched *table,
137 struct gred_sched_data *q)
138{
Eric Dumazeteeca6682012-01-05 02:25:16 +0000139 table->wred_set.qavg = q->vars.qavg;
Thomas Graf70517032005-11-05 21:14:23 +0100140}
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
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000152static int gred_enqueue(struct sk_buff *skb, struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000154 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
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000159 if (dp >= t->DPs || (q = t->tab[dp]) == NULL) {
Thomas Graf18e3fb842005-11-05 21:14:21 +0100160 dp = t->def;
161
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000162 q = t->tab[dp];
163 if (!q) {
Thomas Graf18e3fb842005-11-05 21:14:21 +0100164 /* 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
Eric Dumazeteeca6682012-01-05 02:25:16 +0000174 /* fix tc_index? --could be controversial but needed for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 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 &&
Eric Dumazeteeca6682012-01-05 02:25:16 +0000185 !red_is_idling(&t->tab[i]->vars))
186 qavg += t->tab[i]->vars.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
Eric Dumazeteeca6682012-01-05 02:25:16 +0000197 q->vars.qavg = red_calc_qavg(&q->parms,
198 &q->vars,
199 gred_backlog(t, q, sch));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Eric Dumazeteeca6682012-01-05 02:25:16 +0000201 if (red_is_idling(&q->vars))
202 red_end_of_idle_period(&q->vars);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Thomas Grafdea3f622005-11-05 21:14:09 +0100204 if (gred_wred_mode(t))
Thomas Graf70517032005-11-05 21:14:23 +0100205 gred_store_wred_set(t, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Eric Dumazeteeca6682012-01-05 02:25:16 +0000207 switch (red_action(&q->parms, &q->vars, q->vars.qavg + qavg)) {
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000208 case RED_DONT_MARK:
209 break;
Thomas Graf22b33422005-11-05 21:14:16 +0100210
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000211 case RED_PROB_MARK:
212 sch->qstats.overlimits++;
213 if (!gred_use_ecn(t) || !INET_ECN_set_ce(skb)) {
214 q->stats.prob_drop++;
215 goto congestion_drop;
216 }
Thomas Grafb38c7ee2005-11-05 21:14:27 +0100217
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000218 q->stats.prob_mark++;
219 break;
Thomas Graf22b33422005-11-05 21:14:16 +0100220
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000221 case RED_HARD_MARK:
222 sch->qstats.overlimits++;
223 if (gred_use_harddrop(t) || !gred_use_ecn(t) ||
224 !INET_ECN_set_ce(skb)) {
225 q->stats.forced_drop++;
226 goto congestion_drop;
227 }
228 q->stats.forced_mark++;
229 break;
Thomas Graf22b33422005-11-05 21:14:16 +0100230 }
231
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700232 if (q->backlog + qdisc_pkt_len(skb) <= q->limit) {
233 q->backlog += qdisc_pkt_len(skb);
Thomas Grafedf7a7b2005-11-05 21:14:19 +0100234 return qdisc_enqueue_tail(skb, sch);
Thomas Graf22b33422005-11-05 21:14:16 +0100235 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Thomas Graf22b33422005-11-05 21:14:16 +0100237 q->stats.pdrop++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238drop:
Thomas Grafedf7a7b2005-11-05 21:14:19 +0100239 return qdisc_drop(skb, sch);
Thomas Grafc3b553c2005-11-05 21:14:18 +0100240
241congestion_drop:
Thomas Grafedf7a7b2005-11-05 21:14:19 +0100242 qdisc_drop(skb, sch);
Thomas Grafc3b553c2005-11-05 21:14:18 +0100243 return NET_XMIT_CN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244}
245
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000246static struct sk_buff *gred_dequeue(struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
248 struct sk_buff *skb;
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100249 struct gred_sched *t = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Thomas Grafedf7a7b2005-11-05 21:14:19 +0100251 skb = qdisc_dequeue_head(sch);
252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 if (skb) {
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100254 struct gred_sched_data *q;
Thomas Graf18e3fb842005-11-05 21:14:21 +0100255 u16 dp = tc_index_to_dp(skb);
256
257 if (dp >= t->DPs || (q = t->tab[dp]) == NULL) {
Joe Perchese87cc472012-05-13 21:56:26 +0000258 net_warn_ratelimited("GRED: Unable to relocate VQ 0x%x after dequeue, screwing up backlog\n",
259 tc_index_to_dp(skb));
Thomas Graf18e3fb842005-11-05 21:14:21 +0100260 } 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))
Eric Dumazeteeca6682012-01-05 02:25:16 +0000264 red_start_of_idle_period(&q->vars);
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
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000276static unsigned int gred_drop(struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277{
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) {
Joe Perchese87cc472012-05-13 21:56:26 +0000288 net_warn_ratelimited("GRED: Unable to relocate VQ 0x%x while dropping, screwing up backlog\n",
289 tc_index_to_dp(skb));
Thomas Graf18e3fb842005-11-05 21:14:21 +0100290 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 q->backlog -= len;
Thomas Graf22b33422005-11-05 21:14:16 +0100292 q->stats.other++;
Thomas Graf18e3fb842005-11-05 21:14:21 +0100293
Thomas Grafdea3f622005-11-05 21:14:09 +0100294 if (!q->backlog && !gred_wred_mode(t))
Eric Dumazeteeca6682012-01-05 02:25:16 +0000295 red_start_of_idle_period(&q->vars);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 }
297
Thomas Grafedf7a7b2005-11-05 21:14:19 +0100298 qdisc_drop(skb, sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 return len;
300 }
301
Thomas Grafd8f64e12005-11-05 21:14:26 +0100302 if (gred_wred_mode(t) && !red_is_idling(&t->wred_set))
Thomas Graf70517032005-11-05 21:14:23 +0100303 red_start_of_idle_period(&t->wred_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 return 0;
306
307}
308
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000309static void gred_reset(struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
311 int i;
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100312 struct gred_sched *t = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Thomas Grafedf7a7b2005-11-05 21:14:19 +0100314 qdisc_reset_queue(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900316 for (i = 0; i < t->DPs; i++) {
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100317 struct gred_sched_data *q = t->tab[i];
318
319 if (!q)
320 continue;
321
Eric Dumazeteeca6682012-01-05 02:25:16 +0000322 red_restart(&q->vars);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 q->backlog = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 }
325}
326
Thomas Graf66396072005-11-05 21:14:13 +0100327static inline void gred_destroy_vq(struct gred_sched_data *q)
328{
329 kfree(q);
330}
331
Patrick McHardy1e904742008-01-22 22:11:17 -0800332static inline int gred_change_table_def(struct Qdisc *sch, struct nlattr *dps)
Thomas Graf66396072005-11-05 21:14:13 +0100333{
334 struct gred_sched *table = qdisc_priv(sch);
335 struct tc_gred_sopt *sopt;
336 int i;
337
Patrick McHardy27a34212008-01-23 20:35:39 -0800338 if (dps == NULL)
Thomas Graf66396072005-11-05 21:14:13 +0100339 return -EINVAL;
340
Patrick McHardy1e904742008-01-22 22:11:17 -0800341 sopt = nla_data(dps);
Thomas Graf66396072005-11-05 21:14:13 +0100342
343 if (sopt->DPs > MAX_DPs || sopt->DPs == 0 || sopt->def_DP >= sopt->DPs)
344 return -EINVAL;
345
346 sch_tree_lock(sch);
347 table->DPs = sopt->DPs;
348 table->def = sopt->def_DP;
Thomas Grafb38c7ee2005-11-05 21:14:27 +0100349 table->red_flags = sopt->flags;
Thomas Graf66396072005-11-05 21:14:13 +0100350
351 /*
352 * Every entry point to GRED is synchronized with the above code
353 * and the DP is checked against DPs, i.e. shadowed VQs can no
354 * longer be found so we can unlock right here.
355 */
356 sch_tree_unlock(sch);
357
358 if (sopt->grio) {
359 gred_enable_rio_mode(table);
360 gred_disable_wred_mode(table);
361 if (gred_wred_mode_check(sch))
362 gred_enable_wred_mode(table);
363 } else {
364 gred_disable_rio_mode(table);
365 gred_disable_wred_mode(table);
366 }
367
368 for (i = table->DPs; i < MAX_DPs; i++) {
369 if (table->tab[i]) {
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000370 pr_warning("GRED: Warning: Destroying "
371 "shadowed VQ 0x%x\n", i);
Thomas Graf66396072005-11-05 21:14:13 +0100372 gred_destroy_vq(table->tab[i]);
373 table->tab[i] = NULL;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900374 }
Thomas Graf66396072005-11-05 21:14:13 +0100375 }
376
Thomas Graf66396072005-11-05 21:14:13 +0100377 return 0;
378}
379
Thomas Graff62d6b92005-11-05 21:14:15 +0100380static inline int gred_change_vq(struct Qdisc *sch, int dp,
Eric Dumazeta73ed262011-12-09 02:46:45 +0000381 struct tc_gred_qopt *ctl, int prio,
Eric Dumazet869aa412011-12-15 22:09:45 +0000382 u8 *stab, u32 max_P,
383 struct gred_sched_data **prealloc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384{
385 struct gred_sched *table = qdisc_priv(sch);
Eric Dumazet869aa412011-12-15 22:09:45 +0000386 struct gred_sched_data *q = table->tab[dp];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Eric Dumazet869aa412011-12-15 22:09:45 +0000388 if (!q) {
389 table->tab[dp] = q = *prealloc;
390 *prealloc = NULL;
391 if (!q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 }
394
Thomas Graff62d6b92005-11-05 21:14:15 +0100395 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)
Eric Dumazeteeca6682012-01-05 02:25:16 +0000400 red_end_of_idle_period(&q->vars);
Thomas Graf22b33422005-11-05 21:14:16 +0100401
402 red_set_parms(&q->parms,
403 ctl->qth_min, ctl->qth_max, ctl->Wlog, ctl->Plog,
Eric Dumazeta73ed262011-12-09 02:46:45 +0000404 ctl->Scell_log, stab, max_P);
Eric Dumazeteeca6682012-01-05 02:25:16 +0000405 red_set_vars(&q->vars);
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) },
Eric Dumazeta73ed262011-12-09 02:46:45 +0000413 [TCA_GRED_MAX_P] = { .type = NLA_U32 },
Patrick McHardy27a34212008-01-23 20:35:39 -0800414};
415
Patrick McHardy1e904742008-01-22 22:11:17 -0800416static int gred_change(struct Qdisc *sch, struct nlattr *opt)
Thomas Graff62d6b92005-11-05 21:14:15 +0100417{
418 struct gred_sched *table = qdisc_priv(sch);
419 struct tc_gred_qopt *ctl;
Patrick McHardy1e904742008-01-22 22:11:17 -0800420 struct nlattr *tb[TCA_GRED_MAX + 1];
Patrick McHardycee63722008-01-23 20:33:32 -0800421 int err, prio = GRED_DEF_PRIO;
Thomas Graff62d6b92005-11-05 21:14:15 +0100422 u8 *stab;
Eric Dumazeta73ed262011-12-09 02:46:45 +0000423 u32 max_P;
Eric Dumazet869aa412011-12-15 22:09:45 +0000424 struct gred_sched_data *prealloc;
Thomas Graff62d6b92005-11-05 21:14:15 +0100425
Patrick McHardycee63722008-01-23 20:33:32 -0800426 if (opt == NULL)
Thomas Graff62d6b92005-11-05 21:14:15 +0100427 return -EINVAL;
428
Patrick McHardy27a34212008-01-23 20:35:39 -0800429 err = nla_parse_nested(tb, TCA_GRED_MAX, opt, gred_policy);
Patrick McHardycee63722008-01-23 20:33:32 -0800430 if (err < 0)
431 return err;
432
Patrick McHardy1e904742008-01-22 22:11:17 -0800433 if (tb[TCA_GRED_PARMS] == NULL && tb[TCA_GRED_STAB] == NULL)
Thomas Graff62d6b92005-11-05 21:14:15 +0100434 return gred_change_table_def(sch, opt);
435
Patrick McHardy1e904742008-01-22 22:11:17 -0800436 if (tb[TCA_GRED_PARMS] == NULL ||
Patrick McHardy27a34212008-01-23 20:35:39 -0800437 tb[TCA_GRED_STAB] == NULL)
Thomas Graff62d6b92005-11-05 21:14:15 +0100438 return -EINVAL;
439
Eric Dumazeta73ed262011-12-09 02:46:45 +0000440 max_P = tb[TCA_GRED_MAX_P] ? nla_get_u32(tb[TCA_GRED_MAX_P]) : 0;
441
Patrick McHardycee63722008-01-23 20:33:32 -0800442 err = -EINVAL;
Patrick McHardy1e904742008-01-22 22:11:17 -0800443 ctl = nla_data(tb[TCA_GRED_PARMS]);
444 stab = nla_data(tb[TCA_GRED_STAB]);
Thomas Graff62d6b92005-11-05 21:14:15 +0100445
446 if (ctl->DP >= table->DPs)
447 goto errout;
448
449 if (gred_rio_mode(table)) {
450 if (ctl->prio == 0) {
451 int def_prio = GRED_DEF_PRIO;
452
453 if (table->tab[table->def])
454 def_prio = table->tab[table->def]->prio;
455
456 printk(KERN_DEBUG "GRED: DP %u does not have a prio "
457 "setting default to %d\n", ctl->DP, def_prio);
458
459 prio = def_prio;
460 } else
461 prio = ctl->prio;
462 }
463
Eric Dumazet869aa412011-12-15 22:09:45 +0000464 prealloc = kzalloc(sizeof(*prealloc), GFP_KERNEL);
Thomas Graff62d6b92005-11-05 21:14:15 +0100465 sch_tree_lock(sch);
466
Eric Dumazet869aa412011-12-15 22:09:45 +0000467 err = gred_change_vq(sch, ctl->DP, ctl, prio, stab, max_P, &prealloc);
Thomas Graff62d6b92005-11-05 21:14:15 +0100468 if (err < 0)
469 goto errout_locked;
470
Thomas Grafd6fd4e92005-11-05 21:14:10 +0100471 if (gred_rio_mode(table)) {
Thomas Grafdea3f622005-11-05 21:14:09 +0100472 gred_disable_wred_mode(table);
473 if (gred_wred_mode_check(sch))
474 gred_enable_wred_mode(table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 }
476
Thomas Graff62d6b92005-11-05 21:14:15 +0100477 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Thomas Graff62d6b92005-11-05 21:14:15 +0100479errout_locked:
480 sch_tree_unlock(sch);
Eric Dumazet869aa412011-12-15 22:09:45 +0000481 kfree(prealloc);
Thomas Graff62d6b92005-11-05 21:14:15 +0100482errout:
483 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484}
485
Patrick McHardy1e904742008-01-22 22:11:17 -0800486static int gred_init(struct Qdisc *sch, struct nlattr *opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487{
Patrick McHardy1e904742008-01-22 22:11:17 -0800488 struct nlattr *tb[TCA_GRED_MAX + 1];
Patrick McHardycee63722008-01-23 20:33:32 -0800489 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Patrick McHardycee63722008-01-23 20:33:32 -0800491 if (opt == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 return -EINVAL;
493
Patrick McHardy27a34212008-01-23 20:35:39 -0800494 err = nla_parse_nested(tb, TCA_GRED_MAX, opt, gred_policy);
Patrick McHardycee63722008-01-23 20:33:32 -0800495 if (err < 0)
496 return err;
497
Patrick McHardy1e904742008-01-22 22:11:17 -0800498 if (tb[TCA_GRED_PARMS] || tb[TCA_GRED_STAB])
Thomas Graf66396072005-11-05 21:14:13 +0100499 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Patrick McHardy1e904742008-01-22 22:11:17 -0800501 return gred_change_table_def(sch, tb[TCA_GRED_DPS]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502}
503
504static int gred_dump(struct Qdisc *sch, struct sk_buff *skb)
505{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 struct gred_sched *table = qdisc_priv(sch);
Patrick McHardy1e904742008-01-22 22:11:17 -0800507 struct nlattr *parms, *opts = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 int i;
Eric Dumazeta73ed262011-12-09 02:46:45 +0000509 u32 max_p[MAX_DPs];
Thomas Grafe0636822005-11-05 21:14:12 +0100510 struct tc_gred_sopt sopt = {
511 .DPs = table->DPs,
512 .def_DP = table->def,
513 .grio = gred_rio_mode(table),
Thomas Grafb38c7ee2005-11-05 21:14:27 +0100514 .flags = table->red_flags,
Thomas Grafe0636822005-11-05 21:14:12 +0100515 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
Patrick McHardy1e904742008-01-22 22:11:17 -0800517 opts = nla_nest_start(skb, TCA_OPTIONS);
518 if (opts == NULL)
519 goto nla_put_failure;
David S. Miller1b34ec42012-03-29 05:11:39 -0400520 if (nla_put(skb, TCA_GRED_DPS, sizeof(sopt), &sopt))
521 goto nla_put_failure;
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 }
David S. Miller1b34ec42012-03-29 05:11:39 -0400528 if (nla_put(skb, TCA_GRED_MAX_P, sizeof(max_p), max_p))
529 goto nla_put_failure;
Eric Dumazeta73ed262011-12-09 02:46:45 +0000530
Patrick McHardy1e904742008-01-22 22:11:17 -0800531 parms = nla_nest_start(skb, TCA_GRED_PARMS);
532 if (parms == NULL)
533 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Thomas Graf05f1cc02005-11-05 21:14:11 +0100535 for (i = 0; i < MAX_DPs; i++) {
536 struct gred_sched_data *q = table->tab[i];
537 struct tc_gred_qopt opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Thomas Graf05f1cc02005-11-05 21:14:11 +0100539 memset(&opt, 0, sizeof(opt));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
541 if (!q) {
542 /* hack -- fix at some point with proper message
543 This is how we indicate to tc that there is no VQ
544 at this DP */
545
Thomas Graf05f1cc02005-11-05 21:14:11 +0100546 opt.DP = MAX_DPs + i;
547 goto append_opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 }
549
Thomas Graf05f1cc02005-11-05 21:14:11 +0100550 opt.limit = q->limit;
551 opt.DP = q->DP;
552 opt.backlog = q->backlog;
553 opt.prio = q->prio;
Thomas Graf22b33422005-11-05 21:14:16 +0100554 opt.qth_min = q->parms.qth_min >> q->parms.Wlog;
555 opt.qth_max = q->parms.qth_max >> q->parms.Wlog;
556 opt.Wlog = q->parms.Wlog;
557 opt.Plog = q->parms.Plog;
558 opt.Scell_log = q->parms.Scell_log;
559 opt.other = q->stats.other;
560 opt.early = q->stats.prob_drop;
561 opt.forced = q->stats.forced_drop;
562 opt.pdrop = q->stats.pdrop;
Thomas Graf05f1cc02005-11-05 21:14:11 +0100563 opt.packets = q->packetsin;
564 opt.bytesin = q->bytesin;
565
David Ward244b65d2012-04-15 12:31:45 +0000566 if (gred_wred_mode(table))
567 gred_load_wred_set(table, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Eric Dumazeteeca6682012-01-05 02:25:16 +0000569 opt.qave = red_calc_qavg(&q->parms, &q->vars, q->vars.qavg);
Thomas Graf22b33422005-11-05 21:14:16 +0100570
Thomas Graf05f1cc02005-11-05 21:14:11 +0100571append_opt:
Patrick McHardy1e904742008-01-22 22:11:17 -0800572 if (nla_append(skb, sizeof(opt), &opt) < 0)
573 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 }
575
Patrick McHardy1e904742008-01-22 22:11:17 -0800576 nla_nest_end(skb, parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Patrick McHardy1e904742008-01-22 22:11:17 -0800578 return nla_nest_end(skb, opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Patrick McHardy1e904742008-01-22 22:11:17 -0800580nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -0700581 nla_nest_cancel(skb, opts);
582 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583}
584
585static void gred_destroy(struct Qdisc *sch)
586{
587 struct gred_sched *table = qdisc_priv(sch);
588 int i;
589
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100590 for (i = 0; i < table->DPs; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 if (table->tab[i])
Thomas Graf66396072005-11-05 21:14:13 +0100592 gred_destroy_vq(table->tab[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 }
594}
595
Eric Dumazet20fea082007-11-14 01:44:41 -0800596static struct Qdisc_ops gred_qdisc_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 .id = "gred",
598 .priv_size = sizeof(struct gred_sched),
599 .enqueue = gred_enqueue,
600 .dequeue = gred_dequeue,
Jarek Poplawski8e3af972008-10-31 00:45:55 -0700601 .peek = qdisc_peek_head,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 .drop = gred_drop,
603 .init = gred_init,
604 .reset = gred_reset,
605 .destroy = gred_destroy,
606 .change = gred_change,
607 .dump = gred_dump,
608 .owner = THIS_MODULE,
609};
610
611static int __init gred_module_init(void)
612{
613 return register_qdisc(&gred_qdisc_ops);
614}
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100615
616static void __exit gred_module_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617{
618 unregister_qdisc(&gred_qdisc_ops);
619}
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100620
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621module_init(gred_module_init)
622module_exit(gred_module_exit)
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100623
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624MODULE_LICENSE("GPL");