2017-03-30 01:32:12 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* net/sixlowpan/sixlowpan_utils.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 2017 Gregory Nutt. All rights reserved.
|
|
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
|
|
|
*
|
|
|
|
* Copyright (C) 2017, Gregory Nutt, all rights reserved
|
|
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
|
|
|
*
|
|
|
|
* Derives from logic in Contiki:
|
|
|
|
*
|
|
|
|
* Copyright (c) 2008, Swedish Institute of Computer Science.
|
|
|
|
* All rights reserved.
|
|
|
|
* Authors: Adam Dunkels <adam@sics.se>
|
|
|
|
* Nicolas Tsiftes <nvt@sics.se>
|
|
|
|
* Niclas Finne <nfi@sics.se>
|
|
|
|
* Mathilde Durvy <mdurvy@cisco.com>
|
|
|
|
* Julien Abeille <jabeille@cisco.com>
|
|
|
|
* Joakim Eriksson <joakime@sics.se>
|
|
|
|
* Joel Hoglund <joel@sics.se>
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. Neither the name of the Institute nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2017-03-31 15:54:58 +02:00
|
|
|
|
2017-03-30 01:32:12 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <string.h>
|
2017-04-01 21:42:00 +02:00
|
|
|
#include <assert.h>
|
2017-03-30 23:38:56 +02:00
|
|
|
#include <errno.h>
|
2017-04-22 00:23:40 +02:00
|
|
|
#include <debug.h>
|
2017-03-30 01:32:12 +02:00
|
|
|
|
2017-04-01 21:42:00 +02:00
|
|
|
#include <nuttx/net/sixlowpan.h>
|
2017-05-05 18:00:18 +02:00
|
|
|
#include <nuttx/wireless/ieee802154/ieee802154_mac.h>
|
2017-04-01 21:42:00 +02:00
|
|
|
|
2017-03-30 02:07:52 +02:00
|
|
|
#include "sixlowpan/sixlowpan_internal.h"
|
2017-03-30 01:32:12 +02:00
|
|
|
|
|
|
|
#ifdef CONFIG_NET_6LOWPAN
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
2017-04-01 21:42:00 +02:00
|
|
|
/****************************************************************************
|
2017-06-23 17:44:36 +02:00
|
|
|
* Name: sixlowpan_{s|e]addrfromip
|
2017-04-01 21:42:00 +02:00
|
|
|
*
|
|
|
|
* Description:
|
2017-06-23 17:44:36 +02:00
|
|
|
* sixlowpan_{s|e]addrfromip(): Extract the IEEE 802.15.14 address from a
|
|
|
|
* MAC-based IPv6 address. sixlowpan_addrfromip() is intended to handle a
|
|
|
|
* tagged address; sixlowpan_saddrfromip() and sixlowpan_eaddrfromip()
|
|
|
|
* specifically handle short and extended addresses, respectively.
|
2017-04-01 21:42:00 +02:00
|
|
|
*
|
|
|
|
* 128 112 96 80 64 48 32 16
|
|
|
|
* ---- ---- ---- ---- ---- ---- ---- ----
|
2017-05-06 22:24:06 +02:00
|
|
|
* xxxx 0000 0000 0000 0000 00ff fe00 xxxx 2-byte short address IEEE 48-bit MAC
|
|
|
|
* xxxx 0000 0000 0000 xxxx xxxx xxxx xxxx 8-byte extended address IEEE EUI-64
|
2017-04-01 21:42:00 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2017-05-05 03:17:38 +02:00
|
|
|
void sixlowpan_saddrfromip(const net_ipv6addr_t ipaddr,
|
|
|
|
FAR struct sixlowpan_saddr_s *saddr)
|
|
|
|
{
|
|
|
|
DEBUGASSERT(ipaddr[0] == HTONS(0xfe80));
|
|
|
|
|
2017-06-22 17:28:25 +02:00
|
|
|
/* Big-endian uint16_t to byte order */
|
|
|
|
|
2017-06-21 21:43:40 +02:00
|
|
|
saddr->u8[0] = ipaddr[7] >> 8;
|
|
|
|
saddr->u8[1] = ipaddr[7] & 0xff;
|
2017-05-05 03:17:38 +02:00
|
|
|
saddr->u8[0] ^= 0x02;
|
|
|
|
}
|
|
|
|
|
|
|
|
void sixlowpan_eaddrfromip(const net_ipv6addr_t ipaddr,
|
|
|
|
FAR struct sixlowpan_eaddr_s *eaddr)
|
|
|
|
{
|
2017-06-22 17:28:25 +02:00
|
|
|
FAR uint8_t *eptr = eaddr->u8;
|
|
|
|
int i;
|
|
|
|
|
2017-05-05 03:17:38 +02:00
|
|
|
DEBUGASSERT(ipaddr[0] == HTONS(0xfe80));
|
|
|
|
|
2017-06-22 17:28:25 +02:00
|
|
|
for (i = 4; i < 8; i++)
|
|
|
|
{
|
|
|
|
/* Big-endian uint16_t to byte order */
|
|
|
|
|
|
|
|
*eptr++ = ipaddr[i] >> 8;
|
|
|
|
*eptr++ = ipaddr[i] & 0xff;
|
|
|
|
}
|
|
|
|
|
2017-05-05 03:17:38 +02:00
|
|
|
eaddr->u8[0] ^= 0x02;
|
|
|
|
}
|
|
|
|
|
2017-05-04 17:05:41 +02:00
|
|
|
void sixlowpan_addrfromip(const net_ipv6addr_t ipaddr,
|
2017-05-05 03:17:38 +02:00
|
|
|
FAR struct sixlowpan_tagaddr_s *addr)
|
2017-04-01 21:42:00 +02:00
|
|
|
{
|
2017-04-04 00:17:10 +02:00
|
|
|
DEBUGASSERT(ipaddr[0] == HTONS(0xfe80));
|
2017-04-01 21:42:00 +02:00
|
|
|
|
2017-05-05 03:17:38 +02:00
|
|
|
if (SIXLOWPAN_IS_IID_16BIT_COMPRESSABLE(ipaddr))
|
|
|
|
{
|
|
|
|
memset(addr, 0, sizeof(struct sixlowpan_tagaddr_s));
|
|
|
|
sixlowpan_saddrfromip(ipaddr, &addr->u.saddr);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sixlowpan_eaddrfromip(ipaddr, &addr->u.eaddr);
|
|
|
|
addr->extended = true;
|
|
|
|
}
|
2017-04-01 23:05:38 +02:00
|
|
|
}
|
|
|
|
|
2017-06-23 17:44:36 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: sixlowpan_ipfrom[s|e]addr
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* sixlowpan_ipfrom[s|e]addr(): Create a link-local, MAC-based IPv6
|
|
|
|
* address from an IEEE802.15.4 short address (saddr) or extended address
|
|
|
|
* (eaddr).
|
|
|
|
*
|
|
|
|
* 128 112 96 80 64 48 32 16
|
|
|
|
* ---- ---- ---- ---- ---- ---- ---- ----
|
|
|
|
* fe80 0000 0000 0000 0000 00ff fe00 xxxx 2-byte short address IEEE 48-bit MAC
|
|
|
|
* fe80 0000 0000 0000 xxxx xxxx xxxx xxxx 8-byte extended address IEEE EUI-64
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
void sixlowpan_ipfromsaddr(FAR const uint8_t *saddr,
|
|
|
|
FAR net_ipv6addr_t ipaddr)
|
|
|
|
{
|
|
|
|
ipaddr[0] = HTONS(0xfe80);
|
|
|
|
ipaddr[1] = 0;
|
|
|
|
ipaddr[2] = 0;
|
|
|
|
ipaddr[3] = 0;
|
|
|
|
ipaddr[4] = 0;
|
|
|
|
ipaddr[5] = HTONS(0x00ff);
|
|
|
|
ipaddr[6] = HTONS(0xfe00);
|
|
|
|
ipaddr[7] = (uint16_t)saddr[0] << 8 | (uint16_t)saddr[1];
|
|
|
|
ipaddr[7] ^= 0x200;
|
|
|
|
}
|
|
|
|
|
|
|
|
void sixlowpan_ipfromeaddr(FAR const uint8_t *eaddr,
|
|
|
|
FAR net_ipv6addr_t ipaddr)
|
|
|
|
{
|
|
|
|
ipaddr[0] = HTONS(0xfe80);
|
|
|
|
ipaddr[1] = 0;
|
|
|
|
ipaddr[2] = 0;
|
|
|
|
ipaddr[3] = 0;
|
|
|
|
ipaddr[4] = (uint16_t)eaddr[0] << 8 | (uint16_t)eaddr[1];
|
|
|
|
ipaddr[5] = (uint16_t)eaddr[2] << 8 | (uint16_t)eaddr[3];
|
|
|
|
ipaddr[6] = (uint16_t)eaddr[4] << 8 | (uint16_t)eaddr[5];
|
2017-06-23 18:08:03 +02:00
|
|
|
ipaddr[7] = (uint16_t)eaddr[6] << 8 | (uint16_t)eaddr[7];
|
2017-06-23 17:44:36 +02:00
|
|
|
ipaddr[4] ^= 0x200;
|
|
|
|
}
|
|
|
|
|
2017-04-01 23:05:38 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: sixlowpan_ismacbased
|
|
|
|
*
|
|
|
|
* Description:
|
2017-05-06 22:24:06 +02:00
|
|
|
* sixlowpan_ismacbased() will return true for IP addresses formed from
|
|
|
|
* IEEE802.15.4 MAC addresses. sixlowpan_addrfromip() is intended to
|
|
|
|
* handle a tagged address or any size; sixlowpan_issaddrbased() and
|
|
|
|
* sixlowpan_iseaddrbased() specifically handle short and extended
|
|
|
|
* addresses. Local addresses are of a fixed but configurable size and
|
|
|
|
* sixlowpan_isaddrbased() is for use with such local addresses.
|
|
|
|
*
|
2017-04-01 23:05:38 +02:00
|
|
|
*
|
|
|
|
* 128 112 96 80 64 48 32 16
|
|
|
|
* ---- ---- ---- ---- ---- ---- ---- ----
|
2017-05-04 17:05:41 +02:00
|
|
|
* fe80 0000 0000 0000 0000 00ff fe00 xxxx 2-byte short address IEEE 48-bit MAC
|
|
|
|
* fe80 0000 0000 0000 xxxx xxxx xxxx xxxx 8-byte extended address IEEE EUI-64
|
2017-04-01 23:05:38 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2017-05-05 03:17:38 +02:00
|
|
|
bool sixlowpan_issaddrbased(const net_ipv6addr_t ipaddr,
|
|
|
|
FAR const struct sixlowpan_saddr_s *saddr)
|
2017-04-01 23:05:38 +02:00
|
|
|
{
|
2017-05-05 03:17:38 +02:00
|
|
|
FAR const uint8_t *byteptr = saddr->u8;
|
|
|
|
|
2017-06-22 19:42:52 +02:00
|
|
|
return (ipaddr[5] == HTONS(0x00ff) &&
|
|
|
|
ipaddr[6] == HTONS(0xfe00) &&
|
2017-06-22 17:28:25 +02:00
|
|
|
ipaddr[7] == (GETUINT16(byteptr, 0) ^ 0x0200));
|
2017-05-05 03:17:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool sixlowpan_iseaddrbased(const net_ipv6addr_t ipaddr,
|
|
|
|
FAR const struct sixlowpan_eaddr_s *eaddr)
|
|
|
|
{
|
|
|
|
FAR const uint8_t *byteptr = eaddr->u8;
|
|
|
|
|
2017-06-22 17:28:25 +02:00
|
|
|
return (ipaddr[4] == (GETUINT16(byteptr, 0) ^ 0x0200) &&
|
|
|
|
ipaddr[5] == GETUINT16(byteptr, 2) &&
|
|
|
|
ipaddr[6] == GETUINT16(byteptr, 4) &&
|
|
|
|
ipaddr[7] == GETUINT16(byteptr, 6));
|
2017-05-05 03:17:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool sixlowpan_ismacbased(const net_ipv6addr_t ipaddr,
|
|
|
|
FAR const struct sixlowpan_tagaddr_s *addr)
|
|
|
|
{
|
|
|
|
if (addr->extended)
|
|
|
|
{
|
|
|
|
return sixlowpan_iseaddrbased(ipaddr, &addr->u.eaddr);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return sixlowpan_issaddrbased(ipaddr, &addr->u.saddr);
|
|
|
|
}
|
2017-04-01 21:42:00 +02:00
|
|
|
}
|
|
|
|
|
2017-04-22 00:23:40 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: sixlowpan_src_panid
|
|
|
|
*
|
|
|
|
* Description:
|
2017-05-05 17:15:28 +02:00
|
|
|
* Get the source PAN ID from the IEEE802.15.4 MAC layer.
|
2017-04-22 00:23:40 +02:00
|
|
|
*
|
|
|
|
* Input parameters:
|
|
|
|
* ieee - A reference IEEE802.15.4 MAC network device structure.
|
|
|
|
* panid - The location in which to return the PAN ID. 0xfff may be
|
|
|
|
* returned if the device is not associated.
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* Zero (OK) on success; a negated errno value on failure.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
int sixlowpan_src_panid(FAR struct ieee802154_driver_s *ieee,
|
2017-06-19 11:55:28 +02:00
|
|
|
FAR uint8_t *panid)
|
2017-04-22 00:23:40 +02:00
|
|
|
{
|
|
|
|
FAR struct net_driver_s *dev = &ieee->i_dev;
|
2017-05-05 17:15:28 +02:00
|
|
|
struct ieee802154_netmac_s arg;
|
2017-04-22 00:23:40 +02:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
memcpy(arg.ifr_name, ieee->i_dev.d_ifname, IFNAMSIZ);
|
2017-06-14 08:49:27 +02:00
|
|
|
arg.u.getreq.attr = IEEE802154_ATTR_MAC_PANID;
|
2017-05-05 17:15:28 +02:00
|
|
|
ret = dev->d_ioctl(dev, MAC802154IOC_MLME_GET_REQUEST,
|
|
|
|
(unsigned long)((uintptr_t)&arg));
|
2017-04-22 00:23:40 +02:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
2017-05-05 17:15:28 +02:00
|
|
|
wlerr("ERROR: MAC802154IOC_MLME_GET_REQUEST failed: %d\n", ret);
|
2017-04-22 00:23:40 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2017-06-19 11:55:28 +02:00
|
|
|
IEEE802154_PANIDCOPY(panid, arg.u.getreq.attrval.mac.panid);
|
2017-04-22 00:23:40 +02:00
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
2017-03-30 01:32:12 +02:00
|
|
|
#endif /* CONFIG_NET_6LOWPAN */
|