]>
Commit | Line | Data |
---|---|---|
a7868ea6 BE |
1 | /* |
2 | * H-TCP congestion control. The algorithm is detailed in: | |
3 | * R.N.Shorten, D.J.Leith: | |
4 | * "H-TCP: TCP for high-speed and long-distance networks" | |
5 | * Proc. PFLDnet, Argonne, 2004. | |
6 | * http://www.hamilton.ie/net/htcp3.pdf | |
7 | */ | |
8 | ||
a7868ea6 BE |
9 | #include <linux/mm.h> |
10 | #include <linux/module.h> | |
11 | #include <net/tcp.h> | |
12 | ||
9121c777 SH |
13 | #define ALPHA_BASE (1<<7) /* 1.0 with shift << 7 */ |
14 | #define BETA_MIN (1<<6) /* 0.5 with shift << 7 */ | |
a7868ea6 BE |
15 | #define BETA_MAX 102 /* 0.8 with shift << 7 */ |
16 | ||
9121c777 | 17 | static int use_rtt_scaling __read_mostly = 1; |
a7868ea6 BE |
18 | module_param(use_rtt_scaling, int, 0644); |
19 | MODULE_PARM_DESC(use_rtt_scaling, "turn on/off RTT scaling"); | |
20 | ||
9121c777 | 21 | static int use_bandwidth_switch __read_mostly = 1; |
a7868ea6 BE |
22 | module_param(use_bandwidth_switch, int, 0644); |
23 | MODULE_PARM_DESC(use_bandwidth_switch, "turn on/off bandwidth switcher"); | |
24 | ||
25 | struct htcp { | |
2a272f98 | 26 | u32 alpha; /* Fixed point arith, << 7 */ |
a7868ea6 | 27 | u8 beta; /* Fixed point arith, << 7 */ |
9121c777 SH |
28 | u8 modeswitch; /* Delay modeswitch |
29 | until we had at least one congestion event */ | |
0bc6d90b BE |
30 | u16 pkts_acked; |
31 | u32 packetcount; | |
a7868ea6 BE |
32 | u32 minRTT; |
33 | u32 maxRTT; | |
2404043a DM |
34 | u32 last_cong; /* Time since last congestion event end */ |
35 | u32 undo_last_cong; | |
a7868ea6 BE |
36 | |
37 | u32 undo_maxRTT; | |
38 | u32 undo_old_maxB; | |
39 | ||
40 | /* Bandwidth estimation */ | |
41 | u32 minB; | |
42 | u32 maxB; | |
43 | u32 old_maxB; | |
44 | u32 Bi; | |
45 | u32 lasttime; | |
46 | }; | |
47 | ||
9121c777 | 48 | static inline u32 htcp_cong_time(const struct htcp *ca) |
50bf3e22 BE |
49 | { |
50 | return jiffies - ca->last_cong; | |
51 | } | |
52 | ||
9121c777 | 53 | static inline u32 htcp_ccount(const struct htcp *ca) |
50bf3e22 | 54 | { |
9121c777 | 55 | return htcp_cong_time(ca) / ca->minRTT; |
50bf3e22 BE |
56 | } |
57 | ||
a7868ea6 BE |
58 | static inline void htcp_reset(struct htcp *ca) |
59 | { | |
50bf3e22 | 60 | ca->undo_last_cong = ca->last_cong; |
a7868ea6 BE |
61 | ca->undo_maxRTT = ca->maxRTT; |
62 | ca->undo_old_maxB = ca->old_maxB; | |
63 | ||
50bf3e22 | 64 | ca->last_cong = jiffies; |
a7868ea6 BE |
65 | } |
66 | ||
6687e988 | 67 | static u32 htcp_cwnd_undo(struct sock *sk) |
a7868ea6 | 68 | { |
6687e988 ACM |
69 | const struct tcp_sock *tp = tcp_sk(sk); |
70 | struct htcp *ca = inet_csk_ca(sk); | |
9121c777 | 71 | |
50bf3e22 | 72 | ca->last_cong = ca->undo_last_cong; |
a7868ea6 BE |
73 | ca->maxRTT = ca->undo_maxRTT; |
74 | ca->old_maxB = ca->undo_old_maxB; | |
9121c777 SH |
75 | |
76 | return max(tp->snd_cwnd, (tp->snd_ssthresh << 7) / ca->beta); | |
a7868ea6 BE |
77 | } |
78 | ||
113bbbd8 | 79 | static inline void measure_rtt(struct sock *sk, u32 srtt) |
a7868ea6 | 80 | { |
6687e988 | 81 | const struct inet_connection_sock *icsk = inet_csk(sk); |
6687e988 | 82 | struct htcp *ca = inet_csk_ca(sk); |
a7868ea6 BE |
83 | |
84 | /* keep track of minimum RTT seen so far, minRTT is zero at first */ | |
85 | if (ca->minRTT > srtt || !ca->minRTT) | |
86 | ca->minRTT = srtt; | |
87 | ||
88 | /* max RTT */ | |
f34d1955 | 89 | if (icsk->icsk_ca_state == TCP_CA_Open) { |
a7868ea6 BE |
90 | if (ca->maxRTT < ca->minRTT) |
91 | ca->maxRTT = ca->minRTT; | |
9121c777 SH |
92 | if (ca->maxRTT < srtt |
93 | && srtt <= ca->maxRTT + msecs_to_jiffies(20)) | |
a7868ea6 BE |
94 | ca->maxRTT = srtt; |
95 | } | |
96 | } | |
97 | ||
30cfd0ba | 98 | static void measure_achieved_throughput(struct sock *sk, u32 pkts_acked, s32 rtt) |
a7868ea6 | 99 | { |
6687e988 ACM |
100 | const struct inet_connection_sock *icsk = inet_csk(sk); |
101 | const struct tcp_sock *tp = tcp_sk(sk); | |
102 | struct htcp *ca = inet_csk_ca(sk); | |
a7868ea6 BE |
103 | u32 now = tcp_time_stamp; |
104 | ||
0bc6d90b BE |
105 | if (icsk->icsk_ca_state == TCP_CA_Open) |
106 | ca->pkts_acked = pkts_acked; | |
107 | ||
113bbbd8 SH |
108 | if (rtt > 0) |
109 | measure_rtt(sk, usecs_to_jiffies(rtt)); | |
110 | ||
0bc6d90b BE |
111 | if (!use_bandwidth_switch) |
112 | return; | |
113 | ||
a7868ea6 | 114 | /* achieved throughput calculations */ |
6687e988 ACM |
115 | if (icsk->icsk_ca_state != TCP_CA_Open && |
116 | icsk->icsk_ca_state != TCP_CA_Disorder) { | |
a7868ea6 BE |
117 | ca->packetcount = 0; |
118 | ca->lasttime = now; | |
119 | return; | |
120 | } | |
121 | ||
122 | ca->packetcount += pkts_acked; | |
123 | ||
9121c777 SH |
124 | if (ca->packetcount >= tp->snd_cwnd - (ca->alpha >> 7 ? : 1) |
125 | && now - ca->lasttime >= ca->minRTT | |
126 | && ca->minRTT > 0) { | |
127 | __u32 cur_Bi = ca->packetcount * HZ / (now - ca->lasttime); | |
128 | ||
50bf3e22 | 129 | if (htcp_ccount(ca) <= 3) { |
a7868ea6 BE |
130 | /* just after backoff */ |
131 | ca->minB = ca->maxB = ca->Bi = cur_Bi; | |
132 | } else { | |
9121c777 | 133 | ca->Bi = (3 * ca->Bi + cur_Bi) / 4; |
a7868ea6 BE |
134 | if (ca->Bi > ca->maxB) |
135 | ca->maxB = ca->Bi; | |
136 | if (ca->minB > ca->maxB) | |
137 | ca->minB = ca->maxB; | |
138 | } | |
139 | ca->packetcount = 0; | |
140 | ca->lasttime = now; | |
141 | } | |
142 | } | |
143 | ||
144 | static inline void htcp_beta_update(struct htcp *ca, u32 minRTT, u32 maxRTT) | |
145 | { | |
146 | if (use_bandwidth_switch) { | |
147 | u32 maxB = ca->maxB; | |
148 | u32 old_maxB = ca->old_maxB; | |
149 | ca->old_maxB = ca->maxB; | |
150 | ||
9121c777 | 151 | if (!between(5 * maxB, 4 * old_maxB, 6 * old_maxB)) { |
a7868ea6 BE |
152 | ca->beta = BETA_MIN; |
153 | ca->modeswitch = 0; | |
154 | return; | |
155 | } | |
156 | } | |
157 | ||
c33ad6e4 | 158 | if (ca->modeswitch && minRTT > msecs_to_jiffies(10) && maxRTT) { |
9121c777 | 159 | ca->beta = (minRTT << 7) / maxRTT; |
a7868ea6 BE |
160 | if (ca->beta < BETA_MIN) |
161 | ca->beta = BETA_MIN; | |
162 | else if (ca->beta > BETA_MAX) | |
163 | ca->beta = BETA_MAX; | |
164 | } else { | |
165 | ca->beta = BETA_MIN; | |
166 | ca->modeswitch = 1; | |
167 | } | |
168 | } | |
169 | ||
170 | static inline void htcp_alpha_update(struct htcp *ca) | |
171 | { | |
172 | u32 minRTT = ca->minRTT; | |
173 | u32 factor = 1; | |
50bf3e22 | 174 | u32 diff = htcp_cong_time(ca); |
a7868ea6 BE |
175 | |
176 | if (diff > HZ) { | |
177 | diff -= HZ; | |
9121c777 | 178 | factor = 1 + (10 * diff + ((diff / 2) * (diff / 2) / HZ)) / HZ; |
a7868ea6 BE |
179 | } |
180 | ||
181 | if (use_rtt_scaling && minRTT) { | |
9121c777 SH |
182 | u32 scale = (HZ << 3) / (10 * minRTT); |
183 | ||
184 | /* clamping ratio to interval [0.5,10]<<3 */ | |
185 | scale = min(max(scale, 1U << 2), 10U << 3); | |
186 | factor = (factor << 3) / scale; | |
a7868ea6 BE |
187 | if (!factor) |
188 | factor = 1; | |
189 | } | |
190 | ||
9121c777 | 191 | ca->alpha = 2 * factor * ((1 << 7) - ca->beta); |
a7868ea6 BE |
192 | if (!ca->alpha) |
193 | ca->alpha = ALPHA_BASE; | |
194 | } | |
195 | ||
9121c777 SH |
196 | /* |
197 | * After we have the rtt data to calculate beta, we'd still prefer to wait one | |
a7868ea6 BE |
198 | * rtt before we adjust our beta to ensure we are working from a consistent |
199 | * data. | |
200 | * | |
201 | * This function should be called when we hit a congestion event since only at | |
202 | * that point do we really have a real sense of maxRTT (the queues en route | |
203 | * were getting just too full now). | |
204 | */ | |
6687e988 | 205 | static void htcp_param_update(struct sock *sk) |
a7868ea6 | 206 | { |
6687e988 | 207 | struct htcp *ca = inet_csk_ca(sk); |
a7868ea6 BE |
208 | u32 minRTT = ca->minRTT; |
209 | u32 maxRTT = ca->maxRTT; | |
210 | ||
211 | htcp_beta_update(ca, minRTT, maxRTT); | |
212 | htcp_alpha_update(ca); | |
213 | ||
9121c777 | 214 | /* add slowly fading memory for maxRTT to accommodate routing changes */ |
a7868ea6 | 215 | if (minRTT > 0 && maxRTT > minRTT) |
9121c777 | 216 | ca->maxRTT = minRTT + ((maxRTT - minRTT) * 95) / 100; |
a7868ea6 BE |
217 | } |
218 | ||
6687e988 | 219 | static u32 htcp_recalc_ssthresh(struct sock *sk) |
a7868ea6 | 220 | { |
6687e988 ACM |
221 | const struct tcp_sock *tp = tcp_sk(sk); |
222 | const struct htcp *ca = inet_csk_ca(sk); | |
9121c777 | 223 | |
6687e988 | 224 | htcp_param_update(sk); |
a7868ea6 BE |
225 | return max((tp->snd_cwnd * ca->beta) >> 7, 2U); |
226 | } | |
227 | ||
c3a05c60 | 228 | static void htcp_cong_avoid(struct sock *sk, u32 ack, u32 in_flight) |
a7868ea6 | 229 | { |
6687e988 ACM |
230 | struct tcp_sock *tp = tcp_sk(sk); |
231 | struct htcp *ca = inet_csk_ca(sk); | |
a7868ea6 | 232 | |
f4805ede | 233 | if (!tcp_is_cwnd_limited(sk, in_flight)) |
a7868ea6 BE |
234 | return; |
235 | ||
e905a9ed | 236 | if (tp->snd_cwnd <= tp->snd_ssthresh) |
7faffa1c SH |
237 | tcp_slow_start(tp); |
238 | else { | |
7faffa1c | 239 | /* In dangerous area, increase slowly. |
a7868ea6 BE |
240 | * In theory this is tp->snd_cwnd += alpha / tp->snd_cwnd |
241 | */ | |
0bc6d90b | 242 | if ((tp->snd_cwnd_cnt * ca->alpha)>>7 >= tp->snd_cwnd) { |
a7868ea6 BE |
243 | if (tp->snd_cwnd < tp->snd_cwnd_clamp) |
244 | tp->snd_cwnd++; | |
245 | tp->snd_cwnd_cnt = 0; | |
50bf3e22 | 246 | htcp_alpha_update(ca); |
0bc6d90b BE |
247 | } else |
248 | tp->snd_cwnd_cnt += ca->pkts_acked; | |
249 | ||
250 | ca->pkts_acked = 1; | |
a7868ea6 BE |
251 | } |
252 | } | |
253 | ||
6687e988 | 254 | static void htcp_init(struct sock *sk) |
a7868ea6 | 255 | { |
6687e988 | 256 | struct htcp *ca = inet_csk_ca(sk); |
a7868ea6 BE |
257 | |
258 | memset(ca, 0, sizeof(struct htcp)); | |
259 | ca->alpha = ALPHA_BASE; | |
260 | ca->beta = BETA_MIN; | |
0bc6d90b | 261 | ca->pkts_acked = 1; |
50bf3e22 | 262 | ca->last_cong = jiffies; |
a7868ea6 BE |
263 | } |
264 | ||
6687e988 | 265 | static void htcp_state(struct sock *sk, u8 new_state) |
a7868ea6 BE |
266 | { |
267 | switch (new_state) { | |
50bf3e22 BE |
268 | case TCP_CA_Open: |
269 | { | |
270 | struct htcp *ca = inet_csk_ca(sk); | |
271 | ca->last_cong = jiffies; | |
272 | } | |
273 | break; | |
a7868ea6 BE |
274 | case TCP_CA_CWR: |
275 | case TCP_CA_Recovery: | |
276 | case TCP_CA_Loss: | |
6687e988 | 277 | htcp_reset(inet_csk_ca(sk)); |
a7868ea6 BE |
278 | break; |
279 | } | |
280 | } | |
281 | ||
282 | static struct tcp_congestion_ops htcp = { | |
283 | .init = htcp_init, | |
284 | .ssthresh = htcp_recalc_ssthresh, | |
a7868ea6 BE |
285 | .cong_avoid = htcp_cong_avoid, |
286 | .set_state = htcp_state, | |
287 | .undo_cwnd = htcp_cwnd_undo, | |
288 | .pkts_acked = measure_achieved_throughput, | |
289 | .owner = THIS_MODULE, | |
290 | .name = "htcp", | |
291 | }; | |
292 | ||
293 | static int __init htcp_register(void) | |
294 | { | |
74975d40 | 295 | BUILD_BUG_ON(sizeof(struct htcp) > ICSK_CA_PRIV_SIZE); |
a7868ea6 | 296 | BUILD_BUG_ON(BETA_MIN >= BETA_MAX); |
a7868ea6 BE |
297 | return tcp_register_congestion_control(&htcp); |
298 | } | |
299 | ||
300 | static void __exit htcp_unregister(void) | |
301 | { | |
302 | tcp_unregister_congestion_control(&htcp); | |
303 | } | |
304 | ||
305 | module_init(htcp_register); | |
306 | module_exit(htcp_unregister); | |
307 | ||
308 | MODULE_AUTHOR("Baruch Even"); | |
309 | MODULE_LICENSE("GPL"); | |
310 | MODULE_DESCRIPTION("H-TCP"); |