2008-10-14 11:50:32 +02:00
|
|
|
/**
|
|
|
|
\addtogroup uip
|
|
|
|
@{
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \defgroup sicslowpan 6LoWPAN implementation
|
|
|
|
* @{
|
|
|
|
|
2015-10-30 11:41:59 +01:00
|
|
|
6lowpan is a Working Group in IETF which defines the use of IPv6 on
|
2008-10-14 11:50:32 +02:00
|
|
|
IEEE 802.15.4 links.
|
|
|
|
|
|
|
|
Our implementation is based on RFC4944 <em>Transmission of IPv6
|
2015-10-30 11:41:59 +01:00
|
|
|
Packets over IEEE 802.15.4 Networks</em>, draft-hui-6lowpan-interop-00
|
2008-10-14 11:50:32 +02:00
|
|
|
<em>Interoperability Test for 6LoWPAN</em>, and draft-hui-6lowpan-hc-01
|
|
|
|
<em>Compression format for IPv6 datagrams in 6lowpan Networks</em>.
|
|
|
|
|
|
|
|
<HR>
|
|
|
|
|
|
|
|
\section drafts Specifications implemented
|
|
|
|
|
|
|
|
\note We currently only support 802.15.4 64-bit addresses.
|
|
|
|
|
|
|
|
\subsection rfc4944 RFC 4944
|
|
|
|
|
|
|
|
RFC4944 defines address configuration mechanisms based on 802.15.4
|
2015-10-30 11:41:59 +01:00
|
|
|
16-bit and 64-bit addresses, fragmentation of IPv6 packets below IP
|
2008-10-14 11:50:32 +02:00
|
|
|
layer, IPv6 and UDP header compression, a mesh header to enable link-layer
|
|
|
|
forwarding in a mesh under topology, and a broadcast header to enable
|
|
|
|
broadcast in a mesh under topology.
|
|
|
|
|
|
|
|
|
|
|
|
We implement addressing, fragmentation, and header compression. We support
|
|
|
|
the header compression scenarios defined in draft-hui-6lowpan-interop-00.
|
2015-10-30 11:41:59 +01:00
|
|
|
This draft defines an interoperability scenario which was used between
|
2008-10-14 11:50:32 +02:00
|
|
|
ArchRock and Sensinode implementations.
|
|
|
|
|
|
|
|
We do not implement mesh under related features, as we target route over
|
|
|
|
techniques.
|
|
|
|
|
2015-09-14 17:34:08 +02:00
|
|
|
\subsection RFC 6282
|
2008-10-14 11:50:32 +02:00
|
|
|
|
2015-09-14 17:34:08 +02:00
|
|
|
RFC6282 defines a stateful header compression mechanism
|
|
|
|
which deprecate the stateless header compression mechanism
|
2008-10-14 11:50:32 +02:00
|
|
|
defined in RFC4944. It is much more powerfull and flexible, in
|
|
|
|
particular it allows compression of some multicast addresses and of all
|
|
|
|
global unicast addresses.
|
|
|
|
|
|
|
|
<HR>
|
|
|
|
|
|
|
|
\section general Implementation overview
|
|
|
|
|
|
|
|
6lowpan does not run as a separate process. It is called by the MAC %process
|
|
|
|
when a 6lowpan packet is received, and by the tcpip %process when an
|
|
|
|
IPv6 packet needs to be sent.
|
|
|
|
|
|
|
|
It is initialized from the MAC %process, which calls sicslowpan_init
|
|
|
|
(giving as argument a pointer to the mac_driver structure).
|
|
|
|
|
|
|
|
The main 6lowpan functions are implemented in the sicslowpan.h and
|
|
|
|
sicslowpan.c files. They are used to format packets between the
|
2015-10-30 11:41:59 +01:00
|
|
|
802.15.4 and the IPv6 layers.
|
2008-10-14 11:50:32 +02:00
|
|
|
|
|
|
|
6lowpan also creates a few IPv6 and link-layer dependencies which are
|
|
|
|
detailed in the next section.
|
|
|
|
|
|
|
|
<HR>
|
|
|
|
|
|
|
|
\section implementation Implementation details
|
|
|
|
|
|
|
|
\subsection Addressing
|
|
|
|
|
|
|
|
<b>Link-layer addresses</b><br>
|
|
|
|
The format of a 802.15.4 address is defined in uip.h.
|
|
|
|
\code
|
|
|
|
/** \brief 64 bit 802.15.4 address */
|
|
|
|
struct uip_802154_shortaddr {
|
2012-02-20 20:45:47 +01:00
|
|
|
uint8_t addr[2];
|
2008-10-14 11:50:32 +02:00
|
|
|
};
|
|
|
|
/** \brief 16 bit 802.15.4 address */
|
|
|
|
struct uip_802154_longaddr {
|
2012-02-20 20:45:47 +01:00
|
|
|
uint8_t addr[8];
|
2008-10-14 11:50:32 +02:00
|
|
|
};
|
|
|
|
/** \brief 802.15.4 address */
|
|
|
|
typedef struct uip_802154_longaddr uip_lladdr_t;
|
|
|
|
#define UIP_802154_SHORTADDR_LEN 2
|
|
|
|
#define UIP_802154_LONGADDR_LEN 8
|
|
|
|
#define UIP_LLADDR_LEN UIP_802154_LONGADDR_LEN
|
|
|
|
\endcode
|
|
|
|
|
|
|
|
<b>Neighbor Discovery Link Layer Address options </b><br>
|
2015-10-30 11:41:59 +01:00
|
|
|
The format of ND link-layer address options depends on the length of
|
|
|
|
the link-layer addresses.
|
2008-10-14 11:50:32 +02:00
|
|
|
802.15.4 specificities regarding link-layer address options are implemented in uip-nd6.h.
|
|
|
|
\code
|
|
|
|
#define UIP_ND6_OPT_SHORT_LLAO_LEN 8
|
|
|
|
#define UIP_ND6_OPT_LONG_LLAO_LEN 16
|
2015-10-30 11:41:59 +01:00
|
|
|
#define UIP_ND6_OPT_LLAO_LEN UIP_ND6_OPT_LONG_LLAO_LEN
|
2008-10-14 11:50:32 +02:00
|
|
|
\endcode
|
|
|
|
|
|
|
|
<b>Address Autoconfiguration</b><br>
|
|
|
|
The address autoconfiguration mechanism also depends on the format of
|
2015-11-15 12:06:46 +01:00
|
|
|
the link-layer address. The dependency is reflected in the
|
|
|
|
#uip_ds6_set_addr_iid function in uip-ds6.c.
|
2008-10-14 11:50:32 +02:00
|
|
|
\code
|
|
|
|
#if (UIP_LLADDR_LEN == 8)
|
|
|
|
memcpy(ipaddr->u8 + 8, lladdr, UIP_LLADDR_LEN);
|
2015-10-30 11:41:59 +01:00
|
|
|
ipaddr->u8[8] ^= 0x02;
|
2008-10-14 11:50:32 +02:00
|
|
|
\endcode
|
|
|
|
|
|
|
|
\subsection io Packet Input/Output
|
|
|
|
|
2015-09-14 17:34:08 +02:00
|
|
|
At initialization, the input function in sicslowpan.c is set as the
|
|
|
|
function to be called by the MAC upon packet reception. The output
|
2008-10-14 11:50:32 +02:00
|
|
|
function is set as the tcpip_output function.<br>
|
|
|
|
At packet reception, the link-layer copies the 802.15.4 payload in the
|
|
|
|
rime buffer, and sets its length. It also stores the source and
|
|
|
|
destination link-layer addresses as two rime addresses.
|
|
|
|
\code
|
2009-03-12 22:58:20 +01:00
|
|
|
packetbuf_copyfrom(&rx_frame.payload, rx_frame.payload_length);
|
|
|
|
packetbuf_set_datalen(rx_frame.payload_length);
|
2015-10-30 11:41:59 +01:00
|
|
|
packetbuf_set_addr(PACKETBUF_ADDR_RECEIVER, (const rimeaddr_t *)&rx_frame.dest_addr);
|
2009-03-12 22:58:20 +01:00
|
|
|
packetbuf_set_addr(PACKETBUF_ADDR_SENDER, (const rimeaddr_t *)&rx_frame.src_addr);
|
2008-10-14 11:50:32 +02:00
|
|
|
\endcode
|
2015-09-14 17:34:08 +02:00
|
|
|
It then calls the sicslowpan input function. Similarly, when the IPv6 layer
|
2008-10-14 11:50:32 +02:00
|
|
|
has a packet to send over the radio, it puts the packet in uip_buf,
|
2015-09-14 17:34:08 +02:00
|
|
|
sets uip_len and calls the sicslowpan output function.
|
2008-10-14 11:50:32 +02:00
|
|
|
|
|
|
|
\subsection frag Fragmentation
|
|
|
|
|
2015-09-14 17:34:08 +02:00
|
|
|
\li output function: When an IP packet, after header compression, is
|
2015-10-30 11:41:59 +01:00
|
|
|
too big to fit in a 802.15.4 frame, it is fragmented in several packets
|
|
|
|
which are sent successively over the radio. The packets are formatted
|
2008-10-14 11:50:32 +02:00
|
|
|
as defined in RFC 4944. Only the first fragment contains the IP/UDP
|
|
|
|
compressed or uncompressed header fields.
|
|
|
|
|
2015-09-14 17:34:08 +02:00
|
|
|
\li input function: This function takes care of fragment
|
2015-10-30 11:41:59 +01:00
|
|
|
reassembly. We do not assume that the fragments are received in order.
|
|
|
|
When reassembly of a packet is ongoing, we discard any non fragmented
|
2008-10-14 11:50:32 +02:00
|
|
|
packet or fragment from another packet. Reassembly times out after
|
|
|
|
#SICSLOWPAN_REASS_MAXAGE = 20s.
|
|
|
|
|
|
|
|
\note Fragmentation support is enabled by setting the #SICSLOWPAN_CONF_FRAG
|
|
|
|
compilation option.
|
|
|
|
|
2015-09-14 17:34:08 +02:00
|
|
|
\note In order to make it possible to reassemble multiple packets at
|
|
|
|
the same time we have a mechanism for storing each fragment per sender
|
|
|
|
and tag until it is fully reassembled or the reassemly times out.
|
2015-10-30 11:41:59 +01:00
|
|
|
At reception, once all the fragments are received, we copy the packet
|
2008-10-14 11:50:32 +02:00
|
|
|
to #uip_buf, set #uip_len, and call #tcpip_input.
|
|
|
|
|
|
|
|
\note #MAC_MAX_PAYLOAD defines the maximum payload
|
|
|
|
length in a 802.15.4 frame. For now it is constant and equal to 102
|
|
|
|
bytes (the 802.15.4 frame can be maximum 127 bytes long, and
|
|
|
|
the header 25 bytes long).
|
|
|
|
|
|
|
|
\subsection hc Header Compression
|
|
|
|
|
|
|
|
<b>Compression schemes</b><br>
|
|
|
|
The #SICSLOWPAN_CONF_COMPRESSION compilation option defines the
|
2015-09-14 17:34:08 +02:00
|
|
|
compression scheme supported. We support IPHC, and IPv6 compression.
|
|
|
|
IPv6 compression are defined in RFC4944, IPHC in RFC6282.
|
|
|
|
What we call IPv6 compression means sending packets
|
2008-10-14 11:50:32 +02:00
|
|
|
with no compression, and adding the IPv6 dispatch before the IPv6 header.<br>
|
2015-10-30 11:41:59 +01:00
|
|
|
If at compile time IPv6 "compression" is chosen, packets sent will never
|
2008-10-14 11:50:32 +02:00
|
|
|
be compressed, and compressed packets will not be processed at reception.<br>
|
2015-09-14 17:34:08 +02:00
|
|
|
|
|
|
|
If at compile time IPHC is chosen, we will try to compress
|
2015-11-15 12:06:46 +01:00
|
|
|
all fields at sending, and will accept packets compressed with the
|
2015-09-14 17:34:08 +02:00
|
|
|
chosen scheme, as well as uncompressed packets.<br>.
|
2008-10-14 11:50:32 +02:00
|
|
|
|
|
|
|
<b>Compression related functions</b><br>
|
2015-09-14 17:34:08 +02:00
|
|
|
When a packet is received, the input function is called. Fragmentation
|
2008-10-14 11:50:32 +02:00
|
|
|
issues are handled, then we check the dispatch byte: if it is IPv6, we
|
2015-09-14 17:34:08 +02:00
|
|
|
treat the packet inline. If it is IPHC, the decompression function
|
|
|
|
(uncompress_hdr_iphc) is called.<br>
|
2008-10-14 11:50:32 +02:00
|
|
|
When a packet needs to be sent, we try to compress it. If only the IPv6
|
2015-11-15 12:06:46 +01:00
|
|
|
compression support is enabled, we just add the IPv6 dispatch before the
|
2015-09-14 17:34:08 +02:00
|
|
|
802.15.4 payload. If IPHC support is enabled, we call the
|
|
|
|
corresponding compression function (compress_hdr_iphc)
|
2008-10-14 11:50:32 +02:00
|
|
|
to compress the packet as much as possible.
|
|
|
|
|
2015-09-14 17:34:08 +02:00
|
|
|
<b>IPHC comments</b><br>
|
|
|
|
IPHC uses address contexts to enable compression of global unicast
|
2008-10-14 11:50:32 +02:00
|
|
|
addresses. All nodes must share context (namely the global prefixes in
|
|
|
|
use) to compress and uncompress such addresses successfully. The context
|
2015-09-14 17:34:08 +02:00
|
|
|
number is defined by 4 bits. Context 00 is reserved for the link local
|
2015-10-30 11:41:59 +01:00
|
|
|
context. Other contexts have to be distributed within the LoWPAN
|
2015-09-14 17:34:08 +02:00
|
|
|
dynamically, by means of ND extensions yet to be implemented.<br>
|
2008-10-14 11:50:32 +02:00
|
|
|
Until then, if you want to test global address compression, you need
|
|
|
|
to configure the global contexts manually.
|
|
|
|
|
|
|
|
<HR>
|
|
|
|
|
|
|
|
*/
|
|
|
|
/** @} */
|
|
|
|
/** @} */
|