tcp_illinois.c
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:8k
源码类别:

通讯编程

开发平台:

Visual C++

  1. /* Modified Linux module source code from /home/weixl/linux-2.6.22.6 */
  2. #define NS_PROTOCOL "tcp_illinois.c"
  3. #include "../ns-linux-c.h"
  4. #include "../ns-linux-util.h"
  5. /*
  6.  * TCP Illinois congestion control.
  7.  * Home page:
  8.  * http://www.ews.uiuc.edu/~shaoliu/tcpillinois/index.html
  9.  *
  10.  * The algorithm is described in:
  11.  * "TCP-Illinois: A Loss and Delay-Based Congestion Control Algorithm
  12.  *  for High-Speed Networks"
  13.  * http://www.ews.uiuc.edu/~shaoliu/papersandslides/liubassri06perf.pdf
  14.  *
  15.  * Implemented from description in paper and ns-2 simulation.
  16.  * Copyright (C) 2007 Stephen Hemminger <shemminger@linux-foundation.org>
  17.  */
  18. #define ALPHA_SHIFT 7
  19. #define ALPHA_SCALE (1u<<ALPHA_SHIFT)
  20. #define ALPHA_MIN ((3*ALPHA_SCALE)/10) /* ~0.3 */
  21. #define ALPHA_MAX (10*ALPHA_SCALE) /* 10.0 */
  22. #define ALPHA_BASE ALPHA_SCALE /* 1.0 */
  23. #define U32_MAX ((u32)~0U)
  24. #define RTT_MAX (U32_MAX / ALPHA_MAX) /* 3.3 secs */
  25. #define BETA_SHIFT 6
  26. #define BETA_SCALE (1u<<BETA_SHIFT)
  27. #define BETA_MIN (BETA_SCALE/8) /* 0.125 */
  28. #define BETA_MAX (BETA_SCALE/2) /* 0.5 */
  29. #define BETA_BASE BETA_MAX
  30. static int win_thresh __read_mostly = 15;
  31. module_param(win_thresh, int, 0);
  32. MODULE_PARM_DESC(win_thresh, "Window threshold for starting adaptive sizing");
  33. static int theta __read_mostly = 5;
  34. module_param(theta, int, 0);
  35. MODULE_PARM_DESC(theta, "# of fast RTT's before full growth");
  36. /* TCP Illinois Parameters */
  37. struct illinois {
  38. u64 sum_rtt; /* sum of rtt's measured within last rtt */
  39. u16 cnt_rtt; /* # of rtts measured within last rtt */
  40. u32 base_rtt; /* min of all rtt in usec */
  41. u32 max_rtt; /* max of all rtt in usec */
  42. u32 end_seq; /* right edge of current RTT */
  43. u32 alpha; /* Additive increase */
  44. u32 beta; /* Muliplicative decrease */
  45. u16 acked; /* # packets acked by current ACK */
  46. u8 rtt_above; /* average rtt has gone above threshold */
  47. u8 rtt_low; /* # of rtts measurements below threshold */
  48. };
  49. static void rtt_reset(struct sock *sk)
  50. {
  51. struct tcp_sock *tp = tcp_sk(sk);
  52. struct illinois *ca = inet_csk_ca(sk);
  53. ca->end_seq = tp->snd_nxt;
  54. ca->cnt_rtt = 0;
  55. ca->sum_rtt = 0;
  56. /* TODO: age max_rtt? */
  57. }
  58. static void tcp_illinois_init(struct sock *sk)
  59. {
  60. struct illinois *ca = inet_csk_ca(sk);
  61. ca->alpha = ALPHA_MAX;
  62. ca->beta = BETA_BASE;
  63. ca->base_rtt = 0x7fffffff;
  64. ca->max_rtt = 0;
  65. ca->acked = 0;
  66. ca->rtt_low = 0;
  67. ca->rtt_above = 0;
  68. rtt_reset(sk);
  69. }
  70. /* Measure RTT for each ack. */
  71. static void tcp_illinois_acked(struct sock *sk, u32 pkts_acked, ktime_t last)
  72. {
  73. struct illinois *ca = inet_csk_ca(sk);
  74. u32 rtt;
  75. ca->acked = pkts_acked;
  76. if (ktime_equal(last, net_invalid_timestamp()))
  77. return;
  78. rtt = ktime_to_us(net_timedelta(last));
  79. /* ignore bogus values, this prevents wraparound in alpha math */
  80. if (rtt > RTT_MAX)
  81. rtt = RTT_MAX;
  82. /* keep track of minimum RTT seen so far */
  83. if (ca->base_rtt > rtt)
  84. ca->base_rtt = rtt;
  85. /* and max */
  86. if (ca->max_rtt < rtt)
  87. ca->max_rtt = rtt;
  88. ++ca->cnt_rtt;
  89. ca->sum_rtt += rtt;
  90. }
  91. /* Maximum queuing delay */
  92. static inline u32 max_delay(const struct illinois *ca)
  93. {
  94. return ca->max_rtt - ca->base_rtt;
  95. }
  96. /* Average queuing delay */
  97. static inline u32 avg_delay(const struct illinois *ca)
  98. {
  99. u64 t = ca->sum_rtt;
  100. do_div(t, ca->cnt_rtt);
  101. return t - ca->base_rtt;
  102. }
  103. /*
  104.  * Compute value of alpha used for additive increase.
  105.  * If small window then use 1.0, equivalent to Reno.
  106.  *
  107.  * For larger windows, adjust based on average delay.
  108.  * A. If average delay is at minimum (we are uncongested),
  109.  *    then use large alpha (10.0) to increase faster.
  110.  * B. If average delay is at maximum (getting congested)
  111.  *    then use small alpha (0.3)
  112.  *
  113.  * The result is a convex window growth curve.
  114.  */
  115. static u32 alpha(struct illinois *ca, u32 da, u32 dm)
  116. {
  117. u32 d1 = dm / 100; /* Low threshold */
  118. if (da <= d1) {
  119. /* If never got out of low delay zone, then use max */
  120. if (!ca->rtt_above)
  121. return ALPHA_MAX;
  122. /* Wait for 5 good RTT's before allowing alpha to go alpha max.
  123.  * This prevents one good RTT from causing sudden window increase.
  124.  */
  125. if (++ca->rtt_low < theta)
  126. return ca->alpha;
  127. ca->rtt_low = 0;
  128. ca->rtt_above = 0;
  129. return ALPHA_MAX;
  130. }
  131. ca->rtt_above = 1;
  132. /*
  133.  * Based on:
  134.  *
  135.  *      (dm - d1) amin amax
  136.  * k1 = -------------------
  137.  *         amax - amin
  138.  *
  139.  *       (dm - d1) amin
  140.  * k2 = ----------------  - d1
  141.  *        amax - amin
  142.  *
  143.  *             k1
  144.  * alpha = ----------
  145.  *          k2 + da
  146.  */
  147. dm -= d1;
  148. da -= d1;
  149. return (dm * ALPHA_MAX) /
  150. (dm + (da  * (ALPHA_MAX - ALPHA_MIN)) / ALPHA_MIN);
  151. }
  152. /*
  153.  * Beta used for multiplicative decrease.
  154.  * For small window sizes returns same value as Reno (0.5)
  155.  *
  156.  * If delay is small (10% of max) then beta = 1/8
  157.  * If delay is up to 80% of max then beta = 1/2
  158.  * In between is a linear function
  159.  */
  160. static u32 beta(u32 da, u32 dm)
  161. {
  162. u32 d2, d3;
  163. d2 = dm / 10;
  164. if (da <= d2)
  165. return BETA_MIN;
  166. d3 = (8 * dm) / 10;
  167. if (da >= d3 || d3 <= d2)
  168. return BETA_MAX;
  169. /*
  170.  * Based on:
  171.  *
  172.  *       bmin d3 - bmax d2
  173.  * k3 = -------------------
  174.  *         d3 - d2
  175.  *
  176.  *       bmax - bmin
  177.  * k4 = -------------
  178.  *         d3 - d2
  179.  *
  180.  * b = k3 + k4 da
  181.  */
  182. return (BETA_MIN * d3 - BETA_MAX * d2 + (BETA_MAX - BETA_MIN) * da)
  183. / (d3 - d2);
  184. }
  185. /* Update alpha and beta values once per RTT */
  186. static void update_params(struct sock *sk)
  187. {
  188. struct tcp_sock *tp = tcp_sk(sk);
  189. struct illinois *ca = inet_csk_ca(sk);
  190. if (tp->snd_cwnd < win_thresh) {
  191. ca->alpha = ALPHA_BASE;
  192. ca->beta = BETA_BASE;
  193. } else if (ca->cnt_rtt > 0) {
  194. u32 dm = max_delay(ca);
  195. u32 da = avg_delay(ca);
  196. ca->alpha = alpha(ca, da, dm);
  197. ca->beta = beta(da, dm);
  198. }
  199. rtt_reset(sk);
  200. }
  201. /*
  202.  * In case of loss, reset to default values
  203.  */
  204. static void tcp_illinois_state(struct sock *sk, u8 new_state)
  205. {
  206. struct illinois *ca = inet_csk_ca(sk);
  207. if (new_state == TCP_CA_Loss) {
  208. ca->alpha = ALPHA_BASE;
  209. ca->beta = BETA_BASE;
  210. ca->rtt_low = 0;
  211. ca->rtt_above = 0;
  212. rtt_reset(sk);
  213. }
  214. }
  215. /*
  216.  * Increase window in response to successful acknowledgment.
  217.  */
  218. static void tcp_illinois_cong_avoid(struct sock *sk, u32 ack, u32 rtt,
  219.     u32 in_flight, int flag)
  220. {
  221. struct tcp_sock *tp = tcp_sk(sk);
  222. struct illinois *ca = inet_csk_ca(sk);
  223. if (after(ack, ca->end_seq))
  224. update_params(sk);
  225. /* RFC2861 only increase cwnd if fully utilized */
  226. if (!tcp_is_cwnd_limited(sk, in_flight))
  227. return;
  228. /* In slow start */
  229. if (tp->snd_cwnd <= tp->snd_ssthresh)
  230. tcp_slow_start(tp);
  231. else {
  232. u32 delta;
  233. /* snd_cwnd_cnt is # of packets since last cwnd increment */
  234. tp->snd_cwnd_cnt += ca->acked;
  235. ca->acked = 1;
  236. /* This is close approximation of:
  237.  * tp->snd_cwnd += alpha/tp->snd_cwnd
  238. */
  239. delta = (tp->snd_cwnd_cnt * ca->alpha) >> ALPHA_SHIFT;
  240. if (delta >= tp->snd_cwnd) {
  241. tp->snd_cwnd = min(tp->snd_cwnd + delta / tp->snd_cwnd,
  242.    (u32) tp->snd_cwnd_clamp);
  243. tp->snd_cwnd_cnt = 0;
  244. }
  245. }
  246. }
  247. static u32 tcp_illinois_ssthresh(struct sock *sk)
  248. {
  249. struct tcp_sock *tp = tcp_sk(sk);
  250. struct illinois *ca = inet_csk_ca(sk);
  251. /* Multiplicative decrease */
  252. return max((tp->snd_cwnd * ca->beta) >> BETA_SHIFT, 2U);
  253. }
  254. /* Extract info for Tcp socket info provided via netlink. */
  255. static void tcp_illinois_info(struct sock *sk, u32 ext,
  256.       struct sk_buff *skb)
  257. {
  258. const struct illinois *ca = inet_csk_ca(sk);
  259. if (ext & (1 << (INET_DIAG_VEGASINFO - 1))) {
  260. struct tcpvegas_info info = {
  261. .tcpv_enabled = 1,
  262. .tcpv_rttcnt = ca->cnt_rtt,
  263. .tcpv_minrtt = ca->base_rtt,
  264. };
  265. u64 t = ca->sum_rtt;
  266. do_div(t, ca->cnt_rtt);
  267. info.tcpv_rtt = t;
  268. nla_put(skb, INET_DIAG_VEGASINFO, sizeof(info), &info);
  269. }
  270. }
  271. static struct tcp_congestion_ops tcp_illinois = {
  272. .flags = TCP_CONG_RTT_STAMP,
  273. .init = tcp_illinois_init,
  274. .ssthresh = tcp_illinois_ssthresh,
  275. .min_cwnd = tcp_reno_min_cwnd,
  276. .cong_avoid = tcp_illinois_cong_avoid,
  277. .set_state = tcp_illinois_state,
  278. .get_info = tcp_illinois_info,
  279. .pkts_acked = tcp_illinois_acked,
  280. .owner = THIS_MODULE,
  281. .name = "illinois",
  282. };
  283. static int __init tcp_illinois_register(void)
  284. {
  285. BUILD_BUG_ON(sizeof(struct illinois) > ICSK_CA_PRIV_SIZE);
  286. return tcp_register_congestion_control(&tcp_illinois);
  287. }
  288. static void __exit tcp_illinois_unregister(void)
  289. {
  290. tcp_unregister_congestion_control(&tcp_illinois);
  291. }
  292. module_init(tcp_illinois_register);
  293. module_exit(tcp_illinois_unregister);
  294. MODULE_AUTHOR("Stephen Hemminger, Shao Liu");
  295. MODULE_LICENSE("GPL");
  296. MODULE_DESCRIPTION("TCP Illinois");
  297. MODULE_VERSION("1.0");
  298. #undef NS_PROTOCOL