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

通讯编程

开发平台:

Visual C++

  1. /* Modified Linux module source code from /home/weixl/linux-2.6.22.6 */
  2. #define NS_PROTOCOL "tcp_lp.c"
  3. #include "../ns-linux-c.h"
  4. #include "../ns-linux-util.h"
  5. /*
  6.  * TCP Low Priority (TCP-LP)
  7.  *
  8.  * TCP Low Priority is a distributed algorithm whose goal is to utilize only
  9.  *   the excess network bandwidth as compared to the ``fair share`` of
  10.  *   bandwidth as targeted by TCP.
  11.  *
  12.  * As of 2.6.13, Linux supports pluggable congestion control algorithms.
  13.  * Due to the limitation of the API, we take the following changes from
  14.  * the original TCP-LP implementation:
  15.  *   o We use newReno in most core CA handling. Only add some checking
  16.  *     within cong_avoid.
  17.  *   o Error correcting in remote HZ, therefore remote HZ will be keeped
  18.  *     on checking and updating.
  19.  *   o Handling calculation of One-Way-Delay (OWD) within rtt_sample, sicne
  20.  *     OWD have a similar meaning as RTT. Also correct the buggy formular.
  21.  *   o Handle reaction for Early Congestion Indication (ECI) within
  22.  *     pkts_acked, as mentioned within pseudo code.
  23.  *   o OWD is handled in relative format, where local time stamp will in
  24.  *     tcp_time_stamp format.
  25.  *
  26.  * Original Author:
  27.  *   Aleksandar Kuzmanovic <akuzma@northwestern.edu>
  28.  * Available from:
  29.  *   http://www.ece.rice.edu/~akuzma/Doc/akuzma/TCP-LP.pdf
  30.  * Original implementation for 2.4.19:
  31.  *   http://www-ece.rice.edu/networks/TCP-LP/
  32.  *
  33.  * 2.6.x module Authors:
  34.  *   Wong Hoi Sing, Edison <hswong3i@gmail.com>
  35.  *   Hung Hing Lun, Mike <hlhung3i@gmail.com>
  36.  * SourceForge project page:
  37.  *   http://tcp-lp-mod.sourceforge.net/
  38.  */
  39. /* resolution of owd */
  40. #define LP_RESOL       1000
  41. /**
  42.  * enum tcp_lp_state
  43.  * @LP_VALID_RHZ: is remote HZ valid?
  44.  * @LP_VALID_OWD: is OWD valid?
  45.  * @LP_WITHIN_THR: are we within threshold?
  46.  * @LP_WITHIN_INF: are we within inference?
  47.  *
  48.  * TCP-LP's state flags.
  49.  * We create this set of state flag mainly for debugging.
  50.  */
  51. enum tcp_lp_state {
  52. LP_VALID_RHZ = (1 << 0),
  53. LP_VALID_OWD = (1 << 1),
  54. LP_WITHIN_THR = (1 << 3),
  55. LP_WITHIN_INF = (1 << 4),
  56. };
  57. /**
  58.  * struct lp
  59.  * @flag: TCP-LP state flag
  60.  * @sowd: smoothed OWD << 3
  61.  * @owd_min: min OWD
  62.  * @owd_max: max OWD
  63.  * @owd_max_rsv: resrved max owd
  64.  * @remote_hz: estimated remote HZ
  65.  * @remote_ref_time: remote reference time
  66.  * @local_ref_time: local reference time
  67.  * @last_drop: time for last active drop
  68.  * @inference: current inference
  69.  *
  70.  * TCP-LP's private struct.
  71.  * We get the idea from original TCP-LP implementation where only left those we
  72.  * found are really useful.
  73.  */
  74. struct lp {
  75. u32 flag;
  76. u32 sowd;
  77. u32 owd_min;
  78. u32 owd_max;
  79. u32 owd_max_rsv;
  80. u32 remote_hz;
  81. u32 remote_ref_time;
  82. u32 local_ref_time;
  83. u32 last_drop;
  84. u32 inference;
  85. };
  86. /**
  87.  * tcp_lp_init
  88.  *
  89.  * Init all required variables.
  90.  * Clone the handling from Vegas module implementation.
  91.  */
  92. static void tcp_lp_init(struct sock *sk)
  93. {
  94. struct lp *lp = inet_csk_ca(sk);
  95. lp->flag = 0;
  96. lp->sowd = 0;
  97. lp->owd_min = 0xffffffff;
  98. lp->owd_max = 0;
  99. lp->owd_max_rsv = 0;
  100. lp->remote_hz = 0;
  101. lp->remote_ref_time = 0;
  102. lp->local_ref_time = 0;
  103. lp->last_drop = 0;
  104. lp->inference = 0;
  105. }
  106. /**
  107.  * tcp_lp_cong_avoid
  108.  *
  109.  * Implementation of cong_avoid.
  110.  * Will only call newReno CA when away from inference.
  111.  * From TCP-LP's paper, this will be handled in additive increasement.
  112.  */
  113. static void tcp_lp_cong_avoid(struct sock *sk, u32 ack, u32 rtt, u32 in_flight,
  114.       int flag)
  115. {
  116. struct lp *lp = inet_csk_ca(sk);
  117. if (!(lp->flag & LP_WITHIN_INF))
  118. tcp_reno_cong_avoid(sk, ack, rtt, in_flight, flag);
  119. }
  120. /**
  121.  * tcp_lp_remote_hz_estimator
  122.  *
  123.  * Estimate remote HZ.
  124.  * We keep on updating the estimated value, where original TCP-LP
  125.  * implementation only guest it for once and use forever.
  126.  */
  127. static u32 tcp_lp_remote_hz_estimator(struct sock *sk)
  128. {
  129. struct tcp_sock *tp = tcp_sk(sk);
  130. struct lp *lp = inet_csk_ca(sk);
  131. s64 rhz = lp->remote_hz << 6; /* remote HZ << 6 */
  132. s64 m = 0;
  133. /* not yet record reference time
  134.  * go away!! record it before come back!! */
  135. if (lp->remote_ref_time == 0 || lp->local_ref_time == 0)
  136. goto out;
  137. /* we can't calc remote HZ with no different!! */
  138. if (tp->rx_opt.rcv_tsval == lp->remote_ref_time
  139.     || tp->rx_opt.rcv_tsecr == lp->local_ref_time)
  140. goto out;
  141. m = HZ * (tp->rx_opt.rcv_tsval -
  142.   lp->remote_ref_time) / (tp->rx_opt.rcv_tsecr -
  143.   lp->local_ref_time);
  144. if (m < 0)
  145. m = -m;
  146. if (rhz > 0) {
  147. m -= rhz >> 6; /* m is now error in remote HZ est */
  148. rhz += m; /* 63/64 old + 1/64 new */
  149. } else
  150. rhz = m << 6;
  151.  out:
  152. /* record time for successful remote HZ calc */
  153. if ((rhz >> 6) > 0)
  154. lp->flag |= LP_VALID_RHZ;
  155. else
  156. lp->flag &= ~LP_VALID_RHZ;
  157. /* record reference time stamp */
  158. lp->remote_ref_time = tp->rx_opt.rcv_tsval;
  159. lp->local_ref_time = tp->rx_opt.rcv_tsecr;
  160. return rhz >> 6;
  161. }
  162. /**
  163.  * tcp_lp_owd_calculator
  164.  *
  165.  * Calculate one way delay (in relative format).
  166.  * Original implement OWD as minus of remote time difference to local time
  167.  * difference directly. As this time difference just simply equal to RTT, when
  168.  * the network status is stable, remote RTT will equal to local RTT, and result
  169.  * OWD into zero.
  170.  * It seems to be a bug and so we fixed it.
  171.  */
  172. static u32 tcp_lp_owd_calculator(struct sock *sk)
  173. {
  174. struct tcp_sock *tp = tcp_sk(sk);
  175. struct lp *lp = inet_csk_ca(sk);
  176. s64 owd = 0;
  177. lp->remote_hz = tcp_lp_remote_hz_estimator(sk);
  178. if (lp->flag & LP_VALID_RHZ) {
  179. owd =
  180.     tp->rx_opt.rcv_tsval * (LP_RESOL / lp->remote_hz) -
  181.     tp->rx_opt.rcv_tsecr * (LP_RESOL / HZ);
  182. if (owd < 0)
  183. owd = -owd;
  184. }
  185. if (owd > 0)
  186. lp->flag |= LP_VALID_OWD;
  187. else
  188. lp->flag &= ~LP_VALID_OWD;
  189. return owd;
  190. }
  191. /**
  192.  * tcp_lp_rtt_sample
  193.  *
  194.  * Implementation or rtt_sample.
  195.  * Will take the following action,
  196.  *   1. calc OWD,
  197.  *   2. record the min/max OWD,
  198.  *   3. calc smoothed OWD (SOWD).
  199.  * Most ideas come from the original TCP-LP implementation.
  200.  */
  201. static void tcp_lp_rtt_sample(struct sock *sk, u32 rtt)
  202. {
  203. struct lp *lp = inet_csk_ca(sk);
  204. s64 mowd = tcp_lp_owd_calculator(sk);
  205. /* sorry that we don't have valid data */
  206. if (!(lp->flag & LP_VALID_RHZ) || !(lp->flag & LP_VALID_OWD))
  207. return;
  208. /* record the next min owd */
  209. if (mowd < lp->owd_min)
  210. lp->owd_min = mowd;
  211. /* always forget the max of the max
  212.  * we just set owd_max as one below it */
  213. if (mowd > lp->owd_max) {
  214. if (mowd > lp->owd_max_rsv) {
  215. if (lp->owd_max_rsv == 0)
  216. lp->owd_max = mowd;
  217. else
  218. lp->owd_max = lp->owd_max_rsv;
  219. lp->owd_max_rsv = mowd;
  220. } else
  221. lp->owd_max = mowd;
  222. }
  223. /* calc for smoothed owd */
  224. if (lp->sowd != 0) {
  225. mowd -= lp->sowd >> 3; /* m is now error in owd est */
  226. lp->sowd += mowd; /* owd = 7/8 owd + 1/8 new */
  227. } else
  228. lp->sowd = mowd << 3; /* take the measured time be owd */
  229. }
  230. /**
  231.  * tcp_lp_pkts_acked
  232.  *
  233.  * Implementation of pkts_acked.
  234.  * Deal with active drop under Early Congestion Indication.
  235.  * Only drop to half and 1 will be handle, because we hope to use back
  236.  * newReno in increase case.
  237.  * We work it out by following the idea from TCP-LP's paper directly
  238.  */
  239. static void tcp_lp_pkts_acked(struct sock *sk, u32 num_acked, ktime_t last)
  240. {
  241. struct tcp_sock *tp = tcp_sk(sk);
  242. struct lp *lp = inet_csk_ca(sk);
  243. if (!ktime_equal(last, net_invalid_timestamp()))
  244. tcp_lp_rtt_sample(sk,  ktime_to_us(net_timedelta(last)));
  245. /* calc inference */
  246. if (tcp_time_stamp > tp->rx_opt.rcv_tsecr)
  247. lp->inference = 3 * (tcp_time_stamp - tp->rx_opt.rcv_tsecr);
  248. /* test if within inference */
  249. if (lp->last_drop && (tcp_time_stamp - lp->last_drop < lp->inference))
  250. lp->flag |= LP_WITHIN_INF;
  251. else
  252. lp->flag &= ~LP_WITHIN_INF;
  253. /* test if within threshold */
  254. if (lp->sowd >> 3 <
  255.     lp->owd_min + 15 * (lp->owd_max - lp->owd_min) / 100)
  256. lp->flag |= LP_WITHIN_THR;
  257. else
  258. lp->flag &= ~LP_WITHIN_THR;
  259. pr_debug("TCP-LP: %05lo|%5lu|%5lu|%15lu|%15lu|%15lun", lp->flag,
  260.  tp->snd_cwnd, lp->remote_hz, lp->owd_min, lp->owd_max,
  261.  lp->sowd >> 3);
  262. if (lp->flag & LP_WITHIN_THR)
  263. return;
  264. /* FIXME: try to reset owd_min and owd_max here
  265.  * so decrease the chance the min/max is no longer suitable
  266.  * and will usually within threshold when whithin inference */
  267. lp->owd_min = lp->sowd >> 3;
  268. lp->owd_max = lp->sowd >> 2;
  269. lp->owd_max_rsv = lp->sowd >> 2;
  270. /* happened within inference
  271.  * drop snd_cwnd into 1 */
  272. if (lp->flag & LP_WITHIN_INF)
  273. tp->snd_cwnd = 1U;
  274. /* happened after inference
  275.  * cut snd_cwnd into half */
  276. else
  277. tp->snd_cwnd = max(tp->snd_cwnd >> 1U, 1U);
  278. /* record this drop time */
  279. lp->last_drop = tcp_time_stamp;
  280. }
  281. static struct tcp_congestion_ops tcp_lp = {
  282. .flags = TCP_CONG_RTT_STAMP,
  283. .init = tcp_lp_init,
  284. .ssthresh = tcp_reno_ssthresh,
  285. .cong_avoid = tcp_lp_cong_avoid,
  286. .min_cwnd = tcp_reno_min_cwnd,
  287. .pkts_acked = tcp_lp_pkts_acked,
  288. .owner = THIS_MODULE,
  289. .name = "lp"
  290. };
  291. static int __init tcp_lp_register(void)
  292. {
  293. BUILD_BUG_ON(sizeof(struct lp) > ICSK_CA_PRIV_SIZE);
  294. return tcp_register_congestion_control(&tcp_lp);
  295. }
  296. static void __exit tcp_lp_unregister(void)
  297. {
  298. tcp_unregister_congestion_control(&tcp_lp);
  299. }
  300. module_init(tcp_lp_register);
  301. module_exit(tcp_lp_unregister);
  302. MODULE_AUTHOR("Wong Hoi Sing Edison, Hung Hing Lun Mike");
  303. MODULE_LICENSE("GPL");
  304. MODULE_DESCRIPTION("TCP Low Priority");
  305. #undef NS_PROTOCOL