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

通讯编程

开发平台:

Visual C++

  1. /* Modified Linux module source code from /home/weixl/linux-2.6.22.6 */
  2. #define NS_PROTOCOL "tcp_bic.c"
  3. #include "../ns-linux-c.h"
  4. #include "../ns-linux-util.h"
  5. /*
  6.  * Binary Increase Congestion control for TCP
  7.  *
  8.  * This is from the implementation of BICTCP in
  9.  * Lison-Xu, Kahaled Harfoush, and Injong Rhee.
  10.  *  "Binary Increase Congestion Control for Fast, Long Distance
  11.  *  Networks" in InfoComm 2004
  12.  * Available from:
  13.  *  http://www.csc.ncsu.edu/faculty/rhee/export/bitcp.pdf
  14.  *
  15.  * Unless BIC is enabled and congestion window is large
  16.  * this behaves the same as the original Reno.
  17.  */
  18. #define BICTCP_BETA_SCALE    1024 /* Scale factor beta calculation
  19.  * max_cwnd = snd_cwnd * beta
  20.  */
  21. #define BICTCP_B 4  /*
  22.   * In binary search,
  23.   * go to point (max+min)/N
  24.   */
  25. static int fast_convergence = 1;
  26. static int max_increment = 16;
  27. static int low_window = 14;
  28. static int beta = 819; /* = 819/1024 (BICTCP_BETA_SCALE) */
  29. static int initial_ssthresh;
  30. static int smooth_part = 20;
  31. module_param(fast_convergence, int, 0644);
  32. MODULE_PARM_DESC(fast_convergence, "turn on/off fast convergence");
  33. module_param(max_increment, int, 0644);
  34. MODULE_PARM_DESC(max_increment, "Limit on increment allowed during binary search");
  35. module_param(low_window, int, 0644);
  36. MODULE_PARM_DESC(low_window, "lower bound on congestion window (for TCP friendliness)");
  37. module_param(beta, int, 0644);
  38. MODULE_PARM_DESC(beta, "beta for multiplicative increase");
  39. module_param(initial_ssthresh, int, 0644);
  40. MODULE_PARM_DESC(initial_ssthresh, "initial value of slow start threshold");
  41. module_param(smooth_part, int, 0644);
  42. MODULE_PARM_DESC(smooth_part, "log(B/(B*Smin))/log(B/(B-1))+B, # of RTT from Wmax-B to Wmax");
  43. /* BIC TCP Parameters */
  44. struct bictcp {
  45. u32 cnt; /* increase cwnd by 1 after ACKs */
  46. u32  last_max_cwnd; /* last maximum snd_cwnd */
  47. u32 loss_cwnd; /* congestion window at last loss */
  48. u32 last_cwnd; /* the last snd_cwnd */
  49. u32 last_time; /* time when updated last_cwnd */
  50. u32 epoch_start; /* beginning of an epoch */
  51. #define ACK_RATIO_SHIFT 4
  52. u32 delayed_ack; /* estimate the ratio of Packets/ACKs << 4 */
  53. };
  54. static inline void bictcp_reset(struct bictcp *ca)
  55. {
  56. ca->cnt = 0;
  57. ca->last_max_cwnd = 0;
  58. ca->loss_cwnd = 0;
  59. ca->last_cwnd = 0;
  60. ca->last_time = 0;
  61. ca->epoch_start = 0;
  62. ca->delayed_ack = 2 << ACK_RATIO_SHIFT;
  63. }
  64. static void bictcp_init(struct sock *sk)
  65. {
  66. bictcp_reset(inet_csk_ca(sk));
  67. if (initial_ssthresh)
  68. tcp_sk(sk)->snd_ssthresh = initial_ssthresh;
  69. }
  70. /*
  71.  * Compute congestion window to use.
  72.  */
  73. static inline void bictcp_update(struct bictcp *ca, u32 cwnd)
  74. {
  75. if (ca->last_cwnd == cwnd &&
  76.     (s32)(tcp_time_stamp - ca->last_time) <= HZ / 32)
  77. return;
  78. ca->last_cwnd = cwnd;
  79. ca->last_time = tcp_time_stamp;
  80. if (ca->epoch_start == 0) /* record the beginning of an epoch */
  81. ca->epoch_start = tcp_time_stamp;
  82. /* start off normal */
  83. if (cwnd <= low_window) {
  84. ca->cnt = cwnd;
  85. return;
  86. }
  87. /* binary increase */
  88. if (cwnd < ca->last_max_cwnd) {
  89. __u32  dist = (ca->last_max_cwnd - cwnd)
  90. / BICTCP_B;
  91. if (dist > max_increment)
  92. /* linear increase */
  93. ca->cnt = cwnd / max_increment;
  94. else if (dist <= 1U)
  95. /* binary search increase */
  96. ca->cnt = (cwnd * smooth_part) / BICTCP_B;
  97. else
  98. /* binary search increase */
  99. ca->cnt = cwnd / dist;
  100. } else {
  101. /* slow start AMD linear increase */
  102. if (cwnd < ca->last_max_cwnd + BICTCP_B)
  103. /* slow start */
  104. ca->cnt = (cwnd * smooth_part) / BICTCP_B;
  105. else if (cwnd < ca->last_max_cwnd + max_increment*(BICTCP_B-1))
  106. /* slow start */
  107. ca->cnt = (cwnd * (BICTCP_B-1))
  108. / (cwnd - ca->last_max_cwnd);
  109. else
  110. /* linear increase */
  111. ca->cnt = cwnd / max_increment;
  112. }
  113. /* if in slow start or link utilization is very low */
  114. if (ca->loss_cwnd == 0) {
  115. if (ca->cnt > 20) /* increase cwnd 5% per RTT */
  116. ca->cnt = 20;
  117. }
  118. ca->cnt = (ca->cnt << ACK_RATIO_SHIFT) / ca->delayed_ack;
  119. if (ca->cnt == 0) /* cannot be zero */
  120. ca->cnt = 1;
  121. }
  122. static void bictcp_cong_avoid(struct sock *sk, u32 ack,
  123.       u32 seq_rtt, u32 in_flight, int data_acked)
  124. {
  125. struct tcp_sock *tp = tcp_sk(sk);
  126. struct bictcp *ca = inet_csk_ca(sk);
  127. if (!tcp_is_cwnd_limited(sk, in_flight))
  128. return;
  129. if (tp->snd_cwnd <= tp->snd_ssthresh)
  130. tcp_slow_start(tp);
  131. else {
  132. bictcp_update(ca, tp->snd_cwnd);
  133. /* In dangerous area, increase slowly.
  134.  * In theory this is tp->snd_cwnd += 1 / tp->snd_cwnd
  135.  */
  136. if (tp->snd_cwnd_cnt >= ca->cnt) {
  137. if (tp->snd_cwnd < tp->snd_cwnd_clamp)
  138. tp->snd_cwnd++;
  139. tp->snd_cwnd_cnt = 0;
  140. } else
  141. tp->snd_cwnd_cnt++;
  142. }
  143. }
  144. /*
  145.  * behave like Reno until low_window is reached,
  146.  * then increase congestion window slowly
  147.  */
  148. static u32 bictcp_recalc_ssthresh(struct sock *sk)
  149. {
  150. const struct tcp_sock *tp = tcp_sk(sk);
  151. struct bictcp *ca = inet_csk_ca(sk);
  152. ca->epoch_start = 0; /* end of epoch */
  153. /* Wmax and fast convergence */
  154. if (tp->snd_cwnd < ca->last_max_cwnd && fast_convergence)
  155. ca->last_max_cwnd = (tp->snd_cwnd * (BICTCP_BETA_SCALE + beta))
  156. / (2 * BICTCP_BETA_SCALE);
  157. else
  158. ca->last_max_cwnd = tp->snd_cwnd;
  159. ca->loss_cwnd = tp->snd_cwnd;
  160. if (tp->snd_cwnd <= low_window)
  161. return max(tp->snd_cwnd >> 1U, 2U);
  162. else
  163. return max((tp->snd_cwnd * beta) / BICTCP_BETA_SCALE, 2U);
  164. }
  165. static u32 bictcp_undo_cwnd(struct sock *sk)
  166. {
  167. const struct tcp_sock *tp = tcp_sk(sk);
  168. const struct bictcp *ca = inet_csk_ca(sk);
  169. return max(tp->snd_cwnd, ca->last_max_cwnd);
  170. }
  171. static void bictcp_state(struct sock *sk, u8 new_state)
  172. {
  173. if (new_state == TCP_CA_Loss)
  174. bictcp_reset(inet_csk_ca(sk));
  175. }
  176. /* Track delayed acknowledgment ratio using sliding window
  177.  * ratio = (15*ratio + sample) / 16
  178.  */
  179. static void bictcp_acked(struct sock *sk, u32 cnt, ktime_t last)
  180. {
  181. const struct inet_connection_sock *icsk = inet_csk(sk);
  182. if (cnt > 0 && icsk->icsk_ca_state == TCP_CA_Open) {
  183. struct bictcp *ca = inet_csk_ca(sk);
  184. cnt -= ca->delayed_ack >> ACK_RATIO_SHIFT;
  185. ca->delayed_ack += cnt;
  186. }
  187. }
  188. static struct tcp_congestion_ops bictcp = {
  189. .init = bictcp_init,
  190. .ssthresh = bictcp_recalc_ssthresh,
  191. .cong_avoid = bictcp_cong_avoid,
  192. .set_state = bictcp_state,
  193. .undo_cwnd = bictcp_undo_cwnd,
  194. .pkts_acked     = bictcp_acked,
  195. .owner = THIS_MODULE,
  196. .name = "bic",
  197. };
  198. static int __init bictcp_register(void)
  199. {
  200. BUILD_BUG_ON(sizeof(struct bictcp) > ICSK_CA_PRIV_SIZE);
  201. return tcp_register_congestion_control(&bictcp);
  202. }
  203. static void __exit bictcp_unregister(void)
  204. {
  205. tcp_unregister_congestion_control(&bictcp);
  206. }
  207. module_init(bictcp_register);
  208. module_exit(bictcp_unregister);
  209. MODULE_AUTHOR("Stephen Hemminger");
  210. MODULE_LICENSE("GPL");
  211. MODULE_DESCRIPTION("BIC TCP");
  212. #undef NS_PROTOCOL