blob: 4247da1384bfb25487b51add257cb8d852ec8327 [file] [log] [blame]
Stephen Hemminger87270762005-06-23 12:24:09 -07001/*
Luca De Ciccob7d7a9e2006-06-11 23:01:39 -07002 * TCP Westwood+: end-to-end bandwidth estimation for TCP
Stephen Hemminger87270762005-06-23 12:24:09 -07003 *
Luca De Ciccob7d7a9e2006-06-11 23:01:39 -07004 * Angelo Dell'Aera: author of the first version of TCP Westwood+ in Linux 2.4
5 *
6 * Support at http://c3lab.poliba.it/index.php/Westwood
7 * Main references in literature:
8 *
9 * - Mascolo S, Casetti, M. Gerla et al.
10 * "TCP Westwood: bandwidth estimation for TCP" Proc. ACM Mobicom 2001
11 *
12 * - A. Grieco, s. Mascolo
13 * "Performance evaluation of New Reno, Vegas, Westwood+ TCP" ACM Computer
14 * Comm. Review, 2004
15 *
16 * - A. Dell'Aera, L. Grieco, S. Mascolo.
17 * "Linux 2.4 Implementation of Westwood+ TCP with Rate-Halving :
18 * A Performance Evaluation Over the Internet" (ICC 2004), Paris, June 2004
19 *
20 * Westwood+ employs end-to-end bandwidth measurement to set cwnd and
21 * ssthresh after packet loss. The probing phase is as the original Reno.
Stephen Hemminger87270762005-06-23 12:24:09 -070022 */
23
24#include <linux/config.h>
25#include <linux/mm.h>
26#include <linux/module.h>
27#include <linux/skbuff.h>
Arnaldo Carvalho de Meloa8c21902005-08-12 12:56:38 -030028#include <linux/inet_diag.h>
Stephen Hemminger87270762005-06-23 12:24:09 -070029#include <net/tcp.h>
30
31/* TCP Westwood structure */
32struct westwood {
33 u32 bw_ns_est; /* first bandwidth estimation..not too smoothed 8) */
34 u32 bw_est; /* bandwidth estimate */
35 u32 rtt_win_sx; /* here starts a new evaluation... */
36 u32 bk;
37 u32 snd_una; /* used for evaluating the number of acked bytes */
38 u32 cumul_ack;
39 u32 accounted;
40 u32 rtt;
41 u32 rtt_min; /* minimum observed RTT */
Stephen Hemmingerf61e2902006-06-11 23:01:02 -070042 u8 first_ack; /* flag which infers that this is the first ack */
Luca De Ciccobc726a72006-06-11 23:02:19 -070043 u8 reset_rtt_min; /* Reset RTT min to next RTT sample*/
Stephen Hemminger87270762005-06-23 12:24:09 -070044};
45
46
47/* TCP Westwood functions and constants */
48#define TCP_WESTWOOD_RTT_MIN (HZ/20) /* 50ms */
49#define TCP_WESTWOOD_INIT_RTT (20*HZ) /* maybe too conservative?! */
50
51/*
52 * @tcp_westwood_create
53 * This function initializes fields used in TCP Westwood+,
54 * it is called after the initial SYN, so the sequence numbers
55 * are correct but new passive connections we have no
56 * information about RTTmin at this time so we simply set it to
57 * TCP_WESTWOOD_INIT_RTT. This value was chosen to be too conservative
58 * since in this way we're sure it will be updated in a consistent
59 * way as soon as possible. It will reasonably happen within the first
60 * RTT period of the connection lifetime.
61 */
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -030062static void tcp_westwood_init(struct sock *sk)
Stephen Hemminger87270762005-06-23 12:24:09 -070063{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -030064 struct westwood *w = inet_csk_ca(sk);
Stephen Hemminger87270762005-06-23 12:24:09 -070065
66 w->bk = 0;
67 w->bw_ns_est = 0;
68 w->bw_est = 0;
69 w->accounted = 0;
70 w->cumul_ack = 0;
Luca De Ciccobc726a72006-06-11 23:02:19 -070071 w->reset_rtt_min = 1;
Stephen Hemminger87270762005-06-23 12:24:09 -070072 w->rtt_min = w->rtt = TCP_WESTWOOD_INIT_RTT;
73 w->rtt_win_sx = tcp_time_stamp;
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -030074 w->snd_una = tcp_sk(sk)->snd_una;
Stephen Hemmingerf61e2902006-06-11 23:01:02 -070075 w->first_ack = 1;
Stephen Hemminger87270762005-06-23 12:24:09 -070076}
77
78/*
79 * @westwood_do_filter
80 * Low-pass filter. Implemented using constant coefficients.
81 */
82static inline u32 westwood_do_filter(u32 a, u32 b)
83{
84 return (((7 * a) + b) >> 3);
85}
86
Luca De Ciccob3a92ea2006-06-11 23:01:59 -070087static void westwood_filter(struct westwood *w, u32 delta)
Stephen Hemminger87270762005-06-23 12:24:09 -070088{
Luca De Ciccob3a92ea2006-06-11 23:01:59 -070089 /* If the filter is empty fill it with the first sample of bandwidth */
90 if (w->bw_ns_est == 0 && w->bw_est == 0) {
91 w->bw_ns_est = w->bk / delta;
92 w->bw_est = w->bw_ns_est;
93 } else {
94 w->bw_ns_est = westwood_do_filter(w->bw_ns_est, w->bk / delta);
95 w->bw_est = westwood_do_filter(w->bw_est, w->bw_ns_est);
96 }
Stephen Hemminger87270762005-06-23 12:24:09 -070097}
98
99/*
100 * @westwood_pkts_acked
101 * Called after processing group of packets.
102 * but all westwood needs is the last sample of srtt.
103 */
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300104static void tcp_westwood_pkts_acked(struct sock *sk, u32 cnt)
Stephen Hemminger87270762005-06-23 12:24:09 -0700105{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300106 struct westwood *w = inet_csk_ca(sk);
Stephen Hemminger87270762005-06-23 12:24:09 -0700107 if (cnt > 0)
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300108 w->rtt = tcp_sk(sk)->srtt >> 3;
Stephen Hemminger87270762005-06-23 12:24:09 -0700109}
110
111/*
112 * @westwood_update_window
113 * It updates RTT evaluation window if it is the right moment to do
114 * it. If so it calls filter for evaluating bandwidth.
115 */
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300116static void westwood_update_window(struct sock *sk)
Stephen Hemminger87270762005-06-23 12:24:09 -0700117{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300118 struct westwood *w = inet_csk_ca(sk);
Stephen Hemminger87270762005-06-23 12:24:09 -0700119 s32 delta = tcp_time_stamp - w->rtt_win_sx;
120
Luca De Ciccob7d7a9e2006-06-11 23:01:39 -0700121 /* Initialize w->snd_una with the first acked sequence number in order
Stephen Hemmingerf61e2902006-06-11 23:01:02 -0700122 * to fix mismatch between tp->snd_una and w->snd_una for the first
123 * bandwidth sample
124 */
125 if (w->first_ack) {
126 w->snd_una = tcp_sk(sk)->snd_una;
127 w->first_ack = 0;
128 }
129
Stephen Hemminger87270762005-06-23 12:24:09 -0700130 /*
131 * See if a RTT-window has passed.
132 * Be careful since if RTT is less than
133 * 50ms we don't filter but we continue 'building the sample'.
134 * This minimum limit was chosen since an estimation on small
135 * time intervals is better to avoid...
136 * Obviously on a LAN we reasonably will always have
137 * right_bound = left_bound + WESTWOOD_RTT_MIN
138 */
139 if (w->rtt && delta > max_t(u32, w->rtt, TCP_WESTWOOD_RTT_MIN)) {
140 westwood_filter(w, delta);
141
142 w->bk = 0;
143 w->rtt_win_sx = tcp_time_stamp;
144 }
145}
146
Luca De Ciccobc726a72006-06-11 23:02:19 -0700147static inline void update_rtt_min(struct westwood *w)
148{
149 if (w->reset_rtt_min) {
150 w->rtt_min = w->rtt;
151 w->reset_rtt_min = 0;
152 } else
153 w->rtt_min = min(w->rtt, w->rtt_min);
154}
155
156
Stephen Hemminger87270762005-06-23 12:24:09 -0700157/*
158 * @westwood_fast_bw
159 * It is called when we are in fast path. In particular it is called when
160 * header prediction is successful. In such case in fact update is
161 * straight forward and doesn't need any particular care.
162 */
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300163static inline void westwood_fast_bw(struct sock *sk)
Stephen Hemminger87270762005-06-23 12:24:09 -0700164{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300165 const struct tcp_sock *tp = tcp_sk(sk);
166 struct westwood *w = inet_csk_ca(sk);
Stephen Hemminger87270762005-06-23 12:24:09 -0700167
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300168 westwood_update_window(sk);
Stephen Hemminger87270762005-06-23 12:24:09 -0700169
170 w->bk += tp->snd_una - w->snd_una;
171 w->snd_una = tp->snd_una;
Luca De Ciccobc726a72006-06-11 23:02:19 -0700172 update_rtt_min(w);
Stephen Hemminger87270762005-06-23 12:24:09 -0700173}
174
175/*
176 * @westwood_acked_count
177 * This function evaluates cumul_ack for evaluating bk in case of
178 * delayed or partial acks.
179 */
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300180static inline u32 westwood_acked_count(struct sock *sk)
Stephen Hemminger87270762005-06-23 12:24:09 -0700181{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300182 const struct tcp_sock *tp = tcp_sk(sk);
183 struct westwood *w = inet_csk_ca(sk);
Stephen Hemminger87270762005-06-23 12:24:09 -0700184
185 w->cumul_ack = tp->snd_una - w->snd_una;
186
187 /* If cumul_ack is 0 this is a dupack since it's not moving
188 * tp->snd_una.
189 */
190 if (!w->cumul_ack) {
191 w->accounted += tp->mss_cache;
192 w->cumul_ack = tp->mss_cache;
193 }
194
195 if (w->cumul_ack > tp->mss_cache) {
196 /* Partial or delayed ack */
197 if (w->accounted >= w->cumul_ack) {
198 w->accounted -= w->cumul_ack;
199 w->cumul_ack = tp->mss_cache;
200 } else {
201 w->cumul_ack -= w->accounted;
202 w->accounted = 0;
203 }
204 }
205
206 w->snd_una = tp->snd_una;
207
208 return w->cumul_ack;
209}
210
Stephen Hemminger87270762005-06-23 12:24:09 -0700211
212/*
213 * TCP Westwood
214 * Here limit is evaluated as Bw estimation*RTTmin (for obtaining it
215 * in packets we use mss_cache). Rttmin is guaranteed to be >= 2
216 * so avoids ever returning 0.
217 */
Stephen Hemminger72dc5b92006-06-05 17:30:08 -0700218static u32 tcp_westwood_bw_rttmin(const struct sock *sk)
Stephen Hemminger87270762005-06-23 12:24:09 -0700219{
Stephen Hemminger72dc5b92006-06-05 17:30:08 -0700220 const struct tcp_sock *tp = tcp_sk(sk);
221 const struct westwood *w = inet_csk_ca(sk);
222 return max_t(u32, (w->bw_est * w->rtt_min) / tp->mss_cache, 2);
Stephen Hemminger87270762005-06-23 12:24:09 -0700223}
224
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300225static void tcp_westwood_event(struct sock *sk, enum tcp_ca_event event)
Stephen Hemminger87270762005-06-23 12:24:09 -0700226{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300227 struct tcp_sock *tp = tcp_sk(sk);
228 struct westwood *w = inet_csk_ca(sk);
Luca De Ciccob7d7a9e2006-06-11 23:01:39 -0700229
Stephen Hemminger87270762005-06-23 12:24:09 -0700230 switch(event) {
231 case CA_EVENT_FAST_ACK:
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300232 westwood_fast_bw(sk);
Stephen Hemminger87270762005-06-23 12:24:09 -0700233 break;
234
235 case CA_EVENT_COMPLETE_CWR:
Stephen Hemminger72dc5b92006-06-05 17:30:08 -0700236 tp->snd_cwnd = tp->snd_ssthresh = tcp_westwood_bw_rttmin(sk);
Stephen Hemminger87270762005-06-23 12:24:09 -0700237 break;
238
239 case CA_EVENT_FRTO:
Stephen Hemminger72dc5b92006-06-05 17:30:08 -0700240 tp->snd_ssthresh = tcp_westwood_bw_rttmin(sk);
Luca De Ciccobc726a72006-06-11 23:02:19 -0700241 /* Update RTT_min when next ack arrives */
242 w->reset_rtt_min = 1;
Stephen Hemminger87270762005-06-23 12:24:09 -0700243 break;
244
245 case CA_EVENT_SLOW_ACK:
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300246 westwood_update_window(sk);
247 w->bk += westwood_acked_count(sk);
Luca De Ciccobc726a72006-06-11 23:02:19 -0700248 update_rtt_min(w);
Stephen Hemminger87270762005-06-23 12:24:09 -0700249 break;
250
251 default:
252 /* don't care */
253 break;
254 }
255}
256
257
258/* Extract info for Tcp socket info provided via netlink. */
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300259static void tcp_westwood_info(struct sock *sk, u32 ext,
Stephen Hemminger87270762005-06-23 12:24:09 -0700260 struct sk_buff *skb)
261{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300262 const struct westwood *ca = inet_csk_ca(sk);
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300263 if (ext & (1 << (INET_DIAG_VEGASINFO - 1))) {
Stephen Hemminger87270762005-06-23 12:24:09 -0700264 struct rtattr *rta;
265 struct tcpvegas_info *info;
266
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300267 rta = __RTA_PUT(skb, INET_DIAG_VEGASINFO, sizeof(*info));
Stephen Hemminger87270762005-06-23 12:24:09 -0700268 info = RTA_DATA(rta);
269 info->tcpv_enabled = 1;
270 info->tcpv_rttcnt = 0;
271 info->tcpv_rtt = jiffies_to_usecs(ca->rtt);
272 info->tcpv_minrtt = jiffies_to_usecs(ca->rtt_min);
273 rtattr_failure: ;
274 }
275}
276
277
278static struct tcp_congestion_ops tcp_westwood = {
279 .init = tcp_westwood_init,
280 .ssthresh = tcp_reno_ssthresh,
281 .cong_avoid = tcp_reno_cong_avoid,
Stephen Hemminger72dc5b92006-06-05 17:30:08 -0700282 .min_cwnd = tcp_westwood_bw_rttmin,
Stephen Hemminger87270762005-06-23 12:24:09 -0700283 .cwnd_event = tcp_westwood_event,
284 .get_info = tcp_westwood_info,
285 .pkts_acked = tcp_westwood_pkts_acked,
286
287 .owner = THIS_MODULE,
288 .name = "westwood"
289};
290
291static int __init tcp_westwood_register(void)
292{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300293 BUG_ON(sizeof(struct westwood) > ICSK_CA_PRIV_SIZE);
Stephen Hemminger87270762005-06-23 12:24:09 -0700294 return tcp_register_congestion_control(&tcp_westwood);
295}
296
297static void __exit tcp_westwood_unregister(void)
298{
299 tcp_unregister_congestion_control(&tcp_westwood);
300}
301
302module_init(tcp_westwood_register);
303module_exit(tcp_westwood_unregister);
304
305MODULE_AUTHOR("Stephen Hemminger, Angelo Dell'Aera");
306MODULE_LICENSE("GPL");
307MODULE_DESCRIPTION("TCP Westwood+");