23 #include "ns3/abort.h"    25 #include "ns3/pcap-file.h"    26 #include "ns3/config.h"    27 #include "ns3/string.h"    28 #include "ns3/uinteger.h"    29 #include "ns3/boolean.h"    30 #include "ns3/data-rate.h"    31 #include "ns3/inet-socket-address.h"    32 #include "ns3/point-to-point-helper.h"    33 #include "ns3/internet-stack-helper.h"    34 #include "ns3/traffic-control-helper.h"    35 #include "ns3/ipv4-global-routing-helper.h"    36 #include "ns3/ipv4-address-helper.h"    37 #include "ns3/packet-sink-helper.h"    38 #include "ns3/tcp-socket-factory.h"    39 #include "ns3/node-container.h"    40 #include "ns3/simulator.h"    41 #include "ns3/error-model.h"    42 #include "ns3/pointer.h"    44 #include "ns3/tcp-header.h"    80   virtual void DoSetup (
void);
    81   virtual void DoRun (
void);
    82   virtual void DoTeardown (
void);
   104   : 
TestCase (
"Check the operation of the TCP state machine for several cases"),
   106     m_totalTxBytes (20000),
   107     m_currentTxBytes (0),
   116   : 
TestCase (
"Check the operation of the TCP state machine for several cases"),
   117     m_testCase (testCase),
   118     m_totalTxBytes (20000),
   119     m_currentTxBytes (0),
   134   std::ostringstream oss;
   135   oss << 
"ns3tcp-state" << 
m_testCase << 
"-response-vectors.pcap";
   148                            "Wrong response vectors in directory: opening " <<
   196                         uint32_t (tMicroSeconds % 1000000),
   206       uint32_t tsSec, tsUsec, inclLen, origLen, readLen;
   207       m_pcapFile.
Read (expectedBuffer, 
sizeof(expectedBuffer), tsSec, tsUsec, inclLen, origLen, readLen);
   211       uint8_t *actual = 
new uint8_t[readLen];
   212       received->
CopyData (actual, readLen);
   214       int result = memcmp (actual, expectedBuffer, readLen);
   216       TcpHeader expectedHeader, receivedHeader;
   217       Ptr<Packet> expected = Create<Packet> (expectedBuffer, readLen);
   222       NS_LOG_DEBUG (
"Expected " << expectedHeader << 
" received: " << receivedHeader);
   245       uint32_t toWrite = 1040 - dataOffset;
   248       toWrite = 
std::min (toWrite, txAvail);
   255           std::clog << 
"Submitting "   256                     << toWrite << 
" bytes to TCP socket" << std::endl;
   258       int amountSent = localSocket->
Send (0, toWrite, 0);
   266           std::clog << 
"Close socket at "   270       localSocket->
Close ();
   282       std::clog << 
"Starting flow at time "   305   std::string tcpModel (
"ns3::TcpNewReno");
   354   ipv4.
SetBase (
"10.1.3.0", 
"255.255.255.0");
   356   ipv4.
SetBase (
"10.1.2.0", 
"255.255.255.0");
   360   Ipv4GlobalRoutingHelper::PopulateRoutingTables ();
   367   uint16_t servPort = 50000; 
   377                                                   TcpSocketFactory::GetTypeId ());
   378   localSocket->
Bind ();
   380                           localSocket, ipInterfs.
GetAddress (1), servPort);
   392   std::list<uint32_t> dropListN0;
   393   std::list<uint32_t> dropListN1;
   394   std::string caseDescription;
   399       caseDescription = 
"Verify connection establishment";
   403       caseDescription = 
"Verify a bigger (100 pkts) transfer: Sliding window operation, etc.";
   407       caseDescription = 
"Survive a SYN lost";
   408       dropListN0.push_back (0);
   412       caseDescription = 
"Survive a SYN+ACK lost";
   413       dropListN1.push_back (0);
   417       caseDescription = 
"Survive a ACK (last packet in 3-way handshake) lost";
   418       dropListN0.push_back (1);
   422       caseDescription = 
"Immediate FIN upon SYN_RCVD";
   424       dropListN0.push_back (1); 
   425       Simulator::Schedule (
Seconds (0.002), &Socket::Close, localSocket);
   429       caseDescription = 
"Simulated simultaneous close";
   430       dropListN1.push_back (5); 
   434       caseDescription = 
"FIN check 1: Loss of initiator's FIN. Wait until app close";
   436       dropListN0.push_back (7); 
   437       Simulator::Schedule (
Seconds (0.04), &Socket::Close, localSocket);
   441       caseDescription = 
