a752c7ab
elopes
add first test an...
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
|
/*
* Copyright (C) 2015 Martine Lenders <mlenders@inf.fu-berlin.de>
*
* 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_sixlowpan_nd 6LoWPAN Neighbor Discovery
* @ingroup net_sixlowpan
* @brief Message types and helper functions for Neighbor Discovery Optimization for 6LoWPAN
* (6LoWPAN-ND)
* @see [RFC 6775, section 4](https://tools.ietf.org/html/rfc6775#section-4)
* @{
*
* @file
* @brief Message type and helper function definitions for 6LoWPAN-ND
*
* @author Martine Lenders <mlenders@inf.fu-berlin.de>
*/
#ifndef NET_SIXLOWPAN_ND_H
#define NET_SIXLOWPAN_ND_H
#include <stdint.h>
#include "byteorder.h"
#include "net/eui64.h"
#include "net/ipv6/addr.h"
#ifdef __cplusplus
extern "C" {
#endif
/**
* @{
* @name Lengths for fixed length options
* @note Options don't use bytes as their length unit, but 8 bytes.
*/
#define SIXLOWPAN_ND_OPT_AR_LEN (2U)
#define SIXLOWPAN_ND_OPT_ABR_LEN (3U)
/**
* @}
*/
/**
* @{
* @name Authoritative border router option constants
* @see [RFC 6775, section 4.3](https://tools.ietf.org/html/rfc6775#section-4.3)
*/
/**
* @brief Valid lifetime (in minutes) assumed if sixlowpan_nd_opt_abr_t::ltime
* is 0.
*/
#define SIXLOWPAN_ND_OPT_ABR_LTIME_DEFAULT (10000U)
/**
* @{
* @name Status values for address registration option and DARs
*
* @see [RFC 6775, section 4.1](https://tools.ietf.org/html/rfc6775#section-4.1)
*/
#define SIXLOWPAN_ND_STATUS_SUCCESS (0) /**< success */
#define SIXLOWPAN_ND_STATUS_DUP (1) /**< duplicate address */
#define SIXLOWPAN_ND_STATUS_NC_FULL (2) /**< neighbor cache full */
/**
* @}
*/
/**
* @{
* @name Flags for 6LoWPAN context option
*/
#define SIXLOWPAN_ND_OPT_6CTX_FLAGS_MASK (0x1f)
#define SIXLOWPAN_ND_OPT_6CTX_FLAGS_C (0x10) /**< valid for compression */
#define SIXLOWPAN_ND_OPT_6CTX_FLAGS_CID_MASK (0x0f) /**< mask for CID */
/**
* @}
*/
/**
* @name 6LoWPAN border router constants
* @see [RFC 6775, section 9](https://tools.ietf.org/html/rfc6775#section-9)
* @{
*/
#define SIXLOWPAN_ND_MIN_CTX_CHANGE_SEC_DELAY (300U) /**< MIN_CONTEXT_CHANGE_DELAY (in sec) */
/** @} */
/**
* @name 6LoWPAN router constants
* @see [RFC 6775, section 9](https://tools.ietf.org/html/rfc6775#section-9)
* @{
*/
#define SIXLOWPAN_ND_MAX_RA_NUMOF (3U) /**< MAX_RTR_ADVERTISEMENTS */
#define SIXLOWPAN_ND_MIN_MS_DELAY_BETWEEN_RAS (10000U) /**< MIN_DELAY_BETWEEN_RAS (in ms) */
#define SIXLOWPAN_ND_MAX_RA_MS_DELAY (2000U) /**< MAX_RA_DELAY_TIME (in ms) */
#define SIXLOWPAN_ND_TENTATIVE_NCE_SEC_LTIME (20U) /**< TENTATIVE_NCE_LIFETIME (in sec) */
/** @} */
/**
* @name Router constants
* @see [RFC 6775, section 9](https://tools.ietf.org/html/rfc6775#section-9)
* @{
*/
#define SIXLOWPAN_ND_MULTIHOP_HL (64U) /**< MULTIHOP_HOPLIMIT */
/** @} */
/**
* @name Host constants
* @see [RFC 6775, section 9](https://tools.ietf.org/html/rfc6775#section-9)
* @{
*/
/**
* @brief RTR_SOLICITATION_INTERVAL (in msec)
*/
#define SIXLOWPAN_ND_RS_MSEC_INTERVAL (10000U)
#define SIXLOWPAN_ND_MAX_RS_NUMOF (3U) /**< MAX_RTR_SOLICITATIONS */
/**
* @brief MAX_RTR_SOLICITATIONS_INTERVAL (in seconds)
*/
#define SIXLOWPAN_ND_MAX_RS_SEC_INTERVAL (60U)
/** @} */
/**
* @brief Duplicate address request and confirmation message format.
* @extends icmpv6_hdr_t
*
* @see [RFC 6775, section 4.4](https://tools.ietf.org/html/rfc6775#section-4.4)
*/
typedef struct __attribute__((packed)) {
uint8_t type; /**< message type */
uint8_t code; /**< message code */
network_uint16_t csum; /**< checksum */
uint8_t status; /**< indicates registration status in DAC; must be 0 in DAR. */
uint8_t resv; /**< reserved field */
network_uint16_t ltime; /**< registration lifetime */
eui64_t eui64; /**< EUI-64 */
ipv6_addr_t addr; /**< registered address */
} sixlowpan_nd_da_t;
/**
* @brief Address registration option format
* @extends ndp_opt_t
*
* @see [RFC 6775, section 4.1](https://tools.ietf.org/html/rfc6775#section-4.1)
*/
typedef struct __attribute__((packed)) {
uint8_t type; /**< option type */
uint8_t len; /**< length in units of 8 octets */
uint8_t status; /**< indicates registration status in NA response;
* must be 0 in NS messages */
uint8_t resv[3]; /**< reserved fields */
network_uint16_t ltime; /**< registration lifetime */
eui64_t eui64; /**< EUI-64 */
} sixlowpan_nd_opt_ar_t;
/**
* @brief 6LoWPAN context option format
* @extends ndp_opt_t
*
* @see [RFC 6775, section 4.2](https://tools.ietf.org/html/rfc6775#section-4.2)
*/
typedef struct __attribute__((packed)) {
uint8_t type; /**< option type */
uint8_t len; /**< length in units of 8 octets */
uint8_t ctx_len; /**< context length */
uint8_t resv_c_cid; /**< 3-bit reserved, 1-bit c flag, 4 bit CID */
network_uint16_t resv; /**< reserved field */
network_uint16_t ltime; /**< valid lifetime */
} sixlowpan_nd_opt_6ctx_t;
/**
* @brief Authoritative border router option format
* @extends ndp_opt_t
*
* @see [RFC 6775, section 4.3](https://tools.ietf.org/html/rfc6775#section-4.3)
*/
typedef struct __attribute__((packed)) {
uint8_t type; /**< option type */
uint8_t len; /**< length in units of 8 octets */
network_uint16_t vlow; /**< version low */
network_uint16_t vhigh; /**< version high */
network_uint16_t ltime; /**< valid lifetime */
ipv6_addr_t braddr; /**< 6LoWPAN border router address */
} sixlowpan_nd_opt_abr_t;
/**
* @brief Checks if a 6LoWPAN context in an 6LoWPAN context option is
* valid for compression.
*
* @param[in] ctx_opt A 6LoWPAN context option.
*
* @return true, if C bit is set in @p ctx_opt.
* @return false, if C bit is unset in @p ctx_opt.
*/
static inline bool sixlowpan_nd_opt_6ctx_is_comp(const sixlowpan_nd_opt_6ctx_t *ctx_opt)
{
return (bool)(ctx_opt->resv_c_cid & SIXLOWPAN_ND_OPT_6CTX_FLAGS_C);
}
/**
* @brief Gets a CID (context identifier) from a 6LoWPAN context option.
*
* @param[in] ctx_opt A 6LoWPAN context option.
*
* @return The CID in the 6LoWPAN context option @p ctx_opt.
*/
static inline uint8_t sixlowpan_nd_opt_6ctx_get_cid(const sixlowpan_nd_opt_6ctx_t *ctx_opt)
{
return (ctx_opt->resv_c_cid & SIXLOWPAN_ND_OPT_6CTX_FLAGS_CID_MASK);
}
/**
* @brief Sets a CID (context identifier) for a 6LoWPAN context option.
*
* @param[out] ctx_opt A 6LoWPAN context option.
* @param[in] cid The CID for the 6LoWPAN context option.
*/
static inline void sixlowpan_nd_opt_6ctx_set_cid(sixlowpan_nd_opt_6ctx_t *ctx_opt, uint8_t cid)
{
ctx_opt->resv_c_cid &= ~SIXLOWPAN_ND_OPT_6CTX_FLAGS_CID_MASK;
ctx_opt->resv_c_cid |= (SIXLOWPAN_ND_OPT_6CTX_FLAGS_CID_MASK & cid);
}
/**
* @brief Gets the version in correct order from an Authoritative Border
* Router option
*
* @param[in] abr_opt An Authoritative Border Router option (ABRO).
*
* @return The version of the ABRO
*/
static inline uint32_t sixlowpan_nd_opt_abr_get_version(const sixlowpan_nd_opt_abr_t *abr_opt)
{
return ((uint32_t)byteorder_ntohs(abr_opt->vlow)) |
(((uint32_t)byteorder_ntohs(abr_opt->vhigh)) << 16);
}
/**
* @brief Sets the version of an Authoritative Border Router option
*
* @param[in] abr_opt An Authoritative Border Router option (ABRO).
* @param[in] version Version for the ABRO.
*/
static inline void sixlowpan_nd_opt_abr_set_version(sixlowpan_nd_opt_abr_t *abr_opt,
uint32_t version)
{
abr_opt->vlow = byteorder_htons((uint16_t)(version & 0xffff));
abr_opt->vhigh = byteorder_htons((uint16_t)(version >> 16));
}
#ifdef __cplusplus
}
#endif
#endif /* NET_SIXLOWPAN_ND_H */
/** @} */
|