17#include "ns3/arp-l3-protocol.h"
18#include "ns3/assert.h"
19#include "ns3/callback.h"
20#include "ns3/config.h"
21#include "ns3/global-router-interface.h"
22#include "ns3/icmpv6-l4-protocol.h"
23#include "ns3/ipv4-global-routing.h"
25#include "ns3/ipv6-extension-demux.h"
26#include "ns3/ipv6-extension-header.h"
27#include "ns3/ipv6-extension.h"
31#include "ns3/net-device.h"
32#include "ns3/node-list.h"
34#include "ns3/object.h"
35#include "ns3/packet-socket-factory.h"
36#include "ns3/simulator.h"
37#include "ns3/string.h"
38#include "ns3/traffic-control-layer.h"
56#define INTERFACE_CONTEXT
84typedef std::map<InterfacePairIpv4, Ptr<PcapFileWrapper>>
86typedef std::map<InterfacePairIpv4, Ptr<OutputStreamWrapper>>
95typedef std::map<InterfacePairIpv6, Ptr<PcapFileWrapper>>
97typedef std::map<InterfacePairIpv6, Ptr<OutputStreamWrapper>>
125 listRouting.
Add(staticRouting, 0);
126 listRouting.
Add(globalRouting, -10);
214 int64_t currentStream = stream;
215 for (
auto i = c.
Begin(); i != c.
End(); ++i)
224 currentStream += gr->AssignStreams(currentStream);
232 currentStream += demux->AssignStreams(currentStream);
237 currentStream += demuxRouter->AssignStreams(currentStream);
245 currentStream += arpL3Protocol->AssignStreams(currentStream);
252 if (icmpv6L4Protocol)
254 currentStream += icmpv6L4Protocol->AssignStreams(currentStream);
258 return (currentStream - stream);
264 for (
auto i = c.
Begin(); i != c.
End(); ++i)
280 if (node->GetObject<
Object>(tid))
288 node->AggregateObject(protocol);
304 arp->SetAttribute(
"RequestJitter",
305 StringValue(
"ns3::ConstantRandomVariable[Constant=0.0]"));
310 if (!ipv4->GetRoutingProtocol())
313 ipv4->SetRoutingProtocol(ipv4Routing);
326 icmpv6l4->SetAttribute(
"SolicitationJitter",
327 StringValue(
"ns3::ConstantRandomVariable[Constant=0.0]"));
331 if (!ipv6->GetRoutingProtocol())
334 ipv6->SetRoutingProtocol(ipv6Routing);
337 ipv6->RegisterExtensions();
338 ipv6->RegisterOptions();
349 node->AggregateObject(factory);
359 arp->SetTrafficControl(tc);
390 NS_LOG_INFO(
"Ignoring packet to/from interface " << interface);
401 auto id = ipv4->GetObject<
Node>()->GetId();
405 if ((*i).first.first ==
id)
417 bool explicitFilename)
423 NS_LOG_INFO(
"Call to enable Ipv4 pcap tracing but Ipv4 not enabled");
433 std::string filename;
434 if (explicitFilename)
457 "InternetStackHelper::EnablePcapIpv4Internal(): "
458 "m_ipv4Enabled and ipv4L3Protocol inconsistent");
463 "InternetStackHelper::EnablePcapIpv4Internal(): "
464 "Unable to connect ipv4L3Protocol \"Tx\"");
469 "InternetStackHelper::EnablePcapIpv4Internal(): "
470 "Unable to connect ipv4L3Protocol \"Rx\"");
496 NS_LOG_INFO(
"Ignoring packet to/from interface " << interface);
507 auto id = ipv6->GetObject<
Node>()->GetId();
511 if ((*i).first.first ==
id)
523 bool explicitFilename)
529 NS_LOG_INFO(
"Call to enable Ipv6 pcap tracing but Ipv6 not enabled");
539 std::string filename;
540 if (explicitFilename)
563 "InternetStackHelper::EnablePcapIpv6Internal(): "
564 "m_ipv6Enabled and ipv6L3Protocol inconsistent");
569 "InternetStackHelper::EnablePcapIpv6Internal(): "
570 "Unable to connect ipv6L3Protocol \"Tx\"");
575 "InternetStackHelper::EnablePcapIpv6Internal(): "
576 "Unable to connect ipv6L3Protocol \"Rx\"");
608 NS_LOG_INFO(
"Ignoring packet to/from interface " << interface);
613 p->AddHeader(header);
634 NS_LOG_INFO(
"Ignoring packet to/from interface " << interface);
656 NS_LOG_INFO(
"Ignoring packet to/from interface " << interface);
691 NS_LOG_INFO(
"Ignoring packet to/from interface " << interface);
696 p->AddHeader(header);
697#ifdef INTERFACE_CONTEXT
699 <<
interface << ") " << *p << std::endl;
724 NS_LOG_INFO(
"Ignoring packet to/from interface " << interface);
728#ifdef INTERFACE_CONTEXT
730 <<
interface << ") " << *packet << std::endl;
733 << *packet << std::endl;
755 NS_LOG_INFO(
"Ignoring packet to/from interface " << interface);
759#ifdef INTERFACE_CONTEXT
761 <<
interface << ") " << *packet << std::endl;
764 << *packet << std::endl;
771 auto id = ipv4->GetObject<
Node>()->GetId();
775 if ((*i).first.first ==
id)
788 bool explicitFilename)
792 NS_LOG_INFO(
"Call to enable Ipv4 ascii tracing but Ipv4 not enabled");
821 std::string filename;
822 if (explicitFilename)
856 bool result = ipv4L3Protocol->TraceConnectWithoutContext(
860 "InternetStackHelper::EnableAsciiIpv4Internal(): "
861 "Unable to connect ipv4L3Protocol \"Drop\"");
862 result = ipv4L3Protocol->TraceConnectWithoutContext(
866 "InternetStackHelper::EnableAsciiIpv4Internal(): "
867 "Unable to connect ipv4L3Protocol \"Tx\"");
868 result = ipv4L3Protocol->TraceConnectWithoutContext(
872 "InternetStackHelper::EnableAsciiIpv4Internal(): "
873 "Unable to connect ipv4L3Protocol \"Rx\"");
896 std::ostringstream oss;
904 oss <<
"/NodeList/" << node->GetId() <<
"/$ns3::ArpL3Protocol/Drop";
913 oss <<
"/NodeList/" << node->GetId() <<
"/$ns3::Ipv4L3Protocol/Drop";
916 oss <<
"/NodeList/" << node->GetId() <<
"/$ns3::Ipv4L3Protocol/Tx";
919 oss <<
"/NodeList/" << node->GetId() <<
"/$ns3::Ipv4L3Protocol/Rx";
952 NS_LOG_INFO(
"Ignoring packet to/from interface " << interface);
957 p->AddHeader(header);
977 NS_LOG_INFO(
"Ignoring packet to/from interface " << interface);
1000 NS_LOG_INFO(
"Ignoring packet to/from interface " << interface);
1019 std::string context,
1035 NS_LOG_INFO(
"Ignoring packet to/from interface " << interface);
1040 p->AddHeader(header);
1041#ifdef INTERFACE_CONTEXT
1043 <<
interface << ") " << *p << std::endl;
1060 std::string context,
1068 NS_LOG_INFO(
"Ignoring packet to/from interface " << interface);
1072#ifdef INTERFACE_CONTEXT
1074 <<
interface << ") " << *packet << std::endl;
1077 << *packet << std::endl;
1091 std::string context,
1099 NS_LOG_INFO(
"Ignoring packet to/from interface " << interface);
1103#ifdef INTERFACE_CONTEXT
1105 <<
interface << ") " << *packet << std::endl;
1108 << *packet << std::endl;
1115 auto id = ipv6->GetObject<
Node>()->GetId();
1119 if ((*i).first.first ==
id)
1132 bool explicitFilename)
1136 NS_LOG_INFO(
"Call to enable Ipv6 ascii tracing but Ipv6 not enabled");
1165 std::string filename;
1166 if (explicitFilename)
1190 bool result = ipv6L3Protocol->TraceConnectWithoutContext(
1194 "InternetStackHelper::EnableAsciiIpv6Internal(): "
1195 "Unable to connect ipv6L3Protocol \"Drop\"");
1196 result = ipv6L3Protocol->TraceConnectWithoutContext(
1200 "InternetStackHelper::EnableAsciiIpv6Internal(): "
1201 "Unable to connect ipv6L3Protocol \"Tx\"");
1202 result = ipv6L3Protocol->TraceConnectWithoutContext(
1206 "InternetStackHelper::EnableAsciiIpv6Internal(): "
1207 "Unable to connect ipv6L3Protocol \"Rx\"");
1230 std::ostringstream oss;
1233 oss <<
"/NodeList/" << node->GetId() <<
"/$ns3::Ipv6L3Protocol/Drop";
1236 oss <<
"/NodeList/" << node->GetId() <<
"/$ns3::Ipv6L3Protocol/Tx";
1239 oss <<
"/NodeList/" << node->GetId() <<
"/$ns3::Ipv6L3Protocol/Rx";
An implementation of the ARP protocol.
Manage ASCII trace files for device models.
void HookDefaultDropSinkWithoutContext(Ptr< T > object, std::string traceName, Ptr< OutputStreamWrapper > stream)
Hook a trace source to the default drop operation trace sink that does not accept nor log a trace con...
static void DefaultDropSinkWithContext(Ptr< OutputStreamWrapper > file, std::string context, Ptr< const Packet > p)
Basic Drop default trace sink.
std::string GetFilenameFromInterfacePair(std::string prefix, Ptr< Object > object, uint32_t interface, bool useObjectNames=true)
Let the ascii trace helper figure out a reasonable filename to use for an ascii trace file associated...
Ptr< OutputStreamWrapper > CreateFileStream(std::string filename, std::ios::openmode filemode=std::ios::out)
Create and initialize an output stream object we'll use to write the traced bits.
An interface aggregated to a node to provide global routing info.
An implementation of the ICMPv6 protocol.
aggregate IP/TCP/UDP functionality to existing Nodes.
void EnablePcapIpv6Internal(std::string prefix, Ptr< Ipv6 > ipv6, uint32_t interface, bool explicitFilename) override
Enable pcap output the indicated Ipv6 and interface pair.
void SetIpv4StackInstall(bool enable)
Enable/disable IPv4 stack install.
void Install(std::string nodeName) const
Aggregate implementations of the ns3::Ipv4, ns3::Ipv6, ns3::Udp, and ns3::Tcp classes onto the provid...
void SetIpv4ArpJitter(bool enable)
Enable/disable IPv4 ARP Jitter.
void EnableAsciiIpv4Internal(Ptr< OutputStreamWrapper > stream, std::string prefix, Ptr< Ipv4 > ipv4, uint32_t interface, bool explicitFilename) override
Enable ascii trace output on the indicated Ipv4 and interface pair.
bool m_ipv6Enabled
IPv6 install state (enabled/disabled) ?
void SetRoutingHelper(const Ipv4RoutingHelper &routing)
bool m_ipv6NsRsJitterEnabled
IPv6 IPv6 NS and RS Jitter state (enabled/disabled) ?
bool AsciiHooked(Ptr< Ipv4 > ipv4)
checks if there is an hook to an ascii output stream
bool m_ipv4Enabled
IPv4 install state (enabled/disabled) ?
const Ipv4RoutingHelper * m_routing
IPv4 routing helper.
void InstallAll() const
Aggregate IPv4, IPv6, UDP, and TCP stacks to all nodes in the simulation.
void SetIpv6StackInstall(bool enable)
Enable/disable IPv6 stack install.
int64_t AssignStreams(NodeContainer c, int64_t stream)
Assign a fixed random variable stream number to the random variables used by this model.
static void CreateAndAggregateObjectFromTypeId(Ptr< Node > node, const std::string typeId)
create an object from its TypeId and aggregates it to the node.
void Initialize()
Initialize the helper to its default values.
void SetIpv6NsRsJitter(bool enable)
Enable/disable IPv6 NS and RS Jitter.
bool PcapHooked(Ptr< Ipv4 > ipv4)
checks if there is an hook to a Pcap wrapper
void EnablePcapIpv4Internal(std::string prefix, Ptr< Ipv4 > ipv4, uint32_t interface, bool explicitFilename) override
Enable pcap output the indicated Ipv4 and interface pair.
bool m_ipv4ArpJitterEnabled
IPv4 ARP Jitter state (enabled/disabled) ?
const Ipv6RoutingHelper * m_routingv6
IPv6 routing helper.
InternetStackHelper & operator=(const InternetStackHelper &o)
Copy constructor.
InternetStackHelper()
Create a new InternetStackHelper which uses a mix of static routing and global routing by default.
void Reset()
Return helper internal state to that of a newly constructed one.
~InternetStackHelper() override
Destroy the InternetStackHelper.
void EnableAsciiIpv6Internal(Ptr< OutputStreamWrapper > stream, std::string prefix, Ptr< Ipv6 > ipv6, uint32_t interface, bool explicitFilename) override
Enable ascii trace output on the indicated Ipv6 and interface pair.
Helper class that adds ns3::Ipv4GlobalRouting objects.
Access to the IPv4 forwarding table, interfaces, and configuration.
Implement the IPv4 layer.
DropReason
Reason why a packet has been dropped.
Helper class that adds ns3::Ipv4ListRouting objects.
void Add(const Ipv4RoutingHelper &routing, int16_t priority)
a factory to create ns3::Ipv4RoutingProtocol objects
virtual Ipv4RoutingHelper * Copy() const =0
virtual constructor
Helper class that adds ns3::Ipv4StaticRouting objects.
Demultiplexes IPv6 extensions.
static const uint8_t EXT_NUMBER
Fragmentation extension number.
IPv6 Extension Routing Demux.
Access to the IPv6 forwarding table, interfaces, and configuration.
IPv6 layer implementation.
DropReason
Reason why a packet has been dropped.
A factory to create ns3::Ipv6RoutingProtocol objects.
virtual Ipv6RoutingHelper * Copy() const =0
virtual constructor
Helper class that adds ns3::Ipv6StaticRouting objects.
static Ptr< T > Find(std::string path)
Given a name path string, look to see if there's an object in the system with that associated to it.
keep track of a set of node pointers.
Iterator End() const
Get an iterator which indicates past-the-last Node in the container.
static NodeContainer GetGlobal()
Create a NodeContainer that contains a list of all nodes created through NodeContainer::Create() and ...
Iterator Begin() const
Get an iterator which refers to the first Node in the container.
Instantiate subclasses of ns3::Object.
Ptr< Object > Create() const
Create an Object instance of the configured TypeId.
void SetTypeId(TypeId tid)
Set the TypeId of the Objects to be created by this factory.
A base class which provides memory management and object aggregation.
static void EnablePrinting()
Enable printing packets metadata.
This can be used as an interface in a node in order for the node to generate PacketSockets that can c...
Manage pcap files for device models.
Ptr< PcapFileWrapper > CreateFile(std::string filename, std::ios::openmode filemode, DataLinkType dataLinkType, uint32_t snapLen=std::numeric_limits< uint32_t >::max(), int32_t tzCorrection=0)
Create and initialize a pcap file.
std::string GetFilenameFromInterfacePair(std::string prefix, Ptr< Object > object, uint32_t interface, bool useObjectNames=true)
Let the pcap helper figure out a reasonable filename to use for the pcap file associated with a node.
Smart pointer class similar to boost::intrusive_ptr.
static Time Now()
Return the current simulation virtual time.
Hold variables of type string.
double GetSeconds() const
Get an approximation of the time stored in this instance in the indicated unit.
The Traffic Control layer aims at introducing an equivalent of the Linux Traffic Control infrastructu...
a unique identifier for an interface.
static TypeId LookupByName(std::string name)
Get a TypeId by name.
#define NS_ASSERT(condition)
At runtime, in debugging builds, if this condition is not true, the program prints the source file,...
#define NS_ASSERT_MSG(condition, message)
At runtime, in debugging builds, if this condition is not true, the program prints the message to out...
Callback< R, Args... > MakeCallback(R(T::*memPtr)(Args...), OBJ objPtr)
Build Callbacks for class method members which take varying numbers of arguments and potentially retu...
void Connect(std::string path, const CallbackBase &cb)
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by ",...
#define NS_LOG_INFO(msg)
Use NS_LOG to output a message of level LOG_INFO.
auto MakeBoundCallback(R(*fnPtr)(Args...), BArgs &&... bargs)
Make Callbacks with varying number of bound arguments.
Ptr< T > CreateObject(Args &&... args)
Create an object by type, with varying number of constructor parameters.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
std::pair< Ptr< Ipv4 >, uint32_t > InterfacePairIpv4
Ipv4/interface pair.
static void Ipv6L3ProtocolDropSinkWithContext(Ptr< OutputStreamWrapper > stream, std::string context, const Ipv6Header &header, Ptr< const Packet > packet, Ipv6L3Protocol::DropReason reason, Ptr< Ipv6 > ipv6, uint32_t interface)
Sync function for IPv6 dropped packet - Ascii output.
std::map< InterfacePairIpv4, Ptr< OutputStreamWrapper > > InterfaceStreamMapIpv4
Ipv4/interface and output stream container.
static void Ipv4L3ProtocolDropSinkWithContext(Ptr< OutputStreamWrapper > stream, std::string context, const Ipv4Header &header, Ptr< const Packet > packet, Ipv4L3Protocol::DropReason reason, Ptr< Ipv4 > ipv4, uint32_t interface)
Packet dropped callback with context.
static void Ipv6L3ProtocolRxTxSink(Ptr< const Packet > p, Ptr< Ipv6 > ipv6, uint32_t interface)
Sync function for IPv6 packet - Pcap output.
std::map< InterfacePairIpv4, Ptr< PcapFileWrapper > > InterfaceFileMapIpv4
Ipv4/interface and Pcap file wrapper container.
static void Ipv4L3ProtocolRxTxSink(Ptr< const Packet > p, Ptr< Ipv4 > ipv4, uint32_t interface)
IPv4 Rx / Tx packet callback.
static void Ipv6L3ProtocolRxSinkWithContext(Ptr< OutputStreamWrapper > stream, std::string context, Ptr< const Packet > packet, Ptr< Ipv6 > ipv6, uint32_t interface)
Sync function for IPv6 received packet - Ascii output.
std::map< InterfacePairIpv6, Ptr< OutputStreamWrapper > > InterfaceStreamMapIpv6
Ipv6/interface and output stream container.
static InterfaceStreamMapIpv6 g_interfaceStreamMapIpv6
A mapping of Ipv6/interface pairs to pcap files.
std::map< InterfacePairIpv6, Ptr< PcapFileWrapper > > InterfaceFileMapIpv6
Ipv6/interface and Pcap file wrapper container.
std::pair< uint32_t, uint32_t > InterfacePairIpv6
Ipv6/interface pair.
static void Ipv4L3ProtocolRxSinkWithContext(Ptr< OutputStreamWrapper > stream, std::string context, Ptr< const Packet > packet, Ptr< Ipv4 > ipv4, uint32_t interface)
Sync function for IPv4 received packet - Ascii output.
static void Ipv6L3ProtocolTxSinkWithContext(Ptr< OutputStreamWrapper > stream, std::string context, Ptr< const Packet > packet, Ptr< Ipv6 > ipv6, uint32_t interface)
Sync function for IPv6 transmitted packet - Ascii output.
static void Ipv4L3ProtocolRxSinkWithoutContext(Ptr< OutputStreamWrapper > stream, Ptr< const Packet > packet, Ptr< Ipv4 > ipv4, uint32_t interface)
Sync function for IPv4 received packet - Ascii output.
static InterfaceFileMapIpv4 g_interfaceFileMapIpv4
A mapping of Ipv4/interface pairs to pcap files.
static InterfaceStreamMapIpv4 g_interfaceStreamMapIpv4
A mapping of Ipv4/interface pairs to ascii streams.
static void Ipv4L3ProtocolDropSinkWithoutContext(Ptr< OutputStreamWrapper > stream, const Ipv4Header &header, Ptr< const Packet > packet, Ipv4L3Protocol::DropReason reason, Ptr< Ipv4 > ipv4, uint32_t interface)
Packet dropped callback without context.
static void Ipv4L3ProtocolTxSinkWithoutContext(Ptr< OutputStreamWrapper > stream, Ptr< const Packet > packet, Ptr< Ipv4 > ipv4, uint32_t interface)
Sync function for IPv4 transmitted packet - Ascii output.
static InterfaceFileMapIpv6 g_interfaceFileMapIpv6
A mapping of Ipv6/interface pairs to pcap files.
static void Ipv4L3ProtocolTxSinkWithContext(Ptr< OutputStreamWrapper > stream, std::string context, Ptr< const Packet > packet, Ptr< Ipv4 > ipv4, uint32_t interface)
Sync function for IPv4 transmitted packet - Ascii output.
static void Ipv6L3ProtocolRxSinkWithoutContext(Ptr< OutputStreamWrapper > stream, Ptr< const Packet > packet, Ptr< Ipv6 > ipv6, uint32_t interface)
Sync function for IPv6 received packet - Ascii output.
static void Ipv6L3ProtocolTxSinkWithoutContext(Ptr< OutputStreamWrapper > stream, Ptr< const Packet > packet, Ptr< Ipv6 > ipv6, uint32_t interface)
Sync function for IPv6 transmitted packet - Ascii output.
static void Ipv6L3ProtocolDropSinkWithoutContext(Ptr< OutputStreamWrapper > stream, const Ipv6Header &header, Ptr< const Packet > packet, Ipv6L3Protocol::DropReason reason, Ptr< Ipv6 > ipv6, uint32_t interface)
Sync function for IPv6 dropped packet - Ascii output.