blob: c65077f0c0f39832ee97f4e89f25639306b19281 [file] [log] [blame]
Thomas Gleixner2504ba92019-06-03 07:44:51 +02001// SPDX-License-Identifier: GPL-2.0-only
Vijay Subramaniand4b36212014-01-04 17:33:55 -08002/* Copyright (C) 2013 Cisco Systems, Inc, 2013.
3 *
Vijay Subramaniand4b36212014-01-04 17:33:55 -08004 * Author: Vijay Subramanian <vijaynsu@cisco.com>
5 * Author: Mythili Prabhu <mysuryan@cisco.com>
6 *
7 * ECN support is added by Naeem Khademi <naeemk@ifi.uio.no>
8 * University of Oslo, Norway.
Vijay Subramanian219e2882014-02-12 18:58:21 -08009 *
10 * References:
Leslie Monis24ed4902019-02-26 15:53:31 +053011 * RFC 8033: https://tools.ietf.org/html/rfc8033
Vijay Subramaniand4b36212014-01-04 17:33:55 -080012 */
13
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>
Mohit P. Tahiliani84bf5572020-01-22 23:52:24 +053022#include <net/pie.h>
Vijay Subramaniand4b36212014-01-04 17:33:55 -080023
24/* private data for the Qdisc */
25struct pie_sched_data {
Vijay Subramaniand4b36212014-01-04 17:33:55 -080026 struct pie_vars vars;
Mohit P. Tahiliani2dfb1952020-01-22 23:52:28 +053027 struct pie_params params;
Vijay Subramaniand4b36212014-01-04 17:33:55 -080028 struct pie_stats stats;
29 struct timer_list adapt_timer;
Kees Cookcdeabbb2017-10-16 17:29:17 -070030 struct Qdisc *sch;
Vijay Subramaniand4b36212014-01-04 17:33:55 -080031};
32
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +053033bool pie_drop_early(struct Qdisc *sch, struct pie_params *params,
Leslie Monis90baeb92020-03-05 00:25:59 +053034 struct pie_vars *vars, u32 backlog, u32 packet_size)
Vijay Subramaniand4b36212014-01-04 17:33:55 -080035{
Mohit P. Tahiliani3f7ae5f2019-02-26 00:39:59 +053036 u64 rnd;
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +053037 u64 local_prob = vars->prob;
Vijay Subramaniand4b36212014-01-04 17:33:55 -080038 u32 mtu = psched_mtu(qdisc_dev(sch));
39
40 /* If there is still burst allowance left skip random early drop */
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +053041 if (vars->burst_time > 0)
Vijay Subramaniand4b36212014-01-04 17:33:55 -080042 return false;
43
44 /* If current delay is less than half of target, and
45 * if drop prob is low already, disable early_drop
46 */
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +053047 if ((vars->qdelay < params->target / 2) &&
48 (vars->prob < MAX_PROB / 5))
Vijay Subramaniand4b36212014-01-04 17:33:55 -080049 return false;
50
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +053051 /* If we have fewer than 2 mtu-sized packets, disable pie_drop_early,
Vijay Subramaniand4b36212014-01-04 17:33:55 -080052 * similar to min_th in RED
53 */
Leslie Monis90baeb92020-03-05 00:25:59 +053054 if (backlog < 2 * mtu)
Vijay Subramaniand4b36212014-01-04 17:33:55 -080055 return false;
56
57 /* If bytemode is turned on, use packet size to compute new
58 * probablity. Smaller packets will have lower drop prob in this case
59 */
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +053060 if (params->bytemode && packet_size <= mtu)
Mohit P. Tahiliani3f7ae5f2019-02-26 00:39:59 +053061 local_prob = (u64)packet_size * div_u64(local_prob, mtu);
Vijay Subramaniand4b36212014-01-04 17:33:55 -080062 else
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +053063 local_prob = vars->prob;
Vijay Subramaniand4b36212014-01-04 17:33:55 -080064
Leslie Monis105e8082020-03-05 00:26:01 +053065 if (local_prob == 0)
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +053066 vars->accu_prob = 0;
Leslie Monis105e8082020-03-05 00:26:01 +053067 else
68 vars->accu_prob += local_prob;
Mohit P. Tahiliani95400b92019-02-26 00:40:00 +053069
Leslie Monis105e8082020-03-05 00:26:01 +053070 if (vars->accu_prob < (MAX_PROB / 100) * 85)
Mohit P. Tahiliani95400b92019-02-26 00:40:00 +053071 return false;
Leslie Monis105e8082020-03-05 00:26:01 +053072 if (vars->accu_prob >= (MAX_PROB / 2) * 17)
Vijay Subramaniand4b36212014-01-04 17:33:55 -080073 return true;
74
Mohit P. Tahiliani95400b92019-02-26 00:40:00 +053075 prandom_bytes(&rnd, 8);
Leslie Monis105e8082020-03-05 00:26:01 +053076 if ((rnd >> BITS_PER_BYTE) < local_prob) {
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +053077 vars->accu_prob = 0;
Mohit P. Tahiliani95400b92019-02-26 00:40:00 +053078 return true;
79 }
80
Vijay Subramaniand4b36212014-01-04 17:33:55 -080081 return false;
82}
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +053083EXPORT_SYMBOL_GPL(pie_drop_early);
Vijay Subramaniand4b36212014-01-04 17:33:55 -080084
Eric Dumazet520ac302016-06-21 23:16:49 -070085static int pie_qdisc_enqueue(struct sk_buff *skb, struct Qdisc *sch,
86 struct sk_buff **to_free)
Vijay Subramaniand4b36212014-01-04 17:33:55 -080087{
88 struct pie_sched_data *q = qdisc_priv(sch);
89 bool enqueue = false;
90
91 if (unlikely(qdisc_qlen(sch) >= sch->limit)) {
92 q->stats.overlimit++;
93 goto out;
94 }
95
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +053096 if (!pie_drop_early(sch, &q->params, &q->vars, sch->qstats.backlog,
97 skb->len)) {
Vijay Subramaniand4b36212014-01-04 17:33:55 -080098 enqueue = true;
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.
103 */
104 q->stats.ecn_mark++;
105 enqueue = true;
106 }
107
108 /* we can enqueue the packet */
109 if (enqueue) {
Gautam Ramakrishnancec29752019-11-20 19:43:54 +0530110 /* Set enqueue time only when dq_rate_estimator is disabled. */
111 if (!q->params.dq_rate_estimator)
112 pie_set_enqueue_time(skb);
113
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800114 q->stats.packets_in++;
115 if (qdisc_qlen(sch) > q->stats.maxq)
116 q->stats.maxq = qdisc_qlen(sch);
117
118 return qdisc_enqueue_tail(skb, sch);
119 }
120
121out:
122 q->stats.dropped++;
Mohit P. Tahiliani95400b92019-02-26 00:40:00 +0530123 q->vars.accu_prob = 0;
Eric Dumazet520ac302016-06-21 23:16:49 -0700124 return qdisc_drop(skb, sch, to_free);
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800125}
126
127static const struct nla_policy pie_policy[TCA_PIE_MAX + 1] = {
Mohit P. Tahiliani00ea2fb2020-01-22 23:52:31 +0530128 [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},
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800136};
137
Alexander Aring20307212017-12-20 12:35:14 -0500138static int pie_change(struct Qdisc *sch, struct nlattr *opt,
139 struct netlink_ext_ack *extack)
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800140{
141 struct pie_sched_data *q = qdisc_priv(sch);
142 struct nlattr *tb[TCA_PIE_MAX + 1];
WANG Cong2ccccf52016-02-25 14:55:01 -0800143 unsigned int qlen, dropped = 0;
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800144 int err;
145
146 if (!opt)
147 return -EINVAL;
148
Johannes Berg8cb08172019-04-26 14:07:28 +0200149 err = nla_parse_nested_deprecated(tb, TCA_PIE_MAX, opt, pie_policy,
150 NULL);
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800151 if (err < 0)
152 return err;
153
154 sch_tree_lock(sch);
155
156 /* convert from microseconds to pschedtime */
157 if (tb[TCA_PIE_TARGET]) {
158 /* target is in us */
159 u32 target = nla_get_u32(tb[TCA_PIE_TARGET]);
160
161 /* convert to pschedtime */
162 q->params.target = PSCHED_NS2TICKS((u64)target * NSEC_PER_USEC);
163 }
164
165 /* tupdate is in jiffies */
166 if (tb[TCA_PIE_TUPDATE])
Leslie Monisac4a02c2018-10-07 01:22:45 +0530167 q->params.tupdate =
168 usecs_to_jiffies(nla_get_u32(tb[TCA_PIE_TUPDATE]));
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800169
170 if (tb[TCA_PIE_LIMIT]) {
171 u32 limit = nla_get_u32(tb[TCA_PIE_LIMIT]);
172
173 q->params.limit = limit;
174 sch->limit = limit;
175 }
176
177 if (tb[TCA_PIE_ALPHA])
178 q->params.alpha = nla_get_u32(tb[TCA_PIE_ALPHA]);
179
180 if (tb[TCA_PIE_BETA])
181 q->params.beta = nla_get_u32(tb[TCA_PIE_BETA]);
182
183 if (tb[TCA_PIE_ECN])
184 q->params.ecn = nla_get_u32(tb[TCA_PIE_ECN]);
185
186 if (tb[TCA_PIE_BYTEMODE])
187 q->params.bytemode = nla_get_u32(tb[TCA_PIE_BYTEMODE]);
188
Gautam Ramakrishnancec29752019-11-20 19:43:54 +0530189 if (tb[TCA_PIE_DQ_RATE_ESTIMATOR])
190 q->params.dq_rate_estimator =
191 nla_get_u32(tb[TCA_PIE_DQ_RATE_ESTIMATOR]);
192
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800193 /* Drop excess packets if new limit is lower */
194 qlen = sch->q.qlen;
195 while (sch->q.qlen > sch->limit) {
Florian Westphaled760cb2016-09-18 00:57:33 +0200196 struct sk_buff *skb = __qdisc_dequeue_head(&sch->q);
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800197
WANG Cong2ccccf52016-02-25 14:55:01 -0800198 dropped += qdisc_pkt_len(skb);
John Fastabend25331d62014-09-28 11:53:29 -0700199 qdisc_qstats_backlog_dec(sch, skb);
Eric Dumazetdb4879d2016-06-13 20:21:58 -0700200 rtnl_qdisc_drop(skb, sch);
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800201 }
WANG Cong2ccccf52016-02-25 14:55:01 -0800202 qdisc_tree_reduce_backlog(sch, qlen - sch->q.qlen, dropped);
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800203
204 sch_tree_unlock(sch);
205 return 0;
206}
207
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +0530208void pie_process_dequeue(struct sk_buff *skb, struct pie_params *params,
Leslie Monis90baeb92020-03-05 00:25:59 +0530209 struct pie_vars *vars, u32 backlog)
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800210{
Gautam Ramakrishnancec29752019-11-20 19:43:54 +0530211 psched_time_t now = psched_get_time();
212 u32 dtime = 0;
213
214 /* If dq_rate_estimator is disabled, calculate qdelay using the
215 * packet timestamp.
216 */
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +0530217 if (!params->dq_rate_estimator) {
218 vars->qdelay = now - pie_get_enqueue_time(skb);
Gautam Ramakrishnancec29752019-11-20 19:43:54 +0530219
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +0530220 if (vars->dq_tstamp != DTIME_INVALID)
221 dtime = now - vars->dq_tstamp;
Gautam Ramakrishnancec29752019-11-20 19:43:54 +0530222
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +0530223 vars->dq_tstamp = now;
Gautam Ramakrishnancec29752019-11-20 19:43:54 +0530224
Leslie Monis90baeb92020-03-05 00:25:59 +0530225 if (backlog == 0)
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +0530226 vars->qdelay = 0;
Gautam Ramakrishnancec29752019-11-20 19:43:54 +0530227
228 if (dtime == 0)
229 return;
230
231 goto burst_allowance_reduction;
232 }
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800233
234 /* If current queue is about 10 packets or more and dq_count is unset
235 * we have enough packets to calculate the drain rate. Save
236 * current time as dq_tstamp and start measurement cycle.
237 */
Leslie Monis90baeb92020-03-05 00:25:59 +0530238 if (backlog >= QUEUE_THRESHOLD && vars->dq_count == DQCOUNT_INVALID) {
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +0530239 vars->dq_tstamp = psched_get_time();
240 vars->dq_count = 0;
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800241 }
242
Mohit P. Tahiliani55f780c2020-01-22 23:52:30 +0530243 /* Calculate the average drain rate from this value. If queue length
244 * has receded to a small value viz., <= QUEUE_THRESHOLD bytes, reset
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800245 * the dq_count to -1 as we don't have enough packets to calculate the
Mohit P. Tahiliani55f780c2020-01-22 23:52:30 +0530246 * drain rate anymore. The following if block is entered only when we
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800247 * have a substantial queue built up (QUEUE_THRESHOLD bytes or more)
248 * and we calculate the drain rate for the threshold here. dq_count is
249 * in bytes, time difference in psched_time, hence rate is in
250 * bytes/psched_time.
251 */
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +0530252 if (vars->dq_count != DQCOUNT_INVALID) {
253 vars->dq_count += skb->len;
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800254
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +0530255 if (vars->dq_count >= QUEUE_THRESHOLD) {
256 u32 count = vars->dq_count << PIE_SCALE;
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800257
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +0530258 dtime = now - vars->dq_tstamp;
Gautam Ramakrishnancec29752019-11-20 19:43:54 +0530259
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800260 if (dtime == 0)
261 return;
262
263 count = count / dtime;
264
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +0530265 if (vars->avg_dq_rate == 0)
266 vars->avg_dq_rate = count;
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800267 else
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +0530268 vars->avg_dq_rate =
269 (vars->avg_dq_rate -
270 (vars->avg_dq_rate >> 3)) + (count >> 3);
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800271
272 /* If the queue has receded below the threshold, we hold
273 * on to the last drain rate calculated, else we reset
274 * dq_count to 0 to re-enter the if block when the next
275 * packet is dequeued
276 */
Leslie Monis90baeb92020-03-05 00:25:59 +0530277 if (backlog < QUEUE_THRESHOLD) {
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +0530278 vars->dq_count = DQCOUNT_INVALID;
Leslie Monisac4a02c2018-10-07 01:22:45 +0530279 } else {
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +0530280 vars->dq_count = 0;
281 vars->dq_tstamp = psched_get_time();
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800282 }
283
Gautam Ramakrishnancec29752019-11-20 19:43:54 +0530284 goto burst_allowance_reduction;
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800285 }
286 }
Gautam Ramakrishnancec29752019-11-20 19:43:54 +0530287
288 return;
289
290burst_allowance_reduction:
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +0530291 if (vars->burst_time > 0) {
292 if (vars->burst_time > dtime)
293 vars->burst_time -= dtime;
Gautam Ramakrishnancec29752019-11-20 19:43:54 +0530294 else
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +0530295 vars->burst_time = 0;
Gautam Ramakrishnancec29752019-11-20 19:43:54 +0530296 }
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800297}
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +0530298EXPORT_SYMBOL_GPL(pie_process_dequeue);
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800299
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +0530300void pie_calculate_probability(struct pie_params *params, struct pie_vars *vars,
Leslie Monis90baeb92020-03-05 00:25:59 +0530301 u32 backlog)
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800302{
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800303 psched_time_t qdelay = 0; /* in pschedtime */
Gautam Ramakrishnancec29752019-11-20 19:43:54 +0530304 psched_time_t qdelay_old = 0; /* in pschedtime */
Mohit P. Tahiliani3f7ae5f2019-02-26 00:39:59 +0530305 s64 delta = 0; /* determines the change in probability */
306 u64 oldprob;
307 u64 alpha, beta;
308 u32 power;
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800309 bool update_prob = true;
310
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +0530311 if (params->dq_rate_estimator) {
312 qdelay_old = vars->qdelay;
313 vars->qdelay_old = vars->qdelay;
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800314
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +0530315 if (vars->avg_dq_rate > 0)
Leslie Monis90baeb92020-03-05 00:25:59 +0530316 qdelay = (backlog << PIE_SCALE) / vars->avg_dq_rate;
Gautam Ramakrishnancec29752019-11-20 19:43:54 +0530317 else
318 qdelay = 0;
319 } else {
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +0530320 qdelay = vars->qdelay;
321 qdelay_old = vars->qdelay_old;
Gautam Ramakrishnancec29752019-11-20 19:43:54 +0530322 }
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800323
Leslie Monis90baeb92020-03-05 00:25:59 +0530324 /* If qdelay is zero and backlog is not, it means backlog is very small,
Mohit P. Tahiliani55f780c2020-01-22 23:52:30 +0530325 * so we do not update probabilty in this round.
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800326 */
Leslie Monis90baeb92020-03-05 00:25:59 +0530327 if (qdelay == 0 && backlog != 0)
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800328 update_prob = false;
329
Vijay Subramanian219e2882014-02-12 18:58:21 -0800330 /* In the algorithm, alpha and beta are between 0 and 2 with typical
331 * value for alpha as 0.125. In this implementation, we use values 0-32
332 * passed from user space to represent this. Also, alpha and beta have
333 * unit of HZ and need to be scaled before they can used to update
Mohit P. Tahiliani3f7ae5f2019-02-26 00:39:59 +0530334 * probability. alpha/beta are updated locally below by scaling down
335 * by 16 to come to 0-2 range.
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800336 */
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +0530337 alpha = ((u64)params->alpha * (MAX_PROB / PSCHED_TICKS_PER_SEC)) >> 4;
338 beta = ((u64)params->beta * (MAX_PROB / PSCHED_TICKS_PER_SEC)) >> 4;
Mohit P. Tahiliani3f7ae5f2019-02-26 00:39:59 +0530339
340 /* We scale alpha and beta differently depending on how heavy the
341 * congestion is. Please see RFC 8033 for details.
342 */
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +0530343 if (vars->prob < MAX_PROB / 10) {
Mohit P. Tahiliani3f7ae5f2019-02-26 00:39:59 +0530344 alpha >>= 1;
345 beta >>= 1;
346
347 power = 100;
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +0530348 while (vars->prob < div_u64(MAX_PROB, power) &&
Mohit P. Tahiliani3f7ae5f2019-02-26 00:39:59 +0530349 power <= 1000000) {
350 alpha >>= 2;
351 beta >>= 2;
352 power *= 10;
353 }
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800354 }
355
356 /* alpha and beta should be between 0 and 32, in multiples of 1/16 */
Leslie Monis220d4ac72020-03-05 00:26:00 +0530357 delta += alpha * (qdelay - params->target);
358 delta += beta * (qdelay - qdelay_old);
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800359
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +0530360 oldprob = vars->prob;
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800361
362 /* to ensure we increase probability in steps of no more than 2% */
Mohit P. Tahiliani3f7ae5f2019-02-26 00:39:59 +0530363 if (delta > (s64)(MAX_PROB / (100 / 2)) &&
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +0530364 vars->prob >= MAX_PROB / 10)
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800365 delta = (MAX_PROB / 100) * 2;
366
367 /* Non-linear drop:
368 * Tune drop probability to increase quickly for high delays(>= 250ms)
369 * 250ms is derived through experiments and provides error protection
370 */
371
372 if (qdelay > (PSCHED_NS2TICKS(250 * NSEC_PER_MSEC)))
373 delta += MAX_PROB / (100 / 2);
374
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +0530375 vars->prob += delta;
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800376
377 if (delta > 0) {
378 /* prevent overflow */
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +0530379 if (vars->prob < oldprob) {
380 vars->prob = MAX_PROB;
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800381 /* Prevent normalization error. If probability is at
382 * maximum value already, we normalize it here, and
383 * skip the check to do a non-linear drop in the next
384 * section.
385 */
386 update_prob = false;
387 }
388 } else {
389 /* prevent underflow */
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +0530390 if (vars->prob > oldprob)
391 vars->prob = 0;
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800392 }
393
394 /* Non-linear drop in probability: Reduce drop probability quickly if
395 * delay is 0 for 2 consecutive Tupdate periods.
396 */
397
Leslie Monisac4a02c2018-10-07 01:22:45 +0530398 if (qdelay == 0 && qdelay_old == 0 && update_prob)
Leslie Monis6c97da12019-02-28 18:06:54 +0530399 /* Reduce drop probability to 98.4% */
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +0530400 vars->prob -= vars->prob / 64;
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800401
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +0530402 vars->qdelay = qdelay;
Leslie Monis90baeb92020-03-05 00:25:59 +0530403 vars->backlog_old = backlog;
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800404
405 /* We restart the measurement cycle if the following conditions are met
406 * 1. If the delay has been low for 2 consecutive Tupdate periods
407 * 2. Calculated drop probability is zero
Gautam Ramakrishnancec29752019-11-20 19:43:54 +0530408 * 3. If average dq_rate_estimator is enabled, we have atleast one
409 * estimate for the avg_dq_rate ie., is a non-zero value
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800410 */
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +0530411 if ((vars->qdelay < params->target / 2) &&
412 (vars->qdelay_old < params->target / 2) &&
413 vars->prob == 0 &&
414 (!params->dq_rate_estimator || vars->avg_dq_rate > 0)) {
415 pie_vars_init(vars);
Gautam Ramakrishnancec29752019-11-20 19:43:54 +0530416 }
417
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +0530418 if (!params->dq_rate_estimator)
419 vars->qdelay_old = qdelay;
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800420}
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +0530421EXPORT_SYMBOL_GPL(pie_calculate_probability);
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800422
Kees Cookcdeabbb2017-10-16 17:29:17 -0700423static void pie_timer(struct timer_list *t)
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800424{
Kees Cookcdeabbb2017-10-16 17:29:17 -0700425 struct pie_sched_data *q = from_timer(q, t, adapt_timer);
426 struct Qdisc *sch = q->sch;
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800427 spinlock_t *root_lock = qdisc_lock(qdisc_root_sleeping(sch));
428
429 spin_lock(root_lock);
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +0530430 pie_calculate_probability(&q->params, &q->vars, sch->qstats.backlog);
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800431
432 /* reset the timer to fire after 'tupdate'. tupdate is in jiffies. */
433 if (q->params.tupdate)
434 mod_timer(&q->adapt_timer, jiffies + q->params.tupdate);
435 spin_unlock(root_lock);
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800436}
437
Alexander Aringe63d7df2017-12-20 12:35:13 -0500438static int pie_init(struct Qdisc *sch, struct nlattr *opt,
439 struct netlink_ext_ack *extack)
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800440{
441 struct pie_sched_data *q = qdisc_priv(sch);
442
443 pie_params_init(&q->params);
444 pie_vars_init(&q->vars);
445 sch->limit = q->params.limit;
446
Kees Cookcdeabbb2017-10-16 17:29:17 -0700447 q->sch = sch;
448 timer_setup(&q->adapt_timer, pie_timer, 0);
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800449
450 if (opt) {
Alexander Aring20307212017-12-20 12:35:14 -0500451 int err = pie_change(sch, opt, extack);
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800452
453 if (err)
454 return err;
455 }
456
WANG Congd5610902014-10-24 16:55:58 -0700457 mod_timer(&q->adapt_timer, jiffies + HZ / 2);
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800458 return 0;
459}
460
461static int pie_dump(struct Qdisc *sch, struct sk_buff *skb)
462{
463 struct pie_sched_data *q = qdisc_priv(sch);
464 struct nlattr *opts;
465
Michal Kubecekae0be8d2019-04-26 11:13:06 +0200466 opts = nla_nest_start_noflag(skb, TCA_OPTIONS);
Leslie Monisac4a02c2018-10-07 01:22:45 +0530467 if (!opts)
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800468 goto nla_put_failure;
469
470 /* convert target from pschedtime to us */
471 if (nla_put_u32(skb, TCA_PIE_TARGET,
Leslie Monisac4a02c2018-10-07 01:22:45 +0530472 ((u32)PSCHED_TICKS2NS(q->params.target)) /
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800473 NSEC_PER_USEC) ||
474 nla_put_u32(skb, TCA_PIE_LIMIT, sch->limit) ||
Leslie Monisac4a02c2018-10-07 01:22:45 +0530475 nla_put_u32(skb, TCA_PIE_TUPDATE,
476 jiffies_to_usecs(q->params.tupdate)) ||
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800477 nla_put_u32(skb, TCA_PIE_ALPHA, q->params.alpha) ||
478 nla_put_u32(skb, TCA_PIE_BETA, q->params.beta) ||
479 nla_put_u32(skb, TCA_PIE_ECN, q->params.ecn) ||
Gautam Ramakrishnancec29752019-11-20 19:43:54 +0530480 nla_put_u32(skb, TCA_PIE_BYTEMODE, q->params.bytemode) ||
481 nla_put_u32(skb, TCA_PIE_DQ_RATE_ESTIMATOR,
482 q->params.dq_rate_estimator))
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800483 goto nla_put_failure;
484
485 return nla_nest_end(skb, opts);
486
487nla_put_failure:
488 nla_nest_cancel(skb, opts);
489 return -1;
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800490}
491
492static int pie_dump_stats(struct Qdisc *sch, struct gnet_dump *d)
493{
494 struct pie_sched_data *q = qdisc_priv(sch);
495 struct tc_pie_xstats st = {
Leslie Monis3f95f552020-03-10 00:40:33 +0530496 .prob = q->vars.prob << BITS_PER_BYTE,
Leslie Monisac4a02c2018-10-07 01:22:45 +0530497 .delay = ((u32)PSCHED_TICKS2NS(q->vars.qdelay)) /
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800498 NSEC_PER_USEC,
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800499 .packets_in = q->stats.packets_in,
500 .overlimit = q->stats.overlimit,
501 .maxq = q->stats.maxq,
502 .dropped = q->stats.dropped,
503 .ecn_mark = q->stats.ecn_mark,
504 };
505
Gautam Ramakrishnancec29752019-11-20 19:43:54 +0530506 /* avg_dq_rate is only valid if dq_rate_estimator is enabled */
507 st.dq_rate_estimating = q->params.dq_rate_estimator;
508
509 /* unscale and return dq_rate in bytes per sec */
510 if (q->params.dq_rate_estimator)
511 st.avg_dq_rate = q->vars.avg_dq_rate *
512 (PSCHED_TICKS_PER_SEC) >> PIE_SCALE;
513
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800514 return gnet_stats_copy_app(d, &st, sizeof(st));
515}
516
517static struct sk_buff *pie_qdisc_dequeue(struct Qdisc *sch)
518{
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +0530519 struct pie_sched_data *q = qdisc_priv(sch);
Leslie Monisac4a02c2018-10-07 01:22:45 +0530520 struct sk_buff *skb = qdisc_dequeue_head(sch);
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800521
522 if (!skb)
523 return NULL;
524
Mohit P. Tahiliani5205ea02020-01-22 23:52:32 +0530525 pie_process_dequeue(skb, &q->params, &q->vars, sch->qstats.backlog);
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800526 return skb;
527}
528
529static void pie_reset(struct Qdisc *sch)
530{
531 struct pie_sched_data *q = qdisc_priv(sch);
Leslie Monisac4a02c2018-10-07 01:22:45 +0530532
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800533 qdisc_reset_queue(sch);
534 pie_vars_init(&q->vars);
535}
536
537static void pie_destroy(struct Qdisc *sch)
538{
539 struct pie_sched_data *q = qdisc_priv(sch);
Leslie Monisac4a02c2018-10-07 01:22:45 +0530540
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800541 q->params.tupdate = 0;
542 del_timer_sync(&q->adapt_timer);
543}
544
545static struct Qdisc_ops pie_qdisc_ops __read_mostly = {
Mohit P. Tahiliani00ea2fb2020-01-22 23:52:31 +0530546 .id = "pie",
Vijay Subramaniand4b36212014-01-04 17:33:55 -0800547 .priv_size = sizeof(struct pie_sched_data),
548 .enqueue = pie_qdisc_enqueue,
549 .dequeue = pie_qdisc_dequeue,
550 .peek = qdisc_peek_dequeued,
551 .init = pie_init,
552 .destroy = pie_destroy,
553 .reset = pie_reset,
554 .change = pie_change,
555 .dump = pie_dump,
556 .dump_stats = pie_dump_stats,
557 .owner = THIS_MODULE,
558};
559
560static int __init pie_module_init(void)
561{
562 return register_qdisc(&pie_qdisc_ops);
563}
564
565static void __exit pie_module_exit(void)
566{
567 unregister_qdisc(&pie_qdisc_ops);
568}
569
570module_init(pie_module_init);
571module_exit(pie_module_exit);
572
573MODULE_DESCRIPTION("Proportional Integral controller Enhanced (PIE) scheduler");
574MODULE_AUTHOR("Vijay Subramanian");
575MODULE_AUTHOR("Mythili Prabhu");
576MODULE_LICENSE("GPL");