1 // SPDX-License-Identifier: GPL-2.0-only
2 /* Copyright (C) 2013 Cisco Systems, Inc, 2013.
4 * Author: Vijay Subramanian <vijaynsu@cisco.com>
5 * Author: Mythili Prabhu <mysuryan@cisco.com>
7 * ECN support is added by Naeem Khademi <naeemk@ifi.uio.no>
8 * University of Oslo, Norway.
11 * RFC 8033: https://tools.ietf.org/html/rfc8033
14 #include <linux/module.h>
15 #include <linux/slab.h>
16 #include <linux/types.h>
17 #include <linux/kernel.h>
18 #include <linux/errno.h>
19 #include <linux/skbuff.h>
20 #include <net/pkt_sched.h>
21 #include <net/inet_ecn.h>
24 /* private data for the Qdisc */
25 struct pie_sched_data {
27 struct pie_params params;
28 struct pie_stats stats;
29 struct timer_list adapt_timer;
33 bool pie_drop_early(struct Qdisc *sch, struct pie_params *params,
34 struct pie_vars *vars, u32 backlog, u32 packet_size)
37 u64 local_prob = vars->prob;
38 u32 mtu = psched_mtu(qdisc_dev(sch));
40 /* If there is still burst allowance left skip random early drop */
41 if (vars->burst_time > 0)
44 /* If current delay is less than half of target, and
45 * if drop prob is low already, disable early_drop
47 if ((vars->qdelay < params->target / 2) &&
48 (vars->prob < MAX_PROB / 5))
51 /* If we have fewer than 2 mtu-sized packets, disable pie_drop_early,
52 * similar to min_th in RED
54 if (backlog < 2 * mtu)
57 /* If bytemode is turned on, use packet size to compute new
58 * probablity. Smaller packets will have lower drop prob in this case
60 if (params->bytemode && packet_size <= mtu)
61 local_prob = (u64)packet_size * div_u64(local_prob, mtu);
63 local_prob = vars->prob;
68 vars->accu_prob += local_prob;
70 if (vars->accu_prob < (MAX_PROB / 100) * 85)
72 if (vars->accu_prob >= (MAX_PROB / 2) * 17)
75 prandom_bytes(&rnd, 8);
76 if ((rnd >> BITS_PER_BYTE) < local_prob) {
83 EXPORT_SYMBOL_GPL(pie_drop_early);
85 static int pie_qdisc_enqueue(struct sk_buff *skb, struct Qdisc *sch,
86 struct sk_buff **to_free)
88 struct pie_sched_data *q = qdisc_priv(sch);
91 if (unlikely(qdisc_qlen(sch) >= sch->limit)) {
96 if (!pie_drop_early(sch, &q->params, &q->vars, sch->qstats.backlog,
99 } else if (q->params.ecn && (q->vars.prob <= MAX_PROB / 10) &&
100 INET_ECN_set_ce(skb)) {
101 /* If packet is ecn capable, mark it if drop probability
102 * is lower than 10%, else drop it.
108 /* we can enqueue the packet */
110 /* Set enqueue time only when dq_rate_estimator is disabled. */
111 if (!q->params.dq_rate_estimator)
112 pie_set_enqueue_time(skb);
114 q->stats.packets_in++;
115 if (qdisc_qlen(sch) > q->stats.maxq)
116 q->stats.maxq = qdisc_qlen(sch);
118 return qdisc_enqueue_tail(skb, sch);
123 q->vars.accu_prob = 0;
124 return qdisc_drop(skb, sch, to_free);
127 static const struct nla_policy pie_policy[TCA_PIE_MAX + 1] = {
128 [TCA_PIE_TARGET] = {.type = NLA_U32},
129 [TCA_PIE_LIMIT] = {.type = NLA_U32},
130 [TCA_PIE_TUPDATE] = {.type = NLA_U32},
131 [TCA_PIE_ALPHA] = {.type = NLA_U32},
132 [TCA_PIE_BETA] = {.type = NLA_U32},
133 [TCA_PIE_ECN] = {.type = NLA_U32},
134 [TCA_PIE_BYTEMODE] = {.type = NLA_U32},
135 [TCA_PIE_DQ_RATE_ESTIMATOR] = {.type = NLA_U32},
138 static int pie_change(struct Qdisc *sch, struct nlattr *opt,
139 struct netlink_ext_ack *extack)
141 struct pie_sched_data *q = qdisc_priv(sch);
142 struct nlattr *tb[TCA_PIE_MAX + 1];
143 unsigned int qlen, dropped = 0;
146 err = nla_parse_nested_deprecated(tb, TCA_PIE_MAX, opt, pie_policy,
153 /* convert from microseconds to pschedtime */
154 if (tb[TCA_PIE_TARGET]) {
155 /* target is in us */
156 u32 target = nla_get_u32(tb[TCA_PIE_TARGET]);
158 /* convert to pschedtime */
159 q->params.target = PSCHED_NS2TICKS((u64)target * NSEC_PER_USEC);
162 /* tupdate is in jiffies */
163 if (tb[TCA_PIE_TUPDATE])
165 usecs_to_jiffies(nla_get_u32(tb[TCA_PIE_TUPDATE]));
167 if (tb[TCA_PIE_LIMIT]) {
168 u32 limit = nla_get_u32(tb[TCA_PIE_LIMIT]);
170 q->params.limit = limit;
174 if (tb[TCA_PIE_ALPHA])
175 q->params.alpha = nla_get_u32(tb[TCA_PIE_ALPHA]);
177 if (tb[TCA_PIE_BETA])
178 q->params.beta = nla_get_u32(tb[TCA_PIE_BETA]);
181 q->params.ecn = nla_get_u32(tb[TCA_PIE_ECN]);
183 if (tb[TCA_PIE_BYTEMODE])
184 q->params.bytemode = nla_get_u32(tb[TCA_PIE_BYTEMODE]);
186 if (tb[TCA_PIE_DQ_RATE_ESTIMATOR])
187 q->params.dq_rate_estimator =
188 nla_get_u32(tb[TCA_PIE_DQ_RATE_ESTIMATOR]);
190 /* Drop excess packets if new limit is lower */
192 while (sch->q.qlen > sch->limit) {
193 struct sk_buff *skb = __qdisc_dequeue_head(&sch->q);
195 dropped += qdisc_pkt_len(skb);
196 qdisc_qstats_backlog_dec(sch, skb);
197 rtnl_qdisc_drop(skb, sch);
199 qdisc_tree_reduce_backlog(sch, qlen - sch->q.qlen, dropped);
201 sch_tree_unlock(sch);
205 void pie_process_dequeue(struct sk_buff *skb, struct pie_params *params,
206 struct pie_vars *vars, u32 backlog)
208 psched_time_t now = psched_get_time();
211 /* If dq_rate_estimator is disabled, calculate qdelay using the
214 if (!params->dq_rate_estimator) {
215 vars->qdelay = now - pie_get_enqueue_time(skb);
217 if (vars->dq_tstamp != DTIME_INVALID)
218 dtime = now - vars->dq_tstamp;
220 vars->dq_tstamp = now;
228 goto burst_allowance_reduction;
231 /* If current queue is about 10 packets or more and dq_count is unset
232 * we have enough packets to calculate the drain rate. Save
233 * current time as dq_tstamp and start measurement cycle.
235 if (backlog >= QUEUE_THRESHOLD && vars->dq_count == DQCOUNT_INVALID) {
236 vars->dq_tstamp = psched_get_time();
240 /* Calculate the average drain rate from this value. If queue length
241 * has receded to a small value viz., <= QUEUE_THRESHOLD bytes, reset
242 * the dq_count to -1 as we don't have enough packets to calculate the
243 * drain rate anymore. The following if block is entered only when we
244 * have a substantial queue built up (QUEUE_THRESHOLD bytes or more)
245 * and we calculate the drain rate for the threshold here. dq_count is
246 * in bytes, time difference in psched_time, hence rate is in
249 if (vars->dq_count != DQCOUNT_INVALID) {
250 vars->dq_count += skb->len;
252 if (vars->dq_count >= QUEUE_THRESHOLD) {
253 u32 count = vars->dq_count << PIE_SCALE;
255 dtime = now - vars->dq_tstamp;
260 count = count / dtime;
262 if (vars->avg_dq_rate == 0)
263 vars->avg_dq_rate = count;
267 (vars->avg_dq_rate >> 3)) + (count >> 3);
269 /* If the queue has receded below the threshold, we hold
270 * on to the last drain rate calculated, else we reset
271 * dq_count to 0 to re-enter the if block when the next
274 if (backlog < QUEUE_THRESHOLD) {
275 vars->dq_count = DQCOUNT_INVALID;
278 vars->dq_tstamp = psched_get_time();
281 goto burst_allowance_reduction;
287 burst_allowance_reduction:
288 if (vars->burst_time > 0) {
289 if (vars->burst_time > dtime)
290 vars->burst_time -= dtime;
292 vars->burst_time = 0;
295 EXPORT_SYMBOL_GPL(pie_process_dequeue);
297 void pie_calculate_probability(struct pie_params *params, struct pie_vars *vars,
300 psched_time_t qdelay = 0; /* in pschedtime */
301 psched_time_t qdelay_old = 0; /* in pschedtime */
302 s64 delta = 0; /* determines the change in probability */
306 bool update_prob = true;
308 if (params->dq_rate_estimator) {
309 qdelay_old = vars->qdelay;
310 vars->qdelay_old = vars->qdelay;
312 if (vars->avg_dq_rate > 0)
313 qdelay = (backlog << PIE_SCALE) / vars->avg_dq_rate;
317 qdelay = vars->qdelay;
318 qdelay_old = vars->qdelay_old;
321 /* If qdelay is zero and backlog is not, it means backlog is very small,
322 * so we do not update probabilty in this round.
324 if (qdelay == 0 && backlog != 0)
327 /* In the algorithm, alpha and beta are between 0 and 2 with typical
328 * value for alpha as 0.125. In this implementation, we use values 0-32
329 * passed from user space to represent this. Also, alpha and beta have
330 * unit of HZ and need to be scaled before they can used to update
331 * probability. alpha/beta are updated locally below by scaling down
332 * by 16 to come to 0-2 range.
334 alpha = ((u64)params->alpha * (MAX_PROB / PSCHED_TICKS_PER_SEC)) >> 4;
335 beta = ((u64)params->beta * (MAX_PROB / PSCHED_TICKS_PER_SEC)) >> 4;
337 /* We scale alpha and beta differently depending on how heavy the
338 * congestion is. Please see RFC 8033 for details.
340 if (vars->prob < MAX_PROB / 10) {
345 while (vars->prob < div_u64(MAX_PROB, power) &&
353 /* alpha and beta should be between 0 and 32, in multiples of 1/16 */
354 delta += alpha * (qdelay - params->target);
355 delta += beta * (qdelay - qdelay_old);
357 oldprob = vars->prob;
359 /* to ensure we increase probability in steps of no more than 2% */
360 if (delta > (s64)(MAX_PROB / (100 / 2)) &&
361 vars->prob >= MAX_PROB / 10)
362 delta = (MAX_PROB / 100) * 2;
365 * Tune drop probability to increase quickly for high delays(>= 250ms)
366 * 250ms is derived through experiments and provides error protection
369 if (qdelay > (PSCHED_NS2TICKS(250 * NSEC_PER_MSEC)))
370 delta += MAX_PROB / (100 / 2);
375 /* prevent overflow */
376 if (vars->prob < oldprob) {
377 vars->prob = MAX_PROB;
378 /* Prevent normalization error. If probability is at
379 * maximum value already, we normalize it here, and
380 * skip the check to do a non-linear drop in the next
386 /* prevent underflow */
387 if (vars->prob > oldprob)
391 /* Non-linear drop in probability: Reduce drop probability quickly if
392 * delay is 0 for 2 consecutive Tupdate periods.
395 if (qdelay == 0 && qdelay_old == 0 && update_prob)
396 /* Reduce drop probability to 98.4% */
397 vars->prob -= vars->prob / 64;
399 vars->qdelay = qdelay;
400 vars->backlog_old = backlog;
402 /* We restart the measurement cycle if the following conditions are met
403 * 1. If the delay has been low for 2 consecutive Tupdate periods
404 * 2. Calculated drop probability is zero
405 * 3. If average dq_rate_estimator is enabled, we have at least one
406 * estimate for the avg_dq_rate ie., is a non-zero value
408 if ((vars->qdelay < params->target / 2) &&
409 (vars->qdelay_old < params->target / 2) &&
411 (!params->dq_rate_estimator || vars->avg_dq_rate > 0)) {
415 if (!params->dq_rate_estimator)
416 vars->qdelay_old = qdelay;
418 EXPORT_SYMBOL_GPL(pie_calculate_probability);
420 static void pie_timer(struct timer_list *t)
422 struct pie_sched_data *q = from_timer(q, t, adapt_timer);
423 struct Qdisc *sch = q->sch;
424 spinlock_t *root_lock = qdisc_lock(qdisc_root_sleeping(sch));
426 spin_lock(root_lock);
427 pie_calculate_probability(&q->params, &q->vars, sch->qstats.backlog);
429 /* reset the timer to fire after 'tupdate'. tupdate is in jiffies. */
430 if (q->params.tupdate)
431 mod_timer(&q->adapt_timer, jiffies + q->params.tupdate);
432 spin_unlock(root_lock);
435 static int pie_init(struct Qdisc *sch, struct nlattr *opt,
436 struct netlink_ext_ack *extack)
438 struct pie_sched_data *q = qdisc_priv(sch);
440 pie_params_init(&q->params);
441 pie_vars_init(&q->vars);
442 sch->limit = q->params.limit;
445 timer_setup(&q->adapt_timer, pie_timer, 0);
448 int err = pie_change(sch, opt, extack);
454 mod_timer(&q->adapt_timer, jiffies + HZ / 2);
458 static int pie_dump(struct Qdisc *sch, struct sk_buff *skb)
460 struct pie_sched_data *q = qdisc_priv(sch);
463 opts = nla_nest_start_noflag(skb, TCA_OPTIONS);
465 goto nla_put_failure;
467 /* convert target from pschedtime to us */
468 if (nla_put_u32(skb, TCA_PIE_TARGET,
469 ((u32)PSCHED_TICKS2NS(q->params.target)) /
471 nla_put_u32(skb, TCA_PIE_LIMIT, sch->limit) ||
472 nla_put_u32(skb, TCA_PIE_TUPDATE,
473 jiffies_to_usecs(q->params.tupdate)) ||
474 nla_put_u32(skb, TCA_PIE_ALPHA, q->params.alpha) ||
475 nla_put_u32(skb, TCA_PIE_BETA, q->params.beta) ||
476 nla_put_u32(skb, TCA_PIE_ECN, q->params.ecn) ||
477 nla_put_u32(skb, TCA_PIE_BYTEMODE, q->params.bytemode) ||
478 nla_put_u32(skb, TCA_PIE_DQ_RATE_ESTIMATOR,
479 q->params.dq_rate_estimator))
480 goto nla_put_failure;
482 return nla_nest_end(skb, opts);
485 nla_nest_cancel(skb, opts);
489 static int pie_dump_stats(struct Qdisc *sch, struct gnet_dump *d)
491 struct pie_sched_data *q = qdisc_priv(sch);
492 struct tc_pie_xstats st = {
493 .prob = q->vars.prob << BITS_PER_BYTE,
494 .delay = ((u32)PSCHED_TICKS2NS(q->vars.qdelay)) /
496 .packets_in = q->stats.packets_in,
497 .overlimit = q->stats.overlimit,
498 .maxq = q->stats.maxq,
499 .dropped = q->stats.dropped,
500 .ecn_mark = q->stats.ecn_mark,
503 /* avg_dq_rate is only valid if dq_rate_estimator is enabled */
504 st.dq_rate_estimating = q->params.dq_rate_estimator;
506 /* unscale and return dq_rate in bytes per sec */
507 if (q->params.dq_rate_estimator)
508 st.avg_dq_rate = q->vars.avg_dq_rate *
509 (PSCHED_TICKS_PER_SEC) >> PIE_SCALE;
511 return gnet_stats_copy_app(d, &st, sizeof(st));
514 static struct sk_buff *pie_qdisc_dequeue(struct Qdisc *sch)
516 struct pie_sched_data *q = qdisc_priv(sch);
517 struct sk_buff *skb = qdisc_dequeue_head(sch);
522 pie_process_dequeue(skb, &q->params, &q->vars, sch->qstats.backlog);
526 static void pie_reset(struct Qdisc *sch)
528 struct pie_sched_data *q = qdisc_priv(sch);
530 qdisc_reset_queue(sch);
531 pie_vars_init(&q->vars);
534 static void pie_destroy(struct Qdisc *sch)
536 struct pie_sched_data *q = qdisc_priv(sch);
538 q->params.tupdate = 0;
539 del_timer_sync(&q->adapt_timer);
542 static struct Qdisc_ops pie_qdisc_ops __read_mostly = {
544 .priv_size = sizeof(struct pie_sched_data),
545 .enqueue = pie_qdisc_enqueue,
546 .dequeue = pie_qdisc_dequeue,
547 .peek = qdisc_peek_dequeued,
549 .destroy = pie_destroy,
551 .change = pie_change,
553 .dump_stats = pie_dump_stats,
554 .owner = THIS_MODULE,
557 static int __init pie_module_init(void)
559 return register_qdisc(&pie_qdisc_ops);
562 static void __exit pie_module_exit(void)
564 unregister_qdisc(&pie_qdisc_ops);
567 module_init(pie_module_init);
568 module_exit(pie_module_exit);
570 MODULE_DESCRIPTION("Proportional Integral controller Enhanced (PIE) scheduler");
571 MODULE_AUTHOR("Vijay Subramanian");
572 MODULE_AUTHOR("Mythili Prabhu");
573 MODULE_LICENSE("GPL");