A Discrete-Event Network Simulator
API
tcp-newreno.cc
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2010 Adrian Sai-wah Tam
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2 as
7  * published by the Free Software Foundation;
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17  *
18  * Author: Adrian Sai-wah Tam <adrian.sw.tam@gmail.com>
19  */
20 
21 #define NS_LOG_APPEND_CONTEXT \
22  if (m_node) { std::clog << Simulator::Now ().GetSeconds () << " [node " << m_node->GetId () << "] "; }
23 
24 #include "tcp-newreno.h"
25 #include "ns3/log.h"
26 #include "ns3/trace-source-accessor.h"
27 #include "ns3/simulator.h"
28 #include "ns3/abort.h"
29 #include "ns3/node.h"
30 
31 namespace ns3 {
32 
33 NS_LOG_COMPONENT_DEFINE ("TcpNewReno");
34 
35 NS_OBJECT_ENSURE_REGISTERED (TcpNewReno);
36 
37 TypeId
39 {
40  static TypeId tid = TypeId ("ns3::TcpNewReno")
42  .SetGroupName ("Internet")
43  .AddConstructor<TcpNewReno> ()
44  .AddAttribute ("ReTxThreshold", "Threshold for fast retransmit",
45  UintegerValue (3),
47  MakeUintegerChecker<uint32_t> ())
48  .AddAttribute ("LimitedTransmit", "Enable limited transmit",
49  BooleanValue (false),
52  .AddTraceSource ("CongestionWindow",
53  "The TCP connection's congestion window",
55  "ns3::TracedValue::Uint32Callback")
56  .AddTraceSource ("SlowStartThreshold",
57  "TCP slow start threshold (bytes)",
59  "ns3::TracedValue::Uint32Callback")
60  ;
61  return tid;
62 }
63 
65  : m_retxThresh (3), // mute valgrind, actual value set by the attribute system
66  m_inFastRec (false),
67  m_limitedTx (false) // mute valgrind, actual value set by the attribute system
68 {
69  NS_LOG_FUNCTION (this);
70 }
71 
73  : TcpSocketBase (sock),
74  m_cWnd (sock.m_cWnd),
75  m_ssThresh (sock.m_ssThresh),
76  m_initialCWnd (sock.m_initialCWnd),
77  m_initialSsThresh (sock.m_initialSsThresh),
78  m_retxThresh (sock.m_retxThresh),
79  m_inFastRec (false),
80  m_limitedTx (sock.m_limitedTx)
81 {
82  NS_LOG_FUNCTION (this);
83  NS_LOG_LOGIC ("Invoked the copy constructor");
84 }
85 
87 {
88 }
89 
90 /* We initialize m_cWnd from this function, after attributes initialized */
91 int
93 {
94  NS_LOG_FUNCTION (this);
95  InitializeCwnd ();
96  return TcpSocketBase::Listen ();
97 }
98 
99 /* We initialize m_cWnd from this function, after attributes initialized */
100 int
102 {
103  NS_LOG_FUNCTION (this << address);
104  InitializeCwnd ();
105  return TcpSocketBase::Connect (address);
106 }
107 
108 /* Limit the size of in-flight data by cwnd and receiver's rxwin */
109 uint32_t
111 {
112  NS_LOG_FUNCTION (this);
113  return std::min (m_rWnd.Get (), m_cWnd.Get ());
114 }
115 
118 {
119  return CopyObject<TcpNewReno> (this);
120 }
121 
122 /* New ACK (up to seqnum seq) received. Increase cwnd and call TcpSocketBase::NewAck() */
123 void
125 {
126  NS_LOG_FUNCTION (this << seq);
127  NS_LOG_LOGIC ("TcpNewReno received ACK for seq " << seq <<
128  " cwnd " << m_cWnd <<
129  " ssthresh " << m_ssThresh);
130 
131  // Check for exit condition of fast recovery
132  if (m_inFastRec && seq < m_recover)
133  { // Partial ACK, partial window deflation (RFC2582 sec.3 bullet #5 paragraph 3)
134  m_cWnd += m_segmentSize - (seq - m_txBuffer->HeadSequence ());
135  NS_LOG_INFO ("Partial ACK for seq " << seq << " in fast recovery: cwnd set to " << m_cWnd);
136  m_txBuffer->DiscardUpTo(seq); //Bug 1850: retransmit before newack
137  DoRetransmit (); // Assume the next seq is lost. Retransmit lost packet
138  TcpSocketBase::NewAck (seq); // update m_nextTxSequence and send new data if allowed by window
139  return;
140  }
141  else if (m_inFastRec && seq >= m_recover)
142  { // Full ACK (RFC2582 sec.3 bullet #5 paragraph 2, option 1)
143  m_cWnd = std::min (m_ssThresh.Get (), BytesInFlight () + m_segmentSize);
144  m_inFastRec = false;
145  NS_LOG_INFO ("Received full ACK for seq " << seq <<". Leaving fast recovery with cwnd set to " << m_cWnd);
146  }
147 
148  // Increase of cwnd based on current phase (slow start or congestion avoidance)
149  if (m_cWnd < m_ssThresh)
150  { // Slow start mode, add one segSize to cWnd. Default m_ssThresh is 65535. (RFC2001, sec.1)
152  NS_LOG_INFO ("In SlowStart, ACK of seq " << seq << "; update cwnd to " << m_cWnd << "; ssthresh " << m_ssThresh);
153  }
154  else
155  { // Congestion avoidance mode, increase by (segSize*segSize)/cwnd. (RFC2581, sec.3.1)
156  // To increase cwnd for one segSize per RTT, it should be (ackBytes*segSize)/cwnd
157  double adder = static_cast<double> (m_segmentSize * m_segmentSize) / m_cWnd.Get ();
158  adder = std::max (1.0, adder);
159  m_cWnd += static_cast<uint32_t> (adder);
160  NS_LOG_INFO ("In CongAvoid, updated to cwnd " << m_cWnd << " ssthresh " << m_ssThresh);
161  }
162 
163  // Complete newAck processing
164  TcpSocketBase::NewAck (seq);
165 }
166 
167 /* Cut cwnd and enter fast recovery mode upon triple dupack */
168 void
169 TcpNewReno::DupAck (const TcpHeader& t, uint32_t count)
170 {
171  NS_LOG_FUNCTION (this << count);
172  if (count == m_retxThresh && !m_inFastRec)
173  { // triple duplicate ack triggers fast retransmit (RFC2582 sec.3 bullet #1)
174  m_ssThresh = std::max (2 * m_segmentSize, BytesInFlight () / 2);
177  m_inFastRec = true;
178  NS_LOG_INFO ("Triple dupack. Enter fast recovery mode. Reset cwnd to " << m_cWnd <<
179  ", ssthresh to " << m_ssThresh << " at fast recovery seqnum " << m_recover);
180  DoRetransmit ();
181  }
182  else if (m_inFastRec)
183  { // Increase cwnd for every additional dupack (RFC2582, sec.3 bullet #3)
185  NS_LOG_INFO ("Dupack in fast recovery mode. Increase cwnd to " << m_cWnd);
187  {
189  }
190  }
191  else if (!m_inFastRec && m_limitedTx && m_txBuffer->SizeFromSequence (m_nextTxSequence) > 0)
192  { // RFC3042 Limited transmit: Send a new packet for each duplicated ACK before fast retransmit
193  NS_LOG_INFO ("Limited transmit");
194  uint32_t sz = SendDataPacket (m_nextTxSequence, m_segmentSize, true);
195  m_nextTxSequence += sz; // Advance next tx sequence
196  };
197 }
198 
199 /* Retransmit timeout */
200 void
202 {
203  NS_LOG_FUNCTION (this);
204  NS_LOG_LOGIC (this << " ReTxTimeout Expired at time " << Simulator::Now ().GetSeconds ());
205  m_inFastRec = false;
206 
207  // If erroneous timeout in closed/timed-wait state, just return
208  if (m_state == CLOSED || m_state == TIME_WAIT) return;
209  // If all data are received (non-closing socket and nothing to send), just return
210  if (m_state <= ESTABLISHED && m_txBuffer->HeadSequence () >= m_highTxMark) return;
211 
212  // According to RFC2581 sec.3.1, upon RTO, ssthresh is set to half of flight
213  // size and cwnd is set to 1*MSS, then the lost packet is retransmitted and
214  // TCP back to slow start
215  m_ssThresh = std::max (2 * m_segmentSize, BytesInFlight () / 2);
217  m_nextTxSequence = m_txBuffer->HeadSequence (); // Restart from highest Ack
218  NS_LOG_INFO ("RTO. Reset cwnd to " << m_cWnd <<
219  ", ssthresh to " << m_ssThresh << ", restart from seqnum " << m_nextTxSequence);
220  DoRetransmit (); // Retransmit the packet
221 }
222 
223 void
224 TcpNewReno::SetSegSize (uint32_t size)
225 {
226  NS_ABORT_MSG_UNLESS (m_state == CLOSED, "TcpNewReno::SetSegSize() cannot change segment size after connection started.");
227  m_segmentSize = size;
228 }
229 
230 void
231 TcpNewReno::SetInitialSSThresh (uint32_t threshold)
232 {
233  NS_ABORT_MSG_UNLESS (m_state == CLOSED, "TcpNewReno::SetSSThresh() cannot change initial ssThresh after connection started.");
234  m_initialSsThresh = threshold;
235 }
236 
237 uint32_t
239 {
240  return m_initialSsThresh;
241 }
242 
243 void
245 {
246  NS_ABORT_MSG_UNLESS (m_state == CLOSED, "TcpNewReno::SetInitialCwnd() cannot change initial cwnd after connection started.");
247  m_initialCWnd = cwnd;
248 }
249 
250 uint32_t
252 {
253  return m_initialCWnd;
254 }
255 
256 void
258 {
259  /*
260  * Initialize congestion window, default to 1 MSS (RFC2001, sec.1) and must
261  * not be larger than 2 MSS (RFC2581, sec.3.1). Both m_initiaCWnd and
262  * m_segmentSize are set by the attribute system in ns3::TcpSocket.
263  */
266 }
267 
268 void
269 TcpNewReno::ScaleSsThresh (uint8_t scaleFactor)
270 {
271  m_ssThresh <<= scaleFactor;
272 }
273 
274 } // namespace ns3
virtual int Listen(void)
Listen for incoming connections.
Smart pointer class similar to boost::intrusive_ptr.
Definition: ptr.h:73
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by "...
virtual void NewAck(SequenceNumber32 const &seq)
Update buffers w.r.t.
Definition: tcp-newreno.cc:124
AttributeValue implementation for Boolean.
Definition: boolean.h:34
bool m_limitedTx
perform limited transmit
Definition: tcp-newreno.h:88
uint32_t SendDataPacket(SequenceNumber32 seq, uint32_t maxSize, bool withAck)
Extract at most maxSize bytes from the TxBuffer at sequence seq, add the TCP header, and send to TcpL4Protocol.
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
Definition: object-base.h:44
virtual void ScaleSsThresh(uint8_t scaleFactor)
Scale the initial SsThresh value to the correct one.
Definition: tcp-newreno.cc:269
Ptr< const AttributeAccessor > MakeBooleanAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method...
Definition: boolean.h:81
uint32_t m_initialSsThresh
Initial Slow Start Threshold value.
Definition: tcp-newreno.h:84
virtual int Listen(void)
Listen for incoming connections.
Definition: tcp-newreno.cc:92
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition: log.h:201
virtual uint32_t GetInitialCwnd(void) const
Get the initial Congestion Window.
Definition: tcp-newreno.cc:251
virtual uint32_t Window(void)
Return the max possible number of unacked bytes.
Definition: tcp-newreno.cc:110
#define NS_LOG_INFO(msg)
Use NS_LOG to output a message of level LOG_INFO.
Definition: log.h:244
bool IsRunning(void) const
This method is syntactic sugar for !IsExpired().
Definition: event-id.cc:65
uint32_t m_segmentSize
Segment size.
TracedValue< SequenceNumber32 > m_nextTxSequence
Next seqnum to be sent (SND.NXT), ReTx pushes it back.
An implementation of a stream socket using TCP.
Definition: tcp-newreno.h:36
T Get(void) const
Get the underlying value.
Definition: traced-value.h:186
TracedValue< TcpStates_t > m_state
TCP state.
virtual void SetSegSize(uint32_t size)
Set the segment size.
Definition: tcp-newreno.cc:224
a polymophic address class
Definition: address.h:90
Ptr< const TraceSourceAccessor > MakeTraceSourceAccessor(T a)
Create a TraceSourceAccessor which will control access to the underlying trace source.
TracedValue< uint32_t > m_ssThresh
Slow Start Threshold.
Definition: tcp-newreno.h:82
static TypeId GetTypeId(void)
Get the type ID.
Definition: tcp-newreno.cc:38
Ptr< TcpTxBuffer > m_txBuffer
Tx buffer.
virtual void DupAck(const TcpHeader &t, uint32_t count)
Received dupack (duplicate ACK)
Definition: tcp-newreno.cc:169
Hold an unsigned integer type.
Definition: uinteger.h:44
virtual void SetInitialCwnd(uint32_t cwnd)
Set the initial Congestion Window.
Definition: tcp-newreno.cc:244
virtual uint32_t GetInitialSSThresh(void) const
Get the initial Slow Start Threshold.
Definition: tcp-newreno.cc:238
virtual int Connect(const Address &address)
Initiate a connection to a remote host.
Definition: tcp-newreno.cc:101
TracedValue< uint32_t > m_cWnd
Congestion window.
Definition: tcp-newreno.h:81
A base class for implementation of a stream socket using TCP.
void InitializeCwnd(void)
Set the congestion window when connection starts.
Definition: tcp-newreno.cc:257
#define NS_LOG_LOGIC(msg)
Use NS_LOG to output a message of level LOG_LOGIC.
Definition: log.h:252
bool m_inFastRec
currently in fast recovery
Definition: tcp-newreno.h:87
Every class exported by the ns3 library is enclosed in the ns3 namespace.
uint32_t m_retxThresh
Fast Retransmit threshold.
Definition: tcp-newreno.h:86
Ptr< const AttributeChecker > MakeBooleanChecker(void)
Definition: boolean.cc:121
Header for the Transmission Control Protocol.
Definition: tcp-header.h:44
virtual uint32_t BytesInFlight(void)
Return total bytes in flight.
virtual int Connect(const Address &address)
Initiate a connection to a remote host.
virtual void Retransmit(void)
Halving cwnd and call DoRetransmit()
Definition: tcp-newreno.cc:201
static Time Now(void)
Return the current simulation virtual time.
Definition: simulator.cc:223
TracedValue< SequenceNumber32 > m_highTxMark
Highest seqno ever sent, regardless of ReTx.
uint32_t m_initialCWnd
Initial cWnd value.
Definition: tcp-newreno.h:83
virtual void NewAck(SequenceNumber32 const &seq)
Update buffers w.r.t.
bool m_connected
Connection established.
#define NS_ABORT_MSG_UNLESS(cond, msg)
Abnormal program termination if a condition is false, with a message.
Definition: abort.h:144
virtual Ptr< TcpSocketBase > Fork(void)
Call CopyObject<> to clone me.
Definition: tcp-newreno.cc:117
tuple address
Definition: first.py:37
EventId m_sendPendingDataEvent
micro-delay event to send pending data
TcpNewReno(void)
Create an unbound tcp socket.
Definition: tcp-newreno.cc:64
Ptr< const AttributeAccessor > MakeUintegerAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method...
Definition: uinteger.h:45
a unique identifier for an interface.
Definition: type-id.h:57
virtual void SetInitialSSThresh(uint32_t threshold)
Set the initial Slow Start Threshold.
Definition: tcp-newreno.cc:231
TypeId SetParent(TypeId tid)
Definition: type-id.cc:638
bool SendPendingData(bool withAck=false)
Send as much pending data as possible according to the Tx window.
TracedValue< uint32_t > m_rWnd
Receiver window (RCV.WND in RFC793)
virtual void DoRetransmit(void)
Retransmit the oldest packet.
SequenceNumber32 m_recover
Previous highest Tx seqnum for fast recovery.
Definition: tcp-newreno.h:85
virtual ~TcpNewReno(void)
Definition: tcp-newreno.cc:86