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
|
|
|
|
|
|
|
|
/****************************************************************************
|
2017-06-30 17:32:17 +02:00
|
|
|
* Private Functions
|
2017-03-30 01:32:12 +02:00
|
|
|
****************************************************************************/
|
|
|
|
|
2017-04-01 21:42:00 +02:00
|
|
|
/****************************************************************************
|
2017-06-30 17:32:17 +02:00
|
|
|
* Name: sixlowpan_[s|e]addrfromip
|
2017-04-01 21:42:00 +02:00
|
|
|
*
|
|
|
|
* Description:
|
2017-06-30 17:32:17 +02:00
|
|
|
* sixlowpan_[s|e]addrfromip(): Extract the IEEE 802.15.14 address from a
|
|
|
|
* MAC-based IPv6 address. sixlowpan_saddrfromip() and
|
|
|
|
* sixlowpan_eaddrfromip() 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-06-30 17:32:17 +02:00
|
|
|
#ifndef CONFIG_NET_STARPOINT
|
|
|
|
static void sixlowpan_saddrfromip(const net_ipv6addr_t ipaddr,
|
|
|
|
FAR struct sixlowpan_saddr_s *saddr)
|
2017-05-05 03:17:38 +02:00
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2017-06-30 17:32:17 +02:00
|
|
|
static void sixlowpan_eaddrfromip(const net_ipv6addr_t ipaddr,
|
|
|
|
FAR struct sixlowpan_eaddr_s *eaddr)
|
2017-05-05 03:17:38 +02:00
|
|
|
{
|
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-06-30 17:32:17 +02:00
|
|
|
#endif /* !CONFIG_NET_STARPOINT */
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: sixlowpan_coord_eaddr
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Get the extended address of the PAN coordinator.
|
|
|
|
*
|
|
|
|
* Input parameters:
|
2017-07-29 21:42:26 +02:00
|
|
|
* radio - Reference to a radio network driver state instance.
|
2017-06-30 17:32:17 +02:00
|
|
|
* eaddr - The location in which to return the extended address.
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* Zero (OK) on success; a negated errno value on failure.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#if defined(CONFIG_NET_STARPOINT) && defined(CONFIG_NET_6LOWPAN_EXTENDEDADDR)
|
2017-07-29 21:42:26 +02:00
|
|
|
static int sixlowpan_coord_eaddr(FAR struct sixlowpan_driver_s *radio,
|
2017-06-30 17:32:17 +02:00
|
|
|
FAR struct sixlowpan_eaddr_s *eaddr)
|
|
|
|
{
|
2017-07-29 21:42:26 +02:00
|
|
|
FAR struct net_driver_s *dev = &radio->r_dev;
|
2017-06-30 17:32:17 +02:00
|
|
|
struct ieee802154_netmac_s arg;
|
|
|
|
int ret;
|
|
|
|
|
2017-07-29 21:42:26 +02:00
|
|
|
memcpy(arg.ifr_name, radio->r_dev.d_ifname, IFNAMSIZ);
|
2017-06-30 17:32:17 +02:00
|
|
|
arg.u.getreq.attr = IEEE802154_ATTR_MAC_COORD_EADDR ;
|
|
|
|
ret = dev->d_ioctl(dev, MAC802154IOC_MLME_GET_REQUEST,
|
|
|
|
(unsigned long)((uintptr_t)&arg));
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
nerr("ERROR: MAC802154IOC_MLME_GET_REQUEST failed: %d\n", ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
IEEE802154_EADDRCOPY(eaddr->u8, arg.u.getreq.attrval.mac.eaddr);
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: sixlowpan_coord_saddr
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Get the short address of the PAN coordinator.
|
|
|
|
*
|
|
|
|
* Input parameters:
|
2017-07-29 21:42:26 +02:00
|
|
|
* radio - Reference to a radio network driver state instance.
|
2017-06-30 17:32:17 +02:00
|
|
|
* saddr - The location in which to return the short address.
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* Zero (OK) on success; a negated errno value on failure.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#if defined(CONFIG_NET_STARPOINT) && !defined(CONFIG_NET_6LOWPAN_EXTENDEDADDR)
|
2017-07-29 21:42:26 +02:00
|
|
|
static int sixlowpan_coord_saddr(FAR struct sixlowpan_driver_s *radio,
|
2017-06-30 17:32:17 +02:00
|
|
|
FAR struct sixlowpan_saddr_s *saddr)
|
|
|
|
{
|
2017-07-29 21:42:26 +02:00
|
|
|
FAR struct net_driver_s *dev = &radio->r_dev;
|
2017-06-30 17:32:17 +02:00
|
|
|
struct ieee802154_netmac_s arg;
|
|
|
|
int ret;
|
|
|
|
|
2017-07-29 21:42:26 +02:00
|
|
|
memcpy(arg.ifr_name, radio->r_dev.d_ifname, IFNAMSIZ);
|
2017-06-30 17:32:17 +02:00
|
|
|
arg.u.getreq.attr = IEEE802154_ATTR_MAC_COORD_SADDR ;
|
|
|
|
ret = dev->d_ioctl(dev, MAC802154IOC_MLME_GET_REQUEST,
|
|
|
|
(unsigned long)((uintptr_t)&arg));
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
nerr("ERROR: MAC802154IOC_MLME_GET_REQUEST failed: %d\n", ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
IEEE802154_SADDRCOPY(saddr->u8, arg.u.getreq.attrval.mac.saddr);
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: sixlowpan_destaddrfromip
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* sixlowpan_destaddrfromip(): Extract the IEEE 802.15.14 destination
|
|
|
|
* address from a MAC-based destination IPv6 address. This function
|
|
|
|
* handles a tagged address union which may either a short or and
|
|
|
|
* extended destination address.
|
|
|
|
*
|
|
|
|
* 128 112 96 80 64 48 32 16
|
|
|
|
* ---- ---- ---- ---- ---- ---- ---- ----
|
|
|
|
* 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
|
|
|
|
*
|
|
|
|
* In the case there the IEEE 802.15.4 node functions as an endpoint in a
|
|
|
|
* start topology, the destination address will, instead, be the address
|
|
|
|
* of the star hub (which is assumed to be the address of the cooordinator).
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2017-05-05 03:17:38 +02:00
|
|
|
|
2017-07-29 21:42:26 +02:00
|
|
|
int sixlowpan_destaddrfromip(FAR struct sixlowpan_driver_s *radio,
|
2017-06-30 17:32:17 +02:00
|
|
|
const net_ipv6addr_t ipaddr,
|
|
|
|
FAR struct sixlowpan_tagaddr_s *destaddr)
|
2017-04-01 21:42:00 +02:00
|
|
|
{
|
2017-06-30 17:32:17 +02:00
|
|
|
#ifdef CONFIG_NET_STARPOINT
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
/* If this node is a "point" in a star topology, then the destination
|
|
|
|
* MAC address is the address of the hub/PAN coordinator.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef CONFIG_NET_6LOWPAN_EXTENDEDADDR
|
2017-07-29 21:42:26 +02:00
|
|
|
ret = sixlowpan_coord_eaddr(radio, &destaddr->u.eaddr);
|
2017-06-30 17:32:17 +02:00
|
|
|
destaddr->extended = true;
|
|
|
|
#else
|
|
|
|
memset(destaddr, 0, sizeof(struct sixlowpan_tagaddr_s));
|
2017-07-29 21:42:26 +02:00
|
|
|
ret = sixlowpan_coord_saddr(radio, &destaddr->u.saddr);
|
2017-06-30 17:32:17 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
#else
|
2017-04-04 00:17:10 +02:00
|
|
|
DEBUGASSERT(ipaddr[0] == HTONS(0xfe80));
|
2017-04-01 21:42:00 +02:00
|
|
|
|
2017-06-30 17:32:17 +02:00
|
|
|
/* Otherwise, the destination MAC address is encoded in the IP address */
|
|
|
|
|
2017-05-05 03:17:38 +02:00
|
|
|
if (SIXLOWPAN_IS_IID_16BIT_COMPRESSABLE(ipaddr))
|
|
|
|
{
|
2017-06-30 17:32:17 +02:00
|
|
|
memset(destaddr, 0, sizeof(struct sixlowpan_tagaddr_s));
|
|
|
|
sixlowpan_saddrfromip(ipaddr, &destaddr->u.saddr);
|
2017-05-05 03:17:38 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-06-30 17:32:17 +02:00
|
|
|
sixlowpan_eaddrfromip(ipaddr, &destaddr->u.eaddr);
|
|
|
|
destaddr->extended = true;
|
2017-05-05 03:17:38 +02:00
|
|
|
}
|
2017-06-30 17:32:17 +02:00
|
|
|
|
|
|
|
return OK;
|
|
|
|
#endif
|
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
|
2017-06-30 17:32:17 +02:00
|
|
|
* IEEE802.15.4 MAC addresses. sixlowpan_destaddrfromip() is intended to
|
|
|
|
* handle a tagged address or any size. Local addresses are of a fixed
|
|
|
|
* but configurable size and sixlowpan_isaddrbased() is for use with such
|
|
|
|
* local addresses.
|
2017-05-06 22:24:06 +02:00
|
|
|
*
|
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:
|
2017-07-29 21:42:26 +02:00
|
|
|
* radio - Reference to a radio network driver state instance.
|
2017-04-22 00:23:40 +02:00
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2017-07-29 21:42:26 +02:00
|
|
|
int sixlowpan_src_panid(FAR struct sixlowpan_driver_s *radio,
|
2017-06-19 11:55:28 +02:00
|
|
|
FAR uint8_t *panid)
|
2017-04-22 00:23:40 +02:00
|
|
|
{
|
2017-07-29 21:42:26 +02:00
|
|
|
FAR struct net_driver_s *dev = &radio->r_dev;
|
2017-05-05 17:15:28 +02:00
|
|
|
struct ieee802154_netmac_s arg;
|
2017-04-22 00:23:40 +02:00
|
|
|
int ret;
|
|
|
|
|
2017-07-29 21:42:26 +02:00
|
|
|
memcpy(arg.ifr_name, radio->r_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-06-28 01:01:23 +02:00
|
|
|
nerr("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 */
|