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

通讯编程

开发平台:

Visual C++

  1. /* -*- Mode:C++; c-basic-offset:8; tab-width:8; indent-tabs-mode:t -*- */
  2. /*
  3.  * tcp-rbp.cc
  4.  * Copyright (C) 1997 by the University of Southern California
  5.  * $Id: tcp-rbp.cc,v 1.22 2005/08/25 18:58:12 johnh Exp $
  6.  *
  7.  * This program is free software; you can redistribute it and/or
  8.  * modify it under the terms of the GNU General Public License,
  9.  * version 2, as published by the Free Software Foundation.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License along
  17.  * with this program; if not, write to the Free Software Foundation, Inc.,
  18.  * 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
  19.  *
  20.  *
  21.  * The copyright of this module includes the following
  22.  * linking-with-specific-other-licenses addition:
  23.  *
  24.  * In addition, as a special exception, the copyright holders of
  25.  * this module give you permission to combine (via static or
  26.  * dynamic linking) this module with free software programs or
  27.  * libraries that are released under the GNU LGPL and with code
  28.  * included in the standard release of ns-2 under the Apache 2.0
  29.  * license or under otherwise-compatible licenses with advertising
  30.  * requirements (or modified versions of such code, with unchanged
  31.  * license).  You may copy and distribute such a system following the
  32.  * terms of the GNU GPL for this module and the licenses of the
  33.  * other code concerned, provided that you include the source code of
  34.  * that other code when and as the GNU GPL requires distribution of
  35.  * source code.
  36.  *
  37.  * Note that people who make modified versions of this module
  38.  * are not obligated to grant this special exception for their
  39.  * modified versions; it is their choice whether to do so.  The GNU
  40.  * General Public License gives permission to release a modified
  41.  * version without this exception; this exception also makes it
  42.  * possible to release a modified version which carries forward this
  43.  * exception.
  44.  *
  45.  */
  46. /*
  47.  * Tcp-vegas with Rate-based pacing by John Heidemann <johnh@isi.edu>
  48.  * and Vikram Visweswaraiah <visweswa@isi.edu>.
  49.  * The original SunOS implementation was by Vikram Visweswaraiah
  50.  * and Ashish Savla <asavla@usc.edu>.
  51.  *
  52.  * Rate-based pacing is an experimental addition to TCP
  53.  * to address the slow-start restart problem.
  54.  * See <http://www.isi.edu/lsam/publications/rate_based_pacing/index.html>
  55.  * for details.
  56.  *
  57.  * A paper analysing RBP performance is in progress (as of 19-Jun-97).
  58.  */
  59. #ifndef lint
  60. static const char rcsid[] =
  61. "@(#) $Header: /cvsroot/nsnam/ns-2/tcp/tcp-rbp.cc,v 1.22 2005/08/25 18:58:12 johnh Exp $ (NCSU/IBM)";
  62. #endif
  63. #include <stdio.h>
  64. #include <stdlib.h>
  65. #include <sys/types.h>
  66. #include "ip.h"
  67. #include "tcp.h"
  68. #include "flags.h"
  69. #ifndef MIN
  70. #define MIN(x, y) ((x)<(y) ? (x) : (y))
  71. #endif /* ! MIN */
  72. #if 0
  73. #define RBP_DEBUG_PRINTF(x) printf x
  74. #else /* ! 0 */
  75. #define RBP_DEBUG_PRINTF(x)
  76. #endif /* 0 */
  77. #define RBP_MIN_SEGMENTS 2
  78. class RBPVegasTcpAgent;
  79. class RBPVegasPaceTimer : public TimerHandler {
  80. public:
  81. RBPVegasPaceTimer(RBPVegasTcpAgent *a) : TimerHandler() { a_ = a; }
  82. protected:
  83. virtual void expire(Event *e);
  84. RBPVegasTcpAgent *a_;
  85. };
  86. // Hmmm... ``a is a'' in the construction of the RBPVegasPaceTimer edifice :->
  87. class RBPVegasTcpAgent : public virtual VegasTcpAgent {
  88. friend class RBPVegasPaceTimer;
  89.  public:
  90. RBPVegasTcpAgent();
  91. virtual void recv(Packet *pkt, Handler *);
  92. virtual void timeout(int tno);
  93. virtual void send_much(int force, int reason, int maxburst);
  94. double rbp_scale_;   // conversion from actual -> rbp send rates
  95. enum rbp_rate_algorithms { RBP_NO_ALGORITHM, RBP_VEGAS_RATE_ALGORITHM, RBP_CWND_ALGORITHM };
  96. int rbp_rate_algorithm_;
  97. protected:
  98. void paced_send_one();
  99. int able_to_rbp_send_one();
  100. // stats on what we did
  101. int rbp_segs_actually_paced_;
  102. enum rbp_modes { RBP_GOING, RBP_POSSIBLE, RBP_OFF };
  103. enum rbp_modes rbp_mode_;
  104. double rbp_inter_pace_delay_;
  105. RBPVegasPaceTimer pace_timer_;
  106. };
  107. static class RBPVegasTcpClass : public TclClass {
  108. public:
  109. RBPVegasTcpClass() : TclClass("Agent/TCP/Vegas/RBP") {}
  110. TclObject* create(int, const char*const*) {
  111. return (new RBPVegasTcpAgent());
  112. }
  113. } class_vegas_rbp;
  114. void RBPVegasPaceTimer::expire(Event *) { a_->paced_send_one(); }
  115. RBPVegasTcpAgent::RBPVegasTcpAgent() : VegasTcpAgent(),
  116. rbp_mode_(RBP_OFF),
  117. pace_timer_(this)
  118. {
  119. bind("rbp_scale_", &rbp_scale_);
  120. bind("rbp_rate_algorithm_", &rbp_rate_algorithm_);
  121. bind("rbp_segs_actually_paced_", &rbp_segs_actually_paced_);
  122. bind("rbp_inter_pace_delay_", &rbp_inter_pace_delay_);
  123. }
  124. void
  125. RBPVegasTcpAgent::recv(Packet *pkt, Handler *hand)
  126. {
  127. if (rbp_mode_ != RBP_OFF) {
  128. // reciept of anything disables rbp
  129. rbp_mode_ = RBP_OFF;
  130. // Vegas takes care of cwnd.
  131. };
  132. VegasTcpAgent::recv(pkt, hand);
  133. }
  134. void
  135. RBPVegasTcpAgent::timeout(int tno)
  136. {
  137. if (tno == TCP_TIMER_RTX) {
  138. if (highest_ack_ == maxseq_) {
  139. // Idle for a while => RBP next time.
  140. rbp_mode_ = RBP_POSSIBLE;
  141. return;
  142. };
  143. };
  144. VegasTcpAgent::timeout(tno);
  145. }
  146. void
  147. RBPVegasTcpAgent::send_much(int force, int reason, int maxburst)
  148. {
  149. if (rbp_mode_ == RBP_POSSIBLE && able_to_rbp_send_one()) {
  150. // start paced mode
  151. rbp_mode_ = RBP_GOING; 
  152. rbp_segs_actually_paced_ = 0;
  153. double rbwin_vegas;
  154. switch (rbp_rate_algorithm_) {
  155. case RBP_VEGAS_RATE_ALGORITHM:
  156. // Try to follow tcp_output.c here
  157. // Calculate the vegas window as its reported rate
  158. // times the rtt.
  159. rbwin_vegas = v_actual_ * v_rtt_;
  160. RBP_DEBUG_PRINTF(("-----------------n"));
  161. RBP_DEBUG_PRINTF(("rbwin_vegas = %gnv_actual = %gnv_rtt =%gnbase_rtt=%gn",
  162.   rbwin_vegas, v_actual_, v_rtt_, v_baseRTT_));
  163. // Smooth the vegas window
  164. rbwin_vegas *= rbp_scale_;
  165. break;
  166. case RBP_CWND_ALGORITHM:
  167. // Pace out scaled cwnd.
  168. rbwin_vegas = cwnd_ * rbp_scale_;
  169. break;
  170. default:
  171. // quiet the compiler.
  172. rbwin_vegas = 0.0;
  173. abort();
  174. };
  175. rbwin_vegas = int(rbwin_vegas + 0.5);   // round
  176. // Always pace at least RBP_MIN_SEGMENTS
  177. if (rbwin_vegas <= RBP_MIN_SEGMENTS) {
  178. rbwin_vegas = RBP_MIN_SEGMENTS;
  179. };
  180. // Conservatively set the congestion window to min of
  181. // congestion window and the smoothed rbwin_vegas
  182. RBP_DEBUG_PRINTF(("cwnd before check = %gn", double(cwnd_)));
  183. cwnd_ = MIN(cwnd_,(TracedDouble) rbwin_vegas);
  184. RBP_DEBUG_PRINTF(("cwnd after check = %gn", double(cwnd_)));
  185. RBP_DEBUG_PRINTF(("recv win = %gn", wnd_));
  186. // RBP timer calculations must be based on the actual
  187. // window which is the min of the receiver's
  188. // advertised window and the congestion window.
  189. // TcpAgent::window() does this job.
  190. // What this means is we expect to send window() pkts
  191. // in v_rtt_ time.
  192. rbp_inter_pace_delay_ = (v_rtt_)/(window() * 1.0);
  193. RBP_DEBUG_PRINTF(("window is %dn", window()));
  194. RBP_DEBUG_PRINTF(("ipt = %gn", rbp_inter_pace_delay_));
  195. paced_send_one();
  196. } else {
  197. VegasTcpAgent::send_much(force,reason, maxburst);
  198. }
  199. }
  200. void
  201. RBPVegasTcpAgent::paced_send_one()
  202. {
  203. if (rbp_mode_ == RBP_GOING && able_to_rbp_send_one()) {
  204. RBP_DEBUG_PRINTF(("Sending one rbp packetn"));
  205. // send one packet
  206. output(t_seqno_++, TCP_REASON_RBP);
  207. rbp_segs_actually_paced_++;
  208. // schedule next pkt
  209. pace_timer_.resched(rbp_inter_pace_delay_);
  210. };
  211. }
  212. int
  213. RBPVegasTcpAgent::able_to_rbp_send_one()
  214. {
  215. return t_seqno_ < curseq_ && t_seqno_ <= highest_ack_ + window();
  216. }
  217. /***********************************************************************
  218.  *
  219.  * The reno-based version
  220.  *
  221.  */
  222. class RBPRenoTcpAgent;
  223. class RBPRenoPaceTimer : public TimerHandler {
  224. public:
  225. RBPRenoPaceTimer(RBPRenoTcpAgent *a) : TimerHandler() { a_ = a; }
  226. protected:
  227. virtual void expire(Event *e);
  228. RBPRenoTcpAgent *a_;
  229. };
  230. // Hmmm... ``a is a'' in the construction of the RBPRenoPaceTimer edifice :->
  231. class RBPRenoTcpAgent : public virtual RenoTcpAgent {
  232. friend class RBPRenoPaceTimer;
  233.  public:
  234. RBPRenoTcpAgent();
  235. virtual void recv(Packet *pkt, Handler *);
  236. virtual void timeout(int tno);
  237. virtual void send_much(int force, int reason, int maxburst);
  238. double rbp_scale_;   // conversion from actual -> rbp send rates
  239. // enum rbp_rate_algorithms { RBP_NO_ALGORITHM, RBP_VEGAS_RATE_ALGORITHM, RBP_CWND_ALGORITHM };
  240. // int rbp_rate_algorithm_;
  241. protected:
  242. void paced_send_one();
  243. int able_to_rbp_send_one();
  244. // stats on what we did
  245. int rbp_segs_actually_paced_;
  246. enum rbp_modes { RBP_GOING, RBP_POSSIBLE, RBP_OFF };
  247. enum rbp_modes rbp_mode_;
  248. double rbp_inter_pace_delay_;
  249. RBPRenoPaceTimer pace_timer_;
  250. };
  251. static class RBPRenoTcpClass : public TclClass {
  252. public:
  253. RBPRenoTcpClass() : TclClass("Agent/TCP/Reno/RBP") {}
  254. TclObject* create(int, const char*const*) {
  255. return (new RBPRenoTcpAgent());
  256. }
  257. } class_reno_rbp;
  258. void RBPRenoPaceTimer::expire(Event *) { a_->paced_send_one(); }
  259. RBPRenoTcpAgent::RBPRenoTcpAgent() : TcpAgent(),
  260. rbp_mode_(RBP_OFF),
  261. pace_timer_(this)
  262. {
  263. bind("rbp_scale_", &rbp_scale_);
  264. // algorithm is not used in Reno
  265. // bind("rbp_rate_algorithm_", &rbp_rate_algorithm_);
  266. bind("rbp_segs_actually_paced_", &rbp_segs_actually_paced_);
  267. bind("rbp_inter_pace_delay_", &rbp_inter_pace_delay_);
  268. }
  269. void
  270. RBPRenoTcpAgent::recv(Packet *pkt, Handler *hand)
  271. {
  272. if (rbp_mode_ != RBP_OFF) {
  273. // reciept of anything disables rbp
  274. rbp_mode_ = RBP_OFF;
  275. // reset cwnd such that we're now ack clocked.
  276. hdr_tcp *tcph = hdr_tcp::access(pkt);
  277. if (tcph->seqno() > last_ack_) {
  278. /* reno does not do rate adjustments as Vegas;
  279.  * normally, one wouldn't do any adjustments to
  280.  * cwnd and allow the sliding window to do its job
  281.  * But, if cwnd >> amt_paced, then there's a
  282.  * bunch of data that can be sent asap, plus the
  283.  * two (typically, due to delacks) that get opened
  284.  * up due to the first ack. This would lead to
  285.  * a burst, defeating the purpose of pacing.
  286.  * Ideally, one would want cwnd = amt_paced
  287.  * ALWAYS. Since this doesn't necessarily happen,
  288.  * `cap' cwnd to the amt paced and THEN let
  289.  * sliding windows take over. Note that this
  290.  * mechanism will typically result in 3 segs
  291.  * being sent out when the first ack is received.
  292.  */
  293. cwnd_ = maxseq_ - last_ack_;
  294. RBP_DEBUG_PRINTF(("ncwnd-after-first-ack=%gn", (double)cwnd_));
  295. };
  296. };
  297. RenoTcpAgent::recv(pkt, hand);
  298. }
  299. void
  300. RBPRenoTcpAgent::timeout(int tno)
  301. {
  302. if (tno == TCP_TIMER_RTX) {
  303. if (highest_ack_ == maxseq_) {
  304. // Idle for a while => RBP next time.
  305. rbp_mode_ = RBP_POSSIBLE;
  306. return;
  307. };
  308. };
  309. RenoTcpAgent::timeout(tno);
  310. }
  311. void
  312. RBPRenoTcpAgent::send_much(int force, int reason, int maxburst)
  313. {
  314. if (rbp_mode_ == RBP_POSSIBLE && able_to_rbp_send_one()) {
  315. // start paced mode
  316. rbp_mode_ = RBP_GOING; 
  317. rbp_segs_actually_paced_ = 0;
  318. // Pace out scaled cwnd.
  319. double rbwin_reno;
  320. rbwin_reno = cwnd_ * rbp_scale_;
  321. rbwin_reno = int(rbwin_reno + 0.5);   // round
  322. // Always pace at least RBP_MIN_SEGMENTS
  323. if (rbwin_reno <= RBP_MIN_SEGMENTS) {
  324. rbwin_reno = RBP_MIN_SEGMENTS;
  325. };
  326. // Conservatively set the congestion window to min of
  327. // congestion window and the smoothed rbwin_reno
  328. RBP_DEBUG_PRINTF(("cwnd before check = %gn", double(cwnd_)));
  329. cwnd_ = MIN(cwnd_,(TracedDouble) rbwin_reno);
  330. RBP_DEBUG_PRINTF(("cwnd after check = %gn", double(cwnd_)));
  331. RBP_DEBUG_PRINTF(("recv win = %gn", wnd_));
  332. // RBP timer calculations must be based on the actual
  333. // window which is the min of the receiver's
  334. // advertised window and the congestion window.
  335. // TcpAgent::window() does this job.
  336. // What this means is we expect to send window() pkts
  337. // in v_srtt_ time.
  338. static double srtt_scale = 0.0;
  339. if (srtt_scale == 0.0) {  // yuck yuck yuck!
  340. srtt_scale = 1.0; // why are we doing fixed point?
  341. int i;
  342. for (i = T_SRTT_BITS; i > 0; i--) {
  343. srtt_scale /= 2.0;
  344. };
  345. }
  346. rbp_inter_pace_delay_ = (t_srtt_ * srtt_scale * tcp_tick_) / (window() * 1.0);
  347. RBP_DEBUG_PRINTF(("window is %dn", window()));
  348. RBP_DEBUG_PRINTF(("ipt = %gn", rbp_inter_pace_delay_));
  349. paced_send_one();
  350. } else {
  351. RenoTcpAgent::send_much(force,reason, maxburst);
  352. };
  353. }
  354. void
  355. RBPRenoTcpAgent::paced_send_one()
  356. {
  357. if (rbp_mode_ == RBP_GOING && able_to_rbp_send_one()) {
  358. RBP_DEBUG_PRINTF(("Sending one rbp packetn"));
  359. // send one packet
  360. output(t_seqno_++, TCP_REASON_RBP);
  361. rbp_segs_actually_paced_++;
  362. // schedule next pkt
  363. pace_timer_.resched(rbp_inter_pace_delay_);
  364. };
  365. }
  366. int
  367. RBPRenoTcpAgent::able_to_rbp_send_one()
  368. {
  369. return t_seqno_ < curseq_ && t_seqno_ <= highest_ack_ + window();
  370. }