blob: db5831e6c136acfcb28a5bbf6c585635bb7a0482 [file] [log] [blame]
Thomas Gleixner457c8992019-05-19 13:08:55 +01001// SPDX-License-Identifier: GPL-2.0-only
Stephen Hemminger317a76f2005-06-23 12:19:55 -07002/*
Fabian Frederickb92022f2014-11-04 20:25:38 +01003 * Pluggable TCP congestion control support and newReno
Stephen Hemminger317a76f2005-06-23 12:19:55 -07004 * congestion control.
Masanari Iida02582e92012-08-22 19:11:26 +09005 * Based on ideas from I/O scheduler support and Web100.
Stephen Hemminger317a76f2005-06-23 12:19:55 -07006 *
7 * Copyright (C) 2005 Stephen Hemminger <shemminger@osdl.org>
8 */
9
Joe Perchesafd465032012-03-12 07:03:32 +000010#define pr_fmt(fmt) "TCP: " fmt
11
Stephen Hemminger317a76f2005-06-23 12:19:55 -070012#include <linux/module.h>
13#include <linux/mm.h>
14#include <linux/types.h>
15#include <linux/list.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090016#include <linux/gfp.h>
Daniel Borkmannc5c6a8a2015-01-05 23:57:46 +010017#include <linux/jhash.h>
Stephen Hemminger317a76f2005-06-23 12:19:55 -070018#include <net/tcp.h>
19
20static DEFINE_SPINLOCK(tcp_cong_list_lock);
21static LIST_HEAD(tcp_cong_list);
22
23/* Simple linear search, don't expect many entries! */
Martin KaFai Lau0baf26b2020-01-08 16:35:08 -080024struct tcp_congestion_ops *tcp_ca_find(const char *name)
Stephen Hemminger317a76f2005-06-23 12:19:55 -070025{
26 struct tcp_congestion_ops *e;
27
Stephen Hemminger5f8ef482005-06-23 20:37:36 -070028 list_for_each_entry_rcu(e, &tcp_cong_list, list) {
Stephen Hemminger317a76f2005-06-23 12:19:55 -070029 if (strcmp(e->name, name) == 0)
30 return e;
31 }
32
33 return NULL;
34}
35
Daniel Borkmannc5c6a8a2015-01-05 23:57:46 +010036/* Must be called with rcu lock held */
Stephen Hemminger6670e152017-11-14 08:25:49 -080037static struct tcp_congestion_ops *tcp_ca_find_autoload(struct net *net,
38 const char *name)
Daniel Borkmannc5c6a8a2015-01-05 23:57:46 +010039{
Stephen Hemminger6670e152017-11-14 08:25:49 -080040 struct tcp_congestion_ops *ca = tcp_ca_find(name);
41
Daniel Borkmannc5c6a8a2015-01-05 23:57:46 +010042#ifdef CONFIG_MODULES
43 if (!ca && capable(CAP_NET_ADMIN)) {
44 rcu_read_unlock();
45 request_module("tcp_%s", name);
46 rcu_read_lock();
47 ca = tcp_ca_find(name);
48 }
49#endif
50 return ca;
51}
52
53/* Simple linear search, not much in here. */
54struct tcp_congestion_ops *tcp_ca_find_key(u32 key)
55{
56 struct tcp_congestion_ops *e;
57
58 list_for_each_entry_rcu(e, &tcp_cong_list, list) {
59 if (e->key == key)
60 return e;
61 }
62
63 return NULL;
64}
65
Stephen Hemminger317a76f2005-06-23 12:19:55 -070066/*
Robert P. J. Dayd08df602007-02-17 19:07:33 +010067 * Attach new congestion control algorithm to the list
Stephen Hemminger317a76f2005-06-23 12:19:55 -070068 * of available options.
69 */
70int tcp_register_congestion_control(struct tcp_congestion_ops *ca)
71{
72 int ret = 0;
73
Florian Westphale9799182016-11-21 14:18:38 +010074 /* all algorithms must implement these */
75 if (!ca->ssthresh || !ca->undo_cwnd ||
76 !(ca->cong_avoid || ca->cong_control)) {
Joe Perchesafd465032012-03-12 07:03:32 +000077 pr_err("%s does not implement required ops\n", ca->name);
Stephen Hemminger317a76f2005-06-23 12:19:55 -070078 return -EINVAL;
79 }
80
Daniel Borkmannc5c6a8a2015-01-05 23:57:46 +010081 ca->key = jhash(ca->name, sizeof(ca->name), strlen(ca->name));
82
Stephen Hemminger317a76f2005-06-23 12:19:55 -070083 spin_lock(&tcp_cong_list_lock);
Daniel Borkmannc5c6a8a2015-01-05 23:57:46 +010084 if (ca->key == TCP_CA_UNSPEC || tcp_ca_find_key(ca->key)) {
85 pr_notice("%s already registered or non-unique key\n",
86 ca->name);
Stephen Hemminger317a76f2005-06-23 12:19:55 -070087 ret = -EEXIST;
88 } else {
Stephen Hemminger3d2573f2006-09-24 20:11:58 -070089 list_add_tail_rcu(&ca->list, &tcp_cong_list);
stephen hemmingerdb2855a2015-02-16 09:38:13 -050090 pr_debug("%s registered\n", ca->name);
Stephen Hemminger317a76f2005-06-23 12:19:55 -070091 }
92 spin_unlock(&tcp_cong_list_lock);
93
94 return ret;
95}
96EXPORT_SYMBOL_GPL(tcp_register_congestion_control);
97
98/*
99 * Remove congestion control algorithm, called from
100 * the module's remove function. Module ref counts are used
101 * to ensure that this can't be done till all sockets using
102 * that method are closed.
103 */
104void tcp_unregister_congestion_control(struct tcp_congestion_ops *ca)
105{
106 spin_lock(&tcp_cong_list_lock);
107 list_del_rcu(&ca->list);
108 spin_unlock(&tcp_cong_list_lock);
Daniel Borkmannc5c6a8a2015-01-05 23:57:46 +0100109
110 /* Wait for outstanding readers to complete before the
111 * module gets removed entirely.
112 *
113 * A try_module_get() should fail by now as our module is
114 * in "going" state since no refs are held anymore and
115 * module_exit() handler being called.
116 */
117 synchronize_rcu();
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700118}
119EXPORT_SYMBOL_GPL(tcp_unregister_congestion_control);
120
Stephen Hemminger6670e152017-11-14 08:25:49 -0800121u32 tcp_ca_get_key_by_name(struct net *net, const char *name, bool *ecn_ca)
Daniel Borkmannc5c6a8a2015-01-05 23:57:46 +0100122{
123 const struct tcp_congestion_ops *ca;
Daniel Borkmannc3a8d942015-08-31 15:58:47 +0200124 u32 key = TCP_CA_UNSPEC;
Daniel Borkmannc5c6a8a2015-01-05 23:57:46 +0100125
126 might_sleep();
127
128 rcu_read_lock();
Stephen Hemminger6670e152017-11-14 08:25:49 -0800129 ca = tcp_ca_find_autoload(net, name);
Daniel Borkmannc3a8d942015-08-31 15:58:47 +0200130 if (ca) {
131 key = ca->key;
132 *ecn_ca = ca->flags & TCP_CONG_NEEDS_ECN;
133 }
Daniel Borkmannc5c6a8a2015-01-05 23:57:46 +0100134 rcu_read_unlock();
135
136 return key;
137}
138EXPORT_SYMBOL_GPL(tcp_ca_get_key_by_name);
139
140char *tcp_ca_get_name_by_key(u32 key, char *buffer)
141{
142 const struct tcp_congestion_ops *ca;
143 char *ret = NULL;
144
145 rcu_read_lock();
146 ca = tcp_ca_find_key(key);
147 if (ca)
148 ret = strncpy(buffer, ca->name,
149 TCP_CA_NAME_MAX);
150 rcu_read_unlock();
151
152 return ret;
153}
154EXPORT_SYMBOL_GPL(tcp_ca_get_name_by_key);
155
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700156/* Assign choice of congestion control. */
Florian Westphal55d86942014-09-26 22:37:32 +0200157void tcp_assign_congestion_control(struct sock *sk)
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700158{
Stephen Hemminger6670e152017-11-14 08:25:49 -0800159 struct net *net = sock_net(sk);
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300160 struct inet_connection_sock *icsk = inet_csk(sk);
Stephen Hemminger6670e152017-11-14 08:25:49 -0800161 const struct tcp_congestion_ops *ca;
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700162
Florian Westphal55d86942014-09-26 22:37:32 +0200163 rcu_read_lock();
Stephen Hemminger6670e152017-11-14 08:25:49 -0800164 ca = rcu_dereference(net->ipv4.tcp_congestion_control);
Martin KaFai Lau0baf26b2020-01-08 16:35:08 -0800165 if (unlikely(!bpf_try_module_get(ca, ca->owner)))
Stephen Hemminger6670e152017-11-14 08:25:49 -0800166 ca = &tcp_reno;
167 icsk->icsk_ca_ops = ca;
Florian Westphal55d86942014-09-26 22:37:32 +0200168 rcu_read_unlock();
169
Stephen Hemminger6670e152017-11-14 08:25:49 -0800170 memset(icsk->icsk_ca_priv, 0, sizeof(icsk->icsk_ca_priv));
Eric Dumazet6ac705b2015-09-25 07:39:18 -0700171 if (ca->flags & TCP_CONG_NEEDS_ECN)
172 INET_ECN_xmit(sk);
173 else
174 INET_ECN_dontxmit(sk);
Florian Westphal55d86942014-09-26 22:37:32 +0200175}
176
177void tcp_init_congestion_control(struct sock *sk)
178{
Neal Cardwell8919a9b2020-09-10 15:35:32 -0400179 struct inet_connection_sock *icsk = inet_csk(sk);
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700180
Yuchung Cheng44abafc2017-05-31 11:21:27 -0700181 tcp_sk(sk)->prior_ssthresh = 0;
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300182 if (icsk->icsk_ca_ops->init)
183 icsk->icsk_ca_ops->init(sk);
Eric Dumazet6ac705b2015-09-25 07:39:18 -0700184 if (tcp_ca_needs_ecn(sk))
185 INET_ECN_xmit(sk);
186 else
187 INET_ECN_dontxmit(sk);
Neal Cardwell8919a9b2020-09-10 15:35:32 -0400188 icsk->icsk_ca_initialized = 1;
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700189}
190
Sabrina Dubrocaebfa00c2017-08-25 13:10:12 +0200191static void tcp_reinit_congestion_control(struct sock *sk,
192 const struct tcp_congestion_ops *ca)
Daniel Borkmann29ba4fff2015-01-05 23:57:45 +0100193{
194 struct inet_connection_sock *icsk = inet_csk(sk);
195
196 tcp_cleanup_congestion_control(sk);
197 icsk->icsk_ca_ops = ca;
Neal Cardwell9f950412015-05-29 13:47:07 -0400198 icsk->icsk_ca_setsockopt = 1;
Wei Wangc1201442017-04-25 17:38:02 -0700199 memset(icsk->icsk_ca_priv, 0, sizeof(icsk->icsk_ca_priv));
Daniel Borkmann29ba4fff2015-01-05 23:57:45 +0100200
Alexander Duyck55472012020-11-19 13:23:58 -0800201 if (ca->flags & TCP_CONG_NEEDS_ECN)
202 INET_ECN_xmit(sk);
203 else
204 INET_ECN_dontxmit(sk);
205
Christoph Paaschce69e562020-07-08 16:18:34 -0700206 if (!((1 << sk->sk_state) & (TCPF_CLOSE | TCPF_LISTEN)))
Eric Dumazet6ac705b2015-09-25 07:39:18 -0700207 tcp_init_congestion_control(sk);
Daniel Borkmann29ba4fff2015-01-05 23:57:45 +0100208}
209
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700210/* Manage refcounts on socket close. */
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300211void tcp_cleanup_congestion_control(struct sock *sk)
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700212{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300213 struct inet_connection_sock *icsk = inet_csk(sk);
214
215 if (icsk->icsk_ca_ops->release)
216 icsk->icsk_ca_ops->release(sk);
Martin KaFai Lau0baf26b2020-01-08 16:35:08 -0800217 bpf_module_put(icsk->icsk_ca_ops, icsk->icsk_ca_ops->owner);
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700218}
219
220/* Used by sysctl to change default congestion control */
Stephen Hemminger6670e152017-11-14 08:25:49 -0800221int tcp_set_default_congestion_control(struct net *net, const char *name)
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700222{
223 struct tcp_congestion_ops *ca;
Stephen Hemminger6670e152017-11-14 08:25:49 -0800224 const struct tcp_congestion_ops *prev;
225 int ret;
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700226
Stephen Hemminger6670e152017-11-14 08:25:49 -0800227 rcu_read_lock();
228 ca = tcp_ca_find_autoload(net, name);
229 if (!ca) {
230 ret = -ENOENT;
Martin KaFai Lau0baf26b2020-01-08 16:35:08 -0800231 } else if (!bpf_try_module_get(ca, ca->owner)) {
Stephen Hemminger6670e152017-11-14 08:25:49 -0800232 ret = -EBUSY;
Jonathon Reinhart6c1ea8b2021-05-01 04:28:22 -0400233 } else if (!net_eq(net, &init_net) &&
234 !(ca->flags & TCP_CONG_NON_RESTRICTED)) {
235 /* Only init netns can set default to a restricted algorithm */
236 ret = -EPERM;
Stephen Hemminger6670e152017-11-14 08:25:49 -0800237 } else {
238 prev = xchg(&net->ipv4.tcp_congestion_control, ca);
239 if (prev)
Martin KaFai Lau0baf26b2020-01-08 16:35:08 -0800240 bpf_module_put(prev, prev->owner);
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700241
Stephen Hemminger6670e152017-11-14 08:25:49 -0800242 ca->flags |= TCP_CONG_NON_RESTRICTED;
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700243 ret = 0;
244 }
Stephen Hemminger6670e152017-11-14 08:25:49 -0800245 rcu_read_unlock();
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700246
247 return ret;
248}
249
Stephen Hemmingerb1736a72006-10-31 17:31:33 -0800250/* Set default value from kernel configuration at bootup */
251static int __init tcp_congestion_default(void)
252{
Stephen Hemminger6670e152017-11-14 08:25:49 -0800253 return tcp_set_default_congestion_control(&init_net,
254 CONFIG_DEFAULT_TCP_CONG);
Stephen Hemmingerb1736a72006-10-31 17:31:33 -0800255}
256late_initcall(tcp_congestion_default);
257
Stephen Hemminger3ff825b2006-11-09 16:32:06 -0800258/* Build string with list of available congestion control values */
259void tcp_get_available_congestion_control(char *buf, size_t maxlen)
260{
261 struct tcp_congestion_ops *ca;
262 size_t offs = 0;
263
264 rcu_read_lock();
265 list_for_each_entry_rcu(ca, &tcp_cong_list, list) {
266 offs += snprintf(buf + offs, maxlen - offs,
267 "%s%s",
268 offs == 0 ? "" : " ", ca->name);
Hangbin Liu9bb59a22019-11-20 16:38:08 +0800269
270 if (WARN_ON_ONCE(offs >= maxlen))
271 break;
Stephen Hemminger3ff825b2006-11-09 16:32:06 -0800272 }
273 rcu_read_unlock();
274}
275
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700276/* Get current default congestion control */
Stephen Hemminger6670e152017-11-14 08:25:49 -0800277void tcp_get_default_congestion_control(struct net *net, char *name)
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700278{
Stephen Hemminger6670e152017-11-14 08:25:49 -0800279 const struct tcp_congestion_ops *ca;
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700280
281 rcu_read_lock();
Stephen Hemminger6670e152017-11-14 08:25:49 -0800282 ca = rcu_dereference(net->ipv4.tcp_congestion_control);
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700283 strncpy(name, ca->name, TCP_CA_NAME_MAX);
284 rcu_read_unlock();
285}
286
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800287/* Built list of non-restricted congestion control values */
288void tcp_get_allowed_congestion_control(char *buf, size_t maxlen)
289{
290 struct tcp_congestion_ops *ca;
291 size_t offs = 0;
292
293 *buf = '\0';
294 rcu_read_lock();
295 list_for_each_entry_rcu(ca, &tcp_cong_list, list) {
Stephen Hemminger164891a2007-04-23 22:26:16 -0700296 if (!(ca->flags & TCP_CONG_NON_RESTRICTED))
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800297 continue;
298 offs += snprintf(buf + offs, maxlen - offs,
299 "%s%s",
300 offs == 0 ? "" : " ", ca->name);
Hangbin Liu9bb59a22019-11-20 16:38:08 +0800301
302 if (WARN_ON_ONCE(offs >= maxlen))
303 break;
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800304 }
305 rcu_read_unlock();
306}
307
308/* Change list of non-restricted congestion control */
309int tcp_set_allowed_congestion_control(char *val)
310{
311 struct tcp_congestion_ops *ca;
Julia Lawallc34186e2010-08-27 19:31:56 -0700312 char *saved_clone, *clone, *name;
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800313 int ret = 0;
314
Julia Lawallc34186e2010-08-27 19:31:56 -0700315 saved_clone = clone = kstrdup(val, GFP_USER);
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800316 if (!clone)
317 return -ENOMEM;
318
319 spin_lock(&tcp_cong_list_lock);
320 /* pass 1 check for bad entries */
321 while ((name = strsep(&clone, " ")) && *name) {
322 ca = tcp_ca_find(name);
323 if (!ca) {
324 ret = -ENOENT;
325 goto out;
326 }
327 }
328
Stephen Hemminger164891a2007-04-23 22:26:16 -0700329 /* pass 2 clear old values */
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800330 list_for_each_entry_rcu(ca, &tcp_cong_list, list)
Stephen Hemminger164891a2007-04-23 22:26:16 -0700331 ca->flags &= ~TCP_CONG_NON_RESTRICTED;
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800332
333 /* pass 3 mark as allowed */
334 while ((name = strsep(&val, " ")) && *name) {
335 ca = tcp_ca_find(name);
336 WARN_ON(!ca);
337 if (ca)
Stephen Hemminger164891a2007-04-23 22:26:16 -0700338 ca->flags |= TCP_CONG_NON_RESTRICTED;
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800339 }
340out:
341 spin_unlock(&tcp_cong_list_lock);
Julia Lawallc34186e2010-08-27 19:31:56 -0700342 kfree(saved_clone);
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800343
344 return ret;
345}
346
Lawrence Brakmo91b5b212017-06-30 20:02:49 -0700347/* Change congestion control for socket. If load is false, then it is the
348 * responsibility of the caller to call tcp_init_congestion_control or
349 * tcp_reinit_congestion_control (if the current congestion control was
350 * already initialized.
351 */
Eric Dumazet8d650cd2019-07-18 19:28:14 -0700352int tcp_set_congestion_control(struct sock *sk, const char *name, bool load,
Neal Cardwell29a94932020-09-10 15:35:34 -0400353 bool cap_net_admin)
Stephen Hemminger5f8ef482005-06-23 20:37:36 -0700354{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300355 struct inet_connection_sock *icsk = inet_csk(sk);
Daniel Borkmannc5c6a8a2015-01-05 23:57:46 +0100356 const struct tcp_congestion_ops *ca;
Stephen Hemminger5f8ef482005-06-23 20:37:36 -0700357 int err = 0;
358
Daniel Borkmannc5c6a8a2015-01-05 23:57:46 +0100359 if (icsk->icsk_ca_dst_locked)
360 return -EPERM;
Stephen Hemminger4d4d3d12007-04-23 22:32:11 -0700361
Daniel Borkmannc5c6a8a2015-01-05 23:57:46 +0100362 rcu_read_lock();
Lawrence Brakmo91b5b212017-06-30 20:02:49 -0700363 if (!load)
364 ca = tcp_ca_find(name);
365 else
Stephen Hemminger6670e152017-11-14 08:25:49 -0800366 ca = tcp_ca_find_autoload(sock_net(sk), name);
367
Daniel Borkmannc5c6a8a2015-01-05 23:57:46 +0100368 /* No change asking for existing value */
Neal Cardwell9f950412015-05-29 13:47:07 -0400369 if (ca == icsk->icsk_ca_ops) {
370 icsk->icsk_ca_setsockopt = 1;
Stephen Hemminger5f8ef482005-06-23 20:37:36 -0700371 goto out;
Neal Cardwell9f950412015-05-29 13:47:07 -0400372 }
Stephen Hemminger6670e152017-11-14 08:25:49 -0800373
Neal Cardwell5050bef2020-09-10 15:35:36 -0400374 if (!ca)
Stephen Hemminger5f8ef482005-06-23 20:37:36 -0700375 err = -ENOENT;
Neal Cardwell5050bef2020-09-10 15:35:36 -0400376 else if (!((ca->flags & TCP_CONG_NON_RESTRICTED) || cap_net_admin))
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800377 err = -EPERM;
Neal Cardwell5050bef2020-09-10 15:35:36 -0400378 else if (!bpf_try_module_get(ca, ca->owner))
Stephen Hemminger5f8ef482005-06-23 20:37:36 -0700379 err = -EBUSY;
Neal Cardwell5050bef2020-09-10 15:35:36 -0400380 else
Daniel Borkmann29ba4fff2015-01-05 23:57:45 +0100381 tcp_reinit_congestion_control(sk, ca);
Stephen Hemminger5f8ef482005-06-23 20:37:36 -0700382 out:
383 rcu_read_unlock();
384 return err;
385}
386
Yuchung Cheng9f9843a72013-10-31 11:07:31 -0700387/* Slow start is used when congestion window is no greater than the slow start
388 * threshold. We base on RFC2581 and also handle stretch ACKs properly.
389 * We do not implement RFC3465 Appropriate Byte Counting (ABC) per se but
390 * something better;) a packet is only considered (s)acked in its entirety to
391 * defend the ACK attacks described in the RFC. Slow start processes a stretch
392 * ACK of degree N as if N acks of degree 1 are received back to back except
393 * ABC caps N to 2. Slow start exits when cwnd grows over ssthresh and
394 * returns the leftover acks to adjust cwnd in congestion avoidance mode.
Stephen Hemminger40efc6f2006-01-03 16:03:49 -0800395 */
Neal Cardwelle73ebb02015-01-28 20:01:35 -0500396u32 tcp_slow_start(struct tcp_sock *tp, u32 acked)
Stephen Hemminger40efc6f2006-01-03 16:03:49 -0800397{
Yuchung Cheng76174002015-07-09 13:16:30 -0700398 u32 cwnd = min(tp->snd_cwnd + acked, tp->snd_ssthresh);
Eric Dumazet973ec442013-02-02 05:23:16 +0000399
Neal Cardwelle73ebb02015-01-28 20:01:35 -0500400 acked -= cwnd - tp->snd_cwnd;
Yuchung Cheng9f9843a72013-10-31 11:07:31 -0700401 tp->snd_cwnd = min(cwnd, tp->snd_cwnd_clamp);
Neal Cardwelle73ebb02015-01-28 20:01:35 -0500402
403 return acked;
Stephen Hemminger40efc6f2006-01-03 16:03:49 -0800404}
405EXPORT_SYMBOL_GPL(tcp_slow_start);
406
Neal Cardwell814d4882015-01-28 20:01:36 -0500407/* In theory this is tp->snd_cwnd += 1 / tp->snd_cwnd (or alternative w),
408 * for every packet that was ACKed.
409 */
Neal Cardwelle73ebb02015-01-28 20:01:35 -0500410void tcp_cong_avoid_ai(struct tcp_sock *tp, u32 w, u32 acked)
Ilpo Järvinen758ce5c2009-02-28 04:44:37 +0000411{
Neal Cardwell9949afa2015-03-10 17:17:03 -0400412 /* If credits accumulated at a higher w, apply them gently now. */
413 if (tp->snd_cwnd_cnt >= w) {
414 tp->snd_cwnd_cnt = 0;
415 tp->snd_cwnd++;
416 }
417
Neal Cardwell814d4882015-01-28 20:01:36 -0500418 tp->snd_cwnd_cnt += acked;
Ilpo Järvinen758ce5c2009-02-28 04:44:37 +0000419 if (tp->snd_cwnd_cnt >= w) {
Neal Cardwell814d4882015-01-28 20:01:36 -0500420 u32 delta = tp->snd_cwnd_cnt / w;
421
422 tp->snd_cwnd_cnt -= delta * w;
423 tp->snd_cwnd += delta;
Ilpo Järvinen758ce5c2009-02-28 04:44:37 +0000424 }
Neal Cardwell814d4882015-01-28 20:01:36 -0500425 tp->snd_cwnd = min(tp->snd_cwnd, tp->snd_cwnd_clamp);
Ilpo Järvinen758ce5c2009-02-28 04:44:37 +0000426}
427EXPORT_SYMBOL_GPL(tcp_cong_avoid_ai);
428
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700429/*
430 * TCP Reno congestion control
431 * This is special case used for fallback as well.
432 */
433/* This is Jacobson's slow start and congestion avoidance.
434 * SIGCOMM '88, p. 328.
435 */
Eric Dumazet24901552014-05-02 21:18:05 -0700436void tcp_reno_cong_avoid(struct sock *sk, u32 ack, u32 acked)
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700437{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300438 struct tcp_sock *tp = tcp_sk(sk);
439
Eric Dumazet24901552014-05-02 21:18:05 -0700440 if (!tcp_is_cwnd_limited(sk))
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700441 return;
442
Stephen Hemminger7faffa12005-11-10 17:07:24 -0800443 /* In "safe" area, increase. */
Yuchung Cheng071d5082015-07-09 13:16:29 -0700444 if (tcp_in_slow_start(tp)) {
Neal Cardwellc22bdca2015-01-28 20:01:37 -0500445 acked = tcp_slow_start(tp, acked);
446 if (!acked)
447 return;
448 }
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900449 /* In dangerous area, increase slowly. */
Neal Cardwellc22bdca2015-01-28 20:01:37 -0500450 tcp_cong_avoid_ai(tp, tp->snd_cwnd, acked);
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700451}
452EXPORT_SYMBOL_GPL(tcp_reno_cong_avoid);
453
454/* Slow start threshold is half the congestion window (min 2) */
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300455u32 tcp_reno_ssthresh(struct sock *sk)
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700456{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300457 const struct tcp_sock *tp = tcp_sk(sk);
stephen hemminger688d1942014-08-29 23:32:05 -0700458
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700459 return max(tp->snd_cwnd >> 1U, 2U);
460}
461EXPORT_SYMBOL_GPL(tcp_reno_ssthresh);
462
Florian Westphale9799182016-11-21 14:18:38 +0100463u32 tcp_reno_undo_cwnd(struct sock *sk)
464{
465 const struct tcp_sock *tp = tcp_sk(sk);
466
Yuchung Cheng4faf7832017-08-03 20:38:51 -0700467 return max(tp->snd_cwnd, tp->prior_cwnd);
Florian Westphale9799182016-11-21 14:18:38 +0100468}
469EXPORT_SYMBOL_GPL(tcp_reno_undo_cwnd);
470
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700471struct tcp_congestion_ops tcp_reno = {
Stephen Hemminger164891a2007-04-23 22:26:16 -0700472 .flags = TCP_CONG_NON_RESTRICTED,
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700473 .name = "reno",
474 .owner = THIS_MODULE,
475 .ssthresh = tcp_reno_ssthresh,
476 .cong_avoid = tcp_reno_cong_avoid,
Florian Westphale9799182016-11-21 14:18:38 +0100477 .undo_cwnd = tcp_reno_undo_cwnd,
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700478};