25 #include "ns3/assert.h" 26 #include "ns3/uinteger.h" 27 #include "ns3/object-vector.h" 28 #include "ns3/ipv6-address.h" 29 #include "ns3/ipv6-header.h" 30 #include "ns3/ipv6-l3-protocol.h" 31 #include "ns3/ipv6-static-routing.h" 32 #include "ns3/ipv6-list-routing.h" 33 #include "ns3/ipv6-route.h" 34 #include "ns3/trace-source-accessor.h" 53 .SetGroupName (
"Internet")
54 .AddAttribute (
"ExtensionNumber",
"The IPv6 extension number.",
57 MakeUintegerChecker<uint8_t> ())
66 m_uvar = CreateObject<UniformRandomVariable> ();
98 NS_LOG_FUNCTION (
this << packet << offset << length << ipv6Header << dst << nextHeader << isDropped);
111 uint8_t processedSize = 0;
113 uint8_t *
data =
new uint8_t[size];
116 uint8_t optionType = 0;
117 uint8_t optionLength = 0;
119 while (length > processedSize && !isDropped)
121 optionType = *(
data + processedSize);
122 ipv6Option = ipv6OptionDemux->GetOption (optionType);
130 optionLength = *(
data + processedSize + 1) + 2;
137 stopProcessing =
true;
146 stopProcessing =
true;
159 stopProcessing =
true;
170 optionLength = ipv6Option->Process (packet, offset + processedSize, ipv6Header, isDropped);
173 processedSize += optionLength;
179 return processedSize;
194 static TypeId tid =
TypeId (
"ns3::Ipv6ExtensionHopByHop")
196 .SetGroupName (
"Internet")
224 bool& stopProcessing,
228 NS_LOG_FUNCTION (
this << packet << offset << ipv6Header << dst << nextHeader << isDropped);
241 offset += processedSize;
244 processedSize +=
ProcessOptions (packet, offset, length, ipv6Header, dst, nextHeader, stopProcessing, isDropped, dropReason);
246 return processedSize;
254 static TypeId tid =
TypeId (
"ns3::Ipv6ExtensionDestination")
256 .SetGroupName (
"Internet")
284 bool& stopProcessing,
288 NS_LOG_FUNCTION (
this << packet << offset << ipv6Header << dst << nextHeader << isDropped);
301 offset += processedSize;
304 processedSize +=
ProcessOptions (packet, offset, length, ipv6Header, dst, nextHeader, stopProcessing, isDropped, dropReason);
306 return processedSize;
314 static TypeId tid =
TypeId (
"ns3::Ipv6ExtensionFragment")
316 .SetGroupName (
"Internet")
357 bool& stopProcessing,
361 NS_LOG_FUNCTION (
this << packet << offset << ipv6Header << dst << nextHeader << isDropped);
375 uint16_t fragmentOffset = fragmentHeader.
GetOffset ();
379 std::pair<Ipv6Address, uint32_t> fragmentsId = std::pair<Ipv6Address, uint32_t> (src, identification);
385 MapFragments_t::iterator it =
m_fragments.find (fragmentsId);
388 fragments = Create<Fragments> ();
389 m_fragments.insert (std::make_pair (fragmentsId, fragments));
392 fragmentsId, ipHeader);
393 fragments->SetTimeoutEventId (
timeout);
397 fragments = it->second;
400 if (fragmentOffset == 0)
404 fragments->SetUnfragmentablePart (unfragmentablePart);
407 fragments->AddFragment (p, fragmentOffset, moreFragment);
409 if (fragments->IsEntire ())
411 packet = fragments->GetPacket ();
412 fragments->CancelTimeout ();
414 stopProcessing =
false;
418 stopProcessing =
true;
434 bool moreHeader =
true;
442 std::list<std::pair<Ipv6ExtensionHeader *, uint8_t> > unfragmentablePart;
443 uint32_t unfragmentablePartSize = 0;
447 uint8_t extensionHeaderLength;
457 extensionHeaderLength = hopbyhopHeader->
GetLength ();
470 unfragmentablePartSize += extensionHeaderLength;
476 uint8_t numberAddress = buf[1] / 2;
482 extensionHeaderLength = routingHeader->
GetLength ();
494 unfragmentablePartSize += extensionHeaderLength;
502 extensionHeaderLength = destinationHeader->
GetLength ();
514 unfragmentablePartSize += extensionHeaderLength;
521 uint32_t maxFragmentablePartSize = maxFragmentSize - ipv6HeaderSize - unfragmentablePartSize - fragmentHeaderSize;
522 uint32_t currentFragmentablePartSize = 0;
524 bool moreFragment =
true;
525 uint32_t identification = (uint32_t)
m_uvar->
GetValue (0, (uint32_t)-1);
530 if (p->
GetSize () > offset + maxFragmentablePartSize)
533 currentFragmentablePartSize = maxFragmentablePartSize;
534 currentFragmentablePartSize -= currentFragmentablePartSize % 8;
538 moreFragment =
false;
539 currentFragmentablePartSize = p->
GetSize () - offset;
549 offset += currentFragmentablePartSize;
553 for (
std::list<std::pair<Ipv6ExtensionHeader *, uint8_t> >::iterator it = unfragmentablePart.begin (); it != unfragmentablePart.end (); it++)
580 std::ostringstream oss;
582 fragment->
Print (oss);
586 while (moreFragment);
588 for (
std::list<std::pair<Ipv6ExtensionHeader *, uint8_t> >::iterator it = unfragmentablePart.begin (); it != unfragmentablePart.end (); it++)
593 unfragmentablePart.clear ();
602 MapFragments_t::iterator it =
m_fragments.find (fragmentsId);
604 fragments = it->second;
606 Ptr<Packet> packet = fragments->GetPartialPacket ();
635 std::list<std::pair<Ptr<Packet>, uint16_t> >::iterator it;
637 for (it = m_packetFragments.begin (); it != m_packetFragments.end (); it++)
639 if (it->second > fragmentOffset)
645 if (it == m_packetFragments.end ())
647 m_moreFragment = moreFragment;
650 m_packetFragments.insert (it, std::pair<
Ptr<Packet>, uint16_t> (fragment, fragmentOffset));
655 m_unfragmentable = unfragmentablePart;
660 bool ret = !m_moreFragment && m_packetFragments.size () > 0;
664 uint16_t lastEndOffset = 0;
666 for (
std::list<std::pair<
Ptr<Packet>, uint16_t> >::const_iterator it = m_packetFragments.begin (); it != m_packetFragments.end (); it++)
668 if (lastEndOffset != it->second)
674 lastEndOffset += it->first->GetSize ();
685 for (
std::list<std::pair<
Ptr<Packet>, uint16_t> >::const_iterator it = m_packetFragments.begin (); it != m_packetFragments.end (); it++)
697 if ( m_unfragmentable )
699 p = m_unfragmentable->
Copy ();
706 uint16_t lastEndOffset = 0;
708 for (
std::list<std::pair<
Ptr<Packet>, uint16_t> >::const_iterator it = m_packetFragments.begin (); it != m_packetFragments.end (); it++)
710 if (lastEndOffset != it->second)
715 lastEndOffset += it->first->GetSize ();
723 m_timeoutEventId = event;
729 m_timeoutEventId.Cancel ();
738 static TypeId tid =
TypeId (
"ns3::Ipv6ExtensionRouting")
740 .SetGroupName (
"Internet")
774 bool& stopProcessing,
778 NS_LOG_FUNCTION (
this << packet << offset << ipv6Header << dst << nextHeader << isDropped);
788 packet->
CopyData (buf,
sizeof(buf));
790 uint8_t routingNextHeader = buf[0];
791 uint8_t routingLength = buf[1];
792 uint8_t routingTypeRouting = buf[2];
793 uint8_t routingSegmentsLeft = buf[3];
797 *nextHeader = routingNextHeader;
805 if (ipv6ExtensionRouting == 0)
807 if (routingSegmentsLeft == 0)
818 stopProcessing =
true;
821 return routingLength;
824 return ipv6ExtensionRouting->Process (packet, offset, ipv6Header, dst, (uint8_t *)0, stopProcessing, isDropped, dropReason);
832 static TypeId tid =
TypeId (
"ns3::Ipv6ExtensionRoutingDemux")
834 .SetGroupName (
"Internet")
835 .AddAttribute (
"RoutingExtensions",
"The set of IPv6 Routing extensions registered with this demux.",
838 MakeObjectVectorChecker<Ipv6ExtensionRouting> ())
853 for (Ipv6ExtensionRoutingList_t::iterator it = m_extensionsRouting.begin (); it != m_extensionsRouting.end (); it++)
858 m_extensionsRouting.clear ();
870 m_extensionsRouting.push_back (extensionRouting);
875 for (Ipv6ExtensionRoutingList_t::iterator i = m_extensionsRouting.begin (); i != m_extensionsRouting.end (); i++)
877 if ((*i)->GetTypeRouting () == typeRouting)
887 m_extensionsRouting.remove (extensionRouting);
895 static TypeId tid =
TypeId (
"ns3::Ipv6ExtensionLooseRouting")
897 .SetGroupName (
"Internet")
925 bool& stopProcessing,
929 NS_LOG_FUNCTION (
this << packet << offset << ipv6Header << dst << nextHeader << isDropped);
949 uint8_t numberAddress = buf[1] / 2;
965 uint8_t length = (routingHeader.
GetLength () >> 3) - 1;
966 uint8_t nbAddress = length / 2;
967 uint8_t nextAddressIndex;
970 if (segmentsLeft == 0)
982 stopProcessing =
true;
986 if (segmentsLeft > nbAddress)
992 stopProcessing =
true;
997 nextAddressIndex = nbAddress - segmentsLeft;
1004 stopProcessing =
true;
1013 NS_LOG_LOGIC (
"Time Exceeded : Hop Limit <= 1. Drop!");
1017 stopProcessing =
true;
1036 Ptr<Ipv6Route> rtentry = ipv6rp->RouteOutput (p, ipv6header, 0, err);
1041 ipv6->SendRealOut (rtentry, p, ipv6header);
1061 .SetGroupName (
"Internet")
1088 uint8_t *nextHeader,
1089 bool& stopProcessing,
1093 NS_LOG_FUNCTION (
this << packet << offset << ipv6Header << dst << nextHeader << isDropped);
1107 .SetGroupName (
"Internet")
1134 uint8_t *nextHeader,
1135 bool& stopProcessing,
1139 NS_LOG_FUNCTION (
this << packet << offset << ipv6Header << dst << nextHeader << isDropped);
uint32_t RemoveHeader(Header &header)
Deserialize and remove the header from the internal buffer.
Ptr< UniformRandomVariable > m_uvar
Provides uniform random variables.
IPv6 Extension base If you want to implement a new IPv6 extension, all you have to do is implement a ...
int64_t AssignStreams(int64_t stream)
Assign a fixed random variable stream number to the random variables used by this model...
virtual uint8_t Process(Ptr< Packet > &packet, uint8_t offset, Ipv6Header const &ipv6Header, Ipv6Address dst, uint8_t *nextHeader, bool &stopProcessing, bool &isDropped, Ipv6L3Protocol::DropReason &dropReason)
Process method Called from Ipv6L3Protocol::Receive.
void AddAtStart(uint32_t start)
Ipv6ExtensionLooseRouting()
Constructor.
virtual void DoDispose()
Dispose this object.
void Print(std::ostream &os) const
Print the packet contents.
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by "...
void SetStream(int64_t stream)
Specifies the stream number for the RngStream.
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
uint32_t GetSize(void) const
Returns the the size in bytes of the packet (including the zero-filled initial payload).
NS_ASSERT_MSG(false, "Ipv4AddressGenerator::MaskToIndex(): Impossible")
void Insert(Ptr< Ipv6ExtensionRouting > extensionRouting)
Insert a new IPv6 Routing Extension.
Ptr< Packet > GetPartialPacket() const
Get the packet parts so far received.
static const uint8_t EXT_NUMBER
Fragmentation extension number.
IPv6 layer implementation.
Demultiplexes IPv6 extensions.
automatically resized byte buffer
Ptr< const AttributeAccessor > MakeObjectVectorAccessor(U T::*memberVariable)
MakeAccessorHelper implementation for ObjectVector.
void SetNode(Ptr< Node > node)
Set the node.
Ptr< Packet > CreateFragment(uint32_t start, uint32_t length) const
Create a new packet which contains a fragment of the original packet.
#define NS_ASSERT(condition)
At runtime, in debugging builds, if this condition is not true, the program prints the source file...
virtual void DoDispose()
Dispose this object.
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
static TypeId GetTypeId()
Get the type identificator.
#define NS_LOG_INFO(msg)
Use NS_LOG to output a message of level LOG_INFO.
virtual uint8_t Process(Ptr< Packet > &packet, uint8_t offset, Ipv6Header const &ipv6Header, Ipv6Address dst, uint8_t *nextHeader, bool &stopProcessing, bool &isDropped, Ipv6L3Protocol::DropReason &dropReason)
Process method Called from Ipv6L3Protocol::Receive.
static TypeId GetTypeId()
Get the type identificator.
void GetFragments(Ptr< Packet > packet, Ipv6Header ipv6Header, uint32_t fragmentSize, std::list< Ipv6PayloadHeaderPair > &listFragments)
Fragment a packet.
virtual void DoDispose(void)
Destructor implementation.
#define NS_LOG_FUNCTION_NOARGS()
Output the name of the function.
virtual ~Ipv6ExtensionRoutingDemux()
Destructor.
Ipv6ExtensionRoutingDemux()
Constructor.
SocketErrno
Enumeration of the possible errors returned by a socket.
IPv6 Extension Destination.
Ipv6ExtensionFragment()
Constructor.
~Ipv6ExtensionDestination()
Destructor.
iterator in a Buffer instance
static TypeId GetTypeId()
Get the type identificator.
~Ipv6ExtensionHopByHop()
Destructor.
virtual uint8_t Process(Ptr< Packet > &packet, uint8_t offset, Ipv6Header const &ipv6Header, Ipv6Address dst, uint8_t *nextHeader, bool &stopProcessing, bool &isDropped, Ipv6L3Protocol::DropReason &dropReason)
Process method Called from Ipv6L3Protocol::Receive.
void AddAtEnd(Ptr< const Packet > packet)
Concatenate the input packet at the end of the current packet.
~Ipv6ExtensionLooseRouting()
Destructor.
void RemoveAtStart(uint32_t size)
Remove size bytes from the start of the current packet.
static EventId Schedule(Time const &delay, MEM mem_ptr, OBJ obj)
Schedule an event to expire after delay.
void SetTimeoutEventId(EventId event)
Set the Timeout EventId.
Ipv6ExtensionHopByHop()
Constructor.
virtual uint8_t Process(Ptr< Packet > &packet, uint8_t offset, Ipv6Header const &ipv6Header, Ipv6Address dst, uint8_t *nextHeader, bool &stopProcessing, bool &isDropped, Ipv6L3Protocol::DropReason &dropReason)
Process method Called from Ipv6L3Protocol::Receive.
virtual uint8_t Process(Ptr< Packet > &packet, uint8_t offset, Ipv6Header const &ipv6Header, Ipv6Address dst, uint8_t *nextHeader, bool &stopProcessing, bool &isDropped, Ipv6L3Protocol::DropReason &dropReason)
Process method Called from Ipv6L3Protocol::Receive.
virtual uint8_t GetExtensionNumber() const
Get the extension number.
Hold an unsigned integer type.
IPv6 Extension ESP (Encapsulating Security Payload)
~Ipv6ExtensionFragment()
Destructor.
void CancelTimeout()
Cancel the timeout event.
An implementation of the ICMPv6 protocol.
virtual uint8_t Process(Ptr< Packet > &packet, uint8_t offset, Ipv6Header const &ipv6Header, Ipv6Address dst, uint8_t *nextHeader, bool &stopProcessing, bool &isDropped, Ipv6L3Protocol::DropReason &dropReason)
Process method Called from Ipv6L3Protocol::Receive.
~Ipv6ExtensionRouting()
Destructor.
static TypeId GetTypeId()
Get the type identificator.
virtual uint8_t Process(Ptr< Packet > &packet, uint8_t offset, Ipv6Header const &ipv6Header, Ipv6Address dst, uint8_t *nextHeader, bool &stopProcessing, bool &isDropped, Ipv6L3Protocol::DropReason &dropReason)
Process method Called from Ipv6L3Protocol::Receive.
virtual uint8_t GetTypeRouting() const
Get the type of routing.
Ipv6ExtensionDestination()
Constructor.
IPv6 Extension Routing Demux.
void SetUnfragmentablePart(Ptr< Packet > unfragmentablePart)
Set the unfragmentable part of the packet.
IPv6 Extension "Hop By Hop".
void Remove(Ptr< Ipv6ExtensionRouting > extensionRouting)
Remove a routing extension from this demux.
void AddFragment(Ptr< Packet > fragment, uint16_t fragmentOffset, bool moreFragment)
Add a fragment.
virtual uint8_t GetExtensionNumber() const
Get the extension number.
Ptr< T > GetObject(void) const
Get a pointer to the requested aggregated Object.
void SetNode(Ptr< Node > node)
Set the node.
bool IsMulticast() const
If the IPv6 address is multicast (ff00::/8).
Every class exported by the ns3 library is enclosed in the ns3 namespace.
static TypeId GetTypeId()
Get the type identificator.
virtual uint8_t GetExtensionNumber() const
Get the extension number.
Ptr< Packet > Copy(void) const
performs a COW copy of the packet.
MapFragments_t m_fragments
The hash of fragmented packets.
void RemoveAtEnd(uint32_t size)
Remove size bytes from the end of the current packet.
static TypeId GetTypeId()
The interface ID.
static TypeId GetTypeId()
Get the type identificator.
Ptr< Ipv6ExtensionRouting > GetExtensionRouting(uint8_t typeRouting)
Get the routing extension corresponding to typeRouting.
~Ipv6ExtensionESP()
Destructor.
Ipv6ExtensionAH()
Constructor.
std::pair< Ptr< Packet >, Ipv6Header > Ipv6PayloadHeaderPair
Pair of a packet and an Ipv6 header.
static TypeId GetTypeId()
Get the type identificator.
IPv6 Extension Loose Routing.
virtual uint8_t GetExtensionNumber() const =0
Get the extension number.
NS_LOG_LOGIC("Net device "<< nd<< " is not bridged")
static const uint8_t EXT_NUMBER
Hop-by-hop extension number.
Ipv6Extension()
Constructor.
Describes an IPv6 address.
An identifier for simulation events.
virtual uint8_t GetExtensionNumber() const
Get the extension number.
uint32_t CopyData(uint8_t *buffer, uint32_t size) const
Copy the packet contents to a byte buffer.
Ipv6ExtensionRouting()
Constructor.
Time Seconds(double value)
Construct a Time in the indicated unit.
uint32_t GetOptionsOffset()
Get the offset where the options begin, measured from the start of the extension header.
virtual uint8_t ProcessOptions(Ptr< Packet > &packet, uint8_t offset, uint8_t length, Ipv6Header const &ipv6Header, Ipv6Address dst, uint8_t *nextHeader, bool &stopProcessing, bool &isDropped, Ipv6L3Protocol::DropReason &dropReason)
Process options Called by implementing classes to process the options.
bool IsEntire() const
If all fragments have been added.
virtual uint8_t GetTypeRouting() const
Get the type of routing.
Ptr< Node > GetNode() const
Get the node.
Ipv6ExtensionRoutingList_t m_extensionsRouting
List of IPv6 Routing Extensions supported.
virtual uint8_t GetExtensionNumber() const
Get the extension number.
Ipv6ExtensionESP()
Constructor.
void HandleFragmentsTimeout(std::pair< Ipv6Address, uint32_t > key, Ipv6Header ipHeader)
Process the timeout for packet fragments.
A base class which provides memory management and object aggregation.
static const uint8_t EXT_NUMBER
Destination extension number.
Container for a set of ns3::Object pointers.
Ptr< Node > m_node
The node.
virtual uint8_t GetExtensionNumber() const
Get the extension number.
Ptr< const AttributeAccessor > MakeUintegerAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method...
a unique identifier for an interface.
Ptr< Packet > GetPacket() const
Get the entire packet.
TypeId SetParent(TypeId tid)
Set the parent TypeId.
Buffer::Iterator Begin(void) const
static TypeId GetTypeId()
Get the type identificator.
void AddHeader(const Header &header)
Add header to this packet.
~Ipv6ExtensionAH()
Destructor.
DropReason
Reason why a packet has been dropped.
virtual ~Ipv6Extension()
Destructor.
IPv6 Extension AH (Authentication Header)