blob: dfa657da100f31d1171af406c4f8745933a00955 [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>
Jakub Kicinski890d8d22018-11-19 15:21:42 -080026#include <net/pkt_cls.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <net/pkt_sched.h>
Thomas Graf22b33422005-11-05 21:14:16 +010028#include <net/red.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Thomas Graff62d6b92005-11-05 21:14:15 +010030#define GRED_DEF_PRIO (MAX_DPs / 2)
Thomas Graf716a1b42005-11-05 21:14:20 +010031#define GRED_VQ_MASK (MAX_DPs - 1)
Thomas Graff62d6b92005-11-05 21:14:15 +010032
Jakub Kicinski25fc1982018-11-14 22:23:50 -080033#define GRED_VQ_RED_FLAGS (TC_RED_ECN | TC_RED_HARDDROP)
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035struct gred_sched_data;
36struct gred_sched;
37
Eric Dumazetcc7ec452011-01-19 19:26:56 +000038struct gred_sched_data {
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 u32 limit; /* HARD maximal queue length */
Eric Dumazeta73ed262011-12-09 02:46:45 +000040 u32 DP; /* the drop parameters */
Jakub Kicinski25fc1982018-11-14 22:23:50 -080041 u32 red_flags; /* virtualQ version of red_flags */
Jakub Kicinski9f5cd0c2018-11-14 22:23:48 -080042 u64 bytesin; /* bytes seen on virtualQ so far*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 u32 packetsin; /* packets seen on virtualQ so far*/
44 u32 backlog; /* bytes on the virtualQ */
Thomas Graf1e4dfaf92005-11-05 21:14:25 +010045 u8 prio; /* the prio of this vq */
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Thomas Graf22b33422005-11-05 21:14:16 +010047 struct red_parms parms;
Eric Dumazeteeca6682012-01-05 02:25:16 +000048 struct red_vars vars;
Thomas Graf22b33422005-11-05 21:14:16 +010049 struct red_stats stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050};
51
Thomas Grafdea3f622005-11-05 21:14:09 +010052enum {
53 GRED_WRED_MODE = 1,
Thomas Grafd6fd4e92005-11-05 21:14:10 +010054 GRED_RIO_MODE,
Thomas Grafdea3f622005-11-05 21:14:09 +010055};
56
Eric Dumazetcc7ec452011-01-19 19:26:56 +000057struct gred_sched {
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 struct gred_sched_data *tab[MAX_DPs];
Thomas Grafdea3f622005-11-05 21:14:09 +010059 unsigned long flags;
Thomas Grafb38c7ee2005-11-05 21:14:27 +010060 u32 red_flags;
Thomas Graf1e4dfaf92005-11-05 21:14:25 +010061 u32 DPs;
62 u32 def;
Eric Dumazeteeca6682012-01-05 02:25:16 +000063 struct red_vars wred_set;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064};
65
Thomas Grafdea3f622005-11-05 21:14:09 +010066static inline int gred_wred_mode(struct gred_sched *table)
67{
68 return test_bit(GRED_WRED_MODE, &table->flags);
69}
70
71static inline void gred_enable_wred_mode(struct gred_sched *table)
72{
73 __set_bit(GRED_WRED_MODE, &table->flags);
74}
75
76static inline void gred_disable_wred_mode(struct gred_sched *table)
77{
78 __clear_bit(GRED_WRED_MODE, &table->flags);
79}
80
Thomas Grafd6fd4e92005-11-05 21:14:10 +010081static inline int gred_rio_mode(struct gred_sched *table)
82{
83 return test_bit(GRED_RIO_MODE, &table->flags);
84}
85
86static inline void gred_enable_rio_mode(struct gred_sched *table)
87{
88 __set_bit(GRED_RIO_MODE, &table->flags);
89}
90
91static inline void gred_disable_rio_mode(struct gred_sched *table)
92{
93 __clear_bit(GRED_RIO_MODE, &table->flags);
94}
95
Thomas Grafdea3f622005-11-05 21:14:09 +010096static inline int gred_wred_mode_check(struct Qdisc *sch)
97{
98 struct gred_sched *table = qdisc_priv(sch);
99 int i;
100
101 /* Really ugly O(n^2) but shouldn't be necessary too frequent. */
102 for (i = 0; i < table->DPs; i++) {
103 struct gred_sched_data *q = table->tab[i];
104 int n;
105
106 if (q == NULL)
107 continue;
108
David Wardc22e4642012-09-13 05:22:33 +0000109 for (n = i + 1; n < table->DPs; n++)
110 if (table->tab[n] && table->tab[n]->prio == q->prio)
Thomas Grafdea3f622005-11-05 21:14:09 +0100111 return 1;
112 }
113
114 return 0;
115}
116
Thomas Graf22b33422005-11-05 21:14:16 +0100117static inline unsigned int gred_backlog(struct gred_sched *table,
118 struct gred_sched_data *q,
119 struct Qdisc *sch)
120{
121 if (gred_wred_mode(table))
122 return sch->qstats.backlog;
123 else
124 return q->backlog;
125}
126
Thomas Graf716a1b42005-11-05 21:14:20 +0100127static inline u16 tc_index_to_dp(struct sk_buff *skb)
128{
129 return skb->tc_index & GRED_VQ_MASK;
130}
131
Eric Dumazeteeca6682012-01-05 02:25:16 +0000132static inline void gred_load_wred_set(const struct gred_sched *table,
Thomas Graf70517032005-11-05 21:14:23 +0100133 struct gred_sched_data *q)
134{
Eric Dumazeteeca6682012-01-05 02:25:16 +0000135 q->vars.qavg = table->wred_set.qavg;
136 q->vars.qidlestart = table->wred_set.qidlestart;
Thomas Graf70517032005-11-05 21:14:23 +0100137}
138
139static inline void gred_store_wred_set(struct gred_sched *table,
140 struct gred_sched_data *q)
141{
Eric Dumazeteeca6682012-01-05 02:25:16 +0000142 table->wred_set.qavg = q->vars.qavg;
David Wardba1bf472012-09-13 05:22:35 +0000143 table->wred_set.qidlestart = q->vars.qidlestart;
Thomas Graf70517032005-11-05 21:14:23 +0100144}
145
Jakub Kicinski25fc1982018-11-14 22:23:50 -0800146static int gred_use_ecn(struct gred_sched_data *q)
Thomas Grafb38c7ee2005-11-05 21:14:27 +0100147{
Jakub Kicinski25fc1982018-11-14 22:23:50 -0800148 return q->red_flags & TC_RED_ECN;
Thomas Grafb38c7ee2005-11-05 21:14:27 +0100149}
150
Jakub Kicinski25fc1982018-11-14 22:23:50 -0800151static int gred_use_harddrop(struct gred_sched_data *q)
Thomas Grafbdc450a2005-11-05 21:14:28 +0100152{
Jakub Kicinski25fc1982018-11-14 22:23:50 -0800153 return q->red_flags & TC_RED_HARDDROP;
Thomas Grafbdc450a2005-11-05 21:14:28 +0100154}
155
Jakub Kicinski72111012018-11-14 22:23:51 -0800156static bool gred_per_vq_red_flags_used(struct gred_sched *table)
157{
158 unsigned int i;
159
160 /* Local per-vq flags couldn't have been set unless global are 0 */
161 if (table->red_flags)
162 return false;
163 for (i = 0; i < MAX_DPs; i++)
164 if (table->tab[i] && table->tab[i]->red_flags)
165 return true;
166 return false;
167}
168
Eric Dumazet520ac302016-06-21 23:16:49 -0700169static int gred_enqueue(struct sk_buff *skb, struct Qdisc *sch,
170 struct sk_buff **to_free)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000172 struct gred_sched_data *q = NULL;
173 struct gred_sched *t = qdisc_priv(sch);
Thomas Graf22b33422005-11-05 21:14:16 +0100174 unsigned long qavg = 0;
Thomas Graf4a591832005-11-05 21:14:22 +0100175 u16 dp = tc_index_to_dp(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000177 if (dp >= t->DPs || (q = t->tab[dp]) == NULL) {
Thomas Graf18e3fb842005-11-05 21:14:21 +0100178 dp = t->def;
179
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000180 q = t->tab[dp];
181 if (!q) {
Thomas Graf18e3fb842005-11-05 21:14:21 +0100182 /* Pass through packets not assigned to a DP
183 * if no default DP has been configured. This
184 * allows for DP flows to be left untouched.
185 */
David Warda3eb95f2015-05-09 22:01:46 -0400186 if (likely(sch->qstats.backlog + qdisc_pkt_len(skb) <=
187 sch->limit))
Thomas Graf18e3fb842005-11-05 21:14:21 +0100188 return qdisc_enqueue_tail(skb, sch);
189 else
190 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 }
Thomas Graf18e3fb842005-11-05 21:14:21 +0100192
Eric Dumazeteeca6682012-01-05 02:25:16 +0000193 /* fix tc_index? --could be controversial but needed for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 requeueing */
Thomas Graf18e3fb842005-11-05 21:14:21 +0100195 skb->tc_index = (skb->tc_index & ~GRED_VQ_MASK) | dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 }
197
David Warde29fe832012-09-13 05:22:32 +0000198 /* sum up all the qaves of prios < ours to get the new qave */
Thomas Grafd6fd4e92005-11-05 21:14:10 +0100199 if (!gred_wred_mode(t) && gred_rio_mode(t)) {
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100200 int i;
201
202 for (i = 0; i < t->DPs; i++) {
203 if (t->tab[i] && t->tab[i]->prio < q->prio &&
Eric Dumazeteeca6682012-01-05 02:25:16 +0000204 !red_is_idling(&t->tab[i]->vars))
205 qavg += t->tab[i]->vars.qavg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 }
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 }
209
210 q->packetsin++;
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700211 q->bytesin += qdisc_pkt_len(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100213 if (gred_wred_mode(t))
Thomas Graf70517032005-11-05 21:14:23 +0100214 gred_load_wred_set(t, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Eric Dumazeteeca6682012-01-05 02:25:16 +0000216 q->vars.qavg = red_calc_qavg(&q->parms,
217 &q->vars,
218 gred_backlog(t, q, sch));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Eric Dumazeteeca6682012-01-05 02:25:16 +0000220 if (red_is_idling(&q->vars))
221 red_end_of_idle_period(&q->vars);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Thomas Grafdea3f622005-11-05 21:14:09 +0100223 if (gred_wred_mode(t))
Thomas Graf70517032005-11-05 21:14:23 +0100224 gred_store_wred_set(t, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Eric Dumazeteeca6682012-01-05 02:25:16 +0000226 switch (red_action(&q->parms, &q->vars, q->vars.qavg + qavg)) {
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000227 case RED_DONT_MARK:
228 break;
Thomas Graf22b33422005-11-05 21:14:16 +0100229
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000230 case RED_PROB_MARK:
John Fastabend25331d62014-09-28 11:53:29 -0700231 qdisc_qstats_overlimit(sch);
Jakub Kicinski25fc1982018-11-14 22:23:50 -0800232 if (!gred_use_ecn(q) || !INET_ECN_set_ce(skb)) {
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000233 q->stats.prob_drop++;
234 goto congestion_drop;
235 }
Thomas Grafb38c7ee2005-11-05 21:14:27 +0100236
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000237 q->stats.prob_mark++;
238 break;
Thomas Graf22b33422005-11-05 21:14:16 +0100239
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000240 case RED_HARD_MARK:
John Fastabend25331d62014-09-28 11:53:29 -0700241 qdisc_qstats_overlimit(sch);
Jakub Kicinski25fc1982018-11-14 22:23:50 -0800242 if (gred_use_harddrop(q) || !gred_use_ecn(q) ||
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000243 !INET_ECN_set_ce(skb)) {
244 q->stats.forced_drop++;
245 goto congestion_drop;
246 }
247 q->stats.forced_mark++;
248 break;
Thomas Graf22b33422005-11-05 21:14:16 +0100249 }
250
David Ward145a42b2015-05-09 22:01:47 -0400251 if (gred_backlog(t, q, sch) + qdisc_pkt_len(skb) <= q->limit) {
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700252 q->backlog += qdisc_pkt_len(skb);
Thomas Grafedf7a7b2005-11-05 21:14:19 +0100253 return qdisc_enqueue_tail(skb, sch);
Thomas Graf22b33422005-11-05 21:14:16 +0100254 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Thomas Graf22b33422005-11-05 21:14:16 +0100256 q->stats.pdrop++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257drop:
Eric Dumazet520ac302016-06-21 23:16:49 -0700258 return qdisc_drop(skb, sch, to_free);
Thomas Grafc3b553c2005-11-05 21:14:18 +0100259
260congestion_drop:
Eric Dumazet520ac302016-06-21 23:16:49 -0700261 qdisc_drop(skb, sch, to_free);
Thomas Grafc3b553c2005-11-05 21:14:18 +0100262 return NET_XMIT_CN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263}
264
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000265static struct sk_buff *gred_dequeue(struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266{
267 struct sk_buff *skb;
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100268 struct gred_sched *t = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Thomas Grafedf7a7b2005-11-05 21:14:19 +0100270 skb = qdisc_dequeue_head(sch);
271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 if (skb) {
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100273 struct gred_sched_data *q;
Thomas Graf18e3fb842005-11-05 21:14:21 +0100274 u16 dp = tc_index_to_dp(skb);
275
276 if (dp >= t->DPs || (q = t->tab[dp]) == NULL) {
Joe Perchese87cc472012-05-13 21:56:26 +0000277 net_warn_ratelimited("GRED: Unable to relocate VQ 0x%x after dequeue, screwing up backlog\n",
278 tc_index_to_dp(skb));
Thomas Graf18e3fb842005-11-05 21:14:21 +0100279 } else {
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700280 q->backlog -= qdisc_pkt_len(skb);
Thomas Graf18e3fb842005-11-05 21:14:21 +0100281
David Wardba1bf472012-09-13 05:22:35 +0000282 if (gred_wred_mode(t)) {
283 if (!sch->qstats.backlog)
284 red_start_of_idle_period(&t->wred_set);
285 } else {
286 if (!q->backlog)
287 red_start_of_idle_period(&q->vars);
288 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 }
Thomas Graf18e3fb842005-11-05 21:14:21 +0100290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 return skb;
292 }
293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 return NULL;
295}
296
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000297static void gred_reset(struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
299 int i;
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100300 struct gred_sched *t = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Thomas Grafedf7a7b2005-11-05 21:14:19 +0100302 qdisc_reset_queue(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900304 for (i = 0; i < t->DPs; i++) {
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100305 struct gred_sched_data *q = t->tab[i];
306
307 if (!q)
308 continue;
309
Eric Dumazeteeca6682012-01-05 02:25:16 +0000310 red_restart(&q->vars);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 q->backlog = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 }
313}
314
Jakub Kicinski890d8d22018-11-19 15:21:42 -0800315static void gred_offload(struct Qdisc *sch, enum tc_gred_command command)
316{
317 struct gred_sched *table = qdisc_priv(sch);
318 struct net_device *dev = qdisc_dev(sch);
319 struct tc_gred_qopt_offload opt = {
320 .command = command,
321 .handle = sch->handle,
322 .parent = sch->parent,
323 };
324
325 if (!tc_can_offload(dev) || !dev->netdev_ops->ndo_setup_tc)
326 return;
327
328 if (command == TC_GRED_REPLACE) {
329 unsigned int i;
330
331 opt.set.grio_on = gred_rio_mode(table);
332 opt.set.wred_on = gred_wred_mode(table);
333 opt.set.dp_cnt = table->DPs;
334 opt.set.dp_def = table->def;
335
336 for (i = 0; i < table->DPs; i++) {
337 struct gred_sched_data *q = table->tab[i];
338
339 if (!q)
340 continue;
341 opt.set.tab[i].present = true;
342 opt.set.tab[i].limit = q->limit;
343 opt.set.tab[i].prio = q->prio;
344 opt.set.tab[i].min = q->parms.qth_min >> q->parms.Wlog;
345 opt.set.tab[i].max = q->parms.qth_max >> q->parms.Wlog;
346 opt.set.tab[i].is_ecn = gred_use_ecn(q);
347 opt.set.tab[i].is_harddrop = gred_use_harddrop(q);
348 opt.set.tab[i].probability = q->parms.max_P;
349 opt.set.tab[i].backlog = &q->backlog;
350 }
351 opt.set.qstats = &sch->qstats;
352 }
353
354 dev->netdev_ops->ndo_setup_tc(dev, TC_SETUP_QDISC_GRED, &opt);
355}
356
Jakub Kicinskie49efd52018-11-19 15:21:43 -0800357static int gred_offload_dump_stats(struct Qdisc *sch)
358{
359 struct gred_sched *table = qdisc_priv(sch);
360 struct tc_gred_qopt_offload *hw_stats;
361 unsigned int i;
362 int ret;
363
364 hw_stats = kzalloc(sizeof(*hw_stats), GFP_KERNEL);
365 if (!hw_stats)
366 return -ENOMEM;
367
368 hw_stats->command = TC_GRED_STATS;
369 hw_stats->handle = sch->handle;
370 hw_stats->parent = sch->parent;
371
372 for (i = 0; i < MAX_DPs; i++)
373 if (table->tab[i])
374 hw_stats->stats.xstats[i] = &table->tab[i]->stats;
375
376 ret = qdisc_offload_dump_helper(sch, TC_SETUP_QDISC_GRED, hw_stats);
377 /* Even if driver returns failure adjust the stats - in case offload
378 * ended but driver still wants to adjust the values.
379 */
380 for (i = 0; i < MAX_DPs; i++) {
381 if (!table->tab[i])
382 continue;
383 table->tab[i]->packetsin += hw_stats->stats.bstats[i].packets;
384 table->tab[i]->bytesin += hw_stats->stats.bstats[i].bytes;
385 table->tab[i]->backlog += hw_stats->stats.qstats[i].backlog;
386
387 _bstats_update(&sch->bstats,
388 hw_stats->stats.bstats[i].bytes,
389 hw_stats->stats.bstats[i].packets);
390 sch->qstats.qlen += hw_stats->stats.qstats[i].qlen;
391 sch->qstats.backlog += hw_stats->stats.qstats[i].backlog;
392 sch->qstats.drops += hw_stats->stats.qstats[i].drops;
393 sch->qstats.requeues += hw_stats->stats.qstats[i].requeues;
394 sch->qstats.overlimits += hw_stats->stats.qstats[i].overlimits;
395 }
396
397 kfree(hw_stats);
398 return ret;
399}
400
Thomas Graf66396072005-11-05 21:14:13 +0100401static inline void gred_destroy_vq(struct gred_sched_data *q)
402{
403 kfree(q);
404}
405
Jakub Kicinski4777be02018-11-14 22:23:47 -0800406static int gred_change_table_def(struct Qdisc *sch, struct nlattr *dps,
407 struct netlink_ext_ack *extack)
Thomas Graf66396072005-11-05 21:14:13 +0100408{
409 struct gred_sched *table = qdisc_priv(sch);
410 struct tc_gred_sopt *sopt;
Jakub Kicinski25fc1982018-11-14 22:23:50 -0800411 bool red_flags_changed;
Thomas Graf66396072005-11-05 21:14:13 +0100412 int i;
413
Alexander Aringac8ef4a2017-12-20 12:35:11 -0500414 if (!dps)
Thomas Graf66396072005-11-05 21:14:13 +0100415 return -EINVAL;
416
Patrick McHardy1e904742008-01-22 22:11:17 -0800417 sopt = nla_data(dps);
Thomas Graf66396072005-11-05 21:14:13 +0100418
Jakub Kicinski4777be02018-11-14 22:23:47 -0800419 if (sopt->DPs > MAX_DPs) {
420 NL_SET_ERR_MSG_MOD(extack, "number of virtual queues too high");
Thomas Graf66396072005-11-05 21:14:13 +0100421 return -EINVAL;
Jakub Kicinski4777be02018-11-14 22:23:47 -0800422 }
423 if (sopt->DPs == 0) {
424 NL_SET_ERR_MSG_MOD(extack,
425 "number of virtual queues can't be 0");
426 return -EINVAL;
427 }
428 if (sopt->def_DP >= sopt->DPs) {
429 NL_SET_ERR_MSG_MOD(extack, "default virtual queue above virtual queue count");
430 return -EINVAL;
431 }
Jakub Kicinski72111012018-11-14 22:23:51 -0800432 if (sopt->flags && gred_per_vq_red_flags_used(table)) {
433 NL_SET_ERR_MSG_MOD(extack, "can't set per-Qdisc RED flags when per-virtual queue flags are used");
434 return -EINVAL;
435 }
Thomas Graf66396072005-11-05 21:14:13 +0100436
437 sch_tree_lock(sch);
438 table->DPs = sopt->DPs;
439 table->def = sopt->def_DP;
Jakub Kicinski25fc1982018-11-14 22:23:50 -0800440 red_flags_changed = table->red_flags != sopt->flags;
Thomas Grafb38c7ee2005-11-05 21:14:27 +0100441 table->red_flags = sopt->flags;
Thomas Graf66396072005-11-05 21:14:13 +0100442
443 /*
444 * Every entry point to GRED is synchronized with the above code
445 * and the DP is checked against DPs, i.e. shadowed VQs can no
446 * longer be found so we can unlock right here.
447 */
448 sch_tree_unlock(sch);
449
450 if (sopt->grio) {
451 gred_enable_rio_mode(table);
452 gred_disable_wred_mode(table);
453 if (gred_wred_mode_check(sch))
454 gred_enable_wred_mode(table);
455 } else {
456 gred_disable_rio_mode(table);
457 gred_disable_wred_mode(table);
458 }
459
Jakub Kicinski25fc1982018-11-14 22:23:50 -0800460 if (red_flags_changed)
461 for (i = 0; i < table->DPs; i++)
462 if (table->tab[i])
463 table->tab[i]->red_flags =
464 table->red_flags & GRED_VQ_RED_FLAGS;
465
Thomas Graf66396072005-11-05 21:14:13 +0100466 for (i = table->DPs; i < MAX_DPs; i++) {
467 if (table->tab[i]) {
Yang Yingliangc17988a2013-12-23 17:38:58 +0800468 pr_warn("GRED: Warning: Destroying shadowed VQ 0x%x\n",
469 i);
Thomas Graf66396072005-11-05 21:14:13 +0100470 gred_destroy_vq(table->tab[i]);
471 table->tab[i] = NULL;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900472 }
Thomas Graf66396072005-11-05 21:14:13 +0100473 }
474
Jakub Kicinski890d8d22018-11-19 15:21:42 -0800475 gred_offload(sch, TC_GRED_REPLACE);
Thomas Graf66396072005-11-05 21:14:13 +0100476 return 0;
477}
478
Thomas Graff62d6b92005-11-05 21:14:15 +0100479static inline int gred_change_vq(struct Qdisc *sch, int dp,
Eric Dumazeta73ed262011-12-09 02:46:45 +0000480 struct tc_gred_qopt *ctl, int prio,
Eric Dumazet869aa412011-12-15 22:09:45 +0000481 u8 *stab, u32 max_P,
Jakub Kicinski4777be02018-11-14 22:23:47 -0800482 struct gred_sched_data **prealloc,
483 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484{
485 struct gred_sched *table = qdisc_priv(sch);
Eric Dumazet869aa412011-12-15 22:09:45 +0000486 struct gred_sched_data *q = table->tab[dp];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Jakub Kicinski4777be02018-11-14 22:23:47 -0800488 if (!red_check_params(ctl->qth_min, ctl->qth_max, ctl->Wlog)) {
489 NL_SET_ERR_MSG_MOD(extack, "invalid RED parameters");
Nogah Frankel8afa10c2017-12-04 13:31:11 +0200490 return -EINVAL;
Jakub Kicinski4777be02018-11-14 22:23:47 -0800491 }
Nogah Frankel8afa10c2017-12-04 13:31:11 +0200492
Eric Dumazet869aa412011-12-15 22:09:45 +0000493 if (!q) {
494 table->tab[dp] = q = *prealloc;
495 *prealloc = NULL;
496 if (!q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 return -ENOMEM;
Jakub Kicinski25fc1982018-11-14 22:23:50 -0800498 q->red_flags = table->red_flags & GRED_VQ_RED_FLAGS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 }
500
Thomas Graff62d6b92005-11-05 21:14:15 +0100501 q->DP = dp;
502 q->prio = prio;
David Warda3eb95f2015-05-09 22:01:46 -0400503 if (ctl->limit > sch->limit)
504 q->limit = sch->limit;
505 else
506 q->limit = ctl->limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Thomas Graf22b33422005-11-05 21:14:16 +0100508 if (q->backlog == 0)
Eric Dumazeteeca6682012-01-05 02:25:16 +0000509 red_end_of_idle_period(&q->vars);
Thomas Graf22b33422005-11-05 21:14:16 +0100510
511 red_set_parms(&q->parms,
512 ctl->qth_min, ctl->qth_max, ctl->Wlog, ctl->Plog,
Eric Dumazeta73ed262011-12-09 02:46:45 +0000513 ctl->Scell_log, stab, max_P);
Eric Dumazeteeca6682012-01-05 02:25:16 +0000514 red_set_vars(&q->vars);
Thomas Graff62d6b92005-11-05 21:14:15 +0100515 return 0;
516}
517
Jakub Kicinski72111012018-11-14 22:23:51 -0800518static const struct nla_policy gred_vq_policy[TCA_GRED_VQ_MAX + 1] = {
519 [TCA_GRED_VQ_DP] = { .type = NLA_U32 },
520 [TCA_GRED_VQ_FLAGS] = { .type = NLA_U32 },
521};
522
523static const struct nla_policy gred_vqe_policy[TCA_GRED_VQ_ENTRY_MAX + 1] = {
524 [TCA_GRED_VQ_ENTRY] = { .type = NLA_NESTED },
525};
526
Patrick McHardy27a34212008-01-23 20:35:39 -0800527static const struct nla_policy gred_policy[TCA_GRED_MAX + 1] = {
528 [TCA_GRED_PARMS] = { .len = sizeof(struct tc_gred_qopt) },
529 [TCA_GRED_STAB] = { .len = 256 },
530 [TCA_GRED_DPS] = { .len = sizeof(struct tc_gred_sopt) },
Eric Dumazeta73ed262011-12-09 02:46:45 +0000531 [TCA_GRED_MAX_P] = { .type = NLA_U32 },
David Warda3eb95f2015-05-09 22:01:46 -0400532 [TCA_GRED_LIMIT] = { .type = NLA_U32 },
Jakub Kicinski72111012018-11-14 22:23:51 -0800533 [TCA_GRED_VQ_LIST] = { .type = NLA_NESTED },
Patrick McHardy27a34212008-01-23 20:35:39 -0800534};
535
Jakub Kicinski72111012018-11-14 22:23:51 -0800536static void gred_vq_apply(struct gred_sched *table, const struct nlattr *entry)
537{
538 struct nlattr *tb[TCA_GRED_VQ_MAX + 1];
539 u32 dp;
540
Johannes Berg8cb08172019-04-26 14:07:28 +0200541 nla_parse_nested_deprecated(tb, TCA_GRED_VQ_MAX, entry,
542 gred_vq_policy, NULL);
Jakub Kicinski72111012018-11-14 22:23:51 -0800543
544 dp = nla_get_u32(tb[TCA_GRED_VQ_DP]);
545
546 if (tb[TCA_GRED_VQ_FLAGS])
547 table->tab[dp]->red_flags = nla_get_u32(tb[TCA_GRED_VQ_FLAGS]);
548}
549
550static void gred_vqs_apply(struct gred_sched *table, struct nlattr *vqs)
551{
552 const struct nlattr *attr;
553 int rem;
554
555 nla_for_each_nested(attr, vqs, rem) {
556 switch (nla_type(attr)) {
557 case TCA_GRED_VQ_ENTRY:
558 gred_vq_apply(table, attr);
559 break;
560 }
561 }
562}
563
564static int gred_vq_validate(struct gred_sched *table, u32 cdp,
565 const struct nlattr *entry,
566 struct netlink_ext_ack *extack)
567{
568 struct nlattr *tb[TCA_GRED_VQ_MAX + 1];
569 int err;
570 u32 dp;
571
Johannes Berg8cb08172019-04-26 14:07:28 +0200572 err = nla_parse_nested_deprecated(tb, TCA_GRED_VQ_MAX, entry,
573 gred_vq_policy, extack);
Jakub Kicinski72111012018-11-14 22:23:51 -0800574 if (err < 0)
575 return err;
576
577 if (!tb[TCA_GRED_VQ_DP]) {
578 NL_SET_ERR_MSG_MOD(extack, "Virtual queue with no index specified");
579 return -EINVAL;
580 }
581 dp = nla_get_u32(tb[TCA_GRED_VQ_DP]);
582 if (dp >= table->DPs) {
583 NL_SET_ERR_MSG_MOD(extack, "Virtual queue with index out of bounds");
584 return -EINVAL;
585 }
586 if (dp != cdp && !table->tab[dp]) {
587 NL_SET_ERR_MSG_MOD(extack, "Virtual queue not yet instantiated");
588 return -EINVAL;
589 }
590
591 if (tb[TCA_GRED_VQ_FLAGS]) {
592 u32 red_flags = nla_get_u32(tb[TCA_GRED_VQ_FLAGS]);
593
594 if (table->red_flags && table->red_flags != red_flags) {
595 NL_SET_ERR_MSG_MOD(extack, "can't change per-virtual queue RED flags when per-Qdisc flags are used");
596 return -EINVAL;
597 }
598 if (red_flags & ~GRED_VQ_RED_FLAGS) {
599 NL_SET_ERR_MSG_MOD(extack,
600 "invalid RED flags specified");
601 return -EINVAL;
602 }
603 }
604
605 return 0;
606}
607
608static int gred_vqs_validate(struct gred_sched *table, u32 cdp,
609 struct nlattr *vqs, struct netlink_ext_ack *extack)
610{
611 const struct nlattr *attr;
612 int rem, err;
613
Johannes Berg8cb08172019-04-26 14:07:28 +0200614 err = nla_validate_nested_deprecated(vqs, TCA_GRED_VQ_ENTRY_MAX,
615 gred_vqe_policy, extack);
Jakub Kicinski72111012018-11-14 22:23:51 -0800616 if (err < 0)
617 return err;
618
619 nla_for_each_nested(attr, vqs, rem) {
620 switch (nla_type(attr)) {
621 case TCA_GRED_VQ_ENTRY:
622 err = gred_vq_validate(table, cdp, attr, extack);
623 if (err)
624 return err;
625 break;
626 default:
627 NL_SET_ERR_MSG_MOD(extack, "GRED_VQ_LIST can contain only entry attributes");
628 return -EINVAL;
629 }
630 }
631
632 if (rem > 0) {
633 NL_SET_ERR_MSG_MOD(extack, "Trailing data after parsing virtual queue list");
634 return -EINVAL;
635 }
636
637 return 0;
638}
639
Alexander Aring20307212017-12-20 12:35:14 -0500640static int gred_change(struct Qdisc *sch, struct nlattr *opt,
641 struct netlink_ext_ack *extack)
Thomas Graff62d6b92005-11-05 21:14:15 +0100642{
643 struct gred_sched *table = qdisc_priv(sch);
644 struct tc_gred_qopt *ctl;
Patrick McHardy1e904742008-01-22 22:11:17 -0800645 struct nlattr *tb[TCA_GRED_MAX + 1];
Patrick McHardycee63722008-01-23 20:33:32 -0800646 int err, prio = GRED_DEF_PRIO;
Thomas Graff62d6b92005-11-05 21:14:15 +0100647 u8 *stab;
Eric Dumazeta73ed262011-12-09 02:46:45 +0000648 u32 max_P;
Eric Dumazet869aa412011-12-15 22:09:45 +0000649 struct gred_sched_data *prealloc;
Thomas Graff62d6b92005-11-05 21:14:15 +0100650
Patrick McHardycee63722008-01-23 20:33:32 -0800651 if (opt == NULL)
Thomas Graff62d6b92005-11-05 21:14:15 +0100652 return -EINVAL;
653
Johannes Berg8cb08172019-04-26 14:07:28 +0200654 err = nla_parse_nested_deprecated(tb, TCA_GRED_MAX, opt, gred_policy,
655 extack);
Patrick McHardycee63722008-01-23 20:33:32 -0800656 if (err < 0)
657 return err;
658
David Warda3eb95f2015-05-09 22:01:46 -0400659 if (tb[TCA_GRED_PARMS] == NULL && tb[TCA_GRED_STAB] == NULL) {
660 if (tb[TCA_GRED_LIMIT] != NULL)
661 sch->limit = nla_get_u32(tb[TCA_GRED_LIMIT]);
Jakub Kicinski4777be02018-11-14 22:23:47 -0800662 return gred_change_table_def(sch, tb[TCA_GRED_DPS], extack);
David Warda3eb95f2015-05-09 22:01:46 -0400663 }
Thomas Graff62d6b92005-11-05 21:14:15 +0100664
Patrick McHardy1e904742008-01-22 22:11:17 -0800665 if (tb[TCA_GRED_PARMS] == NULL ||
David Warda3eb95f2015-05-09 22:01:46 -0400666 tb[TCA_GRED_STAB] == NULL ||
Jakub Kicinski4777be02018-11-14 22:23:47 -0800667 tb[TCA_GRED_LIMIT] != NULL) {
668 NL_SET_ERR_MSG_MOD(extack, "can't configure Qdisc and virtual queue at the same time");
Thomas Graff62d6b92005-11-05 21:14:15 +0100669 return -EINVAL;
Jakub Kicinski4777be02018-11-14 22:23:47 -0800670 }
Thomas Graff62d6b92005-11-05 21:14:15 +0100671
Eric Dumazeta73ed262011-12-09 02:46:45 +0000672 max_P = tb[TCA_GRED_MAX_P] ? nla_get_u32(tb[TCA_GRED_MAX_P]) : 0;
673
Patrick McHardy1e904742008-01-22 22:11:17 -0800674 ctl = nla_data(tb[TCA_GRED_PARMS]);
675 stab = nla_data(tb[TCA_GRED_STAB]);
Thomas Graff62d6b92005-11-05 21:14:15 +0100676
Jakub Kicinski4777be02018-11-14 22:23:47 -0800677 if (ctl->DP >= table->DPs) {
678 NL_SET_ERR_MSG_MOD(extack, "virtual queue index above virtual queue count");
Jakub Kicinski255f4802018-11-14 22:23:45 -0800679 return -EINVAL;
Jakub Kicinski4777be02018-11-14 22:23:47 -0800680 }
Thomas Graff62d6b92005-11-05 21:14:15 +0100681
Jakub Kicinski72111012018-11-14 22:23:51 -0800682 if (tb[TCA_GRED_VQ_LIST]) {
683 err = gred_vqs_validate(table, ctl->DP, tb[TCA_GRED_VQ_LIST],
684 extack);
685 if (err)
686 return err;
687 }
688
Thomas Graff62d6b92005-11-05 21:14:15 +0100689 if (gred_rio_mode(table)) {
690 if (ctl->prio == 0) {
691 int def_prio = GRED_DEF_PRIO;
692
693 if (table->tab[table->def])
694 def_prio = table->tab[table->def]->prio;
695
696 printk(KERN_DEBUG "GRED: DP %u does not have a prio "
697 "setting default to %d\n", ctl->DP, def_prio);
698
699 prio = def_prio;
700 } else
701 prio = ctl->prio;
702 }
703
Eric Dumazet869aa412011-12-15 22:09:45 +0000704 prealloc = kzalloc(sizeof(*prealloc), GFP_KERNEL);
Thomas Graff62d6b92005-11-05 21:14:15 +0100705 sch_tree_lock(sch);
706
Jakub Kicinski4777be02018-11-14 22:23:47 -0800707 err = gred_change_vq(sch, ctl->DP, ctl, prio, stab, max_P, &prealloc,
708 extack);
Thomas Graff62d6b92005-11-05 21:14:15 +0100709 if (err < 0)
Jakub Kicinski255f4802018-11-14 22:23:45 -0800710 goto err_unlock_free;
Thomas Graff62d6b92005-11-05 21:14:15 +0100711
Jakub Kicinski72111012018-11-14 22:23:51 -0800712 if (tb[TCA_GRED_VQ_LIST])
713 gred_vqs_apply(table, tb[TCA_GRED_VQ_LIST]);
714
Thomas Grafd6fd4e92005-11-05 21:14:10 +0100715 if (gred_rio_mode(table)) {
Thomas Grafdea3f622005-11-05 21:14:09 +0100716 gred_disable_wred_mode(table);
717 if (gred_wred_mode_check(sch))
718 gred_enable_wred_mode(table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 }
720
Thomas Graff62d6b92005-11-05 21:14:15 +0100721 sch_tree_unlock(sch);
Eric Dumazet869aa412011-12-15 22:09:45 +0000722 kfree(prealloc);
Jakub Kicinski890d8d22018-11-19 15:21:42 -0800723
724 gred_offload(sch, TC_GRED_REPLACE);
Jakub Kicinski255f4802018-11-14 22:23:45 -0800725 return 0;
726
727err_unlock_free:
728 sch_tree_unlock(sch);
729 kfree(prealloc);
Thomas Graff62d6b92005-11-05 21:14:15 +0100730 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731}
732
Alexander Aringe63d7df2017-12-20 12:35:13 -0500733static int gred_init(struct Qdisc *sch, struct nlattr *opt,
734 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735{
Patrick McHardy1e904742008-01-22 22:11:17 -0800736 struct nlattr *tb[TCA_GRED_MAX + 1];
Patrick McHardycee63722008-01-23 20:33:32 -0800737 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
Alexander Aringac8ef4a2017-12-20 12:35:11 -0500739 if (!opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 return -EINVAL;
741
Johannes Berg8cb08172019-04-26 14:07:28 +0200742 err = nla_parse_nested_deprecated(tb, TCA_GRED_MAX, opt, gred_policy,
743 extack);
Patrick McHardycee63722008-01-23 20:33:32 -0800744 if (err < 0)
745 return err;
746
Jakub Kicinski4777be02018-11-14 22:23:47 -0800747 if (tb[TCA_GRED_PARMS] || tb[TCA_GRED_STAB]) {
748 NL_SET_ERR_MSG_MOD(extack,
749 "virtual queue configuration can't be specified at initialization time");
Thomas Graf66396072005-11-05 21:14:13 +0100750 return -EINVAL;
Jakub Kicinski4777be02018-11-14 22:23:47 -0800751 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
David Warda3eb95f2015-05-09 22:01:46 -0400753 if (tb[TCA_GRED_LIMIT])
754 sch->limit = nla_get_u32(tb[TCA_GRED_LIMIT]);
Phil Sutter348e3432015-08-18 10:30:49 +0200755 else
756 sch->limit = qdisc_dev(sch)->tx_queue_len
757 * psched_mtu(qdisc_dev(sch));
David Warda3eb95f2015-05-09 22:01:46 -0400758
Jakub Kicinski4777be02018-11-14 22:23:47 -0800759 return gred_change_table_def(sch, tb[TCA_GRED_DPS], extack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760}
761
762static int gred_dump(struct Qdisc *sch, struct sk_buff *skb)
763{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 struct gred_sched *table = qdisc_priv(sch);
Jakub Kicinski80e22e92018-11-14 22:23:49 -0800765 struct nlattr *parms, *vqs, *opts = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 int i;
Eric Dumazeta73ed262011-12-09 02:46:45 +0000767 u32 max_p[MAX_DPs];
Thomas Grafe0636822005-11-05 21:14:12 +0100768 struct tc_gred_sopt sopt = {
769 .DPs = table->DPs,
770 .def_DP = table->def,
771 .grio = gred_rio_mode(table),
Thomas Grafb38c7ee2005-11-05 21:14:27 +0100772 .flags = table->red_flags,
Thomas Grafe0636822005-11-05 21:14:12 +0100773 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
Jakub Kicinskie49efd52018-11-19 15:21:43 -0800775 if (gred_offload_dump_stats(sch))
776 goto nla_put_failure;
777
Michal Kubecekae0be8d2019-04-26 11:13:06 +0200778 opts = nla_nest_start_noflag(skb, TCA_OPTIONS);
Patrick McHardy1e904742008-01-22 22:11:17 -0800779 if (opts == NULL)
780 goto nla_put_failure;
David S. Miller1b34ec42012-03-29 05:11:39 -0400781 if (nla_put(skb, TCA_GRED_DPS, sizeof(sopt), &sopt))
782 goto nla_put_failure;
Eric Dumazeta73ed262011-12-09 02:46:45 +0000783
784 for (i = 0; i < MAX_DPs; i++) {
785 struct gred_sched_data *q = table->tab[i];
786
787 max_p[i] = q ? q->parms.max_P : 0;
788 }
David S. Miller1b34ec42012-03-29 05:11:39 -0400789 if (nla_put(skb, TCA_GRED_MAX_P, sizeof(max_p), max_p))
790 goto nla_put_failure;
Eric Dumazeta73ed262011-12-09 02:46:45 +0000791
David Warda3eb95f2015-05-09 22:01:46 -0400792 if (nla_put_u32(skb, TCA_GRED_LIMIT, sch->limit))
793 goto nla_put_failure;
794
Jakub Kicinski80e22e92018-11-14 22:23:49 -0800795 /* Old style all-in-one dump of VQs */
Michal Kubecekae0be8d2019-04-26 11:13:06 +0200796 parms = nla_nest_start_noflag(skb, TCA_GRED_PARMS);
Patrick McHardy1e904742008-01-22 22:11:17 -0800797 if (parms == NULL)
798 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
Thomas Graf05f1cc02005-11-05 21:14:11 +0100800 for (i = 0; i < MAX_DPs; i++) {
801 struct gred_sched_data *q = table->tab[i];
802 struct tc_gred_qopt opt;
David Ward1fe37b12012-09-13 05:22:34 +0000803 unsigned long qavg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
Thomas Graf05f1cc02005-11-05 21:14:11 +0100805 memset(&opt, 0, sizeof(opt));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
807 if (!q) {
808 /* hack -- fix at some point with proper message
809 This is how we indicate to tc that there is no VQ
810 at this DP */
811
Thomas Graf05f1cc02005-11-05 21:14:11 +0100812 opt.DP = MAX_DPs + i;
813 goto append_opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 }
815
Thomas Graf05f1cc02005-11-05 21:14:11 +0100816 opt.limit = q->limit;
817 opt.DP = q->DP;
David Ward145a42b2015-05-09 22:01:47 -0400818 opt.backlog = gred_backlog(table, q, sch);
Thomas Graf05f1cc02005-11-05 21:14:11 +0100819 opt.prio = q->prio;
Thomas Graf22b33422005-11-05 21:14:16 +0100820 opt.qth_min = q->parms.qth_min >> q->parms.Wlog;
821 opt.qth_max = q->parms.qth_max >> q->parms.Wlog;
822 opt.Wlog = q->parms.Wlog;
823 opt.Plog = q->parms.Plog;
824 opt.Scell_log = q->parms.Scell_log;
825 opt.other = q->stats.other;
826 opt.early = q->stats.prob_drop;
827 opt.forced = q->stats.forced_drop;
828 opt.pdrop = q->stats.pdrop;
Thomas Graf05f1cc02005-11-05 21:14:11 +0100829 opt.packets = q->packetsin;
830 opt.bytesin = q->bytesin;
831
David Ward244b65d2012-04-15 12:31:45 +0000832 if (gred_wred_mode(table))
833 gred_load_wred_set(table, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
David Ward1fe37b12012-09-13 05:22:34 +0000835 qavg = red_calc_qavg(&q->parms, &q->vars,
836 q->vars.qavg >> q->parms.Wlog);
837 opt.qave = qavg >> q->parms.Wlog;
Thomas Graf22b33422005-11-05 21:14:16 +0100838
Thomas Graf05f1cc02005-11-05 21:14:11 +0100839append_opt:
Patrick McHardy1e904742008-01-22 22:11:17 -0800840 if (nla_append(skb, sizeof(opt), &opt) < 0)
841 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 }
843
Patrick McHardy1e904742008-01-22 22:11:17 -0800844 nla_nest_end(skb, parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
Jakub Kicinski80e22e92018-11-14 22:23:49 -0800846 /* Dump the VQs again, in more structured way */
Michal Kubecekae0be8d2019-04-26 11:13:06 +0200847 vqs = nla_nest_start_noflag(skb, TCA_GRED_VQ_LIST);
Jakub Kicinski80e22e92018-11-14 22:23:49 -0800848 if (!vqs)
849 goto nla_put_failure;
850
851 for (i = 0; i < MAX_DPs; i++) {
852 struct gred_sched_data *q = table->tab[i];
853 struct nlattr *vq;
854
855 if (!q)
856 continue;
857
Michal Kubecekae0be8d2019-04-26 11:13:06 +0200858 vq = nla_nest_start_noflag(skb, TCA_GRED_VQ_ENTRY);
Jakub Kicinski80e22e92018-11-14 22:23:49 -0800859 if (!vq)
860 goto nla_put_failure;
861
862 if (nla_put_u32(skb, TCA_GRED_VQ_DP, q->DP))
863 goto nla_put_failure;
864
Jakub Kicinski72111012018-11-14 22:23:51 -0800865 if (nla_put_u32(skb, TCA_GRED_VQ_FLAGS, q->red_flags))
866 goto nla_put_failure;
867
Jakub Kicinski80e22e92018-11-14 22:23:49 -0800868 /* Stats */
869 if (nla_put_u64_64bit(skb, TCA_GRED_VQ_STAT_BYTES, q->bytesin,
870 TCA_GRED_VQ_PAD))
871 goto nla_put_failure;
872 if (nla_put_u32(skb, TCA_GRED_VQ_STAT_PACKETS, q->packetsin))
873 goto nla_put_failure;
874 if (nla_put_u32(skb, TCA_GRED_VQ_STAT_BACKLOG,
875 gred_backlog(table, q, sch)))
876 goto nla_put_failure;
877 if (nla_put_u32(skb, TCA_GRED_VQ_STAT_PROB_DROP,
878 q->stats.prob_drop))
879 goto nla_put_failure;
880 if (nla_put_u32(skb, TCA_GRED_VQ_STAT_PROB_MARK,
881 q->stats.prob_mark))
882 goto nla_put_failure;
883 if (nla_put_u32(skb, TCA_GRED_VQ_STAT_FORCED_DROP,
884 q->stats.forced_drop))
885 goto nla_put_failure;
886 if (nla_put_u32(skb, TCA_GRED_VQ_STAT_FORCED_MARK,
887 q->stats.forced_mark))
888 goto nla_put_failure;
889 if (nla_put_u32(skb, TCA_GRED_VQ_STAT_PDROP, q->stats.pdrop))
890 goto nla_put_failure;
891 if (nla_put_u32(skb, TCA_GRED_VQ_STAT_OTHER, q->stats.other))
892 goto nla_put_failure;
893
894 nla_nest_end(skb, vq);
895 }
896 nla_nest_end(skb, vqs);
897
Patrick McHardy1e904742008-01-22 22:11:17 -0800898 return nla_nest_end(skb, opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
Patrick McHardy1e904742008-01-22 22:11:17 -0800900nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -0700901 nla_nest_cancel(skb, opts);
902 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903}
904
905static void gred_destroy(struct Qdisc *sch)
906{
907 struct gred_sched *table = qdisc_priv(sch);
908 int i;
909
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100910 for (i = 0; i < table->DPs; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 if (table->tab[i])
Thomas Graf66396072005-11-05 21:14:13 +0100912 gred_destroy_vq(table->tab[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 }
Jakub Kicinski890d8d22018-11-19 15:21:42 -0800914 gred_offload(sch, TC_GRED_DESTROY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915}
916
Eric Dumazet20fea082007-11-14 01:44:41 -0800917static struct Qdisc_ops gred_qdisc_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 .id = "gred",
919 .priv_size = sizeof(struct gred_sched),
920 .enqueue = gred_enqueue,
921 .dequeue = gred_dequeue,
Jarek Poplawski8e3af972008-10-31 00:45:55 -0700922 .peek = qdisc_peek_head,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 .init = gred_init,
924 .reset = gred_reset,
925 .destroy = gred_destroy,
926 .change = gred_change,
927 .dump = gred_dump,
928 .owner = THIS_MODULE,
929};
930
931static int __init gred_module_init(void)
932{
933 return register_qdisc(&gred_qdisc_ops);
934}
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100935
936static void __exit gred_module_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937{
938 unregister_qdisc(&gred_qdisc_ops);
939}
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100940
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941module_init(gred_module_init)
942module_exit(gred_module_exit)
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100943
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944MODULE_LICENSE("GPL");