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

通讯编程

开发平台:

Visual C++

  1. /* Modified Linux module source code from /home/weixl/linux-2.6.22.6 */
  2. #define NS_PROTOCOL "tcp_cubic.c"
  3. #include "../ns-linux-c.h"
  4. #include "../ns-linux-util.h"
  5. /*
  6.  * TCP CUBIC: Binary Increase Congestion control for TCP v2.1
  7.  *
  8.  * This is from the implementation of CUBIC TCP in
  9.  * Injong Rhee, Lisong Xu.
  10.  *  "CUBIC: A New TCP-Friendly High-Speed TCP Variant
  11.  *  in PFLDnet 2005
  12.  * Available from:
  13.  *  http://www.csc.ncsu.edu/faculty/rhee/export/bitcp/cubic-paper.pdf
  14.  *
  15.  * Unless CUBIC 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. #define BICTCP_HZ 10 /* BIC HZ 2^10 = 1024 */
  26. static int fast_convergence __read_mostly = 1;
  27. static int max_increment __read_mostly = 16;
  28. static int beta __read_mostly = 819; /* = 819/1024 (BICTCP_BETA_SCALE) */
  29. static int initial_ssthresh __read_mostly;
  30. static int bic_scale __read_mostly = 41;
  31. static int tcp_friendliness __read_mostly = 1;
  32. static u32 cube_rtt_scale __read_mostly;
  33. static u32 beta_scale __read_mostly;
  34. static u64 cube_factor __read_mostly;
  35. /* Note parameters that are used for precomputing scale factors are read-only */
  36. module_param(fast_convergence, int, 0644);
  37. MODULE_PARM_DESC(fast_convergence, "turn on/off fast convergence");
  38. module_param(max_increment, int, 0644);
  39. MODULE_PARM_DESC(max_increment, "Limit on increment allowed during binary search");
  40. module_param(beta, int, 0444);
  41. MODULE_PARM_DESC(beta, "beta for multiplicative increase");
  42. module_param(initial_ssthresh, int, 0644);
  43. MODULE_PARM_DESC(initial_ssthresh, "initial value of slow start threshold");
  44. module_param(bic_scale, int, 0444);
  45. MODULE_PARM_DESC(bic_scale, "scale (scaled by 1024) value for bic function (bic_scale/1024)");
  46. module_param(tcp_friendliness, int, 0644);
  47. MODULE_PARM_DESC(tcp_friendliness, "turn on/off tcp friendliness");
  48. /* BIC TCP Parameters */
  49. struct bictcp {
  50. u32 cnt; /* increase cwnd by 1 after ACKs */
  51. u32  last_max_cwnd; /* last maximum snd_cwnd */
  52. u32 loss_cwnd; /* congestion window at last loss */
  53. u32 last_cwnd; /* the last snd_cwnd */
  54. u32 last_time; /* time when updated last_cwnd */
  55. u32 bic_origin_point;/* origin point of bic function */
  56. u32 bic_K; /* time to origin point from the beginning of the current epoch */
  57. u32 delay_min; /* min delay */
  58. u32 epoch_start; /* beginning of an epoch */
  59. u32 ack_cnt; /* number of acks */
  60. u32 tcp_cwnd; /* estimated tcp cwnd */
  61. #define ACK_RATIO_SHIFT 4
  62. u32 delayed_ack; /* estimate the ratio of Packets/ACKs << 4 */
  63. };
  64. static inline void bictcp_reset(struct bictcp *ca)
  65. {
  66. ca->cnt = 0;
  67. ca->last_max_cwnd = 0;
  68. ca->loss_cwnd = 0;
  69. ca->last_cwnd = 0;
  70. ca->last_time = 0;
  71. ca->bic_origin_point = 0;
  72. ca->bic_K = 0;
  73. ca->delay_min = 0;
  74. ca->epoch_start = 0;
  75. ca->delayed_ack = 2 << ACK_RATIO_SHIFT;
  76. ca->ack_cnt = 0;
  77. ca->tcp_cwnd = 0;
  78. }
  79. static void bictcp_init(struct sock *sk)
  80. {
  81. bictcp_reset(inet_csk_ca(sk));
  82. if (initial_ssthresh)
  83. tcp_sk(sk)->snd_ssthresh = initial_ssthresh;
  84. }
  85. /* calculate the cubic root of x using a table lookup followed by one
  86.  * Newton-Raphson iteration.
  87.  * Avg err ~= 0.195%
  88.  */
  89. static u32 cubic_root(u64 a)
  90. {
  91. u32 x, b, shift;
  92. /*
  93.  * cbrt(x) MSB values for x MSB values in [0..63].
  94.  * Precomputed then refined by hand - Willy Tarreau
  95.  *
  96.  * For x in [0..63],
  97.  *   v = cbrt(x << 18) - 1
  98.  *   cbrt(x) = (v[x] + 10) >> 6
  99.  */
  100. static const u8 v[] = {
  101. /* 0x00 */    0,   54,   54,   54,  118,  118,  118,  118,
  102. /* 0x08 */  123,  129,  134,  138,  143,  147,  151,  156,
  103. /* 0x10 */  157,  161,  164,  168,  170,  173,  176,  179,
  104. /* 0x18 */  181,  185,  187,  190,  192,  194,  197,  199,
  105. /* 0x20 */  200,  202,  204,  206,  209,  211,  213,  215,
  106. /* 0x28 */  217,  219,  221,  222,  224,  225,  227,  229,
  107. /* 0x30 */  231,  232,  234,  236,  237,  239,  240,  242,
  108. /* 0x38 */  244,  245,  246,  248,  250,  251,  252,  254,
  109. };
  110. b = fls64(a);
  111. if (b < 7) {
  112. /* a in [0..63] */
  113. return ((u32)v[(u32)a] + 35) >> 6;
  114. }
  115. b = ((b * 84) >> 8) - 1;
  116. shift = (a >> (b * 3));
  117. x = ((u32)(((u32)v[shift] + 10) << b)) >> 6;
  118. /*
  119.  * Newton-Raphson iteration
  120.  *                         2
  121.  * x    = ( 2 * x  +  a / x  ) / 3
  122.  *  k+1          k         k
  123.  */
  124. x = (2 * x + (u32)div64_64(a, (u64)x * (u64)(x - 1)));
  125. x = ((x * 341) >> 10);
  126. return x;
  127. }
  128. /*
  129.  * Compute congestion window to use.
  130.  */
  131. static inline void bictcp_update(struct bictcp *ca, u32 cwnd)
  132. {
  133. u64 offs;
  134. u32 delta, t, bic_target, min_cnt, max_cnt;
  135. ca->ack_cnt++; /* count the number of ACKs */
  136. if (ca->last_cwnd == cwnd &&
  137.     (s32)(tcp_time_stamp - ca->last_time) <= HZ / 32)
  138. return;
  139. ca->last_cwnd = cwnd;
  140. ca->last_time = tcp_time_stamp;
  141. if (ca->epoch_start == 0) {
  142. ca->epoch_start = tcp_time_stamp; /* record the beginning of an epoch */
  143. ca->ack_cnt = 1; /* start counting */
  144. ca->tcp_cwnd = cwnd; /* syn with cubic */
  145. if (ca->last_max_cwnd <= cwnd) {
  146. ca->bic_K = 0;
  147. ca->bic_origin_point = cwnd;
  148. } else {
  149. /* Compute new K based on
  150.  * (wmax-cwnd) * (srtt>>3 / HZ) / c * 2^(3*bictcp_HZ)
  151.  */
  152. ca->bic_K = cubic_root(cube_factor
  153.        * (ca->last_max_cwnd - cwnd));
  154. ca->bic_origin_point = ca->last_max_cwnd;
  155. }
  156. }
  157. /* cubic function - calc*/
  158. /* calculate c * time^3 / rtt,
  159.  *  while considering overflow in calculation of time^3
  160.  * (so time^3 is done by using 64 bit)
  161.  * and without the support of division of 64bit numbers
  162.  * (so all divisions are done by using 32 bit)
  163.  *  also NOTE the unit of those veriables
  164.  *   time  = (t - K) / 2^bictcp_HZ
  165.  *   c = bic_scale >> 10
  166.  * rtt  = (srtt >> 3) / HZ
  167.  * !!! The following code does not have overflow problems,
  168.  * if the cwnd < 1 million packets !!!
  169.  */
  170. /* change the unit from HZ to bictcp_HZ */
  171. t = ((tcp_time_stamp + (ca->delay_min>>3) - ca->epoch_start)
  172.      << BICTCP_HZ) / HZ;
  173. if (t < ca->bic_K) /* t - K */
  174. offs = ca->bic_K - t;
  175. else
  176. offs = t - ca->bic_K;
  177. /* c/rtt * (t-K)^3 */
  178. delta = (cube_rtt_scale * offs * offs * offs) >> (10+3*BICTCP_HZ);
  179. if (t < ca->bic_K)                                 /* below origin*/
  180. bic_target = ca->bic_origin_point - delta;
  181. else                                                 /* above origin*/
  182. bic_target = ca->bic_origin_point + delta;
  183. /* cubic function - calc bictcp_cnt*/
  184. if (bic_target > cwnd) {
  185. ca->cnt = cwnd / (bic_target - cwnd);
  186. } else {
  187. ca->cnt = 100 * cwnd;              /* very small increment*/
  188. }
  189. if (ca->delay_min > 0) {
  190. /* max increment = Smax * rtt / 0.1  */
  191. min_cnt = (cwnd * HZ * 8)/(10 * max_increment * ca->delay_min);
  192. /* use concave growth when the target is above the origin */
  193. if (ca->cnt < min_cnt && t >= ca->bic_K)
  194. ca->cnt = min_cnt;
  195. }
  196. /* slow start and low utilization  */
  197. if (ca->loss_cwnd == 0) /* could be aggressive in slow start */
  198. ca->cnt = 50;
  199. /* TCP Friendly */
  200. if (tcp_friendliness) {
  201. u32 scale = beta_scale;
  202. delta = (cwnd * scale) >> 3;
  203. while (ca->ack_cnt > delta) { /* update tcp cwnd */
  204. ca->ack_cnt -= delta;
  205. ca->tcp_cwnd++;
  206. }
  207. if (ca->tcp_cwnd > cwnd){ /* if bic is slower than tcp */
  208. delta = ca->tcp_cwnd - cwnd;
  209. max_cnt = cwnd / delta;
  210. if (ca->cnt > max_cnt)
  211. ca->cnt = max_cnt;
  212. }
  213. }
  214. ca->cnt = (ca->cnt << ACK_RATIO_SHIFT) / ca->delayed_ack;
  215. if (ca->cnt == 0) /* cannot be zero */
  216. ca->cnt = 1;
  217. }
  218. /* Keep track of minimum rtt */
  219. static inline void measure_delay(struct sock *sk)
  220. {
  221. const struct tcp_sock *tp = tcp_sk(sk);
  222. struct bictcp *ca = inet_csk_ca(sk);
  223. u32 delay;
  224. /* No time stamp */
  225. if (!(tp->rx_opt.saw_tstamp && tp->rx_opt.rcv_tsecr) ||
  226.      /* Discard delay samples right after fast recovery */
  227.     (s32)(tcp_time_stamp - ca->epoch_start) < HZ)
  228. return;
  229. delay = (tcp_time_stamp - tp->rx_opt.rcv_tsecr)<<3;
  230. if (delay == 0)
  231. delay = 1;
  232. /* first time call or link delay decreases */
  233. if (ca->delay_min == 0 || ca->delay_min > delay)
  234. ca->delay_min = delay;
  235. }
  236. static void bictcp_cong_avoid(struct sock *sk, u32 ack,
  237.       u32 seq_rtt, u32 in_flight, int data_acked)
  238. {
  239. struct tcp_sock *tp = tcp_sk(sk);
  240. struct bictcp *ca = inet_csk_ca(sk);
  241. if (data_acked)
  242. measure_delay(sk);
  243. if (!tcp_is_cwnd_limited(sk, in_flight))
  244. return;
  245. if (tp->snd_cwnd <= tp->snd_ssthresh)
  246. tcp_slow_start(tp);
  247. else {
  248. bictcp_update(ca, tp->snd_cwnd);
  249. /* In dangerous area, increase slowly.
  250.  * In theory this is tp->snd_cwnd += 1 / tp->snd_cwnd
  251.  */
  252. if (tp->snd_cwnd_cnt >= ca->cnt) {
  253. if (tp->snd_cwnd < tp->snd_cwnd_clamp)
  254. tp->snd_cwnd++;
  255. tp->snd_cwnd_cnt = 0;
  256. } else
  257. tp->snd_cwnd_cnt++;
  258. }
  259. }
  260. static u32 bictcp_recalc_ssthresh(struct sock *sk)
  261. {
  262. const struct tcp_sock *tp = tcp_sk(sk);
  263. struct bictcp *ca = inet_csk_ca(sk);
  264. ca->epoch_start = 0; /* end of epoch */
  265. /* Wmax and fast convergence */
  266. if (tp->snd_cwnd < ca->last_max_cwnd && fast_convergence)
  267. ca->last_max_cwnd = (tp->snd_cwnd * (BICTCP_BETA_SCALE + beta))
  268. / (2 * BICTCP_BETA_SCALE);
  269. else
  270. ca->last_max_cwnd = tp->snd_cwnd;
  271. ca->loss_cwnd = tp->snd_cwnd;
  272. return max((tp->snd_cwnd * beta) / BICTCP_BETA_SCALE, 2U);
  273. }
  274. static u32 bictcp_undo_cwnd(struct sock *sk)
  275. {
  276. struct bictcp *ca = inet_csk_ca(sk);
  277. return max(tcp_sk(sk)->snd_cwnd, ca->last_max_cwnd);
  278. }
  279. static void bictcp_state(struct sock *sk, u8 new_state)
  280. {
  281. if (new_state == TCP_CA_Loss)
  282. bictcp_reset(inet_csk_ca(sk));
  283. }
  284. /* Track delayed acknowledgment ratio using sliding window
  285.  * ratio = (15*ratio + sample) / 16
  286.  */
  287. static void bictcp_acked(struct sock *sk, u32 cnt, ktime_t last)
  288. {
  289. const struct inet_connection_sock *icsk = inet_csk(sk);
  290. if (cnt > 0 && icsk->icsk_ca_state == TCP_CA_Open) {
  291. struct bictcp *ca = inet_csk_ca(sk);
  292. cnt -= ca->delayed_ack >> ACK_RATIO_SHIFT;
  293. ca->delayed_ack += cnt;
  294. }
  295. }
  296. static struct tcp_congestion_ops cubictcp = {
  297. .init = bictcp_init,
  298. .ssthresh = bictcp_recalc_ssthresh,
  299. .cong_avoid = bictcp_cong_avoid,
  300. .set_state = bictcp_state,
  301. .undo_cwnd = bictcp_undo_cwnd,
  302. .pkts_acked     = bictcp_acked,
  303. .owner = THIS_MODULE,
  304. .name = "cubic",
  305. };
  306. static int __init cubictcp_register(void)
  307. {
  308. BUILD_BUG_ON(sizeof(struct bictcp) > ICSK_CA_PRIV_SIZE);
  309. /* Precompute a bunch of the scaling factors that are used per-packet
  310.  * based on SRTT of 100ms
  311.  */
  312. beta_scale = 8*(BICTCP_BETA_SCALE+beta)/ 3 / (BICTCP_BETA_SCALE - beta);
  313. cube_rtt_scale = (bic_scale * 10); /* 1024*c/rtt */
  314. /* calculate the "K" for (wmax-cwnd) = c/rtt * K^3
  315.  *  so K = cubic_root( (wmax-cwnd)*rtt/c )
  316.  * the unit of K is bictcp_HZ=2^10, not HZ
  317.  *
  318.  *  c = bic_scale >> 10
  319.  *  rtt = 100ms
  320.  *
  321.  * the following code has been designed and tested for
  322.  * cwnd < 1 million packets
  323.  * RTT < 100 seconds
  324.  * HZ < 1,000,00  (corresponding to 10 nano-second)
  325.  */
  326. /* 1/c * 2^2*bictcp_HZ * srtt */
  327. cube_factor = 1ull << (10+3*BICTCP_HZ); /* 2^40 */
  328. /* divide by bic_scale and by constant Srtt (100ms) */
  329. do_div(cube_factor, bic_scale * 10);
  330. return tcp_register_congestion_control(&cubictcp);
  331. }
  332. static void __exit cubictcp_unregister(void)
  333. {
  334. tcp_unregister_congestion_control(&cubictcp);
  335. }
  336. module_init(cubictcp_register);
  337. module_exit(cubictcp_unregister);
  338. MODULE_AUTHOR("Sangtae Ha, Stephen Hemminger");
  339. MODULE_LICENSE("GPL");
  340. MODULE_DESCRIPTION("CUBIC TCP");
  341. MODULE_VERSION("2.1");
  342. #undef NS_PROTOCOL