blob: a453aac91bd3b740ef44363ef10e5be5390bf6dc [file] [log] [blame]
Stephen Hemmingerb87d8562005-06-23 12:27:19 -07001/*
2 * TCP Vegas congestion control
3 *
4 * This is based on the congestion detection/avoidance scheme described in
5 * Lawrence S. Brakmo and Larry L. Peterson.
6 * "TCP Vegas: End to end congestion avoidance on a global internet."
7 * IEEE Journal on Selected Areas in Communication, 13(8):1465--1480,
8 * October 1995. Available from:
9 * ftp://ftp.cs.arizona.edu/xkernel/Papers/jsac.ps
10 *
11 * See http://www.cs.arizona.edu/xkernel/ for their implementation.
12 * The main aspects that distinguish this implementation from the
13 * Arizona Vegas implementation are:
14 * o We do not change the loss detection or recovery mechanisms of
15 * Linux in any way. Linux already recovers from losses quite well,
16 * using fine-grained timers, NewReno, and FACK.
17 * o To avoid the performance penalty imposed by increasing cwnd
18 * only every-other RTT during slow start, we increase during
19 * every RTT during slow start, just like Reno.
20 * o Largely to allow continuous cwnd growth during slow start,
21 * we use the rate at which ACKs come back as the "actual"
22 * rate, rather than the rate at which data is sent.
23 * o To speed convergence to the right rate, we set the cwnd
24 * to achieve the right ("actual") rate when we exit slow start.
25 * o To filter out the noise caused by delayed ACKs, we use the
26 * minimum RTT sample observed during the last RTT to calculate
27 * the actual rate.
28 * o When the sender re-starts from idle, it waits until it has
29 * received ACKs for an entire flight of new data before making
30 * a cwnd adjustment decision. The original Vegas implementation
31 * assumed senders never went idle.
32 */
33
Stephen Hemmingerb87d8562005-06-23 12:27:19 -070034#include <linux/mm.h>
35#include <linux/module.h>
36#include <linux/skbuff.h>
Arnaldo Carvalho de Meloa8c21902005-08-12 12:56:38 -030037#include <linux/inet_diag.h>
Stephen Hemmingerb87d8562005-06-23 12:27:19 -070038
39#include <net/tcp.h>
40
Stephen Hemminger77522372007-04-23 22:28:23 -070041#include "tcp_vegas.h"
42
Doug Leith8d3a5642008-12-09 00:13:04 -080043static int alpha = 2;
44static int beta = 4;
45static int gamma = 1;
Stephen Hemmingerb87d8562005-06-23 12:27:19 -070046
47module_param(alpha, int, 0644);
Doug Leith8d3a5642008-12-09 00:13:04 -080048MODULE_PARM_DESC(alpha, "lower bound of packets in network");
Stephen Hemmingerb87d8562005-06-23 12:27:19 -070049module_param(beta, int, 0644);
Doug Leith8d3a5642008-12-09 00:13:04 -080050MODULE_PARM_DESC(beta, "upper bound of packets in network");
Stephen Hemmingerb87d8562005-06-23 12:27:19 -070051module_param(gamma, int, 0644);
52MODULE_PARM_DESC(gamma, "limit on increase (scale by 2)");
53
54
Stephen Hemmingerb87d8562005-06-23 12:27:19 -070055/* There are several situations when we must "re-start" Vegas:
56 *
57 * o when a connection is established
58 * o after an RTO
59 * o after fast recovery
60 * o when we send a packet and there is no outstanding
61 * unacknowledged data (restarting an idle connection)
62 *
63 * In these circumstances we cannot do a Vegas calculation at the
64 * end of the first RTT, because any calculation we do is using
65 * stale info -- both the saved cwnd and congestion feedback are
66 * stale.
67 *
68 * Instead we must wait until the completion of an RTT during
69 * which we actually receive ACKs.
70 */
Stephen Hemminger77522372007-04-23 22:28:23 -070071static void vegas_enable(struct sock *sk)
Stephen Hemmingerb87d8562005-06-23 12:27:19 -070072{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -030073 const struct tcp_sock *tp = tcp_sk(sk);
74 struct vegas *vegas = inet_csk_ca(sk);
Stephen Hemmingerb87d8562005-06-23 12:27:19 -070075
76 /* Begin taking Vegas samples next time we send something. */
77 vegas->doing_vegas_now = 1;
78
79 /* Set the beginning of the next send window. */
80 vegas->beg_snd_nxt = tp->snd_nxt;
81
82 vegas->cntRTT = 0;
83 vegas->minRTT = 0x7fffffff;
84}
85
86/* Stop taking Vegas samples for now. */
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -030087static inline void vegas_disable(struct sock *sk)
Stephen Hemmingerb87d8562005-06-23 12:27:19 -070088{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -030089 struct vegas *vegas = inet_csk_ca(sk);
Stephen Hemmingerb87d8562005-06-23 12:27:19 -070090
91 vegas->doing_vegas_now = 0;
92}
93
Stephen Hemminger77522372007-04-23 22:28:23 -070094void tcp_vegas_init(struct sock *sk)
Stephen Hemmingerb87d8562005-06-23 12:27:19 -070095{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -030096 struct vegas *vegas = inet_csk_ca(sk);
Stephen Hemmingerb87d8562005-06-23 12:27:19 -070097
98 vegas->baseRTT = 0x7fffffff;
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -030099 vegas_enable(sk);
Stephen Hemmingerb87d8562005-06-23 12:27:19 -0700100}
Stephen Hemminger77522372007-04-23 22:28:23 -0700101EXPORT_SYMBOL_GPL(tcp_vegas_init);
Stephen Hemmingerb87d8562005-06-23 12:27:19 -0700102
103/* Do RTT sampling needed for Vegas.
104 * Basically we:
105 * o min-filter RTT samples from within an RTT to get the current
106 * propagation delay + queuing delay (we are min-filtering to try to
107 * avoid the effects of delayed ACKs)
108 * o min-filter RTT samples from a much longer window (forever for now)
109 * to find the propagation delay (baseRTT)
110 */
Stephen Hemminger30cfd0b2007-07-25 23:49:34 -0700111void tcp_vegas_pkts_acked(struct sock *sk, u32 cnt, s32 rtt_us)
Stephen Hemmingerb87d8562005-06-23 12:27:19 -0700112{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300113 struct vegas *vegas = inet_csk_ca(sk);
Stephen Hemminger164891a2007-04-23 22:26:16 -0700114 u32 vrtt;
115
Stephen Hemminger30cfd0b2007-07-25 23:49:34 -0700116 if (rtt_us < 0)
Ilpo Järvinenb9ce2042007-06-15 15:08:43 -0700117 return;
118
Stephen Hemminger164891a2007-04-23 22:26:16 -0700119 /* Never allow zero rtt or baseRTT */
Stephen Hemminger30cfd0b2007-07-25 23:49:34 -0700120 vrtt = rtt_us + 1;
Stephen Hemmingerb87d8562005-06-23 12:27:19 -0700121
122 /* Filter to find propagation delay: */
123 if (vrtt < vegas->baseRTT)
124 vegas->baseRTT = vrtt;
125
126 /* Find the min RTT during the last RTT to find
127 * the current prop. delay + queuing delay:
128 */
129 vegas->minRTT = min(vegas->minRTT, vrtt);
130 vegas->cntRTT++;
131}
Stephen Hemminger77522372007-04-23 22:28:23 -0700132EXPORT_SYMBOL_GPL(tcp_vegas_pkts_acked);
Stephen Hemmingerb87d8562005-06-23 12:27:19 -0700133
Stephen Hemminger77522372007-04-23 22:28:23 -0700134void tcp_vegas_state(struct sock *sk, u8 ca_state)
Stephen Hemmingerb87d8562005-06-23 12:27:19 -0700135{
136
137 if (ca_state == TCP_CA_Open)
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300138 vegas_enable(sk);
Stephen Hemmingerb87d8562005-06-23 12:27:19 -0700139 else
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300140 vegas_disable(sk);
Stephen Hemmingerb87d8562005-06-23 12:27:19 -0700141}
Stephen Hemminger77522372007-04-23 22:28:23 -0700142EXPORT_SYMBOL_GPL(tcp_vegas_state);
Stephen Hemmingerb87d8562005-06-23 12:27:19 -0700143
144/*
145 * If the connection is idle and we are restarting,
146 * then we don't want to do any Vegas calculations
147 * until we get fresh RTT samples. So when we
148 * restart, we reset our Vegas state to a clean
149 * slate. After we get acks for this flight of
150 * packets, _then_ we can make Vegas calculations
151 * again.
152 */
Stephen Hemminger77522372007-04-23 22:28:23 -0700153void tcp_vegas_cwnd_event(struct sock *sk, enum tcp_ca_event event)
Stephen Hemmingerb87d8562005-06-23 12:27:19 -0700154{
155 if (event == CA_EVENT_CWND_RESTART ||
156 event == CA_EVENT_TX_START)
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300157 tcp_vegas_init(sk);
Stephen Hemmingerb87d8562005-06-23 12:27:19 -0700158}
Stephen Hemminger77522372007-04-23 22:28:23 -0700159EXPORT_SYMBOL_GPL(tcp_vegas_cwnd_event);
Stephen Hemmingerb87d8562005-06-23 12:27:19 -0700160
Ilpo Järvinenc3a05c62007-12-02 00:47:59 +0200161static void tcp_vegas_cong_avoid(struct sock *sk, u32 ack, u32 in_flight)
Stephen Hemmingerb87d8562005-06-23 12:27:19 -0700162{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300163 struct tcp_sock *tp = tcp_sk(sk);
164 struct vegas *vegas = inet_csk_ca(sk);
Stephen Hemmingerb87d8562005-06-23 12:27:19 -0700165
Harvey Harrisonab598592008-05-01 02:47:38 -0700166 if (!vegas->doing_vegas_now) {
167 tcp_reno_cong_avoid(sk, ack, in_flight);
168 return;
169 }
Stephen Hemmingerb87d8562005-06-23 12:27:19 -0700170
Stephen Hemmingerb87d8562005-06-23 12:27:19 -0700171 if (after(ack, vegas->beg_snd_nxt)) {
172 /* Do the Vegas once-per-RTT cwnd adjustment. */
Stephen Hemmingerb87d8562005-06-23 12:27:19 -0700173
174 /* Save the extent of the current window so we can use this
175 * at the end of the next RTT.
176 */
Stephen Hemmingerb87d8562005-06-23 12:27:19 -0700177 vegas->beg_snd_nxt = tp->snd_nxt;
Stephen Hemmingerb87d8562005-06-23 12:27:19 -0700178
Stephen Hemmingerb87d8562005-06-23 12:27:19 -0700179 /* We do the Vegas calculations only if we got enough RTT
180 * samples that we can be reasonably sure that we got
181 * at least one RTT sample that wasn't from a delayed ACK.
182 * If we only had 2 samples total,
183 * then that means we're getting only 1 ACK per RTT, which
184 * means they're almost certainly delayed ACKs.
185 * If we have 3 samples, we should be OK.
186 */
187
188 if (vegas->cntRTT <= 2) {
189 /* We don't have enough RTT samples to do the Vegas
190 * calculation, so we'll behave like Reno.
191 */
Ilpo Järvinenc3a05c62007-12-02 00:47:59 +0200192 tcp_reno_cong_avoid(sk, ack, in_flight);
Stephen Hemmingerb87d8562005-06-23 12:27:19 -0700193 } else {
Lachlan Andrew15913112008-04-30 01:04:03 -0700194 u32 rtt, diff;
195 u64 target_cwnd;
Stephen Hemmingerb87d8562005-06-23 12:27:19 -0700196
197 /* We have enough RTT samples, so, using the Vegas
198 * algorithm, we determine if we should increase or
199 * decrease cwnd, and by how much.
200 */
201
202 /* Pluck out the RTT we are using for the Vegas
203 * calculations. This is the min RTT seen during the
204 * last RTT. Taking the min filters out the effects
205 * of delayed ACKs, at the cost of noticing congestion
206 * a bit later.
207 */
208 rtt = vegas->minRTT;
209
210 /* Calculate the cwnd we should have, if we weren't
211 * going too fast.
212 *
213 * This is:
214 * (actual rate in segments) * baseRTT
Stephen Hemmingerb87d8562005-06-23 12:27:19 -0700215 */
Doug Leith8d3a5642008-12-09 00:13:04 -0800216 target_cwnd = tp->snd_cwnd * vegas->baseRTT / rtt;
Stephen Hemmingerb87d8562005-06-23 12:27:19 -0700217
218 /* Calculate the difference between the window we had,
219 * and the window we would like to have. This quantity
220 * is the "Diff" from the Arizona Vegas papers.
Stephen Hemmingerb87d8562005-06-23 12:27:19 -0700221 */
Doug Leith8d3a5642008-12-09 00:13:04 -0800222 diff = tp->snd_cwnd * (rtt-vegas->baseRTT) / vegas->baseRTT;
Stephen Hemmingerb87d8562005-06-23 12:27:19 -0700223
Xiaoliang (David) Weic9405872007-10-29 20:24:36 -0700224 if (diff > gamma && tp->snd_ssthresh > 2 ) {
225 /* Going too fast. Time to slow down
226 * and switch to congestion avoidance.
227 */
228 tp->snd_ssthresh = 2;
229
230 /* Set cwnd to match the actual rate
231 * exactly:
232 * cwnd = (actual rate) * baseRTT
233 * Then we add 1 because the integer
234 * truncation robs us of full link
235 * utilization.
236 */
Doug Leith8d3a5642008-12-09 00:13:04 -0800237 tp->snd_cwnd = min(tp->snd_cwnd, (u32)target_cwnd+1);
Xiaoliang (David) Weic9405872007-10-29 20:24:36 -0700238
239 } else if (tp->snd_cwnd <= tp->snd_ssthresh) {
Stephen Hemmingerb87d8562005-06-23 12:27:19 -0700240 /* Slow start. */
Stephen Hemminger7faffa12005-11-10 17:07:24 -0800241 tcp_slow_start(tp);
Stephen Hemmingerb87d8562005-06-23 12:27:19 -0700242 } else {
243 /* Congestion avoidance. */
Stephen Hemmingerb87d8562005-06-23 12:27:19 -0700244
245 /* Figure out where we would like cwnd
246 * to be.
247 */
248 if (diff > beta) {
249 /* The old window was too fast, so
250 * we slow down.
251 */
Doug Leith8d3a5642008-12-09 00:13:04 -0800252 tp->snd_cwnd--;
Stephen Hemmingerb87d8562005-06-23 12:27:19 -0700253 } else if (diff < alpha) {
254 /* We don't have enough extra packets
255 * in the network, so speed up.
256 */
Doug Leith8d3a5642008-12-09 00:13:04 -0800257 tp->snd_cwnd++;
Stephen Hemmingerb87d8562005-06-23 12:27:19 -0700258 } else {
259 /* Sending just as fast as we
260 * should be.
261 */
Stephen Hemmingerb87d8562005-06-23 12:27:19 -0700262 }
Stephen Hemmingerb87d8562005-06-23 12:27:19 -0700263 }
Stephen Hemmingerb87d8562005-06-23 12:27:19 -0700264
Stephen Hemminger7faffa12005-11-10 17:07:24 -0800265 if (tp->snd_cwnd < 2)
266 tp->snd_cwnd = 2;
267 else if (tp->snd_cwnd > tp->snd_cwnd_clamp)
268 tp->snd_cwnd = tp->snd_cwnd_clamp;
Doug Leitha6af2d62008-12-04 17:17:18 -0800269
270 tp->snd_ssthresh = tcp_current_ssthresh(sk);
Stephen Hemminger7faffa12005-11-10 17:07:24 -0800271 }
Stephen Hemmingerb87d8562005-06-23 12:27:19 -0700272
Thomas Young5b495612005-12-06 16:16:34 -0800273 /* Wipe the slate clean for the next RTT. */
274 vegas->cntRTT = 0;
275 vegas->minRTT = 0x7fffffff;
276 }
Thomas Young74cb8792006-01-04 13:59:32 -0800277 /* Use normal slow start */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900278 else if (tp->snd_cwnd <= tp->snd_ssthresh)
Thomas Young74cb8792006-01-04 13:59:32 -0800279 tcp_slow_start(tp);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900280
Stephen Hemmingerb87d8562005-06-23 12:27:19 -0700281}
282
283/* Extract info for Tcp socket info provided via netlink. */
Stephen Hemminger77522372007-04-23 22:28:23 -0700284void tcp_vegas_get_info(struct sock *sk, u32 ext, struct sk_buff *skb)
Stephen Hemmingerb87d8562005-06-23 12:27:19 -0700285{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300286 const struct vegas *ca = inet_csk_ca(sk);
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300287 if (ext & (1 << (INET_DIAG_VEGASINFO - 1))) {
Thomas Grafe9195d62007-03-22 23:27:01 -0700288 struct tcpvegas_info info = {
289 .tcpv_enabled = ca->doing_vegas_now,
290 .tcpv_rttcnt = ca->cntRTT,
291 .tcpv_rtt = ca->baseRTT,
292 .tcpv_minrtt = ca->minRTT,
293 };
Stephen Hemmingerb87d8562005-06-23 12:27:19 -0700294
Thomas Grafe9195d62007-03-22 23:27:01 -0700295 nla_put(skb, INET_DIAG_VEGASINFO, sizeof(info), &info);
Stephen Hemmingerb87d8562005-06-23 12:27:19 -0700296 }
297}
Stephen Hemminger77522372007-04-23 22:28:23 -0700298EXPORT_SYMBOL_GPL(tcp_vegas_get_info);
Stephen Hemmingerb87d8562005-06-23 12:27:19 -0700299
300static struct tcp_congestion_ops tcp_vegas = {
Stephen Hemminger164891a2007-04-23 22:26:16 -0700301 .flags = TCP_CONG_RTT_STAMP,
Stephen Hemmingerb87d8562005-06-23 12:27:19 -0700302 .init = tcp_vegas_init,
303 .ssthresh = tcp_reno_ssthresh,
304 .cong_avoid = tcp_vegas_cong_avoid,
305 .min_cwnd = tcp_reno_min_cwnd,
Stephen Hemminger164891a2007-04-23 22:26:16 -0700306 .pkts_acked = tcp_vegas_pkts_acked,
Stephen Hemmingerb87d8562005-06-23 12:27:19 -0700307 .set_state = tcp_vegas_state,
308 .cwnd_event = tcp_vegas_cwnd_event,
309 .get_info = tcp_vegas_get_info,
310
311 .owner = THIS_MODULE,
312 .name = "vegas",
313};
314
315static int __init tcp_vegas_register(void)
316{
Alexey Dobriyan74975d42006-08-25 17:10:33 -0700317 BUILD_BUG_ON(sizeof(struct vegas) > ICSK_CA_PRIV_SIZE);
Stephen Hemmingerb87d8562005-06-23 12:27:19 -0700318 tcp_register_congestion_control(&tcp_vegas);
319 return 0;
320}
321
322static void __exit tcp_vegas_unregister(void)
323{
324 tcp_unregister_congestion_control(&tcp_vegas);
325}
326
327module_init(tcp_vegas_register);
328module_exit(tcp_vegas_unregister);
329
330MODULE_AUTHOR("Stephen Hemminger");
331MODULE_LICENSE("GPL");
332MODULE_DESCRIPTION("TCP Vegas");