nd.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2015 Martine Lenders <mlenders@inf.fu-berlin.de>
3  *
4  * This file is subject to the terms and conditions of the GNU Lesser
5  * General Public License v2.1. See the file LICENSE in the top level
6  * directory for more details.
7  */
8 
22 #ifndef NET_SIXLOWPAN_ND_H
23 #define NET_SIXLOWPAN_ND_H
24 
25 #include <stdint.h>
26 
27 #include "byteorder.h"
28 #include "net/eui64.h"
29 #include "net/ipv6/addr.h"
30 
31 #ifdef __cplusplus
32 extern "C" {
33 #endif
34 
40 #define SIXLOWPAN_ND_OPT_6CTX_LEN_MIN (2U)
41 #define SIXLOWPAN_ND_OPT_6CTX_LEN_MAX (3U)
42 #define SIXLOWPAN_ND_OPT_AR_LEN (2U)
43 #define SIXLOWPAN_ND_OPT_ABR_LEN (3U)
57 #define SIXLOWPAN_ND_OPT_ABR_LTIME_DEFAULT (10000U)
66 #define SIXLOWPAN_ND_STATUS_SUCCESS (0)
67 #define SIXLOWPAN_ND_STATUS_DUP (1)
68 #define SIXLOWPAN_ND_STATUS_NC_FULL (2)
77 #define SIXLOWPAN_ND_OPT_6CTX_FLAGS_MASK (0x1f)
78 #define SIXLOWPAN_ND_OPT_6CTX_FLAGS_C (0x10)
79 #define SIXLOWPAN_ND_OPT_6CTX_FLAGS_CID_MASK (0x0f)
89 #define SIXLOWPAN_ND_MIN_CTX_CHANGE_SEC_DELAY (300U)
97 #define SIXLOWPAN_ND_MAX_RA_NUMOF (3U)
98 #define SIXLOWPAN_ND_MIN_MS_DELAY_BETWEEN_RAS (10000U)
99 #define SIXLOWPAN_ND_MAX_RA_MS_DELAY (2000U)
100 #define SIXLOWPAN_ND_TENTATIVE_NCE_SEC_LTIME (20U)
108 #define SIXLOWPAN_ND_MULTIHOP_HL (64U)
123 #define SIXLOWPAN_ND_REG_TRANSMIT_NUMOF (3U)
127 #define SIXLOWPAN_ND_RS_MSEC_INTERVAL (10000U)
128 #define SIXLOWPAN_ND_MAX_RS_NUMOF (3U)
132 #define SIXLOWPAN_ND_MAX_RS_SEC_INTERVAL (60U)
141 typedef struct __attribute__((packed)) {
142  uint8_t type;
143  uint8_t code;
145  uint8_t status;
146  uint8_t resv;
151 
158 typedef struct __attribute__((packed)) {
159  uint8_t type;
160  uint8_t len;
161  uint8_t status;
163  uint8_t resv[3];
167 
174 typedef struct __attribute__((packed)) {
175  uint8_t type;
176  uint8_t len;
177  uint8_t ctx_len;
178  uint8_t resv_c_cid;
182 
189 typedef struct __attribute__((packed)) {
190  uint8_t type;
191  uint8_t len;
197 
207 static inline bool sixlowpan_nd_opt_6ctx_is_comp(const sixlowpan_nd_opt_6ctx_t *ctx_opt)
208 {
209  return (bool)(ctx_opt->resv_c_cid & SIXLOWPAN_ND_OPT_6CTX_FLAGS_C);
210 }
211 
219 static inline uint8_t sixlowpan_nd_opt_6ctx_get_cid(const sixlowpan_nd_opt_6ctx_t *ctx_opt)
220 {
222 }
223 
230 static inline void sixlowpan_nd_opt_6ctx_set_cid(sixlowpan_nd_opt_6ctx_t *ctx_opt, uint8_t cid)
231 {
234 }
235 
244 static inline uint32_t sixlowpan_nd_opt_abr_get_version(const sixlowpan_nd_opt_abr_t *abr_opt)
245 {
246  return ((uint32_t)byteorder_ntohs(abr_opt->vlow)) |
247  (((uint32_t)byteorder_ntohs(abr_opt->vhigh)) << 16);
248 }
249 
257  uint32_t version)
258 {
259  abr_opt->vlow = byteorder_htons((uint16_t)(version & 0xffff));
260  abr_opt->vhigh = byteorder_htons((uint16_t)(version >> 16));
261 }
262 
271 static inline uint16_t gnrc_sixlowpan_nd_opt_get_ltime(const sixlowpan_nd_opt_abr_t *abr_opt)
272 {
273  uint16_t ltime = byteorder_ntohs(abr_opt->ltime);
274  return (ltime == 0) ? SIXLOWPAN_ND_OPT_ABR_LTIME_DEFAULT : ltime;
275 }
276 
277 #ifdef __cplusplus
278 }
279 #endif
280 
281 #endif /* NET_SIXLOWPAN_ND_H */
Functions to work with different byte orders.
static network_uint16_t byteorder_htons(uint16_t v)
Convert from host byte order to network byte order, 16 bit.
Definition: byteorder.h:485
static uint16_t byteorder_ntohs(network_uint16_t v)
Convert from network byte order to host byte order, 16 bit.
Definition: byteorder.h:506
EUI-64 data type definition.
static uint8_t sixlowpan_nd_opt_6ctx_get_cid(const sixlowpan_nd_opt_6ctx_t *ctx_opt)
Gets a CID (context identifier) from a 6LoWPAN context option.
Definition: nd.h:219
#define SIXLOWPAN_ND_OPT_ABR_LTIME_DEFAULT
Valid lifetime (in minutes) assumed if sixlowpan_nd_opt_abr_t::ltime is 0.
Definition: nd.h:57
#define SIXLOWPAN_ND_OPT_6CTX_FLAGS_C
valid for compression
Definition: nd.h:78
static uint16_t gnrc_sixlowpan_nd_opt_get_ltime(const sixlowpan_nd_opt_abr_t *abr_opt)
Get the lifetime of an Authoritative Border Router from an ABR option.
Definition: nd.h:271
#define SIXLOWPAN_ND_OPT_6CTX_FLAGS_CID_MASK
mask for CID
Definition: nd.h:79
static bool sixlowpan_nd_opt_6ctx_is_comp(const sixlowpan_nd_opt_6ctx_t *ctx_opt)
Checks if a 6LoWPAN context in an 6LoWPAN context option is valid for compression.
Definition: nd.h:207
static void sixlowpan_nd_opt_6ctx_set_cid(sixlowpan_nd_opt_6ctx_t *ctx_opt, uint8_t cid)
Sets a CID (context identifier) for a 6LoWPAN context option.
Definition: nd.h:230
static uint32_t sixlowpan_nd_opt_abr_get_version(const sixlowpan_nd_opt_abr_t *abr_opt)
Gets the version in correct order from an Authoritative Border Router option.
Definition: nd.h:244
static void sixlowpan_nd_opt_abr_set_version(sixlowpan_nd_opt_abr_t *abr_opt, uint32_t version)
Sets the version of an Authoritative Border Router option.
Definition: nd.h:256
Definitions for IPv6 addresses.
Duplicate address request and confirmation message format.
Definition: nd.h:141
uint8_t code
message code
Definition: nd.h:143
eui64_t eui64
EUI-64.
Definition: nd.h:148
uint8_t status
indicates registration status in DAC; must be 0 in DAR.
Definition: nd.h:145
uint8_t resv
reserved field
Definition: nd.h:146
network_uint16_t ltime
registration lifetime
Definition: nd.h:147
ipv6_addr_t addr
registered address
Definition: nd.h:149
network_uint16_t csum
checksum
Definition: nd.h:144
uint8_t type
message type
Definition: nd.h:142
6LoWPAN context option format
Definition: nd.h:174
uint8_t type
option type
Definition: nd.h:175
uint8_t ctx_len
context length
Definition: nd.h:177
network_uint16_t ltime
valid lifetime
Definition: nd.h:180
uint8_t len
length in units of 8 octets
Definition: nd.h:176
network_uint16_t resv
reserved field
Definition: nd.h:179
uint8_t resv_c_cid
3-bit reserved, 1-bit c flag, 4 bit CID
Definition: nd.h:178
Authoritative border router option format.
Definition: nd.h:189
network_uint16_t vhigh
version high
Definition: nd.h:193
ipv6_addr_t braddr
6LoWPAN border router address
Definition: nd.h:195
network_uint16_t vlow
version low
Definition: nd.h:192
network_uint16_t ltime
valid lifetime
Definition: nd.h:194
uint8_t type
option type
Definition: nd.h:190
uint8_t len
length in units of 8 octets
Definition: nd.h:191
Address registration option format.
Definition: nd.h:158
uint8_t len
length in units of 8 octets
Definition: nd.h:160
uint8_t status
indicates registration status in NA response; must be 0 in NS messages
Definition: nd.h:161
network_uint16_t ltime
registration lifetime
Definition: nd.h:164
eui64_t eui64
EUI-64.
Definition: nd.h:165
uint8_t type
option type
Definition: nd.h:159
A 16 bit integer in big endian aka network byte order.
Definition: byteorder.h:74
Data type to represent an EUI-64.
Definition: eui64.h:55
Data type to represent an IPv6 address.
Definition: addr.h:72