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

通讯编程

开发平台:

Visual C++

  1. /* Modified Linux module source code from /home/weixl/linux-2.6.22.6 */
  2. #define NS_PROTOCOL "tcp_vegas.c"
  3. #include "../ns-linux-c.h"
  4. #include "../ns-linux-util.h"
  5. /*
  6.  * TCP Vegas congestion control
  7.  *
  8.  * This is based on the congestion detection/avoidance scheme described in
  9.  *    Lawrence S. Brakmo and Larry L. Peterson.
  10.  *    "TCP Vegas: End to end congestion avoidance on a global internet."
  11.  *    IEEE Journal on Selected Areas in Communication, 13(8):1465--1480,
  12.  *    October 1995. Available from:
  13.  * ftp://ftp.cs.arizona.edu/xkernel/Papers/jsac.ps
  14.  *
  15.  * See http://www.cs.arizona.edu/xkernel/ for their implementation.
  16.  * The main aspects that distinguish this implementation from the
  17.  * Arizona Vegas implementation are:
  18.  *   o We do not change the loss detection or recovery mechanisms of
  19.  *     Linux in any way. Linux already recovers from losses quite well,
  20.  *     using fine-grained timers, NewReno, and FACK.
  21.  *   o To avoid the performance penalty imposed by increasing cwnd
  22.  *     only every-other RTT during slow start, we increase during
  23.  *     every RTT during slow start, just like Reno.
  24.  *   o Largely to allow continuous cwnd growth during slow start,
  25.  *     we use the rate at which ACKs come back as the "actual"
  26.  *     rate, rather than the rate at which data is sent.
  27.  *   o To speed convergence to the right rate, we set the cwnd
  28.  *     to achieve the right ("actual") rate when we exit slow start.
  29.  *   o To filter out the noise caused by delayed ACKs, we use the
  30.  *     minimum RTT sample observed during the last RTT to calculate
  31.  *     the actual rate.
  32.  *   o When the sender re-starts from idle, it waits until it has
  33.  *     received ACKs for an entire flight of new data before making
  34.  *     a cwnd adjustment decision. The original Vegas implementation
  35.  *     assumed senders never went idle.
  36.  * 
  37.  *
  38.  *   TCP Compound based on TCP Vegas
  39.  *
  40.  *   further details can be found here:
  41.  *      ftp://ftp.research.microsoft.com/pub/tr/TR-2005-86.pdf
  42.  */
  43. /*
  44. #include <linux/config.h>
  45. #include <linux/mm.h>
  46. #include <linux/module.h>
  47. #include <linux/skbuff.h>
  48. #include <linux/inet_diag.h>
  49. #include <net/tcp.h>
  50. */
  51. /* Default values of the Vegas variables, in fixed-point representation
  52.  * with V_PARAM_SHIFT bits to the right of the binary point.
  53.  */
  54. #define V_PARAM_SHIFT 1
  55. #define TCP_COMPOUND_ALPHA          3U
  56. #define TCP_COMPOUND_BETA           1U
  57. #define TCP_COMPOUND_GAMMA         30
  58. #define TCP_COMPOUND_ZETA           1
  59. /* TCP compound variables */
  60. struct compound {
  61. u32 beg_snd_nxt; /* right edge during last RTT */
  62. u32 beg_snd_una; /* left edge  during last RTT */
  63. u32 beg_snd_cwnd; /* saves the size of the cwnd */
  64. u8 doing_vegas_now; /* if true, do vegas for this RTT */
  65. u16 cntRTT; /* # of RTTs measured within last RTT */
  66. u32 minRTT; /* min of RTTs measured within last RTT (in usec) */
  67. u32 baseRTT; /* the min of all Vegas RTT measurements seen (in usec) */
  68. u32 cwnd;
  69. u32 dwnd;
  70. };
  71. /* There are several situations when we must "re-start" Vegas:
  72.  *
  73.  *  o when a connection is established
  74.  *  o after an RTO
  75.  *  o after fast recovery
  76.  *  o when we send a packet and there is no outstanding
  77.  *    unacknowledged data (restarting an idle connection)
  78.  *
  79.  * In these circumstances we cannot do a Vegas calculation at the
  80.  * end of the first RTT, because any calculation we do is using
  81.  * stale info -- both the saved cwnd and congestion feedback are
  82.  * stale.
  83.  *
  84.  * Instead we must wait until the completion of an RTT during
  85.  * which we actually receive ACKs.
  86.  */
  87. static inline void cvegas_enable(struct sock *sk)
  88. {
  89. const struct tcp_sock *tp = tcp_sk(sk);
  90. struct compound *vegas = inet_csk_ca(sk);
  91. /* Begin taking Vegas samples next time we send something. */
  92. vegas->doing_vegas_now = 1;
  93. /* Set the beginning of the next send window. */
  94. vegas->beg_snd_nxt = tp->snd_nxt;
  95. vegas->cntRTT = 0;
  96. vegas->minRTT = 0x7fffffff;
  97. }
  98. /* Stop taking Vegas samples for now. */
  99. static inline void cvegas_disable(struct sock *sk)
  100. {
  101. struct compound *vegas = inet_csk_ca(sk);
  102. vegas->doing_vegas_now = 0;
  103. }
  104. static void tcp_compound_init(struct sock *sk)
  105. {
  106. struct compound *vegas = inet_csk_ca(sk);
  107. const struct tcp_sock *tp = tcp_sk(sk);
  108. vegas->baseRTT = 0x7fffffff;
  109. cvegas_enable(sk);
  110. vegas->dwnd = 0;
  111. vegas->cwnd = tp->snd_cwnd;
  112. }
  113. /* Do RTT sampling needed for Vegas.
  114.  * Basically we:
  115.  *   o min-filter RTT samples from within an RTT to get the current
  116.  *     propagation delay + queuing delay (we are min-filtering to try to
  117.  *     avoid the effects of delayed ACKs)
  118.  *   o min-filter RTT samples from a much longer window (forever for now)
  119.  *     to find the propagation delay (baseRTT)
  120.  */
  121. static void tcp_compound_rtt_calc(struct sock *sk, u32 usrtt)
  122. {
  123. struct compound *vegas = inet_csk_ca(sk);
  124. u32 vrtt = usrtt + 1; /* Never allow zero rtt or baseRTT */
  125. /* Filter to find propagation delay: */
  126. if (vrtt < vegas->baseRTT) 
  127. vegas->baseRTT = vrtt;
  128. /* Find the min RTT during the last RTT to find
  129.  * the current prop. delay + queuing delay:
  130.  */
  131. vegas->minRTT = min(vegas->minRTT, vrtt);
  132. vegas->cntRTT++;
  133. }
  134. static void tcp_compound_state(struct sock *sk, u8 ca_state)
  135. {
  136. if (ca_state == TCP_CA_Open)
  137. cvegas_enable(sk);
  138. else
  139. cvegas_disable(sk);
  140. }
  141. /* 64bit divisor, dividend and result. dynamic precision */
  142. static inline u64 cdiv64_64(u64 dividend, u64 divisor)
  143. {
  144.        u32 d = divisor;
  145.        if (divisor > 0xffffffffULL) {
  146.                unsigned int shift = fls(divisor >> 32);
  147.                d = divisor >> shift;
  148.                dividend >>= shift;
  149.        }
  150.        /* avoid 64 bit division if possible */
  151.        if (dividend >> 32)
  152.                do_div(dividend, d);
  153.        else
  154.                dividend = (u32) dividend / d;
  155.        return dividend;
  156. }
  157. /* calculate the quartic root of "a" using Newton-Raphson */
  158. static u32 qroot(u64 a)
  159. {
  160.        u32 x, x1;
  161.        /* Initial estimate is based on:
  162.         * qrt(x) = exp(log(x) / 4)
  163.         */
  164.        x = 1u << (fls64(a) >> 2);
  165.        /*
  166.         * Iteration based on:
  167.         *                         3
  168.         * x    = ( 3 * x  +  a / x  ) / 4
  169.         *  k+1          k         k
  170.         */
  171.        do {
  172.                u64 x3 = x;
  173.                x1 = x;
  174.                x3 *= x;
  175.                x3 *= x;
  176.                x = (3 * x + (u32) cdiv64_64(a, x3)) / 4;
  177.        } while (abs(x1 - x) > 1);
  178.        return x;
  179. }
  180. /*
  181.  * If the connection is idle and we are restarting,
  182.  * then we don't want to do any Vegas calculations
  183.  * until we get fresh RTT samples.  So when we
  184.  * restart, we reset our Vegas state to a clean
  185.  * slate. After we get acks for this flight of
  186.  * packets, _then_ we can make Vegas calculations
  187.  * again.
  188.  */
  189. static void tcp_compound_cwnd_event(struct sock *sk, enum tcp_ca_event event)
  190. {
  191. if (event == CA_EVENT_CWND_RESTART || event == CA_EVENT_TX_START)
  192. tcp_compound_init(sk);
  193. }
  194. static void tcp_compound_cong_avoid(struct sock *sk, u32 ack,
  195.     u32 seq_rtt, u32 in_flight, int flag)
  196. {
  197. struct tcp_sock *tp = tcp_sk(sk);
  198. struct compound *vegas = inet_csk_ca(sk);
  199. u8 inc = 0;
  200.   if (vegas->cwnd + vegas->dwnd > tp->snd_cwnd) {
  201.     if (vegas->cwnd > tp->snd_cwnd ||
  202.            vegas->dwnd > tp->snd_cwnd) {
  203.       vegas->cwnd = tp->snd_cwnd;
  204.       vegas->dwnd = 0;
  205.     } else
  206.       vegas->cwnd = tp->snd_cwnd - vegas->dwnd;
  207.   }
  208. if (!tcp_is_cwnd_limited(sk, in_flight))
  209. return;
  210. if (vegas->cwnd <= tp->snd_ssthresh)
  211. inc = 1;
  212. else if (tp->snd_cwnd_cnt < tp->snd_cwnd)
  213. tp->snd_cwnd_cnt++;
  214. if (tp->snd_cwnd_cnt >= tp->snd_cwnd) {
  215. inc = 1;
  216. tp->snd_cwnd_cnt = 0;
  217. }
  218. if (inc && tp->snd_cwnd < tp->snd_cwnd_clamp)
  219. vegas->cwnd++;
  220. /* The key players are v_beg_snd_una and v_beg_snd_nxt.
  221.  *
  222.  * These are so named because they represent the approximate values
  223.  * of snd_una and snd_nxt at the beginning of the current RTT. More
  224.  * precisely, they represent the amount of data sent during the RTT.
  225.  * At the end of the RTT, when we receive an ACK for v_beg_snd_nxt,
  226.  * we will calculate that (v_beg_snd_nxt - v_beg_snd_una) outstanding
  227.  * bytes of data have been ACKed during the course of the RTT, giving
  228.  * an "actual" rate of:
  229.  *
  230.  *     (v_beg_snd_nxt - v_beg_snd_una) / (rtt duration)
  231.  *
  232.  * Unfortunately, v_beg_snd_una is not exactly equal to snd_una,
  233.  * because delayed ACKs can cover more than one segment, so they
  234.  * don't line up nicely with the boundaries of RTTs.
  235.  *
  236.  * Another unfortunate fact of life is that delayed ACKs delay the
  237.  * advance of the left edge of our send window, so that the number
  238.  * of bytes we send in an RTT is often less than our cwnd will allow.
  239.  * So we keep track of our cwnd separately, in v_beg_snd_cwnd.
  240.  */
  241. if (after(ack, vegas->beg_snd_nxt)) {
  242. /* Do the Vegas once-per-RTT cwnd adjustment. */
  243. u32 old_wnd, old_snd_cwnd;
  244. /* Here old_wnd is essentially the window of data that was
  245.  * sent during the previous RTT, and has all
  246.  * been acknowledged in the course of the RTT that ended
  247.  * with the ACK we just received. Likewise, old_snd_cwnd
  248.  * is the cwnd during the previous RTT.
  249.  */
  250. if (!tp->mss_cache)
  251. return;
  252. old_wnd = (vegas->beg_snd_nxt - vegas->beg_snd_una) /
  253.     tp->mss_cache;
  254. old_snd_cwnd = vegas->beg_snd_cwnd;
  255. /* Save the extent of the current window so we can use this
  256.  * at the end of the next RTT.
  257.  */
  258. vegas->beg_snd_una = vegas->beg_snd_nxt;
  259. vegas->beg_snd_nxt = tp->snd_nxt;
  260. vegas->beg_snd_cwnd = tp->snd_cwnd;
  261. /* We do the Vegas calculations only if we got enough RTT
  262.  * samples that we can be reasonably sure that we got
  263.  * at least one RTT sample that wasn't from a delayed ACK.
  264.  * If we only had 2 samples total,
  265.  * then that means we're getting only 1 ACK per RTT, which
  266.  * means they're almost certainly delayed ACKs.
  267.  * If  we have 3 samples, we should be OK.
  268.  */
  269. if (vegas->cntRTT > 2) {
  270. u32 rtt, target_cwnd, diff;
  271. u32 brtt, dwnd;
  272. /* We have enough RTT samples, so, using the Vegas
  273.  * algorithm, we determine if we should increase or
  274.  * decrease cwnd, and by how much.
  275.  */
  276. /* Pluck out the RTT we are using for the Vegas
  277.  * calculations. This is the min RTT seen during the
  278.  * last RTT. Taking the min filters out the effects
  279.  * of delayed ACKs, at the cost of noticing congestion
  280.  * a bit later.
  281.  */
  282. rtt = vegas->minRTT;
  283. /* Calculate the cwnd we should have, if we weren't
  284.  * going too fast.
  285.  *
  286.  * This is:
  287.  *     (actual rate in segments) * baseRTT
  288.  * We keep it as a fixed point number with
  289.  * V_PARAM_SHIFT bits to the right of the binary point.
  290.  */
  291. if (!rtt)
  292. return;
  293. brtt = vegas->baseRTT;
  294. target_cwnd = ((old_wnd * brtt)
  295.        << V_PARAM_SHIFT) / rtt;
  296. /* Calculate the difference between the window we had,
  297.  * and the window we would like to have. This quantity
  298.  * is the "Diff" from the Arizona Vegas papers.
  299.  *
  300.  * Again, this is a fixed point number with
  301.  * V_PARAM_SHIFT bits to the right of the binary
  302.  * point.
  303.  */
  304. diff = (old_wnd << V_PARAM_SHIFT) - target_cwnd;
  305. dwnd = vegas->dwnd;
  306. if (diff < (TCP_COMPOUND_GAMMA << V_PARAM_SHIFT)) {
  307. u64 win3;
  308. u64 x;
  309. /*
  310.  * The TCP Compound paper describes the choice
  311.  * of "k" determines the agressiveness,
  312.  * ie. slope of the response function.
  313.  *
  314.  * For same value as HSTCP would be 0.8
  315.  * but for computaional reasons, both the
  316.  * original authors and this implementation
  317.  * use 0.75.
  318.  */
  319. win3 = old_wnd;
  320. win3 *= old_wnd;
  321. win3 *= old_wnd;
  322. x = qroot(win3) >> TCP_COMPOUND_ALPHA;
  323. if (x > 1)
  324. dwnd = x - 1;
  325. else
  326. dwnd = 0;
  327. dwnd += vegas->dwnd;
  328. } else if ((dwnd << V_PARAM_SHIFT) <
  329.    (diff * TCP_COMPOUND_BETA))
  330. dwnd = 0;
  331. else
  332. dwnd =
  333.     ((dwnd << V_PARAM_SHIFT) -
  334.      (diff *
  335.       TCP_COMPOUND_BETA)) >> V_PARAM_SHIFT;
  336. vegas->dwnd = dwnd;
  337. }
  338. /* Wipe the slate clean for the next RTT. */
  339. vegas->cntRTT = 0;
  340. vegas->minRTT = 0x7fffffff;
  341. }
  342. tp->snd_cwnd = vegas->cwnd + vegas->dwnd;
  343. }
  344. /* Extract info for Tcp socket info provided via netlink. */
  345. static void tcp_compound_get_info(struct sock *sk, u32 ext, struct sk_buff *skb)
  346. {
  347. const struct compound *ca = inet_csk_ca(sk);
  348. if (ext & (1 << (INET_DIAG_VEGASINFO - 1))) {
  349. struct tcpvegas_info *info;
  350. info = RTA_DATA(__RTA_PUT(skb, INET_DIAG_VEGASINFO,
  351.   sizeof(*info)));
  352. info->tcpv_enabled = ca->doing_vegas_now;
  353. info->tcpv_rttcnt = ca->cntRTT;
  354. info->tcpv_rtt = ca->baseRTT;
  355. info->tcpv_minrtt = ca->minRTT;
  356. //       rtattr_failure:;
  357. }
  358. }
  359. static struct tcp_congestion_ops tcp_compound = {
  360. .flags = TCP_CONG_RTT_STAMP,
  361. .init = tcp_compound_init,
  362. .ssthresh = tcp_reno_ssthresh,
  363. .cong_avoid = tcp_compound_cong_avoid,
  364. .min_cwnd = tcp_reno_min_cwnd,
  365. .rtt_sample = tcp_compound_rtt_calc,
  366. .set_state = tcp_compound_state,
  367. .cwnd_event = tcp_compound_cwnd_event,
  368. .get_info = tcp_compound_get_info,
  369. .owner = THIS_MODULE,
  370. .name = "compound",
  371. };
  372. static int __init tcp_compound_register(void)
  373. {
  374. BUG_ON(sizeof(struct compound) > ICSK_CA_PRIV_SIZE);
  375. tcp_register_congestion_control(&tcp_compound);
  376. return 0;
  377. }
  378. static void __exit tcp_compound_unregister(void)
  379. {
  380. tcp_unregister_congestion_control(&tcp_compound);
  381. }
  382. module_init(tcp_compound_register);
  383. module_exit(tcp_compound_unregister);
  384. MODULE_AUTHOR("Angelo P. Castellani / Stephen Hemminger");
  385. MODULE_LICENSE("GPL");
  386. MODULE_DESCRIPTION("TCP Compound");