"FIN check 2: Loss responder's FIN. FIN will be resent after last ack timeout";
   442       dropListN1.push_back (6); 
   445       NS_FATAL_ERROR (
"Program fatal error: specified test case not supported: "   452   dev0.
Get (1)->SetAttribute (
"ReceiveErrorModel", 
PointerValue (errN0));
   456   dev1.
Get (0)->SetAttribute (
"ReceiveErrorModel", 
PointerValue (errN1));
   458   std::ostringstream oss;
   459   oss << 
"tcp-state" << 
m_testCase << 
"-test-case";
   469       *(osw->
GetStream ()) << std::setprecision (9) << std::fixed;
   472       std::clog << std::endl << 
"Running TCP test-case " << 
m_testCase << 
": "   473                 << caseDescription << std::endl;
   478   Simulator::Stop (
Seconds (1000));
   480   Simulator::Destroy ();
   493   SetDataDir (
"src/test/ns3tcp/response-vectors");
   494   Packet::EnablePrinting ();  
 uint32_t RemoveHeader(Header &header)
Deserialize and remove the header from the internal buffer. 
void InstallAll(void) const
Aggregate IPv4, IPv6, UDP, and TCP stacks to all nodes in the simulation. 
holds a vector of ns3::Application pointers. 
Ptr< NetDevice > Get(uint32_t i) const
Get the Ptr<NetDevice> stored in this container at a given index. 
Simulation virtual time values and global simulation resolution. 
  AttributeValue implementation for Boolean. 
QueueDiscContainer Install(NetDeviceContainer c)
holds a vector of std::pair of Ptr<Ipv4> and interface index. 
Hold variables of type string. 
NetDeviceContainer Install(NodeContainer c)
double GetSeconds(void) const
Get an approximation of the time stored in this instance in the indicated unit. 
void Init(uint32_t dataLinkType, uint32_t snapLen=SNAPLEN_DEFAULT, int32_t timeZoneCorrection=ZONE_DEFAULT, bool swapMode=false, bool nanosecMode=false)
Initialize the pcap file associated with this object. 
#define NS_ASSERT(condition)
At runtime, in debugging builds, if this condition is not true, the program prints the source file...
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name. 
aggregate IP/TCP/UDP functionality to existing Nodes. 
#define NS_TEST_EXPECT_MSG_EQ(actual, limit, msg)
Test that an actual and expected (limit) value are equal and report if not. 
#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. 
A helper to make it easier to instantiate an ns3::PacketSinkApplication on a set of nodes...
Build a set of PointToPointNetDevice objects. 
void StartFlow(Ptr< Socket > localSocket, Ipv4Address servAddress, uint16_t servPort)
void SetDeviceAttribute(std::string name, const AttributeValue &value)
Set an attribute value to be propagated to each NetDevice created by the helper. 
void StartFlow(Ptr< Socket >, Ipv4Address, uint16_t)
virtual ~Ns3TcpStateTestCase()
void WriteUntilBufferFull(Ptr< Socket > localSocket, uint32_t txSpace)
bool IsStatusSuccess(void) const
Check if all tests passed. 
Class for representing data rates. 
void LogComponentEnable(char const *name, enum LogLevel level)
Enable the logging output associated with that log component. 
void Ipv4L3Rx(std::string context, Ptr< const Packet > packet, Ptr< Ipv4 > ipv4, uint32_t interface)
void EnablePcapAll(std::string prefix, bool promiscuous=false)
Enable pcap output on each device (which is of the appropriate type) in the set of all nodes created ...
  AttributeValue implementation for Time. 
A class representing a pcap file. 
void AddTestCase(TestCase *testCase, TestDuration duration=QUICK)
Add an individual child TestCase to this test suite. 
Ipv4Address GetAddress(uint32_t i, uint32_t j=0) const
void Read(uint8_t *const data, uint32_t maxBytes, uint32_t &tsSec, uint32_t &tsUsec, uint32_t &inclLen, uint32_t &origLen, uint32_t &readLen)
Read next packet from file. 
Hold an unsigned integer type. 
holds a vector of ns3::NetDevice pointers 
Callback< R > MakeCallback(R(T::*memPtr)(void), OBJ objPtr)
Build a set of QueueDisc objects. 
void Start(Time start)
Arrange for all of the Applications in this container to Start() at the Time given as a parameter...
void Connect(std::string path, const CallbackBase &cb)
virtual void DoRun(void)
Implementation to actually run this TestCase. 
virtual void DoTeardown(void)
Implementation to do any local setup required for this TestCase. 
virtual int Connect(const Address &address)=0
Initiate a connection to a remote host. 
int64_t GetMicroSeconds(void) const
Get an approximation of the time stored in this instance in the indicated unit. 
void LogComponentEnableAll(enum LogLevel level)
Enable the logging output for all registered log components. 
uint32_t m_currentTxBytes
virtual int Bind(const Address &address)=0
Allocate a local endpoint for this socket. 
Every class exported by the ns3 library is enclosed in the ns3 namespace. 
keep track of a set of node pointers. 
Hold objects of type Ptr<T>. 
std::string CreateDataDirFilename(std::string filename)
Construct the full path to a file in the data directory. 
uint16_t SetRootQueueDisc(std::string type, std::string n01="", const AttributeValue &v01=EmptyAttributeValue(), std::string n02="", const AttributeValue &v02=EmptyAttributeValue(), std::string n03="", const AttributeValue &v03=EmptyAttributeValue(), std::string n04="", const AttributeValue &v04=EmptyAttributeValue(), std::string n05="", const AttributeValue &v05=EmptyAttributeValue(), std::string n06="", const AttributeValue &v06=EmptyAttributeValue(), std::string n07="", const AttributeValue &v07=EmptyAttributeValue(), std::string n08="", const AttributeValue &v08=EmptyAttributeValue(), std::string n09="", const AttributeValue &v09=EmptyAttributeValue(), std::string n10="", const AttributeValue &v10=EmptyAttributeValue(), std::string n11="", const AttributeValue &v11=EmptyAttributeValue(), std::string n12="", const AttributeValue &v12=EmptyAttributeValue(), std::string n13="", const AttributeValue &v13=EmptyAttributeValue(), std::string n14="", const AttributeValue &v14=EmptyAttributeValue(), std::string n15="", const AttributeValue &v15=EmptyAttributeValue())
Helper function used to set a root queue disc of the given type and with the given attributes...
void WriteUntilBufferFull(Ptr< Socket >, uint32_t)
Ptr< Packet > Copy(void) const
performs a COW copy of the packet. 
void SetList(const std::list< uint32_t > &packetlist)
const uint32_t PCAP_LINK_TYPE
virtual void DoSetup(void)
Implementation to do any local setup required for this TestCase. 
void Close(void)
Close the underlying file. 
void SetSendCallback(Callback< void, Ptr< Socket >, uint32_t > sendCb)
Notify application when space in transmit buffer is added. 
static Ns3TcpStateTestSuite ns3TcpLossTestSuite
void Open(std::string const &filename, std::ios::openmode mode)
Create a new pcap file or open an existing pcap file. 
void SetChannelAttribute(std::string name, const AttributeValue &value)
Set an attribute value to be propagated to each Channel created by the helper. 
Ipv4 addresses are stored in host order in this class. 
void Stop(Time stop)
Arrange for all of the Applications in this container to Stop() at the Time given as a parameter...
Ipv4InterfaceContainer Assign(const NetDeviceContainer &c)
Assign IP addresses to the net devices specified in the container based on the current network prefix...
void Add(NodeContainer other)
Append the contents of another NodeContainer to the end of this container. 
#define NS_ABORT_MSG_UNLESS(cond, msg)
Abnormal program termination if a condition is false, with a message. 
  AttributeValue implementation for DataRate. 
Prefix all trace prints with function. 
uint32_t CopyData(uint8_t *buffer, uint32_t size) const
Copy the packet contents to a byte buffer. 
#define NS_LOG_DEBUG(msg)
Use NS_LOG to output a message of level LOG_DEBUG. 
Time Seconds(double value)
Construct a Time in the indicated unit. 
void SetDefault(std::string name, const AttributeValue &value)
void SetDataDir(std::string directory)
Set the data directory where reference trace files can be found. 
Ptr< Node > Get(uint32_t i) const
Get the Ptr<Node> stored in this container at a given index. 
A helper class to make life easier while doing simple IPv4 address assignment in scripts. 
Time Now(void)
create an ns3::Time instance which contains the current simulation time. 
void EnableAsciiAll(std::string prefix)
Enable ascii trace output on each device (which is of the appropriate type) in the set of all nodes c...
void Create(uint32_t n)
Create n nodes and append pointers to them to the end of this NodeContainer. 
uint32_t GetDataLinkType(void)
Returns the data link type field of the pcap file as defined by the network field in the pcap global ...
void Write(uint32_t tsSec, uint32_t tsUsec, uint8_t const *const data, uint32_t totalLen)
Write next packet to file. 
virtual int Send(Ptr< Packet > p, uint32_t flags)=0
Send data (or dummy data) to the remote host. 
virtual int Close(void)=0
Close a socket. 
virtual uint32_t GetTxAvailable(void) const =0
Returns the number of bytes which can be sent in a single call to Send. 
void Ipv4L3Tx(std::string context, Ptr< const Packet > packet, Ptr< Ipv4 > ipv4, uint32_t interface)
std::ostream * GetStream(void)
Return a pointer to an ostream previously set in the wrapper. 
void SetBase(Ipv4Address network, Ipv4Mask mask, Ipv4Address base="0.0.0.1")
Set the base network number, network mask and base address. 
const uint32_t PCAP_SNAPLEN
std::string m_pcapFilename