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! */ |
Martin KaFai Lau | 0baf26b | 2020-01-08 16:35:08 -0800 | [diff] [blame] | 24 | struct tcp_congestion_ops *tcp_ca_find(const char *name) |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 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); |
Martin KaFai Lau | 0baf26b | 2020-01-08 16:35:08 -0800 | [diff] [blame] | 165 | if (unlikely(!bpf_try_module_get(ca, ca->owner))) |
Stephen Hemminger | 6670e15 | 2017-11-14 08:25:49 -0800 | [diff] [blame] | 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 | { |
Neal Cardwell | 8919a9b | 2020-09-10 15:35:32 -0400 | [diff] [blame] | 179 | 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); |
Neal Cardwell | 8919a9b | 2020-09-10 15:35:32 -0400 | [diff] [blame] | 188 | icsk->icsk_ca_initialized = 1; |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 189 | } |
| 190 | |
Sabrina Dubroca | ebfa00c | 2017-08-25 13:10:12 +0200 | [diff] [blame] | 191 | static void tcp_reinit_congestion_control(struct sock *sk, |
| 192 | const struct tcp_congestion_ops *ca) |
Daniel Borkmann | 29ba4fff | 2015-01-05 23:57:45 +0100 | [diff] [blame] | 193 | { |
| 194 | struct inet_connection_sock *icsk = inet_csk(sk); |
| 195 | |
| 196 | tcp_cleanup_congestion_control(sk); |
| 197 | icsk->icsk_ca_ops = ca; |
Neal Cardwell | 9f95041 | 2015-05-29 13:47:07 -0400 | [diff] [blame] | 198 | icsk->icsk_ca_setsockopt = 1; |
Wei Wang | c120144 | 2017-04-25 17:38:02 -0700 | [diff] [blame] | 199 | memset(icsk->icsk_ca_priv, 0, sizeof(icsk->icsk_ca_priv)); |
Daniel Borkmann | 29ba4fff | 2015-01-05 23:57:45 +0100 | [diff] [blame] | 200 | |
Alexander Duyck | 5547201 | 2020-11-19 13:23:58 -0800 | [diff] [blame] | 201 | if (ca->flags & TCP_CONG_NEEDS_ECN) |
| 202 | INET_ECN_xmit(sk); |
| 203 | else |
| 204 | INET_ECN_dontxmit(sk); |
| 205 | |
Christoph Paasch | ce69e56 | 2020-07-08 16:18:34 -0700 | [diff] [blame] | 206 | if (!((1 << sk->sk_state) & (TCPF_CLOSE | TCPF_LISTEN))) |
Eric Dumazet | 6ac705b | 2015-09-25 07:39:18 -0700 | [diff] [blame] | 207 | tcp_init_congestion_control(sk); |
Daniel Borkmann | 29ba4fff | 2015-01-05 23:57:45 +0100 | [diff] [blame] | 208 | } |
| 209 | |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 210 | /* Manage refcounts on socket close. */ |
Arnaldo Carvalho de Melo | 6687e98 | 2005-08-10 04:03:31 -0300 | [diff] [blame] | 211 | void tcp_cleanup_congestion_control(struct sock *sk) |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 212 | { |
Arnaldo Carvalho de Melo | 6687e98 | 2005-08-10 04:03:31 -0300 | [diff] [blame] | 213 | 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 Lau | 0baf26b | 2020-01-08 16:35:08 -0800 | [diff] [blame] | 217 | bpf_module_put(icsk->icsk_ca_ops, icsk->icsk_ca_ops->owner); |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 218 | } |
| 219 | |
| 220 | /* Used by sysctl to change default congestion control */ |
Stephen Hemminger | 6670e15 | 2017-11-14 08:25:49 -0800 | [diff] [blame] | 221 | int tcp_set_default_congestion_control(struct net *net, const char *name) |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 222 | { |
| 223 | struct tcp_congestion_ops *ca; |
Stephen Hemminger | 6670e15 | 2017-11-14 08:25:49 -0800 | [diff] [blame] | 224 | const struct tcp_congestion_ops *prev; |
| 225 | int ret; |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 226 | |
Stephen Hemminger | 6670e15 | 2017-11-14 08:25:49 -0800 | [diff] [blame] | 227 | rcu_read_lock(); |
| 228 | ca = tcp_ca_find_autoload(net, name); |
| 229 | if (!ca) { |
| 230 | ret = -ENOENT; |
Martin KaFai Lau | 0baf26b | 2020-01-08 16:35:08 -0800 | [diff] [blame] | 231 | } else if (!bpf_try_module_get(ca, ca->owner)) { |
Stephen Hemminger | 6670e15 | 2017-11-14 08:25:49 -0800 | [diff] [blame] | 232 | ret = -EBUSY; |
Jonathon Reinhart | 6c1ea8b | 2021-05-01 04:28:22 -0400 | [diff] [blame] | 233 | } 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 Hemminger | 6670e15 | 2017-11-14 08:25:49 -0800 | [diff] [blame] | 237 | } else { |
| 238 | prev = xchg(&net->ipv4.tcp_congestion_control, ca); |
| 239 | if (prev) |
Martin KaFai Lau | 0baf26b | 2020-01-08 16:35:08 -0800 | [diff] [blame] | 240 | bpf_module_put(prev, prev->owner); |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 241 | |
Stephen Hemminger | 6670e15 | 2017-11-14 08:25:49 -0800 | [diff] [blame] | 242 | ca->flags |= TCP_CONG_NON_RESTRICTED; |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 243 | ret = 0; |
| 244 | } |
Stephen Hemminger | 6670e15 | 2017-11-14 08:25:49 -0800 | [diff] [blame] | 245 | rcu_read_unlock(); |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 246 | |
| 247 | return ret; |
| 248 | } |
| 249 | |
Stephen Hemminger | b1736a7 | 2006-10-31 17:31:33 -0800 | [diff] [blame] | 250 | /* Set default value from kernel configuration at bootup */ |
| 251 | static int __init tcp_congestion_default(void) |
| 252 | { |
Stephen Hemminger | 6670e15 | 2017-11-14 08:25:49 -0800 | [diff] [blame] | 253 | return tcp_set_default_congestion_control(&init_net, |
| 254 | CONFIG_DEFAULT_TCP_CONG); |
Stephen Hemminger | b1736a7 | 2006-10-31 17:31:33 -0800 | [diff] [blame] | 255 | } |
| 256 | late_initcall(tcp_congestion_default); |
| 257 | |
Stephen Hemminger | 3ff825b | 2006-11-09 16:32:06 -0800 | [diff] [blame] | 258 | /* Build string with list of available congestion control values */ |
| 259 | void 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 Liu | 9bb59a2 | 2019-11-20 16:38:08 +0800 | [diff] [blame] | 269 | |
| 270 | if (WARN_ON_ONCE(offs >= maxlen)) |
| 271 | break; |
Stephen Hemminger | 3ff825b | 2006-11-09 16:32:06 -0800 | [diff] [blame] | 272 | } |
| 273 | rcu_read_unlock(); |
| 274 | } |
| 275 | |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 276 | /* Get current default congestion control */ |
Stephen Hemminger | 6670e15 | 2017-11-14 08:25:49 -0800 | [diff] [blame] | 277 | void tcp_get_default_congestion_control(struct net *net, char *name) |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 278 | { |
Stephen Hemminger | 6670e15 | 2017-11-14 08:25:49 -0800 | [diff] [blame] | 279 | const struct tcp_congestion_ops *ca; |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 280 | |
| 281 | rcu_read_lock(); |
Stephen Hemminger | 6670e15 | 2017-11-14 08:25:49 -0800 | [diff] [blame] | 282 | ca = rcu_dereference(net->ipv4.tcp_congestion_control); |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 283 | strncpy(name, ca->name, TCP_CA_NAME_MAX); |
| 284 | rcu_read_unlock(); |
| 285 | } |
| 286 | |
Stephen Hemminger | ce7bc3b | 2006-11-09 16:35:15 -0800 | [diff] [blame] | 287 | /* Built list of non-restricted congestion control values */ |
| 288 | void 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 Hemminger | 164891a | 2007-04-23 22:26:16 -0700 | [diff] [blame] | 296 | if (!(ca->flags & TCP_CONG_NON_RESTRICTED)) |
Stephen Hemminger | ce7bc3b | 2006-11-09 16:35:15 -0800 | [diff] [blame] | 297 | continue; |
| 298 | offs += snprintf(buf + offs, maxlen - offs, |
| 299 | "%s%s", |
| 300 | offs == 0 ? "" : " ", ca->name); |
Hangbin Liu | 9bb59a2 | 2019-11-20 16:38:08 +0800 | [diff] [blame] | 301 | |
| 302 | if (WARN_ON_ONCE(offs >= maxlen)) |
| 303 | break; |
Stephen Hemminger | ce7bc3b | 2006-11-09 16:35:15 -0800 | [diff] [blame] | 304 | } |
| 305 | rcu_read_unlock(); |
| 306 | } |
| 307 | |
| 308 | /* Change list of non-restricted congestion control */ |
| 309 | int tcp_set_allowed_congestion_control(char *val) |
| 310 | { |
| 311 | struct tcp_congestion_ops *ca; |
Julia Lawall | c34186e | 2010-08-27 19:31:56 -0700 | [diff] [blame] | 312 | char *saved_clone, *clone, *name; |
Stephen Hemminger | ce7bc3b | 2006-11-09 16:35:15 -0800 | [diff] [blame] | 313 | int ret = 0; |
| 314 | |
Julia Lawall | c34186e | 2010-08-27 19:31:56 -0700 | [diff] [blame] | 315 | saved_clone = clone = kstrdup(val, GFP_USER); |
Stephen Hemminger | ce7bc3b | 2006-11-09 16:35:15 -0800 | [diff] [blame] | 316 | 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 Hemminger | 164891a | 2007-04-23 22:26:16 -0700 | [diff] [blame] | 329 | /* pass 2 clear old values */ |
Stephen Hemminger | ce7bc3b | 2006-11-09 16:35:15 -0800 | [diff] [blame] | 330 | list_for_each_entry_rcu(ca, &tcp_cong_list, list) |
Stephen Hemminger | 164891a | 2007-04-23 22:26:16 -0700 | [diff] [blame] | 331 | ca->flags &= ~TCP_CONG_NON_RESTRICTED; |
Stephen Hemminger | ce7bc3b | 2006-11-09 16:35:15 -0800 | [diff] [blame] | 332 | |
| 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 Hemminger | 164891a | 2007-04-23 22:26:16 -0700 | [diff] [blame] | 338 | ca->flags |= TCP_CONG_NON_RESTRICTED; |
Stephen Hemminger | ce7bc3b | 2006-11-09 16:35:15 -0800 | [diff] [blame] | 339 | } |
| 340 | out: |
| 341 | spin_unlock(&tcp_cong_list_lock); |
Julia Lawall | c34186e | 2010-08-27 19:31:56 -0700 | [diff] [blame] | 342 | kfree(saved_clone); |
Stephen Hemminger | ce7bc3b | 2006-11-09 16:35:15 -0800 | [diff] [blame] | 343 | |
| 344 | return ret; |
| 345 | } |
| 346 | |
Lawrence Brakmo | 91b5b21 | 2017-06-30 20:02:49 -0700 | [diff] [blame] | 347 | /* 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 Dumazet | 8d650cd | 2019-07-18 19:28:14 -0700 | [diff] [blame] | 352 | int tcp_set_congestion_control(struct sock *sk, const char *name, bool load, |
Neal Cardwell | 29a9493 | 2020-09-10 15:35:34 -0400 | [diff] [blame] | 353 | bool cap_net_admin) |
Stephen Hemminger | 5f8ef48 | 2005-06-23 20:37:36 -0700 | [diff] [blame] | 354 | { |
Arnaldo Carvalho de Melo | 6687e98 | 2005-08-10 04:03:31 -0300 | [diff] [blame] | 355 | struct inet_connection_sock *icsk = inet_csk(sk); |
Daniel Borkmann | c5c6a8a | 2015-01-05 23:57:46 +0100 | [diff] [blame] | 356 | const struct tcp_congestion_ops *ca; |
Stephen Hemminger | 5f8ef48 | 2005-06-23 20:37:36 -0700 | [diff] [blame] | 357 | int err = 0; |
| 358 | |
Daniel Borkmann | c5c6a8a | 2015-01-05 23:57:46 +0100 | [diff] [blame] | 359 | if (icsk->icsk_ca_dst_locked) |
| 360 | return -EPERM; |
Stephen Hemminger | 4d4d3d1 | 2007-04-23 22:32:11 -0700 | [diff] [blame] | 361 | |
Daniel Borkmann | c5c6a8a | 2015-01-05 23:57:46 +0100 | [diff] [blame] | 362 | rcu_read_lock(); |
Lawrence Brakmo | 91b5b21 | 2017-06-30 20:02:49 -0700 | [diff] [blame] | 363 | if (!load) |
| 364 | ca = tcp_ca_find(name); |
| 365 | else |
Stephen Hemminger | 6670e15 | 2017-11-14 08:25:49 -0800 | [diff] [blame] | 366 | ca = tcp_ca_find_autoload(sock_net(sk), name); |
| 367 | |
Daniel Borkmann | c5c6a8a | 2015-01-05 23:57:46 +0100 | [diff] [blame] | 368 | /* No change asking for existing value */ |
Neal Cardwell | 9f95041 | 2015-05-29 13:47:07 -0400 | [diff] [blame] | 369 | if (ca == icsk->icsk_ca_ops) { |
| 370 | icsk->icsk_ca_setsockopt = 1; |
Stephen Hemminger | 5f8ef48 | 2005-06-23 20:37:36 -0700 | [diff] [blame] | 371 | goto out; |
Neal Cardwell | 9f95041 | 2015-05-29 13:47:07 -0400 | [diff] [blame] | 372 | } |
Stephen Hemminger | 6670e15 | 2017-11-14 08:25:49 -0800 | [diff] [blame] | 373 | |
Neal Cardwell | 5050bef | 2020-09-10 15:35:36 -0400 | [diff] [blame] | 374 | if (!ca) |
Stephen Hemminger | 5f8ef48 | 2005-06-23 20:37:36 -0700 | [diff] [blame] | 375 | err = -ENOENT; |
Neal Cardwell | 5050bef | 2020-09-10 15:35:36 -0400 | [diff] [blame] | 376 | else if (!((ca->flags & TCP_CONG_NON_RESTRICTED) || cap_net_admin)) |
Stephen Hemminger | ce7bc3b | 2006-11-09 16:35:15 -0800 | [diff] [blame] | 377 | err = -EPERM; |
Neal Cardwell | 5050bef | 2020-09-10 15:35:36 -0400 | [diff] [blame] | 378 | else if (!bpf_try_module_get(ca, ca->owner)) |
Stephen Hemminger | 5f8ef48 | 2005-06-23 20:37:36 -0700 | [diff] [blame] | 379 | err = -EBUSY; |
Neal Cardwell | 5050bef | 2020-09-10 15:35:36 -0400 | [diff] [blame] | 380 | else |
Daniel Borkmann | 29ba4fff | 2015-01-05 23:57:45 +0100 | [diff] [blame] | 381 | tcp_reinit_congestion_control(sk, ca); |
Stephen Hemminger | 5f8ef48 | 2005-06-23 20:37:36 -0700 | [diff] [blame] | 382 | out: |
| 383 | rcu_read_unlock(); |
| 384 | return err; |
| 385 | } |
| 386 | |
Yuchung Cheng | 9f9843a7 | 2013-10-31 11:07:31 -0700 | [diff] [blame] | 387 | /* 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 Hemminger | 40efc6f | 2006-01-03 16:03:49 -0800 | [diff] [blame] | 395 | */ |
Neal Cardwell | e73ebb0 | 2015-01-28 20:01:35 -0500 | [diff] [blame] | 396 | u32 tcp_slow_start(struct tcp_sock *tp, u32 acked) |
Stephen Hemminger | 40efc6f | 2006-01-03 16:03:49 -0800 | [diff] [blame] | 397 | { |
Yuchung Cheng | 7617400 | 2015-07-09 13:16:30 -0700 | [diff] [blame] | 398 | u32 cwnd = min(tp->snd_cwnd + acked, tp->snd_ssthresh); |
Eric Dumazet | 973ec44 | 2013-02-02 05:23:16 +0000 | [diff] [blame] | 399 | |
Neal Cardwell | e73ebb0 | 2015-01-28 20:01:35 -0500 | [diff] [blame] | 400 | acked -= cwnd - tp->snd_cwnd; |
Yuchung Cheng | 9f9843a7 | 2013-10-31 11:07:31 -0700 | [diff] [blame] | 401 | tp->snd_cwnd = min(cwnd, tp->snd_cwnd_clamp); |
Neal Cardwell | e73ebb0 | 2015-01-28 20:01:35 -0500 | [diff] [blame] | 402 | |
| 403 | return acked; |
Stephen Hemminger | 40efc6f | 2006-01-03 16:03:49 -0800 | [diff] [blame] | 404 | } |
| 405 | EXPORT_SYMBOL_GPL(tcp_slow_start); |
| 406 | |
Neal Cardwell | 814d488 | 2015-01-28 20:01:36 -0500 | [diff] [blame] | 407 | /* In theory this is tp->snd_cwnd += 1 / tp->snd_cwnd (or alternative w), |
| 408 | * for every packet that was ACKed. |
| 409 | */ |
Neal Cardwell | e73ebb0 | 2015-01-28 20:01:35 -0500 | [diff] [blame] | 410 | 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] | 411 | { |
Neal Cardwell | 9949afa | 2015-03-10 17:17:03 -0400 | [diff] [blame] | 412 | /* 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 Cardwell | 814d488 | 2015-01-28 20:01:36 -0500 | [diff] [blame] | 418 | tp->snd_cwnd_cnt += acked; |
Ilpo Järvinen | 758ce5c | 2009-02-28 04:44:37 +0000 | [diff] [blame] | 419 | if (tp->snd_cwnd_cnt >= w) { |
Neal Cardwell | 814d488 | 2015-01-28 20:01:36 -0500 | [diff] [blame] | 420 | u32 delta = tp->snd_cwnd_cnt / w; |
| 421 | |
| 422 | tp->snd_cwnd_cnt -= delta * w; |
| 423 | tp->snd_cwnd += delta; |
Ilpo Järvinen | 758ce5c | 2009-02-28 04:44:37 +0000 | [diff] [blame] | 424 | } |
Neal Cardwell | 814d488 | 2015-01-28 20:01:36 -0500 | [diff] [blame] | 425 | tp->snd_cwnd = min(tp->snd_cwnd, tp->snd_cwnd_clamp); |
Ilpo Järvinen | 758ce5c | 2009-02-28 04:44:37 +0000 | [diff] [blame] | 426 | } |
| 427 | EXPORT_SYMBOL_GPL(tcp_cong_avoid_ai); |
| 428 | |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 429 | /* |
| 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 Dumazet | 2490155 | 2014-05-02 21:18:05 -0700 | [diff] [blame] | 436 | void tcp_reno_cong_avoid(struct sock *sk, u32 ack, u32 acked) |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 437 | { |
Arnaldo Carvalho de Melo | 6687e98 | 2005-08-10 04:03:31 -0300 | [diff] [blame] | 438 | struct tcp_sock *tp = tcp_sk(sk); |
| 439 | |
Eric Dumazet | 2490155 | 2014-05-02 21:18:05 -0700 | [diff] [blame] | 440 | if (!tcp_is_cwnd_limited(sk)) |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 441 | return; |
| 442 | |
Stephen Hemminger | 7faffa1 | 2005-11-10 17:07:24 -0800 | [diff] [blame] | 443 | /* In "safe" area, increase. */ |
Yuchung Cheng | 071d508 | 2015-07-09 13:16:29 -0700 | [diff] [blame] | 444 | if (tcp_in_slow_start(tp)) { |
Neal Cardwell | c22bdca | 2015-01-28 20:01:37 -0500 | [diff] [blame] | 445 | acked = tcp_slow_start(tp, acked); |
| 446 | if (!acked) |
| 447 | return; |
| 448 | } |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 449 | /* In dangerous area, increase slowly. */ |
Neal Cardwell | c22bdca | 2015-01-28 20:01:37 -0500 | [diff] [blame] | 450 | tcp_cong_avoid_ai(tp, tp->snd_cwnd, acked); |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 451 | } |
| 452 | EXPORT_SYMBOL_GPL(tcp_reno_cong_avoid); |
| 453 | |
| 454 | /* Slow start threshold is half the congestion window (min 2) */ |
Arnaldo Carvalho de Melo | 6687e98 | 2005-08-10 04:03:31 -0300 | [diff] [blame] | 455 | u32 tcp_reno_ssthresh(struct sock *sk) |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 456 | { |
Arnaldo Carvalho de Melo | 6687e98 | 2005-08-10 04:03:31 -0300 | [diff] [blame] | 457 | const struct tcp_sock *tp = tcp_sk(sk); |
stephen hemminger | 688d194 | 2014-08-29 23:32:05 -0700 | [diff] [blame] | 458 | |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 459 | return max(tp->snd_cwnd >> 1U, 2U); |
| 460 | } |
| 461 | EXPORT_SYMBOL_GPL(tcp_reno_ssthresh); |
| 462 | |
Florian Westphal | e979918 | 2016-11-21 14:18:38 +0100 | [diff] [blame] | 463 | u32 tcp_reno_undo_cwnd(struct sock *sk) |
| 464 | { |
| 465 | const struct tcp_sock *tp = tcp_sk(sk); |
| 466 | |
Yuchung Cheng | 4faf783 | 2017-08-03 20:38:51 -0700 | [diff] [blame] | 467 | return max(tp->snd_cwnd, tp->prior_cwnd); |
Florian Westphal | e979918 | 2016-11-21 14:18:38 +0100 | [diff] [blame] | 468 | } |
| 469 | EXPORT_SYMBOL_GPL(tcp_reno_undo_cwnd); |
| 470 | |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 471 | struct tcp_congestion_ops tcp_reno = { |
Stephen Hemminger | 164891a | 2007-04-23 22:26:16 -0700 | [diff] [blame] | 472 | .flags = TCP_CONG_NON_RESTRICTED, |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 473 | .name = "reno", |
| 474 | .owner = THIS_MODULE, |
| 475 | .ssthresh = tcp_reno_ssthresh, |
| 476 | .cong_avoid = tcp_reno_cong_avoid, |
Florian Westphal | e979918 | 2016-11-21 14:18:38 +0100 | [diff] [blame] | 477 | .undo_cwnd = tcp_reno_undo_cwnd, |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 478 | }; |