Thomas Gleixner | 457c899 | 2019-05-19 13:08:55 +0100 | [diff] [blame^] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 2 | /* |
Fabian Frederick | b92022f | 2014-11-04 20:25:38 +0100 | [diff] [blame] | 3 | * Pluggable TCP congestion control support and newReno |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 4 | * congestion control. |
Masanari Iida | 02582e9 | 2012-08-22 19:11:26 +0900 | [diff] [blame] | 5 | * Based on ideas from I/O scheduler support and Web100. |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 6 | * |
| 7 | * Copyright (C) 2005 Stephen Hemminger <shemminger@osdl.org> |
| 8 | */ |
| 9 | |
Joe Perches | afd46503 | 2012-03-12 07:03:32 +0000 | [diff] [blame] | 10 | #define pr_fmt(fmt) "TCP: " fmt |
| 11 | |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 12 | #include <linux/module.h> |
| 13 | #include <linux/mm.h> |
| 14 | #include <linux/types.h> |
| 15 | #include <linux/list.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 16 | #include <linux/gfp.h> |
Daniel Borkmann | c5c6a8a | 2015-01-05 23:57:46 +0100 | [diff] [blame] | 17 | #include <linux/jhash.h> |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 18 | #include <net/tcp.h> |
| 19 | |
| 20 | static DEFINE_SPINLOCK(tcp_cong_list_lock); |
| 21 | static LIST_HEAD(tcp_cong_list); |
| 22 | |
| 23 | /* Simple linear search, don't expect many entries! */ |
| 24 | static struct tcp_congestion_ops *tcp_ca_find(const char *name) |
| 25 | { |
| 26 | struct tcp_congestion_ops *e; |
| 27 | |
Stephen Hemminger | 5f8ef48 | 2005-06-23 20:37:36 -0700 | [diff] [blame] | 28 | list_for_each_entry_rcu(e, &tcp_cong_list, list) { |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 29 | if (strcmp(e->name, name) == 0) |
| 30 | return e; |
| 31 | } |
| 32 | |
| 33 | return NULL; |
| 34 | } |
| 35 | |
Daniel Borkmann | c5c6a8a | 2015-01-05 23:57:46 +0100 | [diff] [blame] | 36 | /* Must be called with rcu lock held */ |
Stephen Hemminger | 6670e15 | 2017-11-14 08:25:49 -0800 | [diff] [blame] | 37 | static struct tcp_congestion_ops *tcp_ca_find_autoload(struct net *net, |
| 38 | const char *name) |
Daniel Borkmann | c5c6a8a | 2015-01-05 23:57:46 +0100 | [diff] [blame] | 39 | { |
Stephen Hemminger | 6670e15 | 2017-11-14 08:25:49 -0800 | [diff] [blame] | 40 | struct tcp_congestion_ops *ca = tcp_ca_find(name); |
| 41 | |
Daniel Borkmann | c5c6a8a | 2015-01-05 23:57:46 +0100 | [diff] [blame] | 42 | #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. */ |
| 54 | struct 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 Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 66 | /* |
Robert P. J. Day | d08df60 | 2007-02-17 19:07:33 +0100 | [diff] [blame] | 67 | * Attach new congestion control algorithm to the list |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 68 | * of available options. |
| 69 | */ |
| 70 | int tcp_register_congestion_control(struct tcp_congestion_ops *ca) |
| 71 | { |
| 72 | int ret = 0; |
| 73 | |
Florian Westphal | e979918 | 2016-11-21 14:18:38 +0100 | [diff] [blame] | 74 | /* all algorithms must implement these */ |
| 75 | if (!ca->ssthresh || !ca->undo_cwnd || |
| 76 | !(ca->cong_avoid || ca->cong_control)) { |
Joe Perches | afd46503 | 2012-03-12 07:03:32 +0000 | [diff] [blame] | 77 | pr_err("%s does not implement required ops\n", ca->name); |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 78 | return -EINVAL; |
| 79 | } |
| 80 | |
Daniel Borkmann | c5c6a8a | 2015-01-05 23:57:46 +0100 | [diff] [blame] | 81 | ca->key = jhash(ca->name, sizeof(ca->name), strlen(ca->name)); |
| 82 | |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 83 | spin_lock(&tcp_cong_list_lock); |
Daniel Borkmann | c5c6a8a | 2015-01-05 23:57:46 +0100 | [diff] [blame] | 84 | 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 Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 87 | ret = -EEXIST; |
| 88 | } else { |
Stephen Hemminger | 3d2573f | 2006-09-24 20:11:58 -0700 | [diff] [blame] | 89 | list_add_tail_rcu(&ca->list, &tcp_cong_list); |
stephen hemminger | db2855a | 2015-02-16 09:38:13 -0500 | [diff] [blame] | 90 | pr_debug("%s registered\n", ca->name); |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 91 | } |
| 92 | spin_unlock(&tcp_cong_list_lock); |
| 93 | |
| 94 | return ret; |
| 95 | } |
| 96 | EXPORT_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 | */ |
| 104 | void 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 Borkmann | c5c6a8a | 2015-01-05 23:57:46 +0100 | [diff] [blame] | 109 | |
| 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 Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 118 | } |
| 119 | EXPORT_SYMBOL_GPL(tcp_unregister_congestion_control); |
| 120 | |
Stephen Hemminger | 6670e15 | 2017-11-14 08:25:49 -0800 | [diff] [blame] | 121 | u32 tcp_ca_get_key_by_name(struct net *net, const char *name, bool *ecn_ca) |
Daniel Borkmann | c5c6a8a | 2015-01-05 23:57:46 +0100 | [diff] [blame] | 122 | { |
| 123 | const struct tcp_congestion_ops *ca; |
Daniel Borkmann | c3a8d94 | 2015-08-31 15:58:47 +0200 | [diff] [blame] | 124 | u32 key = TCP_CA_UNSPEC; |
Daniel Borkmann | c5c6a8a | 2015-01-05 23:57:46 +0100 | [diff] [blame] | 125 | |
| 126 | might_sleep(); |
| 127 | |
| 128 | rcu_read_lock(); |
Stephen Hemminger | 6670e15 | 2017-11-14 08:25:49 -0800 | [diff] [blame] | 129 | ca = tcp_ca_find_autoload(net, name); |
Daniel Borkmann | c3a8d94 | 2015-08-31 15:58:47 +0200 | [diff] [blame] | 130 | if (ca) { |
| 131 | key = ca->key; |
| 132 | *ecn_ca = ca->flags & TCP_CONG_NEEDS_ECN; |
| 133 | } |
Daniel Borkmann | c5c6a8a | 2015-01-05 23:57:46 +0100 | [diff] [blame] | 134 | rcu_read_unlock(); |
| 135 | |
| 136 | return key; |
| 137 | } |
| 138 | EXPORT_SYMBOL_GPL(tcp_ca_get_key_by_name); |
| 139 | |
| 140 | char *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 | } |
| 154 | EXPORT_SYMBOL_GPL(tcp_ca_get_name_by_key); |
| 155 | |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 156 | /* Assign choice of congestion control. */ |
Florian Westphal | 55d8694 | 2014-09-26 22:37:32 +0200 | [diff] [blame] | 157 | void tcp_assign_congestion_control(struct sock *sk) |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 158 | { |
Stephen Hemminger | 6670e15 | 2017-11-14 08:25:49 -0800 | [diff] [blame] | 159 | struct net *net = sock_net(sk); |
Arnaldo Carvalho de Melo | 6687e98 | 2005-08-10 04:03:31 -0300 | [diff] [blame] | 160 | struct inet_connection_sock *icsk = inet_csk(sk); |
Stephen Hemminger | 6670e15 | 2017-11-14 08:25:49 -0800 | [diff] [blame] | 161 | const struct tcp_congestion_ops *ca; |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 162 | |
Florian Westphal | 55d8694 | 2014-09-26 22:37:32 +0200 | [diff] [blame] | 163 | rcu_read_lock(); |
Stephen Hemminger | 6670e15 | 2017-11-14 08:25:49 -0800 | [diff] [blame] | 164 | 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 Westphal | 55d8694 | 2014-09-26 22:37:32 +0200 | [diff] [blame] | 168 | rcu_read_unlock(); |
| 169 | |
Stephen Hemminger | 6670e15 | 2017-11-14 08:25:49 -0800 | [diff] [blame] | 170 | memset(icsk->icsk_ca_priv, 0, sizeof(icsk->icsk_ca_priv)); |
Eric Dumazet | 6ac705b | 2015-09-25 07:39:18 -0700 | [diff] [blame] | 171 | if (ca->flags & TCP_CONG_NEEDS_ECN) |
| 172 | INET_ECN_xmit(sk); |
| 173 | else |
| 174 | INET_ECN_dontxmit(sk); |
Florian Westphal | 55d8694 | 2014-09-26 22:37:32 +0200 | [diff] [blame] | 175 | } |
| 176 | |
| 177 | void tcp_init_congestion_control(struct sock *sk) |
| 178 | { |
| 179 | const struct inet_connection_sock *icsk = inet_csk(sk); |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 180 | |
Yuchung Cheng | 44abafc | 2017-05-31 11:21:27 -0700 | [diff] [blame] | 181 | tcp_sk(sk)->prior_ssthresh = 0; |
Arnaldo Carvalho de Melo | 6687e98 | 2005-08-10 04:03:31 -0300 | [diff] [blame] | 182 | if (icsk->icsk_ca_ops->init) |
| 183 | icsk->icsk_ca_ops->init(sk); |
Eric Dumazet | 6ac705b | 2015-09-25 07:39:18 -0700 | [diff] [blame] | 184 | if (tcp_ca_needs_ecn(sk)) |
| 185 | INET_ECN_xmit(sk); |
| 186 | else |
| 187 | INET_ECN_dontxmit(sk); |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 188 | } |
| 189 | |
Sabrina Dubroca | ebfa00c | 2017-08-25 13:10:12 +0200 | [diff] [blame] | 190 | static void tcp_reinit_congestion_control(struct sock *sk, |
| 191 | const struct tcp_congestion_ops *ca) |
Daniel Borkmann | 29ba4fff | 2015-01-05 23:57:45 +0100 | [diff] [blame] | 192 | { |
| 193 | struct inet_connection_sock *icsk = inet_csk(sk); |
| 194 | |
| 195 | tcp_cleanup_congestion_control(sk); |
| 196 | icsk->icsk_ca_ops = ca; |
Neal Cardwell | 9f95041 | 2015-05-29 13:47:07 -0400 | [diff] [blame] | 197 | icsk->icsk_ca_setsockopt = 1; |
Wei Wang | c120144 | 2017-04-25 17:38:02 -0700 | [diff] [blame] | 198 | memset(icsk->icsk_ca_priv, 0, sizeof(icsk->icsk_ca_priv)); |
Daniel Borkmann | 29ba4fff | 2015-01-05 23:57:45 +0100 | [diff] [blame] | 199 | |
Wei Wang | c120144 | 2017-04-25 17:38:02 -0700 | [diff] [blame] | 200 | if (sk->sk_state != TCP_CLOSE) |
Eric Dumazet | 6ac705b | 2015-09-25 07:39:18 -0700 | [diff] [blame] | 201 | tcp_init_congestion_control(sk); |
Daniel Borkmann | 29ba4fff | 2015-01-05 23:57:45 +0100 | [diff] [blame] | 202 | } |
| 203 | |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 204 | /* Manage refcounts on socket close. */ |
Arnaldo Carvalho de Melo | 6687e98 | 2005-08-10 04:03:31 -0300 | [diff] [blame] | 205 | void tcp_cleanup_congestion_control(struct sock *sk) |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 206 | { |
Arnaldo Carvalho de Melo | 6687e98 | 2005-08-10 04:03:31 -0300 | [diff] [blame] | 207 | 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 Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 212 | } |
| 213 | |
| 214 | /* Used by sysctl to change default congestion control */ |
Stephen Hemminger | 6670e15 | 2017-11-14 08:25:49 -0800 | [diff] [blame] | 215 | int tcp_set_default_congestion_control(struct net *net, const char *name) |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 216 | { |
| 217 | struct tcp_congestion_ops *ca; |
Stephen Hemminger | 6670e15 | 2017-11-14 08:25:49 -0800 | [diff] [blame] | 218 | const struct tcp_congestion_ops *prev; |
| 219 | int ret; |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 220 | |
Stephen Hemminger | 6670e15 | 2017-11-14 08:25:49 -0800 | [diff] [blame] | 221 | 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 Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 231 | |
Stephen Hemminger | 6670e15 | 2017-11-14 08:25:49 -0800 | [diff] [blame] | 232 | ca->flags |= TCP_CONG_NON_RESTRICTED; |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 233 | ret = 0; |
| 234 | } |
Stephen Hemminger | 6670e15 | 2017-11-14 08:25:49 -0800 | [diff] [blame] | 235 | rcu_read_unlock(); |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 236 | |
| 237 | return ret; |
| 238 | } |
| 239 | |
Stephen Hemminger | b1736a7 | 2006-10-31 17:31:33 -0800 | [diff] [blame] | 240 | /* Set default value from kernel configuration at bootup */ |
| 241 | static int __init tcp_congestion_default(void) |
| 242 | { |
Stephen Hemminger | 6670e15 | 2017-11-14 08:25:49 -0800 | [diff] [blame] | 243 | return tcp_set_default_congestion_control(&init_net, |
| 244 | CONFIG_DEFAULT_TCP_CONG); |
Stephen Hemminger | b1736a7 | 2006-10-31 17:31:33 -0800 | [diff] [blame] | 245 | } |
| 246 | late_initcall(tcp_congestion_default); |
| 247 | |
Stephen Hemminger | 3ff825b | 2006-11-09 16:32:06 -0800 | [diff] [blame] | 248 | /* Build string with list of available congestion control values */ |
| 249 | void 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 Hemminger | 3ff825b | 2006-11-09 16:32:06 -0800 | [diff] [blame] | 259 | } |
| 260 | rcu_read_unlock(); |
| 261 | } |
| 262 | |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 263 | /* Get current default congestion control */ |
Stephen Hemminger | 6670e15 | 2017-11-14 08:25:49 -0800 | [diff] [blame] | 264 | void tcp_get_default_congestion_control(struct net *net, char *name) |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 265 | { |
Stephen Hemminger | 6670e15 | 2017-11-14 08:25:49 -0800 | [diff] [blame] | 266 | const struct tcp_congestion_ops *ca; |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 267 | |
| 268 | rcu_read_lock(); |
Stephen Hemminger | 6670e15 | 2017-11-14 08:25:49 -0800 | [diff] [blame] | 269 | ca = rcu_dereference(net->ipv4.tcp_congestion_control); |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 270 | strncpy(name, ca->name, TCP_CA_NAME_MAX); |
| 271 | rcu_read_unlock(); |
| 272 | } |
| 273 | |
Stephen Hemminger | ce7bc3b | 2006-11-09 16:35:15 -0800 | [diff] [blame] | 274 | /* Built list of non-restricted congestion control values */ |
| 275 | void 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 Hemminger | 164891a | 2007-04-23 22:26:16 -0700 | [diff] [blame] | 283 | if (!(ca->flags & TCP_CONG_NON_RESTRICTED)) |
Stephen Hemminger | ce7bc3b | 2006-11-09 16:35:15 -0800 | [diff] [blame] | 284 | continue; |
| 285 | offs += snprintf(buf + offs, maxlen - offs, |
| 286 | "%s%s", |
| 287 | offs == 0 ? "" : " ", ca->name); |
Stephen Hemminger | ce7bc3b | 2006-11-09 16:35:15 -0800 | [diff] [blame] | 288 | } |
| 289 | rcu_read_unlock(); |
| 290 | } |
| 291 | |
| 292 | /* Change list of non-restricted congestion control */ |
| 293 | int tcp_set_allowed_congestion_control(char *val) |
| 294 | { |
| 295 | struct tcp_congestion_ops *ca; |
Julia Lawall | c34186e | 2010-08-27 19:31:56 -0700 | [diff] [blame] | 296 | char *saved_clone, *clone, *name; |
Stephen Hemminger | ce7bc3b | 2006-11-09 16:35:15 -0800 | [diff] [blame] | 297 | int ret = 0; |
| 298 | |
Julia Lawall | c34186e | 2010-08-27 19:31:56 -0700 | [diff] [blame] | 299 | saved_clone = clone = kstrdup(val, GFP_USER); |
Stephen Hemminger | ce7bc3b | 2006-11-09 16:35:15 -0800 | [diff] [blame] | 300 | 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 Hemminger | 164891a | 2007-04-23 22:26:16 -0700 | [diff] [blame] | 313 | /* pass 2 clear old values */ |
Stephen Hemminger | ce7bc3b | 2006-11-09 16:35:15 -0800 | [diff] [blame] | 314 | list_for_each_entry_rcu(ca, &tcp_cong_list, list) |
Stephen Hemminger | 164891a | 2007-04-23 22:26:16 -0700 | [diff] [blame] | 315 | ca->flags &= ~TCP_CONG_NON_RESTRICTED; |
Stephen Hemminger | ce7bc3b | 2006-11-09 16:35:15 -0800 | [diff] [blame] | 316 | |
| 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 Hemminger | 164891a | 2007-04-23 22:26:16 -0700 | [diff] [blame] | 322 | ca->flags |= TCP_CONG_NON_RESTRICTED; |
Stephen Hemminger | ce7bc3b | 2006-11-09 16:35:15 -0800 | [diff] [blame] | 323 | } |
| 324 | out: |
| 325 | spin_unlock(&tcp_cong_list_lock); |
Julia Lawall | c34186e | 2010-08-27 19:31:56 -0700 | [diff] [blame] | 326 | kfree(saved_clone); |
Stephen Hemminger | ce7bc3b | 2006-11-09 16:35:15 -0800 | [diff] [blame] | 327 | |
| 328 | return ret; |
| 329 | } |
| 330 | |
Lawrence Brakmo | 91b5b21 | 2017-06-30 20:02:49 -0700 | [diff] [blame] | 331 | /* 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 Dubroca | ebfa00c | 2017-08-25 13:10:12 +0200 | [diff] [blame] | 336 | int tcp_set_congestion_control(struct sock *sk, const char *name, bool load, bool reinit) |
Stephen Hemminger | 5f8ef48 | 2005-06-23 20:37:36 -0700 | [diff] [blame] | 337 | { |
Arnaldo Carvalho de Melo | 6687e98 | 2005-08-10 04:03:31 -0300 | [diff] [blame] | 338 | struct inet_connection_sock *icsk = inet_csk(sk); |
Daniel Borkmann | c5c6a8a | 2015-01-05 23:57:46 +0100 | [diff] [blame] | 339 | const struct tcp_congestion_ops *ca; |
Stephen Hemminger | 5f8ef48 | 2005-06-23 20:37:36 -0700 | [diff] [blame] | 340 | int err = 0; |
| 341 | |
Daniel Borkmann | c5c6a8a | 2015-01-05 23:57:46 +0100 | [diff] [blame] | 342 | if (icsk->icsk_ca_dst_locked) |
| 343 | return -EPERM; |
Stephen Hemminger | 4d4d3d1 | 2007-04-23 22:32:11 -0700 | [diff] [blame] | 344 | |
Daniel Borkmann | c5c6a8a | 2015-01-05 23:57:46 +0100 | [diff] [blame] | 345 | rcu_read_lock(); |
Lawrence Brakmo | 91b5b21 | 2017-06-30 20:02:49 -0700 | [diff] [blame] | 346 | if (!load) |
| 347 | ca = tcp_ca_find(name); |
| 348 | else |
Stephen Hemminger | 6670e15 | 2017-11-14 08:25:49 -0800 | [diff] [blame] | 349 | ca = tcp_ca_find_autoload(sock_net(sk), name); |
| 350 | |
Daniel Borkmann | c5c6a8a | 2015-01-05 23:57:46 +0100 | [diff] [blame] | 351 | /* No change asking for existing value */ |
Neal Cardwell | 9f95041 | 2015-05-29 13:47:07 -0400 | [diff] [blame] | 352 | if (ca == icsk->icsk_ca_ops) { |
| 353 | icsk->icsk_ca_setsockopt = 1; |
Stephen Hemminger | 5f8ef48 | 2005-06-23 20:37:36 -0700 | [diff] [blame] | 354 | goto out; |
Neal Cardwell | 9f95041 | 2015-05-29 13:47:07 -0400 | [diff] [blame] | 355 | } |
Stephen Hemminger | 6670e15 | 2017-11-14 08:25:49 -0800 | [diff] [blame] | 356 | |
Lawrence Brakmo | 91b5b21 | 2017-06-30 20:02:49 -0700 | [diff] [blame] | 357 | if (!ca) { |
Stephen Hemminger | 5f8ef48 | 2005-06-23 20:37:36 -0700 | [diff] [blame] | 358 | err = -ENOENT; |
Lawrence Brakmo | 91b5b21 | 2017-06-30 20:02:49 -0700 | [diff] [blame] | 359 | } else if (!load) { |
Sabrina Dubroca | ebfa00c | 2017-08-25 13:10:12 +0200 | [diff] [blame] | 360 | 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 Brakmo | 91b5b21 | 2017-06-30 20:02:49 -0700 | [diff] [blame] | 370 | err = -EBUSY; |
Sabrina Dubroca | ebfa00c | 2017-08-25 13:10:12 +0200 | [diff] [blame] | 371 | } |
Lawrence Brakmo | 91b5b21 | 2017-06-30 20:02:49 -0700 | [diff] [blame] | 372 | } else if (!((ca->flags & TCP_CONG_NON_RESTRICTED) || |
| 373 | ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN))) { |
Stephen Hemminger | ce7bc3b | 2006-11-09 16:35:15 -0800 | [diff] [blame] | 374 | err = -EPERM; |
Lawrence Brakmo | 91b5b21 | 2017-06-30 20:02:49 -0700 | [diff] [blame] | 375 | } else if (!try_module_get(ca->owner)) { |
Stephen Hemminger | 5f8ef48 | 2005-06-23 20:37:36 -0700 | [diff] [blame] | 376 | err = -EBUSY; |
Lawrence Brakmo | 91b5b21 | 2017-06-30 20:02:49 -0700 | [diff] [blame] | 377 | } else { |
Daniel Borkmann | 29ba4fff | 2015-01-05 23:57:45 +0100 | [diff] [blame] | 378 | tcp_reinit_congestion_control(sk, ca); |
Lawrence Brakmo | 91b5b21 | 2017-06-30 20:02:49 -0700 | [diff] [blame] | 379 | } |
Stephen Hemminger | 5f8ef48 | 2005-06-23 20:37:36 -0700 | [diff] [blame] | 380 | out: |
| 381 | rcu_read_unlock(); |
| 382 | return err; |
| 383 | } |
| 384 | |
Yuchung Cheng | 9f9843a7 | 2013-10-31 11:07:31 -0700 | [diff] [blame] | 385 | /* 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 Hemminger | 40efc6f | 2006-01-03 16:03:49 -0800 | [diff] [blame] | 393 | */ |
Neal Cardwell | e73ebb0 | 2015-01-28 20:01:35 -0500 | [diff] [blame] | 394 | u32 tcp_slow_start(struct tcp_sock *tp, u32 acked) |
Stephen Hemminger | 40efc6f | 2006-01-03 16:03:49 -0800 | [diff] [blame] | 395 | { |
Yuchung Cheng | 7617400 | 2015-07-09 13:16:30 -0700 | [diff] [blame] | 396 | u32 cwnd = min(tp->snd_cwnd + acked, tp->snd_ssthresh); |
Eric Dumazet | 973ec44 | 2013-02-02 05:23:16 +0000 | [diff] [blame] | 397 | |
Neal Cardwell | e73ebb0 | 2015-01-28 20:01:35 -0500 | [diff] [blame] | 398 | acked -= cwnd - tp->snd_cwnd; |
Yuchung Cheng | 9f9843a7 | 2013-10-31 11:07:31 -0700 | [diff] [blame] | 399 | tp->snd_cwnd = min(cwnd, tp->snd_cwnd_clamp); |
Neal Cardwell | e73ebb0 | 2015-01-28 20:01:35 -0500 | [diff] [blame] | 400 | |
| 401 | return acked; |
Stephen Hemminger | 40efc6f | 2006-01-03 16:03:49 -0800 | [diff] [blame] | 402 | } |
| 403 | EXPORT_SYMBOL_GPL(tcp_slow_start); |
| 404 | |
Neal Cardwell | 814d488 | 2015-01-28 20:01:36 -0500 | [diff] [blame] | 405 | /* In theory this is tp->snd_cwnd += 1 / tp->snd_cwnd (or alternative w), |
| 406 | * for every packet that was ACKed. |
| 407 | */ |
Neal Cardwell | e73ebb0 | 2015-01-28 20:01:35 -0500 | [diff] [blame] | 408 | void tcp_cong_avoid_ai(struct tcp_sock *tp, u32 w, u32 acked) |
Ilpo Järvinen | 758ce5c | 2009-02-28 04:44:37 +0000 | [diff] [blame] | 409 | { |
Neal Cardwell | 9949afa | 2015-03-10 17:17:03 -0400 | [diff] [blame] | 410 | /* 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 Cardwell | 814d488 | 2015-01-28 20:01:36 -0500 | [diff] [blame] | 416 | tp->snd_cwnd_cnt += acked; |
Ilpo Järvinen | 758ce5c | 2009-02-28 04:44:37 +0000 | [diff] [blame] | 417 | if (tp->snd_cwnd_cnt >= w) { |
Neal Cardwell | 814d488 | 2015-01-28 20:01:36 -0500 | [diff] [blame] | 418 | u32 delta = tp->snd_cwnd_cnt / w; |
| 419 | |
| 420 | tp->snd_cwnd_cnt -= delta * w; |
| 421 | tp->snd_cwnd += delta; |
Ilpo Järvinen | 758ce5c | 2009-02-28 04:44:37 +0000 | [diff] [blame] | 422 | } |
Neal Cardwell | 814d488 | 2015-01-28 20:01:36 -0500 | [diff] [blame] | 423 | tp->snd_cwnd = min(tp->snd_cwnd, tp->snd_cwnd_clamp); |
Ilpo Järvinen | 758ce5c | 2009-02-28 04:44:37 +0000 | [diff] [blame] | 424 | } |
| 425 | EXPORT_SYMBOL_GPL(tcp_cong_avoid_ai); |
| 426 | |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 427 | /* |
| 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 Dumazet | 2490155 | 2014-05-02 21:18:05 -0700 | [diff] [blame] | 434 | void tcp_reno_cong_avoid(struct sock *sk, u32 ack, u32 acked) |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 435 | { |
Arnaldo Carvalho de Melo | 6687e98 | 2005-08-10 04:03:31 -0300 | [diff] [blame] | 436 | struct tcp_sock *tp = tcp_sk(sk); |
| 437 | |
Eric Dumazet | 2490155 | 2014-05-02 21:18:05 -0700 | [diff] [blame] | 438 | if (!tcp_is_cwnd_limited(sk)) |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 439 | return; |
| 440 | |
Stephen Hemminger | 7faffa1 | 2005-11-10 17:07:24 -0800 | [diff] [blame] | 441 | /* In "safe" area, increase. */ |
Yuchung Cheng | 071d508 | 2015-07-09 13:16:29 -0700 | [diff] [blame] | 442 | if (tcp_in_slow_start(tp)) { |
Neal Cardwell | c22bdca | 2015-01-28 20:01:37 -0500 | [diff] [blame] | 443 | acked = tcp_slow_start(tp, acked); |
| 444 | if (!acked) |
| 445 | return; |
| 446 | } |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 447 | /* In dangerous area, increase slowly. */ |
Neal Cardwell | c22bdca | 2015-01-28 20:01:37 -0500 | [diff] [blame] | 448 | tcp_cong_avoid_ai(tp, tp->snd_cwnd, acked); |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 449 | } |
| 450 | EXPORT_SYMBOL_GPL(tcp_reno_cong_avoid); |
| 451 | |
| 452 | /* Slow start threshold is half the congestion window (min 2) */ |
Arnaldo Carvalho de Melo | 6687e98 | 2005-08-10 04:03:31 -0300 | [diff] [blame] | 453 | u32 tcp_reno_ssthresh(struct sock *sk) |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 454 | { |
Arnaldo Carvalho de Melo | 6687e98 | 2005-08-10 04:03:31 -0300 | [diff] [blame] | 455 | const struct tcp_sock *tp = tcp_sk(sk); |
stephen hemminger | 688d194 | 2014-08-29 23:32:05 -0700 | [diff] [blame] | 456 | |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 457 | return max(tp->snd_cwnd >> 1U, 2U); |
| 458 | } |
| 459 | EXPORT_SYMBOL_GPL(tcp_reno_ssthresh); |
| 460 | |
Florian Westphal | e979918 | 2016-11-21 14:18:38 +0100 | [diff] [blame] | 461 | u32 tcp_reno_undo_cwnd(struct sock *sk) |
| 462 | { |
| 463 | const struct tcp_sock *tp = tcp_sk(sk); |
| 464 | |
Yuchung Cheng | 4faf783 | 2017-08-03 20:38:51 -0700 | [diff] [blame] | 465 | return max(tp->snd_cwnd, tp->prior_cwnd); |
Florian Westphal | e979918 | 2016-11-21 14:18:38 +0100 | [diff] [blame] | 466 | } |
| 467 | EXPORT_SYMBOL_GPL(tcp_reno_undo_cwnd); |
| 468 | |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 469 | struct tcp_congestion_ops tcp_reno = { |
Stephen Hemminger | 164891a | 2007-04-23 22:26:16 -0700 | [diff] [blame] | 470 | .flags = TCP_CONG_NON_RESTRICTED, |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 471 | .name = "reno", |
| 472 | .owner = THIS_MODULE, |
| 473 | .ssthresh = tcp_reno_ssthresh, |
| 474 | .cong_avoid = tcp_reno_cong_avoid, |
Florian Westphal | e979918 | 2016-11-21 14:18:38 +0100 | [diff] [blame] | 475 | .undo_cwnd = tcp_reno_undo_cwnd, |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 476 | }; |