io_uring/rsrc: don't offload node free
[linux-block.git] / net / ipv4 / tcp_cubic.c
CommitLineData
09c434b8 1// SPDX-License-Identifier: GPL-2.0-only
df3271f3 2/*
ae27e98a 3 * TCP CUBIC: Binary Increase Congestion control for TCP v2.3
6b3d6263
SH
4 * Home page:
5 * http://netsrv.csc.ncsu.edu/twiki/bin/view/Main/BIC
df3271f3 6 * This is from the implementation of CUBIC TCP in
ae27e98a
SH
7 * Sangtae Ha, Injong Rhee and Lisong Xu,
8 * "CUBIC: A New TCP-Friendly High-Speed TCP Variant"
9 * in ACM SIGOPS Operating System Review, July 2008.
df3271f3 10 * Available from:
ae27e98a
SH
11 * http://netsrv.csc.ncsu.edu/export/cubic_a_new_tcp_2008.pdf
12 *
13 * CUBIC integrates a new slow start algorithm, called HyStart.
14 * The details of HyStart are presented in
15 * Sangtae Ha and Injong Rhee,
16 * "Taming the Elephants: New TCP Slow Start", NCSU TechReport 2008.
17 * Available from:
18 * http://netsrv.csc.ncsu.edu/export/hystart_techreport_2008.pdf
19 *
20 * All testing results are available from:
21 * http://netsrv.csc.ncsu.edu/wiki/index.php/TCP_Testing
df3271f3
SH
22 *
23 * Unless CUBIC is enabled and congestion window is large
24 * this behaves the same as the original Reno.
25 */
26
df3271f3 27#include <linux/mm.h>
0e32dfc8
KKD
28#include <linux/btf.h>
29#include <linux/btf_ids.h>
df3271f3 30#include <linux/module.h>
6f6d6a1a 31#include <linux/math64.h>
df3271f3 32#include <net/tcp.h>
df3271f3
SH
33
34#define BICTCP_BETA_SCALE 1024 /* Scale factor beta calculation
35 * max_cwnd = snd_cwnd * beta
36 */
df3271f3
SH
37#define BICTCP_HZ 10 /* BIC HZ 2^10 = 1024 */
38
ae27e98a
SH
39/* Two methods of hybrid slow start */
40#define HYSTART_ACK_TRAIN 0x1
41#define HYSTART_DELAY 0x2
42
43/* Number of delay samples for detecting the increase of delay */
44#define HYSTART_MIN_SAMPLES 8
cff04e2d
ED
45#define HYSTART_DELAY_MIN (4000U) /* 4 ms */
46#define HYSTART_DELAY_MAX (16000U) /* 16 ms */
ae27e98a
SH
47#define HYSTART_DELAY_THRESH(x) clamp(x, HYSTART_DELAY_MIN, HYSTART_DELAY_MAX)
48
59758f44 49static int fast_convergence __read_mostly = 1;
6b3d6263 50static int beta __read_mostly = 717; /* = 717/1024 (BICTCP_BETA_SCALE) */
66e1e3b2 51static int initial_ssthresh __read_mostly;
59758f44
SH
52static int bic_scale __read_mostly = 41;
53static int tcp_friendliness __read_mostly = 1;
df3271f3 54
ae27e98a
SH
55static int hystart __read_mostly = 1;
56static int hystart_detect __read_mostly = HYSTART_ACK_TRAIN | HYSTART_DELAY;
57static int hystart_low_window __read_mostly = 16;
cff04e2d 58static int hystart_ack_delta_us __read_mostly = 2000;
ae27e98a 59
59758f44
SH
60static u32 cube_rtt_scale __read_mostly;
61static u32 beta_scale __read_mostly;
62static u64 cube_factor __read_mostly;
89b3d9aa
SH
63
64/* Note parameters that are used for precomputing scale factors are read-only */
df3271f3
SH
65module_param(fast_convergence, int, 0644);
66MODULE_PARM_DESC(fast_convergence, "turn on/off fast convergence");
6b3d6263 67module_param(beta, int, 0644);
df3271f3
SH
68MODULE_PARM_DESC(beta, "beta for multiplicative increase");
69module_param(initial_ssthresh, int, 0644);
70MODULE_PARM_DESC(initial_ssthresh, "initial value of slow start threshold");
89b3d9aa 71module_param(bic_scale, int, 0444);
df3271f3
SH
72MODULE_PARM_DESC(bic_scale, "scale (scaled by 1024) value for bic function (bic_scale/1024)");
73module_param(tcp_friendliness, int, 0644);
74MODULE_PARM_DESC(tcp_friendliness, "turn on/off tcp friendliness");
ae27e98a
SH
75module_param(hystart, int, 0644);
76MODULE_PARM_DESC(hystart, "turn on/off hybrid slow start algorithm");
77module_param(hystart_detect, int, 0644);
d6ecf328 78MODULE_PARM_DESC(hystart_detect, "hybrid slow start detection mechanisms"
ae27e98a
SH
79 " 1: packet-train 2: delay 3: both packet-train and delay");
80module_param(hystart_low_window, int, 0644);
81MODULE_PARM_DESC(hystart_low_window, "lower bound cwnd for hybrid slow start");
cff04e2d
ED
82module_param(hystart_ack_delta_us, int, 0644);
83MODULE_PARM_DESC(hystart_ack_delta_us, "spacing between ack's indicating train (usecs)");
df3271f3 84
df3271f3
SH
85/* BIC TCP Parameters */
86struct bictcp {
87 u32 cnt; /* increase cwnd by 1 after ACKs */
688d1945 88 u32 last_max_cwnd; /* last maximum snd_cwnd */
df3271f3
SH
89 u32 last_cwnd; /* the last snd_cwnd */
90 u32 last_time; /* time when updated last_cwnd */
91 u32 bic_origin_point;/* origin point of bic function */
688d1945 92 u32 bic_K; /* time to origin point
93 from the beginning of the current epoch */
cff04e2d 94 u32 delay_min; /* min delay (usec) */
df3271f3
SH
95 u32 epoch_start; /* beginning of an epoch */
96 u32 ack_cnt; /* number of acks */
97 u32 tcp_cwnd; /* estimated tcp cwnd */
9cd981dc 98 u16 unused;
ae27e98a
SH
99 u8 sample_cnt; /* number of samples to decide curr_rtt */
100 u8 found; /* the exit point is found? */
101 u32 round_start; /* beginning of each round */
102 u32 end_seq; /* end_seq of the round */
17a6e9f1 103 u32 last_ack; /* last time when the ACK spacing is close */
ae27e98a 104 u32 curr_rtt; /* the minimum rtt of current round */
df3271f3
SH
105};
106
107static inline void bictcp_reset(struct bictcp *ca)
108{
f4d133d8 109 memset(ca, 0, offsetof(struct bictcp, unused));
ae27e98a
SH
110 ca->found = 0;
111}
112
cff04e2d 113static inline u32 bictcp_clock_us(const struct sock *sk)
17a6e9f1 114{
cff04e2d 115 return tcp_sk(sk)->tcp_mstamp;
17a6e9f1 116}
117
ae27e98a
SH
118static inline void bictcp_hystart_reset(struct sock *sk)
119{
120 struct tcp_sock *tp = tcp_sk(sk);
121 struct bictcp *ca = inet_csk_ca(sk);
122
cff04e2d 123 ca->round_start = ca->last_ack = bictcp_clock_us(sk);
ae27e98a 124 ca->end_seq = tp->snd_nxt;
35821fc2 125 ca->curr_rtt = ~0U;
ae27e98a 126 ca->sample_cnt = 0;
df3271f3
SH
127}
128
400031e0 129__bpf_kfunc static void cubictcp_init(struct sock *sk)
df3271f3 130{
5a45f008
NC
131 struct bictcp *ca = inet_csk_ca(sk);
132
133 bictcp_reset(ca);
ae27e98a
SH
134
135 if (hystart)
136 bictcp_hystart_reset(sk);
137
138 if (!hystart && initial_ssthresh)
df3271f3
SH
139 tcp_sk(sk)->snd_ssthresh = initial_ssthresh;
140}
141
400031e0 142__bpf_kfunc static void cubictcp_cwnd_event(struct sock *sk, enum tcp_ca_event event)
30927520
ED
143{
144 if (event == CA_EVENT_TX_START) {
30927520 145 struct bictcp *ca = inet_csk_ca(sk);
d635fbe2 146 u32 now = tcp_jiffies32;
c2e7204d
ED
147 s32 delta;
148
149 delta = now - tcp_sk(sk)->lsndtime;
30927520
ED
150
151 /* We were application limited (idle) for a while.
152 * Shift epoch_start to keep cwnd growth to cubic curve.
153 */
c2e7204d 154 if (ca->epoch_start && delta > 0) {
30927520 155 ca->epoch_start += delta;
c2e7204d
ED
156 if (after(ca->epoch_start, now))
157 ca->epoch_start = now;
158 }
30927520
ED
159 return;
160 }
161}
162
7e58886b
SH
163/* calculate the cubic root of x using a table lookup followed by one
164 * Newton-Raphson iteration.
165 * Avg err ~= 0.195%
df3271f3 166 */
9eb2d627 167static u32 cubic_root(u64 a)
df3271f3 168{
7e58886b
SH
169 u32 x, b, shift;
170 /*
171 * cbrt(x) MSB values for x MSB values in [0..63].
172 * Precomputed then refined by hand - Willy Tarreau
173 *
174 * For x in [0..63],
175 * v = cbrt(x << 18) - 1
176 * cbrt(x) = (v[x] + 10) >> 6
9eb2d627 177 */
7e58886b
SH
178 static const u8 v[] = {
179 /* 0x00 */ 0, 54, 54, 54, 118, 118, 118, 118,
180 /* 0x08 */ 123, 129, 134, 138, 143, 147, 151, 156,
181 /* 0x10 */ 157, 161, 164, 168, 170, 173, 176, 179,
182 /* 0x18 */ 181, 185, 187, 190, 192, 194, 197, 199,
183 /* 0x20 */ 200, 202, 204, 206, 209, 211, 213, 215,
184 /* 0x28 */ 217, 219, 221, 222, 224, 225, 227, 229,
185 /* 0x30 */ 231, 232, 234, 236, 237, 239, 240, 242,
186 /* 0x38 */ 244, 245, 246, 248, 250, 251, 252, 254,
187 };
188
189 b = fls64(a);
190 if (b < 7) {
191 /* a in [0..63] */
192 return ((u32)v[(u32)a] + 35) >> 6;
193 }
194
195 b = ((b * 84) >> 8) - 1;
196 shift = (a >> (b * 3));
197
198 x = ((u32)(((u32)v[shift] + 10) << b)) >> 6;
199
200 /*
201 * Newton-Raphson iteration
202 * 2
203 * x = ( 2 * x + a / x ) / 3
204 * k+1 k k
205 */
6f6d6a1a 206 x = (2 * x + (u32)div64_u64(a, (u64)x * (u64)(x - 1)));
7e58886b 207 x = ((x * 341) >> 10);
9eb2d627 208 return x;
df3271f3
SH
209}
210
df3271f3
SH
211/*
212 * Compute congestion window to use.
213 */
9cd981dc 214static inline void bictcp_update(struct bictcp *ca, u32 cwnd, u32 acked)
df3271f3 215{
2ed0edf9
ED
216 u32 delta, bic_target, max_cnt;
217 u64 offs, t;
df3271f3 218
9cd981dc 219 ca->ack_cnt += acked; /* count the number of ACKed packets */
df3271f3
SH
220
221 if (ca->last_cwnd == cwnd &&
ac35f562 222 (s32)(tcp_jiffies32 - ca->last_time) <= HZ / 32)
df3271f3
SH
223 return;
224
d6b1a8a9
NC
225 /* The CUBIC function can update ca->cnt at most once per jiffy.
226 * On all cwnd reduction events, ca->epoch_start is set to 0,
227 * which will force a recalculation of ca->cnt.
228 */
ac35f562 229 if (ca->epoch_start && tcp_jiffies32 == ca->last_time)
d6b1a8a9
NC
230 goto tcp_friendliness;
231
df3271f3 232 ca->last_cwnd = cwnd;
ac35f562 233 ca->last_time = tcp_jiffies32;
df3271f3 234
df3271f3 235 if (ca->epoch_start == 0) {
ac35f562 236 ca->epoch_start = tcp_jiffies32; /* record beginning */
9cd981dc 237 ca->ack_cnt = acked; /* start counting */
df3271f3
SH
238 ca->tcp_cwnd = cwnd; /* syn with cubic */
239
240 if (ca->last_max_cwnd <= cwnd) {
241 ca->bic_K = 0;
242 ca->bic_origin_point = cwnd;
243 } else {
89b3d9aa
SH
244 /* Compute new K based on
245 * (wmax-cwnd) * (srtt>>3 / HZ) / c * 2^(3*bictcp_HZ)
246 */
247 ca->bic_K = cubic_root(cube_factor
248 * (ca->last_max_cwnd - cwnd));
df3271f3
SH
249 ca->bic_origin_point = ca->last_max_cwnd;
250 }
251 }
252
e905a9ed
YH
253 /* cubic function - calc*/
254 /* calculate c * time^3 / rtt,
255 * while considering overflow in calculation of time^3
89b3d9aa 256 * (so time^3 is done by using 64 bit)
df3271f3 257 * and without the support of division of 64bit numbers
89b3d9aa 258 * (so all divisions are done by using 32 bit)
e905a9ed
YH
259 * also NOTE the unit of those veriables
260 * time = (t - K) / 2^bictcp_HZ
261 * c = bic_scale >> 10
df3271f3
SH
262 * rtt = (srtt >> 3) / HZ
263 * !!! The following code does not have overflow problems,
264 * if the cwnd < 1 million packets !!!
e905a9ed 265 */
df3271f3 266
ac35f562 267 t = (s32)(tcp_jiffies32 - ca->epoch_start);
cff04e2d 268 t += usecs_to_jiffies(ca->delay_min);
df3271f3 269 /* change the unit from HZ to bictcp_HZ */
2ed0edf9
ED
270 t <<= BICTCP_HZ;
271 do_div(t, HZ);
df3271f3 272
e905a9ed 273 if (t < ca->bic_K) /* t - K */
89b3d9aa 274 offs = ca->bic_K - t;
e905a9ed
YH
275 else
276 offs = t - ca->bic_K;
df3271f3 277
89b3d9aa
SH
278 /* c/rtt * (t-K)^3 */
279 delta = (cube_rtt_scale * offs * offs * offs) >> (10+3*BICTCP_HZ);
688d1945 280 if (t < ca->bic_K) /* below origin*/
e905a9ed 281 bic_target = ca->bic_origin_point - delta;
688d1945 282 else /* above origin*/
e905a9ed 283 bic_target = ca->bic_origin_point + delta;
df3271f3 284
e905a9ed
YH
285 /* cubic function - calc bictcp_cnt*/
286 if (bic_target > cwnd) {
df3271f3 287 ca->cnt = cwnd / (bic_target - cwnd);
e905a9ed
YH
288 } else {
289 ca->cnt = 100 * cwnd; /* very small increment*/
290 }
df3271f3 291
b5ccd073
SH
292 /*
293 * The initial growth of cubic function may be too conservative
294 * when the available bandwidth is still unknown.
295 */
5a45f008 296 if (ca->last_max_cwnd == 0 && ca->cnt > 20)
b5ccd073
SH
297 ca->cnt = 20; /* increase cwnd 5% per RTT */
298
d6b1a8a9 299tcp_friendliness:
df3271f3
SH
300 /* TCP Friendly */
301 if (tcp_friendliness) {
89b3d9aa 302 u32 scale = beta_scale;
688d1945 303
89b3d9aa 304 delta = (cwnd * scale) >> 3;
e905a9ed
YH
305 while (ca->ack_cnt > delta) { /* update tcp cwnd */
306 ca->ack_cnt -= delta;
307 ca->tcp_cwnd++;
df3271f3
SH
308 }
309
688d1945 310 if (ca->tcp_cwnd > cwnd) { /* if bic is slower than tcp */
89b3d9aa
SH
311 delta = ca->tcp_cwnd - cwnd;
312 max_cnt = cwnd / delta;
df3271f3
SH
313 if (ca->cnt > max_cnt)
314 ca->cnt = max_cnt;
315 }
e905a9ed 316 }
df3271f3 317
d578e18c
NC
318 /* The maximum rate of cwnd increase CUBIC allows is 1 packet per
319 * 2 packets ACKed, meaning cwnd grows at 1.5x per RTT.
320 */
321 ca->cnt = max(ca->cnt, 2U);
df3271f3
SH
322}
323
400031e0 324__bpf_kfunc static void cubictcp_cong_avoid(struct sock *sk, u32 ack, u32 acked)
df3271f3
SH
325{
326 struct tcp_sock *tp = tcp_sk(sk);
327 struct bictcp *ca = inet_csk_ca(sk);
328
24901551 329 if (!tcp_is_cwnd_limited(sk))
df3271f3
SH
330 return;
331
071d5080 332 if (tcp_in_slow_start(tp)) {
9cd981dc
NC
333 acked = tcp_slow_start(tp, acked);
334 if (!acked)
335 return;
df3271f3 336 }
40570375 337 bictcp_update(ca, tcp_snd_cwnd(tp), acked);
9cd981dc 338 tcp_cong_avoid_ai(tp, ca->cnt, acked);
df3271f3
SH
339}
340
400031e0 341__bpf_kfunc static u32 cubictcp_recalc_ssthresh(struct sock *sk)
df3271f3
SH
342{
343 const struct tcp_sock *tp = tcp_sk(sk);
344 struct bictcp *ca = inet_csk_ca(sk);
345
346 ca->epoch_start = 0; /* end of epoch */
347
348 /* Wmax and fast convergence */
40570375
ED
349 if (tcp_snd_cwnd(tp) < ca->last_max_cwnd && fast_convergence)
350 ca->last_max_cwnd = (tcp_snd_cwnd(tp) * (BICTCP_BETA_SCALE + beta))
df3271f3
SH
351 / (2 * BICTCP_BETA_SCALE);
352 else
40570375 353 ca->last_max_cwnd = tcp_snd_cwnd(tp);
df3271f3 354
40570375 355 return max((tcp_snd_cwnd(tp) * beta) / BICTCP_BETA_SCALE, 2U);
df3271f3
SH
356}
357
400031e0 358__bpf_kfunc static void cubictcp_state(struct sock *sk, u8 new_state)
df3271f3 359{
ae27e98a 360 if (new_state == TCP_CA_Loss) {
df3271f3 361 bictcp_reset(inet_csk_ca(sk));
ae27e98a
SH
362 bictcp_hystart_reset(sk);
363 }
364}
365
f278b99c
ED
366/* Account for TSO/GRO delays.
367 * Otherwise short RTT flows could get too small ssthresh, since during
368 * slow start we begin with small TSO packets and ca->delay_min would
369 * not account for long aggregation delay when TSO packets get bigger.
370 * Ideally even with a very small RTT we would like to have at least one
371 * TSO packet being sent and received by GRO, and another one in qdisc layer.
372 * We apply another 100% factor because @rate is doubled at this point.
373 * We cap the cushion to 1ms.
374 */
9957b38b 375static u32 hystart_ack_delay(const struct sock *sk)
f278b99c
ED
376{
377 unsigned long rate;
378
379 rate = READ_ONCE(sk->sk_pacing_rate);
380 if (!rate)
381 return 0;
382 return min_t(u64, USEC_PER_MSEC,
9957b38b 383 div64_ul((u64)sk->sk_gso_max_size * 4 * USEC_PER_SEC, rate));
f278b99c
ED
384}
385
ae27e98a
SH
386static void hystart_update(struct sock *sk, u32 delay)
387{
388 struct tcp_sock *tp = tcp_sk(sk);
389 struct bictcp *ca = inet_csk_ca(sk);
ede656e8 390 u32 threshold;
ae27e98a 391
4e1fddc9
ED
392 if (after(tp->snd_una, ca->end_seq))
393 bictcp_hystart_reset(sk);
394
6e3a8a93 395 if (hystart_detect & HYSTART_ACK_TRAIN) {
cff04e2d 396 u32 now = bictcp_clock_us(sk);
ae27e98a
SH
397
398 /* first detection parameter - ack-train detection */
cff04e2d 399 if ((s32)(now - ca->last_ack) <= hystart_ack_delta_us) {
17a6e9f1 400 ca->last_ack = now;
ede656e8 401
f278b99c
ED
402 threshold = ca->delay_min + hystart_ack_delay(sk);
403
ede656e8
ED
404 /* Hystart ack train triggers if we get ack past
405 * ca->delay_min/2.
406 * Pacing might have delayed packets up to RTT/2
407 * during slow start.
408 */
409 if (sk->sk_pacing_status == SK_PACING_NONE)
410 threshold >>= 1;
411
412 if ((s32)(now - ca->round_start) > threshold) {
473900a5 413 ca->found = 1;
f278b99c
ED
414 pr_debug("hystart_ack_train (%u > %u) delay_min %u (+ ack_delay %u) cwnd %u\n",
415 now - ca->round_start, threshold,
40570375 416 ca->delay_min, hystart_ack_delay(sk), tcp_snd_cwnd(tp));
c10d9310
ED
417 NET_INC_STATS(sock_net(sk),
418 LINUX_MIB_TCPHYSTARTTRAINDETECT);
419 NET_ADD_STATS(sock_net(sk),
420 LINUX_MIB_TCPHYSTARTTRAINCWND,
40570375
ED
421 tcp_snd_cwnd(tp));
422 tp->snd_ssthresh = tcp_snd_cwnd(tp);
6e3a8a93 423 }
ae27e98a 424 }
6e3a8a93 425 }
ae27e98a 426
6e3a8a93 427 if (hystart_detect & HYSTART_DELAY) {
ae27e98a 428 /* obtain the minimum delay of more than sampling packets */
b344579c
NC
429 if (ca->curr_rtt > delay)
430 ca->curr_rtt = delay;
ae27e98a 431 if (ca->sample_cnt < HYSTART_MIN_SAMPLES) {
ae27e98a
SH
432 ca->sample_cnt++;
433 } else {
434 if (ca->curr_rtt > ca->delay_min +
42eef7a0 435 HYSTART_DELAY_THRESH(ca->delay_min >> 3)) {
473900a5 436 ca->found = 1;
c10d9310
ED
437 NET_INC_STATS(sock_net(sk),
438 LINUX_MIB_TCPHYSTARTDELAYDETECT);
439 NET_ADD_STATS(sock_net(sk),
440 LINUX_MIB_TCPHYSTARTDELAYCWND,
40570375
ED
441 tcp_snd_cwnd(tp));
442 tp->snd_ssthresh = tcp_snd_cwnd(tp);
6e3a8a93 443 }
ae27e98a 444 }
ae27e98a 445 }
df3271f3
SH
446}
447
400031e0 448__bpf_kfunc static void cubictcp_acked(struct sock *sk, const struct ack_sample *sample)
df3271f3 449{
ae27e98a 450 const struct tcp_sock *tp = tcp_sk(sk);
e7d0c885
SH
451 struct bictcp *ca = inet_csk_ca(sk);
452 u32 delay;
df3271f3 453
e7d0c885 454 /* Some calls are for duplicates without timetamps */
756ee172 455 if (sample->rtt_us < 0)
e7d0c885
SH
456 return;
457
458 /* Discard delay samples right after fast recovery */
ac35f562 459 if (ca->epoch_start && (s32)(tcp_jiffies32 - ca->epoch_start) < HZ)
e7d0c885
SH
460 return;
461
cff04e2d 462 delay = sample->rtt_us;
e7d0c885
SH
463 if (delay == 0)
464 delay = 1;
465
466 /* first time call or link delay decreases */
f278b99c
ED
467 if (ca->delay_min == 0 || ca->delay_min > delay)
468 ca->delay_min = delay;
ae27e98a
SH
469
470 /* hystart triggers when cwnd is larger than some threshold */
f278b99c 471 if (!ca->found && tcp_in_slow_start(tp) && hystart &&
40570375 472 tcp_snd_cwnd(tp) >= hystart_low_window)
ae27e98a 473 hystart_update(sk, delay);
e7d0c885 474}
df3271f3 475
a252bebe 476static struct tcp_congestion_ops cubictcp __read_mostly = {
d22f6ad1
MKL
477 .init = cubictcp_init,
478 .ssthresh = cubictcp_recalc_ssthresh,
479 .cong_avoid = cubictcp_cong_avoid,
480 .set_state = cubictcp_state,
f1722a1b 481 .undo_cwnd = tcp_reno_undo_cwnd,
d22f6ad1
MKL
482 .cwnd_event = cubictcp_cwnd_event,
483 .pkts_acked = cubictcp_acked,
df3271f3
SH
484 .owner = THIS_MODULE,
485 .name = "cubic",
486};
487
a4703e31 488BTF_SET8_START(tcp_cubic_check_kfunc_ids)
0e32dfc8
KKD
489#ifdef CONFIG_X86
490#ifdef CONFIG_DYNAMIC_FTRACE
a4703e31
KKD
491BTF_ID_FLAGS(func, cubictcp_init)
492BTF_ID_FLAGS(func, cubictcp_recalc_ssthresh)
493BTF_ID_FLAGS(func, cubictcp_cong_avoid)
494BTF_ID_FLAGS(func, cubictcp_state)
495BTF_ID_FLAGS(func, cubictcp_cwnd_event)
496BTF_ID_FLAGS(func, cubictcp_acked)
0e32dfc8
KKD
497#endif
498#endif
a4703e31 499BTF_SET8_END(tcp_cubic_check_kfunc_ids)
0e32dfc8 500
b202d844 501static const struct btf_kfunc_id_set tcp_cubic_kfunc_set = {
a4703e31
KKD
502 .owner = THIS_MODULE,
503 .set = &tcp_cubic_check_kfunc_ids,
b202d844 504};
0e32dfc8 505
df3271f3
SH
506static int __init cubictcp_register(void)
507{
0e32dfc8
KKD
508 int ret;
509
74975d40 510 BUILD_BUG_ON(sizeof(struct bictcp) > ICSK_CA_PRIV_SIZE);
89b3d9aa
SH
511
512 /* Precompute a bunch of the scaling factors that are used per-packet
513 * based on SRTT of 100ms
514 */
515
688d1945 516 beta_scale = 8*(BICTCP_BETA_SCALE+beta) / 3
517 / (BICTCP_BETA_SCALE - beta);
89b3d9aa 518
22119240 519 cube_rtt_scale = (bic_scale * 10); /* 1024*c/rtt */
89b3d9aa
SH
520
521 /* calculate the "K" for (wmax-cwnd) = c/rtt * K^3
522 * so K = cubic_root( (wmax-cwnd)*rtt/c )
523 * the unit of K is bictcp_HZ=2^10, not HZ
524 *
525 * c = bic_scale >> 10
526 * rtt = 100ms
527 *
528 * the following code has been designed and tested for
529 * cwnd < 1 million packets
530 * RTT < 100 seconds
531 * HZ < 1,000,00 (corresponding to 10 nano-second)
532 */
533
534 /* 1/c * 2^2*bictcp_HZ * srtt */
535 cube_factor = 1ull << (10+3*BICTCP_HZ); /* 2^40 */
536
537 /* divide by bic_scale and by constant Srtt (100ms) */
538 do_div(cube_factor, bic_scale * 10);
539
b202d844
KKD
540 ret = register_btf_kfunc_id_set(BPF_PROG_TYPE_STRUCT_OPS, &tcp_cubic_kfunc_set);
541 if (ret < 0)
0e32dfc8 542 return ret;
b202d844 543 return tcp_register_congestion_control(&cubictcp);
df3271f3
SH
544}
545
546static void __exit cubictcp_unregister(void)
547{
548 tcp_unregister_congestion_control(&cubictcp);
549}
550
551module_init(cubictcp_register);
552module_exit(cubictcp_unregister);
553
554MODULE_AUTHOR("Sangtae Ha, Stephen Hemminger");
555MODULE_LICENSE("GPL");
556MODULE_DESCRIPTION("CUBIC TCP");
ae27e98a 557MODULE_VERSION("2.3");