Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 1 | /* |
Fabian Frederick | b92022f | 2014-11-04 20:25:38 +0100 | [diff] [blame^] | 2 | * Pluggable TCP congestion control support and newReno |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 3 | * congestion control. |
Masanari Iida | 02582e9 | 2012-08-22 19:11:26 +0900 | [diff] [blame] | 4 | * Based on ideas from I/O scheduler support and Web100. |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 5 | * |
| 6 | * Copyright (C) 2005 Stephen Hemminger <shemminger@osdl.org> |
| 7 | */ |
| 8 | |
Joe Perches | afd46503 | 2012-03-12 07:03:32 +0000 | [diff] [blame] | 9 | #define pr_fmt(fmt) "TCP: " fmt |
| 10 | |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 11 | #include <linux/module.h> |
| 12 | #include <linux/mm.h> |
| 13 | #include <linux/types.h> |
| 14 | #include <linux/list.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 15 | #include <linux/gfp.h> |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 16 | #include <net/tcp.h> |
| 17 | |
| 18 | static DEFINE_SPINLOCK(tcp_cong_list_lock); |
| 19 | static LIST_HEAD(tcp_cong_list); |
| 20 | |
| 21 | /* Simple linear search, don't expect many entries! */ |
| 22 | static struct tcp_congestion_ops *tcp_ca_find(const char *name) |
| 23 | { |
| 24 | struct tcp_congestion_ops *e; |
| 25 | |
Stephen Hemminger | 5f8ef48 | 2005-06-23 20:37:36 -0700 | [diff] [blame] | 26 | list_for_each_entry_rcu(e, &tcp_cong_list, list) { |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 27 | if (strcmp(e->name, name) == 0) |
| 28 | return e; |
| 29 | } |
| 30 | |
| 31 | return NULL; |
| 32 | } |
| 33 | |
| 34 | /* |
Robert P. J. Day | d08df60 | 2007-02-17 19:07:33 +0100 | [diff] [blame] | 35 | * Attach new congestion control algorithm to the list |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 36 | * of available options. |
| 37 | */ |
| 38 | int 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 Hemminger | 72dc5b9 | 2006-06-05 17:30:08 -0700 | [diff] [blame] | 43 | if (!ca->ssthresh || !ca->cong_avoid) { |
Joe Perches | afd46503 | 2012-03-12 07:03:32 +0000 | [diff] [blame] | 44 | pr_err("%s does not implement required ops\n", ca->name); |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 45 | return -EINVAL; |
| 46 | } |
| 47 | |
| 48 | spin_lock(&tcp_cong_list_lock); |
| 49 | if (tcp_ca_find(ca->name)) { |
Joe Perches | afd46503 | 2012-03-12 07:03:32 +0000 | [diff] [blame] | 50 | pr_notice("%s already registered\n", ca->name); |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 51 | ret = -EEXIST; |
| 52 | } else { |
Stephen Hemminger | 3d2573f | 2006-09-24 20:11:58 -0700 | [diff] [blame] | 53 | list_add_tail_rcu(&ca->list, &tcp_cong_list); |
Joe Perches | afd46503 | 2012-03-12 07:03:32 +0000 | [diff] [blame] | 54 | pr_info("%s registered\n", ca->name); |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 55 | } |
| 56 | spin_unlock(&tcp_cong_list_lock); |
| 57 | |
| 58 | return ret; |
| 59 | } |
| 60 | EXPORT_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 | */ |
| 68 | void 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 | } |
| 74 | EXPORT_SYMBOL_GPL(tcp_unregister_congestion_control); |
| 75 | |
| 76 | /* Assign choice of congestion control. */ |
Florian Westphal | 55d8694 | 2014-09-26 22:37:32 +0200 | [diff] [blame] | 77 | void tcp_assign_congestion_control(struct sock *sk) |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 78 | { |
Arnaldo Carvalho de Melo | 6687e98 | 2005-08-10 04:03:31 -0300 | [diff] [blame] | 79 | struct inet_connection_sock *icsk = inet_csk(sk); |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 80 | struct tcp_congestion_ops *ca; |
| 81 | |
Florian Westphal | 55d8694 | 2014-09-26 22:37:32 +0200 | [diff] [blame] | 82 | 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 Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 87 | } |
Florian Westphal | 55d8694 | 2014-09-26 22:37:32 +0200 | [diff] [blame] | 88 | /* Fallback to next available. The last really |
| 89 | * guaranteed fallback is Reno from this list. |
| 90 | */ |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 91 | } |
Florian Westphal | 55d8694 | 2014-09-26 22:37:32 +0200 | [diff] [blame] | 92 | out: |
| 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 | |
| 102 | void tcp_init_congestion_control(struct sock *sk) |
| 103 | { |
| 104 | const struct inet_connection_sock *icsk = inet_csk(sk); |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 105 | |
Arnaldo Carvalho de Melo | 6687e98 | 2005-08-10 04:03:31 -0300 | [diff] [blame] | 106 | if (icsk->icsk_ca_ops->init) |
| 107 | icsk->icsk_ca_ops->init(sk); |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 108 | } |
| 109 | |
| 110 | /* Manage refcounts on socket close. */ |
Arnaldo Carvalho de Melo | 6687e98 | 2005-08-10 04:03:31 -0300 | [diff] [blame] | 111 | void tcp_cleanup_congestion_control(struct sock *sk) |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 112 | { |
Arnaldo Carvalho de Melo | 6687e98 | 2005-08-10 04:03:31 -0300 | [diff] [blame] | 113 | struct inet_connection_sock *icsk = inet_csk(sk); |
| 114 | |
| 115 | if (icsk->icsk_ca_ops->release) |
| 116 | icsk->icsk_ca_ops->release(sk); |
| 117 | module_put(icsk->icsk_ca_ops->owner); |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 118 | } |
| 119 | |
| 120 | /* Used by sysctl to change default congestion control */ |
| 121 | int tcp_set_default_congestion_control(const char *name) |
| 122 | { |
| 123 | struct tcp_congestion_ops *ca; |
| 124 | int ret = -ENOENT; |
| 125 | |
| 126 | spin_lock(&tcp_cong_list_lock); |
| 127 | ca = tcp_ca_find(name); |
Johannes Berg | 95a5afc | 2008-10-16 15:24:51 -0700 | [diff] [blame] | 128 | #ifdef CONFIG_MODULES |
Eric Paris | a8f80e8 | 2009-08-13 09:44:51 -0400 | [diff] [blame] | 129 | if (!ca && capable(CAP_NET_ADMIN)) { |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 130 | spin_unlock(&tcp_cong_list_lock); |
| 131 | |
| 132 | request_module("tcp_%s", name); |
| 133 | spin_lock(&tcp_cong_list_lock); |
| 134 | ca = tcp_ca_find(name); |
| 135 | } |
| 136 | #endif |
| 137 | |
| 138 | if (ca) { |
Stephen Hemminger | 164891a | 2007-04-23 22:26:16 -0700 | [diff] [blame] | 139 | ca->flags |= TCP_CONG_NON_RESTRICTED; /* default is always allowed */ |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 140 | list_move(&ca->list, &tcp_cong_list); |
| 141 | ret = 0; |
| 142 | } |
| 143 | spin_unlock(&tcp_cong_list_lock); |
| 144 | |
| 145 | return ret; |
| 146 | } |
| 147 | |
Stephen Hemminger | b1736a7 | 2006-10-31 17:31:33 -0800 | [diff] [blame] | 148 | /* Set default value from kernel configuration at bootup */ |
| 149 | static int __init tcp_congestion_default(void) |
| 150 | { |
| 151 | return tcp_set_default_congestion_control(CONFIG_DEFAULT_TCP_CONG); |
| 152 | } |
| 153 | late_initcall(tcp_congestion_default); |
| 154 | |
Stephen Hemminger | 3ff825b | 2006-11-09 16:32:06 -0800 | [diff] [blame] | 155 | /* Build string with list of available congestion control values */ |
| 156 | void tcp_get_available_congestion_control(char *buf, size_t maxlen) |
| 157 | { |
| 158 | struct tcp_congestion_ops *ca; |
| 159 | size_t offs = 0; |
| 160 | |
| 161 | rcu_read_lock(); |
| 162 | list_for_each_entry_rcu(ca, &tcp_cong_list, list) { |
| 163 | offs += snprintf(buf + offs, maxlen - offs, |
| 164 | "%s%s", |
| 165 | offs == 0 ? "" : " ", ca->name); |
Stephen Hemminger | 3ff825b | 2006-11-09 16:32:06 -0800 | [diff] [blame] | 166 | } |
| 167 | rcu_read_unlock(); |
| 168 | } |
| 169 | |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 170 | /* Get current default congestion control */ |
| 171 | void tcp_get_default_congestion_control(char *name) |
| 172 | { |
| 173 | struct tcp_congestion_ops *ca; |
| 174 | /* We will always have reno... */ |
| 175 | BUG_ON(list_empty(&tcp_cong_list)); |
| 176 | |
| 177 | rcu_read_lock(); |
| 178 | ca = list_entry(tcp_cong_list.next, struct tcp_congestion_ops, list); |
| 179 | strncpy(name, ca->name, TCP_CA_NAME_MAX); |
| 180 | rcu_read_unlock(); |
| 181 | } |
| 182 | |
Stephen Hemminger | ce7bc3b | 2006-11-09 16:35:15 -0800 | [diff] [blame] | 183 | /* Built list of non-restricted congestion control values */ |
| 184 | void tcp_get_allowed_congestion_control(char *buf, size_t maxlen) |
| 185 | { |
| 186 | struct tcp_congestion_ops *ca; |
| 187 | size_t offs = 0; |
| 188 | |
| 189 | *buf = '\0'; |
| 190 | rcu_read_lock(); |
| 191 | list_for_each_entry_rcu(ca, &tcp_cong_list, list) { |
Stephen Hemminger | 164891a | 2007-04-23 22:26:16 -0700 | [diff] [blame] | 192 | if (!(ca->flags & TCP_CONG_NON_RESTRICTED)) |
Stephen Hemminger | ce7bc3b | 2006-11-09 16:35:15 -0800 | [diff] [blame] | 193 | continue; |
| 194 | offs += snprintf(buf + offs, maxlen - offs, |
| 195 | "%s%s", |
| 196 | offs == 0 ? "" : " ", ca->name); |
Stephen Hemminger | ce7bc3b | 2006-11-09 16:35:15 -0800 | [diff] [blame] | 197 | } |
| 198 | rcu_read_unlock(); |
| 199 | } |
| 200 | |
| 201 | /* Change list of non-restricted congestion control */ |
| 202 | int tcp_set_allowed_congestion_control(char *val) |
| 203 | { |
| 204 | struct tcp_congestion_ops *ca; |
Julia Lawall | c34186e | 2010-08-27 19:31:56 -0700 | [diff] [blame] | 205 | char *saved_clone, *clone, *name; |
Stephen Hemminger | ce7bc3b | 2006-11-09 16:35:15 -0800 | [diff] [blame] | 206 | int ret = 0; |
| 207 | |
Julia Lawall | c34186e | 2010-08-27 19:31:56 -0700 | [diff] [blame] | 208 | saved_clone = clone = kstrdup(val, GFP_USER); |
Stephen Hemminger | ce7bc3b | 2006-11-09 16:35:15 -0800 | [diff] [blame] | 209 | if (!clone) |
| 210 | return -ENOMEM; |
| 211 | |
| 212 | spin_lock(&tcp_cong_list_lock); |
| 213 | /* pass 1 check for bad entries */ |
| 214 | while ((name = strsep(&clone, " ")) && *name) { |
| 215 | ca = tcp_ca_find(name); |
| 216 | if (!ca) { |
| 217 | ret = -ENOENT; |
| 218 | goto out; |
| 219 | } |
| 220 | } |
| 221 | |
Stephen Hemminger | 164891a | 2007-04-23 22:26:16 -0700 | [diff] [blame] | 222 | /* pass 2 clear old values */ |
Stephen Hemminger | ce7bc3b | 2006-11-09 16:35:15 -0800 | [diff] [blame] | 223 | list_for_each_entry_rcu(ca, &tcp_cong_list, list) |
Stephen Hemminger | 164891a | 2007-04-23 22:26:16 -0700 | [diff] [blame] | 224 | ca->flags &= ~TCP_CONG_NON_RESTRICTED; |
Stephen Hemminger | ce7bc3b | 2006-11-09 16:35:15 -0800 | [diff] [blame] | 225 | |
| 226 | /* pass 3 mark as allowed */ |
| 227 | while ((name = strsep(&val, " ")) && *name) { |
| 228 | ca = tcp_ca_find(name); |
| 229 | WARN_ON(!ca); |
| 230 | if (ca) |
Stephen Hemminger | 164891a | 2007-04-23 22:26:16 -0700 | [diff] [blame] | 231 | ca->flags |= TCP_CONG_NON_RESTRICTED; |
Stephen Hemminger | ce7bc3b | 2006-11-09 16:35:15 -0800 | [diff] [blame] | 232 | } |
| 233 | out: |
| 234 | spin_unlock(&tcp_cong_list_lock); |
Julia Lawall | c34186e | 2010-08-27 19:31:56 -0700 | [diff] [blame] | 235 | kfree(saved_clone); |
Stephen Hemminger | ce7bc3b | 2006-11-09 16:35:15 -0800 | [diff] [blame] | 236 | |
| 237 | return ret; |
| 238 | } |
| 239 | |
Stephen Hemminger | 5f8ef48 | 2005-06-23 20:37:36 -0700 | [diff] [blame] | 240 | /* Change congestion control for socket */ |
Arnaldo Carvalho de Melo | 6687e98 | 2005-08-10 04:03:31 -0300 | [diff] [blame] | 241 | int tcp_set_congestion_control(struct sock *sk, const char *name) |
Stephen Hemminger | 5f8ef48 | 2005-06-23 20:37:36 -0700 | [diff] [blame] | 242 | { |
Arnaldo Carvalho de Melo | 6687e98 | 2005-08-10 04:03:31 -0300 | [diff] [blame] | 243 | struct inet_connection_sock *icsk = inet_csk(sk); |
Stephen Hemminger | 5f8ef48 | 2005-06-23 20:37:36 -0700 | [diff] [blame] | 244 | struct tcp_congestion_ops *ca; |
| 245 | int err = 0; |
| 246 | |
| 247 | rcu_read_lock(); |
| 248 | ca = tcp_ca_find(name); |
Stephen Hemminger | 4d4d3d1 | 2007-04-23 22:32:11 -0700 | [diff] [blame] | 249 | |
Stephen Hemminger | 35bfbc9 | 2006-11-09 16:36:36 -0800 | [diff] [blame] | 250 | /* no change asking for existing value */ |
Arnaldo Carvalho de Melo | 6687e98 | 2005-08-10 04:03:31 -0300 | [diff] [blame] | 251 | if (ca == icsk->icsk_ca_ops) |
Stephen Hemminger | 5f8ef48 | 2005-06-23 20:37:36 -0700 | [diff] [blame] | 252 | goto out; |
| 253 | |
Johannes Berg | 95a5afc | 2008-10-16 15:24:51 -0700 | [diff] [blame] | 254 | #ifdef CONFIG_MODULES |
Stephen Hemminger | 35bfbc9 | 2006-11-09 16:36:36 -0800 | [diff] [blame] | 255 | /* not found attempt to autoload module */ |
Eric Paris | a8f80e8 | 2009-08-13 09:44:51 -0400 | [diff] [blame] | 256 | if (!ca && capable(CAP_NET_ADMIN)) { |
Stephen Hemminger | 35bfbc9 | 2006-11-09 16:36:36 -0800 | [diff] [blame] | 257 | rcu_read_unlock(); |
| 258 | request_module("tcp_%s", name); |
| 259 | rcu_read_lock(); |
| 260 | ca = tcp_ca_find(name); |
| 261 | } |
| 262 | #endif |
Stephen Hemminger | 5f8ef48 | 2005-06-23 20:37:36 -0700 | [diff] [blame] | 263 | if (!ca) |
| 264 | err = -ENOENT; |
| 265 | |
Eric W. Biederman | 52e804c | 2012-11-16 03:03:05 +0000 | [diff] [blame] | 266 | else if (!((ca->flags & TCP_CONG_NON_RESTRICTED) || |
| 267 | ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN))) |
Stephen Hemminger | ce7bc3b | 2006-11-09 16:35:15 -0800 | [diff] [blame] | 268 | err = -EPERM; |
| 269 | |
Stephen Hemminger | 5f8ef48 | 2005-06-23 20:37:36 -0700 | [diff] [blame] | 270 | else if (!try_module_get(ca->owner)) |
| 271 | err = -EBUSY; |
| 272 | |
| 273 | else { |
Arnaldo Carvalho de Melo | 6687e98 | 2005-08-10 04:03:31 -0300 | [diff] [blame] | 274 | tcp_cleanup_congestion_control(sk); |
| 275 | icsk->icsk_ca_ops = ca; |
Stephen Hemminger | 4d4d3d1 | 2007-04-23 22:32:11 -0700 | [diff] [blame] | 276 | |
| 277 | if (sk->sk_state != TCP_CLOSE && icsk->icsk_ca_ops->init) |
Arnaldo Carvalho de Melo | 6687e98 | 2005-08-10 04:03:31 -0300 | [diff] [blame] | 278 | icsk->icsk_ca_ops->init(sk); |
Stephen Hemminger | 5f8ef48 | 2005-06-23 20:37:36 -0700 | [diff] [blame] | 279 | } |
| 280 | out: |
| 281 | rcu_read_unlock(); |
| 282 | return err; |
| 283 | } |
| 284 | |
Yuchung Cheng | 9f9843a7 | 2013-10-31 11:07:31 -0700 | [diff] [blame] | 285 | /* Slow start is used when congestion window is no greater than the slow start |
| 286 | * threshold. We base on RFC2581 and also handle stretch ACKs properly. |
| 287 | * We do not implement RFC3465 Appropriate Byte Counting (ABC) per se but |
| 288 | * something better;) a packet is only considered (s)acked in its entirety to |
| 289 | * defend the ACK attacks described in the RFC. Slow start processes a stretch |
| 290 | * ACK of degree N as if N acks of degree 1 are received back to back except |
| 291 | * ABC caps N to 2. Slow start exits when cwnd grows over ssthresh and |
| 292 | * returns the leftover acks to adjust cwnd in congestion avoidance mode. |
Stephen Hemminger | 40efc6f | 2006-01-03 16:03:49 -0800 | [diff] [blame] | 293 | */ |
Li RongQing | a12a601 | 2014-09-30 09:49:55 +0800 | [diff] [blame] | 294 | void tcp_slow_start(struct tcp_sock *tp, u32 acked) |
Stephen Hemminger | 40efc6f | 2006-01-03 16:03:49 -0800 | [diff] [blame] | 295 | { |
Yuchung Cheng | 9f9843a7 | 2013-10-31 11:07:31 -0700 | [diff] [blame] | 296 | u32 cwnd = tp->snd_cwnd + acked; |
Eric Dumazet | 973ec44 | 2013-02-02 05:23:16 +0000 | [diff] [blame] | 297 | |
Yuchung Cheng | 9f9843a7 | 2013-10-31 11:07:31 -0700 | [diff] [blame] | 298 | if (cwnd > tp->snd_ssthresh) |
| 299 | cwnd = tp->snd_ssthresh + 1; |
Yuchung Cheng | 9f9843a7 | 2013-10-31 11:07:31 -0700 | [diff] [blame] | 300 | tp->snd_cwnd = min(cwnd, tp->snd_cwnd_clamp); |
Stephen Hemminger | 40efc6f | 2006-01-03 16:03:49 -0800 | [diff] [blame] | 301 | } |
| 302 | EXPORT_SYMBOL_GPL(tcp_slow_start); |
| 303 | |
Ilpo Järvinen | 758ce5c | 2009-02-28 04:44:37 +0000 | [diff] [blame] | 304 | /* In theory this is tp->snd_cwnd += 1 / tp->snd_cwnd (or alternative w) */ |
| 305 | void tcp_cong_avoid_ai(struct tcp_sock *tp, u32 w) |
| 306 | { |
| 307 | if (tp->snd_cwnd_cnt >= w) { |
| 308 | if (tp->snd_cwnd < tp->snd_cwnd_clamp) |
| 309 | tp->snd_cwnd++; |
| 310 | tp->snd_cwnd_cnt = 0; |
| 311 | } else { |
| 312 | tp->snd_cwnd_cnt++; |
| 313 | } |
| 314 | } |
| 315 | EXPORT_SYMBOL_GPL(tcp_cong_avoid_ai); |
| 316 | |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 317 | /* |
| 318 | * TCP Reno congestion control |
| 319 | * This is special case used for fallback as well. |
| 320 | */ |
| 321 | /* This is Jacobson's slow start and congestion avoidance. |
| 322 | * SIGCOMM '88, p. 328. |
| 323 | */ |
Eric Dumazet | 2490155 | 2014-05-02 21:18:05 -0700 | [diff] [blame] | 324 | void tcp_reno_cong_avoid(struct sock *sk, u32 ack, u32 acked) |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 325 | { |
Arnaldo Carvalho de Melo | 6687e98 | 2005-08-10 04:03:31 -0300 | [diff] [blame] | 326 | struct tcp_sock *tp = tcp_sk(sk); |
| 327 | |
Eric Dumazet | 2490155 | 2014-05-02 21:18:05 -0700 | [diff] [blame] | 328 | if (!tcp_is_cwnd_limited(sk)) |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 329 | return; |
| 330 | |
Stephen Hemminger | 7faffa1 | 2005-11-10 17:07:24 -0800 | [diff] [blame] | 331 | /* In "safe" area, increase. */ |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 332 | if (tp->snd_cwnd <= tp->snd_ssthresh) |
Yuchung Cheng | 9f9843a7 | 2013-10-31 11:07:31 -0700 | [diff] [blame] | 333 | tcp_slow_start(tp, acked); |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 334 | /* In dangerous area, increase slowly. */ |
Stephen Hemminger | ca2eb56 | 2013-02-05 07:25:17 +0000 | [diff] [blame] | 335 | else |
Ilpo Järvinen | 758ce5c | 2009-02-28 04:44:37 +0000 | [diff] [blame] | 336 | tcp_cong_avoid_ai(tp, tp->snd_cwnd); |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 337 | } |
| 338 | EXPORT_SYMBOL_GPL(tcp_reno_cong_avoid); |
| 339 | |
| 340 | /* Slow start threshold is half the congestion window (min 2) */ |
Arnaldo Carvalho de Melo | 6687e98 | 2005-08-10 04:03:31 -0300 | [diff] [blame] | 341 | u32 tcp_reno_ssthresh(struct sock *sk) |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 342 | { |
Arnaldo Carvalho de Melo | 6687e98 | 2005-08-10 04:03:31 -0300 | [diff] [blame] | 343 | const struct tcp_sock *tp = tcp_sk(sk); |
stephen hemminger | 688d194 | 2014-08-29 23:32:05 -0700 | [diff] [blame] | 344 | |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 345 | return max(tp->snd_cwnd >> 1U, 2U); |
| 346 | } |
| 347 | EXPORT_SYMBOL_GPL(tcp_reno_ssthresh); |
| 348 | |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 349 | struct tcp_congestion_ops tcp_reno = { |
Stephen Hemminger | 164891a | 2007-04-23 22:26:16 -0700 | [diff] [blame] | 350 | .flags = TCP_CONG_NON_RESTRICTED, |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 351 | .name = "reno", |
| 352 | .owner = THIS_MODULE, |
| 353 | .ssthresh = tcp_reno_ssthresh, |
| 354 | .cong_avoid = tcp_reno_cong_avoid, |
Stephen Hemminger | 317a76f | 2005-06-23 12:19:55 -0700 | [diff] [blame] | 355 | }; |