A Discrete-Event Network Simulator
API
tcp-socket-base.h
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2007 Georgia Tech Research Corporation
4  * Copyright (c) 2010 Adrian Sai-wah Tam
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation;
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18  *
19  * Author: Adrian Sai-wah Tam <adrian.sw.tam@gmail.com>
20  */
21 #ifndef TCP_SOCKET_BASE_H
22 #define TCP_SOCKET_BASE_H
23 
24 #include <stdint.h>
25 #include <queue>
26 #include "ns3/callback.h"
27 #include "ns3/traced-value.h"
28 #include "ns3/tcp-socket.h"
29 #include "ns3/ptr.h"
30 #include "ns3/ipv4-address.h"
31 #include "ns3/ipv4-header.h"
32 #include "ns3/ipv4-interface.h"
33 #include "ns3/ipv6-header.h"
34 #include "ns3/ipv6-interface.h"
35 #include "ns3/event-id.h"
36 #include "tcp-tx-buffer.h"
37 #include "tcp-rx-buffer.h"
38 #include "rtt-estimator.h"
39 
40 namespace ns3 {
41 
42 class Ipv4EndPoint;
43 class Ipv6EndPoint;
44 class Node;
45 class Packet;
46 class TcpL4Protocol;
47 class TcpHeader;
48 class TcpCongestionOps;
49 
56 {
57 public:
64  RttHistory (SequenceNumber32 s, uint32_t c, Time t);
69  RttHistory (const RttHistory& h); // Copy constructor
70 public:
72  uint32_t count;
74  bool retx;
75 };
76 
78 typedef std::deque<RttHistory> RttHistory_t;
79 
92 class TcpSocketState : public Object
93 {
94 public:
100  static TypeId GetTypeId (void);
101 
102  TcpSocketState ();
103 
108  TcpSocketState (const TcpSocketState &other);
109 
124  typedef enum
125  {
136  } TcpCongState_t;
137 
145  typedef void (* TcpCongStatesTracedValueCallback)(const TcpCongState_t oldValue,
146  const TcpCongState_t newValue);
147 
152 
153  // Congestion control
156  uint32_t m_initialCWnd;
157  uint32_t m_initialSsThresh;
158 
159  // Segment
160  uint32_t m_segmentSize;
162 
166 
169 
175  uint32_t GetCwndInSegments () const
176  {
177  return m_cWnd / m_segmentSize;
178  }
179 
185  uint32_t GetSsThreshInSegments () const
186  {
187  return m_ssThresh / m_segmentSize;
188  }
189 };
190 
302 class TcpSocketBase : public TcpSocket
303 {
304 public:
310  static TypeId GetTypeId (void);
311 
316  virtual TypeId GetInstanceTypeId () const;
317 
322  friend class TcpGeneralTest;
323 
327  TcpSocketBase (void);
328 
334  TcpSocketBase (const TcpSocketBase& sock);
335  virtual ~TcpSocketBase (void);
336 
337  // Set associated Node, TcpL4Protocol, RttEstimator to this socket
338 
343  virtual void SetNode (Ptr<Node> node);
344 
349  virtual void SetTcp (Ptr<TcpL4Protocol> tcp);
350 
355  virtual void SetRtt (Ptr<RttEstimator> rtt);
356 
361  void SetMinRto (Time minRto);
362 
367  Time GetMinRto (void) const;
368 
373  void SetClockGranularity (Time clockGranularity);
374 
379  Time GetClockGranularity (void) const;
380 
385  Ptr<TcpTxBuffer> GetTxBuffer (void) const;
386 
391  Ptr<TcpRxBuffer> GetRxBuffer (void) const;
392 
397 
402 
407 
412 
417 
423  void UpdateCwnd (uint32_t oldValue, uint32_t newValue);
424 
430  void UpdateSsThresh (uint32_t oldValue, uint32_t newValue);
431 
439 
445  void UpdateHighTxMark (SequenceNumber32 oldValue, SequenceNumber32 newValue);
446 
452  void UpdateNextTxSequence (SequenceNumber32 oldValue, SequenceNumber32 newValue);
453 
460 
461  // Necessary implementations of null functions from ns3::Socket
462  virtual enum SocketErrno GetErrno (void) const; // returns m_errno
463  virtual enum SocketType GetSocketType (void) const; // returns socket type
464  virtual Ptr<Node> GetNode (void) const; // returns m_node
465  virtual int Bind (void); // Bind a socket by setting up endpoint in TcpL4Protocol
466  virtual int Bind6 (void); // Bind a socket by setting up endpoint in TcpL4Protocol
467  virtual int Bind (const Address &address); // ... endpoint of specific addr or port
468  virtual int Connect (const Address &address); // Setup endpoint and call ProcessAction() to connect
469  virtual int Listen (void); // Verify the socket is in a correct state and call ProcessAction() to listen
470  virtual int Close (void); // Close by app: Kill socket upon tx buffer emptied
471  virtual int ShutdownSend (void); // Assert the m_shutdownSend flag to prevent send to network
472  virtual int ShutdownRecv (void); // Assert the m_shutdownRecv flag to prevent forward to app
473  virtual int Send (Ptr<Packet> p, uint32_t flags); // Call by app to send data to network
474  virtual int SendTo (Ptr<Packet> p, uint32_t flags, const Address &toAddress); // Same as Send(), toAddress is insignificant
475  virtual Ptr<Packet> Recv (uint32_t maxSize, uint32_t flags); // Return a packet to be forwarded to app
476  virtual Ptr<Packet> RecvFrom (uint32_t maxSize, uint32_t flags, Address &fromAddress); // ... and write the remote address at fromAddress
477  virtual uint32_t GetTxAvailable (void) const; // Available Tx buffer size
478  virtual uint32_t GetRxAvailable (void) const; // Available-to-read data size, i.e. value of m_rxAvailable
479  virtual int GetSockName (Address &address) const; // Return local addr:port in address
480  virtual int GetPeerName (Address &address) const;
481  virtual void BindToNetDevice (Ptr<NetDevice> netdevice); // NetDevice with my m_endPoint
482 
490  typedef void (* TcpTxRxTracedCallback)(const Ptr<const Packet> packet, const TcpHeader& header,
491  const Ptr<const TcpSocketBase> socket);
492 
493 protected:
494  // Implementing ns3::TcpSocket -- Attribute get/set
495  // inherited, no need to doc
496 
497  virtual void SetSndBufSize (uint32_t size);
498  virtual uint32_t GetSndBufSize (void) const;
499  virtual void SetRcvBufSize (uint32_t size);
500  virtual uint32_t GetRcvBufSize (void) const;
501  virtual void SetSegSize (uint32_t size);
502  virtual uint32_t GetSegSize (void) const;
503  virtual void SetInitialSSThresh (uint32_t threshold);
504  virtual uint32_t GetInitialSSThresh (void) const;
505  virtual void SetInitialCwnd (uint32_t cwnd);
506  virtual uint32_t GetInitialCwnd (void) const;
507  virtual void SetConnTimeout (Time timeout);
508  virtual Time GetConnTimeout (void) const;
509  virtual void SetSynRetries (uint32_t count);
510  virtual uint32_t GetSynRetries (void) const;
511  virtual void SetDataRetries (uint32_t retries);
512  virtual uint32_t GetDataRetries (void) const;
513  virtual void SetDelAckTimeout (Time timeout);
514  virtual Time GetDelAckTimeout (void) const;
515  virtual void SetDelAckMaxCount (uint32_t count);
516  virtual uint32_t GetDelAckMaxCount (void) const;
517  virtual void SetTcpNoDelay (bool noDelay);
518  virtual bool GetTcpNoDelay (void) const;
519  virtual void SetPersistTimeout (Time timeout);
520  virtual Time GetPersistTimeout (void) const;
521  virtual bool SetAllowBroadcast (bool allowBroadcast);
522  virtual bool GetAllowBroadcast (void) const;
523 
524 
525 
526  // Helper functions: Connection set up
527 
533  int SetupCallback (void);
534 
540  int DoConnect (void);
541 
545  void ConnectionSucceeded (void);
546 
552  int SetupEndpoint (void);
553 
559  int SetupEndpoint6 (void);
560 
573  virtual void CompleteFork (Ptr<Packet> p, const TcpHeader& tcpHeader,
574  const Address& fromAddress, const Address& toAddress);
575 
576 
577 
578  // Helper functions: Transfer operation
579 
588  void ForwardUp (Ptr<Packet> packet, Ipv4Header header, uint16_t port, Ptr<Ipv4Interface> incomingInterface);
589 
598  void ForwardUp6 (Ptr<Packet> packet, Ipv6Header header, uint16_t port, Ptr<Ipv6Interface> incomingInterface);
599 
612  virtual void DoForwardUp (Ptr<Packet> packet, const Address &fromAddress,
613  const Address &toAddress);
614 
624  void ForwardIcmp (Ipv4Address icmpSource, uint8_t icmpTtl, uint8_t icmpType, uint8_t icmpCode, uint32_t icmpInfo);
625 
635  void ForwardIcmp6 (Ipv6Address icmpSource, uint8_t icmpTtl, uint8_t icmpType, uint8_t icmpCode, uint32_t icmpInfo);
636 
645  uint32_t SendPendingData (bool withAck = false);
646 
656  uint32_t SendDataPacket (SequenceNumber32 seq, uint32_t maxSize, bool withAck);
657 
663  virtual void SendEmptyPacket (uint8_t flags);
664 
668  void SendRST (void);
669 
677  bool OutOfRange (SequenceNumber32 head, SequenceNumber32 tail) const;
678 
679 
680  // Helper functions: Connection close
681 
687  int DoClose (void);
688 
692  void CloseAndNotify (void);
693 
700  void Destroy (void);
701 
708  void Destroy6 (void);
709 
713  void DeallocateEndPoint (void);
714 
721  void PeerClose (Ptr<Packet> p, const TcpHeader& tcpHeader);
722 
726  void DoPeerClose (void);
727 
731  void CancelAllTimers (void);
732 
736  void TimeWait (void);
737 
738  // State transition functions
739 
748  void ProcessEstablished (Ptr<Packet> packet, const TcpHeader& tcpHeader); // Received a packet upon ESTABLISHED state
749 
758  void ProcessListen (Ptr<Packet> packet, const TcpHeader& tcpHeader,
759  const Address& fromAddress, const Address& toAddress);
760 
767  void ProcessSynSent (Ptr<Packet> packet, const TcpHeader& tcpHeader);
768 
777  void ProcessSynRcvd (Ptr<Packet> packet, const TcpHeader& tcpHeader,
778  const Address& fromAddress, const Address& toAddress);
779 
786  void ProcessWait (Ptr<Packet> packet, const TcpHeader& tcpHeader);
787 
794  void ProcessClosing (Ptr<Packet> packet, const TcpHeader& tcpHeader);
795 
802  void ProcessLastAck (Ptr<Packet> packet, const TcpHeader& tcpHeader);
803 
804  // Window management
805 
813  virtual uint32_t UnAckDataCount (void) const;
814 
822  virtual uint32_t BytesInFlight (void) const;
823 
828  virtual uint32_t Window (void) const;
829 
834  virtual uint32_t AvailableWindow (void) const;
835 
842  virtual uint16_t AdvertisedWindowSize (bool scale = true) const;
843 
856  void UpdateWindowSize (const TcpHeader& header);
857 
858 
859  // Manage data tx/rx
860 
865  virtual Ptr<TcpSocketBase> Fork (void);
866 
872  virtual void ReceivedAck (Ptr<Packet> packet, const TcpHeader& tcpHeader);
873 
880  virtual void ProcessAck (const SequenceNumber32 &ackNumber, bool scoreboardUpdated);
881 
887  virtual void ReceivedData (Ptr<Packet> packet, const TcpHeader& tcpHeader);
888 
893  virtual void EstimateRtt (const TcpHeader& tcpHeader);
894 
903  virtual void UpdateRttHistory (const SequenceNumber32 &seq, uint32_t sz,
904  bool isRetransmission);
905 
911  virtual void NewAck (SequenceNumber32 const& seq, bool resetRTO);
912 
916  void DupAck ();
917 
921  void LimitedTransmit ();
922 
926  void EnterRecovery ();
927 
931  virtual void ReTxTimeout (void);
932 
936  virtual void DelAckTimeout (void);
937 
941  virtual void LastAckTimeout (void);
942 
946  virtual void PersistTimeout (void);
947 
951  virtual void DoRetransmit (void);
952 
960  void AddOptions (TcpHeader& tcpHeader);
961 
971  void ReadOptions (const TcpHeader &tcpHeader, bool &scoreboardUpdated);
972 
979  bool IsTcpOptionEnabled (uint8_t kind) const;
980 
989  void ProcessOptionWScale (const Ptr<const TcpOption> option);
998  void AddOptionWScale (TcpHeader& header);
999 
1007  uint8_t CalculateWScale () const;
1008 
1018 
1025  bool ProcessOptionSack (const Ptr<const TcpOption> option);
1026 
1032  void AddOptionSackPermitted (TcpHeader &header);
1033 
1039  void AddOptionSack (TcpHeader& header);
1040 
1051  void ProcessOptionTimestamp (const Ptr<const TcpOption> option,
1052  const SequenceNumber32 &seq);
1061  void AddOptionTimestamp (TcpHeader& header);
1062 
1072  static uint32_t SafeSubtraction (uint32_t a, uint32_t b);
1073 
1074 protected:
1075  // Counters and events
1081  uint32_t m_dupAckCount;
1082  uint32_t m_delAckCount;
1083  uint32_t m_delAckMaxCount;
1084  bool m_noDelay;
1085  uint32_t m_synCount;
1086  uint32_t m_synRetries;
1087  uint32_t m_dataRetrCount;
1088  uint32_t m_dataRetries;
1096  RttHistory_t m_history;
1097 
1098  // Connections to other layers of TCP/IP
1105 
1107 
1108  // Rx and Tx buffer management
1111 
1112  // State-related attributes
1114  mutable enum SocketErrno m_errno;
1120  double m_msl;
1121 
1122  // Window management
1123  uint16_t m_maxWinSize;
1131 
1132  // Options
1135  uint8_t m_rcvWindShift;
1136  uint8_t m_sndWindShift;
1137 
1140 
1142 
1143  // Fast Retransmit and Recovery
1145  uint32_t m_retxThresh;
1147 
1148  // Transmission Control Block
1151 
1152  // Guesses over the other connection end
1154 
1155  // The following two traces pass a packet with a TCP header
1158 
1159  TracedCallback<Ptr<const Packet>, const TcpHeader&,
1161 };
1162 
1171  const TcpSocketState::TcpCongState_t newValue);
1172 
1173 } // namespace ns3
1174 
1175 #endif /* TCP_SOCKET_BASE_H */
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.
uint32_t m_rcvTimestampValue
Receiver Timestamp value.
void PeerClose(Ptr< Packet > p, const TcpHeader &tcpHeader)
Received a FIN from peer, notify rx buffer.
TracedValue< uint32_t > m_bytesInFlight
Bytes in flight.
bool m_limitedTx
perform limited transmit
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.
Definition: nstime.h:102
Packet header for IPv6.
Definition: ipv6-header.h:34
virtual int GetSockName(Address &address) const
Get socket address.
void(* TcpCongStatesTracedValueCallback)(const TcpCongState_t oldValue, const TcpCongState_t newValue)
TracedValue Callback signature for TcpCongState_t.
virtual uint32_t Window(void) const
Return the max possible number of unacked bytes.
void ProcessWait(Ptr< Packet > packet, const TcpHeader &tcpHeader)
Received a packet upon CLOSE_WAIT, FIN_WAIT_1, FIN_WAIT_2.
Normal state, no dubious events.
uint32_t m_dataRetries
Number of data retransmission attempts.
SocketErrno
Enumeration of the possible errors returned by a socket.
Definition: socket.h:82
virtual void SetInitialSSThresh(uint32_t threshold)
Set the initial Slow Start Threshold.
Callback template class.
Definition: callback.h:1176
bool m_noDelay
Set to true to disable Nagle's algorithm.
virtual uint32_t GetSegSize(void) const
Get the segment size.
CWND was reduced, we are fast-retransmitting.
In all the respects it is "Open", but requires a bit more attention.
Time GetClockGranularity(void) const
Get the Clock Granularity (used in RTO calcs).
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.
(abstract) base class of all TcpSockets
Definition: tcp-socket.h:47
Ipv4EndPoint * m_endPoint
the IPv4 endpoint
virtual uint32_t BytesInFlight(void) const
Return total bytes in flight.
virtual ~TcpSocketBase(void)
uint32_t m_dataRetrCount
Count of remaining data retransmission attempts.
TracedValue< Time > m_lastRtt
Last RTT sample collected.
uint32_t m_synRetries
Number of connection attempts.
TracedValue< SequenceNumber32 > m_highRxAckMark
Highest ack received.
uint32_t m_initialSsThresh
Initial Slow Start Threshold value.
virtual int ShutdownRecv(void)
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.
Definition: socket.cc:175
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.
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.
static TypeId GetTypeId(void)
Get the type ID.
static const char *const TcpCongStateName[TcpSocketState::CA_LAST_STATE]
Literal names of TCP states for use in log messages.
void ProcessOptionTimestamp(const Ptr< const TcpOption > option, const SequenceNumber32 &seq)
Process the timestamp option from other side.
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.
Ptr< TcpSocketState > m_tcb
Congestion control informations.
bool m_winScalingEnabled
Window Scale option enabled (RFC 7323)
bool m_timestampEnabled
Timestamp option enabled.
uint16_t m_maxWinSize
Maximum window size to advertise.
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.
Time m_cnTimeout
Timeout for connection retry.
uint32_t m_initialCWnd
Initial cWnd value.
Data structure that records the congestion state of a connection.
SocketType
Enumeration of the possible socket types.
Definition: socket.h:104
EventId m_lastAckEvent
Last ACK timeout event.
void ConnectionSucceeded(void)
Schedule-friendly wrapper for Socket::NotifyConnectionSucceeded()
virtual void ReceivedAck(Ptr< Packet > packet, const TcpHeader &tcpHeader)
Received an ACK packet.
void LimitedTransmit()
Limited transmit algorithm.
ns3::Time timeout
void(* TcpTxRxTracedCallback)(const Ptr< const Packet > packet, const TcpHeader &header, const Ptr< const TcpSocketBase > socket)
TracedCallback signature for tcp packet transmission or reception events.
virtual uint32_t GetDataRetries(void) const
Get the number of data transmission retries before giving up.
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.
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.
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.
void DupAck()
Dupack management.
uint16_t port
Definition: dsdv-manet.cc:44
a polymophic address class
Definition: address.h:90
virtual void ProcessAck(const SequenceNumber32 &ackNumber, bool scoreboardUpdated)
Process a received ack.
void SetMinRto(Time minRto)
Sets the Minimum RTO.
virtual uint32_t GetRcvBufSize(void) const
Get the receive buffer size.
uint32_t m_delAckCount
Delayed ACK counter.
virtual bool GetTcpNoDelay(void) const
Check if Nagle's algorithm is enabled or not.
SequenceNumber32 m_recover
Previous highest Tx seqnum for fast recovery.
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 int GetPeerName(Address &address) const
Get the peer address of a connected socket.
void(* TcpCongStatesTracedValueCallback)(const TcpSocketState::TcpCongState_t oldValue, const TcpSocketState::TcpCongState_t newValue)
TracedValue Callback signature for TcpCongState_t.
Packet header for IPv4.
Definition: ipv4-header.h:33
virtual void SetDataRetries(uint32_t retries)
Set the number of data transmission retries before giving up.
Ptr< TcpCongestionOps > m_congestionControl
Congestion control.
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.
virtual void EstimateRtt(const TcpHeader &tcpHeader)
Take into account the packet for RTT estimation.
cWnd was reduced due to some Congestion Notification event.
Time time
Time this one was sent.
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.
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.
virtual uint32_t GetSndBufSize(void) const
Get the send buffer size.
virtual enum SocketType GetSocketType(void) const
virtual uint16_t AdvertisedWindowSize(bool scale=true) const
The amount of Rx window announced to the peer.
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.
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.
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.
virtual void SetTcpNoDelay(bool noDelay)
Enable/Disable Nagle's algorithm.
RttHistory(SequenceNumber32 s, uint32_t c, Time t)
Constructor - builds an RttHistory with the given parameters.
void UpdateCongState(TcpSocketState::TcpCongState_t oldValue, TcpSocketState::TcpCongState_t newValue)
Callback function to hook to TcpSocketState congestion state.
std::deque< RttHistory > RttHistory_t
Container for RttHistory objects.
SequenceNumber32 m_lastAckedSeq
Last sequence ACKed.
enum SocketErrno m_errno
Socket error code.
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.
uint32_t GetCwndInSegments() const
Get cwnd in segments rather than bytes.
static uint32_t SafeSubtraction(uint32_t a, uint32_t b)
Performs a safe subtraction between a and b (a-b)
Ptr< TcpRxBuffer > m_rxBuffer
Rx buffer (reordering buffer)
int SetupCallback(void)
Common part of the two Bind(), i.e.
virtual void SetTcp(Ptr< TcpL4Protocol > tcp)
Set the associated TCP L4 protocol.
bool m_isFirstPartialAck
First partial ACK during RECOVERY.
Ptr< TcpL4Protocol > m_tcp
the associated TCP L4 protocol
void ReadOptions(const TcpHeader &tcpHeader, bool &scoreboardUpdated)
Read TCP options begore Ack processing.
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.
virtual int ShutdownSend(void)
uint32_t m_retxThresh
Fast Retransmit threshold.
TcpCongState_t
Definition of the Congestion state machine.
virtual void SetDelAckMaxCount(uint32_t count)
Set the number of packet to fire an ACK before delay timeout.
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.
void AddOptions(TcpHeader &tcpHeader)
Add options to TcpHeader.
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.
Used only in debug messages.
Ptr< Node > m_node
the associated node
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.
Header for the Transmission Control Protocol.
Definition: tcp-header.h:44
virtual void SetNode(Ptr< Node > node)
Set the associated node.
void AddOptionSackPermitted(TcpHeader &header)
Add the SACK PERMITTED option to the header.
virtual uint32_t UnAckDataCount(void) const
Return count of number of unacked bytes.
void Destroy(void)
Kill this socket by zeroing its attributes (IPv4)
static TypeId GetTypeId(void)
Get the type ID.
virtual uint32_t GetInitialSSThresh(void) const
Get the initial Slow Start Threshold.
virtual int Connect(const Address &address)
Initiate a connection to a remote host.
virtual int Close(void)
Close a socket.
virtual void SetRtt(Ptr< RttEstimator > rtt)
Set the associated RTT estimator.
double m_msl
Max segment lifetime.
virtual void ReTxTimeout(void)
An RTO event happened.
Time m_minRto
minimum value of the Retransmit timeout
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.
TracedValue< uint32_t > m_cWnd
Congestion window.
virtual Ptr< Packet > RecvFrom(uint32_t maxSize, uint32_t flags, Address &fromAddress)
Read a single packet from the socket and retrieve the sender address.
bool IsTcpOptionEnabled(uint8_t kind) const
Return true if the specified option is enabled.
virtual void SetSndBufSize(uint32_t size)
Set the send buffer size.
virtual TypeId GetInstanceTypeId() const
Get the instance TypeId.
virtual void SetDelAckTimeout(Time timeout)
Set the time to delay an ACK.
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.
Definition: ipv6-address.h:48
Ipv4 addresses are stored in host order in this class.
Definition: ipv4-address.h:40
Time GetMinRto(void) const
Get the Minimum RTO.
void ProcessEstablished(Ptr< Packet > packet, const TcpHeader &tcpHeader)
Received a packet upon ESTABLISHED state.
General infrastructure for TCP testing.
void ProcessOptionWScale(const Ptr< const TcpOption > option)
Read and parse the Window scale option.
bool m_connected
Connection established.
uint32_t GetSsThreshInSegments() const
Get slow start thresh in segments rather than bytes.
TracedValue< Time > m_rto
Retransmit timeout.
An identifier for simulation events.
Definition: event-id.h:53
Helper class to store RTT measurements.
uint8_t m_rcvWindShift
Window shift to apply to outgoing segments.
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.
bool ProcessOptionSack(const Ptr< const TcpOption > option)
Read the SACK option.
CWND was reduced due to RTO timeout or SACK reneging.
RttHistory_t m_history
List of sent packet.
A representation of an IPv6 endpoint/connection.
bool m_sackEnabled
RFC SACK option enabled.
virtual uint32_t GetInitialCwnd(void) const
Get the initial Congestion Window.
uint32_t m_timestampToEcho
Timestamp to echo.
uint32_t m_synCount
Count of remaining connection retries.
void AddOptionSack(TcpHeader &header)
Add the SACK option to the header.
TracedValue< SequenceNumber32 > m_highRxMark
Highest seqno received.
virtual enum SocketErrno GetErrno(void) const
Get last error number.
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.
void UpdateSsThresh(uint32_t oldValue, uint32_t newValue)
Callback function to hook to TcpSocketState slow start threshold.
virtual void SetSegSize(uint32_t size)
Set the segment size.
void ProcessClosing(Ptr< Packet > packet, const TcpHeader &tcpHeader)
Received a packet upon CLOSING.
virtual void ReceivedData(Ptr< Packet > packet, const TcpHeader &tcpHeader)
Recv of a data, put into buffer, call L7 to get it if necessary.
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.
A base class which provides memory management and object aggregation.
Definition: object.h:87
tuple address
Definition: first.py:37
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.
bool m_shutdownRecv
Receive no longer allowed.
virtual Time GetDelAckTimeout(void) const
Get the time to delay an ACK.
TracedCallback< uint32_t, uint32_t > m_ssThTrace
Callback pointer for ssTh trace chaining.
EventId m_sendPendingDataEvent
micro-delay event to send pending data
void EnterRecovery()
Enter the CA_RECOVERY, and retransmit the head.
uint32_t SendPendingData(bool withAck=false)
Send as much pending data as possible according to the Tx window.
virtual void DelAckTimeout(void)
Action upon delay ACK timeout, i.e.
virtual void LastAckTimeout(void)
Timeout at LAST_ACK, close the connection.
uint32_t m_bytesAckedNotProcessed
Bytes acked, but not processed.
virtual int Bind6(void)
Allocate a local IPv6 endpoint for this socket.
TracedCallback< SequenceNumber32, SequenceNumber32 > m_nextTxSequenceTrace
Callback pointer for next tx sequence chaining.
EventId m_delAckEvent
Delayed ACK timeout event.
a unique identifier for an interface.
Definition: type-id.h:58
uint8_t m_sndWindShift
Window shift to apply to incoming segments.
bool m_shutdownSend
Send no longer allowed.
virtual Ptr< TcpSocketBase > Fork(void)
Call CopyObject<> to clone me.
int SetupEndpoint6(void)
Configure the endpoint v6 to a local address.
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}().
virtual void DoRetransmit(void)
Retransmit the oldest packet.
bool m_closeOnEmpty
Close socket upon tx buffer emptied.
TracedCallback< Ptr< const Packet >, const TcpHeader &, Ptr< const TcpSocketBase > > m_txTrace
Trace of transmitted packets.
void AddOptionWScale(TcpHeader &header)
Add the window scale option to the header.
A representation of an internet endpoint/connection.
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.
int SetupEndpoint(void)
Configure the endpoint to a local address.
virtual Time GetConnTimeout(void) const
Get the connection timeout.
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.
virtual uint32_t AvailableWindow(void) const
Return unfilled portion of window.
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.