blob: 38f2f8aa4ceba3ecbaefc21581f2668aea891a03 [file] [log] [blame]
Stephen Hemminger317a76f2005-06-23 12:19:55 -07001/*
Fabian Frederickb92022f2014-11-04 20:25:38 +01002 * Pluggable TCP congestion control support and newReno
Stephen Hemminger317a76f2005-06-23 12:19:55 -07003 * congestion control.
Masanari Iida02582e92012-08-22 19:11:26 +09004 * Based on ideas from I/O scheduler support and Web100.
Stephen Hemminger317a76f2005-06-23 12:19:55 -07005 *
6 * Copyright (C) 2005 Stephen Hemminger <shemminger@osdl.org>
7 */
8
Joe Perchesafd465032012-03-12 07:03:32 +00009#define pr_fmt(fmt) "TCP: " fmt
10
Stephen Hemminger317a76f2005-06-23 12:19:55 -070011#include <linux/module.h>
12#include <linux/mm.h>
13#include <linux/types.h>
14#include <linux/list.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/gfp.h>
Stephen Hemminger317a76f2005-06-23 12:19:55 -070016#include <net/tcp.h>
17
18static DEFINE_SPINLOCK(tcp_cong_list_lock);
19static LIST_HEAD(tcp_cong_list);
20
21/* Simple linear search, don't expect many entries! */
22static struct tcp_congestion_ops *tcp_ca_find(const char *name)
23{
24 struct tcp_congestion_ops *e;
25
Stephen Hemminger5f8ef482005-06-23 20:37:36 -070026 list_for_each_entry_rcu(e, &tcp_cong_list, list) {
Stephen Hemminger317a76f2005-06-23 12:19:55 -070027 if (strcmp(e->name, name) == 0)
28 return e;
29 }
30
31 return NULL;
32}
33
34/*
Robert P. J. Dayd08df602007-02-17 19:07:33 +010035 * Attach new congestion control algorithm to the list
Stephen Hemminger317a76f2005-06-23 12:19:55 -070036 * of available options.
37 */
38int tcp_register_congestion_control(struct tcp_congestion_ops *ca)
39{
40 int ret = 0;
41
42 /* all algorithms must implement ssthresh and cong_avoid ops */
Stephen Hemminger72dc5b92006-06-05 17:30:08 -070043 if (!ca->ssthresh || !ca->cong_avoid) {
Joe Perchesafd465032012-03-12 07:03:32 +000044 pr_err("%s does not implement required ops\n", ca->name);
Stephen Hemminger317a76f2005-06-23 12:19:55 -070045 return -EINVAL;
46 }
47
48 spin_lock(&tcp_cong_list_lock);
49 if (tcp_ca_find(ca->name)) {
Joe Perchesafd465032012-03-12 07:03:32 +000050 pr_notice("%s already registered\n", ca->name);
Stephen Hemminger317a76f2005-06-23 12:19:55 -070051 ret = -EEXIST;
52 } else {
Stephen Hemminger3d2573f2006-09-24 20:11:58 -070053 list_add_tail_rcu(&ca->list, &tcp_cong_list);
Joe Perchesafd465032012-03-12 07:03:32 +000054 pr_info("%s registered\n", ca->name);
Stephen Hemminger317a76f2005-06-23 12:19:55 -070055 }
56 spin_unlock(&tcp_cong_list_lock);
57
58 return ret;
59}
60EXPORT_SYMBOL_GPL(tcp_register_congestion_control);
61
62/*
63 * Remove congestion control algorithm, called from
64 * the module's remove function. Module ref counts are used
65 * to ensure that this can't be done till all sockets using
66 * that method are closed.
67 */
68void tcp_unregister_congestion_control(struct tcp_congestion_ops *ca)
69{
70 spin_lock(&tcp_cong_list_lock);
71 list_del_rcu(&ca->list);
72 spin_unlock(&tcp_cong_list_lock);
73}
74EXPORT_SYMBOL_GPL(tcp_unregister_congestion_control);
75
76/* Assign choice of congestion control. */
Florian Westphal55d86942014-09-26 22:37:32 +020077void tcp_assign_congestion_control(struct sock *sk)
Stephen Hemminger317a76f2005-06-23 12:19:55 -070078{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -030079 struct inet_connection_sock *icsk = inet_csk(sk);
Stephen Hemminger317a76f2005-06-23 12:19:55 -070080 struct tcp_congestion_ops *ca;
81
Florian Westphal55d86942014-09-26 22:37:32 +020082 rcu_read_lock();
83 list_for_each_entry_rcu(ca, &tcp_cong_list, list) {
84 if (likely(try_module_get(ca->owner))) {
85 icsk->icsk_ca_ops = ca;
86 goto out;
Stephen Hemminger317a76f2005-06-23 12:19:55 -070087 }
Florian Westphal55d86942014-09-26 22:37:32 +020088 /* Fallback to next available. The last really
89 * guaranteed fallback is Reno from this list.
90 */
Stephen Hemminger317a76f2005-06-23 12:19:55 -070091 }
Florian Westphal55d86942014-09-26 22:37:32 +020092out:
93 rcu_read_unlock();
94
95 /* Clear out private data before diag gets it and
96 * the ca has not been initialized.
97 */
98 if (ca->get_info)
99 memset(icsk->icsk_ca_priv, 0, sizeof(icsk->icsk_ca_priv));
100}
101
102void tcp_init_congestion_control(struct sock *sk)
103{
104 const struct inet_connection_sock *icsk = inet_csk(sk);
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700105
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300106 if (icsk->icsk_ca_ops->init)
107 icsk->icsk_ca_ops->init(sk);
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700108}
109
Daniel Borkmann29ba4fff2015-01-05 23:57:45 +0100110static void tcp_reinit_congestion_control(struct sock *sk,
111 const struct tcp_congestion_ops *ca)
112{
113 struct inet_connection_sock *icsk = inet_csk(sk);
114
115 tcp_cleanup_congestion_control(sk);
116 icsk->icsk_ca_ops = ca;
117
118 if (sk->sk_state != TCP_CLOSE && icsk->icsk_ca_ops->init)
119 icsk->icsk_ca_ops->init(sk);
120}
121
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700122/* Manage refcounts on socket close. */
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300123void tcp_cleanup_congestion_control(struct sock *sk)
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700124{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300125 struct inet_connection_sock *icsk = inet_csk(sk);
126
127 if (icsk->icsk_ca_ops->release)
128 icsk->icsk_ca_ops->release(sk);
129 module_put(icsk->icsk_ca_ops->owner);
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700130}
131
132/* Used by sysctl to change default congestion control */
133int tcp_set_default_congestion_control(const char *name)
134{
135 struct tcp_congestion_ops *ca;
136 int ret = -ENOENT;
137
138 spin_lock(&tcp_cong_list_lock);
139 ca = tcp_ca_find(name);
Johannes Berg95a5afc2008-10-16 15:24:51 -0700140#ifdef CONFIG_MODULES
Eric Parisa8f80e82009-08-13 09:44:51 -0400141 if (!ca && capable(CAP_NET_ADMIN)) {
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700142 spin_unlock(&tcp_cong_list_lock);
143
144 request_module("tcp_%s", name);
145 spin_lock(&tcp_cong_list_lock);
146 ca = tcp_ca_find(name);
147 }
148#endif
149
150 if (ca) {
Stephen Hemminger164891a2007-04-23 22:26:16 -0700151 ca->flags |= TCP_CONG_NON_RESTRICTED; /* default is always allowed */
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700152 list_move(&ca->list, &tcp_cong_list);
153 ret = 0;
154 }
155 spin_unlock(&tcp_cong_list_lock);
156
157 return ret;
158}
159
Stephen Hemmingerb1736a72006-10-31 17:31:33 -0800160/* Set default value from kernel configuration at bootup */
161static int __init tcp_congestion_default(void)
162{
163 return tcp_set_default_congestion_control(CONFIG_DEFAULT_TCP_CONG);
164}
165late_initcall(tcp_congestion_default);
166
Stephen Hemminger3ff825b2006-11-09 16:32:06 -0800167/* Build string with list of available congestion control values */
168void tcp_get_available_congestion_control(char *buf, size_t maxlen)
169{
170 struct tcp_congestion_ops *ca;
171 size_t offs = 0;
172
173 rcu_read_lock();
174 list_for_each_entry_rcu(ca, &tcp_cong_list, list) {
175 offs += snprintf(buf + offs, maxlen - offs,
176 "%s%s",
177 offs == 0 ? "" : " ", ca->name);
Stephen Hemminger3ff825b2006-11-09 16:32:06 -0800178 }
179 rcu_read_unlock();
180}
181
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700182/* Get current default congestion control */
183void tcp_get_default_congestion_control(char *name)
184{
185 struct tcp_congestion_ops *ca;
186 /* We will always have reno... */
187 BUG_ON(list_empty(&tcp_cong_list));
188
189 rcu_read_lock();
190 ca = list_entry(tcp_cong_list.next, struct tcp_congestion_ops, list);
191 strncpy(name, ca->name, TCP_CA_NAME_MAX);
192 rcu_read_unlock();
193}
194
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800195/* Built list of non-restricted congestion control values */
196void tcp_get_allowed_congestion_control(char *buf, size_t maxlen)
197{
198 struct tcp_congestion_ops *ca;
199 size_t offs = 0;
200
201 *buf = '\0';
202 rcu_read_lock();
203 list_for_each_entry_rcu(ca, &tcp_cong_list, list) {
Stephen Hemminger164891a2007-04-23 22:26:16 -0700204 if (!(ca->flags & TCP_CONG_NON_RESTRICTED))
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800205 continue;
206 offs += snprintf(buf + offs, maxlen - offs,
207 "%s%s",
208 offs == 0 ? "" : " ", ca->name);
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800209 }
210 rcu_read_unlock();
211}
212
213/* Change list of non-restricted congestion control */
214int tcp_set_allowed_congestion_control(char *val)
215{
216 struct tcp_congestion_ops *ca;
Julia Lawallc34186e2010-08-27 19:31:56 -0700217 char *saved_clone, *clone, *name;
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800218 int ret = 0;
219
Julia Lawallc34186e2010-08-27 19:31:56 -0700220 saved_clone = clone = kstrdup(val, GFP_USER);
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800221 if (!clone)
222 return -ENOMEM;
223
224 spin_lock(&tcp_cong_list_lock);
225 /* pass 1 check for bad entries */
226 while ((name = strsep(&clone, " ")) && *name) {
227 ca = tcp_ca_find(name);
228 if (!ca) {
229 ret = -ENOENT;
230 goto out;
231 }
232 }
233
Stephen Hemminger164891a2007-04-23 22:26:16 -0700234 /* pass 2 clear old values */
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800235 list_for_each_entry_rcu(ca, &tcp_cong_list, list)
Stephen Hemminger164891a2007-04-23 22:26:16 -0700236 ca->flags &= ~TCP_CONG_NON_RESTRICTED;
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800237
238 /* pass 3 mark as allowed */
239 while ((name = strsep(&val, " ")) && *name) {
240 ca = tcp_ca_find(name);
241 WARN_ON(!ca);
242 if (ca)
Stephen Hemminger164891a2007-04-23 22:26:16 -0700243 ca->flags |= TCP_CONG_NON_RESTRICTED;
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800244 }
245out:
246 spin_unlock(&tcp_cong_list_lock);
Julia Lawallc34186e2010-08-27 19:31:56 -0700247 kfree(saved_clone);
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800248
249 return ret;
250}
251
Stephen Hemminger5f8ef482005-06-23 20:37:36 -0700252/* Change congestion control for socket */
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300253int tcp_set_congestion_control(struct sock *sk, const char *name)
Stephen Hemminger5f8ef482005-06-23 20:37:36 -0700254{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300255 struct inet_connection_sock *icsk = inet_csk(sk);
Stephen Hemminger5f8ef482005-06-23 20:37:36 -0700256 struct tcp_congestion_ops *ca;
257 int err = 0;
258
259 rcu_read_lock();
260 ca = tcp_ca_find(name);
Stephen Hemminger4d4d3d12007-04-23 22:32:11 -0700261
Stephen Hemminger35bfbc92006-11-09 16:36:36 -0800262 /* no change asking for existing value */
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300263 if (ca == icsk->icsk_ca_ops)
Stephen Hemminger5f8ef482005-06-23 20:37:36 -0700264 goto out;
265
Johannes Berg95a5afc2008-10-16 15:24:51 -0700266#ifdef CONFIG_MODULES
Stephen Hemminger35bfbc92006-11-09 16:36:36 -0800267 /* not found attempt to autoload module */
Eric Parisa8f80e82009-08-13 09:44:51 -0400268 if (!ca && capable(CAP_NET_ADMIN)) {
Stephen Hemminger35bfbc92006-11-09 16:36:36 -0800269 rcu_read_unlock();
270 request_module("tcp_%s", name);
271 rcu_read_lock();
272 ca = tcp_ca_find(name);
273 }
274#endif
Stephen Hemminger5f8ef482005-06-23 20:37:36 -0700275 if (!ca)
276 err = -ENOENT;
Eric W. Biederman52e804c2012-11-16 03:03:05 +0000277 else if (!((ca->flags & TCP_CONG_NON_RESTRICTED) ||
278 ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN)))
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800279 err = -EPERM;
Stephen Hemminger5f8ef482005-06-23 20:37:36 -0700280 else if (!try_module_get(ca->owner))
281 err = -EBUSY;
Daniel Borkmann29ba4fff2015-01-05 23:57:45 +0100282 else
283 tcp_reinit_congestion_control(sk, ca);
Stephen Hemminger5f8ef482005-06-23 20:37:36 -0700284 out:
285 rcu_read_unlock();
286 return err;
287}
288
Yuchung Cheng9f9843a72013-10-31 11:07:31 -0700289/* Slow start is used when congestion window is no greater than the slow start
290 * threshold. We base on RFC2581 and also handle stretch ACKs properly.
291 * We do not implement RFC3465 Appropriate Byte Counting (ABC) per se but
292 * something better;) a packet is only considered (s)acked in its entirety to
293 * defend the ACK attacks described in the RFC. Slow start processes a stretch
294 * ACK of degree N as if N acks of degree 1 are received back to back except
295 * ABC caps N to 2. Slow start exits when cwnd grows over ssthresh and
296 * returns the leftover acks to adjust cwnd in congestion avoidance mode.
Stephen Hemminger40efc6f2006-01-03 16:03:49 -0800297 */
Li RongQinga12a6012014-09-30 09:49:55 +0800298void tcp_slow_start(struct tcp_sock *tp, u32 acked)
Stephen Hemminger40efc6f2006-01-03 16:03:49 -0800299{
Yuchung Cheng9f9843a72013-10-31 11:07:31 -0700300 u32 cwnd = tp->snd_cwnd + acked;
Eric Dumazet973ec442013-02-02 05:23:16 +0000301
Yuchung Cheng9f9843a72013-10-31 11:07:31 -0700302 if (cwnd > tp->snd_ssthresh)
303 cwnd = tp->snd_ssthresh + 1;
Yuchung Cheng9f9843a72013-10-31 11:07:31 -0700304 tp->snd_cwnd = min(cwnd, tp->snd_cwnd_clamp);
Stephen Hemminger40efc6f2006-01-03 16:03:49 -0800305}
306EXPORT_SYMBOL_GPL(tcp_slow_start);
307
Ilpo Järvinen758ce5c2009-02-28 04:44:37 +0000308/* In theory this is tp->snd_cwnd += 1 / tp->snd_cwnd (or alternative w) */
309void tcp_cong_avoid_ai(struct tcp_sock *tp, u32 w)
310{
311 if (tp->snd_cwnd_cnt >= w) {
312 if (tp->snd_cwnd < tp->snd_cwnd_clamp)
313 tp->snd_cwnd++;
314 tp->snd_cwnd_cnt = 0;
315 } else {
316 tp->snd_cwnd_cnt++;
317 }
318}
319EXPORT_SYMBOL_GPL(tcp_cong_avoid_ai);
320
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700321/*
322 * TCP Reno congestion control
323 * This is special case used for fallback as well.
324 */
325/* This is Jacobson's slow start and congestion avoidance.
326 * SIGCOMM '88, p. 328.
327 */
Eric Dumazet24901552014-05-02 21:18:05 -0700328void tcp_reno_cong_avoid(struct sock *sk, u32 ack, u32 acked)
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700329{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300330 struct tcp_sock *tp = tcp_sk(sk);
331
Eric Dumazet24901552014-05-02 21:18:05 -0700332 if (!tcp_is_cwnd_limited(sk))
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700333 return;
334
Stephen Hemminger7faffa12005-11-10 17:07:24 -0800335 /* In "safe" area, increase. */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900336 if (tp->snd_cwnd <= tp->snd_ssthresh)
Yuchung Cheng9f9843a72013-10-31 11:07:31 -0700337 tcp_slow_start(tp, acked);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900338 /* In dangerous area, increase slowly. */
Stephen Hemmingerca2eb562013-02-05 07:25:17 +0000339 else
Ilpo Järvinen758ce5c2009-02-28 04:44:37 +0000340 tcp_cong_avoid_ai(tp, tp->snd_cwnd);
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700341}
342EXPORT_SYMBOL_GPL(tcp_reno_cong_avoid);
343
344/* Slow start threshold is half the congestion window (min 2) */
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300345u32 tcp_reno_ssthresh(struct sock *sk)
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700346{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300347 const struct tcp_sock *tp = tcp_sk(sk);
stephen hemminger688d1942014-08-29 23:32:05 -0700348
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700349 return max(tp->snd_cwnd >> 1U, 2U);
350}
351EXPORT_SYMBOL_GPL(tcp_reno_ssthresh);
352
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700353struct tcp_congestion_ops tcp_reno = {
Stephen Hemminger164891a2007-04-23 22:26:16 -0700354 .flags = TCP_CONG_NON_RESTRICTED,
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700355 .name = "reno",
356 .owner = THIS_MODULE,
357 .ssthresh = tcp_reno_ssthresh,
358 .cong_avoid = tcp_reno_cong_avoid,
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700359};