2 * net/sched/sch_gred.c Generic Random Early Detection queue.
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.
10 * Authors: J Hadi Salim (hadi@cyberus.ca) 1998-2002
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
18 * For all the glorious comments look at include/net/red.h
21 #include <linux/slab.h>
22 #include <linux/module.h>
23 #include <linux/types.h>
24 #include <linux/kernel.h>
25 #include <linux/skbuff.h>
26 #include <net/pkt_sched.h>
29 #define GRED_DEF_PRIO (MAX_DPs / 2)
30 #define GRED_VQ_MASK (MAX_DPs - 1)
32 struct gred_sched_data
;
35 struct gred_sched_data
{
36 u32 limit
; /* HARD maximal queue length */
37 u32 DP
; /* the drop parameters */
38 u32 bytesin
; /* bytes seen on virtualQ so far*/
39 u32 packetsin
; /* packets seen on virtualQ so far*/
40 u32 backlog
; /* bytes on the virtualQ */
41 u8 prio
; /* the prio of this vq */
43 struct red_parms parms
;
45 struct red_stats stats
;
54 struct gred_sched_data
*tab
[MAX_DPs
];
59 struct red_vars wred_set
;
62 static inline int gred_wred_mode(struct gred_sched
*table
)
64 return test_bit(GRED_WRED_MODE
, &table
->flags
);
67 static inline void gred_enable_wred_mode(struct gred_sched
*table
)
69 __set_bit(GRED_WRED_MODE
, &table
->flags
);
72 static inline void gred_disable_wred_mode(struct gred_sched
*table
)
74 __clear_bit(GRED_WRED_MODE
, &table
->flags
);
77 static inline int gred_rio_mode(struct gred_sched
*table
)
79 return test_bit(GRED_RIO_MODE
, &table
->flags
);
82 static inline void gred_enable_rio_mode(struct gred_sched
*table
)
84 __set_bit(GRED_RIO_MODE
, &table
->flags
);
87 static inline void gred_disable_rio_mode(struct gred_sched
*table
)
89 __clear_bit(GRED_RIO_MODE
, &table
->flags
);
92 static inline int gred_wred_mode_check(struct Qdisc
*sch
)
94 struct gred_sched
*table
= qdisc_priv(sch
);
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
];
105 for (n
= 0; n
< table
->DPs
; n
++)
106 if (table
->tab
[n
] && table
->tab
[n
] != q
&&
107 table
->tab
[n
]->prio
== q
->prio
)
114 static inline unsigned int gred_backlog(struct gred_sched
*table
,
115 struct gred_sched_data
*q
,
118 if (gred_wred_mode(table
))
119 return sch
->qstats
.backlog
;
124 static inline u16
tc_index_to_dp(struct sk_buff
*skb
)
126 return skb
->tc_index
& GRED_VQ_MASK
;
129 static inline void gred_load_wred_set(const struct gred_sched
*table
,
130 struct gred_sched_data
*q
)
132 q
->vars
.qavg
= table
->wred_set
.qavg
;
133 q
->vars
.qidlestart
= table
->wred_set
.qidlestart
;
136 static inline void gred_store_wred_set(struct gred_sched
*table
,
137 struct gred_sched_data
*q
)
139 table
->wred_set
.qavg
= q
->vars
.qavg
;
142 static inline int gred_use_ecn(struct gred_sched
*t
)
144 return t
->red_flags
& TC_RED_ECN
;
147 static inline int gred_use_harddrop(struct gred_sched
*t
)
149 return t
->red_flags
& TC_RED_HARDDROP
;
152 static int gred_enqueue(struct sk_buff
*skb
, struct Qdisc
*sch
)
154 struct gred_sched_data
*q
= NULL
;
155 struct gred_sched
*t
= qdisc_priv(sch
);
156 unsigned long qavg
= 0;
157 u16 dp
= tc_index_to_dp(skb
);
159 if (dp
>= t
->DPs
|| (q
= t
->tab
[dp
]) == NULL
) {
164 /* Pass through packets not assigned to a DP
165 * if no default DP has been configured. This
166 * allows for DP flows to be left untouched.
168 if (skb_queue_len(&sch
->q
) < qdisc_dev(sch
)->tx_queue_len
)
169 return qdisc_enqueue_tail(skb
, sch
);
174 /* fix tc_index? --could be controversial but needed for
176 skb
->tc_index
= (skb
->tc_index
& ~GRED_VQ_MASK
) | dp
;
179 /* sum up all the qaves of prios <= to ours to get the new qave */
180 if (!gred_wred_mode(t
) && gred_rio_mode(t
)) {
183 for (i
= 0; i
< t
->DPs
; i
++) {
184 if (t
->tab
[i
] && t
->tab
[i
]->prio
< q
->prio
&&
185 !red_is_idling(&t
->tab
[i
]->vars
))
186 qavg
+= t
->tab
[i
]->vars
.qavg
;
192 q
->bytesin
+= qdisc_pkt_len(skb
);
194 if (gred_wred_mode(t
))
195 gred_load_wred_set(t
, q
);
197 q
->vars
.qavg
= red_calc_qavg(&q
->parms
,
199 gred_backlog(t
, q
, sch
));
201 if (red_is_idling(&q
->vars
))
202 red_end_of_idle_period(&q
->vars
);
204 if (gred_wred_mode(t
))
205 gred_store_wred_set(t
, q
);
207 switch (red_action(&q
->parms
, &q
->vars
, q
->vars
.qavg
+ qavg
)) {
212 sch
->qstats
.overlimits
++;
213 if (!gred_use_ecn(t
) || !INET_ECN_set_ce(skb
)) {
214 q
->stats
.prob_drop
++;
215 goto congestion_drop
;
218 q
->stats
.prob_mark
++;
222 sch
->qstats
.overlimits
++;
223 if (gred_use_harddrop(t
) || !gred_use_ecn(t
) ||
224 !INET_ECN_set_ce(skb
)) {
225 q
->stats
.forced_drop
++;
226 goto congestion_drop
;
228 q
->stats
.forced_mark
++;
232 if (q
->backlog
+ qdisc_pkt_len(skb
) <= q
->limit
) {
233 q
->backlog
+= qdisc_pkt_len(skb
);
234 return qdisc_enqueue_tail(skb
, sch
);
239 return qdisc_drop(skb
, sch
);
242 qdisc_drop(skb
, sch
);
246 static struct sk_buff
*gred_dequeue(struct Qdisc
*sch
)
249 struct gred_sched
*t
= qdisc_priv(sch
);
251 skb
= qdisc_dequeue_head(sch
);
254 struct gred_sched_data
*q
;
255 u16 dp
= tc_index_to_dp(skb
);
257 if (dp
>= t
->DPs
|| (q
= t
->tab
[dp
]) == NULL
) {
258 net_warn_ratelimited("GRED: Unable to relocate VQ 0x%x after dequeue, screwing up backlog\n",
259 tc_index_to_dp(skb
));
261 q
->backlog
-= qdisc_pkt_len(skb
);
263 if (!q
->backlog
&& !gred_wred_mode(t
))
264 red_start_of_idle_period(&q
->vars
);
270 if (gred_wred_mode(t
) && !red_is_idling(&t
->wred_set
))
271 red_start_of_idle_period(&t
->wred_set
);
276 static unsigned int gred_drop(struct Qdisc
*sch
)
279 struct gred_sched
*t
= qdisc_priv(sch
);
281 skb
= qdisc_dequeue_tail(sch
);
283 unsigned int len
= qdisc_pkt_len(skb
);
284 struct gred_sched_data
*q
;
285 u16 dp
= tc_index_to_dp(skb
);
287 if (dp
>= t
->DPs
|| (q
= t
->tab
[dp
]) == NULL
) {
288 net_warn_ratelimited("GRED: Unable to relocate VQ 0x%x while dropping, screwing up backlog\n",
289 tc_index_to_dp(skb
));
294 if (!q
->backlog
&& !gred_wred_mode(t
))
295 red_start_of_idle_period(&q
->vars
);
298 qdisc_drop(skb
, sch
);
302 if (gred_wred_mode(t
) && !red_is_idling(&t
->wred_set
))
303 red_start_of_idle_period(&t
->wred_set
);
309 static void gred_reset(struct Qdisc
*sch
)
312 struct gred_sched
*t
= qdisc_priv(sch
);
314 qdisc_reset_queue(sch
);
316 for (i
= 0; i
< t
->DPs
; i
++) {
317 struct gred_sched_data
*q
= t
->tab
[i
];
322 red_restart(&q
->vars
);
327 static inline void gred_destroy_vq(struct gred_sched_data
*q
)
332 static inline int gred_change_table_def(struct Qdisc
*sch
, struct nlattr
*dps
)
334 struct gred_sched
*table
= qdisc_priv(sch
);
335 struct tc_gred_sopt
*sopt
;
341 sopt
= nla_data(dps
);
343 if (sopt
->DPs
> MAX_DPs
|| sopt
->DPs
== 0 || sopt
->def_DP
>= sopt
->DPs
)
347 table
->DPs
= sopt
->DPs
;
348 table
->def
= sopt
->def_DP
;
349 table
->red_flags
= sopt
->flags
;
352 * Every entry point to GRED is synchronized with the above code
353 * and the DP is checked against DPs, i.e. shadowed VQs can no
354 * longer be found so we can unlock right here.
356 sch_tree_unlock(sch
);
359 gred_enable_rio_mode(table
);
360 gred_disable_wred_mode(table
);
361 if (gred_wred_mode_check(sch
))
362 gred_enable_wred_mode(table
);
364 gred_disable_rio_mode(table
);
365 gred_disable_wred_mode(table
);
368 for (i
= table
->DPs
; i
< MAX_DPs
; i
++) {
370 pr_warning("GRED: Warning: Destroying "
371 "shadowed VQ 0x%x\n", i
);
372 gred_destroy_vq(table
->tab
[i
]);
373 table
->tab
[i
] = NULL
;
380 static inline int gred_change_vq(struct Qdisc
*sch
, int dp
,
381 struct tc_gred_qopt
*ctl
, int prio
,
383 struct gred_sched_data
**prealloc
)
385 struct gred_sched
*table
= qdisc_priv(sch
);
386 struct gred_sched_data
*q
= table
->tab
[dp
];
389 table
->tab
[dp
] = q
= *prealloc
;
397 q
->limit
= ctl
->limit
;
400 red_end_of_idle_period(&q
->vars
);
402 red_set_parms(&q
->parms
,
403 ctl
->qth_min
, ctl
->qth_max
, ctl
->Wlog
, ctl
->Plog
,
404 ctl
->Scell_log
, stab
, max_P
);
405 red_set_vars(&q
->vars
);
409 static const struct nla_policy gred_policy
[TCA_GRED_MAX
+ 1] = {
410 [TCA_GRED_PARMS
] = { .len
= sizeof(struct tc_gred_qopt
) },
411 [TCA_GRED_STAB
] = { .len
= 256 },
412 [TCA_GRED_DPS
] = { .len
= sizeof(struct tc_gred_sopt
) },
413 [TCA_GRED_MAX_P
] = { .type
= NLA_U32
},
416 static int gred_change(struct Qdisc
*sch
, struct nlattr
*opt
)
418 struct gred_sched
*table
= qdisc_priv(sch
);
419 struct tc_gred_qopt
*ctl
;
420 struct nlattr
*tb
[TCA_GRED_MAX
+ 1];
421 int err
, prio
= GRED_DEF_PRIO
;
424 struct gred_sched_data
*prealloc
;
429 err
= nla_parse_nested(tb
, TCA_GRED_MAX
, opt
, gred_policy
);
433 if (tb
[TCA_GRED_PARMS
] == NULL
&& tb
[TCA_GRED_STAB
] == NULL
)
434 return gred_change_table_def(sch
, opt
);
436 if (tb
[TCA_GRED_PARMS
] == NULL
||
437 tb
[TCA_GRED_STAB
] == NULL
)
440 max_P
= tb
[TCA_GRED_MAX_P
] ? nla_get_u32(tb
[TCA_GRED_MAX_P
]) : 0;
443 ctl
= nla_data(tb
[TCA_GRED_PARMS
]);
444 stab
= nla_data(tb
[TCA_GRED_STAB
]);
446 if (ctl
->DP
>= table
->DPs
)
449 if (gred_rio_mode(table
)) {
450 if (ctl
->prio
== 0) {
451 int def_prio
= GRED_DEF_PRIO
;
453 if (table
->tab
[table
->def
])
454 def_prio
= table
->tab
[table
->def
]->prio
;
456 printk(KERN_DEBUG
"GRED: DP %u does not have a prio "
457 "setting default to %d\n", ctl
->DP
, def_prio
);
464 prealloc
= kzalloc(sizeof(*prealloc
), GFP_KERNEL
);
467 err
= gred_change_vq(sch
, ctl
->DP
, ctl
, prio
, stab
, max_P
, &prealloc
);
471 if (gred_rio_mode(table
)) {
472 gred_disable_wred_mode(table
);
473 if (gred_wred_mode_check(sch
))
474 gred_enable_wred_mode(table
);
480 sch_tree_unlock(sch
);
486 static int gred_init(struct Qdisc
*sch
, struct nlattr
*opt
)
488 struct nlattr
*tb
[TCA_GRED_MAX
+ 1];
494 err
= nla_parse_nested(tb
, TCA_GRED_MAX
, opt
, gred_policy
);
498 if (tb
[TCA_GRED_PARMS
] || tb
[TCA_GRED_STAB
])
501 return gred_change_table_def(sch
, tb
[TCA_GRED_DPS
]);
504 static int gred_dump(struct Qdisc
*sch
, struct sk_buff
*skb
)
506 struct gred_sched
*table
= qdisc_priv(sch
);
507 struct nlattr
*parms
, *opts
= NULL
;
510 struct tc_gred_sopt sopt
= {
512 .def_DP
= table
->def
,
513 .grio
= gred_rio_mode(table
),
514 .flags
= table
->red_flags
,
517 opts
= nla_nest_start(skb
, TCA_OPTIONS
);
519 goto nla_put_failure
;
520 if (nla_put(skb
, TCA_GRED_DPS
, sizeof(sopt
), &sopt
))
521 goto nla_put_failure
;
523 for (i
= 0; i
< MAX_DPs
; i
++) {
524 struct gred_sched_data
*q
= table
->tab
[i
];
526 max_p
[i
] = q
? q
->parms
.max_P
: 0;
528 if (nla_put(skb
, TCA_GRED_MAX_P
, sizeof(max_p
), max_p
))
529 goto nla_put_failure
;
531 parms
= nla_nest_start(skb
, TCA_GRED_PARMS
);
533 goto nla_put_failure
;
535 for (i
= 0; i
< MAX_DPs
; i
++) {
536 struct gred_sched_data
*q
= table
->tab
[i
];
537 struct tc_gred_qopt opt
;
539 memset(&opt
, 0, sizeof(opt
));
542 /* hack -- fix at some point with proper message
543 This is how we indicate to tc that there is no VQ
546 opt
.DP
= MAX_DPs
+ i
;
550 opt
.limit
= q
->limit
;
552 opt
.backlog
= q
->backlog
;
554 opt
.qth_min
= q
->parms
.qth_min
>> q
->parms
.Wlog
;
555 opt
.qth_max
= q
->parms
.qth_max
>> q
->parms
.Wlog
;
556 opt
.Wlog
= q
->parms
.Wlog
;
557 opt
.Plog
= q
->parms
.Plog
;
558 opt
.Scell_log
= q
->parms
.Scell_log
;
559 opt
.other
= q
->stats
.other
;
560 opt
.early
= q
->stats
.prob_drop
;
561 opt
.forced
= q
->stats
.forced_drop
;
562 opt
.pdrop
= q
->stats
.pdrop
;
563 opt
.packets
= q
->packetsin
;
564 opt
.bytesin
= q
->bytesin
;
566 if (gred_wred_mode(table
))
567 gred_load_wred_set(table
, q
);
569 opt
.qave
= red_calc_qavg(&q
->parms
, &q
->vars
, q
->vars
.qavg
);
572 if (nla_append(skb
, sizeof(opt
), &opt
) < 0)
573 goto nla_put_failure
;
576 nla_nest_end(skb
, parms
);
578 return nla_nest_end(skb
, opts
);
581 nla_nest_cancel(skb
, opts
);
585 static void gred_destroy(struct Qdisc
*sch
)
587 struct gred_sched
*table
= qdisc_priv(sch
);
590 for (i
= 0; i
< table
->DPs
; i
++) {
592 gred_destroy_vq(table
->tab
[i
]);
596 static struct Qdisc_ops gred_qdisc_ops __read_mostly
= {
598 .priv_size
= sizeof(struct gred_sched
),
599 .enqueue
= gred_enqueue
,
600 .dequeue
= gred_dequeue
,
601 .peek
= qdisc_peek_head
,
605 .destroy
= gred_destroy
,
606 .change
= gred_change
,
608 .owner
= THIS_MODULE
,
611 static int __init
gred_module_init(void)
613 return register_qdisc(&gred_qdisc_ops
);
616 static void __exit
gred_module_exit(void)
618 unregister_qdisc(&gred_qdisc_ops
);
621 module_init(gred_module_init
)
622 module_exit(gred_module_exit
)
624 MODULE_LICENSE("GPL");