A Discrete-Event Network Simulator
API
tcp-general-test.h
Go to the documentation of this file.
1 /* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2015 Natale Patriciello <natale.patriciello@gmail.com>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2 as
7  * published by the Free Software Foundation;
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17  *
18  */
19 #ifndef TCPGENERALTEST_H
20 #define TCPGENERALTEST_H
21 
22 #include "ns3/simple-net-device.h"
23 #include "ns3/error-model.h"
24 #include "ns3/tcp-socket-base.h"
25 #include "ns3/test.h"
26 
27 namespace ns3 {
28 
46 {
47 public:
48  static TypeId GetTypeId (void);
49 
51  {
52  }
53 
55  {
56  m_rcvAckCb = other.m_rcvAckCb;
59  m_forkCb = other.m_forkCb;
60  }
61 
67  uint32_t, bool> UpdateRttCallback;
68 
75  void SetRcvAckCb (AckManagementCb cb);
76 
83  void SetProcessedAckCb (AckManagementCb cb);
84 
90  void SetRetransmitCb (RetrCb cb);
91 
96  void SetForkCb (Callback<void, Ptr<TcpSocketMsgBase> > cb);
97 
103  void SetUpdateRttHistoryCb (UpdateRttCallback cb);
104 
105 protected:
106  virtual void ReceivedAck (Ptr<Packet> packet, const TcpHeader& tcpHeader);
107  virtual void Retransmit (void);
108  virtual Ptr<TcpSocketBase> Fork (void);
109  virtual void CompleteFork (Ptr<Packet> p, const TcpHeader& tcpHeader,
110  const Address& fromAddress, const Address& toAddress);
111  virtual void UpdateRttHistory (const SequenceNumber32 &seq, uint32_t sz,
112  bool isRetransmission);
113 
114 private:
115  AckManagementCb m_rcvAckCb;
116  AckManagementCb m_processedAckCb;
119  UpdateRttCallback m_updateRttCb;
120 };
121 
122 
138 {
139 public:
140  static TypeId GetTypeId (void);
141 
143  : TcpSocketMsgBase (),
144  m_bytesToAck (125),
146  m_lastAckedSeq (1)
147  {
148  }
149 
151  : TcpSocketMsgBase (other),
152  m_bytesToAck (other.m_bytesToAck),
155  {
156  }
157 
158  void SetBytesToAck (uint32_t bytes)
159  {
160  m_bytesToAck = bytes;
161  }
162 
163 protected:
164  virtual void SendEmptyPacket (uint8_t flags);
165  Ptr<TcpSocketBase> Fork (void);
166 
167  uint32_t m_bytesToAck;
170 };
171 
210 class TcpGeneralTest : public TestCase
211 {
212 public:
221  TcpGeneralTest (const std::string &desc);
222  ~TcpGeneralTest ();
223 
229  {
232  };
233 
234 protected:
241 
248 
255 
262 
269 
277  virtual Ptr<TcpSocketMsgBase> CreateSocket (Ptr<Node> node, TypeId socketType,
278  TypeId congControl);
279 
285  {
286  return m_senderSocket;
287  }
288 
294  {
295  return m_receiverSocket;
296  }
297 
314  virtual void DoRun (void);
315 
319  virtual void ConfigureEnvironment (void);
320 
324  virtual void ConfigureProperties (void);
325 
329  virtual void DoTeardown (void);
330 
334  void DoConnect ();
335 
342  virtual void ReceivePacket (Ptr<Socket> socket);
343 
352  void SendPacket (Ptr<Socket> socket, uint32_t pktSize,
353  uint32_t pktCount, Time pktInterval);
354 
362  uint32_t GetSegSize (SocketWho who);
363 
372 
378  uint32_t GetReTxThreshold (SocketWho who);
379 
384  uint32_t GetInitialSsThresh (SocketWho who);
385 
390  uint32_t GetInitialCwnd (SocketWho who);
391 
397  uint32_t GetDupAckCount (SocketWho who);
398 
404  uint32_t GetDelAckCount (SocketWho who);
405 
412 
419  Time GetRto (SocketWho who);
420 
427  Time GetMinRto (SocketWho who);
428 
436 
444 
452 
460 
468 
475  uint32_t GetRWnd (SocketWho who);
476 
484 
492 
499  void SetRcvBufSize (SocketWho who, uint32_t size);
500 
507  void SetSegmentSize (SocketWho who, uint32_t segmentSize);
508 
515  void SetInitialCwnd (SocketWho who, uint32_t initialCwnd);
516 
523  void SetInitialSsThresh (SocketWho who, uint32_t initialSsThresh);
524 
532  void SetAppPktSize (uint32_t pktSize) { m_pktSize = pktSize; }
533 
541  void SetAppPktCount (uint32_t pktCount) { m_pktCount = pktCount; }
542 
548  void SetAppPktInterval (Time pktInterval) { m_interPacketInterval = pktInterval; }
549 
555  void SetPropagationDelay (Time propDelay) { m_propagationDelay = propDelay; }
556 
563 
569  void SetCongestionControl (TypeId congControl) { m_congControlTypeId = congControl; }
570 
576  void SetMTU (uint32_t mtu) { m_mtu = mtu; }
577 
583  virtual void CongStateTrace (const TcpSocketState::TcpCongState_t oldValue,
584  const TcpSocketState::TcpCongState_t newValue)
585  {
586  }
587 
594  virtual void CWndTrace (uint32_t oldValue, uint32_t newValue)
595  {
596  }
597 
606  virtual void RttTrace (Time oldTime, Time newTime)
607  {
608  }
609 
619  virtual void SsThreshTrace (uint32_t oldValue, uint32_t newValue)
620  {
621  }
622 
631  virtual void BytesInFlightTrace (uint32_t oldValue, uint32_t newValue)
632  {
633  }
634 
639  virtual void NormalClose (SocketWho who)
640  {
641  }
642 
648  virtual void ErrorClose (SocketWho who)
649  {
651  }
652 
657  virtual void QueueDrop (SocketWho who)
658  {
659  }
660 
665  virtual void PhyDrop (SocketWho who)
666  {
667  }
668 
678  virtual void RcvAck (const Ptr<const TcpSocketState> tcb,
679  const TcpHeader& h, SocketWho who)
680  {
681  }
682 
692  virtual void ProcessedAck (const Ptr<const TcpSocketState> tcb,
693  const TcpHeader& h, SocketWho who)
694  {
695  }
696 
704  virtual void Tx (const Ptr<const Packet> p, const TcpHeader&h, SocketWho who);
705 
713  virtual void Rx (const Ptr<const Packet> p, const TcpHeader&h, SocketWho who);
714 
721  virtual void RTOExpired (const Ptr<const TcpSocketState> tcb, SocketWho who)
722  {
723  }
724 
732  virtual void UpdatedRttHistory (const SequenceNumber32 & seq, uint32_t sz,
733  bool isRetransmission, SocketWho who)
734  {
735  }
736 
743  virtual void DataSent (uint32_t size, SocketWho who)
744  {
745  }
746 
751  virtual void FinalChecks ()
752  {
753  }
754 
760  {
761  return m_propagationDelay;
762  }
763 
769  {
770  return m_startTime;
771  }
772 
777  uint32_t GetMtu () const
778  {
779  return m_mtu;
780  }
781 
786  uint32_t GetPktSize () const
787  {
788  return m_pktSize;
789  }
790 
795  uint32_t GetPktCount () const
796  {
797  return m_pktCount;
798  }
799 
806  {
807  return m_interPacketInterval;
808  }
809 
811 
812 private:
813  // Member variables, accessible through getters
814  // giving write access to subclass can be dangerous
816 
818  uint32_t m_mtu;
819 
820  uint32_t m_pktSize;
821  uint32_t m_pktCount;
823  // down to tcp socket
824 
827 
828 private:
829  // De-multiplexing callbacks.
830  void NormalCloseCb (Ptr<Socket> socket);
831  void ErrorCloseCb (Ptr<Socket> socket);
832  void QueueDropCb (std::string context, Ptr<const Packet> p);
833  void PhyDropCb (std::string context, Ptr<const Packet> p);
834  void RcvAckCb (Ptr<const Packet> p, const TcpHeader& h,
836  void ProcessedAckCb (Ptr<const Packet> p, const TcpHeader& h,
838  void TxPacketCb (const Ptr<const Packet> p, const TcpHeader& h,
839  const Ptr<const TcpSocketBase> tcp);
840  void RxPacketCb (const Ptr<const Packet> p, const TcpHeader& h,
841  const Ptr<const TcpSocketBase> tcp);
842  void RtoExpiredCb (const Ptr<const TcpSocketState> tcb,
843  const Ptr<const TcpSocketBase> tcp);
845  uint32_t sz, bool isRetransmission);
846  void DataSentCb (Ptr<Socket> socket, uint32_t size);
847  void ForkCb (Ptr<TcpSocketMsgBase> tcp);
848  void HandleAccept (Ptr<Socket> socket, const Address& from);
849 
851 };
852 
859 static inline TcpSocketState::TcpCongState_t
861 {
862  return tcb->m_congState.Get ();
863 }
864 
865 } // namespace ns3
866 
867 #endif // TCPGENERALTEST_H
868 
virtual void ProcessedAck(const Ptr< const TcpSocketState > tcb, const TcpHeader &h, SocketWho who)
Processed ack.
Time GetMinRto(SocketWho who)
Get the minimun RTO attribute.
Simulation virtual time values and global simulation resolution.
Definition: nstime.h:102
virtual void DoTeardown(void)
Teardown the TCP test.
Time GetPersistentTimeout(SocketWho who)
Get the persistent timeout of the selected socket.
an Inet address class
Smart pointer class similar to boost::intrusive_ptr.
Definition: ptr.h:73
virtual void SendEmptyPacket(uint8_t flags)
Send empty packet, copied/pasted from TcpSocketBase.
uint32_t GetPktSize() const
Get the application packet size.
Ptr< TcpSocketMsgBase > m_senderSocket
Pointer to sender socket.
void PhyDropCb(std::string context, Ptr< const Packet > p)
Time m_propagationDelay
Propagation delay of the channel.
uint32_t GetDelAckCount(SocketWho who)
Get the number of delayed ack (if present)
Callback template class.
Definition: callback.h:1164
void DataSentCb(Ptr< Socket > socket, uint32_t size)
uint32_t GetSegSize(SocketWho who)
Get the segment size of the node specified.
Class for inserting callbacks special points of the flow of TCP sockets.
TcpGeneralTest(const std::string &desc)
TcpGeneralTest constructor.
AckManagementCb m_rcvAckCb
Ptr< TcpSocketMsgBase > GetSenderSocket()
Get the pointer to a previously created sender socket.
void SetForkCb(Callback< void, Ptr< TcpSocketMsgBase > > cb)
Set the callback invoked after the forking.
void SetCongestionControl(TypeId congControl)
Congestion control of the sender socket.
virtual void DoRun(void)
Execute the tcp test.
void NormalCloseCb(Ptr< Socket > socket)
virtual void PhyDrop(SocketWho who)
Link drop.
virtual void DataSent(uint32_t size, SocketWho who)
Notifying application for sent data.
void QueueDropCb(std::string context, Ptr< const Packet > p)
virtual void ErrorClose(SocketWho who)
Socket closed with an error.
Callback< void, Ptr< const TcpSocketState >, Ptr< const TcpSocketBase > > RetrCb
void SetBytesToAck(uint32_t bytes)
virtual Ptr< TcpSocketMsgBase > CreateReceiverSocket(Ptr< Node > node)
Create and install the socket to install on the receiver.
virtual void FinalChecks()
Performs the (eventual) final checks through test asserts.
void DoConnect()
Scheduled at 0.0, SENDER starts the connection to RECEIVER.
void SendPacket(Ptr< Socket > socket, uint32_t pktSize, uint32_t pktCount, Time pktInterval)
Send packets to other endpoint.
void SetAppPktSize(uint32_t pktSize)
Set app packet size.
virtual void CompleteFork(Ptr< Packet > p, const TcpHeader &tcpHeader, const Address &fromAddress, const Address &toAddress)
Complete a connection by forking the socket.
void SetTransmitStart(Time startTime)
Set the initial time at which the application sends the first data packet.
virtual void Rx(const Ptr< const Packet > p, const TcpHeader &h, SocketWho who)
Packet received from IP layer.
virtual void SsThreshTrace(uint32_t oldValue, uint32_t newValue)
Slow start threshold changes.
void SetRcvAckCb(AckManagementCb cb)
Set the callback invoked when an ACK is received (at the beginning of the processing) ...
encapsulates test code
Definition: test.h:1147
static TcpSocketState::TcpCongState_t GetCongStateFrom(Ptr< const TcpSocketState > tcb)
Convenience function to retrieve the ACK state from a TCB.
T Get(void) const
Get the underlying value.
Definition: traced-value.h:217
virtual void Tx(const Ptr< const Packet > p, const TcpHeader &h, SocketWho who)
Packet transmitted down to IP layer.
virtual Ptr< ErrorModel > CreateSenderErrorModel()
Create and return the error model to install in the sender node.
a polymophic address class
Definition: address.h:90
uint32_t GetRWnd(SocketWho who)
Get the rWnd of the selected socket.
virtual void ReceivePacket(Ptr< Socket > socket)
Packet received.
Time GetDelAckTimeout(SocketWho who)
Get the timeout of delayed ack (if present)
SequenceNumber32 GetHighestTxMark(SocketWho who)
Get the highest tx mark of the node specified.
void ErrorCloseCb(Ptr< Socket > socket)
uint32_t GetDupAckCount(SocketWho who)
Get the number of dupack received.
TcpSocketMsgBase(const TcpSocketMsgBase &other)
virtual void Retransmit(void)
Halving cwnd and call DoRetransmit()
void SetMTU(uint32_t mtu)
MTU of the bottleneck link.
virtual void ConfigureProperties(void)
Change the configuration of the socket properties.
virtual Ptr< TcpSocketBase > Fork(void)
Call CopyObject<> to clone me.
void SetSegmentSize(SocketWho who, uint32_t segmentSize)
Forcefully set the segment size.
double startTime
uint32_t m_pktCount
Count of the application packet.
Time m_interPacketInterval
Time between sending application packet.
void SetRetransmitCb(RetrCb cb)
Set the callback invoked after the processing of a retransmit timeout.
void SetInitialCwnd(SocketWho who, uint32_t initialCwnd)
Forcefully set the initial cwnd.
Time GetConnTimeout(SocketWho who)
Get the retransmission time for the SYN segments.
A base class for implementation of a stream socket using TCP.
void ProcessedAckCb(Ptr< const Packet > p, const TcpHeader &h, Ptr< const TcpSocketBase > tcp)
virtual Ptr< TcpSocketMsgBase > CreateSocket(Ptr< Node > node, TypeId socketType, TypeId congControl)
Create a socket.
virtual void RcvAck(const Ptr< const TcpSocketState > tcb, const TcpHeader &h, SocketWho who)
Received ack.
TcpCongState_t
Definition of the Congestion state machine.
void RxPacketCb(const Ptr< const Packet > p, const TcpHeader &h, const Ptr< const TcpSocketBase > tcp)
uint32_t GetInitialCwnd(SocketWho who)
Get the initial congestion window.
AckManagementCb m_processedAckCb
uint32_t GetMtu() const
Get the MTU of the environment.
Ptr< TcpSocketMsgBase > m_receiverSocket
Pointer to receiver socket.
Time GetRto(SocketWho who)
Get the retransmission time.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
virtual void QueueDrop(SocketWho who)
Drop on the queue.
TracedValue< TcpCongState_t > m_congState
State in the Congestion state machine.
Header for the Transmission Control Protocol.
Definition: tcp-header.h:44
void SetAppPktCount(uint32_t pktCount)
Set app packet count.
uint32_t GetInitialSsThresh(SocketWho who)
Get the initial slow start threshold.
void SetAppPktInterval(Time pktInterval)
Interval between app-generated packet.
virtual Ptr< TcpSocketMsgBase > CreateSenderSocket(Ptr< Node > node)
Create and install the socket to install on the sender.
TcpSocketSmallAcks(const TcpSocketSmallAcks &other)
uint32_t GetReTxThreshold(SocketWho who)
Get the retransmission threshold.
static TypeId GetTypeId(void)
void ForkCb(Ptr< TcpSocketMsgBase > tcp)
Time GetClockGranularity(SocketWho who)
Get the clock granularity attribute.
virtual void CongStateTrace(const TcpSocketState::TcpCongState_t oldValue, const TcpSocketState::TcpCongState_t newValue)
State on Ack state machine changes.
void SetInitialSsThresh(SocketWho who, uint32_t initialSsThresh)
Forcefully set the initial ssth.
Time GetPktInterval() const
Get the interval to wait for each packet sent down from application to TCP.
void UpdateRttHistoryCb(Ptr< const TcpSocketBase > tcp, const SequenceNumber32 &seq, uint32_t sz, bool isRetransmission)
SocketWho
Used as parameter of methods, specifies on what node the caller is interested (e.g.
UpdateRttCallback m_updateRttCb
virtual void NormalClose(SocketWho who)
Socket closed normally.
Ptr< RttEstimator > GetRttEstimator(SocketWho who)
Get the Rtt estimator of the socket.
General infrastructure for TCP testing.
An identifier for simulation events.
Definition: event-id.h:53
virtual void ConfigureEnvironment(void)
Change the configuration of the evironment.
void SetUpdateRttHistoryCb(UpdateRttCallback cb)
Set the callback invoked when we update rtt history.
Time GetStartTime() const
Get the data start time.
static TypeId GetTypeId(void)
Ptr< TcpSocketMsgBase > GetReceiverSocket()
Get the pointer to a previously created receiver socket.
virtual Ptr< SimpleChannel > CreateChannel()
Create and return the channel installed between the two socket.
void TxPacketCb(const Ptr< const Packet > p, const TcpHeader &h, const Ptr< const TcpSocketBase > tcp)
Ptr< TcpSocketState > GetTcb(SocketWho who)
Get the TCB from selected socket.
uint32_t GetPktCount() const
Get the number of application packets.
virtual void BytesInFlightTrace(uint32_t oldValue, uint32_t newValue)
Bytes in flight changes.
void RtoExpiredCb(const Ptr< const TcpSocketState > tcb, const Ptr< const TcpSocketBase > tcp)
uint32_t m_mtu
MTU of the environment.
Callback< void, Ptr< TcpSocketMsgBase > > m_forkCb
virtual void UpdatedRttHistory(const SequenceNumber32 &seq, uint32_t sz, bool isRetransmission, SocketWho who)
Updated the Rtt history.
Time GetPropagationDelay() const
Get the channel Propagation Delay.
A TCP socket which sends ACKs smaller than the segment received.
virtual void RttTrace(Time oldTime, Time newTime)
Rtt changes.
EventId GetPersistentEvent(SocketWho who)
Get the persistent event of the selected socket.
virtual Ptr< ErrorModel > CreateReceiverErrorModel()
Create and return the error model to install in the receiver node.
virtual void ReceivedAck(Ptr< Packet > packet, const TcpHeader &tcpHeader)
Received an ACK packet.
void RcvAckCb(Ptr< const Packet > p, const TcpHeader &h, Ptr< const TcpSocketBase > tcp)
SequenceNumber32 m_lastAckedSeq
InetSocketAddress m_remoteAddr
void SetRcvBufSize(SocketWho who, uint32_t size)
Forcefully set a defined size for rx buffer.
TcpStates_t
Names of the 11 TCP states.
Definition: tcp-socket.h:64
virtual void RTOExpired(const Ptr< const TcpSocketState > tcb, SocketWho who)
Rto has expired.
Ptr< TcpSocketBase > Fork(void)
Call CopyObject<> to clone me.
void SetProcessedAckCb(AckManagementCb cb)
Set the callback invoked when an ACK is received and processed (at the end of the processing) ...
virtual void UpdateRttHistory(const SequenceNumber32 &seq, uint32_t sz, bool isRetransmission)
Update the RTT history, when we send TCP segments.
Callback< void, Ptr< const Packet >, const TcpHeader &, Ptr< const TcpSocketBase > > AckManagementCb
a unique identifier for an interface.
Definition: type-id.h:58
virtual void CWndTrace(uint32_t oldValue, uint32_t newValue)
Congestion window changes.
uint32_t m_pktSize
Size of the application packet.
TcpSocket::TcpStates_t GetTcpState(SocketWho who)
Get the state of the TCP state machine.
Time m_startTime
Data transmission time.
void HandleAccept(Ptr< Socket > socket, const Address &from)
void SetPropagationDelay(Time propDelay)
Propagation delay of the bottleneck link.
TypeId m_congControlTypeId
Congestion control.
Callback< void, Ptr< const TcpSocketBase >, const SequenceNumber32 &, uint32_t, bool > UpdateRttCallback