blob: 234afbf9115b7fbb7713fe12f74ea099fb69e8e2 [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
541 nla_parse_nested(tb, TCA_GRED_VQ_MAX, entry, gred_vq_policy, NULL);
542
543 dp = nla_get_u32(tb[TCA_GRED_VQ_DP]);
544
545 if (tb[TCA_GRED_VQ_FLAGS])
546 table->tab[dp]->red_flags = nla_get_u32(tb[TCA_GRED_VQ_FLAGS]);
547}
548
549static void gred_vqs_apply(struct gred_sched *table, struct nlattr *vqs)
550{
551 const struct nlattr *attr;
552 int rem;
553
554 nla_for_each_nested(attr, vqs, rem) {
555 switch (nla_type(attr)) {
556 case TCA_GRED_VQ_ENTRY:
557 gred_vq_apply(table, attr);
558 break;
559 }
560 }
561}
562
563static int gred_vq_validate(struct gred_sched *table, u32 cdp,
564 const struct nlattr *entry,
565 struct netlink_ext_ack *extack)
566{
567 struct nlattr *tb[TCA_GRED_VQ_MAX + 1];
568 int err;
569 u32 dp;
570
571 err = nla_parse_nested(tb, TCA_GRED_VQ_MAX, entry, gred_vq_policy,
572 extack);
573 if (err < 0)
574 return err;
575
576 if (!tb[TCA_GRED_VQ_DP]) {
577 NL_SET_ERR_MSG_MOD(extack, "Virtual queue with no index specified");
578 return -EINVAL;
579 }
580 dp = nla_get_u32(tb[TCA_GRED_VQ_DP]);
581 if (dp >= table->DPs) {
582 NL_SET_ERR_MSG_MOD(extack, "Virtual queue with index out of bounds");
583 return -EINVAL;
584 }
585 if (dp != cdp && !table->tab[dp]) {
586 NL_SET_ERR_MSG_MOD(extack, "Virtual queue not yet instantiated");
587 return -EINVAL;
588 }
589
590 if (tb[TCA_GRED_VQ_FLAGS]) {
591 u32 red_flags = nla_get_u32(tb[TCA_GRED_VQ_FLAGS]);
592
593 if (table->red_flags && table->red_flags != red_flags) {
594 NL_SET_ERR_MSG_MOD(extack, "can't change per-virtual queue RED flags when per-Qdisc flags are used");
595 return -EINVAL;
596 }
597 if (red_flags & ~GRED_VQ_RED_FLAGS) {
598 NL_SET_ERR_MSG_MOD(extack,
599 "invalid RED flags specified");
600 return -EINVAL;
601 }
602 }
603
604 return 0;
605}
606
607static int gred_vqs_validate(struct gred_sched *table, u32 cdp,
608 struct nlattr *vqs, struct netlink_ext_ack *extack)
609{
610 const struct nlattr *attr;
611 int rem, err;
612
613 err = nla_validate_nested(vqs, TCA_GRED_VQ_ENTRY_MAX,
614 gred_vqe_policy, extack);
615 if (err < 0)
616 return err;
617
618 nla_for_each_nested(attr, vqs, rem) {
619 switch (nla_type(attr)) {
620 case TCA_GRED_VQ_ENTRY:
621 err = gred_vq_validate(table, cdp, attr, extack);
622 if (err)
623 return err;
624 break;
625 default:
626 NL_SET_ERR_MSG_MOD(extack, "GRED_VQ_LIST can contain only entry attributes");
627 return -EINVAL;
628 }
629 }
630
631 if (rem > 0) {
632 NL_SET_ERR_MSG_MOD(extack, "Trailing data after parsing virtual queue list");
633 return -EINVAL;
634 }
635
636 return 0;
637}
638
Alexander Aring20307212017-12-20 12:35:14 -0500639static int gred_change(struct Qdisc *sch, struct nlattr *opt,
640 struct netlink_ext_ack *extack)
Thomas Graff62d6b92005-11-05 21:14:15 +0100641{
642 struct gred_sched *table = qdisc_priv(sch);
643 struct tc_gred_qopt *ctl;
Patrick McHardy1e904742008-01-22 22:11:17 -0800644 struct nlattr *tb[TCA_GRED_MAX + 1];
Patrick McHardycee63722008-01-23 20:33:32 -0800645 int err, prio = GRED_DEF_PRIO;
Thomas Graff62d6b92005-11-05 21:14:15 +0100646 u8 *stab;
Eric Dumazeta73ed262011-12-09 02:46:45 +0000647 u32 max_P;
Eric Dumazet869aa412011-12-15 22:09:45 +0000648 struct gred_sched_data *prealloc;
Thomas Graff62d6b92005-11-05 21:14:15 +0100649
Patrick McHardycee63722008-01-23 20:33:32 -0800650 if (opt == NULL)
Thomas Graff62d6b92005-11-05 21:14:15 +0100651 return -EINVAL;
652
Jakub Kicinski79c59fe2018-11-14 22:23:46 -0800653 err = nla_parse_nested(tb, TCA_GRED_MAX, opt, gred_policy, extack);
Patrick McHardycee63722008-01-23 20:33:32 -0800654 if (err < 0)
655 return err;
656
David Warda3eb95f2015-05-09 22:01:46 -0400657 if (tb[TCA_GRED_PARMS] == NULL && tb[TCA_GRED_STAB] == NULL) {
658 if (tb[TCA_GRED_LIMIT] != NULL)
659 sch->limit = nla_get_u32(tb[TCA_GRED_LIMIT]);
Jakub Kicinski4777be02018-11-14 22:23:47 -0800660 return gred_change_table_def(sch, tb[TCA_GRED_DPS], extack);
David Warda3eb95f2015-05-09 22:01:46 -0400661 }
Thomas Graff62d6b92005-11-05 21:14:15 +0100662
Patrick McHardy1e904742008-01-22 22:11:17 -0800663 if (tb[TCA_GRED_PARMS] == NULL ||
David Warda3eb95f2015-05-09 22:01:46 -0400664 tb[TCA_GRED_STAB] == NULL ||
Jakub Kicinski4777be02018-11-14 22:23:47 -0800665 tb[TCA_GRED_LIMIT] != NULL) {
666 NL_SET_ERR_MSG_MOD(extack, "can't configure Qdisc and virtual queue at the same time");
Thomas Graff62d6b92005-11-05 21:14:15 +0100667 return -EINVAL;
Jakub Kicinski4777be02018-11-14 22:23:47 -0800668 }
Thomas Graff62d6b92005-11-05 21:14:15 +0100669
Eric Dumazeta73ed262011-12-09 02:46:45 +0000670 max_P = tb[TCA_GRED_MAX_P] ? nla_get_u32(tb[TCA_GRED_MAX_P]) : 0;
671
Patrick McHardy1e904742008-01-22 22:11:17 -0800672 ctl = nla_data(tb[TCA_GRED_PARMS]);
673 stab = nla_data(tb[TCA_GRED_STAB]);
Thomas Graff62d6b92005-11-05 21:14:15 +0100674
Jakub Kicinski4777be02018-11-14 22:23:47 -0800675 if (ctl->DP >= table->DPs) {
676 NL_SET_ERR_MSG_MOD(extack, "virtual queue index above virtual queue count");
Jakub Kicinski255f4802018-11-14 22:23:45 -0800677 return -EINVAL;
Jakub Kicinski4777be02018-11-14 22:23:47 -0800678 }
Thomas Graff62d6b92005-11-05 21:14:15 +0100679
Jakub Kicinski72111012018-11-14 22:23:51 -0800680 if (tb[TCA_GRED_VQ_LIST]) {
681 err = gred_vqs_validate(table, ctl->DP, tb[TCA_GRED_VQ_LIST],
682 extack);
683 if (err)
684 return err;
685 }
686
Thomas Graff62d6b92005-11-05 21:14:15 +0100687 if (gred_rio_mode(table)) {
688 if (ctl->prio == 0) {
689 int def_prio = GRED_DEF_PRIO;
690
691 if (table->tab[table->def])
692 def_prio = table->tab[table->def]->prio;
693
694 printk(KERN_DEBUG "GRED: DP %u does not have a prio "
695 "setting default to %d\n", ctl->DP, def_prio);
696
697 prio = def_prio;
698 } else
699 prio = ctl->prio;
700 }
701
Eric Dumazet869aa412011-12-15 22:09:45 +0000702 prealloc = kzalloc(sizeof(*prealloc), GFP_KERNEL);
Thomas Graff62d6b92005-11-05 21:14:15 +0100703 sch_tree_lock(sch);
704
Jakub Kicinski4777be02018-11-14 22:23:47 -0800705 err = gred_change_vq(sch, ctl->DP, ctl, prio, stab, max_P, &prealloc,
706 extack);
Thomas Graff62d6b92005-11-05 21:14:15 +0100707 if (err < 0)
Jakub Kicinski255f4802018-11-14 22:23:45 -0800708 goto err_unlock_free;
Thomas Graff62d6b92005-11-05 21:14:15 +0100709
Jakub Kicinski72111012018-11-14 22:23:51 -0800710 if (tb[TCA_GRED_VQ_LIST])
711 gred_vqs_apply(table, tb[TCA_GRED_VQ_LIST]);
712
Thomas Grafd6fd4e92005-11-05 21:14:10 +0100713 if (gred_rio_mode(table)) {
Thomas Grafdea3f622005-11-05 21:14:09 +0100714 gred_disable_wred_mode(table);
715 if (gred_wred_mode_check(sch))
716 gred_enable_wred_mode(table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 }
718
Thomas Graff62d6b92005-11-05 21:14:15 +0100719 sch_tree_unlock(sch);
Eric Dumazet869aa412011-12-15 22:09:45 +0000720 kfree(prealloc);
Jakub Kicinski890d8d22018-11-19 15:21:42 -0800721
722 gred_offload(sch, TC_GRED_REPLACE);
Jakub Kicinski255f4802018-11-14 22:23:45 -0800723 return 0;
724
725err_unlock_free:
726 sch_tree_unlock(sch);
727 kfree(prealloc);
Thomas Graff62d6b92005-11-05 21:14:15 +0100728 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729}
730
Alexander Aringe63d7df2017-12-20 12:35:13 -0500731static int gred_init(struct Qdisc *sch, struct nlattr *opt,
732 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733{
Patrick McHardy1e904742008-01-22 22:11:17 -0800734 struct nlattr *tb[TCA_GRED_MAX + 1];
Patrick McHardycee63722008-01-23 20:33:32 -0800735 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Alexander Aringac8ef4a2017-12-20 12:35:11 -0500737 if (!opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 return -EINVAL;
739
Jakub Kicinski79c59fe2018-11-14 22:23:46 -0800740 err = nla_parse_nested(tb, TCA_GRED_MAX, opt, gred_policy, extack);
Patrick McHardycee63722008-01-23 20:33:32 -0800741 if (err < 0)
742 return err;
743
Jakub Kicinski4777be02018-11-14 22:23:47 -0800744 if (tb[TCA_GRED_PARMS] || tb[TCA_GRED_STAB]) {
745 NL_SET_ERR_MSG_MOD(extack,
746 "virtual queue configuration can't be specified at initialization time");
Thomas Graf66396072005-11-05 21:14:13 +0100747 return -EINVAL;
Jakub Kicinski4777be02018-11-14 22:23:47 -0800748 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
David Warda3eb95f2015-05-09 22:01:46 -0400750 if (tb[TCA_GRED_LIMIT])
751 sch->limit = nla_get_u32(tb[TCA_GRED_LIMIT]);
Phil Sutter348e3432015-08-18 10:30:49 +0200752 else
753 sch->limit = qdisc_dev(sch)->tx_queue_len
754 * psched_mtu(qdisc_dev(sch));
David Warda3eb95f2015-05-09 22:01:46 -0400755
Jakub Kicinski4777be02018-11-14 22:23:47 -0800756 return gred_change_table_def(sch, tb[TCA_GRED_DPS], extack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757}
758
759static int gred_dump(struct Qdisc *sch, struct sk_buff *skb)
760{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 struct gred_sched *table = qdisc_priv(sch);
Jakub Kicinski80e22e92018-11-14 22:23:49 -0800762 struct nlattr *parms, *vqs, *opts = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 int i;
Eric Dumazeta73ed262011-12-09 02:46:45 +0000764 u32 max_p[MAX_DPs];
Thomas Grafe0636822005-11-05 21:14:12 +0100765 struct tc_gred_sopt sopt = {
766 .DPs = table->DPs,
767 .def_DP = table->def,
768 .grio = gred_rio_mode(table),
Thomas Grafb38c7ee2005-11-05 21:14:27 +0100769 .flags = table->red_flags,
Thomas Grafe0636822005-11-05 21:14:12 +0100770 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Jakub Kicinskie49efd52018-11-19 15:21:43 -0800772 if (gred_offload_dump_stats(sch))
773 goto nla_put_failure;
774
Patrick McHardy1e904742008-01-22 22:11:17 -0800775 opts = nla_nest_start(skb, TCA_OPTIONS);
776 if (opts == NULL)
777 goto nla_put_failure;
David S. Miller1b34ec42012-03-29 05:11:39 -0400778 if (nla_put(skb, TCA_GRED_DPS, sizeof(sopt), &sopt))
779 goto nla_put_failure;
Eric Dumazeta73ed262011-12-09 02:46:45 +0000780
781 for (i = 0; i < MAX_DPs; i++) {
782 struct gred_sched_data *q = table->tab[i];
783
784 max_p[i] = q ? q->parms.max_P : 0;
785 }
David S. Miller1b34ec42012-03-29 05:11:39 -0400786 if (nla_put(skb, TCA_GRED_MAX_P, sizeof(max_p), max_p))
787 goto nla_put_failure;
Eric Dumazeta73ed262011-12-09 02:46:45 +0000788
David Warda3eb95f2015-05-09 22:01:46 -0400789 if (nla_put_u32(skb, TCA_GRED_LIMIT, sch->limit))
790 goto nla_put_failure;
791
Jakub Kicinski80e22e92018-11-14 22:23:49 -0800792 /* Old style all-in-one dump of VQs */
Patrick McHardy1e904742008-01-22 22:11:17 -0800793 parms = nla_nest_start(skb, TCA_GRED_PARMS);
794 if (parms == NULL)
795 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
Thomas Graf05f1cc02005-11-05 21:14:11 +0100797 for (i = 0; i < MAX_DPs; i++) {
798 struct gred_sched_data *q = table->tab[i];
799 struct tc_gred_qopt opt;
David Ward1fe37b12012-09-13 05:22:34 +0000800 unsigned long qavg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
Thomas Graf05f1cc02005-11-05 21:14:11 +0100802 memset(&opt, 0, sizeof(opt));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
804 if (!q) {
805 /* hack -- fix at some point with proper message
806 This is how we indicate to tc that there is no VQ
807 at this DP */
808
Thomas Graf05f1cc02005-11-05 21:14:11 +0100809 opt.DP = MAX_DPs + i;
810 goto append_opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 }
812
Thomas Graf05f1cc02005-11-05 21:14:11 +0100813 opt.limit = q->limit;
814 opt.DP = q->DP;
David Ward145a42b2015-05-09 22:01:47 -0400815 opt.backlog = gred_backlog(table, q, sch);
Thomas Graf05f1cc02005-11-05 21:14:11 +0100816 opt.prio = q->prio;
Thomas Graf22b33422005-11-05 21:14:16 +0100817 opt.qth_min = q->parms.qth_min >> q->parms.Wlog;
818 opt.qth_max = q->parms.qth_max >> q->parms.Wlog;
819 opt.Wlog = q->parms.Wlog;
820 opt.Plog = q->parms.Plog;
821 opt.Scell_log = q->parms.Scell_log;
822 opt.other = q->stats.other;
823 opt.early = q->stats.prob_drop;
824 opt.forced = q->stats.forced_drop;
825 opt.pdrop = q->stats.pdrop;
Thomas Graf05f1cc02005-11-05 21:14:11 +0100826 opt.packets = q->packetsin;
827 opt.bytesin = q->bytesin;
828
David Ward244b65d2012-04-15 12:31:45 +0000829 if (gred_wred_mode(table))
830 gred_load_wred_set(table, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
David Ward1fe37b12012-09-13 05:22:34 +0000832 qavg = red_calc_qavg(&q->parms, &q->vars,
833 q->vars.qavg >> q->parms.Wlog);
834 opt.qave = qavg >> q->parms.Wlog;
Thomas Graf22b33422005-11-05 21:14:16 +0100835
Thomas Graf05f1cc02005-11-05 21:14:11 +0100836append_opt:
Patrick McHardy1e904742008-01-22 22:11:17 -0800837 if (nla_append(skb, sizeof(opt), &opt) < 0)
838 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 }
840
Patrick McHardy1e904742008-01-22 22:11:17 -0800841 nla_nest_end(skb, parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
Jakub Kicinski80e22e92018-11-14 22:23:49 -0800843 /* Dump the VQs again, in more structured way */
844 vqs = nla_nest_start(skb, TCA_GRED_VQ_LIST);
845 if (!vqs)
846 goto nla_put_failure;
847
848 for (i = 0; i < MAX_DPs; i++) {
849 struct gred_sched_data *q = table->tab[i];
850 struct nlattr *vq;
851
852 if (!q)
853 continue;
854
855 vq = nla_nest_start(skb, TCA_GRED_VQ_ENTRY);
856 if (!vq)
857 goto nla_put_failure;
858
859 if (nla_put_u32(skb, TCA_GRED_VQ_DP, q->DP))
860 goto nla_put_failure;
861
Jakub Kicinski72111012018-11-14 22:23:51 -0800862 if (nla_put_u32(skb, TCA_GRED_VQ_FLAGS, q->red_flags))
863 goto nla_put_failure;
864
Jakub Kicinski80e22e92018-11-14 22:23:49 -0800865 /* Stats */
866 if (nla_put_u64_64bit(skb, TCA_GRED_VQ_STAT_BYTES, q->bytesin,
867 TCA_GRED_VQ_PAD))
868 goto nla_put_failure;
869 if (nla_put_u32(skb, TCA_GRED_VQ_STAT_PACKETS, q->packetsin))
870 goto nla_put_failure;
871 if (nla_put_u32(skb, TCA_GRED_VQ_STAT_BACKLOG,
872 gred_backlog(table, q, sch)))
873 goto nla_put_failure;
874 if (nla_put_u32(skb, TCA_GRED_VQ_STAT_PROB_DROP,
875 q->stats.prob_drop))
876 goto nla_put_failure;
877 if (nla_put_u32(skb, TCA_GRED_VQ_STAT_PROB_MARK,
878 q->stats.prob_mark))
879 goto nla_put_failure;
880 if (nla_put_u32(skb, TCA_GRED_VQ_STAT_FORCED_DROP,
881 q->stats.forced_drop))
882 goto nla_put_failure;
883 if (nla_put_u32(skb, TCA_GRED_VQ_STAT_FORCED_MARK,
884 q->stats.forced_mark))
885 goto nla_put_failure;
886 if (nla_put_u32(skb, TCA_GRED_VQ_STAT_PDROP, q->stats.pdrop))
887 goto nla_put_failure;
888 if (nla_put_u32(skb, TCA_GRED_VQ_STAT_OTHER, q->stats.other))
889 goto nla_put_failure;
890
891 nla_nest_end(skb, vq);
892 }
893 nla_nest_end(skb, vqs);
894
Patrick McHardy1e904742008-01-22 22:11:17 -0800895 return nla_nest_end(skb, opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
Patrick McHardy1e904742008-01-22 22:11:17 -0800897nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -0700898 nla_nest_cancel(skb, opts);
899 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900}
901
902static void gred_destroy(struct Qdisc *sch)
903{
904 struct gred_sched *table = qdisc_priv(sch);
905 int i;
906
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100907 for (i = 0; i < table->DPs; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 if (table->tab[i])
Thomas Graf66396072005-11-05 21:14:13 +0100909 gred_destroy_vq(table->tab[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 }
Jakub Kicinski890d8d22018-11-19 15:21:42 -0800911 gred_offload(sch, TC_GRED_DESTROY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912}
913
Eric Dumazet20fea082007-11-14 01:44:41 -0800914static struct Qdisc_ops gred_qdisc_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 .id = "gred",
916 .priv_size = sizeof(struct gred_sched),
917 .enqueue = gred_enqueue,
918 .dequeue = gred_dequeue,
Jarek Poplawski8e3af972008-10-31 00:45:55 -0700919 .peek = qdisc_peek_head,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 .init = gred_init,
921 .reset = gred_reset,
922 .destroy = gred_destroy,
923 .change = gred_change,
924 .dump = gred_dump,
925 .owner = THIS_MODULE,
926};
927
928static int __init gred_module_init(void)
929{
930 return register_qdisc(&gred_qdisc_ops);
931}
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100932
933static void __exit gred_module_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934{
935 unregister_qdisc(&gred_qdisc_ops);
936}
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100937
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938module_init(gred_module_init)
939module_exit(gred_module_exit)
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100940
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941MODULE_LICENSE("GPL");