blob: e1862b64a90fba25b84dd9d5584e1f843406edd0 [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! */
24static struct tcp_congestion_ops *tcp_ca_find(const char *name)
25{
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);
165 if (unlikely(!try_module_get(ca->owner)))
166 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{
179 const 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);
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700188}
189
Sabrina Dubrocaebfa00c2017-08-25 13:10:12 +0200190static void tcp_reinit_congestion_control(struct sock *sk,
191 const struct tcp_congestion_ops *ca)
Daniel Borkmann29ba4fff2015-01-05 23:57:45 +0100192{
193 struct inet_connection_sock *icsk = inet_csk(sk);
194
195 tcp_cleanup_congestion_control(sk);
196 icsk->icsk_ca_ops = ca;
Neal Cardwell9f950412015-05-29 13:47:07 -0400197 icsk->icsk_ca_setsockopt = 1;
Wei Wangc1201442017-04-25 17:38:02 -0700198 memset(icsk->icsk_ca_priv, 0, sizeof(icsk->icsk_ca_priv));
Daniel Borkmann29ba4fff2015-01-05 23:57:45 +0100199
Wei Wangc1201442017-04-25 17:38:02 -0700200 if (sk->sk_state != TCP_CLOSE)
Eric Dumazet6ac705b2015-09-25 07:39:18 -0700201 tcp_init_congestion_control(sk);
Daniel Borkmann29ba4fff2015-01-05 23:57:45 +0100202}
203
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700204/* Manage refcounts on socket close. */
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300205void tcp_cleanup_congestion_control(struct sock *sk)
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700206{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300207 struct inet_connection_sock *icsk = inet_csk(sk);
208
209 if (icsk->icsk_ca_ops->release)
210 icsk->icsk_ca_ops->release(sk);
211 module_put(icsk->icsk_ca_ops->owner);
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700212}
213
214/* Used by sysctl to change default congestion control */
Stephen Hemminger6670e152017-11-14 08:25:49 -0800215int tcp_set_default_congestion_control(struct net *net, const char *name)
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700216{
217 struct tcp_congestion_ops *ca;
Stephen Hemminger6670e152017-11-14 08:25:49 -0800218 const struct tcp_congestion_ops *prev;
219 int ret;
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700220
Stephen Hemminger6670e152017-11-14 08:25:49 -0800221 rcu_read_lock();
222 ca = tcp_ca_find_autoload(net, name);
223 if (!ca) {
224 ret = -ENOENT;
225 } else if (!try_module_get(ca->owner)) {
226 ret = -EBUSY;
227 } else {
228 prev = xchg(&net->ipv4.tcp_congestion_control, ca);
229 if (prev)
230 module_put(prev->owner);
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700231
Stephen Hemminger6670e152017-11-14 08:25:49 -0800232 ca->flags |= TCP_CONG_NON_RESTRICTED;
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700233 ret = 0;
234 }
Stephen Hemminger6670e152017-11-14 08:25:49 -0800235 rcu_read_unlock();
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700236
237 return ret;
238}
239
Stephen Hemmingerb1736a72006-10-31 17:31:33 -0800240/* Set default value from kernel configuration at bootup */
241static int __init tcp_congestion_default(void)
242{
Stephen Hemminger6670e152017-11-14 08:25:49 -0800243 return tcp_set_default_congestion_control(&init_net,
244 CONFIG_DEFAULT_TCP_CONG);
Stephen Hemmingerb1736a72006-10-31 17:31:33 -0800245}
246late_initcall(tcp_congestion_default);
247
Stephen Hemminger3ff825b2006-11-09 16:32:06 -0800248/* Build string with list of available congestion control values */
249void tcp_get_available_congestion_control(char *buf, size_t maxlen)
250{
251 struct tcp_congestion_ops *ca;
252 size_t offs = 0;
253
254 rcu_read_lock();
255 list_for_each_entry_rcu(ca, &tcp_cong_list, list) {
256 offs += snprintf(buf + offs, maxlen - offs,
257 "%s%s",
258 offs == 0 ? "" : " ", ca->name);
Stephen Hemminger3ff825b2006-11-09 16:32:06 -0800259 }
260 rcu_read_unlock();
261}
262
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700263/* Get current default congestion control */
Stephen Hemminger6670e152017-11-14 08:25:49 -0800264void tcp_get_default_congestion_control(struct net *net, char *name)
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700265{
Stephen Hemminger6670e152017-11-14 08:25:49 -0800266 const struct tcp_congestion_ops *ca;
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700267
268 rcu_read_lock();
Stephen Hemminger6670e152017-11-14 08:25:49 -0800269 ca = rcu_dereference(net->ipv4.tcp_congestion_control);
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700270 strncpy(name, ca->name, TCP_CA_NAME_MAX);
271 rcu_read_unlock();
272}
273
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800274/* Built list of non-restricted congestion control values */
275void tcp_get_allowed_congestion_control(char *buf, size_t maxlen)
276{
277 struct tcp_congestion_ops *ca;
278 size_t offs = 0;
279
280 *buf = '\0';
281 rcu_read_lock();
282 list_for_each_entry_rcu(ca, &tcp_cong_list, list) {
Stephen Hemminger164891a2007-04-23 22:26:16 -0700283 if (!(ca->flags & TCP_CONG_NON_RESTRICTED))
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800284 continue;
285 offs += snprintf(buf + offs, maxlen - offs,
286 "%s%s",
287 offs == 0 ? "" : " ", ca->name);
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800288 }
289 rcu_read_unlock();
290}
291
292/* Change list of non-restricted congestion control */
293int tcp_set_allowed_congestion_control(char *val)
294{
295 struct tcp_congestion_ops *ca;
Julia Lawallc34186e2010-08-27 19:31:56 -0700296 char *saved_clone, *clone, *name;
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800297 int ret = 0;
298
Julia Lawallc34186e2010-08-27 19:31:56 -0700299 saved_clone = clone = kstrdup(val, GFP_USER);
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800300 if (!clone)
301 return -ENOMEM;
302
303 spin_lock(&tcp_cong_list_lock);
304 /* pass 1 check for bad entries */
305 while ((name = strsep(&clone, " ")) && *name) {
306 ca = tcp_ca_find(name);
307 if (!ca) {
308 ret = -ENOENT;
309 goto out;
310 }
311 }
312
Stephen Hemminger164891a2007-04-23 22:26:16 -0700313 /* pass 2 clear old values */
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800314 list_for_each_entry_rcu(ca, &tcp_cong_list, list)
Stephen Hemminger164891a2007-04-23 22:26:16 -0700315 ca->flags &= ~TCP_CONG_NON_RESTRICTED;
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800316
317 /* pass 3 mark as allowed */
318 while ((name = strsep(&val, " ")) && *name) {
319 ca = tcp_ca_find(name);
320 WARN_ON(!ca);
321 if (ca)
Stephen Hemminger164891a2007-04-23 22:26:16 -0700322 ca->flags |= TCP_CONG_NON_RESTRICTED;
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800323 }
324out:
325 spin_unlock(&tcp_cong_list_lock);
Julia Lawallc34186e2010-08-27 19:31:56 -0700326 kfree(saved_clone);
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800327
328 return ret;
329}
330
Lawrence Brakmo91b5b212017-06-30 20:02:49 -0700331/* Change congestion control for socket. If load is false, then it is the
332 * responsibility of the caller to call tcp_init_congestion_control or
333 * tcp_reinit_congestion_control (if the current congestion control was
334 * already initialized.
335 */
Sabrina Dubrocaebfa00c2017-08-25 13:10:12 +0200336int tcp_set_congestion_control(struct sock *sk, const char *name, bool load, bool reinit)
Stephen Hemminger5f8ef482005-06-23 20:37:36 -0700337{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300338 struct inet_connection_sock *icsk = inet_csk(sk);
Daniel Borkmannc5c6a8a2015-01-05 23:57:46 +0100339 const struct tcp_congestion_ops *ca;
Stephen Hemminger5f8ef482005-06-23 20:37:36 -0700340 int err = 0;
341
Daniel Borkmannc5c6a8a2015-01-05 23:57:46 +0100342 if (icsk->icsk_ca_dst_locked)
343 return -EPERM;
Stephen Hemminger4d4d3d12007-04-23 22:32:11 -0700344
Daniel Borkmannc5c6a8a2015-01-05 23:57:46 +0100345 rcu_read_lock();
Lawrence Brakmo91b5b212017-06-30 20:02:49 -0700346 if (!load)
347 ca = tcp_ca_find(name);
348 else
Stephen Hemminger6670e152017-11-14 08:25:49 -0800349 ca = tcp_ca_find_autoload(sock_net(sk), name);
350
Daniel Borkmannc5c6a8a2015-01-05 23:57:46 +0100351 /* No change asking for existing value */
Neal Cardwell9f950412015-05-29 13:47:07 -0400352 if (ca == icsk->icsk_ca_ops) {
353 icsk->icsk_ca_setsockopt = 1;
Stephen Hemminger5f8ef482005-06-23 20:37:36 -0700354 goto out;
Neal Cardwell9f950412015-05-29 13:47:07 -0400355 }
Stephen Hemminger6670e152017-11-14 08:25:49 -0800356
Lawrence Brakmo91b5b212017-06-30 20:02:49 -0700357 if (!ca) {
Stephen Hemminger5f8ef482005-06-23 20:37:36 -0700358 err = -ENOENT;
Lawrence Brakmo91b5b212017-06-30 20:02:49 -0700359 } else if (!load) {
Sabrina Dubrocaebfa00c2017-08-25 13:10:12 +0200360 const struct tcp_congestion_ops *old_ca = icsk->icsk_ca_ops;
361
362 if (try_module_get(ca->owner)) {
363 if (reinit) {
364 tcp_reinit_congestion_control(sk, ca);
365 } else {
366 icsk->icsk_ca_ops = ca;
367 module_put(old_ca->owner);
368 }
369 } else {
Lawrence Brakmo91b5b212017-06-30 20:02:49 -0700370 err = -EBUSY;
Sabrina Dubrocaebfa00c2017-08-25 13:10:12 +0200371 }
Lawrence Brakmo91b5b212017-06-30 20:02:49 -0700372 } else if (!((ca->flags & TCP_CONG_NON_RESTRICTED) ||
373 ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN))) {
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800374 err = -EPERM;
Lawrence Brakmo91b5b212017-06-30 20:02:49 -0700375 } else if (!try_module_get(ca->owner)) {
Stephen Hemminger5f8ef482005-06-23 20:37:36 -0700376 err = -EBUSY;
Lawrence Brakmo91b5b212017-06-30 20:02:49 -0700377 } else {
Daniel Borkmann29ba4fff2015-01-05 23:57:45 +0100378 tcp_reinit_congestion_control(sk, ca);
Lawrence Brakmo91b5b212017-06-30 20:02:49 -0700379 }
Stephen Hemminger5f8ef482005-06-23 20:37:36 -0700380 out:
381 rcu_read_unlock();
382 return err;
383}
384
Yuchung Cheng9f9843a72013-10-31 11:07:31 -0700385/* Slow start is used when congestion window is no greater than the slow start
386 * threshold. We base on RFC2581 and also handle stretch ACKs properly.
387 * We do not implement RFC3465 Appropriate Byte Counting (ABC) per se but
388 * something better;) a packet is only considered (s)acked in its entirety to
389 * defend the ACK attacks described in the RFC. Slow start processes a stretch
390 * ACK of degree N as if N acks of degree 1 are received back to back except
391 * ABC caps N to 2. Slow start exits when cwnd grows over ssthresh and
392 * returns the leftover acks to adjust cwnd in congestion avoidance mode.
Stephen Hemminger40efc6f2006-01-03 16:03:49 -0800393 */
Neal Cardwelle73ebb02015-01-28 20:01:35 -0500394u32 tcp_slow_start(struct tcp_sock *tp, u32 acked)
Stephen Hemminger40efc6f2006-01-03 16:03:49 -0800395{
Yuchung Cheng76174002015-07-09 13:16:30 -0700396 u32 cwnd = min(tp->snd_cwnd + acked, tp->snd_ssthresh);
Eric Dumazet973ec442013-02-02 05:23:16 +0000397
Neal Cardwelle73ebb02015-01-28 20:01:35 -0500398 acked -= cwnd - tp->snd_cwnd;
Yuchung Cheng9f9843a72013-10-31 11:07:31 -0700399 tp->snd_cwnd = min(cwnd, tp->snd_cwnd_clamp);
Neal Cardwelle73ebb02015-01-28 20:01:35 -0500400
401 return acked;
Stephen Hemminger40efc6f2006-01-03 16:03:49 -0800402}
403EXPORT_SYMBOL_GPL(tcp_slow_start);
404
Neal Cardwell814d4882015-01-28 20:01:36 -0500405/* In theory this is tp->snd_cwnd += 1 / tp->snd_cwnd (or alternative w),
406 * for every packet that was ACKed.
407 */
Neal Cardwelle73ebb02015-01-28 20:01:35 -0500408void tcp_cong_avoid_ai(struct tcp_sock *tp, u32 w, u32 acked)
Ilpo Järvinen758ce5c2009-02-28 04:44:37 +0000409{
Neal Cardwell9949afa2015-03-10 17:17:03 -0400410 /* If credits accumulated at a higher w, apply them gently now. */
411 if (tp->snd_cwnd_cnt >= w) {
412 tp->snd_cwnd_cnt = 0;
413 tp->snd_cwnd++;
414 }
415
Neal Cardwell814d4882015-01-28 20:01:36 -0500416 tp->snd_cwnd_cnt += acked;
Ilpo Järvinen758ce5c2009-02-28 04:44:37 +0000417 if (tp->snd_cwnd_cnt >= w) {
Neal Cardwell814d4882015-01-28 20:01:36 -0500418 u32 delta = tp->snd_cwnd_cnt / w;
419
420 tp->snd_cwnd_cnt -= delta * w;
421 tp->snd_cwnd += delta;
Ilpo Järvinen758ce5c2009-02-28 04:44:37 +0000422 }
Neal Cardwell814d4882015-01-28 20:01:36 -0500423 tp->snd_cwnd = min(tp->snd_cwnd, tp->snd_cwnd_clamp);
Ilpo Järvinen758ce5c2009-02-28 04:44:37 +0000424}
425EXPORT_SYMBOL_GPL(tcp_cong_avoid_ai);
426
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700427/*
428 * TCP Reno congestion control
429 * This is special case used for fallback as well.
430 */
431/* This is Jacobson's slow start and congestion avoidance.
432 * SIGCOMM '88, p. 328.
433 */
Eric Dumazet24901552014-05-02 21:18:05 -0700434void tcp_reno_cong_avoid(struct sock *sk, u32 ack, u32 acked)
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700435{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300436 struct tcp_sock *tp = tcp_sk(sk);
437
Eric Dumazet24901552014-05-02 21:18:05 -0700438 if (!tcp_is_cwnd_limited(sk))
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700439 return;
440
Stephen Hemminger7faffa12005-11-10 17:07:24 -0800441 /* In "safe" area, increase. */
Yuchung Cheng071d5082015-07-09 13:16:29 -0700442 if (tcp_in_slow_start(tp)) {
Neal Cardwellc22bdca2015-01-28 20:01:37 -0500443 acked = tcp_slow_start(tp, acked);
444 if (!acked)
445 return;
446 }
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900447 /* In dangerous area, increase slowly. */
Neal Cardwellc22bdca2015-01-28 20:01:37 -0500448 tcp_cong_avoid_ai(tp, tp->snd_cwnd, acked);
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700449}
450EXPORT_SYMBOL_GPL(tcp_reno_cong_avoid);
451
452/* Slow start threshold is half the congestion window (min 2) */
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300453u32 tcp_reno_ssthresh(struct sock *sk)
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700454{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300455 const struct tcp_sock *tp = tcp_sk(sk);
stephen hemminger688d1942014-08-29 23:32:05 -0700456
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700457 return max(tp->snd_cwnd >> 1U, 2U);
458}
459EXPORT_SYMBOL_GPL(tcp_reno_ssthresh);
460
Florian Westphale9799182016-11-21 14:18:38 +0100461u32 tcp_reno_undo_cwnd(struct sock *sk)
462{
463 const struct tcp_sock *tp = tcp_sk(sk);
464
Yuchung Cheng4faf7832017-08-03 20:38:51 -0700465 return max(tp->snd_cwnd, tp->prior_cwnd);
Florian Westphale9799182016-11-21 14:18:38 +0100466}
467EXPORT_SYMBOL_GPL(tcp_reno_undo_cwnd);
468
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700469struct tcp_congestion_ops tcp_reno = {
Stephen Hemminger164891a2007-04-23 22:26:16 -0700470 .flags = TCP_CONG_NON_RESTRICTED,
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700471 .name = "reno",
472 .owner = THIS_MODULE,
473 .ssthresh = tcp_reno_ssthresh,
474 .cong_avoid = tcp_reno_cong_avoid,
Florian Westphale9799182016-11-21 14:18:38 +0100475 .undo_cwnd = tcp_reno_undo_cwnd,
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700476};