| John Heffner | a628d29 | 2005-06-23 12:24:58 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * Sally Floyd's High Speed TCP (RFC 3649) congestion control | 
|  | 3 | * | 
|  | 4 | * See http://www.icir.org/floyd/hstcp.html | 
|  | 5 | * | 
|  | 6 | * John Heffner <jheffner@psc.edu> | 
|  | 7 | */ | 
|  | 8 |  | 
| John Heffner | a628d29 | 2005-06-23 12:24:58 -0700 | [diff] [blame] | 9 | #include <linux/module.h> | 
|  | 10 | #include <net/tcp.h> | 
|  | 11 |  | 
|  | 12 |  | 
|  | 13 | /* From AIMD tables from RFC 3649 appendix B, | 
|  | 14 | * with fixed-point MD scaled <<8. | 
|  | 15 | */ | 
|  | 16 | static const struct hstcp_aimd_val { | 
| YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 17 | unsigned int cwnd; | 
|  | 18 | unsigned int md; | 
| John Heffner | a628d29 | 2005-06-23 12:24:58 -0700 | [diff] [blame] | 19 | } hstcp_aimd_vals[] = { | 
|  | 20 | {     38,  128, /*  0.50 */ }, | 
|  | 21 | {    118,  112, /*  0.44 */ }, | 
|  | 22 | {    221,  104, /*  0.41 */ }, | 
|  | 23 | {    347,   98, /*  0.38 */ }, | 
|  | 24 | {    495,   93, /*  0.37 */ }, | 
|  | 25 | {    663,   89, /*  0.35 */ }, | 
|  | 26 | {    851,   86, /*  0.34 */ }, | 
|  | 27 | {   1058,   83, /*  0.33 */ }, | 
|  | 28 | {   1284,   81, /*  0.32 */ }, | 
|  | 29 | {   1529,   78, /*  0.31 */ }, | 
|  | 30 | {   1793,   76, /*  0.30 */ }, | 
|  | 31 | {   2076,   74, /*  0.29 */ }, | 
|  | 32 | {   2378,   72, /*  0.28 */ }, | 
|  | 33 | {   2699,   71, /*  0.28 */ }, | 
|  | 34 | {   3039,   69, /*  0.27 */ }, | 
|  | 35 | {   3399,   68, /*  0.27 */ }, | 
|  | 36 | {   3778,   66, /*  0.26 */ }, | 
|  | 37 | {   4177,   65, /*  0.26 */ }, | 
|  | 38 | {   4596,   64, /*  0.25 */ }, | 
|  | 39 | {   5036,   62, /*  0.25 */ }, | 
|  | 40 | {   5497,   61, /*  0.24 */ }, | 
|  | 41 | {   5979,   60, /*  0.24 */ }, | 
|  | 42 | {   6483,   59, /*  0.23 */ }, | 
|  | 43 | {   7009,   58, /*  0.23 */ }, | 
|  | 44 | {   7558,   57, /*  0.22 */ }, | 
|  | 45 | {   8130,   56, /*  0.22 */ }, | 
|  | 46 | {   8726,   55, /*  0.22 */ }, | 
|  | 47 | {   9346,   54, /*  0.21 */ }, | 
|  | 48 | {   9991,   53, /*  0.21 */ }, | 
|  | 49 | {  10661,   52, /*  0.21 */ }, | 
|  | 50 | {  11358,   52, /*  0.20 */ }, | 
|  | 51 | {  12082,   51, /*  0.20 */ }, | 
|  | 52 | {  12834,   50, /*  0.20 */ }, | 
|  | 53 | {  13614,   49, /*  0.19 */ }, | 
|  | 54 | {  14424,   48, /*  0.19 */ }, | 
|  | 55 | {  15265,   48, /*  0.19 */ }, | 
|  | 56 | {  16137,   47, /*  0.19 */ }, | 
|  | 57 | {  17042,   46, /*  0.18 */ }, | 
|  | 58 | {  17981,   45, /*  0.18 */ }, | 
|  | 59 | {  18955,   45, /*  0.18 */ }, | 
|  | 60 | {  19965,   44, /*  0.17 */ }, | 
|  | 61 | {  21013,   43, /*  0.17 */ }, | 
|  | 62 | {  22101,   43, /*  0.17 */ }, | 
|  | 63 | {  23230,   42, /*  0.17 */ }, | 
|  | 64 | {  24402,   41, /*  0.16 */ }, | 
|  | 65 | {  25618,   41, /*  0.16 */ }, | 
|  | 66 | {  26881,   40, /*  0.16 */ }, | 
|  | 67 | {  28193,   39, /*  0.16 */ }, | 
|  | 68 | {  29557,   39, /*  0.15 */ }, | 
|  | 69 | {  30975,   38, /*  0.15 */ }, | 
|  | 70 | {  32450,   38, /*  0.15 */ }, | 
|  | 71 | {  33986,   37, /*  0.15 */ }, | 
|  | 72 | {  35586,   36, /*  0.14 */ }, | 
|  | 73 | {  37253,   36, /*  0.14 */ }, | 
|  | 74 | {  38992,   35, /*  0.14 */ }, | 
|  | 75 | {  40808,   35, /*  0.14 */ }, | 
|  | 76 | {  42707,   34, /*  0.13 */ }, | 
|  | 77 | {  44694,   33, /*  0.13 */ }, | 
|  | 78 | {  46776,   33, /*  0.13 */ }, | 
|  | 79 | {  48961,   32, /*  0.13 */ }, | 
|  | 80 | {  51258,   32, /*  0.13 */ }, | 
|  | 81 | {  53677,   31, /*  0.12 */ }, | 
|  | 82 | {  56230,   30, /*  0.12 */ }, | 
|  | 83 | {  58932,   30, /*  0.12 */ }, | 
|  | 84 | {  61799,   29, /*  0.12 */ }, | 
|  | 85 | {  64851,   28, /*  0.11 */ }, | 
|  | 86 | {  68113,   28, /*  0.11 */ }, | 
|  | 87 | {  71617,   27, /*  0.11 */ }, | 
|  | 88 | {  75401,   26, /*  0.10 */ }, | 
|  | 89 | {  79517,   26, /*  0.10 */ }, | 
|  | 90 | {  84035,   25, /*  0.10 */ }, | 
|  | 91 | {  89053,   24, /*  0.10 */ }, | 
|  | 92 | }; | 
|  | 93 |  | 
|  | 94 | #define HSTCP_AIMD_MAX	ARRAY_SIZE(hstcp_aimd_vals) | 
|  | 95 |  | 
|  | 96 | struct hstcp { | 
|  | 97 | u32	ai; | 
|  | 98 | }; | 
|  | 99 |  | 
| Arnaldo Carvalho de Melo | 6687e98 | 2005-08-10 04:03:31 -0300 | [diff] [blame] | 100 | static void hstcp_init(struct sock *sk) | 
| John Heffner | a628d29 | 2005-06-23 12:24:58 -0700 | [diff] [blame] | 101 | { | 
| Arnaldo Carvalho de Melo | 6687e98 | 2005-08-10 04:03:31 -0300 | [diff] [blame] | 102 | struct tcp_sock *tp = tcp_sk(sk); | 
|  | 103 | struct hstcp *ca = inet_csk_ca(sk); | 
| John Heffner | a628d29 | 2005-06-23 12:24:58 -0700 | [diff] [blame] | 104 |  | 
|  | 105 | ca->ai = 0; | 
|  | 106 |  | 
|  | 107 | /* Ensure the MD arithmetic works.  This is somewhat pedantic, | 
|  | 108 | * since I don't think we will see a cwnd this large. :) */ | 
|  | 109 | tp->snd_cwnd_clamp = min_t(u32, tp->snd_cwnd_clamp, 0xffffffff/128); | 
|  | 110 | } | 
|  | 111 |  | 
| Arnaldo Carvalho de Melo | 6687e98 | 2005-08-10 04:03:31 -0300 | [diff] [blame] | 112 | static void hstcp_cong_avoid(struct sock *sk, u32 adk, u32 rtt, | 
| Stephen Hemminger | bd6af70 | 2005-11-17 14:11:18 -0800 | [diff] [blame] | 113 | u32 in_flight, int data_acked) | 
| John Heffner | a628d29 | 2005-06-23 12:24:58 -0700 | [diff] [blame] | 114 | { | 
| Arnaldo Carvalho de Melo | 6687e98 | 2005-08-10 04:03:31 -0300 | [diff] [blame] | 115 | struct tcp_sock *tp = tcp_sk(sk); | 
|  | 116 | struct hstcp *ca = inet_csk_ca(sk); | 
| John Heffner | a628d29 | 2005-06-23 12:24:58 -0700 | [diff] [blame] | 117 |  | 
| Stephen Hemminger | f4805ed | 2005-11-10 16:53:30 -0800 | [diff] [blame] | 118 | if (!tcp_is_cwnd_limited(sk, in_flight)) | 
| John Heffner | a628d29 | 2005-06-23 12:24:58 -0700 | [diff] [blame] | 119 | return; | 
|  | 120 |  | 
| Ilpo Järvinen | 03fba04 | 2007-05-03 13:28:35 -0700 | [diff] [blame] | 121 | if (tp->snd_cwnd <= tp->snd_ssthresh) | 
|  | 122 | tcp_slow_start(tp); | 
|  | 123 | else { | 
| Xiaoliang (David) Wei | 6150c22 | 2006-07-11 13:03:28 -0700 | [diff] [blame] | 124 | /* Update AIMD parameters. | 
|  | 125 | * | 
|  | 126 | * We want to guarantee that: | 
|  | 127 | *     hstcp_aimd_vals[ca->ai-1].cwnd < | 
|  | 128 | *     snd_cwnd <= | 
|  | 129 | *     hstcp_aimd_vals[ca->ai].cwnd | 
|  | 130 | */ | 
| John Heffner | a628d29 | 2005-06-23 12:24:58 -0700 | [diff] [blame] | 131 | if (tp->snd_cwnd > hstcp_aimd_vals[ca->ai].cwnd) { | 
|  | 132 | while (tp->snd_cwnd > hstcp_aimd_vals[ca->ai].cwnd && | 
| Patrick McHardy | 4a1ff6e | 2006-03-12 20:34:53 -0800 | [diff] [blame] | 133 | ca->ai < HSTCP_AIMD_MAX - 1) | 
| John Heffner | a628d29 | 2005-06-23 12:24:58 -0700 | [diff] [blame] | 134 | ca->ai++; | 
| Xiaoliang (David) Wei | 6150c22 | 2006-07-11 13:03:28 -0700 | [diff] [blame] | 135 | } else if (ca->ai && tp->snd_cwnd <= hstcp_aimd_vals[ca->ai-1].cwnd) { | 
|  | 136 | while (ca->ai && tp->snd_cwnd <= hstcp_aimd_vals[ca->ai-1].cwnd) | 
| John Heffner | a628d29 | 2005-06-23 12:24:58 -0700 | [diff] [blame] | 137 | ca->ai--; | 
|  | 138 | } | 
|  | 139 |  | 
|  | 140 | /* Do additive increase */ | 
|  | 141 | if (tp->snd_cwnd < tp->snd_cwnd_clamp) { | 
| Stephen Hemminger | fb80a6e | 2006-06-02 17:51:08 -0700 | [diff] [blame] | 142 | /* cwnd = cwnd + a(w) / cwnd */ | 
|  | 143 | tp->snd_cwnd_cnt += ca->ai + 1; | 
| John Heffner | a628d29 | 2005-06-23 12:24:58 -0700 | [diff] [blame] | 144 | if (tp->snd_cwnd_cnt >= tp->snd_cwnd) { | 
| John Heffner | a628d29 | 2005-06-23 12:24:58 -0700 | [diff] [blame] | 145 | tp->snd_cwnd_cnt -= tp->snd_cwnd; | 
| John Heffner | 5528e56 | 2006-05-05 17:41:44 -0700 | [diff] [blame] | 146 | tp->snd_cwnd++; | 
| John Heffner | a628d29 | 2005-06-23 12:24:58 -0700 | [diff] [blame] | 147 | } | 
|  | 148 | } | 
|  | 149 | } | 
|  | 150 | } | 
|  | 151 |  | 
| Arnaldo Carvalho de Melo | 6687e98 | 2005-08-10 04:03:31 -0300 | [diff] [blame] | 152 | static u32 hstcp_ssthresh(struct sock *sk) | 
| John Heffner | a628d29 | 2005-06-23 12:24:58 -0700 | [diff] [blame] | 153 | { | 
| Arnaldo Carvalho de Melo | 6687e98 | 2005-08-10 04:03:31 -0300 | [diff] [blame] | 154 | const struct tcp_sock *tp = tcp_sk(sk); | 
|  | 155 | const struct hstcp *ca = inet_csk_ca(sk); | 
| John Heffner | a628d29 | 2005-06-23 12:24:58 -0700 | [diff] [blame] | 156 |  | 
|  | 157 | /* Do multiplicative decrease */ | 
|  | 158 | return max(tp->snd_cwnd - ((tp->snd_cwnd * hstcp_aimd_vals[ca->ai].md) >> 8), 2U); | 
|  | 159 | } | 
|  | 160 |  | 
|  | 161 |  | 
|  | 162 | static struct tcp_congestion_ops tcp_highspeed = { | 
|  | 163 | .init		= hstcp_init, | 
|  | 164 | .ssthresh	= hstcp_ssthresh, | 
|  | 165 | .cong_avoid	= hstcp_cong_avoid, | 
|  | 166 | .min_cwnd	= tcp_reno_min_cwnd, | 
|  | 167 |  | 
|  | 168 | .owner		= THIS_MODULE, | 
|  | 169 | .name		= "highspeed" | 
|  | 170 | }; | 
|  | 171 |  | 
|  | 172 | static int __init hstcp_register(void) | 
|  | 173 | { | 
| Alexey Dobriyan | 74975d4 | 2006-08-25 17:10:33 -0700 | [diff] [blame] | 174 | BUILD_BUG_ON(sizeof(struct hstcp) > ICSK_CA_PRIV_SIZE); | 
| John Heffner | a628d29 | 2005-06-23 12:24:58 -0700 | [diff] [blame] | 175 | return tcp_register_congestion_control(&tcp_highspeed); | 
|  | 176 | } | 
|  | 177 |  | 
|  | 178 | static void __exit hstcp_unregister(void) | 
|  | 179 | { | 
|  | 180 | tcp_unregister_congestion_control(&tcp_highspeed); | 
|  | 181 | } | 
|  | 182 |  | 
|  | 183 | module_init(hstcp_register); | 
|  | 184 | module_exit(hstcp_unregister); | 
|  | 185 |  | 
|  | 186 | MODULE_AUTHOR("John Heffner"); | 
|  | 187 | MODULE_LICENSE("GPL"); | 
|  | 188 | MODULE_DESCRIPTION("High Speed TCP"); |