2017-05-16 13:23:54 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2017 Freie Universität Berlin
|
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
|
|
* directory for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2017-11-17 10:25:17 +01:00
|
|
|
* @defgroup net_gnrc_netif New network interface API
|
2017-05-16 13:23:54 +02:00
|
|
|
* @ingroup net_gnrc
|
|
|
|
* @brief Abstraction layer for GNRC's network interfaces
|
|
|
|
*
|
|
|
|
* Network interfaces in the context of GNRC are threads for protocols that are
|
|
|
|
* below the network layer.
|
|
|
|
*
|
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @brief Definition for GNRC's network interfaces
|
|
|
|
*
|
|
|
|
* @author Martine Lenders <mlenders@inf.fu-berlin.de>
|
|
|
|
*/
|
2017-11-16 18:06:46 +01:00
|
|
|
#ifndef NET_GNRC_NETIF_H
|
|
|
|
#define NET_GNRC_NETIF_H
|
2017-05-16 13:23:54 +02:00
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
#include "kernel_types.h"
|
|
|
|
#include "msg.h"
|
2017-12-13 15:02:58 +01:00
|
|
|
#include "net/ipv6/addr.h"
|
2017-05-16 13:23:54 +02:00
|
|
|
#include "net/gnrc/netapi.h"
|
|
|
|
#include "net/gnrc/pkt.h"
|
2017-11-16 18:06:46 +01:00
|
|
|
#include "net/gnrc/netif/conf.h"
|
2017-05-16 13:23:54 +02:00
|
|
|
#ifdef MODULE_GNRC_SIXLOWPAN
|
2017-11-16 18:06:46 +01:00
|
|
|
#include "net/gnrc/netif/6lo.h"
|
2017-05-16 13:23:54 +02:00
|
|
|
#endif
|
2017-11-16 18:06:46 +01:00
|
|
|
#include "net/gnrc/netif/flags.h"
|
2017-05-16 13:23:54 +02:00
|
|
|
#ifdef MODULE_GNRC_IPV6
|
2017-11-16 18:06:46 +01:00
|
|
|
#include "net/gnrc/netif/ipv6.h"
|
2017-05-16 13:23:54 +02:00
|
|
|
#endif
|
|
|
|
#ifdef MODULE_GNRC_MAC
|
2017-11-16 18:06:46 +01:00
|
|
|
#include "net/gnrc/netif/mac.h"
|
2017-05-16 13:23:54 +02:00
|
|
|
#endif
|
|
|
|
#include "net/netdev.h"
|
|
|
|
#include "rmutex.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Operations to an interface
|
|
|
|
*/
|
2017-11-16 18:06:46 +01:00
|
|
|
typedef struct gnrc_netif_ops gnrc_netif_ops_t;
|
2017-05-16 13:23:54 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Representation of a network interface
|
|
|
|
*/
|
|
|
|
typedef struct {
|
2017-11-16 18:06:46 +01:00
|
|
|
const gnrc_netif_ops_t *ops; /**< Operations of the network interface */
|
2017-05-16 13:23:54 +02:00
|
|
|
netdev_t *dev; /**< Network device of the network interface */
|
|
|
|
rmutex_t mutex; /**< Mutex of the interface */
|
|
|
|
#if defined(MODULE_GNRC_IPV6) || DOXYGEN
|
2017-11-16 18:06:46 +01:00
|
|
|
gnrc_netif_ipv6_t ipv6; /**< IPv6 component */
|
2017-05-16 13:23:54 +02:00
|
|
|
#endif
|
|
|
|
#if defined(MODULE_GNRC_MAC) || DOXYGEN
|
2017-11-17 10:25:17 +01:00
|
|
|
gnrc_netif_mac_t mac; /**< @ref net_gnrc_mac component */
|
2017-05-16 13:23:54 +02:00
|
|
|
#endif /* MODULE_GNRC_MAC */
|
|
|
|
/**
|
|
|
|
* @brief Flags for the interface
|
|
|
|
*
|
2017-11-16 18:06:46 +01:00
|
|
|
* @see net_gnrc_netif_flags
|
2017-05-16 13:23:54 +02:00
|
|
|
*/
|
|
|
|
uint32_t flags;
|
2017-11-16 18:06:46 +01:00
|
|
|
#if (GNRC_NETIF_L2ADDR_MAXLEN > 0)
|
2017-05-16 13:23:54 +02:00
|
|
|
/**
|
|
|
|
* @brief The link-layer address currently used as the source address
|
|
|
|
* on this interface.
|
|
|
|
*
|
2017-11-16 18:06:46 +01:00
|
|
|
* @note Only available if @ref GNRC_NETIF_L2ADDR_MAXLEN > 0
|
2017-05-16 13:23:54 +02:00
|
|
|
*/
|
2017-11-16 18:06:46 +01:00
|
|
|
uint8_t l2addr[GNRC_NETIF_L2ADDR_MAXLEN];
|
2017-05-16 13:23:54 +02:00
|
|
|
|
|
|
|
/**
|
2017-11-16 18:06:46 +01:00
|
|
|
* @brief Length in bytes of gnrc_netif_t::l2addr
|
2017-05-16 13:23:54 +02:00
|
|
|
*
|
2017-11-16 18:06:46 +01:00
|
|
|
* @note Only available if @ref GNRC_NETIF_L2ADDR_MAXLEN > 0
|
2017-05-16 13:23:54 +02:00
|
|
|
*/
|
|
|
|
uint8_t l2addr_len;
|
|
|
|
#endif
|
|
|
|
#if defined(MODULE_GNRC_SIXLOWPAN) || DOXYGEN
|
2017-11-16 18:06:46 +01:00
|
|
|
gnrc_netif_6lo_t sixlo; /**< 6Lo component */
|
2017-05-16 13:23:54 +02:00
|
|
|
#endif
|
|
|
|
uint8_t cur_hl; /**< Current hop-limit for out-going packets */
|
|
|
|
uint8_t device_type; /**< Device type */
|
|
|
|
kernel_pid_t pid; /**< PID of the network interface's thread */
|
2017-11-16 18:06:46 +01:00
|
|
|
} gnrc_netif_t;
|
2017-05-16 13:23:54 +02:00
|
|
|
|
|
|
|
/**
|
2017-11-16 18:06:46 +01:00
|
|
|
* @see gnrc_netif_ops_t
|
2017-05-16 13:23:54 +02:00
|
|
|
*/
|
2017-11-16 18:06:46 +01:00
|
|
|
struct gnrc_netif_ops {
|
2017-05-16 13:23:54 +02:00
|
|
|
/**
|
|
|
|
* @brief Initializes network interface beyond the default settings
|
|
|
|
*
|
|
|
|
* @pre `netif != NULL`
|
|
|
|
*
|
|
|
|
* @param[in] netif The network interface.
|
|
|
|
*
|
|
|
|
* This is called after the default settings were set, right before the
|
|
|
|
* interface's thread starts receiving messages. It is not necessary to lock
|
|
|
|
* the interface's mutex gnrc_netif_t::mutex, since the thread will already
|
|
|
|
* lock it. Leave NULL if you do not need any special initialization.
|
|
|
|
*/
|
2017-11-16 18:06:46 +01:00
|
|
|
void (*init)(gnrc_netif_t *netif);
|
2017-05-16 13:23:54 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Send a @ref net_gnrc_pkt "packet" over the network interface
|
|
|
|
*
|
|
|
|
* @pre `netif != NULL && pkt != NULL`
|
|
|
|
*
|
|
|
|
* @note The function re-formats the content of @p pkt to a format expected
|
|
|
|
* by the netdev_driver_t::send() method of gnrc_netif_t::dev and
|
|
|
|
* releases the packet before returning (so no additional release
|
|
|
|
* should be required after calling this method).
|
|
|
|
*
|
|
|
|
* @param[in] netif The network interface.
|
|
|
|
* @param[in] pkt A packet to send.
|
|
|
|
*
|
|
|
|
* @return The number of bytes actually sent on success
|
|
|
|
* @return -EBADMSG, if the @ref net_gnrc_netif_hdr in @p pkt is missing
|
|
|
|
* or is in an unexpected format.
|
|
|
|
* @return -ENOTSUP, if sending @p pkt in the given format isn't supported
|
|
|
|
* (e.g. empty payload with Ethernet).
|
2017-11-16 18:06:46 +01:00
|
|
|
* @return Any negative error code reported by gnrc_netif_t::dev.
|
2017-05-16 13:23:54 +02:00
|
|
|
*/
|
2017-11-16 18:06:46 +01:00
|
|
|
int (*send)(gnrc_netif_t *netif, gnrc_pktsnip_t *pkt);
|
2017-05-16 13:23:54 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Receives a @ref net_gnrc_pkt "packet" from the network interface
|
|
|
|
*
|
|
|
|
* @pre `netif != NULL`
|
|
|
|
*
|
|
|
|
* @note The function takes the bytes received via netdev_driver_t::recv()
|
|
|
|
* from gnrc_netif_t::dev and re-formats it to a
|
|
|
|
* @ref net_gnrc_pkt "packet" containing a @ref net_gnrc_netif_hdr
|
|
|
|
* and a payload header in receive order.
|
|
|
|
*
|
|
|
|
* @param[in] netif The network interface.
|
|
|
|
*
|
|
|
|
* @return The packet received. Contains the payload (with the type marked
|
|
|
|
* accordingly) and a @ref net_gnrc_netif_hdr in receive order.
|
|
|
|
* @return NULL, if @ref net_gnrc_pktbuf was full.
|
|
|
|
*/
|
2017-11-16 18:06:46 +01:00
|
|
|
gnrc_pktsnip_t *(*recv)(gnrc_netif_t *netif);
|
2017-05-16 13:23:54 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Gets an option from the network interface
|
|
|
|
*
|
2017-11-16 18:06:46 +01:00
|
|
|
* Use gnrc_netif_get_from_netdev() to just get options from
|
|
|
|
* gnrc_netif_t::dev.
|
2017-05-16 13:23:54 +02:00
|
|
|
*
|
|
|
|
* @param[in] netif The network interface.
|
|
|
|
* @param[in] opt The option parameters.
|
|
|
|
*
|
|
|
|
* @return Number of bytes in @p data.
|
|
|
|
* @return -EOVERFLOW, if @p max_len is lesser than the required space.
|
|
|
|
* @return -ENOTSUP, if @p opt is not supported to be set.
|
2017-11-16 18:06:46 +01:00
|
|
|
* @return Any negative error code reported by gnrc_netif_t::dev.
|
2017-05-16 13:23:54 +02:00
|
|
|
*/
|
2017-11-16 18:06:46 +01:00
|
|
|
int (*get)(gnrc_netif_t *netif, gnrc_netapi_opt_t *opt);
|
2017-05-16 13:23:54 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Sets an option from the network interface
|
|
|
|
*
|
2017-11-16 18:06:46 +01:00
|
|
|
* Use gnrc_netif_set_from_netdev() to just set options from
|
|
|
|
* gnrc_netif_t::dev.
|
2017-05-16 13:23:54 +02:00
|
|
|
*
|
|
|
|
* @param[in] netif The network interface.
|
|
|
|
* @param[in] opt The option parameters.
|
|
|
|
*
|
2017-11-16 18:06:46 +01:00
|
|
|
* @return Number of bytes written to gnrc_netif_t::dev.
|
2017-05-16 13:23:54 +02:00
|
|
|
* @return -EOVERFLOW, if @p data_len is greater than the allotted space in
|
2017-11-16 18:06:46 +01:00
|
|
|
* gnrc_netif_t::dev or gnrc_netif_t.
|
2017-05-16 13:23:54 +02:00
|
|
|
* @return -ENOTSUP, if @p opt is not supported to be set.
|
2017-11-16 18:06:46 +01:00
|
|
|
* @return Any negative error code reported by gnrc_netif_t::dev.
|
2017-05-16 13:23:54 +02:00
|
|
|
*/
|
2017-11-16 18:06:46 +01:00
|
|
|
int (*set)(gnrc_netif_t *netif, const gnrc_netapi_opt_t *opt);
|
2017-05-16 13:23:54 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Message handler for network interface
|
|
|
|
*
|
|
|
|
* This message handler is used, when the network interface needs to handle
|
|
|
|
* message types beyond the ones defined in @ref net_gnrc_netapi "netapi".
|
|
|
|
* Leave NULL if this is not the case.
|
|
|
|
*
|
|
|
|
* @param[in] netif The network interface.
|
|
|
|
* @param[in] msg Message to be handled.
|
|
|
|
*/
|
2017-11-16 18:06:46 +01:00
|
|
|
void (*msg_handler)(gnrc_netif_t *netif, msg_t *msg);
|
2017-05-16 13:23:54 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Creates a network interface
|
|
|
|
*
|
|
|
|
* @param[in] stack The stack for the network interface's thread.
|
|
|
|
* @param[in] stacksize Size of @p stack.
|
|
|
|
* @param[in] priority Priority for the network interface's thread.
|
|
|
|
* @param[in] name Name for the network interface. May be NULL.
|
|
|
|
* @param[in] dev Device for the interface.
|
|
|
|
* @param[in] ops Operations for the network interface.
|
|
|
|
*
|
|
|
|
* @note If @ref DEVELHELP is defined netif_params_t::name is used as the
|
|
|
|
* name of the network interface's thread.
|
|
|
|
*
|
2017-10-10 21:17:32 +02:00
|
|
|
* @attention Fails and crashes (assertion error with @ref DEVELHELP or
|
|
|
|
* segmentation fault without) if `GNRC_NETIF_NUMOF` is lower than
|
|
|
|
* the number of calls to this function.
|
|
|
|
*
|
2017-05-16 13:23:54 +02:00
|
|
|
* @return The network interface on success.
|
|
|
|
*/
|
2017-11-16 18:06:46 +01:00
|
|
|
gnrc_netif_t *gnrc_netif_create(char *stack, int stacksize, char priority,
|
|
|
|
const char *name, netdev_t *dev,
|
|
|
|
const gnrc_netif_ops_t *ops);
|
2017-05-16 13:23:54 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Get number of network interfaces actually allocated
|
|
|
|
*
|
|
|
|
* @return Number of network interfaces actually allocated
|
|
|
|
*/
|
2017-11-16 18:06:46 +01:00
|
|
|
unsigned gnrc_netif_numof(void);
|
2017-05-16 13:23:54 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Iterate over all network interfaces.
|
|
|
|
*
|
|
|
|
* @param[in] prev previous interface in iteration. NULL to start iteration.
|
|
|
|
*
|
|
|
|
* @return The next network interface after @p prev.
|
|
|
|
* @return NULL, if @p prev was the last network interface.
|
|
|
|
*/
|
2017-11-16 18:06:46 +01:00
|
|
|
gnrc_netif_t *gnrc_netif_iter(const gnrc_netif_t *prev);
|
2017-05-16 13:23:54 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Get network interface by PID
|
|
|
|
*
|
|
|
|
* @param[in] pid A PID of a network interface.
|
|
|
|
*
|
|
|
|
* @return The network interface on success.
|
|
|
|
* @return NULL, if no network interface with PID exists.
|
|
|
|
*/
|
2017-11-16 18:06:46 +01:00
|
|
|
gnrc_netif_t *gnrc_netif_get_by_pid(kernel_pid_t pid);
|
2017-05-16 13:23:54 +02:00
|
|
|
|
2017-12-13 15:02:58 +01:00
|
|
|
/**
|
|
|
|
* @brief Gets the (unicast on anycast) IPv6 addresss of an interface (if IPv6
|
|
|
|
* is supported)
|
|
|
|
*
|
|
|
|
* @pre `netif != NULL`
|
|
|
|
* @pre `addrs != NULL`
|
|
|
|
* @pre `max_len >= sizeof(ipv6_addr_t)`
|
|
|
|
*
|
|
|
|
* @param[in] netif The interface. May not be `NULL`.
|
|
|
|
* @param[out] addrs Up to the first `max_len / sizeof(ipv6_addr_t)`
|
|
|
|
* addresses assigned to @p netif. May not be `NULL`
|
|
|
|
* @param[in] max_len Number of *bytes* available in @p addrs. Must be at
|
|
|
|
* least `sizeof(ipv6_addr_t)`. It is recommended to use
|
|
|
|
* @p GNRC_NETIF_IPV6_ADDRS_NUMOF `* sizeof(ipv6_addr_t)
|
|
|
|
* here (and have @p addrs of the according length).
|
|
|
|
*
|
|
|
|
* @return Number of addresses in @p addrs times `sizeof(ipv6_addr_t)` on
|
|
|
|
* success (including 0).
|
|
|
|
* @return -ENOTSUP, if @p netif doesn't support IPv6.
|
|
|
|
*/
|
|
|
|
static inline int gnrc_netif_ipv6_addrs_get(const gnrc_netif_t *netif,
|
|
|
|
ipv6_addr_t *addrs,
|
|
|
|
size_t max_len)
|
|
|
|
{
|
|
|
|
assert(netif != NULL);
|
|
|
|
assert(addrs != NULL);
|
|
|
|
assert(max_len >= sizeof(ipv6_addr_t));
|
|
|
|
return gnrc_netapi_get(netif->pid, NETOPT_IPV6_ADDR, 0, addrs, max_len);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Adds an (unicast or anycast) IPv6 address to an interface (if IPv6
|
|
|
|
* is supported)
|
|
|
|
*
|
|
|
|
* @pre `netif != NULL`
|
|
|
|
* @pre `addr != NULL`
|
|
|
|
* @pre `(pfx_len > 0) && (pfx_len <= 128)`
|
|
|
|
*
|
|
|
|
* @param[in] netif The interface. May not be `NULL`.
|
|
|
|
* @param[in] addr The address to add to @p netif. May not be `NULL`.
|
|
|
|
* @param[in] pfx_len The prefix length of @p addr. Must be greater than 0 and
|
|
|
|
* lesser than or equal to 128.
|
|
|
|
* @param[in] flags [Flags](@ref net_gnrc_netif_ipv6_addrs_flags) for
|
|
|
|
* @p addr. Set @ref GNRC_NETIF_IPV6_ADDRS_FLAGS_STATE_VALID
|
|
|
|
* to skip duplicate address detection (when activated).
|
|
|
|
*
|
|
|
|
* @return sizeof(ipv6_addr_t) on success.
|
|
|
|
* @return -ENOMEM, if no space is left on @p netif to add @p addr or its
|
|
|
|
* corresponding solicited-nodes multicast address.
|
|
|
|
* @return -ENOTSUP, if @p netif doesn't support IPv6.
|
|
|
|
*/
|
|
|
|
static inline int gnrc_netif_ipv6_addr_add(const gnrc_netif_t *netif,
|
|
|
|
ipv6_addr_t *addr, unsigned pfx_len,
|
|
|
|
uint8_t flags)
|
|
|
|
{
|
|
|
|
assert(netif != NULL);
|
|
|
|
assert(addr != NULL);
|
|
|
|
assert((pfx_len > 0) && (pfx_len <= 128));
|
|
|
|
return gnrc_netapi_set(netif->pid, NETOPT_IPV6_ADDR,
|
|
|
|
((pfx_len << 8U) | flags), addr,
|
|
|
|
sizeof(ipv6_addr_t));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Removes a (unicast or anycast) IPv6 address from an interface (if
|
|
|
|
* IPv6 is supported)
|
|
|
|
*
|
|
|
|
* @pre `netif != NULL`
|
|
|
|
* @pre `addr != NULL`
|
|
|
|
*
|
|
|
|
* @param[in] netif The interface. May not be `NULL`.
|
|
|
|
* @param[in] addr The address to remove from @p netif. May not be `NULL`.
|
|
|
|
*
|
|
|
|
* @return sizeof(ipv6_addr_t) on success.
|
|
|
|
* @return -ENOTSUP, if @p netif doesn't support IPv6.
|
|
|
|
*/
|
|
|
|
static inline int gnrc_netif_ipv6_addr_remove(const gnrc_netif_t *netif,
|
|
|
|
ipv6_addr_t *addr)
|
|
|
|
{
|
|
|
|
assert(netif != NULL);
|
|
|
|
assert(addr != NULL);
|
|
|
|
return gnrc_netapi_set(netif->pid, NETOPT_IPV6_ADDR_REMOVE,
|
|
|
|
0, addr, sizeof(ipv6_addr_t));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Gets the IPv6 multicast groups an interface is joined to (if IPv6 is
|
|
|
|
* supported)
|
|
|
|
*
|
|
|
|
* @pre `netif != NULL`
|
|
|
|
* @pre `groups != NULL`
|
|
|
|
* @pre `max_len >= sizeof(ipv6_addr_t)`
|
|
|
|
*
|
|
|
|
* @param[in] netif The interface. May not be `NULL`.
|
|
|
|
* @param[out] groups Up to the first `max_len / 8` multicast groups @p netif
|
|
|
|
* is joined to. May not be `NULL`
|
|
|
|
* @param[in] max_len Number of *bytes* available in @p groups. Must be at
|
|
|
|
* least `sizeof(ipv6_addr_t)`. It is recommended to use
|
|
|
|
* @p GNRC_NETIF_IPV6_GROUPS_NUMOF `* sizeof(ipv6_addr_t)
|
|
|
|
* here (and have @p groups of the according length).
|
|
|
|
*
|
|
|
|
* @return Number of addresses in @p groups times `sizeof(ipv6_addr_t)` on
|
|
|
|
* success (including 0).
|
|
|
|
* @return -ENOTSUP, if @p netif doesn't support IPv6.
|
|
|
|
*/
|
|
|
|
static inline int gnrc_netif_ipv6_groups_get(const gnrc_netif_t *netif,
|
|
|
|
ipv6_addr_t *groups,
|
|
|
|
size_t max_len)
|
|
|
|
{
|
|
|
|
assert(netif != NULL);
|
|
|
|
assert(groups != NULL);
|
|
|
|
assert(max_len >= sizeof(ipv6_addr_t));
|
|
|
|
return gnrc_netapi_get(netif->pid, NETOPT_IPV6_GROUP, 0, groups, max_len);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Joins an IPv6 multicast group on an interface (if IPv6 is supported)
|
|
|
|
*
|
|
|
|
* @pre `netif != NULL`
|
|
|
|
* @pre `group != NULL`
|
|
|
|
*
|
|
|
|
* @param[in] netif The interface.
|
|
|
|
* @param[in] group The address of the multicast group to join on @p netif.
|
|
|
|
* May not be `NULL`.
|
|
|
|
*
|
|
|
|
* @return sizeof(ipv6_addr_t) on success.
|
|
|
|
* @return -ENOMEM, if no space is left on @p netif to add @p group.
|
|
|
|
* @return -ENOTSUP, if @p netif doesn't support IPv6.
|
|
|
|
*/
|
|
|
|
static inline int gnrc_netif_ipv6_group_join(const gnrc_netif_t *netif,
|
|
|
|
ipv6_addr_t *group)
|
|
|
|
{
|
|
|
|
assert(netif != NULL);
|
|
|
|
assert(group != NULL);
|
|
|
|
return gnrc_netapi_set(netif->pid, NETOPT_IPV6_GROUP, 0, group,
|
|
|
|
sizeof(ipv6_addr_t));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Leaves an IPv6 multicast group on an interface (if IPv6 is supported)
|
|
|
|
*
|
|
|
|
* @pre `netif != NULL`
|
|
|
|
* @pre `group != NULL`
|
|
|
|
*
|
|
|
|
* @param[in] netif The interface.
|
|
|
|
* @param[in] group The address of the multicast group to leave on @p netif.
|
|
|
|
* May not be `NULL`.
|
|
|
|
*
|
|
|
|
* @return sizeof(ipv6_addr_t) on success.
|
|
|
|
* @return -ENOTSUP, if @p netif doesn't support IPv6.
|
|
|
|
*/
|
|
|
|
static inline int gnrc_netif_ipv6_group_leave(const gnrc_netif_t *netif,
|
|
|
|
ipv6_addr_t *group)
|
|
|
|
{
|
|
|
|
assert(netif != NULL);
|
|
|
|
assert(group != NULL);
|
|
|
|
return gnrc_netapi_set(netif->pid, NETOPT_IPV6_GROUP_LEAVE, 0, group,
|
|
|
|
sizeof(ipv6_addr_t));
|
|
|
|
}
|
|
|
|
|
2017-05-16 13:23:54 +02:00
|
|
|
/**
|
2017-11-16 18:06:46 +01:00
|
|
|
* @brief Default operation for gnrc_netif_ops_t::get()
|
2017-05-16 13:23:54 +02:00
|
|
|
*
|
|
|
|
* @note Can also be used to be called *after* a custom operation.
|
|
|
|
*
|
|
|
|
* @param[in] netif The network interface.
|
|
|
|
* @param[out] opt The option parameters.
|
|
|
|
*
|
2017-11-16 18:06:46 +01:00
|
|
|
* @return Return value of netdev_driver_t::get() of gnrc_netif_t::dev of
|
2017-05-16 13:23:54 +02:00
|
|
|
* @p netif.
|
|
|
|
*/
|
2017-11-16 18:06:46 +01:00
|
|
|
int gnrc_netif_get_from_netdev(gnrc_netif_t *netif, gnrc_netapi_opt_t *opt);
|
2017-05-16 13:23:54 +02:00
|
|
|
|
|
|
|
/**
|
2017-11-16 18:06:46 +01:00
|
|
|
* @brief Default operation for gnrc_netif_ops_t::set()
|
2017-05-16 13:23:54 +02:00
|
|
|
*
|
|
|
|
* @note Can also be used to be called *after* a custom operation.
|
|
|
|
*
|
|
|
|
* @param[in] netif The network interface.
|
|
|
|
* @param[in] opt The option parameters.
|
|
|
|
*
|
2017-11-16 18:06:46 +01:00
|
|
|
* @return Return value of netdev_driver_t::set() of gnrc_netif_t::dev of
|
2017-05-16 13:23:54 +02:00
|
|
|
* @p netif.
|
|
|
|
*/
|
2017-11-16 18:06:46 +01:00
|
|
|
int gnrc_netif_set_from_netdev(gnrc_netif_t *netif,
|
|
|
|
const gnrc_netapi_opt_t *opt);
|
2017-05-16 13:23:54 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Converts a hardware address to a human readable string.
|
|
|
|
*
|
|
|
|
* @details The format will be like `xx:xx:xx:xx` where `xx` are the bytes
|
|
|
|
* of @p addr in hexadecimal representation.
|
|
|
|
*
|
|
|
|
* @pre `(out != NULL) && ((addr != NULL) || (addr_len == 0))`
|
|
|
|
* @pre @p out **MUST** have allocated at least 3 * @p addr_len bytes.
|
|
|
|
*
|
|
|
|
* @param[in] addr A hardware address.
|
|
|
|
* @param[in] addr_len Length of @p addr.
|
|
|
|
* @param[out] out A string to store the output in. Must at least have
|
|
|
|
* 3 * @p addr_len bytes allocated.
|
|
|
|
*
|
|
|
|
* @return @p out.
|
|
|
|
*/
|
2017-11-16 18:06:46 +01:00
|
|
|
char *gnrc_netif_addr_to_str(const uint8_t *addr, size_t addr_len, char *out);
|
2017-05-16 13:23:54 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Parses a string of colon-separated hexadecimals to a hardware
|
|
|
|
* address.
|
|
|
|
*
|
|
|
|
* @details The input format must be like `xx:xx:xx:xx` where `xx` will be the
|
|
|
|
* bytes of @p addr in hexadecimal representation.
|
|
|
|
*
|
|
|
|
* @pre `(out != NULL)`
|
|
|
|
* @pre @p out **MUST** have allocated at least
|
2017-11-16 18:06:46 +01:00
|
|
|
* @ref GNRC_NETIF_L2ADDR_MAXLEN bytes.
|
2017-05-16 13:23:54 +02:00
|
|
|
*
|
|
|
|
* @param[in] str A string of colon-separated hexadecimals.
|
|
|
|
* @param[out] out The resulting hardware address. Must at least have
|
2017-11-16 18:06:46 +01:00
|
|
|
* @ref GNRC_NETIF_L2ADDR_MAXLEN bytes allocated.
|
2017-05-16 13:23:54 +02:00
|
|
|
*
|
|
|
|
* @return Actual length of @p out on success.
|
|
|
|
* @return 0, on failure.
|
|
|
|
*/
|
2017-11-16 18:06:46 +01:00
|
|
|
size_t gnrc_netif_addr_from_str(const char *str, uint8_t *out);
|
2017-05-16 13:23:54 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-11-16 18:06:46 +01:00
|
|
|
#endif /* NET_GNRC_NETIF_H */
|
2017-05-16 13:23:54 +02:00
|
|
|
/** @} */
|