22 #define NS_LOG_APPEND_CONTEXT \
23 if (m_node) { std::clog << Simulator::Now ().GetSeconds () << " [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"
68 .SetGroupName (
"Internet")
74 .AddAttribute (
"MaxSegLifetime",
75 "Maximum segment lifetime in seconds, use for TIME_WAIT state transition to CLOSED state",
78 MakeDoubleChecker<double> (0))
79 .AddAttribute (
"MaxWindowSize",
"Max size of advertised window",
82 MakeUintegerChecker<uint16_t> ())
83 .AddAttribute (
"IcmpCallback",
"Callback invoked whenever an icmp error is received on this socket.",
87 .AddAttribute (
"IcmpCallback6",
"Callback invoked whenever an icmpv6 error is received on this socket.",
91 .AddAttribute (
"WindowScaling",
"Enable or disable Window Scaling option",
95 .AddAttribute (
"Timestamp",
"Enable or disable Timestamp option",
99 .AddAttribute (
"MinRto",
100 "Minimum retransmit timeout value",
105 .AddAttribute (
"ClockGranularity",
106 "Clock Granularity used in RTO calculations",
111 .AddAttribute (
"TxBuffer",
115 MakePointerChecker<TcpTxBuffer> ())
116 .AddAttribute (
"RxBuffer",
120 MakePointerChecker<TcpRxBuffer> ())
121 .AddTraceSource (
"RTO",
122 "Retransmission timeout",
124 "ns3::Time::TracedValueCallback")
125 .AddTraceSource (
"RTT",
128 "ns3::Time::TracedValueCallback")
129 .AddTraceSource (
"NextTxSequence",
130 "Next sequence number to send (SND.NXT)",
132 "ns3::SequenceNumber32TracedValueCallback")
133 .AddTraceSource (
"HighestSequence",
134 "Highest sequence number ever sent in socket's life time",
136 "ns3::SequenceNumber32TracedValueCallback")
137 .AddTraceSource (
"State",
140 "ns3::TcpStatesTracedValueCallback")
141 .AddTraceSource (
"RWND",
142 "Remote side's flow control window",
144 "ns3::TracedValue::Uint32Callback")
145 .AddTraceSource (
"HighestRxSequence",
146 "Highest sequence number received from peer",
148 "ns3::SequenceNumber32TracedValueCallback")
149 .AddTraceSource (
"HighestRxAck",
150 "Highest ack received from peer",
152 "ns3::SequenceNumber32TracedValueCallback")
165 m_nextTxSequence (0),
171 m_errno (ERROR_NOTERROR),
172 m_closeNotified (false),
173 m_closeOnEmpty (false),
174 m_shutdownSend (false),
175 m_shutdownRecv (false),
182 m_sndScaleFactor (0),
183 m_rcvScaleFactor (0),
184 m_timestampEnabled (true),
185 m_timestampToEcho (0)
196 m_dupAckCount (sock.m_dupAckCount),
198 m_delAckMaxCount (sock.m_delAckMaxCount),
199 m_noDelay (sock.m_noDelay),
200 m_cnRetries (sock.m_cnRetries),
201 m_delAckTimeout (sock.m_delAckTimeout),
202 m_persistTimeout (sock.m_persistTimeout),
203 m_cnTimeout (sock.m_cnTimeout),
206 m_node (sock.m_node),
209 m_nextTxSequence (sock.m_nextTxSequence),
210 m_highTxMark (sock.m_highTxMark),
211 m_state (sock.m_state),
212 m_errno (sock.m_errno),
213 m_closeNotified (sock.m_closeNotified),
214 m_closeOnEmpty (sock.m_closeOnEmpty),
215 m_shutdownSend (sock.m_shutdownSend),
216 m_shutdownRecv (sock.m_shutdownRecv),
217 m_connected (sock.m_connected),
219 m_segmentSize (sock.m_segmentSize),
220 m_maxWinSize (sock.m_maxWinSize),
221 m_rWnd (sock.m_rWnd),
222 m_highRxMark (sock.m_highRxMark),
223 m_highRxAckMark (sock.m_highRxAckMark),
224 m_winScalingEnabled (sock.m_winScalingEnabled),
225 m_sndScaleFactor (sock.m_sndScaleFactor),
226 m_rcvScaleFactor (sock.m_rcvScaleFactor),
227 m_timestampEnabled (sock.m_timestampEnabled),
228 m_timestampToEcho (sock.m_timestampToEcho)
241 Callback<void, Ptr<Socket>, uint32_t> vPSUI = MakeNullCallback<void, Ptr<Socket>, uint32_t> ();
334 if (std::find(
m_tcp->m_sockets.begin(),
m_tcp->m_sockets.end(),
this) ==
m_tcp->m_sockets.end())
336 m_tcp->m_sockets.push_back (
this);
352 if (std::find(
m_tcp->m_sockets.begin(),
m_tcp->m_sockets.end(),
this) ==
m_tcp->m_sockets.end())
354 m_tcp->m_sockets.push_back (
this);
424 if (std::find(
m_tcp->m_sockets.begin(),
m_tcp->m_sockets.end(),
this) ==
m_tcp->m_sockets.end())
426 m_tcp->m_sockets.push_back (
this);
532 NS_LOG_INFO (
"Socket " <<
this <<
" << unread rx data during close. Sending reset");
598 NS_ABORT_MSG_IF (flags,
"use of flags is not supported in TcpSocketBase::Send()");
634 return Send (p, flags);
643 NS_ABORT_MSG_IF (flags,
"use of flags is not supported in TcpSocketBase::Recv()");
646 return Create<Packet> ();
649 if (outPacket != 0 && outPacket->
GetSize () != 0)
672 if (packet != 0 && packet->
GetSize () != 0)
880 return (
m_rxBuffer->NextRxSequence () != head);
884 return (tail < m_rxBuffer->NextRxSequence () ||
m_rxBuffer->MaxRxSequence () <= head);
894 DoForwardUp (packet, header, port, incomingInterface);
905 uint8_t icmpType, uint8_t icmpCode,
908 NS_LOG_FUNCTION (
this << icmpSource << (uint32_t)icmpTtl << (uint32_t)icmpType <<
909 (uint32_t)icmpCode << icmpInfo);
912 m_icmpCallback (icmpSource, icmpTtl, icmpType, icmpCode, icmpInfo);
918 uint8_t icmpType, uint8_t icmpCode,
921 NS_LOG_FUNCTION (
this << icmpSource << (uint32_t)icmpTtl << (uint32_t)icmpType <<
922 (uint32_t)icmpCode << icmpInfo);
946 uint32_t bytesRemoved = packet->
RemoveHeader (tcpHeader);
947 if (bytesRemoved == 0 || bytesRemoved > 60)
949 NS_LOG_ERROR (
"Bytes removed: " << bytesRemoved <<
" invalid");
962 &&
OutOfRange (tcpHeader.GetSequenceNumber (), tcpHeader.GetSequenceNumber () + packet->
GetSize ()))
965 " received packet of seq [" << tcpHeader.GetSequenceNumber () <<
966 ":" << tcpHeader.GetSequenceNumber () + packet->
GetSize () <<
967 ") out of range [" <<
m_rxBuffer->NextRxSequence () <<
":" <<
980 NS_LOG_LOGIC (
this <<
" Leaving zerowindow persist state");
1052 uint32_t bytesRemoved = packet->
RemoveHeader (tcpHeader);
1053 if (bytesRemoved == 0 || bytesRemoved > 60)
1055 NS_LOG_ERROR (
"Bytes removed: " << bytesRemoved <<
" invalid");
1068 &&
OutOfRange (tcpHeader.GetSequenceNumber (), tcpHeader.GetSequenceNumber () + packet->
GetSize ()))
1071 " received packet of seq [" << tcpHeader.GetSequenceNumber () <<
1072 ":" << tcpHeader.GetSequenceNumber () + packet->
GetSize () <<
1073 ") out of range [" <<
m_rxBuffer->NextRxSequence () <<
":" <<
1086 NS_LOG_LOGIC (
this <<
" Leaving zerowindow persist state");
1172 else if (tcpflags == 0)
1184 NS_LOG_LOGIC (
"Illegal flag " << tcpflags <<
" received. Reset packet is sent.");
1255 packet, tcpHeader, fromAddress, toAddress);
1309 NS_LOG_LOGIC (
"Illegal flag " << std::hex << static_cast<uint32_t> (tcpflags) << std::dec <<
" received. Reset packet is sent.");
1389 NS_LOG_LOGIC (
"Illegal flag " << tcpflags <<
" received. Reset packet is sent.");
1445 NS_LOG_LOGIC (
"Illegal flag " << tcpflags <<
" received. Reset packet is sent.");
1502 NS_LOG_LOGIC (
"Illegal flag " << tcpflags <<
" received. Reset packet is sent.");
1539 NS_LOG_LOGIC (
"Illegal flag " << tcpflags <<
" received. Reset packet is sent.");
1600 NS_LOG_LOGIC (
"TCP " <<
this <<
" calling NotifyNormalClose");
1614 NS_LOG_LOGIC (
"TcpSocketBase " <<
this <<
" scheduling LATO1");
1629 std::vector<Ptr<TcpSocketBase> >::iterator it
1630 = std::find (
m_tcp->m_sockets.begin (),
m_tcp->m_sockets.end (),
this);
1631 if (it !=
m_tcp->m_sockets.end ())
1633 m_tcp->m_sockets.erase (it);
1636 NS_LOG_LOGIC (
this <<
" Cancelled ReTxTimeout event which was set to expire at " <<
1650 std::vector<Ptr<TcpSocketBase> >::iterator it
1651 = std::find (
m_tcp->m_sockets.begin (),
m_tcp->m_sockets.end (),
this);
1652 if (it !=
m_tcp->m_sockets.end ())
1654 m_tcp->m_sockets.erase (it);
1657 NS_LOG_LOGIC (
this <<
" Cancelled ReTxTimeout event which was set to expire at " <<
1707 NS_LOG_WARN (
"Failed to send empty packet due to null endpoint");
1719 header.SetFlags (flags);
1720 header.SetSequenceNumber (s);
1721 header.SetAckNumber (
m_rxBuffer->NextRxSequence ());
1774 NS_LOG_LOGIC (
"Schedule retransmission timeout at time "
1801 std::vector<Ptr<TcpSocketBase> >::iterator it
1802 = std::find (
m_tcp->m_sockets.begin (),
m_tcp->m_sockets.end (),
this);
1803 if (it !=
m_tcp->m_sockets.end ())
1805 m_tcp->m_sockets.erase (it);
1814 std::vector<Ptr<TcpSocketBase> >::iterator it
1815 = std::find (
m_tcp->m_sockets.begin (),
m_tcp->m_sockets.end (),
this);
1816 if (it !=
m_tcp->m_sockets.end ())
1818 m_tcp->m_sockets.erase (it);
1830 if (ipv4->GetRoutingProtocol () == 0)
1841 route = ipv4->GetRoutingProtocol ()->RouteOutput (
Ptr<Packet> (), header, oif, errno_);
1860 if (ipv6->GetRoutingProtocol () == 0)
1871 route = ipv6->GetRoutingProtocol ()->RouteOutput (
Ptr<Packet> (), header, oif, errno_);
1908 m_tcp->m_sockets.push_back (
this);
1942 bool isRetransmission =
false;
1945 isRetransmission =
true;
2032 NS_LOG_LOGIC (
this <<
" SendDataPacket Schedule ReTxTimeout at time " <<
2037 NS_LOG_LOGIC (
"Send packet via TcpL4Protocol with flags 0x" << std::hex << static_cast<uint32_t> (flags) << std::dec);
2050 if (isRetransmission ==
false)
2093 uint32_t nPacketsSent = 0;
2098 if (w < m_segmentSize && m_txBuffer->SizeFromSequence (
m_nextTxSequence) > w)
2100 NS_LOG_LOGIC (
"Preventing Silly Window Syndrome. Wait to send.");
2108 NS_LOG_LOGIC (
"Invoking Nagle's algorithm. Wait to send.");
2111 NS_LOG_LOGIC (
"TcpSocketBase " <<
this <<
" SendPendingData" <<
2116 " highestRxAck " <<
m_txBuffer->HeadSequence () <<
2124 NS_LOG_LOGIC (
"SendPendingData sent " << nPacketsSent <<
" packets");
2125 return (nPacketsSent > 0);
2147 uint32_t win =
Window ();
2148 NS_LOG_LOGIC (
"UnAckCount=" << unack <<
", Win=" << win);
2149 return (win < unack) ? 0 : (win - unack);
2161 NS_LOG_WARN (
"There is a loss in the adv win size, wrt buffer size");
2165 return (uint16_t)
w;
2175 " pkt size " << p->
GetSize () );
2205 if (expectedSeq < m_rxBuffer->NextRxSequence ())
2214 NS_LOG_WARN (
"Why TCP " <<
this <<
" got data after close notification?");
2269 m_rtt->Measurement (m);
2287 NS_LOG_LOGIC (
this <<
" Cancelled ReTxTimeout event which was set to expire at " <<
2294 NS_LOG_LOGIC (
this <<
" Schedule ReTxTimeout at time " <<
2301 NS_LOG_LOGIC (
this <<
"Enter zerowindow persist state");
2302 NS_LOG_LOGIC (
this <<
"Cancelled ReTxTimeout event which was set to expire at " <<
2313 " numberAck " << (ack -
m_txBuffer->HeadSequence ()));
2325 NS_LOG_LOGIC (
this <<
" Cancelled ReTxTimeout event which was set to expire at " <<
2348 if (m_state <= ESTABLISHED && m_txBuffer->HeadSequence () >=
m_highTxMark)
2601 return (!allowBroadcast);
2667 if (m_rcvScaleFactor > 14)
2669 NS_LOG_WARN (
"Possible error; m_rcvScaleFactor exceeds 14: " << m_rcvScaleFactor);
2670 m_rcvScaleFactor = 14;
2681 uint32_t maxSpace =
m_rxBuffer->MaxBufferSize ();
2686 maxSpace = maxSpace >> 1;
2692 NS_LOG_WARN (
"Possible error; scale exceeds 14: " << scale);
2697 static_cast<int> (scale) <<
" for buffer size " <<
m_rxBuffer->MaxBufferSize ());
2713 option->SetScale (m_sndScaleFactor);
2730 m_timestampToEcho <<
" and Echo=" << ts->GetEcho ());
2755 NS_LOG_DEBUG (
"Received (scaled) window is " << receivedWindow <<
" bytes");
2769 bool update =
false;
2833 : seq (s), count (c), time (t), retx (false)
2838 : seq (h.seq), count (h.count), time (h.time), retx (h.retx)
static Time GetDelayLeft(const EventId &id)
Get the remaining time until this event will execute.
Ipv6Address GetLocalAddress()
Get the local address.
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.
Custom version of log2() to deal with Bug 1467.
void SetTclass(uint8_t tclass)
Set the tag's Tclass.
void ProcessListen(Ptr< Packet > packet, const TcpHeader &tcpHeader, const Address &fromAddress, const Address &toAddress)
Received a packet upon LISTEN state.
Ipv6Address GetIpv6(void) const
Get the IPv6 address.
virtual int Listen(void)
Listen for incoming connections.
Simulation virtual time values and global simulation resolution.
bool IsManualIpTtl(void) const
Checks if the socket has a specific IPv4 TTL set.
virtual int GetSockName(Address &address) const
Get socket address.
Ipv4Address GetIpv4(void) const
static Ipv4Address GetAny(void)
#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.
SocketErrno
Enumeration of the possible errors returned by a socket.
AttributeValue implementation for Boolean.
virtual uint8_t GetIpTtl(void) const
Query the value of IP Time to Live field of this socket.
virtual uint16_t AdvertisedWindowSize(void)
The amount of Rx window announced to the peer.
bool m_noDelay
Set to true to disable Nagle's algorithm.
virtual uint32_t GetSegSize(void) const
Get the segment size.
Time GetClockGranularity(void) const
Get the Clock Granularity (used in RTO calcs).
uint8_t GetIpTos(void) const
Query the value of IP Type of Service of this socket.
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...
(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.
virtual ~TcpSocketBase(void)
TracedValue< Time > m_lastRtt
Last RTT sample collected.
void NotifyDataRecv(void)
Notify through the callback (if set) that some data have been received.
TracedValue< SequenceNumber32 > m_highRxAckMark
Highest ack received.
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.
void AddPacketTag(const Tag &tag) const
Add a packet tag.
void SetAddress(Address addr)
Set the tag's address.
virtual void SetPersistTimeout(Time timeout)
Set the timout for persistent connection.
virtual int Send(Ptr< Packet > p, uint32_t flags)
Send data (or dummy data) to the remote host.
virtual bool GetAllowBroadcast(void) const
Query whether broadcast datagram transmissions are allowed.
EventId m_timewaitEvent
TIME_WAIT expiration event: Move this socket to CLOSED state.
void NotifyConnectionFailed(void)
Notify through the callback (if set) that the connection has not been established due to an error...
static TypeId GetTypeId(void)
Get the type ID.
#define NS_ASSERT(condition)
At runtime, in debugging builds, if this condition is not true, the program prints the source file...
void SendRST(void)
Send reset and tear down this socket.
static Ipv6Address GetAny()
Get the "any" (::) Ipv6Address.
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Time MilliSeconds(uint64_t value)
Construct a Time in the indicated unit.
bool m_winScalingEnabled
Window Scale option enabled.
bool m_timestampEnabled
Timestamp option enabled.
uint16_t m_maxWinSize
Maximum window size to advertise.
virtual void ScaleSsThresh(uint8_t scaleFactor)=0
Scale the initial SsThresh value to the correct one.
uint32_t GetSize(void) const
Returns the the size in bytes of the packet (including the zero-filled initial payload).
bool retx
True if this has been retransmitted.
bool IsManualIpTos(void) const
Checks if the socket has a specific IPv4 ToS set.
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)
Fatal error handling.
virtual uint8_t GetIpv6HopLimit(void) const
Query the value of IP Hop Limit field of this socket.
Time m_cnTimeout
Timeout for connection retry.
bool IsRunning(void) const
This method is syntactic sugar for !IsExpired().
uint32_t m_segmentSize
Segment size.
#define NS_LOG_FUNCTION_NOARGS()
Output the name of the function.
SocketType
Enumeration of the possible socket types.
EventId m_lastAckEvent
Last ACK timeout event.
void ConnectionSucceeded(void)
Schedule-friendly wrapper for Socket::NotifyConnectionSucceeded()
void SetTos(uint8_t tos)
Set the tag's TOS.
TracedValue< SequenceNumber32 > m_nextTxSequence
Next seqnum to be sent (SND.NXT), ReTx pushes it back.
static EventId Schedule(Time const &time, MEM mem_ptr, OBJ obj)
Schedule an event to expire at the relative time "time" is reached.
virtual void ReceivedAck(Ptr< Packet > packet, const TcpHeader &tcpHeader)
Received an ACK packet.
uint32_t m_cnCount
Count of remaining connection retries.
T Get(void) const
Get the underlying value.
This class implements a tag that carries the socket-specific TTL of a packet to the IP layer...
virtual Time GetPersistTimeout(void) const
Get the timout for persistent connection.
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...
virtual void PersistTimeout(void)
Send 1 byte probe to get an updated window size.
Ptr< TcpTxBuffer > GetTxBuffer(void) const
Get a pointer to the Tx buffer.
TracedValue< TcpStates_t > m_state
TCP state.
uint32_t m_delAckMaxCount
Number of packet to fire an ACK before delay timeout.
uint8_t CalculateWScale() const
Calculate window scale value based on receive buffer space.
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.
uint32_t m_cnRetries
Number of connection retries before giving up.
virtual uint32_t GetRcvBufSize(void) const
Get the receive buffer size.
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 bool GetTcpNoDelay(void) const
Check if Nagle's algorithm is enabled or not.
Ptr< const AttributeChecker > MakeTimeChecker(const Time min, const Time max)
Helper to make a Time checker with bounded range.
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.
virtual void Retransmit(void)
Halving cwnd and call DoRetransmit()
void SetLocalAddress(Ipv6Address addr)
Set the local address.
virtual void ReadOptions(const TcpHeader &tcpHeader)
Read TCP options from incoming packets.
int64x64_t Min(const int64x64_t &a, const int64x64_t &b)
Minimum.
void BindToNetDevice(Ptr< NetDevice > netdevice)
Bind a socket to specific device.
virtual int SendTo(Ptr< Packet > p, uint32_t flags, const Address &toAddress)
Send data to a specified peer.
virtual void EstimateRtt(const TcpHeader &tcpHeader)
Take into account the packet for RTT estimation.
Ptr< const AttributeAccessor > MakePointerAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method...
Time time
Time this one was sent.
virtual uint32_t UnAckDataCount(void)
Return count of number of unacked bytes.
Ptr< TcpTxBuffer > m_txBuffer
Tx buffer.
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.
static const char *const TcpStateName[LAST_STATE]
Literal names of TCP states for use in log messages.
void SetTtl(uint8_t ttl)
Set the tag's TTL.
AttributeValue implementation for Time.
virtual uint32_t GetSndBufSize(void) const
Get the send buffer size.
virtual enum SocketType GetSocketType(void) const
uint16_t GetLocalPort()
Get the local port.
void UpdateWindowSize(const TcpHeader &header)
Update the receiver window (RWND) based on the value of the window field in the header.
void AddOptionTimestamp(TcpHeader &header)
Add the timestamp option to the header.
Hold an unsigned integer type.
Ipv6EndPoint * m_endPoint6
the IPv6 endpoint
virtual void BindToNetDevice(Ptr< NetDevice > netdevice)
Bind a socket to specific device.
bool OutOfRange(SequenceNumber32 head, SequenceNumber32 tail) const
Check if a sequence number range is within the rx window.
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.
int64x64_t Max(const int64x64_t &a, const int64x64_t &b)
Maximum.
virtual void SetTcpNoDelay(bool noDelay)
Enable/Disable Nagle's algorithm.
This class implements a tag that carries an address of a packet across the socket interface...
RttHistory(SequenceNumber32 s, uint32_t c, Time t)
Constructor - builds an RttHistory with the given parameters.
Callback< R > MakeCallback(R(T::*memPtr)(void), OBJ objPtr)
bool IsManualIpv6Tclass(void) const
Checks if the socket has a specific IPv6 Tclass set.
void NotifyDataSent(uint32_t size)
Notify through the callback (if set) that some data have been sent.
virtual uint32_t GetConnCount(void) const
Get the number of connection retries before giving up.
void SetRecvCallback(Callback< void, Ptr< Socket > >)
Notify application when new data is available to be read.
enum SocketErrno m_errno
Socket error code.
Ipv4Address GetSource(void) const
friend Ptr< T > CopyObject(Ptr< T > object)
Copy an Object.
A base class for implementation of a stream socket using TCP.
uint8_t m_sndScaleFactor
Sent Window Scale (i.e., the one of the node)
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.
Ptr< TcpRxBuffer > m_rxBuffer
Rx buffer (reordering buffer)
int SetupCallback(void)
Common part of the two Bind(), i.e.
#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.
Ptr< TcpL4Protocol > m_tcp
the associated TCP L4 protocol
void SetHopLimit(uint8_t hopLimit)
Set the tag's Hop Limit.
void ProcessSynRcvd(Ptr< Packet > packet, const TcpHeader &tcpHeader, const Address &fromAddress, const Address &toAddress)
Received a packet upon SYN_RCVD.
virtual int ShutdownSend(void)
void NotifyConnectionSucceeded(void)
Notify through the callback (if set) that the connection has been established.
Access to the Ipv4 forwarding table, interfaces, and configuration.
bool IsManualIpv6HopLimit(void) const
Checks if the socket has a specific IPv6 Hop Limit set.
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.
int DoConnect(void)
Perform the real connection tasks: Send SYN if allowed, RST if invalid.
void CompleteFork(Ptr< Packet > p, const TcpHeader &tcpHeader, const Address &fromAddress, const Address &toAddress)
Complete a connection by forking the socket.
virtual void AddOptions(TcpHeader &tcpHeader)
Add options to TcpHeader.
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.
Ptr< Node > m_node
the associated node
Hold objects of type Ptr.
virtual uint32_t Window(void)=0
Return the max possible number of unacked bytes.
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.
Ptr< const AttributeChecker > MakeBooleanChecker(void)
void TimeWait(void)
Move from CLOSING or FIN_WAIT_2 to TIME_WAIT state.
virtual void SetNode(Ptr< Node > node)
Set the associated node.
void SetIcmpCallback(Callback< void, Ipv6Address, uint8_t, uint8_t, uint8_t, uint32_t > callback)
Set the ICMP callback.
virtual uint32_t BytesInFlight(void)
Return total bytes in flight.
indicates whether the socket has IPV6_TCLASS set.
uint8_t GetIpv6Tclass(void) const
Query the value of IPv6 Traffic Class field of this socket.
void Destroy(void)
Kill this socket by zeroing its attributes (IPv4)
virtual int Connect(const Address &address)
Initiate a connection to a remote host.
Time TimeStep(uint64_t ts)
static EventId ScheduleNow(MEM mem_ptr, OBJ obj)
Schedule an event to expire Now.
virtual int Close(void)
Close a socket.
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...
void SetPeer(Ipv4Address address, uint16_t port)
Set the peer informations (address and port).
static Time Now(void)
Return the current simulation virtual time.
virtual uint32_t AvailableWindow(void)
Return unfilled portion of window.
void SetSendCallback(Callback< void, Ptr< Socket >, uint32_t > sendCb)
Notify application when space in transmit buffer is added.
virtual Ptr< TcpSocketBase > Fork(void)=0
Call CopyObject<> to clone me.
virtual void DupAck(const TcpHeader &tcpHeader, uint32_t count)=0
Received dupack (duplicate ACK)
virtual void SetRtt(Ptr< RttEstimator > rtt)
Set the associated RTT estimator.
double m_msl
Max segment lifetime.
virtual void ReTxTimeout(void)
Call Retransmit() upon RTO event.
Ptr< const AttributeChecker > MakeCallbackChecker(void)
TracedValue< SequenceNumber32 > m_highTxMark
Highest seqno ever sent, regardless of ReTx.
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.
void SendEmptyPacket(uint8_t flags)
Send a empty packet that carries a flag, e.g.
Time m_delAckTimeout
Time to delay an ACK.
void SetDataSentCallback(Callback< void, Ptr< Socket >, uint32_t > dataSent)
Notify application when a packet has been sent from transport protocol (non-standard socket call) ...
virtual Ptr< Packet > RecvFrom(uint32_t maxSize, uint32_t flags, Address &fromAddress)
Read a single packet from the socket and retrieve the sender address.
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.
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.
virtual void NewAck(SequenceNumber32 const &seq)
Update buffers w.r.t.
void DeallocateEndPoint(void)
Deallocate m_endPoint and m_endPoint6.
Ptr< TcpRxBuffer > GetRxBuffer(void) const
Get a pointer to the Rx buffer.
Describes an IPv6 address.
Ipv4 addresses are stored in host order in this class.
Time GetMinRto(void) const
Get the Minimum RTO.
void ProcessEstablished(Ptr< Packet > packet, const TcpHeader &tcpHeader)
Received a packet upon ESTABLISHED state.
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.
uint32_t GetId(void) const
TracedValue< Time > m_rto
Retransmit timeout.
Helper class to store RTT measurements.
uint16_t GetLocalPort(void)
Get the local port.
#define NS_LOG_WARN(msg)
Use NS_LOG to output a message of level LOG_WARN.
Ipv6Address GetPeerAddress()
Get the peer address.
int DoClose(void)
Close a socket by sending RST, FIN, or FIN+ACK, depend on the current state.
virtual void SetConnCount(uint32_t count)
Set the number of connection retries before giving up.
SequenceNumber32 seq
First sequence number in packet sent.
#define NS_LOG_DEBUG(msg)
Use NS_LOG to output a message of level LOG_DEBUG.
RttHistory_t m_history
List of sent packet.
Time Seconds(double value)
Construct a Time in the indicated unit.
static Inet6SocketAddress ConvertFrom(const Address &addr)
Convert the address to a InetSocketAddress.
Ipv4Address GetPeerAddress(void)
Get the peer address.
uint32_t m_timestampToEcho
Timestamp to echo.
void SetRxCallback(Callback< void, Ptr< Packet >, Ipv6Header, uint16_t, Ptr< Ipv6Interface > > callback)
Set the reception callback.
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.
uint16_t GetPort(void) const
Get the port.
void Cancel(void)
This method is syntactic sugar for the ns3::Simulator::Cancel method.
virtual enum SocketErrno GetErrno(void) const
Get last error number.
void ProcessLastAck(Ptr< Packet > packet, const TcpHeader &tcpHeader)
Received a packet upon LAST_ACK.
Ipv4Address GetIpv4MappedAddress() const
Return the Ipv4 address.
virtual void SetSegSize(uint32_t size)
Set the segment size.
void ProcessClosing(Ptr< Packet > packet, const TcpHeader &tcpHeader)
Received a packet upon CLOSING.
#define NS_LOG_ERROR(msg)
Use NS_LOG to output a message of level LOG_ERROR.
uint16_t GetPort(void) const
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 Ptr< Node > GetNode(void) const
Return the node this socket is associated with.
virtual void SetRcvBufSize(uint32_t size)
Set the receive buffer size.
uint8_t m_rcvScaleFactor
Received Window Scale (i.e., the one of the peer)
bool m_shutdownRecv
Receive no longer allowed.
virtual Time GetDelAckTimeout(void) const
Get the time to delay an ACK.
EventId m_sendPendingDataEvent
micro-delay event to send pending data
virtual void DelAckTimeout(void)
Action upon delay ACK timeout, i.e.
virtual void LastAckTimeout(void)
Timeout at LAST_ACK, close the connection.
This class can be used to hold variables of floating point type such as 'double' or 'float'...
virtual void DoForwardUp(Ptr< Packet > packet, Ipv4Header header, uint16_t port, Ptr< Ipv4Interface > incomingInterface)
Called by TcpSocketBase::ForwardUp().
virtual int Bind6(void)
Allocate a local IPv6 endpoint for this socket.
indicates whether the socket has IP_TOS set.
void ProcessOptionTimestamp(const Ptr< const TcpOption > option)
Process the timestamp option from other side.
bool IsExpired(void) const
This method is syntactic sugar for the ns3::Simulator::IsExpired method.
Ptr< T > GetObject(void) const
Get a pointer to the requested aggregated Object.
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.
bool IsIpv4MappedAddress() const
If the address is an IPv4-mapped address.
EventId m_delAckEvent
Delayed ACK timeout event.
a unique identifier for an interface.
bool m_shutdownSend
Send no longer allowed.
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)
Time m_clockGranularity
Clock Granularity used in RTO calcs.
bool SendPendingData(bool withAck=false)
Send as much pending data as possible according to the Tx window.
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)
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...
SequenceNumber< uint32_t, int32_t > SequenceNumber32
32 bit Sequence number.
virtual void DoRetransmit(void)
Retransmit the oldest packet.
bool m_closeOnEmpty
Close socket upon tx buffer emptied.
void AddOptionWScale(TcpHeader &header)
Add the window scale option to the header.
virtual uint32_t GetDelAckMaxCount(void) const
Get the number of packet to fire an ACK before delay timeout.
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 informations (address and port).
int SetupEndpoint(void)
Configure the endpoint to a local address.
virtual Time GetConnTimeout(void) const
Get the connection timeout.
void Destroy6(void)
Kill this socket by zeroing its attributes (IPv6)
Time m_persistTimeout
Time between sending 1-byte probes.
virtual uint32_t GetTxAvailable(void) const
Returns the number of bytes which can be sent in a single call to Send.
virtual uint32_t GetRxAvailable(void) const
Return number of bytes which can be returned from one or multiple calls to Recv.