tcp_htcp.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_htcp.c"
  3. #include "../ns-linux-c.h"
  4. #include "../ns-linux-util.h"
  5. /*
  6.  * H-TCP congestion control. The algorithm is detailed in:
  7.  * R.N.Shorten, D.J.Leith:
  8.  *   "H-TCP: TCP for high-speed and long-distance networks"
  9.  *   Proc. PFLDnet, Argonne, 2004.
  10.  * http://www.hamilton.ie/net/htcp3.pdf
  11.  */
  12. #define ALPHA_BASE (1<<7) /* 1.0 with shift << 7 */
  13. #define BETA_MIN (1<<6) /* 0.5 with shift << 7 */
  14. #define BETA_MAX 102 /* 0.8 with shift << 7 */
  15. static int use_rtt_scaling __read_mostly = 1;
  16. module_param(use_rtt_scaling, int, 0644);
  17. MODULE_PARM_DESC(use_rtt_scaling, "turn on/off RTT scaling");
  18. static int use_bandwidth_switch __read_mostly = 1;
  19. module_param(use_bandwidth_switch, int, 0644);
  20. MODULE_PARM_DESC(use_bandwidth_switch, "turn on/off bandwidth switcher");
  21. struct htcp {
  22. u32 alpha; /* Fixed point arith, << 7 */
  23. u8 beta;           /* Fixed point arith, << 7 */
  24. u8 modeswitch; /* Delay modeswitch
  25.    until we had at least one congestion event */
  26. u16 pkts_acked;
  27. u32 packetcount;
  28. u32 minRTT;
  29. u32 maxRTT;
  30. u32 last_cong; /* Time since last congestion event end */
  31. u32 undo_last_cong;
  32. u32 undo_maxRTT;
  33. u32 undo_old_maxB;
  34. /* Bandwidth estimation */
  35. u32 minB;
  36. u32 maxB;
  37. u32 old_maxB;
  38. u32 Bi;
  39. u32 lasttime;
  40. };
  41. static inline u32 htcp_cong_time(const struct htcp *ca)
  42. {
  43. return jiffies - ca->last_cong;
  44. }
  45. static inline u32 htcp_ccount(const struct htcp *ca)
  46. {
  47. return htcp_cong_time(ca) / ca->minRTT;
  48. }
  49. static inline void htcp_reset(struct htcp *ca)
  50. {
  51. ca->undo_last_cong = ca->last_cong;
  52. ca->undo_maxRTT = ca->maxRTT;
  53. ca->undo_old_maxB = ca->old_maxB;
  54. ca->last_cong = jiffies;
  55. }
  56. static u32 htcp_cwnd_undo(struct sock *sk)
  57. {
  58. const struct tcp_sock *tp = tcp_sk(sk);
  59. struct htcp *ca = inet_csk_ca(sk);
  60. ca->last_cong = ca->undo_last_cong;
  61. ca->maxRTT = ca->undo_maxRTT;
  62. ca->old_maxB = ca->undo_old_maxB;
  63. return max(tp->snd_cwnd, (tp->snd_ssthresh << 7) / ca->beta);
  64. }
  65. static inline void measure_rtt(struct sock *sk)
  66. {
  67. const struct inet_connection_sock *icsk = inet_csk(sk);
  68. const struct tcp_sock *tp = tcp_sk(sk);
  69. struct htcp *ca = inet_csk_ca(sk);
  70. u32 srtt = tp->srtt >> 3;
  71. /* keep track of minimum RTT seen so far, minRTT is zero at first */
  72. if (ca->minRTT > srtt || !ca->minRTT)
  73. ca->minRTT = srtt;
  74. /* max RTT */
  75. if (icsk->icsk_ca_state == TCP_CA_Open
  76.     && tp->snd_ssthresh < 0xFFFF && htcp_ccount(ca) > 3) {
  77. if (ca->maxRTT < ca->minRTT)
  78. ca->maxRTT = ca->minRTT;
  79. if (ca->maxRTT < srtt
  80.     && srtt <= ca->maxRTT + msecs_to_jiffies(20))
  81. ca->maxRTT = srtt;
  82. }
  83. }
  84. static void measure_achieved_throughput(struct sock *sk, u32 pkts_acked, ktime_t last)
  85. {
  86. const struct inet_connection_sock *icsk = inet_csk(sk);
  87. const struct tcp_sock *tp = tcp_sk(sk);
  88. struct htcp *ca = inet_csk_ca(sk);
  89. u32 now = tcp_time_stamp;
  90. if (icsk->icsk_ca_state == TCP_CA_Open)
  91. ca->pkts_acked = pkts_acked;
  92. if (!use_bandwidth_switch)
  93. return;
  94. /* achieved throughput calculations */
  95. if (icsk->icsk_ca_state != TCP_CA_Open &&
  96.     icsk->icsk_ca_state != TCP_CA_Disorder) {
  97. ca->packetcount = 0;
  98. ca->lasttime = now;
  99. return;
  100. }
  101. ca->packetcount += pkts_acked;
  102. if (ca->packetcount >= tp->snd_cwnd - (ca->alpha >> 7 ? : 1)
  103.     && now - ca->lasttime >= ca->minRTT
  104.     && ca->minRTT > 0) {
  105. __u32 cur_Bi = ca->packetcount * HZ / (now - ca->lasttime);
  106. if (htcp_ccount(ca) <= 3) {
  107. /* just after backoff */
  108. ca->minB = ca->maxB = ca->Bi = cur_Bi;
  109. } else {
  110. ca->Bi = (3 * ca->Bi + cur_Bi) / 4;
  111. if (ca->Bi > ca->maxB)
  112. ca->maxB = ca->Bi;
  113. if (ca->minB > ca->maxB)
  114. ca->minB = ca->maxB;
  115. }
  116. ca->packetcount = 0;
  117. ca->lasttime = now;
  118. }
  119. }
  120. static inline void htcp_beta_update(struct htcp *ca, u32 minRTT, u32 maxRTT)
  121. {
  122. if (use_bandwidth_switch) {
  123. u32 maxB = ca->maxB;
  124. u32 old_maxB = ca->old_maxB;
  125. ca->old_maxB = ca->maxB;
  126. if (!between(5 * maxB, 4 * old_maxB, 6 * old_maxB)) {
  127. ca->beta = BETA_MIN;
  128. ca->modeswitch = 0;
  129. return;
  130. }
  131. }
  132. if (ca->modeswitch && minRTT > msecs_to_jiffies(10) && maxRTT) {
  133. ca->beta = (minRTT << 7) / maxRTT;
  134. if (ca->beta < BETA_MIN)
  135. ca->beta = BETA_MIN;
  136. else if (ca->beta > BETA_MAX)
  137. ca->beta = BETA_MAX;
  138. } else {
  139. ca->beta = BETA_MIN;
  140. ca->modeswitch = 1;
  141. }
  142. }
  143. static inline void htcp_alpha_update(struct htcp *ca)
  144. {
  145. u32 minRTT = ca->minRTT;
  146. u32 factor = 1;
  147. u32 diff = htcp_cong_time(ca);
  148. if (diff > HZ) {
  149. diff -= HZ;
  150. factor = 1 + (10 * diff + ((diff / 2) * (diff / 2) / HZ)) / HZ;
  151. }
  152. if (use_rtt_scaling && minRTT) {
  153. u32 scale = (HZ << 3) / (10 * minRTT);
  154. /* clamping ratio to interval [0.5,10]<<3 */
  155. scale = min(max(scale, 1U << 2), 10U << 3);
  156. factor = (factor << 3) / scale;
  157. if (!factor)
  158. factor = 1;
  159. }
  160. ca->alpha = 2 * factor * ((1 << 7) - ca->beta);
  161. if (!ca->alpha)
  162. ca->alpha = ALPHA_BASE;
  163. }
  164. /*
  165.  * After we have the rtt data to calculate beta, we'd still prefer to wait one
  166.  * rtt before we adjust our beta to ensure we are working from a consistent
  167.  * data.
  168.  *
  169.  * This function should be called when we hit a congestion event since only at
  170.  * that point do we really have a real sense of maxRTT (the queues en route
  171.  * were getting just too full now).
  172.  */
  173. static void htcp_param_update(struct sock *sk)
  174. {
  175. struct htcp *ca = inet_csk_ca(sk);
  176. u32 minRTT = ca->minRTT;
  177. u32 maxRTT = ca->maxRTT;
  178. htcp_beta_update(ca, minRTT, maxRTT);
  179. htcp_alpha_update(ca);
  180. /* add slowly fading memory for maxRTT to accommodate routing changes */
  181. if (minRTT > 0 && maxRTT > minRTT)
  182. ca->maxRTT = minRTT + ((maxRTT - minRTT) * 95) / 100;
  183. }
  184. static u32 htcp_recalc_ssthresh(struct sock *sk)
  185. {
  186. const struct tcp_sock *tp = tcp_sk(sk);
  187. const struct htcp *ca = inet_csk_ca(sk);
  188. htcp_param_update(sk);
  189. return max((tp->snd_cwnd * ca->beta) >> 7, 2U);
  190. }
  191. static void htcp_cong_avoid(struct sock *sk, u32 ack, u32 rtt,
  192.     u32 in_flight, int data_acked)
  193. {
  194. struct tcp_sock *tp = tcp_sk(sk);
  195. struct htcp *ca = inet_csk_ca(sk);
  196. if (!tcp_is_cwnd_limited(sk, in_flight))
  197. return;
  198. if (tp->snd_cwnd <= tp->snd_ssthresh)
  199. tcp_slow_start(tp);
  200. else {
  201. measure_rtt(sk);
  202. /* In dangerous area, increase slowly.
  203.  * In theory this is tp->snd_cwnd += alpha / tp->snd_cwnd
  204.  */
  205. if ((tp->snd_cwnd_cnt * ca->alpha)>>7 >= tp->snd_cwnd) {
  206. if (tp->snd_cwnd < tp->snd_cwnd_clamp)
  207. tp->snd_cwnd++;
  208. tp->snd_cwnd_cnt = 0;
  209. htcp_alpha_update(ca);
  210. } else
  211. tp->snd_cwnd_cnt += ca->pkts_acked;
  212. ca->pkts_acked = 1;
  213. }
  214. }
  215. static void htcp_init(struct sock *sk)
  216. {
  217. struct htcp *ca = inet_csk_ca(sk);
  218. memset(ca, 0, sizeof(struct htcp));
  219. ca->alpha = ALPHA_BASE;
  220. ca->beta = BETA_MIN;
  221. ca->pkts_acked = 1;
  222. ca->last_cong = jiffies;
  223. }
  224. static void htcp_state(struct sock *sk, u8 new_state)
  225. {
  226. switch (new_state) {
  227. case TCP_CA_Open:
  228. {
  229. struct htcp *ca = inet_csk_ca(sk);
  230. ca->last_cong = jiffies;
  231. }
  232. break;
  233. case TCP_CA_CWR:
  234. case TCP_CA_Recovery:
  235. case TCP_CA_Loss:
  236. htcp_reset(inet_csk_ca(sk));
  237. break;
  238. }
  239. }
  240. static struct tcp_congestion_ops htcp = {
  241. .init = htcp_init,
  242. .ssthresh = htcp_recalc_ssthresh,
  243. .cong_avoid = htcp_cong_avoid,
  244. .set_state = htcp_state,
  245. .undo_cwnd = htcp_cwnd_undo,
  246. .pkts_acked = measure_achieved_throughput,
  247. .owner = THIS_MODULE,
  248. .name = "htcp",
  249. };
  250. static int __init htcp_register(void)
  251. {
  252. BUILD_BUG_ON(sizeof(struct htcp) > ICSK_CA_PRIV_SIZE);
  253. BUILD_BUG_ON(BETA_MIN >= BETA_MAX);
  254. return tcp_register_congestion_control(&htcp);
  255. }
  256. static void __exit htcp_unregister(void)
  257. {
  258. tcp_unregister_congestion_control(&htcp);
  259. }
  260. module_init(htcp_register);
  261. module_exit(htcp_unregister);
  262. MODULE_AUTHOR("Baruch Even");
  263. MODULE_LICENSE("GPL");
  264. MODULE_DESCRIPTION("H-TCP");
  265. #undef NS_PROTOCOL