22 #define NS_LOG_APPEND_CONTEXT \ 23 if (m_node) { std::clog << " [node " << m_node->GetId () << "] "; } 25 #include "ns3/abort.h" 27 #include "ns3/inet-socket-address.h" 28 #include "ns3/inet6-socket-address.h" 32 #include "ns3/ipv4-interface-address.h" 33 #include "ns3/ipv4-route.h" 34 #include "ns3/ipv6-route.h" 35 #include "ns3/ipv4-routing-protocol.h" 36 #include "ns3/ipv6-routing-protocol.h" 37 #include "ns3/simulation-singleton.h" 38 #include "ns3/simulator.h" 39 #include "ns3/packet.h" 40 #include "ns3/uinteger.h" 41 #include "ns3/double.h" 42 #include "ns3/pointer.h" 43 #include "ns3/trace-source-accessor.h" 44 #include "ns3/data-rate.h" 45 #include "ns3/object.h" 61 #include "ns3/tcp-rate-ops.h" 77 .SetGroupName (
"Internet")
84 .AddAttribute (
"MaxSegLifetime",
85 "Maximum segment lifetime in seconds, use for TIME_WAIT state transition to CLOSED state",
88 MakeDoubleChecker<double> (0))
89 .AddAttribute (
"MaxWindowSize",
"Max size of advertised window",
92 MakeUintegerChecker<uint16_t> ())
93 .AddAttribute (
"IcmpCallback",
"Callback invoked whenever an icmp error is received on this socket.",
97 .AddAttribute (
"IcmpCallback6",
"Callback invoked whenever an icmpv6 error is received on this socket.",
101 .AddAttribute (
"WindowScaling",
"Enable or disable Window Scaling option",
105 .AddAttribute (
"Sack",
"Enable or disable Sack option",
109 .AddAttribute (
"Timestamp",
"Enable or disable Timestamp option",
113 .AddAttribute (
"MinRto",
114 "Minimum retransmit timeout value",
120 .AddAttribute (
"ClockGranularity",
121 "Clock Granularity used in RTO calculations",
126 .AddAttribute (
"TxBuffer",
130 MakePointerChecker<TcpTxBuffer> ())
131 .AddAttribute (
"RxBuffer",
135 MakePointerChecker<TcpRxBuffer> ())
136 .AddAttribute (
"CongestionOps",
137 "Pointer to TcpCongestionOps object",
140 MakePointerChecker<TcpCongestionOps> ())
141 .AddAttribute (
"ReTxThreshold",
"Threshold for fast retransmit",
145 MakeUintegerChecker<uint32_t> ())
146 .AddAttribute (
"LimitedTransmit",
"Enable limited transmit",
150 .AddAttribute (
"UseEcn",
"Parameter to set ECN functionality",
156 .AddTraceSource (
"RTO",
157 "Retransmission timeout",
159 "ns3::TracedValueCallback::Time")
160 .AddTraceSource (
"RTT",
163 "ns3::TracedValueCallback::Time")
164 .AddTraceSource (
"NextTxSequence",
165 "Next sequence number to send (SND.NXT)",
167 "ns3::SequenceNumber32TracedValueCallback")
168 .AddTraceSource (
"HighestSequence",
169 "Highest sequence number ever sent in socket's life time",
171 "ns3::TracedValueCallback::SequenceNumber32")
172 .AddTraceSource (
"State",
175 "ns3::TcpStatesTracedValueCallback")
176 .AddTraceSource (
"CongState",
177 "TCP Congestion machine state",
179 "ns3::TcpSocketState::TcpCongStatesTracedValueCallback")
180 .AddTraceSource (
"EcnState",
181 "Trace ECN state change of socket",
183 "ns3::TcpSocketState::EcnStatesTracedValueCallback")
184 .AddTraceSource (
"AdvWND",
185 "Advertised Window Size",
187 "ns3::TracedValueCallback::Uint32")
188 .AddTraceSource (
"RWND",
189 "Remote side's flow control window",
191 "ns3::TracedValueCallback::Uint32")
192 .AddTraceSource (
"BytesInFlight",
193 "Socket estimation of bytes in flight",
195 "ns3::TracedValueCallback::Uint32")
196 .AddTraceSource (
"HighestRxSequence",
197 "Highest sequence number received from peer",
199 "ns3::TracedValueCallback::SequenceNumber32")
200 .AddTraceSource (
"HighestRxAck",
201 "Highest ack received from peer",
203 "ns3::TracedValueCallback::SequenceNumber32")
204 .AddTraceSource (
"PacingRate",
205 "The current TCP pacing rate",
207 "ns3::TracedValueCallback::DataRate")
208 .AddTraceSource (
"CongestionWindow",
209 "The TCP connection's congestion window",
211 "ns3::TracedValueCallback::Uint32")
212 .AddTraceSource (
"CongestionWindowInflated",
213 "The TCP connection's congestion window inflates as in older RFC",
215 "ns3::TracedValueCallback::Uint32")
216 .AddTraceSource (
"SlowStartThreshold",
217 "TCP slow start threshold (bytes)",
219 "ns3::TracedValueCallback::Uint32")
220 .AddTraceSource (
"Tx",
221 "Send tcp packet to IP protocol",
223 "ns3::TcpSocketBase::TcpTxRxTracedCallback")
224 .AddTraceSource (
"Rx",
225 "Receive tcp packet from IP protocol",
227 "ns3::TcpSocketBase::TcpTxRxTracedCallback")
228 .AddTraceSource (
"EcnEchoSeq",
229 "Sequence of last received ECN Echo",
231 "ns3::SequenceNumber32TracedValueCallback")
232 .AddTraceSource (
"EcnCeSeq",
233 "Sequence of last received CE ",
235 "ns3::SequenceNumber32TracedValueCallback")
236 .AddTraceSource (
"EcnCwrSeq",
237 "Sequence of last received CWR",
239 "ns3::SequenceNumber32TracedValueCallback")
256 m_tcb = CreateObject<TcpSocketState> ();
257 m_rateOps = CreateObject <TcpRateLinux> ();
312 m_dupAckCount (sock.m_dupAckCount),
314 m_delAckMaxCount (sock.m_delAckMaxCount),
315 m_noDelay (sock.m_noDelay),
316 m_synCount (sock.m_synCount),
317 m_synRetries (sock.m_synRetries),
318 m_dataRetrCount (sock.m_dataRetrCount),
319 m_dataRetries (sock.m_dataRetries),
321 m_minRto (sock.m_minRto),
322 m_clockGranularity (sock.m_clockGranularity),
323 m_delAckTimeout (sock.m_delAckTimeout),
324 m_persistTimeout (sock.m_persistTimeout),
325 m_cnTimeout (sock.m_cnTimeout),
326 m_endPoint (nullptr),
327 m_endPoint6 (nullptr),
328 m_node (sock.m_node),
330 m_state (sock.m_state),
331 m_errno (sock.m_errno),
332 m_closeNotified (sock.m_closeNotified),
333 m_closeOnEmpty (sock.m_closeOnEmpty),
334 m_shutdownSend (sock.m_shutdownSend),
335 m_shutdownRecv (sock.m_shutdownRecv),
336 m_connected (sock.m_connected),
338 m_maxWinSize (sock.m_maxWinSize),
339 m_bytesAckedNotProcessed (sock.m_bytesAckedNotProcessed),
340 m_rWnd (sock.m_rWnd),
341 m_highRxMark (sock.m_highRxMark),
342 m_highRxAckMark (sock.m_highRxAckMark),
343 m_sackEnabled (sock.m_sackEnabled),
344 m_winScalingEnabled (sock.m_winScalingEnabled),
345 m_rcvWindShift (sock.m_rcvWindShift),
346 m_sndWindShift (sock.m_sndWindShift),
347 m_timestampEnabled (sock.m_timestampEnabled),
348 m_timestampToEcho (sock.m_timestampToEcho),
349 m_recover (sock.m_recover),
350 m_recoverActive (sock.m_recoverActive),
351 m_retxThresh (sock.m_retxThresh),
352 m_limitedTx (sock.m_limitedTx),
353 m_isFirstPartialAck (sock.m_isFirstPartialAck),
354 m_txTrace (sock.m_txTrace),
355 m_rxTrace (sock.m_rxTrace),
356 m_pacingTimer (
Timer::CANCEL_ON_DESTROY),
357 m_ecnEchoSeq (sock.m_ecnEchoSeq),
358 m_ecnCESeq (sock.m_ecnCESeq),
359 m_ecnCWRSeq (sock.m_ecnCWRSeq)
395 m_rateOps = CreateObject <TcpRateLinux> ();
526 m_tcp->AddSocket (
this);
542 m_tcp->AddSocket (
this);
613 m_tcp->AddSocket (
this);
624 "TcpSocketBase::SetSSThresh() cannot change initial ssThresh after connection started.");
639 "TcpSocketBase::SetInitialCwnd() cannot change initial cwnd after connection started.");
676 NS_LOG_ERROR (
"Route to destination does not exist ?!");
707 NS_LOG_ERROR (
"Route to destination does not exist ?!");
754 NS_LOG_WARN (
"Socket " <<
this <<
" << unread rx data during close. Sending reset." <<
755 "This is probably due to a bad sink application; check its code");
821 NS_ABORT_MSG_IF (flags,
"use of flags is not supported in TcpSocketBase::Send()");
866 return Send (p, flags);
875 NS_ABORT_MSG_IF (flags,
"use of flags is not supported in TcpSocketBase::Recv()");
878 return Create<Packet> ();
891 if (packet !=
nullptr && packet->
GetSize () != 0)
1132 return (tail < m_tcb->m_rxBuffer->NextRxSequence () ||
m_tcb->
m_rxBuffer->MaxRxSequence () <= head);
1153 uint32_t bytesRemoved = packet->
PeekHeader (tcpHeader);
1156 packet->
GetSize () - bytesRemoved))
1192 uint32_t bytesRemoved = packet->
PeekHeader (tcpHeader);
1195 packet->
GetSize () - bytesRemoved))
1218 uint8_t icmpType, uint8_t icmpCode,
1221 NS_LOG_FUNCTION (
this << icmpSource << static_cast<uint32_t> (icmpTtl) <<
1222 static_cast<uint32_t> (icmpType) <<
1223 static_cast<uint32_t> (icmpCode) << icmpInfo);
1226 m_icmpCallback (icmpSource, icmpTtl, icmpType, icmpCode, icmpInfo);
1232 uint8_t icmpType, uint8_t icmpCode,
1235 NS_LOG_FUNCTION (
this << icmpSource << static_cast<uint32_t> (icmpTtl) <<
1236 static_cast<uint32_t> (icmpType) <<
1237 static_cast<uint32_t> (icmpCode) << icmpInfo);
1246 const uint32_t tcpPayloadSize)
1248 if (tcpHeaderSize == 0 || tcpHeaderSize > 60)
1250 NS_LOG_ERROR (
"Bytes removed: " << tcpHeaderSize <<
" invalid");
1253 else if (tcpPayloadSize > 0 &&
OutOfRange (seq, seq + tcpPayloadSize))
1257 " received packet of seq [" << seq <<
1258 ":" << seq + tcpPayloadSize <<
1357 " received packet of seq [" << seq <<
1358 ":" << seq + packet->
GetSize () <<
1359 ") without TS option. Silently discard it");
1376 NS_LOG_LOGIC (
this <<
" Enter zerowindow persist state");
1377 NS_LOG_LOGIC (
this <<
" Cancelled ReTxTimeout event which was set to expire at " <<
1441 NS_LOG_LOGIC (
this <<
" Leaving zerowindow persist state");
1466 " SND.UNA = " <<
m_txBuffer->HeadSequence ());
1509 else if (tcpflags == 0)
1552 TcpHeader::TcpOptionList::const_iterator it;
1555 for (it = options.begin (); it != options.end (); ++it)
1645 "Reset cwnd to " <<
m_tcb->
m_cWnd <<
", ssthresh to " <<
1647 " calculated in flight: " << bytesInFlight);
1773 uint32_t previousLost =
m_txBuffer->GetLost ();
1779 uint32_t bytesSacked = 0;
1786 if (ackNumber < oldHeadSequence)
1788 NS_LOG_DEBUG (
"Possibly received a stale ACK (ack number < head sequence)");
1796 if ((ackNumber > oldHeadSequence) && (ackNumber <
m_recover)
1800 for (uint32_t i = 0; i < segAcked; i++)
1806 "is ACK of retransmitted packet.");
1849 NS_LOG_INFO (
"Update bytes in flight before processing the ACK.");
1854 ProcessAck (ackNumber, (bytesSacked > 0), currentDelivered, oldHeadSequence);
1859 uint32_t currentLost =
m_txBuffer->GetLost ();
1860 uint32_t lost = (currentLost > previousLost) ?
1861 currentLost - previousLost :
1862 previousLost - currentLost;
1888 bool exitedFastRecovery =
false;
1891 uint32_t bytesAcked = 0;
1912 : ackNumber == oldHeadSequence &&
1916 " SND.UNA=" << oldHeadSequence <<
1929 DupAck (currentDelivered);
1932 if (ackNumber == oldHeadSequence
1938 else if (ackNumber == oldHeadSequence
1943 NS_LOG_DEBUG (
"Update nextTxSequence manually to " << ackNumber);
1946 else if (ackNumber == oldHeadSequence)
1951 else if (ackNumber > oldHeadSequence)
1955 bytesAcked = ackNumber - oldHeadSequence;
1996 NS_LOG_INFO (
"Partial ACK. Manually setting head as lost");
2023 " and this is the first (RTO will be reset);" 2032 " and this is NOT the first (RTO will not be reset)" 2052 "Some segment got dup-acked in CA_LOSS state: " <<
2055 NewAck (ackNumber,
true);
2066 NewAck (ackNumber,
true);
2076 if (segsAcked >= oldDupAckCount)
2087 NS_LOG_DEBUG (segsAcked <<
" segments acked in CA_DISORDER, ack of " <<
2088 ackNumber <<
" exiting CA_DISORDER -> CA_OPEN");
2092 NS_LOG_DEBUG (segsAcked <<
" segments acked in CA_DISORDER, ack of " <<
2093 ackNumber <<
" but still in CA_DISORDER");
2113 segsAcked =
static_cast<uint32_t
>(ackNumber - oldHeadSequence) /
m_tcb->
m_segmentSize;
2118 exitedFastRecovery =
true;
2121 NS_LOG_DEBUG (segsAcked <<
" segments acked in CA_RECOVER, ack of " <<
2122 ackNumber <<
", exiting CA_RECOVERY -> CA_OPEN");
2137 NS_LOG_DEBUG (segsAcked <<
" segments acked in CA_LOSS, ack of" <<
2138 ackNumber <<
", exiting CA_LOSS -> CA_OPEN");
2149 if (exitedFastRecovery)
2151 NewAck (ackNumber,
true);
2154 NS_LOG_DEBUG (
"Leaving Fast Recovery; BytesInFlight() = " <<
2166 " segsAcked: " << segsAcked);
2168 NewAck (ackNumber,
true);
2206 packet, tcpHeader, fromAddress, toAddress);
2296 " received in SYN_SENT. Reset packet is sent.");
2397 " received. Reset packet is sent.");
2454 " received. Reset packet is sent.");
2610 NS_LOG_LOGIC (
"TCP " <<
this <<
" calling NotifyNormalClose");
2625 NS_LOG_LOGIC (
"TcpSocketBase " <<
this <<
" scheduling LATO1");
2638 if (
m_tcp !=
nullptr)
2640 m_tcp->RemoveSocket (
this);
2642 NS_LOG_LOGIC (
this <<
" Cancelled ReTxTimeout event which was set to expire at " <<
2654 if (
m_tcp !=
nullptr)
2656 m_tcp->RemoveSocket (
this);
2658 NS_LOG_LOGIC (
this <<
" Cancelled ReTxTimeout event which was set to expire at " <<
2671 NS_LOG_WARN (
"Failed to send empty packet due to null endpoint");
2690 header.SetFlags (flags);
2691 header.SetSequenceNumber (s);
2751 header.SetWindowSize (windowSize);
2784 NS_LOG_LOGIC (
"Schedule retransmission timeout at time " 2811 m_tcp->RemoveSocket (
this);
2819 m_tcp->RemoveSocket (
this);
2830 if (ipv4->GetRoutingProtocol () ==
nullptr)
2841 route = ipv4->GetRoutingProtocol ()->RouteOutput (
Ptr<Packet> (), header, oif, errno_);
2860 if (ipv6->GetRoutingProtocol () ==
nullptr)
2871 route = ipv6->GetRoutingProtocol ()->RouteOutput (
Ptr<Packet> (), header, oif, errno_);
2872 if (route ==
nullptr)
2912 m_tcp->AddSocket (
this);
3046 bool isRetransmission = outItem->
IsRetrans ();
3067 NS_LOG_INFO (
"Timer is already in running state");
3127 NS_LOG_LOGIC (
this <<
" SendDataPacket Schedule ReTxTimeout at time " <<
3139 NS_LOG_DEBUG (
"Send segment of size " << sz <<
" with remaining data " <<
3141 ". Header " << header);
3147 NS_LOG_DEBUG (
"Send segment of size " << sz <<
" with remaining data " <<
3149 ". Header " << header);
3161 if (!isRetransmission)
3173 bool isRetransmission)
3178 if (isRetransmission ==
false)
3184 for (std::deque<RttHistory>::iterator i =
m_history.begin (); i !=
m_history.end (); ++i)
3211 uint32_t nPacketsSent = 0;
3219 while (availableWindow > 0)
3235 NS_LOG_INFO (
"FIN_WAIT and OPEN state; no data to transmit");
3246 if (!
m_txBuffer->NextSeg (&next, &nextHigh, enableRule3))
3248 NS_LOG_INFO (
"no valid seq to transmit, or no data available");
3254 uint32_t availableData =
m_txBuffer->SizeFromSequence (next);
3258 if (availableData < availableWindow)
3265 if (availableWindow < m_tcb->m_segmentSize && availableData > availableWindow)
3267 NS_LOG_LOGIC (
"Preventing Silly Window Syndrome. Wait to send.");
3274 NS_LOG_DEBUG (
"Invoking Nagle's algorithm for seq " << next <<
3275 ", SFS: " <<
m_txBuffer->SizeFromSequence (next) <<
3282 uint32_t maxSizeToSend =
static_cast<uint32_t
> (nextHigh - next);
3306 " highestRxAck " <<
m_txBuffer->HeadSequence () <<
3340 if (nPacketsSent > 0)
3351 NS_LOG_DEBUG (
"SendPendingData sent " << nPacketsSent <<
" segments");
3357 return nPacketsSent;
3369 uint32_t bytesInFlight =
m_txBuffer->BytesInFlight ();
3374 NS_LOG_DEBUG (
"Returning calculated bytesInFlight: " << bytesInFlight);
3375 return bytesInFlight;
3387 uint32_t win =
Window ();
3389 return (inflight > win) ? 0 : win - inflight;
3407 "Unexpected sequence number values");
3424 NS_LOG_WARN (
"Adv window size truncated to " <<
m_maxWinSize <<
"; possibly to avoid overflow of the 16-bit integer");
3426 NS_LOG_LOGIC (
"Returning AdvertisedWindowSize of " << static_cast<uint16_t> (w));
3427 return static_cast<uint16_t
> (w);
3436 " pkt size=" << p->
GetSize () );
3455 if (expectedSeq < m_tcb->m_rxBuffer->NextRxSequence ())
3464 NS_LOG_WARN (
"Why TCP " <<
this <<
" got data after close notification?");
3570 m_rtt->Measurement (m);
3592 NS_LOG_LOGIC (
this <<
" Cancelled ReTxTimeout event which was set to expire at " <<
3599 NS_LOG_LOGIC (
this <<
" Schedule ReTxTimeout at time " <<
3607 " numberAck " << (ack -
m_txBuffer->HeadSequence ()));
3619 NS_LOG_LOGIC (
this <<
" Cancelled ReTxTimeout event which was set to expire at " <<
3661 NS_LOG_DEBUG (
"Checking if Connection is Established");
3671 NS_LOG_INFO (
"No more data retries available. Dropping connection");
3742 m_txBuffer->HeadSequence () <<
" doubled rto to " <<
3781 NS_LOG_INFO (
"LAST-ACK: No more data retries available. Dropping connection");
3788 NS_LOG_LOGIC (
"TcpSocketBase " <<
this <<
" rescheduling LATO1");
3856 uint32_t maxSizeToSend;
3860 res =
m_txBuffer->NextSeg (&seq, &seqHigh,
false);
3872 maxSizeToSend =
static_cast<uint32_t
> (seqHigh - seq);
4076 return (!allowBroadcast);
4126 maxSpace = maxSpace >> 1;
4132 NS_LOG_WARN (
"Possible error; scale exceeds 14: " << scale);
4137 static_cast<int> (scale) <<
" for buffer size " <<
m_tcb->
m_rxBuffer->MaxBufferSize ());
4199 uint8_t allowedSackBlocks = (optionLenAvail - 2) / 8;
4202 if (allowedSackBlocks == 0 || sackList.empty ())
4204 NS_LOG_LOGIC (
"No space available or sack list empty, not adding sack blocks");
4210 TcpOptionSack::SackList::iterator i;
4211 for (i = sackList.begin (); allowedSackBlocks > 0 && i != sackList.end (); ++i)
4213 option->AddSackBlock (*i);
4214 allowedSackBlocks--;
4271 NS_LOG_INFO (
"Received (scaled) window is " << receivedWindow <<
" bytes");
4285 bool update =
false;
4435 return CopyObject<TcpSocketBase> (
this);
4514 if (pacingRate < m_tcb->m_maxPacingRate)
4516 NS_LOG_DEBUG (
"Pacing rate updated to: " << pacingRate);
TracedCallback< SequenceNumber32, SequenceNumber32 > m_highTxMarkTrace
Callback pointer for high tx mark chaining.
void SetCongestionControlAlgorithm(Ptr< TcpCongestionOps > algo)
Install a congestion control algorithm on this socket.
static Time GetDelayLeft(const EventId &id)
Get the remaining time until this event will execute.
Ipv6Address GetLocalAddress()
Get the local address.
uint32_t m_rcvTimestampValue
Receiver Timestamp value.
void PeerClose(Ptr< Packet > p, const TcpHeader &tcpHeader)
Received a FIN from peer, notify rx buffer.
uint32_t RemoveHeader(Header &header)
Deserialize and remove the header from the internal buffer.
log2() macro definition; to deal with Bug 1467.
void SetTclass(uint8_t tclass)
Set the tag's Tclass.
bool m_limitedTx
perform limited transmit
static EventId Schedule(Time const &delay, FUNC f, Ts &&... args)
Schedule an event to expire after delay.
void ProcessListen(Ptr< Packet > packet, const TcpHeader &tcpHeader, const Address &fromAddress, const Address &toAddress)
Received a packet upon LISTEN state.
TracedValue< uint32_t > m_advWnd
Advertised Window size.
virtual void SetInitialCwnd(uint32_t cwnd)
Set the initial Congestion Window.
virtual int Listen(void)
Listen for incoming connections.
Simulation virtual time values and global simulation resolution.
static Ipv4Address GetAny(void)
UseEcn_t
Parameter value related to ECN enable/disable functionality similar to sysctl for tcp_ecn...
virtual bool GetTcpNoDelay(void) const
Check if Nagle's algorithm is enabled or not.
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by "...
void ProcessWait(Ptr< Packet > packet, const TcpHeader &tcpHeader)
Received a packet upon CLOSE_WAIT, FIN_WAIT_1, FIN_WAIT_2.
Ipv4Address GetIpv4MappedAddress() const
Return the Ipv4 address.
Last ACK received had ECE bit set in TCP header.
Normal state, no dubious events.
uint32_t m_dataRetries
Number of data retransmission attempts.
virtual void SetInitialSSThresh(uint32_t threshold)
Set the initial Slow Start Threshold.
AttributeValue implementation for Boolean.
SequenceNumber< uint32_t, int32_t > SequenceNumber32
32 bit Sequence number.
bool IsIpv4MappedAddress() const
If the address is an IPv4-mapped address.
bool m_noDelay
Set to true to disable Nagle's algorithm.
CWND was reduced, we are fast-retransmitting.
uint32_t GetId(void) const
In all the respects it is "Open", but requires a bit more attention.
virtual 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.
This class implements a tag that carries the socket-specific HOPLIMIT of a packet to the IPv6 layer...
virtual Time GetPersistTimeout(void) const
Get the timeout for persistent connection.
A simple virtual Timer class.
(abstract) base class of all TcpSockets
Ipv4EndPoint * m_endPoint
the IPv4 endpoint
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
static Time ElapsedTimeFromTsValue(uint32_t echoTime)
Estimate the Time elapsed from a TS echo value.
bool m_pacing
Pacing status.
uint32_t GetSize(void) const
Returns the the size in bytes of the packet (including the zero-filled initial payload).
TracedCallback< DataRate, DataRate > m_pacingRateTrace
Callback pointer for pacing rate trace chaining.
Ipv6Address GetIpv6(void) const
Get the IPv6 address.
virtual ~TcpSocketBase(void)
uint32_t m_dataRetrCount
Count of remaining data retransmission attempts.
uint32_t m_synRetries
Number of connection attempts.
void NotifyDataRecv(void)
Notify through the callback (if set) that some data have been received.
TracedValue< SequenceNumber32 > m_highRxAckMark
Highest ack received.
uint32_t m_initialSsThresh
Initial Slow Start Threshold value.
virtual int ShutdownRecv(void)
void SetRxCallback(Callback< void, Ptr< Packet >, Ipv4Header, uint16_t, Ptr< Ipv4Interface > > callback)
Set the reception callback.
TcpSocketBase(void)
Create an unbound TCP socket.
void SetClockGranularity(Time clockGranularity)
Sets the Clock Granularity (used in RTO calcs).
EventId m_retxEvent
Retransmission event.
Ptr< Packet > Recv(void)
Read a single packet from the socket.
IPv6 layer implementation.
Ptr< const AttributeAccessor > MakeBooleanAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method...
void SetDestroyCallback(Callback< void > callback)
Set the default destroy callback.
void ForwardUp6(Ptr< Packet > packet, Ipv6Header header, uint16_t port, Ptr< Ipv6Interface > incomingInterface)
Called by the L3 protocol when it received a packet to pass on to TCP.
uint32_t m_rcvTimestampEchoReply
Sender Timestamp echoed by the receiver.
void ProcessOptionSackPermitted(const Ptr< const TcpOption > option)
Read the SACK PERMITTED option.
uint8_t GetTos(void) const
virtual void SetPersistTimeout(Time timeout)
Set the timeout for persistent connection.
static const char *const EcnStateName[TcpSocketState::ECN_CWR_SENT+1]
Literal names of ECN states for use in log messages.
virtual int Send(Ptr< Packet > p, uint32_t flags)
Send data (or dummy data) to the remote host.
double GetSeconds(void) const
Get an approximation of the time stored in this instance in the indicated unit.
EventId m_timewaitEvent
TIME_WAIT expiration event: Move this socket to CLOSED state.
void UpdateEcnState(TcpSocketState::EcnState_t oldValue, TcpSocketState::EcnState_t newValue)
Callback function to hook to EcnState state.
std::list< SackBlock > SackList
SACK list definition.
uint32_t GetRetxThresh(void) const
Get the retransmission threshold (dup ack threshold for a fast retransmit)
void NotifyConnectionFailed(void)
Notify through the callback (if set) that the connection has not been established due to an error...
virtual uint32_t GetSndBufSize(void) const
Get the send buffer size.
static const char *const TcpCongStateName[TcpSocketState::CA_LAST_STATE]
Literal names of TCP states for use in log messages.
static TypeId GetTypeId(void)
Get the type ID.
uint8_t MarkEcnCodePoint(const uint8_t tos, const TcpSocketState::EcnCodePoint_t codePoint) const
mark ECN code point
void ProcessOptionTimestamp(const Ptr< const TcpOption > option, const SequenceNumber32 &seq)
Process the timestamp option from other side.
void SetUseEcn(TcpSocketState::UseEcn_t useEcn)
Set ECN mode of use on the socket.
TracedValue< EcnState_t > m_ecnState
Current ECN State, represented as combination of EcnState values.
Both sides have shutdown but we still have data we have to finish sending.
virtual Time GetDelAckTimeout(void) const
Get the time to delay an ACK.
#define NS_ASSERT(condition)
At runtime, in debugging builds, if this condition is not true, the program prints the source file...
void UpdateHighTxMark(SequenceNumber32 oldValue, SequenceNumber32 newValue)
Callback function to hook to TcpSocketState high tx mark.
void SendRST(void)
Send reset and tear down this socket.
static Ipv6Address GetAny()
Get the "any" (::) Ipv6Address.
Time GetDelayLeft(void) const
virtual uint32_t GetDelAckMaxCount(void) const
Get the number of packet to fire an ACK before delay timeout.
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Ptr< TcpSocketState > m_tcb
Congestion control information.
virtual void ProcessAck(const SequenceNumber32 &ackNumber, bool scoreboardUpdated, uint32_t currentDelivered, const SequenceNumber32 &oldHeadSequence)
Process a received ack.
Time MilliSeconds(uint64_t value)
Construct a Time in the indicated unit.
bool m_winScalingEnabled
Window Scale option enabled (RFC 7323)
bool m_timestampEnabled
Timestamp option enabled.
Timer m_pacingTimer
Pacing Event.
uint16_t m_maxWinSize
Maximum window size to advertise.
#define NS_UNUSED(x)
Mark a local variable as unused.
bool retx
True if this has been retransmitted.
virtual void NewAck(SequenceNumber32 const &seq, bool resetRTO)
Update buffers w.r.t.
uint32_t m_segmentSize
Segment size.
Callback< void, Ipv4Address, uint8_t, uint8_t, uint8_t, uint32_t > m_icmpCallback
ICMP callback.
void CancelAllTimers(void)
Cancel all timer when endpoint is deleted.
uint32_t count
Number of bytes sent.
void BindToNetDevice(Ptr< NetDevice > netdevice)
Bind a socket to specific device.
#define NS_LOG_INFO(msg)
Use NS_LOG to output a message of level LOG_INFO.
#define NS_FATAL_ERROR(msg)
Report a fatal error with a message and terminate.
Time m_cnTimeout
Timeout for connection retry.
uint32_t m_initialCWnd
Initial cWnd value.
Ptr< TcpRxBuffer > m_rxBuffer
Rx buffer (reordering buffer)
void(* Time)(Time oldValue, Time newValue)
TracedValue callback signature for Time.
virtual Time GetConnTimeout(void) const
Get the connection timeout.
EventId m_lastAckEvent
Last ACK timeout event.
void ConnectionSucceeded(void)
Schedule-friendly wrapper for Socket::NotifyConnectionSucceeded()
All buffered data sent, waiting for remote to shutdown.
void SetTos(uint8_t tos)
Set the tag's TOS.
TracedValue< SequenceNumber32 > m_ecnCESeq
Sequence number of the last received Congestion Experienced.
virtual void ReceivedAck(Ptr< Packet > packet, const TcpHeader &tcpHeader)
Received an ACK packet.
void AddSocketTags(const Ptr< Packet > &p) const
Add Tags for the Socket.
This class implements a tag that carries the socket-specific TTL of a packet to the IP layer...
virtual uint32_t GetInitialSSThresh(void) const
Get the initial Slow Start Threshold.
bool m_isRetransDataAcked
Retransmitted data is ACKed if true.
virtual uint32_t BytesInFlight(void) const
Return total bytes in flight.
SocketErrno
Enumeration of the possible errors returned by a socket.
void DoPeerClose(void)
FIN is in sequence, notify app and respond with a FIN.
bool NotifyConnectionRequest(const Address &from)
Notify through the callback (if set) that an incoming connection is being requested by a remote host...
TracedCallback< TcpSocketState::EcnState_t, TcpSocketState::EcnState_t > m_ecnStateTrace
Callback pointer for ECN state trace chaining.
virtual void PersistTimeout(void)
Send 1 byte probe to get an updated window size.
virtual void SetSynRetries(uint32_t count)
Set the number of connection retries before giving up.
TracedValue< TcpStates_t > m_state
TCP state.
Time GetMinRto(void) const
Get the Minimum RTO.
uint32_t m_delAckMaxCount
Number of packet to fire an ACK before delay timeout.
bool m_paceInitialWindow
Enable/Disable pacing for the initial window.
bool IsExpired(void) const
This method is syntactic sugar for the ns3::Simulator::IsExpired method.
Receiver sends an ACK with ECE bit set in TCP header.
a polymophic address class
void SetMinRto(Time minRto)
Sets the Minimum RTO.
void SetDestroyCallback(Callback< void > callback)
Set the default destroy callback.
uint16_t GetPeerPort()
Get the peer port.
AttributeValue implementation for Callback.
Ptr< const TraceSourceAccessor > MakeTraceSourceAccessor(T a)
Create a TraceSourceAccessor which will control access to the underlying trace source.
uint32_t m_delAckCount
Delayed ACK counter.
virtual uint8_t GetIpTtl(void) const
Query the value of IP Time to Live field of this socket.
SequenceNumber32 m_recover
Previous highest Tx seqnum for fast recovery (set it to initial seq number)
void ForwardIcmp6(Ipv6Address icmpSource, uint8_t icmpTtl, uint8_t icmpType, uint8_t icmpCode, uint32_t icmpInfo)
Called by the L3 protocol when it received an ICMPv6 packet to pass on to TCP.
virtual int Bind(void)
Allocate a local IPv4 endpoint for this socket.
bool IsRetrans(void) const
Is the item retransmitted?
Class for representing data rates.
virtual bool GetAllowBroadcast(void) const
Query whether broadcast datagram transmissions are allowed.
Last packet received had CE bit set in IP header.
virtual uint32_t GetRcvBufSize(void) const
Get the receive buffer size.
Ptr< NetDevice > GetBoundNetDevice()
Returns socket's bound NetDevice, if any.
void SetLocalAddress(Ipv6Address addr)
Set the local address.
virtual void CalculateAppLimited(uint32_t cWnd, uint32_t in_flight, uint32_t segmentSize, const SequenceNumber32 &tailSeq, const SequenceNumber32 &nextTx, const uint32_t lostOut, const uint32_t retransOut)=0
If a gap is detected between sends, it means we are app-limited.
Callback< void, uint8_t > m_sendEmptyPacketCallback
void UpdateBytesInFlight(uint32_t oldValue, uint32_t newValue)
Callback function to hook to TcpSocketState bytes inflight.
virtual enum SocketType GetSocketType(void) const
virtual void SetDataRetries(uint32_t retries)
Set the number of data transmission retries before giving up.
Ptr< TcpCongestionOps > m_congestionControl
Congestion control.
static const char *const TcpStateName[TcpSocket::LAST_STATE]
Literal names of TCP states for use in log messages.
int64x64_t Min(const int64x64_t &a, const int64x64_t &b)
Minimum.
void BindToNetDevice(Ptr< NetDevice > netdevice)
Bind a socket to specific device.
Ptr< TcpRateOps > m_rateOps
Rate operations.
Ptr< TcpRxBuffer > GetRxBuffer(void) const
Get a pointer to the Rx buffer.
Item that encloses the application packet and some flags for it.
bool CheckNoEcn(uint8_t tos) const
Checks if TOS has no ECN codepoints.
TracedValue< uint32_t > m_cWndInfl
Inflated congestion window trace (used only for backward compatibility purpose)
virtual int SendTo(Ptr< Packet > p, uint32_t flags, const Address &toAddress)
Send data to a specified peer.
void UpdateCwnd(uint32_t oldValue, uint32_t newValue)
Callback function to hook to TcpSocketState congestion window.
bool IsTcpOptionEnabled(uint8_t kind) const
Return true if the specified option is enabled.
virtual uint32_t GetSegSize(void) const
Get the segment size.
virtual void EstimateRtt(const TcpHeader &tcpHeader)
Take into account the packet for RTT estimation.
virtual int GetSockName(Address &address) const
Get socket address.
cWnd was reduced due to some congestion notification event, such as ECN, ICMP source quench...
Ptr< const AttributeAccessor > MakePointerAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method...
Hold variables of type enum.
Time time
Time this one was sent.
void ReadOptions(const TcpHeader &tcpHeader, uint32_t *bytesSacked)
Read TCP options before Ack processing.
virtual void UpdateRttHistory(const SequenceNumber32 &seq, uint32_t sz, bool isRetransmission)
Update the RTT history, when we send TCP segments.
Ptr< TcpTxBuffer > m_txBuffer
Tx buffer.
bool IsZero(void) const
Exactly equivalent to t == 0.
static EventId ScheduleNow(FUNC f, Ts &&... args)
Schedule an event to expire Now.
void ForwardUp(Ptr< Packet > packet, Ipv4Header header, uint16_t port, Ptr< Ipv4Interface > incomingInterface)
Called by the L3 protocol when it received a packet to pass on to TCP.
void SetTtl(uint8_t ttl)
Set the tag's TTL.
AttributeValue implementation for Time.
void Schedule(void)
Schedule a new event using the currently-configured delay, function, and arguments.
bool OutOfRange(SequenceNumber32 head, SequenceNumber32 tail) const
Check if a sequence number range is within the rx window.
TracedValue< DataRate > m_pacingRate
Current Pacing rate.
uint16_t GetLocalPort()
Get the local port.
bool IsPacingEnabled(void) const
Return true if packets in the current window should be paced.
virtual uint32_t Window(void) const
Return the max possible number of unacked bytes.
void UpdateWindowSize(const TcpHeader &header)
Update the receiver window (RWND) based on the value of the window field in the header.
Ptr< const AttributeChecker > MakeCallbackChecker(void)
void AddOptionTimestamp(TcpHeader &header)
Add the timestamp option to the header.
Hold an unsigned integer type.
SequenceNumber32 m_highTxAck
Highest ack sent.
TracedCallback< uint32_t, uint32_t > m_cWndTrace
Callback pointer for cWnd trace chaining.
Ipv6EndPoint * m_endPoint6
the IPv6 endpoint
virtual void BindToNetDevice(Ptr< NetDevice > netdevice)
Bind a socket to specific device.
virtual uint32_t GetSynRetries(void) const
Get the number of connection retries before giving up.
Ptr< const AttributeAccessor > MakeEnumAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method...
void SetPacingStatus(bool pacing)
Enable or disable pacing.
std::deque< RttHistory > m_history
List of sent packet.
virtual enum SocketErrno GetErrno(void) const
Get last error number.
bool ReplacePacketTag(Tag &tag)
Replace the value of a packet tag.
virtual bool SetAllowBroadcast(bool allowBroadcast)
Configure whether broadcast datagram transmissions are allowed.
Ptr< const AttributeAccessor > MakeCallbackAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method...
Ipv4Address GetLocalAddress(void)
Get the local address.
indicates whether the socket has a priority set.
int64x64_t Max(const int64x64_t &a, const int64x64_t &b)
Maximum.
void SetRetxThresh(uint32_t retxThresh)
Set the retransmission threshold (dup ack threshold for a fast retransmit)
virtual void SetTcpNoDelay(bool noDelay)
Enable/Disable Nagle's algorithm.
Ptr< TcpRecoveryOps > m_recoveryOps
Recovery Algorithm.
RttHistory(SequenceNumber32 s, uint32_t c, Time t)
Constructor - builds an RttHistory with the given parameters.
uint32_t PeekHeader(Header &header) const
Deserialize but does not remove the header from the internal buffer.
void NotifyPacingPerformed(void)
Notify Pacing.
EcnMode_t m_ecnMode
ECN mode.
void UpdateCongState(TcpSocketState::TcpCongState_t oldValue, TcpSocketState::TcpCongState_t newValue)
Callback function to hook to TcpSocketState congestion state.
virtual void SkbDelivered(TcpTxItem *skb)=0
Update the Rate information after an item is received.
SequenceNumber32 m_lastAckedSeq
Last sequence ACKed.
void NotifyDataSent(uint32_t size)
Notify through the callback (if set) that some data have been sent.
void SetRecvCallback(Callback< void, Ptr< Socket > >)
Notify application when new data is available to be read.
ECN is enabled but currently there is no action pertaining to ECE or CWR to be taken.
virtual uint32_t GetRxAvailable(void) const
Return number of bytes which can be returned from one or multiple calls to Recv.
friend Ptr< T > CopyObject(Ptr< T > object)
Copy an Object.
UseEcn_t m_useEcn
Socket ECN capability.
A base class for implementation of a stream socket using TCP.
Ptr< RttEstimator > m_rtt
Round trip time estimator.
bool m_closeNotified
Told app to close socket.
void ProcessSynSent(Ptr< Packet > packet, const TcpHeader &tcpHeader)
Received a packet upon SYN_SENT.
static uint32_t SafeSubtraction(uint32_t a, uint32_t b)
Performs a safe subtraction between a and b (a-b)
int SetupCallback(void)
Common part of the two Bind(), i.e.
TracedValue< uint32_t > m_bytesInFlight
Bytes in flight.
#define NS_LOG_LOGIC(msg)
Use NS_LOG to output a message of level LOG_LOGIC.
virtual void SetTcp(Ptr< TcpL4Protocol > tcp)
Set the associated TCP L4 protocol.
end of congestion recovery
bool m_isFirstPartialAck
First partial ACK during RECOVERY.
Ptr< TcpL4Protocol > m_tcp
the associated TCP L4 protocol
void SetHopLimit(uint8_t hopLimit)
Set the tag's Hop Limit.
void SetRecoveryAlgorithm(Ptr< TcpRecoveryOps > recovery)
Install a recovery algorithm on this socket.
TracedValue< uint32_t > m_ssThresh
Slow start threshold.
void ProcessSynRcvd(Ptr< Packet > packet, const TcpHeader &tcpHeader, const Address &fromAddress, const Address &toAddress)
Received a packet upon SYN_RCVD.
Ptr< TcpTxBuffer > GetTxBuffer(void) const
Get a pointer to the Tx buffer.
uint32_t GetRWnd(void) const
Get the current value of the receiver's offered window (RCV.WND)
virtual int ShutdownSend(void)
void NotifyConnectionSucceeded(void)
Notify through the callback (if set) that the connection has been established.
uint32_t m_retxThresh
Fast Retransmit threshold.
Access to the IPv4 forwarding table, interfaces, and configuration.
TcpCongState_t
Definition of the Congestion state machine.
Ptr< T > GetObject(void) const
Get a pointer to the requested aggregated Object.
void SetPaceInitialWindow(bool paceWindow)
Enable or disable pacing of the initial window.
virtual void SetDelAckMaxCount(uint32_t count)
Set the number of packet to fire an ACK before delay timeout.
void NotifyNormalClose(void)
Notify through the callback (if set) that the connection has been closed.
virtual uint32_t GetTxAvailable(void) const
Returns the number of bytes which can be sent in a single call to Send.
int DoConnect(void)
Perform the real connection tasks: Send SYN if allowed, RST if invalid.
virtual void CompleteFork(Ptr< Packet > p, const TcpHeader &tcpHeader, const Address &fromAddress, const Address &toAddress)
Complete a connection by forking the socket.
bool TraceConnectWithoutContext(std::string name, const CallbackBase &cb)
Connect a TraceSource to a Callback without a context.
void AddOptions(TcpHeader &tcpHeader)
Add options to TcpHeader.
ECN functionality as described in RFC 8257.
void UpdateNextTxSequence(SequenceNumber32 oldValue, SequenceNumber32 newValue)
Callback function to hook to TcpSocketState next tx sequence.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
uint32_t m_dupAckCount
Dupack counter.
static InetSocketAddress ConvertFrom(const Address &address)
Returns an InetSocketAddress which corresponds to the input Address.
void UpdateRtt(Time oldValue, Time newValue)
Callback function to hook to TcpSocketState rtt.
Ptr< Node > m_node
the associated node
Hold objects of type Ptr<T>.
virtual uint32_t AvailableWindow(void) const
Return unfilled portion of window.
Generic "sequence number" class.
void NotifyNewConnectionCreated(Ptr< Socket > socket, const Address &from)
Notify through the callback (if set) that a new connection has been created.
TracedValue< TcpCongState_t > m_congState
State in the Congestion state machine.
void TimeWait(void)
Move from CLOSING or FIN_WAIT_2 to TIME_WAIT state.
bool IsManualIpv6Tclass(void) const
Checks if the socket has a specific IPv6 Tclass set.
virtual void SetNode(Ptr< Node > node)
Set the associated node.
virtual uint32_t GetDataRetries(void) const
Get the number of data transmission retries before giving up.
TracedCallback< uint32_t, uint32_t > m_bytesInFlightTrace
Callback pointer for bytesInFlight trace chaining.
uint32_t ProcessOptionSack(const Ptr< const TcpOption > option)
Read the SACK option.
void AddOptionSackPermitted(TcpHeader &header)
Add the SACK PERMITTED option to the header.
uint16_t GetPort(void) const
void SetIcmpCallback(Callback< void, Ipv6Address, uint8_t, uint8_t, uint8_t, uint32_t > callback)
Set the ICMP callback.
bool m_recoverActive
Whether "m_recover" has been set/activated It is used to avoid comparing with the old m_recover value...
indicates whether the socket has IPV6_TCLASS set.
void Destroy(void)
Kill this socket by zeroing its attributes (IPv4)
Timeout to catch resent junk before entering closed, can only be entered from FIN_WAIT2 or CLOSING...
SequenceNumber32 GetHighRxAck(void) const
Get the current value of the receiver's highest (in-sequence) sequence number acked.
virtual int Connect(const Address &address)
Initiate a connection to a remote host.
void EnterCwr(uint32_t currentDelivered)
Enter CA_CWR state upon receipt of an ECN Echo.
virtual int Close(void)
Close a socket.
void UpdateCwndInfl(uint32_t oldValue, uint32_t newValue)
Callback function to hook to TcpSocketState inflated congestion window.
TracedValue< SequenceNumber32 > m_ecnCWRSeq
Sequence number of the last sent CWR.
static Ipv4Address GetZero(void)
Ptr< const AttributeAccessor > MakeTimeAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method...
Our side has shutdown after remote has shutdown.
void SetPeer(Ipv4Address address, uint16_t port)
Set the peer information (address and port).
static Time Now(void)
Return the current simulation virtual time.
void SetSendCallback(Callback< void, Ptr< Socket >, uint32_t > sendCb)
Notify application when space in transmit buffer is added.
Remote side has shutdown and is waiting for us to finish writing our data and to shutdown (we have to...
Sent a connection request, waiting for ack.
virtual void SetRtt(Ptr< RttEstimator > rtt)
Set the associated RTT estimator.
virtual TypeId GetInstanceTypeId() const
Get the instance TypeId.
double m_msl
Max segment lifetime.
virtual void ReTxTimeout(void)
An RTO event happened.
static uint32_t NowToTsValue()
Return an uint32_t value which represent "now".
Time m_minRto
minimum value of the Retransmit timeout
virtual void BindToNetDevice(Ptr< NetDevice > netdevice)
Bind a socket to specific device.
virtual void SendEmptyPacket(uint8_t flags)
Send a empty packet that carries a flag, e.g., ACK.
Time m_delAckTimeout
Time to delay an ACK.
virtual int GetPeerName(Address &address) const
Get the peer address of a connected socket.
TracedValue< uint32_t > m_cWnd
Congestion window.
void SetDataSentCallback(Callback< void, Ptr< Socket >, uint32_t > dataSent)
Notify application when a packet has been sent from transport protocol (non-standard socket call) ...
Listening for a connection.
virtual Ptr< Packet > RecvFrom(uint32_t maxSize, uint32_t flags, Address &fromAddress)
Read a single packet from the socket and retrieve the sender address.
uint8_t GetIpv6Tclass(void) const
Query the value of IPv6 Traffic Class field of this socket.
uint64_t m_delivered
The total amount of data in bytes delivered so far.
bool IsRunning(void) const
#define NS_ASSERT_MSG(condition, message)
At runtime, in debugging builds, if this condition is not true, the program prints the message to out...
Ptr< const AttributeAccessor > MakeDoubleAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method...
void SetLocalAddress(Ipv4Address address)
Set the local address.
virtual void SetSndBufSize(uint32_t size)
Set the send buffer size.
bool IsManualIpv6HopLimit(void) const
Checks if the socket has a specific IPv6 Hop Limit set.
static Time FromDouble(double value, enum Unit unit)
Create a Time equal to value in unit unit.
virtual void SetDelAckTimeout(Time timeout)
Set the time to delay an ACK.
EcnCodePoint_t m_ectCodePoint
ECT code point to use.
void DeallocateEndPoint(void)
Deallocate m_endPoint and m_endPoint6.
Describes an IPv6 address.
Ipv4 addresses are stored in host order in this class.
Sender has reduced the congestion window, and sent a packet with CWR bit set in TCP header...
void ProcessEstablished(Ptr< Packet > packet, const TcpHeader &tcpHeader)
Received a packet upon ESTABLISHED state.
virtual const TcpRateConnection & GetConnectionRate()=0
void ProcessOptionWScale(const Ptr< const TcpOption > option)
Read and parse the Window scale option.
Ptr< NetDevice > m_boundnetdevice
the device this socket is bound to (might be null).
bool m_connected
Connection established.
#define NS_ABORT_MSG_UNLESS(cond, msg)
Abnormal program termination if a condition is false, with a message.
#define NS_ABORT_MSG_IF(cond, msg)
Abnormal program termination if a condition is true, with a message.
uint16_t m_pacingSsRatio
SS pacing ratio.
TracedValue< Time > m_rto
Retransmit timeout.
Helper class to store RTT measurements.
Ptr< Packet > GetPacketCopy(void) const
Get a copy of the Packet underlying this item.
void AddPacketTag(const Tag &tag) const
Add a packet tag.
uint16_t GetLocalPort(void)
Get the local port.
uint8_t m_rcvWindShift
Window shift to apply to outgoing segments.
virtual uint16_t AdvertisedWindowSize(bool scale=true) const
The amount of Rx window announced to the peer.
virtual uint8_t GetIpv6HopLimit(void) const
Query the value of IP Hop Limit field of this socket.
#define NS_LOG_WARN(msg)
Use NS_LOG to output a message of level LOG_WARN.
TracedValue< Time > m_lastRtt
Last RTT sample collected.
Ipv6Address GetPeerAddress()
Get the peer address.
int DoClose(void)
Close a socket by sending RST, FIN, or FIN+ACK, depend on the current state.
SequenceNumber32 seq
First sequence number in packet sent.
Our side has shutdown, waiting to complete transmission of remaining buffered data.
bool RemovePacketTag(Tag &tag)
Remove a packet tag.
CWND was reduced due to RTO timeout or SACK reneging.
virtual uint8_t GetKind(void) const =0
Get the ‘kind’ (as in RFC 793) of this option.
#define NS_LOG_DEBUG(msg)
Use NS_LOG to output a message of level LOG_DEBUG.
void DupAck(uint32_t currentDelivered)
Dupack management.
T Get(void) const
Get the underlying value.
TracedValue< SequenceNumber32 > m_ecnEchoSeq
Sequence number of the last received ECN Echo.
Time Seconds(double value)
Construct a Time in the indicated unit.
static Inet6SocketAddress ConvertFrom(const Address &addr)
Convert the address to a InetSocketAddress.
Ptr< const AttributeChecker > MakeBooleanChecker(void)
void Cancel(void)
Cancel the currently-running event if there is one.
bool m_sackEnabled
RFC SACK option enabled.
Time m_minRtt
Minimum RTT observed throughout the connection.
uint16_t m_pacingCaRatio
CA pacing ratio.
Ipv4Address GetPeerAddress(void)
Get the peer address.
Enable only when the peer endpoint is ECN capable.
uint32_t m_timestampToEcho
Timestamp to echo.
uint32_t m_synCount
Count of remaining connection retries.
void UpdatePacingRateTrace(DataRate oldValue, DataRate newValue)
Callback function to hook to TcpSocketState pacing rate.
bool IsRunning(void) const
This method is syntactic sugar for !IsExpired().
void AddOptionSack(TcpHeader &header)
Add the SACK option to the header.
void SetRxCallback(Callback< void, Ptr< Packet >, Ipv6Header, uint16_t, Ptr< Ipv6Interface > > callback)
Set the reception callback.
virtual const TcpRateSample & GenerateSample(uint32_t delivered, uint32_t lost, bool is_sack_reneg, uint32_t priorInFlight, const Time &minRtt)=0
Generate a TcpRateSample to feed a congestion avoidance algorithm.
static bool IsMatchingType(const Address &addr)
If the address match.
uint16_t GetPeerPort(void)
Get the peer port.
TracedValue< SequenceNumber32 > m_highRxMark
Highest seqno received.
Ptr< const AttributeChecker > MakeEnumChecker(int v, std::string n, Ts... args)
Make an EnumChecker pre-configured with a set of allowed values by name.
void Cancel(void)
This method is syntactic sugar for the ns3::Simulator::Cancel method.
TracedValue< SequenceNumber32 > m_highTxMark
Highest seqno ever sent, regardless of ReTx.
void ProcessLastAck(Ptr< Packet > packet, const TcpHeader &tcpHeader)
Received a packet upon LAST_ACK.
TracedCallback< Time, Time > m_lastRttTrace
Callback pointer for RTT trace chaining.
void UpdateSsThresh(uint32_t oldValue, uint32_t newValue)
Callback function to hook to TcpSocketState slow start threshold.
first transmit when no packets in flight
virtual void SetSegSize(uint32_t size)
Set the segment size.
void ProcessClosing(Ptr< Packet > packet, const TcpHeader &tcpHeader)
Received a packet upon CLOSING.
Time GetClockGranularity(void) const
Get the Clock Granularity (used in RTO calcs).
Ptr< const AttributeChecker > MakeTimeChecker(const Time min, const Time max)
Helper to make a Time checker with bounded range.
Received a connection request, sent ack, waiting for final ack in three-way handshake.
#define NS_LOG_ERROR(msg)
Use NS_LOG to output a message of level LOG_ERROR.
virtual uint32_t GetInitialCwnd(void) const
Get the initial Congestion Window.
virtual void ReceivedData(Ptr< Packet > packet, const TcpHeader &tcpHeader)
Recv of a data, put into buffer, call L7 to get it if necessary.
void SetConnectCallback(Callback< void, Ptr< Socket > > connectionSucceeded, Callback< void, Ptr< Socket > > connectionFailed)
Specify callbacks to allow the caller to determine if the connection succeeds of fails.
void CloseAndNotify(void)
Peacefully close the socket by notifying the upper layer and deallocate end point.
Callback< void, Ipv6Address, uint8_t, uint8_t, uint8_t, uint32_t > m_icmpCallback6
ICMPv6 callback.
virtual void SetRcvBufSize(uint32_t size)
Set the receive buffer size.
virtual Ptr< Node > GetNode(void) const
Return the node this socket is associated with.
bool m_shutdownRecv
Receive no longer allowed.
TracedCallback< uint32_t, uint32_t > m_ssThTrace
Callback pointer for ssTh trace chaining.
EventId m_sendPendingDataEvent
micro-delay event to send pending data
bool IsValidTcpSegment(const SequenceNumber32 seq, const uint32_t tcpHeaderSize, const uint32_t tcpPayloadSize)
Checks whether the given TCP segment is valid or not.
uint16_t GetPort(void) const
Get the port.
uint32_t SendPendingData(bool withAck=false)
Send as much pending data as possible according to the Tx window.
DataRate m_maxPacingRate
Max Pacing rate.
virtual void DelAckTimeout(void)
Action upon delay ACK timeout, i.e.
Ipv4Address GetSource(void) const
virtual void LastAckTimeout(void)
Timeout at LAST_ACK, close the connection.
bool IsNull(void) const
Check for null implementation.
uint8_t CalculateWScale() const
Calculate window scale value based on receive buffer space.
void SetPriority(uint8_t priority)
Set the tag's priority.
This class can be used to hold variables of floating point type such as 'double' or 'float'...
uint32_t m_bytesAckedNotProcessed
Bytes acked, but not processed.
bool IsExpired(void) const
virtual int Bind6(void)
Allocate a local IPv6 endpoint for this socket.
TracedCallback< SequenceNumber32, SequenceNumber32 > m_nextTxSequenceTrace
Callback pointer for next tx sequence chaining.
indicates whether the socket has IP_TOS set.
TracedCallback< uint32_t, uint32_t > m_cWndInflTrace
Callback pointer for cWndInfl trace chaining.
NUMERIC_TYPE GetValue() const
Extracts the numeric value of the sequence number.
bool IsManualIpTtl(void) const
Checks if the socket has a specific IPv4 TTL set.
uint8_t GetIpTos(void) const
Query the value of IP Type of Service of this socket.
void EnterRecovery(uint32_t currentDelivered)
Enter the CA_RECOVERY, and retransmit the head.
Ptr< const AttributeAccessor > MakeUintegerAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method...
void SetIcmpCallback(Callback< void, Ipv4Address, uint8_t, uint8_t, uint8_t, uint32_t > callback)
Set the ICMP callback.
SocketType
Enumeration of the possible socket types.
void SetIpTos(uint8_t ipTos)
Manually set IP Type of Service field.
EventId m_delAckEvent
Delayed ACK timeout event.
received CE marked IP packet.
a unique identifier for an interface.
uint8_t m_sndWindShift
Window shift to apply to incoming segments.
bool m_shutdownSend
Send no longer allowed.
virtual uint32_t UnAckDataCount(void) const
Return count of number of unacked bytes.
virtual Ptr< TcpSocketBase > Fork(void)
Call CopyObject<> to clone me.
int SetupEndpoint6(void)
Configure the endpoint v6 to a local address.
void NotifySend(uint32_t spaceAvailable)
Notify through the callback (if set) that some data have been sent.
TypeId SetParent(TypeId tid)
Set the parent TypeId.
Time m_clockGranularity
Clock Granularity used in RTO calcs.
void ForwardIcmp(Ipv4Address icmpSource, uint8_t icmpTtl, uint8_t icmpType, uint8_t icmpCode, uint32_t icmpInfo)
Called by the L3 protocol when it received an ICMP packet to pass on to TCP.
TracedValue< uint32_t > m_rWnd
Receiver window (RCV.WND in RFC793)
TracedCallback< Ptr< const Packet >, const TcpHeader &, Ptr< const TcpSocketBase > > m_rxTrace
Trace of received packets.
virtual void DoForwardUp(Ptr< Packet > packet, const Address &fromAddress, const Address &toAddress)
Called by TcpSocketBase::ForwardUp{,6}().
static bool IsMatchingType(const Address &address)
void NotifyErrorClose(void)
Notify through the callback (if set) that the connection has been closed due to an error...
Callback< R, Ts... > MakeCallback(R(T::*memPtr)(Ts...), OBJ objPtr)
Build Callbacks for class method members which take varying numbers of arguments and potentially retu...
void UpdatePacingRate(void)
Dynamically update the pacing rate.
void DoRetransmit(void)
Retransmit the first segment marked as lost, without considering available window nor pacing...
bool m_closeOnEmpty
Close socket upon tx buffer emptied.
TracedCallback< Ptr< const Packet >, const TcpHeader &, Ptr< const TcpSocketBase > > m_txTrace
Trace of transmitted packets.
uint8_t GetPriority(void) const
Query the priority value of this socket.
void AddOptionWScale(TcpHeader &header)
Add the window scale option to the header.
virtual void SetConnTimeout(Time timeout)
Set the connection timeout.
EventId m_persistEvent
Persist event: Send 1 byte to probe for a non-zero Rx window.
void SetPeer(Ipv6Address addr, uint16_t port)
Set the peer information (address and port).
Ipv4Address GetIpv4(void) const
int SetupEndpoint(void)
Configure the endpoint to a local address.
virtual void SkbSent(TcpTxItem *skb, bool isStartOfTransmission)=0
Put the rate information inside the sent skb.
TracedCallback< TcpSocketState::TcpCongState_t, TcpSocketState::TcpCongState_t > m_congStateTrace
Callback pointer for congestion state trace chaining.
void Destroy6(void)
Kill this socket by zeroing its attributes (IPv6)
TracedValue< SequenceNumber32 > m_nextTxSequence
Next seqnum to be sent (SND.NXT), ReTx pushes it back.
EcnState_t
Definition of the Ecn state machine.
ECT set, but not CE marked.
Time m_persistTimeout
Time between sending 1-byte probes.