summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2015-02-03 08:54:42 -0600
committerGregory Nutt <gnutt@nuttx.org>2015-02-03 08:54:42 -0600
commit26c2bd077a39cb19d9b86daafb1cf24167afd450 (patch)
tree42ab477e20efaad52dfea24f8b99cb1c0dfd14fb
parent5694858d44cc20fae42518c739ba59afd8d77b87 (diff)
downloadpx4-nuttx-26c2bd077a39cb19d9b86daafb1cf24167afd450.tar.gz
px4-nuttx-26c2bd077a39cb19d9b86daafb1cf24167afd450.tar.bz2
px4-nuttx-26c2bd077a39cb19d9b86daafb1cf24167afd450.zip
Add an ioctal() that can be used to perform ICMPv6 auto-configuration
-rw-r--r--apps/netutils/netlib/netlib_autoconfig.c31
-rw-r--r--nuttx/include/nuttx/net/ioctl.h137
-rw-r--r--nuttx/net/netdev/netdev_ioctl.c13
3 files changed, 96 insertions, 85 deletions
diff --git a/apps/netutils/netlib/netlib_autoconfig.c b/apps/netutils/netlib/netlib_autoconfig.c
index f3040e2bb..da4c13282 100644
--- a/apps/netutils/netlib/netlib_autoconfig.c
+++ b/apps/netutils/netlib/netlib_autoconfig.c
@@ -74,36 +74,33 @@ int netlib_icmpv6_autoconfiguration(FAR const char *ifname)
{
int ret = ERROR;
-#if 1 /* Not yet implemented */
+ /* Verify that an interface name was provided */
-# warning Missing logic
- errno = ENOSYS;
-
-#else
if (ifname)
{
+ /* Get an IPv6 socket */
+
int sockfd = socket(PF_INET6, NETLIB_SOCK_IOCTL, 0);
if (sockfd >= 0)
{
- FAR struct sockaddr_in6 *inaddr;
- struct lifreq req;
-
- /* Add the device name to the request */
+ /* Create a request consisting only of the interface name */
+ struct lifreq req;
strncpy(req.lifr_name, ifname, IFNAMSIZ);
- /* Add the INET address to the request */
+ /* Perform the ICMPv6 auto-configuration and close the socket */
- inaddr = (FAR struct sockaddr_in6 *)&req.lifr_addr;
- inaddr->sin6_family = AF_INET6;
- inaddr->sin6_port = 0;
- memcpy(&inaddr->sin6_addr, addr, sizeof(struct in6_addr));
-
- ret = ioctl(sockfd, SIOCSLIFNETMASK, (unsigned long)((uintptr_t)&req));
+ ret = ioctl(sockfd, SIOCIFAUTOCONF,
+ (unsigned long)((uintptr_t)&req));
close(sockfd);
}
}
-#endif
+ else
+ {
+ /* No interface name */
+
+ set_errno(EINVAL);
+ }
return ret;
}
diff --git a/nuttx/include/nuttx/net/ioctl.h b/nuttx/include/nuttx/net/ioctl.h
index 3442698a4..5b617314d 100644
--- a/nuttx/include/nuttx/net/ioctl.h
+++ b/nuttx/include/nuttx/net/ioctl.h
@@ -77,89 +77,90 @@
#define SIOCGLIFNETMASK _SIOC(0x0010) /* Get network mask */
#define SIOCSLIFNETMASK _SIOC(0x0011) /* Set network mask */
#define SIOCGLIFMTU _SIOC(0x0012) /* Get MTU size */
+#define SIOCIFAUTOCONF _SIOC(0x0013) /* Perform ICMPv6 auto-configuration */
/* Common interface control operations */
-#define SIOCGIFHWADDR _SIOC(0x0013) /* Get hardware address */
-#define SIOCSIFHWADDR _SIOC(0x0014) /* Set hardware address */
-#define SIOCDIFADDR _SIOC(0x0015) /* Delete IP address (IPv4 and IPv6) */
-#define SIOCGIFCOUNT _SIOC(0x0016) /* Get number of devices */
+#define SIOCGIFHWADDR _SIOC(0x0014) /* Get hardware address */
+#define SIOCSIFHWADDR _SIOC(0x0015) /* Set hardware address */
+#define SIOCDIFADDR _SIOC(0x0016) /* Delete IP address (IPv4 and IPv6) */
+#define SIOCGIFCOUNT _SIOC(0x0017) /* Get number of devices */
/* Interface flags */
-#define SIOCSIFFLAGS _SIOC(0x0017) /* Sets the interface flags */
-#define SIOCGIFFLAGS _SIOC(0x0018) /* Gets the interface flags */
+#define SIOCSIFFLAGS _SIOC(0x0018) /* Sets the interface flags */
+#define SIOCGIFFLAGS _SIOC(0x0019) /* Gets the interface flags */
-#define SIOCGIPMSFILTER _SIOC(0x0019) /* Retrieve source filter addresses */
-#define SIOCSIPMSFILTER _SIOC(0x001a) /* Set source filter content */
+#define SIOCGIPMSFILTER _SIOC(0x001a) /* Retrieve source filter addresses */
+#define SIOCSIPMSFILTER _SIOC(0x001b) /* Set source filter content */
/* Routing table. Argument is a reference to struct rtentry as defined in
* include/net/route.h
*/
-#define SIOCADDRT _SIOC(0x001b) /* Add an entry to the routing table */
-#define SIOCDELRT _SIOC(0x001c) /* Delete an entry from the routing table */
+#define SIOCADDRT _SIOC(0x001c) /* Add an entry to the routing table */
+#define SIOCDELRT _SIOC(0x001d) /* Delete an entry from the routing table */
/* Wireless ioctl commands **************************************************/
-#define SIOCSIWCOMMIT _SIOC(0x001d) /* Commit pending changes to driver */
-#define SIOCGIWNAME _SIOC(0x001e) /* Get name of wireless protocol */
-
-#define SIOCSIWNWID _SIOC(0x001f) /* Set network ID (pre-802.11) */
-#define SIOCGIWNWID _SIOC(0x0020) /* Get network ID (the cell) */
-#define SIOCSIWFREQ _SIOC(0x0021) /* Set channel/frequency (Hz) */
-#define SIOCGIWFREQ _SIOC(0x0022) /* Get channel/frequency (Hz) */
-#define SIOCSIWMODE _SIOC(0x0023) /* Set operation mode */
-#define SIOCGIWMODE _SIOC(0x0024) /* Get operation mode */
-#define SIOCSIWSENS _SIOC(0x0025) /* Set sensitivity (dBm) */
-#define SIOCGIWSENS _SIOC(0x0026) /* Get sensitivity (dBm) */
-
-#define SIOCGIWRANGE _SIOC(0x0027) /* Get range of parameters */
-#define SIOCGIWPRIV _SIOC(0x0028) /* Get private ioctl interface info */
-#define SIOCGIWSTATS _SIOC(0x0029) /* Get wireless stats */
-
-#define SIOCSIWSPY _SIOC(0x002a) /* Set spy addresses */
-#define SIOCGIWSPY _SIOC(0x002b) /* Get spy info (quality of link) */
-#define SIOCSIWTHRSPY _SIOC(0x002c) /* Set spy threshold (spy event) */
-#define SIOCGIWTHRSPY _SIOC(0x002d) /* Get spy threshold */
-
-#define SIOCSIWAP _SIOC(0x002e) /* Set access point MAC addresses */
-#define SIOCGIWAP _SIOC(0x002f) /* Get access point MAC addresses */
-#define SIOCGIWAPLIST _SIOC(0x0030) /* Deprecated in favor of scanning */
-#define SIOCSIWSCAN _SIOC(0x0031) /* Trigger scanning (list cells) */
-#define SIOCGIWSCAN _SIOC(0x0032) /* Get scanning results */
-
-#define SIOCSIWESSID _SIOC(0x0033) /* Set ESSID (network name) */
-#define SIOCGIWESSID _SIOC(0x0034) /* Get ESSID */
-#define SIOCSIWNICKN _SIOC(0x0035) /* Set node name/nickname */
-#define SIOCGIWNICKN _SIOC(0x0036) /* Get node name/nickname */
-
-#define SIOCSIWRATE _SIOC(0x0037) /* Set default bit rate (bps) */
-#define SIOCGIWRATE _SIOC(0x0038) /* Get default bit rate (bps) */
-#define SIOCSIWRTS _SIOC(0x0039) /* Set RTS/CTS threshold (bytes) */
-#define SIOCGIWRTS _SIOC(0x003a) /* Get RTS/CTS threshold (bytes) */
-#define SIOCSIWFRAG _SIOC(0x003b) /* Set fragmentation thr (bytes) */
-#define SIOCGIWFRAG _SIOC(0x003c) /* Get fragmentation thr (bytes) */
-#define SIOCSIWTXPOW _SIOC(0x003d) /* Set transmit power (dBm) */
-#define SIOCGIWTXPOW _SIOC(0x003e) /* Get transmit power (dBm) */
-#define SIOCSIWRETRY _SIOC(0x003f) /* Set retry limits and lifetime */
-#define SIOCGIWRETRY _SIOC(0x0040) /* Get retry limits and lifetime */
-
-#define SIOCSIWPOWER _SIOC(0x0041) /* Set Power Management settings */
-#define SIOCGIWPOWER _SIOC(0x0042) /* Get Power Management settings */
-
-#define SIOCSIWGENIE _SIOC(0x0043) /* Set generic IE */
-#define SIOCGIWGENIE _SIOC(0x0044) /* Get generic IE */
-
-#define SIOCSIWMLME _SIOC(0x0045) /* Request MLME operation */
-
-#define SIOCSIWAUTH _SIOC(0x0046) /* Set authentication mode params */
-#define SIOCGIWAUTH _SIOC(0x0047) /* Get authentication mode params */
-
-#define SIOCSIWENCODEEXT _SIOC(0x0048) /* Set encoding token & mode */
-#define SIOCGIWENCODEEXT _SIOC(0x0049) /* Get encoding token & mode */
-
-#define SIOCSIWPMKSA _SIOC(0x004a) /* PMKSA cache operation */
+#define SIOCSIWCOMMIT _SIOC(0x001e) /* Commit pending changes to driver */
+#define SIOCGIWNAME _SIOC(0x001f) /* Get name of wireless protocol */
+
+#define SIOCSIWNWID _SIOC(0x0020) /* Set network ID (pre-802.11) */
+#define SIOCGIWNWID _SIOC(0x0021) /* Get network ID (the cell) */
+#define SIOCSIWFREQ _SIOC(0x0022) /* Set channel/frequency (Hz) */
+#define SIOCGIWFREQ _SIOC(0x0023) /* Get channel/frequency (Hz) */
+#define SIOCSIWMODE _SIOC(0x0024) /* Set operation mode */
+#define SIOCGIWMODE _SIOC(0x0025) /* Get operation mode */
+#define SIOCSIWSENS _SIOC(0x0026) /* Set sensitivity (dBm) */
+#define SIOCGIWSENS _SIOC(0x0027) /* Get sensitivity (dBm) */
+
+#define SIOCGIWRANGE _SIOC(0x0028) /* Get range of parameters */
+#define SIOCGIWPRIV _SIOC(0x0029) /* Get private ioctl interface info */
+#define SIOCGIWSTATS _SIOC(0x002a) /* Get wireless stats */
+
+#define SIOCSIWSPY _SIOC(0x002b) /* Set spy addresses */
+#define SIOCGIWSPY _SIOC(0x002c) /* Get spy info (quality of link) */
+#define SIOCSIWTHRSPY _SIOC(0x002d) /* Set spy threshold (spy event) */
+#define SIOCGIWTHRSPY _SIOC(0x002e) /* Get spy threshold */
+
+#define SIOCSIWAP _SIOC(0x002f) /* Set access point MAC addresses */
+#define SIOCGIWAP _SIOC(0x0030) /* Get access point MAC addresses */
+#define SIOCGIWAPLIST _SIOC(0x0031) /* Deprecated in favor of scanning */
+#define SIOCSIWSCAN _SIOC(0x0032) /* Trigger scanning (list cells) */
+#define SIOCGIWSCAN _SIOC(0x0033) /* Get scanning results */
+
+#define SIOCSIWESSID _SIOC(0x0034) /* Set ESSID (network name) */
+#define SIOCGIWESSID _SIOC(0x0035) /* Get ESSID */
+#define SIOCSIWNICKN _SIOC(0x0036) /* Set node name/nickname */
+#define SIOCGIWNICKN _SIOC(0x0037) /* Get node name/nickname */
+
+#define SIOCSIWRATE _SIOC(0x0038) /* Set default bit rate (bps) */
+#define SIOCGIWRATE _SIOC(0x0039) /* Get default bit rate (bps) */
+#define SIOCSIWRTS _SIOC(0x003a) /* Set RTS/CTS threshold (bytes) */
+#define SIOCGIWRTS _SIOC(0x003b) /* Get RTS/CTS threshold (bytes) */
+#define SIOCSIWFRAG _SIOC(0x003c) /* Set fragmentation thr (bytes) */
+#define SIOCGIWFRAG _SIOC(0x003d) /* Get fragmentation thr (bytes) */
+#define SIOCSIWTXPOW _SIOC(0x003e) /* Set transmit power (dBm) */
+#define SIOCGIWTXPOW _SIOC(0x003f) /* Get transmit power (dBm) */
+#define SIOCSIWRETRY _SIOC(0x0040) /* Set retry limits and lifetime */
+#define SIOCGIWRETRY _SIOC(0x0041) /* Get retry limits and lifetime */
+
+#define SIOCSIWPOWER _SIOC(0x0042) /* Set Power Management settings */
+#define SIOCGIWPOWER _SIOC(0x0043) /* Get Power Management settings */
+
+#define SIOCSIWGENIE _SIOC(0x0044) /* Set generic IE */
+#define SIOCGIWGENIE _SIOC(0x0045) /* Get generic IE */
+
+#define SIOCSIWMLME _SIOC(0x0046) /* Request MLME operation */
+
+#define SIOCSIWAUTH _SIOC(0x0047) /* Set authentication mode params */
+#define SIOCGIWAUTH _SIOC(0x0048) /* Get authentication mode params */
+
+#define SIOCSIWENCODEEXT _SIOC(0x0049) /* Set encoding token & mode */
+#define SIOCGIWENCODEEXT _SIOC(0x004a) /* Get encoding token & mode */
+
+#define SIOCSIWPMKSA _SIOC(0x004b) /* PMKSA cache operation */
/* MDIO/MCD *****************************************************************/
diff --git a/nuttx/net/netdev/netdev_ioctl.c b/nuttx/net/netdev/netdev_ioctl.c
index ab88799cc..7a61897dc 100644
--- a/nuttx/net/netdev/netdev_ioctl.c
+++ b/nuttx/net/netdev/netdev_ioctl.c
@@ -66,6 +66,7 @@
#include "socket/socket.h"
#include "netdev/netdev.h"
#include "igmp/igmp.h"
+#include "icmpv6/icmpv6.h"
#include "route/route.h"
/****************************************************************************
@@ -626,6 +627,18 @@ static int netdev_ifrioctl(FAR struct socket *psock, int cmd,
}
break;
+#ifdef CONFIG_NET_ICMPv6_AUTOCONF
+ case SIOCIFAUTOCONF: /* Perform ICMPv6 auto-configuration */
+ {
+ dev = netdev_ifrdev(req);
+ if (dev)
+ {
+ ret = icmpv6_autoconfig(dev);
+ }
+ }
+ break;
+#endif
+
case SIOCSIFFLAGS: /* Sets the interface flags */
{
/* Is this a request to bring the interface up? */