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

通讯编程

开发平台:

Visual C++

  1. /* Modified Linux module source code from /home/weixl/linux-2.6.22.6 */
  2. #define NS_PROTOCOL "tcp_veno.c"
  3. #include "../ns-linux-c.h"
  4. #include "../ns-linux-util.h"
  5. /*
  6.  * TCP Veno congestion control
  7.  *
  8.  * This is based on the congestion detection/avoidance scheme described in
  9.  *    C. P. Fu, S. C. Liew.
  10.  *    "TCP Veno: TCP Enhancement for Transmission over Wireless Access Networks."
  11.  *    IEEE Journal on Selected Areas in Communication,
  12.  *    Feb. 2003.
  13.  *  See http://www.ntu.edu.sg/home5/ZHOU0022/papers/CPFu03a.pdf
  14.  */
  15. /* Default values of the Veno variables, in fixed-point representation
  16.  * with V_PARAM_SHIFT bits to the right of the binary point.
  17.  */
  18. #define V_PARAM_SHIFT 1
  19. static const int beta = 3 << V_PARAM_SHIFT;
  20. /* Veno variables */
  21. struct veno {
  22. u8 doing_veno_now; /* if true, do veno for this rtt */
  23. u16 cntrtt; /* # of rtts measured within last rtt */
  24. u32 minrtt; /* min of rtts measured within last rtt (in usec) */
  25. u32 basertt; /* the min of all Veno rtt measurements seen (in usec) */
  26. u32 inc; /* decide whether to increase cwnd */
  27. u32 diff; /* calculate the diff rate */
  28. };
  29. /* There are several situations when we must "re-start" Veno:
  30.  *
  31.  *  o when a connection is established
  32.  *  o after an RTO
  33.  *  o after fast recovery
  34.  *  o when we send a packet and there is no outstanding
  35.  *    unacknowledged data (restarting an idle connection)
  36.  *
  37.  */
  38. static inline void veno_enable(struct sock *sk)
  39. {
  40. struct veno *veno = inet_csk_ca(sk);
  41. /* turn on Veno */
  42. veno->doing_veno_now = 1;
  43. veno->minrtt = 0x7fffffff;
  44. }
  45. static inline void veno_disable(struct sock *sk)
  46. {
  47. struct veno *veno = inet_csk_ca(sk);
  48. /* turn off Veno */
  49. veno->doing_veno_now = 0;
  50. }
  51. static void tcp_veno_init(struct sock *sk)
  52. {
  53. struct veno *veno = inet_csk_ca(sk);
  54. veno->basertt = 0x7fffffff;
  55. veno->inc = 1;
  56. veno_enable(sk);
  57. }
  58. /* Do rtt sampling needed for Veno. */
  59. static void tcp_veno_pkts_acked(struct sock *sk, u32 cnt, ktime_t last)
  60. {
  61. struct veno *veno = inet_csk_ca(sk);
  62. u32 vrtt;
  63. if (ktime_equal(last, net_invalid_timestamp()))
  64. return;
  65. /* Never allow zero rtt or baseRTT */
  66. vrtt = ktime_to_us(net_timedelta(last)) + 1;
  67. /* Filter to find propagation delay: */
  68. if (vrtt < veno->basertt)
  69. veno->basertt = vrtt;
  70. /* Find the min rtt during the last rtt to find
  71.  * the current prop. delay + queuing delay:
  72.  */
  73. veno->minrtt = min(veno->minrtt, vrtt);
  74. veno->cntrtt++;
  75. }
  76. static void tcp_veno_state(struct sock *sk, u8 ca_state)
  77. {
  78. if (ca_state == TCP_CA_Open)
  79. veno_enable(sk);
  80. else
  81. veno_disable(sk);
  82. }
  83. /*
  84.  * If the connection is idle and we are restarting,
  85.  * then we don't want to do any Veno calculations
  86.  * until we get fresh rtt samples.  So when we
  87.  * restart, we reset our Veno state to a clean
  88.  * state. After we get acks for this flight of
  89.  * packets, _then_ we can make Veno calculations
  90.  * again.
  91.  */
  92. static void tcp_veno_cwnd_event(struct sock *sk, enum tcp_ca_event event)
  93. {
  94. if (event == CA_EVENT_CWND_RESTART || event == CA_EVENT_TX_START)
  95. tcp_veno_init(sk);
  96. }
  97. static void tcp_veno_cong_avoid(struct sock *sk, u32 ack,
  98. u32 seq_rtt, u32 in_flight, int flag)
  99. {
  100. struct tcp_sock *tp = tcp_sk(sk);
  101. struct veno *veno = inet_csk_ca(sk);
  102. if (!veno->doing_veno_now)
  103. return tcp_reno_cong_avoid(sk, ack, seq_rtt, in_flight, flag);
  104. /* limited by applications */
  105. if (!tcp_is_cwnd_limited(sk, in_flight))
  106. return;
  107. /* We do the Veno calculations only if we got enough rtt samples */
  108. if (veno->cntrtt <= 2) {
  109. /* We don't have enough rtt samples to do the Veno
  110.  * calculation, so we'll behave like Reno.
  111.  */
  112. tcp_reno_cong_avoid(sk, ack, seq_rtt, in_flight, flag);
  113. } else {
  114. u32 rtt, target_cwnd;
  115. /* We have enough rtt samples, so, using the Veno
  116.  * algorithm, we determine the state of the network.
  117.  */
  118. rtt = veno->minrtt;
  119. target_cwnd = ((tp->snd_cwnd * veno->basertt)
  120.        << V_PARAM_SHIFT) / rtt;
  121. veno->diff = (tp->snd_cwnd << V_PARAM_SHIFT) - target_cwnd;
  122. if (tp->snd_cwnd <= tp->snd_ssthresh) {
  123. /* Slow start.  */
  124. tcp_slow_start(tp);
  125. } else {
  126. /* Congestion avoidance. */
  127. if (veno->diff < beta) {
  128. /* In the "non-congestive state", increase cwnd
  129.  *  every rtt.
  130.  */
  131. if (tp->snd_cwnd_cnt >= tp->snd_cwnd) {
  132. if (tp->snd_cwnd < tp->snd_cwnd_clamp)
  133. tp->snd_cwnd++;
  134. tp->snd_cwnd_cnt = 0;
  135. } else
  136. tp->snd_cwnd_cnt++;
  137. } else {
  138. /* In the "congestive state", increase cwnd
  139.  * every other rtt.
  140.  */
  141. if (tp->snd_cwnd_cnt >= tp->snd_cwnd) {
  142. if (veno->inc
  143.     && tp->snd_cwnd <
  144.     tp->snd_cwnd_clamp) {
  145. tp->snd_cwnd++;
  146. veno->inc = 0;
  147. } else
  148. veno->inc = 1;
  149. tp->snd_cwnd_cnt = 0;
  150. } else
  151. tp->snd_cwnd_cnt++;
  152. }
  153. }
  154. if (tp->snd_cwnd < 2)
  155. tp->snd_cwnd = 2;
  156. else if (tp->snd_cwnd > tp->snd_cwnd_clamp)
  157. tp->snd_cwnd = tp->snd_cwnd_clamp;
  158. }
  159. /* Wipe the slate clean for the next rtt. */
  160. /* veno->cntrtt = 0; */
  161. veno->minrtt = 0x7fffffff;
  162. }
  163. /* Veno MD phase */
  164. static u32 tcp_veno_ssthresh(struct sock *sk)
  165. {
  166. const struct tcp_sock *tp = tcp_sk(sk);
  167. struct veno *veno = inet_csk_ca(sk);
  168. if (veno->diff < beta)
  169. /* in "non-congestive state", cut cwnd by 1/5 */
  170. return max(tp->snd_cwnd * 4 / 5, 2U);
  171. else
  172. /* in "congestive state", cut cwnd by 1/2 */
  173. return max(tp->snd_cwnd >> 1U, 2U);
  174. }
  175. static struct tcp_congestion_ops tcp_veno = {
  176. .flags = TCP_CONG_RTT_STAMP,
  177. .init = tcp_veno_init,
  178. .ssthresh = tcp_veno_ssthresh,
  179. .cong_avoid = tcp_veno_cong_avoid,
  180. .pkts_acked = tcp_veno_pkts_acked,
  181. .set_state = tcp_veno_state,
  182. .cwnd_event = tcp_veno_cwnd_event,
  183. .owner = THIS_MODULE,
  184. .name = "veno",
  185. };
  186. static int __init tcp_veno_register(void)
  187. {
  188. BUILD_BUG_ON(sizeof(struct veno) > ICSK_CA_PRIV_SIZE);
  189. tcp_register_congestion_control(&tcp_veno);
  190. return 0;
  191. }
  192. static void __exit tcp_veno_unregister(void)
  193. {
  194. tcp_unregister_congestion_control(&tcp_veno);
  195. }
  196. module_init(tcp_veno_register);
  197. module_exit(tcp_veno_unregister);
  198. MODULE_AUTHOR("Bin Zhou, Cheng Peng Fu");
  199. MODULE_LICENSE("GPL");
  200. MODULE_DESCRIPTION("TCP Veno");
  201. #undef NS_PROTOCOL