A Discrete-Event Network Simulator
API
tcp-bic.cc
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2014 Natale Patriciello <natale.patriciello@gmail.com>
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  */
19 #include "tcp-bic.h"
20 #include "ns3/log.h"
21 #include "ns3/simulator.h"
22 
23 namespace ns3 {
24 
25 NS_LOG_COMPONENT_DEFINE ("TcpBic");
27 
28 TypeId
30 {
31  static TypeId tid = TypeId ("ns3::TcpBic")
33  .AddConstructor<TcpBic> ()
34  .SetGroupName ("Internet")
35  .AddAttribute ("FastConvergence", "Turn on/off fast convergence.",
36  BooleanValue (true),
39  .AddAttribute ("Beta", "Beta for multiplicative decrease",
40  DoubleValue (0.8),
42  MakeDoubleChecker <double> (0.0))
43  .AddAttribute ("MaxIncr", "Limit on increment allowed during binary search",
44  UintegerValue (16),
46  MakeUintegerChecker <uint32_t> (1))
47  .AddAttribute ("LowWnd", "Threshold window size (in segments) for engaging BIC response",
48  UintegerValue (14),
50  MakeUintegerChecker <uint32_t> ())
51  .AddAttribute ("SmoothPart", "Number of RTT needed to approach cWnd_max from "
52  "cWnd_max-BinarySearchCoefficient. It can be viewed as the gradient "
53  "of the slow start AIM phase: less this value is, "
54  "more steep the increment will be.",
55  UintegerValue (5),
57  MakeUintegerChecker <uint32_t> (1))
58  .AddAttribute ("BinarySearchCoefficient", "Inverse of the coefficient for the "
59  "binary search. Default 4, as in Linux",
60  UintegerValue (4),
62  MakeUintegerChecker <uint8_t> (2))
63  ;
64  return tid;
65 }
66 
67 
69  : TcpCongestionOps (),
70  m_cWndCnt (0),
71  m_lastMaxCwnd (0),
72  m_lastCwnd (0),
73  m_epochStart (Time::Min ())
74 {
75  NS_LOG_FUNCTION (this);
76 }
77 
78 TcpBic::TcpBic (const TcpBic &sock)
79  : TcpCongestionOps (sock),
80  m_fastConvergence (sock.m_fastConvergence),
81  m_beta (sock.m_beta),
82  m_maxIncr (sock.m_maxIncr),
83  m_lowWnd (sock.m_lowWnd),
84  m_smoothPart (sock.m_smoothPart),
85  m_cWndCnt (sock.m_cWndCnt),
86  m_lastMaxCwnd (sock.m_lastMaxCwnd),
87  m_lastCwnd (sock.m_lastCwnd),
88  m_epochStart (sock.m_epochStart),
89  m_b (sock.m_b)
90 {
91  NS_LOG_FUNCTION (this);
92 }
93 
94 
95 void
96 TcpBic::IncreaseWindow (Ptr<TcpSocketState> tcb, uint32_t segmentsAcked)
97 {
98  NS_LOG_FUNCTION (this << tcb << segmentsAcked);
99 
100  if (tcb->m_cWnd < tcb->m_ssThresh)
101  {
102  tcb->m_cWnd += tcb->m_segmentSize;
103  segmentsAcked -= 1;
104 
105  NS_LOG_INFO ("In SlowStart, updated to cwnd " << tcb->m_cWnd <<
106  " ssthresh " << tcb->m_ssThresh);
107  }
108 
109  if (tcb->m_cWnd >= tcb->m_ssThresh && segmentsAcked > 0)
110  {
111  m_cWndCnt += segmentsAcked;
112  uint32_t cnt = Update (tcb);
113 
114  /* According to the BIC paper and RFC 6356 even once the new cwnd is
115  * calculated you must compare this to the number of ACKs received since
116  * the last cwnd update. If not enough ACKs have been received then cwnd
117  * cannot be updated.
118  */
119  if (m_cWndCnt > cnt)
120  {
121  tcb->m_cWnd += tcb->m_segmentSize;
122  m_cWndCnt = 0;
123  NS_LOG_INFO ("In CongAvoid, updated to cwnd " << tcb->m_cWnd);
124  }
125  else
126  {
127  NS_LOG_INFO ("Not enough segments have been ACKed to increment cwnd."
128  "Until now " << m_cWndCnt);
129  }
130  }
131 }
132 
133 uint32_t
135 {
136  NS_LOG_FUNCTION (this << tcb);
137 
138  uint32_t segCwnd = tcb->GetCwndInSegments ();
139  uint32_t cnt;
140 
141  m_lastCwnd = segCwnd;
142 
143  if (m_epochStart == Time::Min ())
144  {
145  m_epochStart = Simulator::Now (); /* record the beginning of an epoch */
146  }
147 
148  if (segCwnd < m_lowWnd)
149  {
150  NS_LOG_INFO ("Under lowWnd, compatibility mode. Behaving as NewReno");
151  cnt = segCwnd;
152  return cnt;
153  }
154 
155  if (segCwnd < m_lastMaxCwnd)
156  {
157  double dist = (m_lastMaxCwnd - segCwnd) / m_b;
158 
159  NS_LOG_INFO ("cWnd = " << segCwnd << " under lastMax, " <<
160  m_lastMaxCwnd << " and dist=" << dist);
161  if (dist > m_maxIncr)
162  {
163  /* Linear increase */
164  cnt = segCwnd / m_maxIncr;
165  NS_LOG_INFO ("Linear increase (maxIncr=" << m_maxIncr << "), cnt=" << cnt);
166  }
167  else if (dist <= 1)
168  {
169  /* smoothed binary search increase: when our window is really
170  * close to the last maximum, we parameterize in m_smoothPart the number
171  * of RTT needed to reach that window.
172  */
173  cnt = (segCwnd * m_smoothPart) / m_b;
174 
175  NS_LOG_INFO ("Binary search increase (smoothPart=" << m_smoothPart <<
176  "), cnt=" << cnt);
177  }
178  else
179  {
180  /* binary search increase */
181  cnt = static_cast<uint32_t> (segCwnd / dist);
182 
183  NS_LOG_INFO ("Binary search increase, cnt=" << cnt);
184  }
185  }
186  else
187  {
188  NS_LOG_INFO ("cWnd = " << segCwnd << " above last max, " <<
189  m_lastMaxCwnd);
190  if (segCwnd < m_lastMaxCwnd + m_b)
191  {
192  /* slow start AMD linear increase */
193  cnt = (segCwnd * m_smoothPart) / m_b;
194  NS_LOG_INFO ("Slow start AMD, cnt=" << cnt);
195  }
196  else if (segCwnd < m_lastMaxCwnd + m_maxIncr * (m_b - 1))
197  {
198  /* slow start */
199  cnt = (segCwnd * (m_b - 1)) / (segCwnd - m_lastMaxCwnd);
200 
201  NS_LOG_INFO ("Slow start, cnt=" << cnt);
202  }
203  else
204  {
205  /* linear increase */
206  cnt = segCwnd / m_maxIncr;
207 
208  NS_LOG_INFO ("Linear, cnt=" << cnt);
209  }
210  }
211 
212  /* if in slow start or link utilization is very low. Code taken from Linux
213  * kernel, not sure of the source they take it. Usually, it is not reached,
214  * since if m_lastMaxCwnd is 0, we are (hopefully) in slow start.
215  */
216  if (m_lastMaxCwnd == 0)
217  {
218  if (cnt > 20) /* increase cwnd 5% per RTT */
219  {
220  cnt = 20;
221  }
222  }
223 
224  if (cnt == 0)
225  {
226  cnt = 1;
227  }
228 
229  return cnt;
230 }
231 
232 std::string
234 {
235  return "TcpBic";
236 }
237 
238 uint32_t
239 TcpBic::GetSsThresh (Ptr<const TcpSocketState> tcb, uint32_t bytesInFlight)
240 {
241  NS_LOG_FUNCTION (this);
242 
243  uint32_t segCwnd = tcb->GetCwndInSegments ();
244  uint32_t ssThresh = 0;
245 
246  m_epochStart = Time::Min ();
247 
248  /* Wmax and fast convergence */
249  if (segCwnd < m_lastMaxCwnd && m_fastConvergence)
250  {
251  NS_LOG_INFO ("Fast Convergence. Last max cwnd: " << m_lastMaxCwnd <<
252  " updated to " << static_cast<uint32_t> (m_beta * segCwnd));
253  m_lastMaxCwnd = static_cast<uint32_t> (m_beta * segCwnd);
254  }
255  else
256  {
257  NS_LOG_INFO ("Last max cwnd: " << m_lastMaxCwnd << " updated to " <<
258  segCwnd);
259  m_lastMaxCwnd = segCwnd;
260  }
261 
262  if (segCwnd < m_lowWnd)
263  {
264  ssThresh = std::max (2 * tcb->m_segmentSize, bytesInFlight / 2);
265  NS_LOG_INFO ("Less than lowWindow, ssTh= " << ssThresh);
266  }
267  else
268  {
269  ssThresh = static_cast<uint32_t> (std::max (segCwnd * m_beta, 2.0) * tcb->m_segmentSize);
270  NS_LOG_INFO ("More than lowWindow, ssTh= " << ssThresh);
271  }
272 
273  return ssThresh;
274 }
275 
278 {
279  return CopyObject<TcpBic> (this);
280 }
281 
282 } // namespace ns3
#define max(a, b)
Definition: 80211b.c:43
AttributeValue implementation for Boolean.
Definition: boolean.h:37
This class can be used to hold variables of floating point type such as 'double' or 'float'.
Definition: double.h:41
static Time Now(void)
Return the current simulation virtual time.
Definition: simulator.cc:195
BIC congestion control algorithm.
Definition: tcp-bic.h:82
bool m_fastConvergence
Enable or disable fast convergence algorithm.
Definition: tcp-bic.h:130
uint32_t m_lastMaxCwnd
Last maximum cWnd.
Definition: tcp-bic.h:138
uint32_t m_lowWnd
Lower bound on congestion window.
Definition: tcp-bic.h:133
uint8_t m_b
Binary search coefficient.
Definition: tcp-bic.h:141
uint32_t m_lastCwnd
Last cWnd.
Definition: tcp-bic.h:139
uint32_t m_maxIncr
Maximum window increment.
Definition: tcp-bic.h:132
double m_beta
Beta for cubic multiplicative increase.
Definition: tcp-bic.h:131
virtual uint32_t Update(Ptr< TcpSocketState > tcb)
Bic window update after a new ack received.
Definition: tcp-bic.cc:134
TcpBic()
Constructor.
Definition: tcp-bic.cc:68
virtual void IncreaseWindow(Ptr< TcpSocketState > tcb, uint32_t segmentsAcked)
Congestion avoidance algorithm implementation.
Definition: tcp-bic.cc:96
uint32_t m_smoothPart
Number of RTT needed to reach Wmax from Wmax-B.
Definition: tcp-bic.h:134
virtual uint32_t GetSsThresh(Ptr< const TcpSocketState > tcb, uint32_t bytesInFlight)
Get the slow start threshold after a loss event.
Definition: tcp-bic.cc:239
Time m_epochStart
Beginning of an epoch.
Definition: tcp-bic.h:140
uint32_t m_cWndCnt
cWnd integer-to-float counter
Definition: tcp-bic.h:137
virtual Ptr< TcpCongestionOps > Fork()
Copy the congestion control algorithm across sockets.
Definition: tcp-bic.cc:277
virtual std::string GetName() const
Get the name of the congestion control algorithm.
Definition: tcp-bic.cc:233
static TypeId GetTypeId(void)
Get the type ID.
Definition: tcp-bic.cc:29
Congestion control abstract class.
uint32_t m_segmentSize
Segment size.
uint32_t GetCwndInSegments() const
Get cwnd in segments rather than bytes.
TracedValue< uint32_t > m_cWnd
Congestion window.
TracedValue< uint32_t > m_ssThresh
Slow start threshold.
Simulation virtual time values and global simulation resolution.
Definition: nstime.h:103
static Time Min()
Minimum representable Time Not to be confused with Min(Time,Time).
Definition: nstime.h:273
a unique identifier for an interface.
Definition: type-id.h:59
TypeId SetParent(TypeId tid)
Set the parent TypeId.
Definition: type-id.cc:922
Hold an unsigned integer type.
Definition: uinteger.h:44
Ptr< const AttributeChecker > MakeBooleanChecker(void)
Definition: boolean.cc:121
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:85
Ptr< const AttributeAccessor > MakeDoubleAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method.
Definition: double.h:42
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
int64x64_t Min(const int64x64_t &a, const int64x64_t &b)
Minimum.
Definition: int64x64.h:218
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition: log.h:205
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by ",...
#define NS_LOG_INFO(msg)
Use NS_LOG to output a message of level LOG_INFO.
Definition: log.h:281
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
Definition: object-base.h:45
Every class exported by the ns3 library is enclosed in the ns3 namespace.