25 #include "ns3/config.h"
26 #include "ns3/uinteger.h"
27 #include "ns3/socket-factory.h"
28 #include "ns3/ipv4-raw-socket-factory.h"
29 #include "ns3/udp-socket-factory.h"
30 #include "ns3/simulator.h"
32 #include "ns3/simple-net-device.h"
33 #include "ns3/drop-tail-queue.h"
34 #include "ns3/socket.h"
35 #include "ns3/udp-socket.h"
39 #include "ns3/inet-socket-address.h"
40 #include "ns3/boolean.h"
42 #include "ns3/arp-l3-protocol.h"
43 #include "ns3/ipv4-l3-protocol.h"
44 #include "ns3/icmpv4-l4-protocol.h"
45 #include "ns3/ipv4-list-routing.h"
46 #include "ns3/ipv4-static-routing.h"
47 #include "ns3/udp-l4-protocol.h"
51 #include <netinet/in.h>
69 ipv4Routing->AddRoutingProtocol (ipv4staticRouting, 0);
95 virtual void DoRun (
void);
106 void HandleReadIcmpClient (
Ipv4Address icmpSource, uint8_t icmpTtl, uint8_t icmpType,
107 uint8_t icmpCode,uint32_t icmpInfo);
109 void SetFill (uint8_t *fill, uint32_t fillSize, uint32_t dataSize);
116 :
TestCase (
"Verify the IPv4 layer 3 protocol fragmentation and reassembly")
140 TypeId tid = TypeId::LookupByName (
"ns3::UdpSocketFactory");
160 while ((packet = socket->
RecvFrom (from)))
162 if (InetSocketAddress::IsMatchingType (from))
178 TypeId tid = TypeId::LookupByName (
"ns3::UdpSocketFactory");
194 while ((packet = socket->
RecvFrom (from)))
196 if (InetSocketAddress::IsMatchingType (from))
205 uint8_t icmpTtl, uint8_t icmpType,
206 uint8_t icmpCode, uint32_t icmpInfo)
217 m_data =
new uint8_t [dataSize];
221 if (fillSize >= dataSize)
223 memcpy (
m_data, fill, dataSize);
228 while (filled + fillSize < dataSize)
230 memcpy (&
m_data[filled], fill, fillSize);
234 memcpy(&
m_data[filled], fill, dataSize - filled);
248 p = Create<Packet> (
m_size);
265 Ptr<Node> serverNode = CreateObject<Node> ();
270 serverDev = CreateObject<SimpleNetDevice> ();
271 serverDev->
SetAddress (Mac48Address::ConvertFrom (Mac48Address::Allocate ()));
274 serverDevErrorModel->
Disable();
280 ipv4->
SetUp (netdev_idx);
285 Ptr<Node> clientNode = CreateObject<Node> ();
290 clientDev = CreateObject<SimpleNetDevice> ();
291 clientDev->
SetAddress (Mac48Address::ConvertFrom (Mac48Address::Allocate ()));
294 clientDevErrorModel->
Disable();
300 ipv4->
SetUp (netdev_idx);
312 uint32_t packetSizes[5] = {1000, 2000, 5000, 10000, 65000};
315 uint8_t fillData[78];
316 for ( uint32_t k=48; k<=125; k++ )
322 for(
int i= 0; i<5; i++)
324 uint32_t packetSize = packetSizes[i];
326 SetFill (fillData, 78, packetSize);
333 uint8_t recvBuffer[65000];
341 0,
"Packet content differs");
348 for(
int i= 0; i<5; i++)
350 uint32_t packetSize = packetSizes[i];
352 SetFill (fillData, 78, packetSize);
359 uint8_t recvBuffer[65000];
367 0,
"Packet content differs");
378 clientDevErrorModel->
Disable();
379 serverDevErrorModel->
Enable();
380 for(
int i= 1; i<5; i++)
382 uint32_t packetSize = packetSizes[i];
384 SetFill (fillData, 78, packetSize);
387 serverDevErrorModel->
Reset();
402 Simulator::Destroy ();
virtual uint32_t AddInterface(Ptr< NetDevice > device)=0
void StartClient(Ptr< Node > ClientNode)
a class to represent an Ipv4 address mask
Ptr< Packet > m_sentPacketClient
uint32_t GetSize(void) const
Ptr< Socket > m_socketServer
A sockets interface to UDP.
a polymophic address class
AttributeValue form of a Callback.
Ptr< Socket > m_socketClient
Ptr< Packet > SendClient(void)
void RemoveAllPacketTags(void)
Remove all packet tags.
virtual int MulticastJoinGroup(uint32_t interface, const Address &groupAddress)=0
Corresponds to socket option MCAST_JOIN_GROUP.
virtual void SetUp(uint32_t interface)=0
Hold an unsigned integer type.
virtual bool SetMtu(const uint16_t mtu)
#define NS_TEST_EXPECT_MSG_EQ(actual, limit, msg)
Test that an actual and expected (limit) value are equal and report if not.
Callback< R > MakeCallback(R(T::*memPtr)(void), OBJ objPtr)
void SetRecvCallback(Callback< void, Ptr< Socket > >)
Notify application when new data is available to be read.
void Disable(void)
Disable the error model.
void AggregateObject(Ptr< Object > other)
virtual int Connect(const Address &address)=0
Initiate a connection to a remote host.
void SetJumpingMode(bool mode)
Set if the odd packets are delayed (even ones are not delayed ever)
Access to the Ipv4 forwarding table, interfaces, and configuration.
Ptr< Packet > Copy(void) const
void SetDefault(std::string name, const AttributeValue &value)
virtual int Bind(const Address &address)=0
Allocate a local endpoint for this socket.
void SetReceiveErrorModel(Ptr< ErrorModel > em)
Attach a receive ErrorModel to the SimpleNetDevice.
static void AddInternetStack(Ptr< Node > node)
void AddTestCase(TestCase *testCase) NS_DEPRECATED
Add an individual child TestCase case to this TestCase.
void HandleReadIcmpClient(Ipv4Address icmpSource, uint8_t icmpTtl, uint8_t icmpType, uint8_t icmpCode, uint32_t icmpInfo)
void StartServer(Ptr< Node > ServerNode)
Ipv4 addresses are stored in host order in this class.
Ipv4FragmentationTestSuite g_ipv4fragmentationTestSuite
uint32_t AddDevice(Ptr< NetDevice > device)
uint32_t GetId(void) const
a class to store IPv4 address information on an interface
virtual Ptr< Node > GetNode(void) const =0
Return the node this socket is associated with.
virtual void SetAddress(Address address)
Set the address of this interface.
void RemoveAllByteTags(void)
Remove all byte tags stored in this packet.
Ptr< Packet > m_receivedPacketServer
virtual bool AddAddress(uint32_t interface, Ipv4InterfaceAddress address)=0
uint32_t CopyData(uint8_t *buffer, uint32_t size) const
Copy the packet contents to a byte buffer.
Ptr< Packet > m_receivedPacketClient
virtual void DoRun(void)
Implementation to actually run this TestCase.
void SetJumpingTime(Time delay)
Set the delay for the odd packets (even ones are not delayed)
virtual Ptr< Packet > RecvFrom(uint32_t maxSize, uint32_t flags, Address &fromAddress)=0
Read a single packet from the socket and retrieve the sender address.
This test suite implements a Unit Test.
virtual int Send(Ptr< Packet > p, uint32_t flags)=0
Send data (or dummy data) to the remote host.
Ipv4FragmentationTestSuite()
void SetChannel(Ptr< SimpleChannel > channel)
Attach a channel to this net device.
void SetAttribute(std::string name, const AttributeValue &value)
Ptr< T > GetObject(void) const
a unique identifier for an interface.
void Enable(void)
Enable the error model.
void SetFill(uint8_t *fill, uint32_t fillSize, uint32_t dataSize)
void HandleReadClient(Ptr< Socket > socket)
void HandleReadServer(Ptr< Socket > socket)
void SetRoutingProtocol(Ptr< Ipv4RoutingProtocol > routingProtocol)
Register a new routing protocol to be used by this Ipv4 stack.