blob: 3d7bd374b3030f798a99dd96d5bee7aa0f679500 [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
David Wardc22e4642012-09-13 05:22:33 +0000105 for (n = i + 1; n < table->DPs; n++)
106 if (table->tab[n] && table->tab[n]->prio == q->prio)
Thomas Grafdea3f622005-11-05 21:14:09 +0100107 return 1;
108 }
109
110 return 0;
111}
112
Thomas Graf22b33422005-11-05 21:14:16 +0100113static inline unsigned int gred_backlog(struct gred_sched *table,
114 struct gred_sched_data *q,
115 struct Qdisc *sch)
116{
117 if (gred_wred_mode(table))
118 return sch->qstats.backlog;
119 else
120 return q->backlog;
121}
122
Thomas Graf716a1b42005-11-05 21:14:20 +0100123static inline u16 tc_index_to_dp(struct sk_buff *skb)
124{
125 return skb->tc_index & GRED_VQ_MASK;
126}
127
Eric Dumazeteeca6682012-01-05 02:25:16 +0000128static inline void gred_load_wred_set(const struct gred_sched *table,
Thomas Graf70517032005-11-05 21:14:23 +0100129 struct gred_sched_data *q)
130{
Eric Dumazeteeca6682012-01-05 02:25:16 +0000131 q->vars.qavg = table->wred_set.qavg;
132 q->vars.qidlestart = table->wred_set.qidlestart;
Thomas Graf70517032005-11-05 21:14:23 +0100133}
134
135static inline void gred_store_wred_set(struct gred_sched *table,
136 struct gred_sched_data *q)
137{
Eric Dumazeteeca6682012-01-05 02:25:16 +0000138 table->wred_set.qavg = q->vars.qavg;
David Wardba1bf472012-09-13 05:22:35 +0000139 table->wred_set.qidlestart = q->vars.qidlestart;
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 Dumazet520ac302016-06-21 23:16:49 -0700152static int gred_enqueue(struct sk_buff *skb, struct Qdisc *sch,
153 struct sk_buff **to_free)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000155 struct gred_sched_data *q = NULL;
156 struct gred_sched *t = qdisc_priv(sch);
Thomas Graf22b33422005-11-05 21:14:16 +0100157 unsigned long qavg = 0;
Thomas Graf4a591832005-11-05 21:14:22 +0100158 u16 dp = tc_index_to_dp(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000160 if (dp >= t->DPs || (q = t->tab[dp]) == NULL) {
Thomas Graf18e3fb842005-11-05 21:14:21 +0100161 dp = t->def;
162
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000163 q = t->tab[dp];
164 if (!q) {
Thomas Graf18e3fb842005-11-05 21:14:21 +0100165 /* Pass through packets not assigned to a DP
166 * if no default DP has been configured. This
167 * allows for DP flows to be left untouched.
168 */
David Warda3eb95f2015-05-09 22:01:46 -0400169 if (likely(sch->qstats.backlog + qdisc_pkt_len(skb) <=
170 sch->limit))
Thomas Graf18e3fb842005-11-05 21:14:21 +0100171 return qdisc_enqueue_tail(skb, sch);
172 else
173 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 }
Thomas Graf18e3fb842005-11-05 21:14:21 +0100175
Eric Dumazeteeca6682012-01-05 02:25:16 +0000176 /* fix tc_index? --could be controversial but needed for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 requeueing */
Thomas Graf18e3fb842005-11-05 21:14:21 +0100178 skb->tc_index = (skb->tc_index & ~GRED_VQ_MASK) | dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 }
180
David Warde29fe832012-09-13 05:22:32 +0000181 /* sum up all the qaves of prios < ours to get the new qave */
Thomas Grafd6fd4e92005-11-05 21:14:10 +0100182 if (!gred_wred_mode(t) && gred_rio_mode(t)) {
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100183 int i;
184
185 for (i = 0; i < t->DPs; i++) {
186 if (t->tab[i] && t->tab[i]->prio < q->prio &&
Eric Dumazeteeca6682012-01-05 02:25:16 +0000187 !red_is_idling(&t->tab[i]->vars))
188 qavg += t->tab[i]->vars.qavg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 }
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 }
192
193 q->packetsin++;
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700194 q->bytesin += qdisc_pkt_len(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100196 if (gred_wred_mode(t))
Thomas Graf70517032005-11-05 21:14:23 +0100197 gred_load_wred_set(t, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Eric Dumazeteeca6682012-01-05 02:25:16 +0000199 q->vars.qavg = red_calc_qavg(&q->parms,
200 &q->vars,
201 gred_backlog(t, q, sch));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Eric Dumazeteeca6682012-01-05 02:25:16 +0000203 if (red_is_idling(&q->vars))
204 red_end_of_idle_period(&q->vars);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Thomas Grafdea3f622005-11-05 21:14:09 +0100206 if (gred_wred_mode(t))
Thomas Graf70517032005-11-05 21:14:23 +0100207 gred_store_wred_set(t, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Eric Dumazeteeca6682012-01-05 02:25:16 +0000209 switch (red_action(&q->parms, &q->vars, q->vars.qavg + qavg)) {
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000210 case RED_DONT_MARK:
211 break;
Thomas Graf22b33422005-11-05 21:14:16 +0100212
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000213 case RED_PROB_MARK:
John Fastabend25331d62014-09-28 11:53:29 -0700214 qdisc_qstats_overlimit(sch);
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000215 if (!gred_use_ecn(t) || !INET_ECN_set_ce(skb)) {
216 q->stats.prob_drop++;
217 goto congestion_drop;
218 }
Thomas Grafb38c7ee2005-11-05 21:14:27 +0100219
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000220 q->stats.prob_mark++;
221 break;
Thomas Graf22b33422005-11-05 21:14:16 +0100222
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000223 case RED_HARD_MARK:
John Fastabend25331d62014-09-28 11:53:29 -0700224 qdisc_qstats_overlimit(sch);
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000225 if (gred_use_harddrop(t) || !gred_use_ecn(t) ||
226 !INET_ECN_set_ce(skb)) {
227 q->stats.forced_drop++;
228 goto congestion_drop;
229 }
230 q->stats.forced_mark++;
231 break;
Thomas Graf22b33422005-11-05 21:14:16 +0100232 }
233
David Ward145a42b2015-05-09 22:01:47 -0400234 if (gred_backlog(t, q, sch) + qdisc_pkt_len(skb) <= q->limit) {
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700235 q->backlog += qdisc_pkt_len(skb);
Thomas Grafedf7a7b2005-11-05 21:14:19 +0100236 return qdisc_enqueue_tail(skb, sch);
Thomas Graf22b33422005-11-05 21:14:16 +0100237 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Thomas Graf22b33422005-11-05 21:14:16 +0100239 q->stats.pdrop++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240drop:
Eric Dumazet520ac302016-06-21 23:16:49 -0700241 return qdisc_drop(skb, sch, to_free);
Thomas Grafc3b553c2005-11-05 21:14:18 +0100242
243congestion_drop:
Eric Dumazet520ac302016-06-21 23:16:49 -0700244 qdisc_drop(skb, sch, to_free);
Thomas Grafc3b553c2005-11-05 21:14:18 +0100245 return NET_XMIT_CN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246}
247
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000248static struct sk_buff *gred_dequeue(struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249{
250 struct sk_buff *skb;
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100251 struct gred_sched *t = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Thomas Grafedf7a7b2005-11-05 21:14:19 +0100253 skb = qdisc_dequeue_head(sch);
254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 if (skb) {
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100256 struct gred_sched_data *q;
Thomas Graf18e3fb842005-11-05 21:14:21 +0100257 u16 dp = tc_index_to_dp(skb);
258
259 if (dp >= t->DPs || (q = t->tab[dp]) == NULL) {
Joe Perchese87cc472012-05-13 21:56:26 +0000260 net_warn_ratelimited("GRED: Unable to relocate VQ 0x%x after dequeue, screwing up backlog\n",
261 tc_index_to_dp(skb));
Thomas Graf18e3fb842005-11-05 21:14:21 +0100262 } else {
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700263 q->backlog -= qdisc_pkt_len(skb);
Thomas Graf18e3fb842005-11-05 21:14:21 +0100264
David Wardba1bf472012-09-13 05:22:35 +0000265 if (gred_wred_mode(t)) {
266 if (!sch->qstats.backlog)
267 red_start_of_idle_period(&t->wred_set);
268 } else {
269 if (!q->backlog)
270 red_start_of_idle_period(&q->vars);
271 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 }
Thomas Graf18e3fb842005-11-05 21:14:21 +0100273
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 return skb;
275 }
276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 return NULL;
278}
279
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000280static void gred_reset(struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
282 int i;
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100283 struct gred_sched *t = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Thomas Grafedf7a7b2005-11-05 21:14:19 +0100285 qdisc_reset_queue(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900287 for (i = 0; i < t->DPs; i++) {
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100288 struct gred_sched_data *q = t->tab[i];
289
290 if (!q)
291 continue;
292
Eric Dumazeteeca6682012-01-05 02:25:16 +0000293 red_restart(&q->vars);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 q->backlog = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 }
296}
297
Thomas Graf66396072005-11-05 21:14:13 +0100298static inline void gred_destroy_vq(struct gred_sched_data *q)
299{
300 kfree(q);
301}
302
Jakub Kicinski4777be02018-11-14 22:23:47 -0800303static int gred_change_table_def(struct Qdisc *sch, struct nlattr *dps,
304 struct netlink_ext_ack *extack)
Thomas Graf66396072005-11-05 21:14:13 +0100305{
306 struct gred_sched *table = qdisc_priv(sch);
307 struct tc_gred_sopt *sopt;
308 int i;
309
Alexander Aringac8ef4a2017-12-20 12:35:11 -0500310 if (!dps)
Thomas Graf66396072005-11-05 21:14:13 +0100311 return -EINVAL;
312
Patrick McHardy1e904742008-01-22 22:11:17 -0800313 sopt = nla_data(dps);
Thomas Graf66396072005-11-05 21:14:13 +0100314
Jakub Kicinski4777be02018-11-14 22:23:47 -0800315 if (sopt->DPs > MAX_DPs) {
316 NL_SET_ERR_MSG_MOD(extack, "number of virtual queues too high");
Thomas Graf66396072005-11-05 21:14:13 +0100317 return -EINVAL;
Jakub Kicinski4777be02018-11-14 22:23:47 -0800318 }
319 if (sopt->DPs == 0) {
320 NL_SET_ERR_MSG_MOD(extack,
321 "number of virtual queues can't be 0");
322 return -EINVAL;
323 }
324 if (sopt->def_DP >= sopt->DPs) {
325 NL_SET_ERR_MSG_MOD(extack, "default virtual queue above virtual queue count");
326 return -EINVAL;
327 }
Thomas Graf66396072005-11-05 21:14:13 +0100328
329 sch_tree_lock(sch);
330 table->DPs = sopt->DPs;
331 table->def = sopt->def_DP;
Thomas Grafb38c7ee2005-11-05 21:14:27 +0100332 table->red_flags = sopt->flags;
Thomas Graf66396072005-11-05 21:14:13 +0100333
334 /*
335 * Every entry point to GRED is synchronized with the above code
336 * and the DP is checked against DPs, i.e. shadowed VQs can no
337 * longer be found so we can unlock right here.
338 */
339 sch_tree_unlock(sch);
340
341 if (sopt->grio) {
342 gred_enable_rio_mode(table);
343 gred_disable_wred_mode(table);
344 if (gred_wred_mode_check(sch))
345 gred_enable_wred_mode(table);
346 } else {
347 gred_disable_rio_mode(table);
348 gred_disable_wred_mode(table);
349 }
350
351 for (i = table->DPs; i < MAX_DPs; i++) {
352 if (table->tab[i]) {
Yang Yingliangc17988a2013-12-23 17:38:58 +0800353 pr_warn("GRED: Warning: Destroying shadowed VQ 0x%x\n",
354 i);
Thomas Graf66396072005-11-05 21:14:13 +0100355 gred_destroy_vq(table->tab[i]);
356 table->tab[i] = NULL;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900357 }
Thomas Graf66396072005-11-05 21:14:13 +0100358 }
359
Thomas Graf66396072005-11-05 21:14:13 +0100360 return 0;
361}
362
Thomas Graff62d6b92005-11-05 21:14:15 +0100363static inline int gred_change_vq(struct Qdisc *sch, int dp,
Eric Dumazeta73ed262011-12-09 02:46:45 +0000364 struct tc_gred_qopt *ctl, int prio,
Eric Dumazet869aa412011-12-15 22:09:45 +0000365 u8 *stab, u32 max_P,
Jakub Kicinski4777be02018-11-14 22:23:47 -0800366 struct gred_sched_data **prealloc,
367 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368{
369 struct gred_sched *table = qdisc_priv(sch);
Eric Dumazet869aa412011-12-15 22:09:45 +0000370 struct gred_sched_data *q = table->tab[dp];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Jakub Kicinski4777be02018-11-14 22:23:47 -0800372 if (!red_check_params(ctl->qth_min, ctl->qth_max, ctl->Wlog)) {
373 NL_SET_ERR_MSG_MOD(extack, "invalid RED parameters");
Nogah Frankel8afa10c2017-12-04 13:31:11 +0200374 return -EINVAL;
Jakub Kicinski4777be02018-11-14 22:23:47 -0800375 }
Nogah Frankel8afa10c2017-12-04 13:31:11 +0200376
Eric Dumazet869aa412011-12-15 22:09:45 +0000377 if (!q) {
378 table->tab[dp] = q = *prealloc;
379 *prealloc = NULL;
380 if (!q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 }
383
Thomas Graff62d6b92005-11-05 21:14:15 +0100384 q->DP = dp;
385 q->prio = prio;
David Warda3eb95f2015-05-09 22:01:46 -0400386 if (ctl->limit > sch->limit)
387 q->limit = sch->limit;
388 else
389 q->limit = ctl->limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
Thomas Graf22b33422005-11-05 21:14:16 +0100391 if (q->backlog == 0)
Eric Dumazeteeca6682012-01-05 02:25:16 +0000392 red_end_of_idle_period(&q->vars);
Thomas Graf22b33422005-11-05 21:14:16 +0100393
394 red_set_parms(&q->parms,
395 ctl->qth_min, ctl->qth_max, ctl->Wlog, ctl->Plog,
Eric Dumazeta73ed262011-12-09 02:46:45 +0000396 ctl->Scell_log, stab, max_P);
Eric Dumazeteeca6682012-01-05 02:25:16 +0000397 red_set_vars(&q->vars);
Thomas Graff62d6b92005-11-05 21:14:15 +0100398 return 0;
399}
400
Patrick McHardy27a34212008-01-23 20:35:39 -0800401static const struct nla_policy gred_policy[TCA_GRED_MAX + 1] = {
402 [TCA_GRED_PARMS] = { .len = sizeof(struct tc_gred_qopt) },
403 [TCA_GRED_STAB] = { .len = 256 },
404 [TCA_GRED_DPS] = { .len = sizeof(struct tc_gred_sopt) },
Eric Dumazeta73ed262011-12-09 02:46:45 +0000405 [TCA_GRED_MAX_P] = { .type = NLA_U32 },
David Warda3eb95f2015-05-09 22:01:46 -0400406 [TCA_GRED_LIMIT] = { .type = NLA_U32 },
Patrick McHardy27a34212008-01-23 20:35:39 -0800407};
408
Alexander Aring20307212017-12-20 12:35:14 -0500409static int gred_change(struct Qdisc *sch, struct nlattr *opt,
410 struct netlink_ext_ack *extack)
Thomas Graff62d6b92005-11-05 21:14:15 +0100411{
412 struct gred_sched *table = qdisc_priv(sch);
413 struct tc_gred_qopt *ctl;
Patrick McHardy1e904742008-01-22 22:11:17 -0800414 struct nlattr *tb[TCA_GRED_MAX + 1];
Patrick McHardycee63722008-01-23 20:33:32 -0800415 int err, prio = GRED_DEF_PRIO;
Thomas Graff62d6b92005-11-05 21:14:15 +0100416 u8 *stab;
Eric Dumazeta73ed262011-12-09 02:46:45 +0000417 u32 max_P;
Eric Dumazet869aa412011-12-15 22:09:45 +0000418 struct gred_sched_data *prealloc;
Thomas Graff62d6b92005-11-05 21:14:15 +0100419
Patrick McHardycee63722008-01-23 20:33:32 -0800420 if (opt == NULL)
Thomas Graff62d6b92005-11-05 21:14:15 +0100421 return -EINVAL;
422
Jakub Kicinski79c59fe2018-11-14 22:23:46 -0800423 err = nla_parse_nested(tb, TCA_GRED_MAX, opt, gred_policy, extack);
Patrick McHardycee63722008-01-23 20:33:32 -0800424 if (err < 0)
425 return err;
426
David Warda3eb95f2015-05-09 22:01:46 -0400427 if (tb[TCA_GRED_PARMS] == NULL && tb[TCA_GRED_STAB] == NULL) {
428 if (tb[TCA_GRED_LIMIT] != NULL)
429 sch->limit = nla_get_u32(tb[TCA_GRED_LIMIT]);
Jakub Kicinski4777be02018-11-14 22:23:47 -0800430 return gred_change_table_def(sch, tb[TCA_GRED_DPS], extack);
David Warda3eb95f2015-05-09 22:01:46 -0400431 }
Thomas Graff62d6b92005-11-05 21:14:15 +0100432
Patrick McHardy1e904742008-01-22 22:11:17 -0800433 if (tb[TCA_GRED_PARMS] == NULL ||
David Warda3eb95f2015-05-09 22:01:46 -0400434 tb[TCA_GRED_STAB] == NULL ||
Jakub Kicinski4777be02018-11-14 22:23:47 -0800435 tb[TCA_GRED_LIMIT] != NULL) {
436 NL_SET_ERR_MSG_MOD(extack, "can't configure Qdisc and virtual queue at the same time");
Thomas Graff62d6b92005-11-05 21:14:15 +0100437 return -EINVAL;
Jakub Kicinski4777be02018-11-14 22:23:47 -0800438 }
Thomas Graff62d6b92005-11-05 21:14:15 +0100439
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 McHardy1e904742008-01-22 22:11:17 -0800442 ctl = nla_data(tb[TCA_GRED_PARMS]);
443 stab = nla_data(tb[TCA_GRED_STAB]);
Thomas Graff62d6b92005-11-05 21:14:15 +0100444
Jakub Kicinski4777be02018-11-14 22:23:47 -0800445 if (ctl->DP >= table->DPs) {
446 NL_SET_ERR_MSG_MOD(extack, "virtual queue index above virtual queue count");
Jakub Kicinski255f4802018-11-14 22:23:45 -0800447 return -EINVAL;
Jakub Kicinski4777be02018-11-14 22:23:47 -0800448 }
Thomas Graff62d6b92005-11-05 21:14:15 +0100449
450 if (gred_rio_mode(table)) {
451 if (ctl->prio == 0) {
452 int def_prio = GRED_DEF_PRIO;
453
454 if (table->tab[table->def])
455 def_prio = table->tab[table->def]->prio;
456
457 printk(KERN_DEBUG "GRED: DP %u does not have a prio "
458 "setting default to %d\n", ctl->DP, def_prio);
459
460 prio = def_prio;
461 } else
462 prio = ctl->prio;
463 }
464
Eric Dumazet869aa412011-12-15 22:09:45 +0000465 prealloc = kzalloc(sizeof(*prealloc), GFP_KERNEL);
Thomas Graff62d6b92005-11-05 21:14:15 +0100466 sch_tree_lock(sch);
467
Jakub Kicinski4777be02018-11-14 22:23:47 -0800468 err = gred_change_vq(sch, ctl->DP, ctl, prio, stab, max_P, &prealloc,
469 extack);
Thomas Graff62d6b92005-11-05 21:14:15 +0100470 if (err < 0)
Jakub Kicinski255f4802018-11-14 22:23:45 -0800471 goto err_unlock_free;
Thomas Graff62d6b92005-11-05 21:14:15 +0100472
Thomas Grafd6fd4e92005-11-05 21:14:10 +0100473 if (gred_rio_mode(table)) {
Thomas Grafdea3f622005-11-05 21:14:09 +0100474 gred_disable_wred_mode(table);
475 if (gred_wred_mode_check(sch))
476 gred_enable_wred_mode(table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 }
478
Thomas Graff62d6b92005-11-05 21:14:15 +0100479 sch_tree_unlock(sch);
Eric Dumazet869aa412011-12-15 22:09:45 +0000480 kfree(prealloc);
Jakub Kicinski255f4802018-11-14 22:23:45 -0800481 return 0;
482
483err_unlock_free:
484 sch_tree_unlock(sch);
485 kfree(prealloc);
Thomas Graff62d6b92005-11-05 21:14:15 +0100486 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487}
488
Alexander Aringe63d7df2017-12-20 12:35:13 -0500489static int gred_init(struct Qdisc *sch, struct nlattr *opt,
490 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
Patrick McHardy1e904742008-01-22 22:11:17 -0800492 struct nlattr *tb[TCA_GRED_MAX + 1];
Patrick McHardycee63722008-01-23 20:33:32 -0800493 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Alexander Aringac8ef4a2017-12-20 12:35:11 -0500495 if (!opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 return -EINVAL;
497
Jakub Kicinski79c59fe2018-11-14 22:23:46 -0800498 err = nla_parse_nested(tb, TCA_GRED_MAX, opt, gred_policy, extack);
Patrick McHardycee63722008-01-23 20:33:32 -0800499 if (err < 0)
500 return err;
501
Jakub Kicinski4777be02018-11-14 22:23:47 -0800502 if (tb[TCA_GRED_PARMS] || tb[TCA_GRED_STAB]) {
503 NL_SET_ERR_MSG_MOD(extack,
504 "virtual queue configuration can't be specified at initialization time");
Thomas Graf66396072005-11-05 21:14:13 +0100505 return -EINVAL;
Jakub Kicinski4777be02018-11-14 22:23:47 -0800506 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
David Warda3eb95f2015-05-09 22:01:46 -0400508 if (tb[TCA_GRED_LIMIT])
509 sch->limit = nla_get_u32(tb[TCA_GRED_LIMIT]);
Phil Sutter348e3432015-08-18 10:30:49 +0200510 else
511 sch->limit = qdisc_dev(sch)->tx_queue_len
512 * psched_mtu(qdisc_dev(sch));
David Warda3eb95f2015-05-09 22:01:46 -0400513
Jakub Kicinski4777be02018-11-14 22:23:47 -0800514 return gred_change_table_def(sch, tb[TCA_GRED_DPS], extack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515}
516
517static int gred_dump(struct Qdisc *sch, struct sk_buff *skb)
518{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 struct gred_sched *table = qdisc_priv(sch);
Patrick McHardy1e904742008-01-22 22:11:17 -0800520 struct nlattr *parms, *opts = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 int i;
Eric Dumazeta73ed262011-12-09 02:46:45 +0000522 u32 max_p[MAX_DPs];
Thomas Grafe0636822005-11-05 21:14:12 +0100523 struct tc_gred_sopt sopt = {
524 .DPs = table->DPs,
525 .def_DP = table->def,
526 .grio = gred_rio_mode(table),
Thomas Grafb38c7ee2005-11-05 21:14:27 +0100527 .flags = table->red_flags,
Thomas Grafe0636822005-11-05 21:14:12 +0100528 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Patrick McHardy1e904742008-01-22 22:11:17 -0800530 opts = nla_nest_start(skb, TCA_OPTIONS);
531 if (opts == NULL)
532 goto nla_put_failure;
David S. Miller1b34ec42012-03-29 05:11:39 -0400533 if (nla_put(skb, TCA_GRED_DPS, sizeof(sopt), &sopt))
534 goto nla_put_failure;
Eric Dumazeta73ed262011-12-09 02:46:45 +0000535
536 for (i = 0; i < MAX_DPs; i++) {
537 struct gred_sched_data *q = table->tab[i];
538
539 max_p[i] = q ? q->parms.max_P : 0;
540 }
David S. Miller1b34ec42012-03-29 05:11:39 -0400541 if (nla_put(skb, TCA_GRED_MAX_P, sizeof(max_p), max_p))
542 goto nla_put_failure;
Eric Dumazeta73ed262011-12-09 02:46:45 +0000543
David Warda3eb95f2015-05-09 22:01:46 -0400544 if (nla_put_u32(skb, TCA_GRED_LIMIT, sch->limit))
545 goto nla_put_failure;
546
Patrick McHardy1e904742008-01-22 22:11:17 -0800547 parms = nla_nest_start(skb, TCA_GRED_PARMS);
548 if (parms == NULL)
549 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Thomas Graf05f1cc02005-11-05 21:14:11 +0100551 for (i = 0; i < MAX_DPs; i++) {
552 struct gred_sched_data *q = table->tab[i];
553 struct tc_gred_qopt opt;
David Ward1fe37b12012-09-13 05:22:34 +0000554 unsigned long qavg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Thomas Graf05f1cc02005-11-05 21:14:11 +0100556 memset(&opt, 0, sizeof(opt));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
558 if (!q) {
559 /* hack -- fix at some point with proper message
560 This is how we indicate to tc that there is no VQ
561 at this DP */
562
Thomas Graf05f1cc02005-11-05 21:14:11 +0100563 opt.DP = MAX_DPs + i;
564 goto append_opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 }
566
Thomas Graf05f1cc02005-11-05 21:14:11 +0100567 opt.limit = q->limit;
568 opt.DP = q->DP;
David Ward145a42b2015-05-09 22:01:47 -0400569 opt.backlog = gred_backlog(table, q, sch);
Thomas Graf05f1cc02005-11-05 21:14:11 +0100570 opt.prio = q->prio;
Thomas Graf22b33422005-11-05 21:14:16 +0100571 opt.qth_min = q->parms.qth_min >> q->parms.Wlog;
572 opt.qth_max = q->parms.qth_max >> q->parms.Wlog;
573 opt.Wlog = q->parms.Wlog;
574 opt.Plog = q->parms.Plog;
575 opt.Scell_log = q->parms.Scell_log;
576 opt.other = q->stats.other;
577 opt.early = q->stats.prob_drop;
578 opt.forced = q->stats.forced_drop;
579 opt.pdrop = q->stats.pdrop;
Thomas Graf05f1cc02005-11-05 21:14:11 +0100580 opt.packets = q->packetsin;
581 opt.bytesin = q->bytesin;
582
David Ward244b65d2012-04-15 12:31:45 +0000583 if (gred_wred_mode(table))
584 gred_load_wred_set(table, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
David Ward1fe37b12012-09-13 05:22:34 +0000586 qavg = red_calc_qavg(&q->parms, &q->vars,
587 q->vars.qavg >> q->parms.Wlog);
588 opt.qave = qavg >> q->parms.Wlog;
Thomas Graf22b33422005-11-05 21:14:16 +0100589
Thomas Graf05f1cc02005-11-05 21:14:11 +0100590append_opt:
Patrick McHardy1e904742008-01-22 22:11:17 -0800591 if (nla_append(skb, sizeof(opt), &opt) < 0)
592 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 }
594
Patrick McHardy1e904742008-01-22 22:11:17 -0800595 nla_nest_end(skb, parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
Patrick McHardy1e904742008-01-22 22:11:17 -0800597 return nla_nest_end(skb, opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Patrick McHardy1e904742008-01-22 22:11:17 -0800599nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -0700600 nla_nest_cancel(skb, opts);
601 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602}
603
604static void gred_destroy(struct Qdisc *sch)
605{
606 struct gred_sched *table = qdisc_priv(sch);
607 int i;
608
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100609 for (i = 0; i < table->DPs; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 if (table->tab[i])
Thomas Graf66396072005-11-05 21:14:13 +0100611 gred_destroy_vq(table->tab[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 }
613}
614
Eric Dumazet20fea082007-11-14 01:44:41 -0800615static struct Qdisc_ops gred_qdisc_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 .id = "gred",
617 .priv_size = sizeof(struct gred_sched),
618 .enqueue = gred_enqueue,
619 .dequeue = gred_dequeue,
Jarek Poplawski8e3af972008-10-31 00:45:55 -0700620 .peek = qdisc_peek_head,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 .init = gred_init,
622 .reset = gred_reset,
623 .destroy = gred_destroy,
624 .change = gred_change,
625 .dump = gred_dump,
626 .owner = THIS_MODULE,
627};
628
629static int __init gred_module_init(void)
630{
631 return register_qdisc(&gred_qdisc_ops);
632}
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100633
634static void __exit gred_module_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635{
636 unregister_qdisc(&gred_qdisc_ops);
637}
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100638
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639module_init(gred_module_init)
640module_exit(gred_module_exit)
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100641
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642MODULE_LICENSE("GPL");