19#include "ns3/arp-l3-protocol.h"
20#include "ns3/assert.h"
21#include "ns3/callback.h"
22#include "ns3/config.h"
23#include "ns3/global-router-interface.h"
24#include "ns3/global-routing.h"
25#include "ns3/icmpv6-l4-protocol.h"
27#include "ns3/ipv6-extension-demux.h"
28#include "ns3/ipv6-extension-header.h"
29#include "ns3/ipv6-extension.h"
33#include "ns3/net-device.h"
34#include "ns3/node-list.h"
36#include "ns3/object.h"
37#include "ns3/packet-socket-factory.h"
38#include "ns3/simulator.h"
39#include "ns3/string.h"
40#include "ns3/traffic-control-layer.h"
58#define INTERFACE_CONTEXT
86typedef std::map<InterfacePairIpv4, Ptr<PcapFileWrapper>>
88typedef std::map<InterfacePairIpv4, Ptr<OutputStreamWrapper>>
97typedef std::map<InterfacePairIpv6, Ptr<PcapFileWrapper>>
99typedef std::map<InterfacePairIpv6, Ptr<OutputStreamWrapper>>
129 listRouting.
Add(staticRouting, 0);
130 listRouting.
Add(globalRouting, -10);
132 listRouting6.
Add(staticRouting6, 0);
133 listRouting6.
Add(globalRouting6, -10);
220 int64_t currentStream = stream;
221 for (
auto i = c.
Begin(); i != c.
End(); ++i)
230 currentStream += gr->AssignStreams(currentStream);
238 currentStream += demux->AssignStreams(currentStream);
243 currentStream += demuxRouter->AssignStreams(currentStream);
251 currentStream += arpL3Protocol->AssignStreams(currentStream);
258 if (icmpv6L4Protocol)
260 currentStream += icmpv6L4Protocol->AssignStreams(currentStream);
267 for (
auto i = c.
Begin(); i != c.
End(); ++i)
276 currentStream += gr->AssignStreams(currentStream);
280 return (currentStream - stream);
286 for (
auto i = c.
Begin(); i != c.
End(); ++i)
302 if (node->GetObject<
Object>(tid))
310 node->AggregateObject(protocol);
326 arp->SetAttribute(
"RequestJitter",
327 StringValue(
"ns3::ConstantRandomVariable[Constant=0.0]"));
332 if (!ipv4->GetRoutingProtocol())
335 ipv4->SetRoutingProtocol(ipv4Routing);
348 icmpv6l4->SetAttribute(
"SolicitationJitter",
349 StringValue(
"ns3::ConstantRandomVariable[Constant=0.0]"));
353 if (!ipv6->GetRoutingProtocol())
356 ipv6->SetRoutingProtocol(ipv6Routing);
359 ipv6->RegisterExtensions();
360 ipv6->RegisterOptions();
371 node->AggregateObject(factory);
381 arp->SetTrafficControl(tc);
412 NS_LOG_INFO(
"Ignoring packet to/from interface " << interface);
423 auto id = ipv4->GetObject<
Node>()->GetId();
427 if ((*i).first.first ==
id)
439 bool explicitFilename)
445 NS_LOG_INFO(
"Call to enable Ipv4 pcap tracing but Ipv4 not enabled");
455 std::string filename;
456 if (explicitFilename)
479 "InternetStackHelper::EnablePcapIpv4Internal(): "
480 "m_ipv4Enabled and ipv4L3Protocol inconsistent");
485 "InternetStackHelper::EnablePcapIpv4Internal(): "
486 "Unable to connect ipv4L3Protocol \"Tx\"");
491 "InternetStackHelper::EnablePcapIpv4Internal(): "
492 "Unable to connect ipv4L3Protocol \"Rx\"");
518 NS_LOG_INFO(
"Ignoring packet to/from interface " << interface);
529 auto id = ipv6->GetObject<
Node>()->GetId();
533 if ((*i).first.first ==
id)
545 bool explicitFilename)
551 NS_LOG_INFO(
"Call to enable Ipv6 pcap tracing but Ipv6 not enabled");
561 std::string filename;
562 if (explicitFilename)
585 "InternetStackHelper::EnablePcapIpv6Internal(): "
586 "m_ipv6Enabled and ipv6L3Protocol inconsistent");
591 "InternetStackHelper::EnablePcapIpv6Internal(): "
592 "Unable to connect ipv6L3Protocol \"Tx\"");
597 "InternetStackHelper::EnablePcapIpv6Internal(): "
598 "Unable to connect ipv6L3Protocol \"Rx\"");
630 NS_LOG_INFO(
"Ignoring packet to/from interface " << interface);
635 p->AddHeader(header);
656 NS_LOG_INFO(
"Ignoring packet to/from interface " << interface);
678 NS_LOG_INFO(
"Ignoring packet to/from interface " << interface);
713 NS_LOG_INFO(
"Ignoring packet to/from interface " << interface);
718 p->AddHeader(header);
719#ifdef INTERFACE_CONTEXT
721 <<
interface << ") " << *p << std::endl;
746 NS_LOG_INFO(
"Ignoring packet to/from interface " << interface);
750#ifdef INTERFACE_CONTEXT
752 <<
interface << ") " << *packet << std::endl;
755 << *packet << std::endl;
777 NS_LOG_INFO(
"Ignoring packet to/from interface " << interface);
781#ifdef INTERFACE_CONTEXT
783 <<
interface << ") " << *packet << std::endl;
786 << *packet << std::endl;
793 auto id = ipv4->GetObject<
Node>()->GetId();
797 if ((*i).first.first ==
id)
810 bool explicitFilename)
814 NS_LOG_INFO(
"Call to enable Ipv4 ascii tracing but Ipv4 not enabled");
843 std::string filename;
844 if (explicitFilename)
878 bool result = ipv4L3Protocol->TraceConnectWithoutContext(
882 "InternetStackHelper::EnableAsciiIpv4Internal(): "
883 "Unable to connect ipv4L3Protocol \"Drop\"");
884 result = ipv4L3Protocol->TraceConnectWithoutContext(
888 "InternetStackHelper::EnableAsciiIpv4Internal(): "
889 "Unable to connect ipv4L3Protocol \"Tx\"");
890 result = ipv4L3Protocol->TraceConnectWithoutContext(
894 "InternetStackHelper::EnableAsciiIpv4Internal(): "
895 "Unable to connect ipv4L3Protocol \"Rx\"");
918 std::ostringstream oss;
926 oss <<
"/NodeList/" << node->GetId() <<
"/$ns3::ArpL3Protocol/Drop";
935 oss <<
"/NodeList/" << node->GetId() <<
"/$ns3::Ipv4L3Protocol/Drop";
938 oss <<
"/NodeList/" << node->GetId() <<
"/$ns3::Ipv4L3Protocol/Tx";
941 oss <<
"/NodeList/" << node->GetId() <<
"/$ns3::Ipv4L3Protocol/Rx";
974 NS_LOG_INFO(
"Ignoring packet to/from interface " << interface);
979 p->AddHeader(header);
999 NS_LOG_INFO(
"Ignoring packet to/from interface " << interface);
1022 NS_LOG_INFO(
"Ignoring packet to/from interface " << interface);
1041 std::string context,
1057 NS_LOG_INFO(
"Ignoring packet to/from interface " << interface);
1062 p->AddHeader(header);
1063#ifdef INTERFACE_CONTEXT
1065 <<
interface << ") " << *p << std::endl;
1082 std::string context,
1090 NS_LOG_INFO(
"Ignoring packet to/from interface " << interface);
1094#ifdef INTERFACE_CONTEXT
1096 <<
interface << ") " << *packet << std::endl;
1099 << *packet << std::endl;
1113 std::string context,
1121 NS_LOG_INFO(
"Ignoring packet to/from interface " << interface);
1125#ifdef INTERFACE_CONTEXT
1127 <<
interface << ") " << *packet << std::endl;
1130 << *packet << std::endl;
1137 auto id = ipv6->GetObject<
Node>()->GetId();
1141 if ((*i).first.first ==
id)
1154 bool explicitFilename)
1158 NS_LOG_INFO(
"Call to enable Ipv6 ascii tracing but Ipv6 not enabled");
1187 std::string filename;
1188 if (explicitFilename)
1212 bool result = ipv6L3Protocol->TraceConnectWithoutContext(
1216 "InternetStackHelper::EnableAsciiIpv6Internal(): "
1217 "Unable to connect ipv6L3Protocol \"Drop\"");
1218 result = ipv6L3Protocol->TraceConnectWithoutContext(
1222 "InternetStackHelper::EnableAsciiIpv6Internal(): "
1223 "Unable to connect ipv6L3Protocol \"Tx\"");
1224 result = ipv6L3Protocol->TraceConnectWithoutContext(
1228 "InternetStackHelper::EnableAsciiIpv6Internal(): "
1229 "Unable to connect ipv6L3Protocol \"Rx\"");
1252 std::ostringstream oss;
1255 oss <<
"/NodeList/" << node->GetId() <<
"/$ns3::Ipv6L3Protocol/Drop";
1258 oss <<
"/NodeList/" << node->GetId() <<
"/$ns3::Ipv6L3Protocol/Tx";
1261 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.
Helper class that adds ns3::Ipv4GlobalRouting objects.
Access to the IPv6 forwarding table, interfaces, and configuration.
IPv6 layer implementation.
DropReason
Reason why a packet has been dropped.
Helper class that adds ns3::Ipv6ListRouting objects.
void Add(const Ipv6RoutingHelper &routing, int16_t priority)
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.