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

通讯编程

开发平台:

Visual C++

  1. /* Modified Linux module source code from /home/weixl/linux-2.6.22.6 */
  2. #define NS_PROTOCOL "tcp_hybla.c"
  3. #include "../ns-linux-c.h"
  4. #include "../ns-linux-util.h"
  5. /*
  6.  * TCP HYBLA
  7.  *
  8.  * TCP-HYBLA Congestion control algorithm, based on:
  9.  *   C.Caini, R.Firrincieli, "TCP-Hybla: A TCP Enhancement
  10.  *   for Heterogeneous Networks",
  11.  *   International Journal on satellite Communications,
  12.  *        September 2004
  13.  *    Daniele Lacamera
  14.  *    root at danielinux.net
  15.  */
  16. /* Tcp Hybla structure. */
  17. struct hybla {
  18. u8    hybla_en;
  19. u32   snd_cwnd_cents; /* Keeps increment values when it is <1, <<7 */
  20. u32   rho;       /* Rho parameter, integer part  */
  21. u32   rho2;       /* Rho * Rho, integer part */
  22. u32   rho_3ls;       /* Rho parameter, <<3 */
  23. u32   rho2_7ls;       /* Rho^2, <<7 */
  24. u32   minrtt;       /* Minimum smoothed round trip time value seen */
  25. };
  26. /* Hybla reference round trip time (default= 1/40 sec = 25 ms),
  27.    expressed in jiffies */
  28. static int rtt0 = 25;
  29. module_param(rtt0, int, 0644);
  30. MODULE_PARM_DESC(rtt0, "reference rout trip time (ms)");
  31. /* This is called to refresh values for hybla parameters */
  32. static inline void hybla_recalc_param (struct sock *sk)
  33. {
  34. struct hybla *ca = inet_csk_ca(sk);
  35. ca->rho_3ls = max_t(u32, tcp_sk(sk)->srtt / msecs_to_jiffies(rtt0), 8);
  36. ca->rho = ca->rho_3ls >> 3;
  37. ca->rho2_7ls = (ca->rho_3ls * ca->rho_3ls) << 1;
  38. ca->rho2 = ca->rho2_7ls >>7;
  39. }
  40. static void hybla_init(struct sock *sk)
  41. {
  42. struct tcp_sock *tp = tcp_sk(sk);
  43. struct hybla *ca = inet_csk_ca(sk);
  44. ca->rho = 0;
  45. ca->rho2 = 0;
  46. ca->rho_3ls = 0;
  47. ca->rho2_7ls = 0;
  48. ca->snd_cwnd_cents = 0;
  49. ca->hybla_en = 1;
  50. tp->snd_cwnd = 2;
  51. tp->snd_cwnd_clamp = 65535;
  52. /* 1st Rho measurement based on initial srtt */
  53. hybla_recalc_param(sk);
  54. /* set minimum rtt as this is the 1st ever seen */
  55. ca->minrtt = tp->srtt;
  56. tp->snd_cwnd = ca->rho;
  57. }
  58. static void hybla_state(struct sock *sk, u8 ca_state)
  59. {
  60. struct hybla *ca = inet_csk_ca(sk);
  61. ca->hybla_en = (ca_state == TCP_CA_Open);
  62. }
  63. static inline u32 hybla_fraction(u32 odds)
  64. {
  65. static const u32 fractions[] = {
  66. 128, 139, 152, 165, 181, 197, 215, 234,
  67. };
  68. return (odds < ARRAY_SIZE(fractions)) ? fractions[odds] : 128;
  69. }
  70. /* TCP Hybla main routine.
  71.  * This is the algorithm behavior:
  72.  *     o Recalc Hybla parameters if min_rtt has changed
  73.  *     o Give cwnd a new value based on the model proposed
  74.  *     o remember increments <1
  75.  */
  76. static void hybla_cong_avoid(struct sock *sk, u32 ack, u32 rtt,
  77.     u32 in_flight, int flag)
  78. {
  79. struct tcp_sock *tp = tcp_sk(sk);
  80. struct hybla *ca = inet_csk_ca(sk);
  81. u32 increment, odd, rho_fractions;
  82. int is_slowstart = 0;
  83. /*  Recalculate rho only if this srtt is the lowest */
  84. if (tp->srtt < ca->minrtt){
  85. hybla_recalc_param(sk);
  86. ca->minrtt = tp->srtt;
  87. }
  88. if (!tcp_is_cwnd_limited(sk, in_flight))
  89. return;
  90. if (!ca->hybla_en)
  91. return tcp_reno_cong_avoid(sk, ack, rtt, in_flight, flag);
  92. if (ca->rho == 0)
  93. hybla_recalc_param(sk);
  94. rho_fractions = ca->rho_3ls - (ca->rho << 3);
  95. if (tp->snd_cwnd < tp->snd_ssthresh) {
  96. /*
  97.  * slow start
  98.  *      INC = 2^RHO - 1
  99.  * This is done by splitting the rho parameter
  100.  * into 2 parts: an integer part and a fraction part.
  101.  * Inrement<<7 is estimated by doing:
  102.  *        [2^(int+fract)]<<7
  103.  * that is equal to:
  104.  *        (2^int) *  [(2^fract) <<7]
  105.  * 2^int is straightly computed as 1<<int,
  106.  * while we will use hybla_slowstart_fraction_increment() to
  107.  * calculate 2^fract in a <<7 value.
  108.  */
  109. is_slowstart = 1;
  110. increment = ((1 << ca->rho) * hybla_fraction(rho_fractions))
  111. - 128;
  112. } else {
  113. /*
  114.  * congestion avoidance
  115.  * INC = RHO^2 / W
  116.  * as long as increment is estimated as (rho<<7)/window
  117.  * it already is <<7 and we can easily count its fractions.
  118.  */
  119. increment = ca->rho2_7ls / tp->snd_cwnd;
  120. if (increment < 128)
  121. tp->snd_cwnd_cnt++;
  122. }
  123. odd = increment % 128;
  124. tp->snd_cwnd += increment >> 7;
  125. ca->snd_cwnd_cents += odd;
  126. /* check when fractions goes >=128 and increase cwnd by 1. */
  127. while (ca->snd_cwnd_cents >= 128) {
  128. tp->snd_cwnd++;
  129. ca->snd_cwnd_cents -= 128;
  130. tp->snd_cwnd_cnt = 0;
  131. }
  132. /* clamp down slowstart cwnd to ssthresh value. */
  133. if (is_slowstart)
  134. tp->snd_cwnd = min(tp->snd_cwnd, tp->snd_ssthresh);
  135. tp->snd_cwnd = min_t(u32, tp->snd_cwnd, tp->snd_cwnd_clamp);
  136. }
  137. static struct tcp_congestion_ops tcp_hybla = {
  138. .init = hybla_init,
  139. .ssthresh = tcp_reno_ssthresh,
  140. .min_cwnd = tcp_reno_min_cwnd,
  141. .cong_avoid = hybla_cong_avoid,
  142. .set_state = hybla_state,
  143. .owner = THIS_MODULE,
  144. .name = "hybla"
  145. };
  146. static int __init hybla_register(void)
  147. {
  148. BUILD_BUG_ON(sizeof(struct hybla) > ICSK_CA_PRIV_SIZE);
  149. return tcp_register_congestion_control(&tcp_hybla);
  150. }
  151. static void __exit hybla_unregister(void)
  152. {
  153. tcp_unregister_congestion_control(&tcp_hybla);
  154. }
  155. module_init(hybla_register);
  156. module_exit(hybla_unregister);
  157. MODULE_AUTHOR("Daniele Lacamera");
  158. MODULE_LICENSE("GPL");
  159. MODULE_DESCRIPTION("TCP Hybla");
  160. #undef NS_PROTOCOL