23 #include "ns3/channel.h"
24 #include "ns3/packet.h"
26 #include "ns3/boolean.h"
27 #include "ns3/abort.h"
28 #include "ns3/simulator.h"
29 #include "ns3/uinteger.h"
30 #include "ns3/icmpv6-header.h"
31 #include "ns3/ipv6-header.h"
32 #include "ns3/mac16-address.h"
33 #include "ns3/mac48-address.h"
34 #include "ns3/mac64-address.h"
35 #include "ns3/unused.h"
36 #include "ns3/ipv6-l3-protocol.h"
37 #include "ns3/ipv6-extension-header.h"
38 #include "ns3/udp-header.h"
39 #include "ns3/udp-l4-protocol.h"
53 .AddConstructor<SixLowPanNetDevice> ()
54 .AddAttribute (
"Rfc6282",
"Use RFC6282 (IPHC) if true, RFC4944 (HC1) otherwise.",
58 .AddAttribute (
"OmitUdpChecksum",
59 "Omit the UDP checksum in IPHC compression.",
63 .AddAttribute (
"FragmentReassemblyListSize",
"The maximum size of the reassembly buffer (in packets). Zero meaning infinite.",
66 MakeUintegerChecker<uint16_t> ())
67 .AddAttribute (
"FragmentExpirationTimeout",
68 "When this timeout expires, the fragments will be cleared from the buffer.",
72 .AddAttribute (
"CompressionThreshold",
73 "The minimum MAC layer payload size.",
76 MakeUintegerChecker<uint32_t> ())
77 .AddAttribute (
"ForceEtherType",
78 "Force a specific EtherType in L2 frames.",
82 .AddAttribute (
"EtherType",
83 "The specific EtherType to be used in L2 frames.",
86 MakeUintegerChecker<uint16_t> ())
87 .AddTraceSource (
"Tx",
88 "Send - packet (including 6LoWPAN header), "
89 "SixLoWPanNetDevice Ptr, interface index.",
91 "ns3::SixLowPanNetDevice::RxTxTracedCallback")
92 .AddTraceSource (
"Rx",
93 "Receive - packet (including 6LoWPAN header), "
94 "SixLoWPanNetDevice Ptr, interface index.",
96 "ns3::SixLowPanNetDevice::RxTxTracedCallback")
97 .AddTraceSource (
"Drop",
98 "Drop - DropReason, packet (including 6LoWPAN header), "
99 "SixLoWPanNetDevice Ptr, interface index.",
101 "ns3::SixLowPanNetDevice::DropTracedCallback")
113 m_rng = CreateObject<UniformRandomVariable> ();
127 NS_LOG_DEBUG (
"RegisterProtocolHandler for " << device->GetInstanceTypeId ().GetName ());
129 uint16_t protocolType = 0;
136 protocolType, device,
false);
155 iter->second.Cancel ();
175 NS_LOG_FUNCTION (
this << incomingPort << packet << protocol << src << dst);
178 uint8_t dispatchRawVal = 0;
184 copyPkt->
CopyData (&dispatchRawVal,
sizeof(dispatchRawVal));
186 bool isPktDecompressed =
false;
187 bool fragmented =
false;
191 NS_LOG_DEBUG (
"Dispatches: " <<
int(dispatchRawVal) <<
" - " <<
int(dispatchVal) );
205 if ( !isPktDecompressed )
211 copyPkt->
CopyData (&dispatchRawVal,
sizeof(dispatchRawVal));
216 switch ( dispatchVal )
219 NS_LOG_DEBUG (
"Unsupported 6LoWPAN encoding: MESH, dropping.");
223 NS_LOG_DEBUG (
"Unsupported 6LoWPAN encoding: BC0, dropping.");
231 isPktDecompressed =
true;
236 isPktDecompressed =
true;
240 isPktDecompressed =
true;
243 NS_LOG_DEBUG (
"Unsupported 6LoWPAN encoding: dropping.");
248 if ( !isPktDecompressed )
254 NS_LOG_DEBUG (
"Packet decompressed received: " << *copyPkt );
337 return m_netDevice->AddLinkChangeCallback (callback);
398 uint16_t protocolNumber)
404 ret =
DoSend (packet, src, dest, protocolNumber,
false);
411 uint16_t protocolNumber)
416 ret =
DoSend (packet, src, dest, protocolNumber,
true);
423 uint16_t protocolNumber,
426 NS_LOG_FUNCTION (
this << *packet << src << dest << protocolNumber << doSendFrom);
430 uint32_t origHdrSize = 0;
431 uint32_t origPacketSize = packet->
GetSize ();
452 std::list<Ptr<Packet> > fragmentList;
454 std::list<Ptr<Packet> >::iterator it;
456 for ( it = fragmentList.begin (); it != fragmentList.end (); it++ )
458 NS_LOG_DEBUG (
"SixLowPanNetDevice::Send (Fragment) " << **it );
462 success &=
m_netDevice->SendFrom (*it, src, dest, protocolNumber);
466 success &=
m_netDevice->Send (*it, dest, protocolNumber);
475 NS_LOG_LOGIC (
"Compressed packet too short, using uncompressed one");
485 ret =
m_netDevice->SendFrom (packet, src, dest, protocolNumber);
490 ret =
m_netDevice->Send (packet, dest, protocolNumber);
557 NS_LOG_LOGIC (
"Checking source compression: " << mySrcAddr <<
" - " << srcAddr );
560 bool isSrcSrc = (memcmp (bufOne + 8, bufTwo + 8, 8) == 0);
587 NS_LOG_LOGIC (
"Checking destination compression: " << myDstAddr <<
" - " << dstAddr );
590 bool isDstDst = (memcmp (bufOne + 8, bufTwo + 8, 8) == 0);
650 NS_LOG_DEBUG (
"removed " << ret <<
" bytes - pkt is " << *packet);
657 const uint8_t* interface;
658 const uint8_t* prefix;
663 interface = encoding.GetSrcInterface ();
664 for (
int j = 0; j < 8; j++)
666 address[j + 8] = interface[j];
667 address[j] = prefix[j];
673 for (
int j = 0; j < 8; j++)
676 address[j] = prefix[j];
681 interface = encoding.GetSrcInterface ();
684 for (
int j = 0; j < 8; j++)
686 address[j + 8] = interface[j];
697 const uint8_t* interface;
698 const uint8_t* prefix;
703 interface = encoding.GetDstInterface ();
704 for (
int j = 0; j < 8; j++)
706 address[j + 8] = interface[j];
707 address[j] = prefix[j];
713 for (
int j = 0; j < 8; j++)
716 address[j] = prefix[j];
721 interface = encoding.GetDstInterface ();
724 for (
int j = 0; j < 8; j++)
726 address[j + 8] = interface[j];
751 "6LoWPAN: error in decompressing HC1 encoding, unsupported L4 compressed header present.");
805 iphcHeader.
SetNh (
true);
810 iphcHeader.
SetNh (
true);
819 iphcHeader.
SetNh (
true);
824 iphcHeader.
SetNh (
false);
831 iphcHeader.
SetNh (
false);
858 iphcHeader.
SetCid (
false);
862 iphcHeader.
SetSac (
false);
864 uint8_t addressBuf[16];
865 uint8_t unicastAddrCheckerBuf[16];
870 checker.
GetBytes (unicastAddrCheckerBuf);
877 NS_LOG_LOGIC (
"Checking source compression: " << mySrcAddr <<
" - " << srcAddr );
879 if ( mySrcAddr == srcAddr )
883 else if (memcmp (addressBuf, unicastAddrCheckerBuf, 14) == 0)
899 iphcHeader.
SetM (
true);
903 iphcHeader.
SetM (
false);
908 iphcHeader.
SetDac (
false);
918 NS_LOG_LOGIC (
"Checking destination compression: " << myDstAddr <<
" - " << dstAddr );
920 if ( !iphcHeader.
GetM () )
923 if ( myDstAddr == dstAddr )
927 else if (memcmp (addressBuf, unicastAddrCheckerBuf, 14) == 0)
943 uint8_t multicastAddrCheckerBuf[16];
945 multicastCheckAddress.
GetBytes (multicastAddrCheckerBuf);
948 if ( memcmp (addressBuf, multicastAddrCheckerBuf, 15) == 0 )
954 else if ( (addressBuf[0] == multicastAddrCheckerBuf[0])
955 && (memcmp (addressBuf + 2, multicastAddrCheckerBuf + 2, 11) == 0) )
961 else if ( (addressBuf[0] == multicastAddrCheckerBuf[0])
962 && (memcmp (addressBuf + 2, multicastAddrCheckerBuf + 2, 9) == 0) )
977 NS_LOG_DEBUG (
"Packet after IPHC compression: " << *packet);
1015 NS_LOG_DEBUG (
"removed " << ret <<
" bytes - pkt is " << *packet);
1022 if ( encoding.
GetSac () )
1045 if ( encoding.
GetDac () )
1072 uint8_t traf = 0x00;
1073 switch (encoding.
GetTf ())
1076 traf |= encoding.
GetEcn ();
1077 traf = ( traf << 6 ) | encoding.
GetDscp ();
1082 traf |= encoding.
GetEcn ();
1088 traf |= encoding.
GetEcn ();
1089 traf = ( traf << 6 ) | encoding.
GetDscp ();
1099 if ( encoding.
GetNh () )
1102 uint8_t dispatchRawVal = 0;
1105 packet->
CopyData (&dispatchRawVal,
sizeof(dispatchRawVal));
1146 NS_LOG_DEBUG (
"LOWPAN_NHC MUST NOT be used to encode IPv6 Extension Headers "
1147 "that have more than 255 octets following the Length field after compression. "
1148 "Packet uncompressed.");
1161 nhcHeader.
SetNh (
true);
1166 nhcHeader.
SetNh (
true);
1175 nhcHeader.
SetNh (
true);
1180 nhcHeader.
SetNh (
false);
1187 nhcHeader.
SetNh (
false);
1204 NS_LOG_DEBUG (
"LOWPAN_NHC MUST NOT be used to encode IPv6 Extension Headers "
1205 "that have more than 255 octets following the Length field after compression. "
1206 "Packet uncompressed.");
1219 nhcHeader.
SetNh (
true);
1224 nhcHeader.
SetNh (
true);
1233 nhcHeader.
SetNh (
true);
1238 nhcHeader.
SetNh (
false);
1245 nhcHeader.
SetNh (
false);
1262 NS_LOG_DEBUG (
"LOWPAN_NHC MUST NOT be used to encode IPv6 Extension Headers "
1263 "that have more than 255 octets following the Length field after compression. "
1264 "Packet uncompressed.");
1276 nhcHeader.
SetNh (
true);
1281 nhcHeader.
SetNh (
true);
1290 nhcHeader.
SetNh (
true);
1295 nhcHeader.
SetNh (
false);
1302 nhcHeader.
SetNh (
false);
1319 NS_LOG_DEBUG (
"LOWPAN_NHC MUST NOT be used to encode IPv6 Extension Headers "
1320 "that have more than 255 octets following the Length field after compression. "
1321 "Packet uncompressed.");
1333 nhcHeader.
SetNh (
true);
1338 nhcHeader.
SetNh (
true);
1347 nhcHeader.
SetNh (
true);
1352 nhcHeader.
SetNh (
false);
1359 nhcHeader.
SetNh (
false);
1373 NS_ABORT_MSG (
"IPv6 Mobility Header is not supported in ns-3 yet");
1386 NS_LOG_DEBUG (
"Packet after NHC compression: " << *packet);
1398 NS_LOG_DEBUG (
"removed " << ret <<
" bytes - pkt is " << *packet);
1407 uint8_t blobData[260];
1408 blobSize = encoding.
CopyBlob (blobData + 2, 260);
1409 uint8_t paddingSize = 0;
1411 uint8_t actualEncodedHeaderType = encoding.
GetEid ();
1412 uint8_t actualHeaderType;
1415 switch (actualEncodedHeaderType)
1419 if ( encoding.
GetNh () )
1422 uint8_t dispatchRawVal = 0;
1425 packet->
CopyData (&dispatchRawVal,
sizeof(dispatchRawVal));
1444 if ((blobSize + 2) % 8 > 0)
1446 paddingSize = 8 - (blobSize + 2) % 8;
1448 if (paddingSize == 1)
1450 blobData[blobSize + 2] = 0;
1452 else if (paddingSize > 1)
1454 blobData[blobSize + 2] = 1;
1455 blobData[blobSize + 2 + 1] = paddingSize - 2;
1456 for (uint8_t i = 0; i < paddingSize - 2; i++)
1458 blobData[blobSize + 2 + 2 + i] = 0;
1461 blobData [1] = ((blobSize + 2 + paddingSize) >> 3) - 1;
1462 blob.
AddAtStart (blobSize + 2 + paddingSize);
1463 blob.
Begin ().
Write (blobData, blobSize + 2 + paddingSize);
1471 if ( encoding.
GetNh () )
1474 uint8_t dispatchRawVal = 0;
1477 packet->
CopyData (&dispatchRawVal,
sizeof(dispatchRawVal));
1494 blobData [1] = ((blobSize + 2) >> 3) - 1;
1496 blob.
Begin ().
Write (blobData, blobSize + 2);
1503 if ( encoding.
GetNh () )
1506 uint8_t dispatchRawVal = 0;
1509 packet->
CopyData (&dispatchRawVal,
sizeof(dispatchRawVal));
1533 if ( encoding.
GetNh () )
1536 uint8_t dispatchRawVal = 0;
1539 packet->
CopyData (&dispatchRawVal,
sizeof(dispatchRawVal));
1558 if ((blobSize + 2) % 8 > 0)
1560 paddingSize = 8 - (blobSize + 2) % 8;
1562 if (paddingSize == 1)
1564 blobData[blobSize + 2] = 0;
1566 else if (paddingSize > 1)
1568 blobData[blobSize + 2] = 1;
1569 blobData[blobSize + 2 + 1] = paddingSize - 2;
1570 for (uint8_t i = 0; i < paddingSize - 2; i++)
1572 blobData[blobSize + 2 + 2 + i] = 0;
1575 blobData [1] = ((blobSize + 2 + paddingSize) >> 3) - 1;
1576 blob.
AddAtStart (blobSize + 2 + paddingSize);
1577 blob.
Begin ().
Write (blobData, blobSize + 2 + paddingSize);
1584 NS_ABORT_MSG (
"IPv6 Mobility Header is not supported in ns-3 yet");
1591 NS_ABORT_MSG (
"Trying to decode unknown Extension Header");
1596 return actualHeaderType;
1613 udpNhcHeader.
SetC (
false);
1619 udpNhcHeader.
SetC (
true);
1649 NS_LOG_DEBUG (
"Packet after UDP_NHC compression: " << *packet);
1663 NS_LOG_DEBUG (
"removed " << ret <<
" bytes - pkt is " << *packet);
1677 temp |= (temp << 8) | encoding.
GetDstPort ();
1682 temp |= (temp << 8) | encoding.
GetSrcPort ();
1688 temp |= (temp << 4) | encoding.
GetSrcPort ();
1691 temp |= (temp << 4) | encoding.
GetDstPort ();
1699 if ( encoding.
GetC () )
1725 uint32_t origPacketSize,
1726 uint32_t origHdrSize,
1733 uint16_t offsetData = 0;
1734 uint16_t offset = 0;
1737 uint32_t compressedHeaderSize = packetSize - (origPacketSize - origHdrSize);
1740 NS_LOG_LOGIC (
"random tag " << tag <<
" - test " << packetSize );
1748 "6LoWPAN: can not fragment, 6LoWPAN headers are bigger than MTU");
1752 size += compressedHeaderSize;
1757 offset += size + origHdrSize - compressedHeaderSize;
1761 listFragments.push_back (fragment1);
1763 bool moreFrag =
true;
1774 if ( (offsetData + size) > packetSize )
1776 size = packetSize - offsetData;
1780 NS_LOG_LOGIC (
"Fragment creation - " << offset <<
", " << offset );
1788 listFragments.push_back (fragment);
1803 key.first = std::pair<Address, Address> (src, dst);
1806 uint16_t offset = 0;
1820 uint8_t dispatchRawValFrag1 = 0;
1825 p->CopyData (&dispatchRawValFrag1,
sizeof(dispatchRawValFrag1));
1827 NS_LOG_DEBUG (
"Dispatches: " <<
int(dispatchRawValFrag1) <<
" - " <<
int(dispatchValFrag1) );
1830 switch ( dispatchValFrag1 )
1835 p->RemoveHeader(uncompressedHdr);
1853 p->RemoveHeader (fragNHeader);
1861 MapFragments_t::iterator it =
m_fragments.find (key);
1867 MapFragmentsTimers_t::iterator iter;
1871 if ( iter->second.GetTs () < iterFound->second.GetTs () )
1878 std::list< Ptr<Packet> > storedFragments =
m_fragments[oldestKey]->GetFraments ();
1880 fragIter != storedFragments.end (); fragIter++)
1891 fragments = Create<Fragments> ();
1893 m_fragments.insert (std::make_pair (key, fragments));
1901 fragments = it->second;
1951 std::list<std::pair<Ptr<Packet>, uint16_t> >::iterator it;
1952 bool duplicate =
false;
1956 if (it->second > fragmentOffset)
1960 if (it->second == fragmentOffset)
1963 NS_ASSERT_MSG (fragment->
GetSize () == it->first->GetSize (),
"Duplicate fragment size differs. Aborting.");
1969 m_fragments.insert (it, std::make_pair (fragment, fragmentOffset));
1977 m_firstFragment = fragment;
1985 uint16_t lastEndOffset = 0;
1992 NS_LOG_LOGIC (
"Checking overlaps " << lastEndOffset <<
" - " << it->second );
1994 if (lastEndOffset < it->second)
2000 uint16_t fragmentEnd = it->first->GetSize () + it->second;
2001 lastEndOffset = std::max ( lastEndOffset, fragmentEnd );
2005 if ( ret && (lastEndOffset == m_packetSize))
2016 std::list<std::pair<Ptr<Packet>, uint16_t> >::const_iterator it =
m_fragments.begin ();
2019 uint16_t lastEndOffset = 0;
2023 lastEndOffset = it->first->GetSize ();
2027 if ( lastEndOffset > it->second )
2029 NS_ABORT_MSG (
"Overlapping fragments found, forbidden condition");
2036 lastEndOffset += it->first->GetSize ();
2050 std::list< Ptr<Packet> > fragments;
2051 std::list<std::pair<Ptr<Packet>, uint16_t> >::const_iterator iter;
2054 fragments.push_back (iter->first);
2063 MapFragments_t::iterator it =
m_fragments.find (key);
2064 std::list< Ptr<Packet> > storedFragments = it->second->GetFraments ();
2066 fragIter != storedFragments.end (); fragIter++)
2096 if (ipv6Addr.
IsAny ())
2122 if (ipv6Addr.
IsAny ())
bool IsAny() const
If the IPv6 address is the "Any" address.
uint32_t RemoveHeader(Header &header)
Deserialize and remove the header from the internal buffer.
void SetCid(bool cidField)
Set the CID (Context Identifier Extension) compression.
uint8_t GetNextHeader(void) const
Get the Next Header field.
void DecompressLowPanUdpNhc(Ptr< Packet > packet, Ipv6Address saddr, Ipv6Address daddr)
Decompress the headers according to NHC compression.
static bool IsMatchingType(const Address &address)
Ports_e GetPorts(void) const
Get the compressed Src and Dst Ports.
void SetTcflCompression(bool tcflCompression)
Set the Traffic Class and Flow Labels as compressed.
Smart pointer class similar to boost::intrusive_ptr.
virtual uint32_t GetSerializedSize(void) const
Get the serialized size of the packet.
uint8_t GetNextHeader() const
Get the Next Header value.
#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 this RNG stream.
int64_t AssignStreams(int64_t stream)
Assign a fixed random variable stream number to the random variables used by this model...
AttributeValue implementation for Boolean.
void SetHopLimit(uint8_t hopLimit)
Set the Hop Limit field.
#define NS_ABORT_MSG(msg)
Unconditional abnormal program termination with a message.
void SetDstCompression(LowPanHc1Addr_e dstCompression)
Set Destination Compression type.
NetDevice::PromiscReceiveCallback m_promiscRxCallback
The callback used to notify higher layers that a packet has been received in promiscuous mode...
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
6LoWPAN IPv6 uncomprssed header - see RFC 4944
void RemoveAtStart(uint32_t start)
void SetNextHeader(uint8_t nextHeader)
Set the Next Header field values.
virtual void SetIfIndex(const uint32_t index)
static Mac16Address ConvertFrom(const Address &address)
void SetPacketSize(uint32_t packetSize)
Set the packet-to-be-defragmented size.
void AddFirstFragment(Ptr< Packet > fragment)
Add the first packet fragment.
TracedCallback< Ptr< const Packet >, Ptr< SixLowPanNetDevice >, uint32_t > m_txTrace
Callback to trace TX (transmission) packets.
static bool IsMatchingType(const Address &address)
Ptr< const AttributeAccessor > MakeBooleanAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method...
static Dispatch_e GetDispatchType(uint8_t dispatch)
Get the Dispatch type.
static bool ChecksumEnabled(void)
LOWPAN_IPHC base Encoding - see RFC 6282.
automatically resized byte buffer
Fragment buffer size exceeded.
bool IsLinkLocal() const
If the IPv6 address is a link-local address (fe80::/64).
uint64_t GetUid(void) const
Returns the packet's Uid.
virtual bool IsMulticast(void) const
bool IsNull(void) const
Check for null implementation.
void SetPorts(Ports_e port)
Set the compressed Src and Dst Ports.
void SetSrcCompression(LowPanHc1Addr_e srcCompression)
Set Source Compression type.
PacketType
Packet types are used as they are in Linux.
static Ipv6Address GetAny()
Get the "any" (::) Ipv6Address.
uint16_t GetDatagramSize(void) const
Get the datagram size.
static TypeId GetTypeId(void)
Get the type ID.
static Ipv6Address MakeAutoconfiguredAddress(Mac16Address addr, Ipv6Address prefix)
Make the autoconfigured IPv6 address with Mac16Address.
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
uint16_t GetDatagramSize(void) const
Get the datagram size.
virtual Ptr< Channel > GetChannel(void) const
uint32_t GetSize(void) const
Returns the the size in bytes of the packet (including the zero-filled initial payload).
LOWPAN_NHC Extension Header Encoding - see RFC 6282.
std::pair< std::pair< Address, Address >, std::pair< uint16_t, uint16_t > > FragmentKey
Fragment identifier type: src/dst address src/dst port.
virtual void DoDispose(void)
Destructor implementation.
uint16_t m_fragmentReassemblyListSize
How many packets can be rebuilt at the same time.
#define NS_FATAL_ERROR(msg)
Fatal error handling.
void SetDatagramOffset(uint8_t datagramOffset)
Set the datagram offset.
void SetSam(HeaderCompression_e samField)
Set the SAM (Source Address Mode) compression.
static EventId Schedule(Time const &time, MEM mem_ptr, OBJ obj)
Schedule an event to expire at the relative time "time" is reached.
6LoWPAN FRAGN header - see RFC 4944
TrafficClassFlowLabel_e GetTf(void) const
Get the TF (Traffic Class, Flow Label) compression.
virtual Address GetMulticast(Ipv4Address multicastGroup) const
Make and return a MAC multicast address using the provided multicast group.
void SetDatagramSize(uint16_t datagramSize)
Set the datagram size.
virtual bool SetMtu(const uint16_t mtu)
void SetNetDevice(Ptr< NetDevice > device)
Setup SixLowPan to be a proxy for the specified NetDevice.
bool IsTcflCompression() const
Check if the Traffic Class and Flow Labels are compressed.
bool GetM(void) const
Get the M (Multicast) compression.
void SetTrafficClass(uint8_t trafficClass)
Set the Traffic Class value.
a polymophic address class
uint16_t GetDstPort() const
Get the Destination Port.
bool GetNh(void) const
Get the Next Header field value.
std::map< FragmentKey, EventId >::iterator MapFragmentsTimersI_t
Container Iterator for fragment key -> exiration event.
Ptr< const TraceSourceAccessor > MakeTraceSourceAccessor(T a)
Create a TraceSourceAccessor which will control access to the underlying trace source.
Ptr< const AttributeChecker > MakeTimeChecker(const Time min, const Time max)
Helper to make a Time checker with bounded range.
uint8_t GetDscp(void) const
Get the DSCP.
void SetHlim(Hlim_e hlimField)
Set the HLIM (Hop Limit) compression.
virtual uint32_t GetIfIndex(void) const
Ptr< Packet > CreateFragment(uint32_t start, uint32_t length) const
Create a new packet which contains a fragment of the original packet.
uint32_t CompressLowPanNhc(Ptr< Packet > packet, uint8_t headerType, Address const &src, Address const &dst)
Compress the headers according to NHC compression.
virtual uint32_t GetSerializedSize(void) const
Get the serialized size of the packet.
bool m_useIphc
Use IPHC or HC1.
void AddAtEnd(Ptr< const Packet > packet)
Concatenate the input packet at the end of the current packet.
Ptr< Node > m_node
Smart pointer to the Node.
uint16_t GetDatagramTag(void) const
Get the datagram tag.
Ipv6Address GetSrcAddress() const
Get the Source Address.
uint16_t GetSrcPort() const
Get the Destination Port.
void SetBlob(const uint8_t *blob, uint32_t size)
Set the option header data blob.
uint32_t CompressLowPanUdpNhc(Ptr< Packet > packet, bool omitChecksum)
Compress the headers according to NHC compression.
uint32_t CompressLowPanIphc(Ptr< Packet > packet, Address const &src, Address const &dst)
Compress the headers according to IPHC compression.
void SetHc2HeaderPresent(bool hc2HeaderPresent)
Set the next header a HC2 compressed header.
Fragment timeout exceeded.
AttributeValue implementation for Time.
void SetDscp(uint8_t dscp)
Set the DSCP (6bits).
uint8_t GetTrafficClass() const
Get the Traffic Class value.
Hold an unsigned integer type.
void SetDstInterface(const uint8_t *dstInterface)
Set the destination interface.
uint32_t m_packetSize
The size of the reconstructed packet (bytes).
void SetSac(bool sacField)
Set the SAC (Source Address Compression) compression.
bool IsHc2HeaderPresent() const
Check if there is a HC2 compressed header.
Ptr< NetDevice > GetNetDevice() const
Returns a smart pointer to the underlying NetDevice.
uint8_t const * PeekData(void) const
void SetNh(bool nhField)
Set the NH (Next Header) compression.
Ipv6Address GetDstAddress() const
Get the Destination Address.
void SetChecksum(uint16_t checksum)
Set the Checksum field values.
uint16_t GetDatagramTag(void) const
Get the datagram tag.
uint8_t GetHopLimit(void) const
Get the Hop Limit field.
Callback< R > MakeCallback(R(T::*memPtr)(void), OBJ objPtr)
LowPanHc1Addr_e GetDstCompression() const
Get Destination Compression type.
uint8_t GetEcn(void) const
Get the ECN.
void GetBytes(uint8_t buf[16]) const
Get the bytes corresponding to the address.
void SetDstPort(uint16_t port)
Set the Destination Port.
virtual bool IsLinkUp(void) const
void SetDatagramSize(uint16_t datagramSize)
Set the datagram size.
uint8_t GetHopLimit(void) const
Get the "Hop limit" field (TTL).
bool GetNh(void) const
Get the NH (Next Header) compression.
HeaderCompression_e GetDam(void) const
Get the DAM (Destination Address Mode) compression.
TracedCallback< DropReason, Ptr< const Packet >, Ptr< SixLowPanNetDevice >, uint32_t > m_dropTrace
Callback to trace drop packets.
#define NS_LOG_LOGIC(msg)
Use NS_LOG to output a message of level LOG_LOGIC.
Buffer::Iterator Begin(void) const
virtual void SetPromiscReceiveCallback(NetDevice::PromiscReceiveCallback cb)
void SetSrcPort(uint16_t port)
Set the Destination Port.
HeaderCompression_e GetSam(void) const
Get the SAM (Source Address Mode) compression.
static Mac48Address ConvertFrom(const Address &address)
virtual uint32_t GetSerializedSize(void) const
Get the serialized size of the packet.
Time m_fragmentExpirationTimeout
Time limit for fragment rebuilding.
virtual bool NeedsArp(void) const
virtual bool IsBroadcast(void) const
Ptr< Packet > Copy(void) const
performs a COW copy of the packet.
bool m_forceEtherType
Force the EtherType number.
uint32_t PeekHeader(Header &header) const
Deserialize but does not remove the header from the internal buffer.
std::map< FragmentKey, Ptr< Fragments > >::iterator MapFragmentsI_t
Container Iterator for fragment key -> fragments.
virtual void SetNode(Ptr< Node > node)
Every class exported by the ns3 library is enclosed in the ns3 namespace.
void SetNextHeader(uint8_t nextHeader)
Set the Next Header field.
std::list< Ptr< Packet > > GetFraments() const
Get a list of the current stored fragments.
uint32_t m_compressionThreshold
Minimum L2 payload size.
Shim performing 6LoWPAN compression, decompression and fragmentation.
uint32_t GetFlowLabel() const
Get the Flow Label value.
Ipv6Address MakeLinkLocalAddressFromMac(Address const &addr)
make a link-local address from a MAC address.
Ptr< const AttributeChecker > MakeBooleanChecker(void)
bool IsEntire() const
If all fragments have been added.
bool GetC(void) const
Get the C (Checksum).
virtual Ptr< Node > GetNode(void) const
MapFragmentsTimers_t m_fragmentsTimers
Timers related to fragment rebuilding.
virtual Address GetBroadcast(void) const
bool GetSac(void) const
Get the SAC (Source Address Compression) compression.
virtual void AddLinkChangeCallback(Callback< void > callback)
bool IsMulticast() const
If the IPv6 address is multicast (ff00::/8).
NetDevice::ReceiveCallback m_rxCallback
The callback used to notify higher layers that a packet has been received.
Unsupported compression kind.
void SetSrcAddress(Ipv6Address srcAddress)
Set the Source Address.
bool GetDac(void) const
Get the DAC (Destination Address Compression) compression.
const uint8_t * GetDstPrefix() const
Get the destination prefix.
void DoFragmentation(Ptr< Packet > packet, uint32_t origPacketSize, uint32_t origHdrSize, std::list< Ptr< Packet > > &listFragments)
Return the instance type identifier.
Ptr< const AttributeAccessor > MakeTimeAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method...
static Time Now(void)
Return the current simulation virtual time.
uint32_t GetSize(void) const
uint8_t GetNextHeader(void) const
Get the Next Header field value.
6LoWPAN HC1 header - see RFC 4944
virtual bool IsBridge(void) const
Return true if the net device is acting as a bridge.
Dispatch_e
Dispatch values, as defined in RFC4944 and RFC6282.
void SetHopLimit(uint8_t limit)
Set the "Hop limit" field (TTL).
Ptr< Packet > GetPacket() const
Get the entire packet.
void SetDac(bool dacField)
Set the DAC (Destination Address Compression) compression.
void RegisterProtocolHandler(ProtocolHandler handler, uint16_t protocolType, Ptr< NetDevice > device, bool promiscuous=false)
virtual bool Send(Ptr< Packet > packet, const Address &dest, uint16_t protocolNumber)
virtual uint32_t GetSerializedSize(void) const
Get the serialized size of the packet.
#define NS_ASSERT_MSG(condition, message)
At runtime, in debugging builds, if this condition is not true, the program prints the message to out...
void SetSrcInterface(const uint8_t *srcInterface)
Set the source interface.
uint16_t m_etherType
EtherType number (used only if m_forceEtherType is true)
void SetDstPrefix(const uint8_t *dstPrefix)
Set the destination prefix.
static Ipv6Address MakeAutoconfiguredLinkLocalAddress(Mac16Address mac)
Make the autoconfigured link-local IPv6 address with Mac16Address.
Describes an IPv6 address.
void DecompressLowPanIphc(Ptr< Packet > packet, Address const &src, Address const &dst)
Decompress the headers according to IPHC compression.
Ipv4 addresses are stored in host order in this class.
SixLowPanNetDevice()
Constructor for the SixLowPanNetDevice.
Ipv6Address MakeGlobalAddressFromMac(Address const &addr, Ipv6Address prefix)
make a global address from a MAC address.
void SetFlowLabel(uint32_t flowLabel)
Set the Flow Label (20bits).
Eid_e GetEid(void) const
Get the Extension Header Type.
uint32_t GetId(void) const
void ReceiveFromDevice(Ptr< NetDevice > device, Ptr< const Packet > packet, uint16_t protocol, Address const &source, Address const &destination, PacketType packetType)
receives all the packets from a NetDevice for further processing.
static Mac64Address ConvertFrom(const Address &address)
Network layer to device interface.
virtual bool SupportsSendFrom() const
const uint8_t * GetSrcPrefix() const
Get the source prefix.
virtual bool IsPointToPoint(void) const
Return true if the net device is on a point-to-point link.
virtual Address GetAddress(void) const
#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.
uint32_t GetFlowLabel(void) const
Get the Flow Label.
static NhcDispatch_e GetNhcDispatchType(uint8_t dispatch)
Get the NhcDispatch type.
virtual uint32_t GetSerializedSize(void) const
Get the serialized size of the packet.
void SetEid(Eid_e extensionHeaderType)
Set the Extension Header Type.
bool CanCompressLowPanNhc(uint8_t headerType)
Checks if the next header can be compressed using NHC.
void Write(uint8_t const *buffer, uint32_t size)
bool m_omitUdpChecksum
Omit UDP checksum in NC1 encoding.
bool DoSend(Ptr< Packet > packet, const Address &source, const Address &dest, uint16_t protocolNumber, bool doSendFrom)
TracedCallback< Ptr< const Packet >, Ptr< SixLowPanNetDevice >, uint32_t > m_rxTrace
Callback to trace RX (reception) packets.
uint32_t CopyData(uint8_t *buffer, uint32_t size) const
Copy the packet contents to a byte buffer.
virtual uint16_t GetMtu(void) const
Returns the link-layer MTU for this interface.
void SetNh(bool nhField)
Set the NH field values.
void SetTf(TrafficClassFlowLabel_e tfField)
Set the TF (Traffic Class, Flow Label) compression.
virtual bool SendFrom(Ptr< Packet > packet, const Address &source, const Address &dest, uint16_t protocolNumber)
uint32_t CopyBlob(uint8_t *blob, uint32_t size) const
Get the option header data blob.
static const uint32_t packetSize
void SetDstAddress(Ipv6Address dstAddress)
Set the Destination Address.
Ptr< NetDevice > m_netDevice
Smart pointer to the underlying NetDevice.
void HandleFragmentsTimeout(FragmentKey key, uint32_t iif)
Process the timeout for packet fragments.
bool AddAtStart(uint32_t start)
void AddFragment(Ptr< Packet > fragment, uint16_t fragmentOffset)
Add a fragment to the pool.
bool ProcessFragment(Ptr< Packet > &packet, Address const &src, Address const &dst, bool isFirst)
Process a packet fragment.
void SetM(bool mField)
Set the M (Multicast) compression.
NhcDispatch_e
Dispatch values for Next Header compression.
void SetSrcPrefix(const uint8_t *srcPrefix)
Set the source prefix.
static bool IsMatchingType(const Address &address)
void SetDatagramTag(uint16_t datagramTag)
Set the datagram tag.
void SetEcn(uint8_t ecn)
Set the ECN (2bits).
6LoWPAN FRAG1 header - see RFC 4944
uint32_t CompressLowPanHc1(Ptr< Packet > packet, Address const &src, Address const &dst)
Compress the headers according to HC1 compression.
uint8_t GetDatagramOffset(void) const
Get the datagram offset.
Ptr< T > GetObject(void) const
Get a pointer to the requested aggregated Object.
Ptr< const AttributeAccessor > MakeUintegerAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method...
virtual void SetReceiveCallback(NetDevice::ReceiveCallback cb)
LowPanHc1Addr_e GetSrcCompression() const
Get Source Compression type.
a unique identifier for an interface.
static const uint8_t PROT_NUMBER
protocol number (0x11)
TypeId SetParent(TypeId tid)
uint32_t m_ifIndex
Interface index.
UDP LOWPAN_NHC Extension Header Encoding - see RFC 6282.
void SetC(bool cField)
Set the C (Checksum).
uint8_t DecompressLowPanNhc(Ptr< Packet > packet, Address const &src, Address const &dst, Ipv6Address srcAddress, Ipv6Address dstAddress)
Decompress the headers according to NHC compression.
static const uint16_t PROT_NUMBER
The protocol number for IPv6 (0x86DD).
virtual void SetAddress(Address address)
Set the address of this interface.
void DecompressLowPanHc1(Ptr< Packet > packet, Address const &src, Address const &dst)
Decompress the headers according to HC1 compression.
void SetNextHeader(uint8_t nextHeader)
Set the Next Header value.
virtual uint32_t GetSerializedSize(void) const
Get the serialized size of the packet.
void AddHeader(const Header &header)
Add header to this packet.
void SetDam(HeaderCompression_e damField)
Set the DAM (Destination Address Mode) compression.
MapFragments_t m_fragments
Fragments hold to be rebuilt.
Ptr< UniformRandomVariable > m_rng
Rng for the fragments tag.
void SetFlowLabel(uint32_t flowLabel)
Set the Flow Label value.
virtual void DoDispose(void)
Destructor implementation.
void SetDatagramTag(uint16_t datagramTag)
Set the datagram tag.
uint16_t GetChecksum(void) const
Get the Checksum field value.