-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2898 from authmillenon/ng_ipv6_ext/feat/initial
ng_ipv6_ext: initial import of extension header handling (including RPL SRH)
- Loading branch information
Showing
15 changed files
with
518 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
/* | ||
* Copyright (C) 2015 Martine Lenders <[email protected]> | ||
* | ||
* 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. | ||
*/ | ||
|
||
/** | ||
* @defgroup net_ng_ipv6_ext IPv6 extension headers. | ||
* @ingroup net_ng_ipv6 | ||
* @brief Implementation of IPv6 extension headers | ||
* @see <a href="https://tools.ietf.org/html/rfc2460#section-4"> | ||
* RFC 2460, section 4 | ||
* </a> | ||
* @{ | ||
* | ||
* @file | ||
* @brief Definititions for IPv6 extension headers | ||
* | ||
* @author Martine Lenders <[email protected]> | ||
*/ | ||
|
||
|
||
#ifndef NG_IPV6_EXT_H_ | ||
#define NG_IPV6_EXT_H_ | ||
|
||
#include <inttypes.h> | ||
#include <stdbool.h> | ||
|
||
#include "byteorder.h" | ||
#include "kernel_types.h" | ||
#include "net/ng_pkt.h" | ||
|
||
#include "net/ng_ipv6/ext/rh.h" | ||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
|
||
#define NG_IPV6_EXT_LEN_UNIT (8U) /**< Unit in byte for the extension header's | ||
* length field */ | ||
|
||
/** | ||
* @brief IPv6 extension headers. | ||
* | ||
* @see <a href="https://tools.ietf.org/html/rfc2460#section-4"> | ||
* RFC 2460, section 4.1 | ||
* </a> | ||
*/ | ||
typedef struct __attribute__((packed)) { | ||
uint8_t nh; /**< next header */ | ||
uint8_t len; /**< length in 8 octets without first octet */ | ||
} ng_ipv6_ext_t; | ||
|
||
/** | ||
* @brief Demultiplex extension headers according to @p nh. | ||
* | ||
* @internal | ||
* | ||
* @param[in] iface The receiving interface. | ||
* @param[in] pkt A packet. | ||
* @param[in] nh A protocol number (see @ref net_ng_protnum). | ||
* | ||
* @return true, on success. | ||
* @return false, on failure. | ||
*/ | ||
bool ng_ipv6_ext_demux(kernel_pid_t iface, ng_pktsnip_t *pkt, | ||
uint8_t nh); | ||
|
||
/** | ||
* @brief Gets the next extension header in a packet. | ||
* | ||
* @param[in] ext The current extension header. | ||
* | ||
* @return The next extension header. | ||
*/ | ||
static inline ng_ipv6_ext_t *ng_ipv6_ext_get_next(ng_ipv6_ext_t *ext) | ||
{ | ||
return (ng_ipv6_ext_t *)((uint8_t *)(ext) + | ||
(ext->len * NG_IPV6_EXT_LEN_UNIT) + | ||
NG_IPV6_EXT_LEN_UNIT); | ||
} | ||
|
||
/** | ||
* @brief Builds an extension header for sending. | ||
* | ||
* @param[in] ipv6 The IPv6 header. Can be NULL. | ||
* @param[in] next The next header. Must be a successor to @p ipv6 if it is | ||
* not NULL. | ||
* @param[in] nh @ref net_ng_protnum of the next header. | ||
* @param[in] size Size of the extension header. | ||
* | ||
* @return The extension header on success. | ||
* @return NULL, on error. | ||
*/ | ||
ng_pktsnip_t *ng_ipv6_ext_build(ng_pktsnip_t *ipv6, ng_pktsnip_t *next, | ||
uint8_t nh, size_t size); | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif | ||
|
||
#endif /* NG_IPV6_EXT_H_ */ | ||
/** | ||
* @} | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
/* | ||
* Copyright (C) 2015 Martine Lenders <[email protected]> | ||
* | ||
* 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. | ||
*/ | ||
|
||
/** | ||
* @defgroup net_ng_ipv6_ext_rh IPv6 routing header extension | ||
* @ingroup net_ng_ipv6_ext | ||
* @brief Implementation of IPv6 routing header extension. | ||
* @{ | ||
* | ||
* @file | ||
* @brief Routing extension header definitions. | ||
* | ||
* @author Martine Lenders <[email protected]> | ||
*/ | ||
#ifndef NG_IPV6_EXT_RH_H_ | ||
#define NG_IPV6_EXT_RH_H_ | ||
|
||
#include "net/ng_ipv6/addr.h" | ||
#include "net/ng_ipv6/hdr.h" | ||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
|
||
/** | ||
* @brief IPv6 routing extension header. | ||
* | ||
* @see <a href="https://tools.ietf.org/html/rfc2460#section-4.4"> | ||
* RFC 2460, section 4.4 | ||
* </a> | ||
* | ||
* @extends ng_ipv6_ext_t | ||
*/ | ||
typedef struct __attribute__((packed)) { | ||
uint8_t nh; /**< next header */ | ||
uint8_t len; /**< length in 8 octets without first octet */ | ||
uint8_t type; /**< identifier of a particular routing header type */ | ||
uint8_t seg_left; /**< number of route segments remaining */ | ||
} ng_ipv6_ext_rh_t; | ||
|
||
/** | ||
* @brief Extract next hop from the routing header of an IPv6 packet. | ||
* | ||
* @param[in] ipv6 An IPv6 packet. | ||
* | ||
* @return next hop on success, on success | ||
* @return NULL, if not found. | ||
*/ | ||
ng_ipv6_addr_t *ng_ipv6_ext_rh_next_hop(ng_ipv6_hdr_t *ipv6); | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif | ||
|
||
#endif /* NG_IPV6_EXT_RH_H_ */ | ||
/** @} */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/* | ||
* Copyright (C) 2015 Martine Lenders <[email protected]> | ||
* | ||
* 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. | ||
*/ | ||
|
||
/** | ||
* @defgroup net_ng_rpl New RPL | ||
* @ingroup net | ||
* @{ | ||
* | ||
* @file | ||
* @brief TODO | ||
* | ||
* @author Martine Lenders <[email protected]> | ||
*/ | ||
#ifndef NG_RPL_H_ | ||
#define NG_RPL_H_ | ||
|
||
|
||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif | ||
|
||
#endif /* NG_RPL_H_ */ | ||
/** @} */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
/* | ||
* Copyright (C) 2015 Martine Lenders <[email protected]> | ||
* | ||
* 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. | ||
*/ | ||
|
||
/** | ||
* @defgroup net_rpl_srh RPL source routing header extension | ||
* @ingroup net_rpl | ||
* @brief Implementation of RPL source routing extension headers | ||
* @see <a href="https://tools.ietf.org/html/rfc6554"> | ||
* RFC 6554 | ||
* </a> | ||
* @{ | ||
* | ||
* @file | ||
* @brief Definititions for RPL source routing extension headers | ||
* | ||
* @author Martine Lenders <[email protected]> | ||
*/ | ||
#ifndef NG_RPL_SRH_H_ | ||
#define NG_RPL_SRH_H_ | ||
|
||
#include "net/ng_ipv6/addr.h" | ||
#include "net/ng_ipv6/ext.h" | ||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
|
||
/** | ||
* @brief Type for source routing header. | ||
*/ | ||
#define NG_RPL_SRH_TYPE (3U) | ||
|
||
/** | ||
* @brief The RPL Source routing header. | ||
* | ||
* @see <a href="https://tools.ietf.org/html/rfc6554"> | ||
* RFC 6554 | ||
* </a> | ||
* | ||
* @extends ng_ipv6_ext_rh_t | ||
*/ | ||
typedef struct __attribute__((packed)) { | ||
uint8_t nh; /**< next header */ | ||
uint8_t len; /**< length in 8 octets without first octet */ | ||
uint8_t type; /**< identifier of a particular routing header type */ | ||
uint8_t seg_left; /**< number of route segments remaining */ | ||
} ng_rpl_srh_t; | ||
|
||
/** | ||
* @brief Extract next hop from the RPL source routing header. | ||
* | ||
* @param[in] rh A RPL source routing header. | ||
* | ||
* @return next hop, on success | ||
* @return NULL, if not found. | ||
*/ | ||
ng_ipv6_addr_t *ng_rpl_srh_next_hop(ng_rpl_srh_t *rh); | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif | ||
|
||
#endif /* NG_RPL_SRH_H_ */ | ||
/** @} */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
MODULE = ng_ipv6_ext | ||
|
||
include $(RIOTBASE)/Makefile.base |
Oops, something went wrong.