1
2
3
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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
122
123
124
125
126
127
128
129
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
173
174
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
207
208
209
210
211
212
213
214
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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
375
376
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
515
516
519
520
523
524
525
526
527
528
529
/* ... */
#ifndef _NET_H_
#define _NET_H_
#include "mesh/access.h"
#include "mesh/mutex.h"
#ifdef __cplusplus
extern "C" {
#endif
#define BLE_MESH_NET_FLAG_KR BIT(0)
#define BLE_MESH_NET_FLAG_IVU BIT(1)
#define BLE_MESH_KR_NORMAL 0x00
#define BLE_MESH_KR_PHASE_1 0x01
#define BLE_MESH_KR_PHASE_2 0x02
#define BLE_MESH_KR_PHASE_3 0x03
#define BLE_MESH_IV_UPDATE(flags) ((flags >> 1) & 0x01)
#define BLE_MESH_KEY_REFRESH(flags) (flags & 0x01)
#define BLE_MESH_IVU_MIN_HOURS 96
#define BLE_MESH_IVU_HOURS (BLE_MESH_IVU_MIN_HOURS / CONFIG_BLE_MESH_IVU_DIVIDER)
#define BLE_MESH_IVU_TIMEOUT K_HOURS(BLE_MESH_IVU_HOURS)11 defines
struct bt_mesh_app_key {
uint16_t net_idx;
uint16_t app_idx;
bool updated;
struct bt_mesh_app_keys {
uint8_t id;
uint8_t val[16];
}{ ... } keys[2];
}{ ... };
struct bt_mesh_subnet {
uint32_t snb_sent;
uint8_t snb_last;
uint8_t snb_cur;
uint8_t snb_cache[21];
#if CONFIG_BLE_MESH_PRIVATE_BEACON
uint32_t mpb_sent;
uint8_t mpb_last;
uint8_t mpb_cur;
uint8_t mpb_cache[21];
uint8_t mpb_flags_last;
uint8_t mpb_ivi_last: 1;
uint8_t mpb_random[13];
uint8_t private_node_id; /* ... */
#endif
uint16_t net_idx;
#if CONFIG_BLE_MESH_BRC_SRV
uint16_t sbr_net_idx;
#endif
bool kr_flag;
uint8_t kr_phase;
uint8_t node_id;
uint32_t node_id_start;
uint8_t auth[8];
struct bt_mesh_subnet_keys {
uint8_t net[16];
uint8_t nid;
uint8_t enc[16];
uint8_t net_id[8];
#if CONFIG_BLE_MESH_GATT_PROXY_SERVER
uint8_t identity[16];
#endif
uint8_t privacy[16];
uint8_t beacon[16];
#if CONFIG_BLE_MESH_PRIVATE_BEACON
uint8_t private_beacon[16];
#endif
#if CONFIG_BLE_MESH_DF_SRV
uint8_t direct_nid;
uint8_t direct_enc[16];
uint8_t direct_privacy[16]; /* ... */
#endif
}{ ... } keys[2];
/* ... */
uint8_t proxy_privacy;
#if CONFIG_BLE_MESH_DF_SRV
uint8_t directed_forwarding;
uint8_t directed_relay;
uint8_t directed_proxy;
uint8_t directed_proxy_use_default;
uint8_t directed_friend;
uint8_t use_directed;
struct {
uint16_t len_present:1,
range_start:15;
uint8_t range_length;
}{...} proxy_client_uar;
uint8_t path_metric_type:3,
path_lifetime_type:2,
two_way_path:1;
uint8_t forward_number;
/* ... */
struct bt_mesh_discovery_table {
uint8_t max_disc_entries;
uint8_t max_concurr_init;
uint8_t concurr_init;
bt_mesh_mutex_t mutex;
sys_slist_t entries;
}{...} discovery_table;
struct bt_mesh_forward_table {
uint8_t max_ford_entries;
uint8_t max_deps_nodes;
uint16_t update_id;
bt_mesh_mutex_t mutex;
sys_slist_t entries;
}{...} forward_table;
uint8_t wanted_lanes;
uint8_t unicast_echo_interval;
uint8_t multicast_echo_interval;/* ... */
#endif
}{ ... };
struct bt_mesh_rpl {
uint16_t src;
bool old_iv;
#if CONFIG_BLE_MESH_SETTINGS
bool store;
#endif
uint32_t seq;
}{ ... };
#if CONFIG_BLE_MESH_FRIEND
#define FRIEND_SEG_RX CONFIG_BLE_MESH_FRIEND_SEG_RX
#define FRIEND_SUB_LIST_SIZE CONFIG_BLE_MESH_FRIEND_SUB_LIST_SIZE/* ... */
#else
#define FRIEND_SEG_RX 0
#define FRIEND_SUB_LIST_SIZE 0/* ... */
#endif
struct bt_mesh_friend {
uint16_t lpn;
uint8_t recv_delay;
uint8_t fsn:1,
send_last:1,
pending_req:1,
pending_buf:1,
valid:1,
established:1;
int32_t poll_to;
uint8_t num_elem;
uint16_t lpn_counter;
uint16_t counter;
uint16_t net_idx;
uint16_t sub_list[FRIEND_SUB_LIST_SIZE];
struct k_delayed_work timer;
struct bt_mesh_friend_seg {
sys_slist_t queue;
/* ... */
uint8_t seg_count;
}{ ... } seg[FRIEND_SEG_RX];
struct net_buf *last;
sys_slist_t queue;
uint32_t queue_size;
struct {
uint32_t start;
uint16_t frnd;
uint16_t repeat_sec;
struct k_delayed_work timer;
}{ ... } clear;
}{ ... };
#if CONFIG_BLE_MESH_LOW_POWER
#define LPN_GROUPS CONFIG_BLE_MESH_LPN_GROUPS
#else
#define LPN_GROUPS 0
#endif
struct bt_mesh_lpn {
enum __attribute__((packed)) {
BLE_MESH_LPN_DISABLED,
BLE_MESH_LPN_CLEAR,
BLE_MESH_LPN_TIMER,
BLE_MESH_LPN_ENABLED,
BLE_MESH_LPN_REQ_WAIT,
BLE_MESH_LPN_WAIT_OFFER,
BLE_MESH_LPN_ESTABLISHED,
BLE_MESH_LPN_RECV_DELAY,
BLE_MESH_LPN_WAIT_UPDATE,
BLE_MESH_LPN_OFFER_RECV,
}{...} state;
uint8_t xact_next;
uint8_t xact_pending;
uint8_t sent_req;
/* ... */
uint16_t frnd;
uint8_t recv_win;
uint8_t req_attempts;
int32_t poll_timeout;
uint8_t groups_changed: 1,
pending_poll: 1,
disable: 1,
fsn: 1,
established: 1,
clear_success: 1;
uint8_t queue_size;
uint16_t counter;
uint16_t old_friend;
#if CONFIG_BLE_MESH_DF_SRV
uint8_t old_directed_forwarding;
#endif
uint16_t adv_duration;
struct k_delayed_work timer;
uint16_t groups[LPN_GROUPS];
BLE_MESH_ATOMIC_DEFINE(added, LPN_GROUPS);
BLE_MESH_ATOMIC_DEFINE(pending, LPN_GROUPS);
BLE_MESH_ATOMIC_DEFINE(to_remove, LPN_GROUPS);
}{ ... };
enum {
BLE_MESH_NODE,
BLE_MESH_PROVISIONER,
BLE_MESH_VALID,
BLE_MESH_VALID_PROV,
BLE_MESH_SUSPENDED,
BLE_MESH_IVU_IN_PROGRESS,
BLE_MESH_IVU_INITIATOR,
BLE_MESH_IVU_TEST,
BLE_MESH_IVU_PENDING,
BLE_MESH_RPL_PENDING,
BLE_MESH_KEYS_PENDING,
BLE_MESH_NET_PENDING,
BLE_MESH_IV_PENDING,
BLE_MESH_SEQ_PENDING,
BLE_MESH_HB_PUB_PENDING,
BLE_MESH_CFG_PENDING,
BLE_MESH_MOD_PENDING,
BLE_MESH_VA_PENDING,
BLE_MESH_FLAG_COUNT,
}{ ... };
struct bt_mesh_net {
uint32_t iv_index;
uint32_t seq;
BLE_MESH_ATOMIC_DEFINE(flags, BLE_MESH_FLAG_COUNT);
sys_slist_t local_queue;
#if CONFIG_BLE_MESH_FRIEND
struct bt_mesh_friend frnd[CONFIG_BLE_MESH_FRIEND_LPN_COUNT];/* ... */
#endif
#if CONFIG_BLE_MESH_LOW_POWER
struct bt_mesh_lpn lpn;
#endif
uint8_t ivu_duration;
struct k_delayed_work ivu_timer;
uint8_t dev_key[16];
uint8_t dev_key_ca[16];
struct bt_mesh_app_key app_keys[CONFIG_BLE_MESH_APP_KEY_COUNT];
struct bt_mesh_subnet sub[CONFIG_BLE_MESH_SUBNET_COUNT];
struct bt_mesh_rpl rpl[CONFIG_BLE_MESH_CRPL];
#if CONFIG_BLE_MESH_PROVISIONER
struct bt_mesh_app_key *p_app_keys[CONFIG_BLE_MESH_PROVISIONER_APP_KEY_COUNT];
uint16_t p_app_idx_next;
struct bt_mesh_subnet *p_sub[CONFIG_BLE_MESH_PROVISIONER_SUBNET_COUNT];
uint16_t p_net_idx_next;/* ... */
#endif
}{ ... };
enum bt_mesh_net_if {
BLE_MESH_NET_IF_ADV,
BLE_MESH_NET_IF_LOCAL,
BLE_MESH_NET_IF_PROXY,
BLE_MESH_NET_IF_PROXY_CFG,
}{ ... };
#define BLE_MESH_NONE_BEARER 0
#define BLE_MESH_ADV_BEARER BIT(0)
#define BLE_MESH_GATT_BEARER BIT(1)
#define BLE_MESH_LOCAL_BEARER BIT(2)
#define BLE_MESH_ALL_BEARERS (BLE_MESH_ADV_BEARER | BLE_MESH_GATT_BEARER)5 defines
struct bt_mesh_net_rx {
struct bt_mesh_subnet *sub;
struct bt_mesh_msg_ctx ctx;
uint32_t seq;
uint16_t old_iv:1,
new_key:1,
friend_cred:1 __attribute__((deprecated)),
ctl:1,
net_if:2,
local_match:1,
friend_match:1,
#if CONFIG_BLE_MESH_NOT_RELAY_REPLAY_MSG
replay_msg:1,
#endif
sbr_rpl:1;
uint16_t msg_cache_idx;
}{ ... };
struct bt_mesh_net_tx {
struct bt_mesh_subnet *sub;
struct bt_mesh_msg_ctx *ctx;
uint16_t src;
uint8_t xmit;
uint8_t friend_cred:1 __attribute__((deprecated)),
aszmic:1,
aid:6;
}{ ... };
extern struct bt_mesh_net bt_mesh;
#define BLE_MESH_NET_IVI_TX (bt_mesh.iv_index - \
bt_mesh_atomic_test_bit(bt_mesh.flags, \
BLE_MESH_IVU_IN_PROGRESS))...
#define BLE_MESH_NET_IVI_RX(rx) (bt_mesh.iv_index - (rx)->old_iv)
#define BLE_MESH_NET_HDR_LEN 9
#define BLE_MESH_NET_HDR_IVI(pdu) ((pdu)[0] >> 7)
#define BLE_MESH_NET_HDR_NID(pdu) ((pdu)[0] & 0x7F)
#define BLE_MESH_NET_HDR_CTL(pdu) ((pdu)[1] >> 7)
#define BLE_MESH_NET_HDR_TTL(pdu) ((pdu)[1] & 0x7F)
#define BLE_MESH_NET_HDR_SEQ(pdu) (sys_get_be24(&(pdu)[2]))
#define BLE_MESH_NET_HDR_SRC(pdu) (sys_get_be16(&(pdu)[5]))
#define BLE_MESH_NET_HDR_DST(pdu) (sys_get_be16(&(pdu)[7]))10 defines
void bt_mesh_msg_cache_clear(uint16_t unicast_addr, uint8_t elem_num);
int bt_mesh_net_keys_create(struct bt_mesh_subnet_keys *keys,
const uint8_t key[16]);
int bt_mesh_net_create(uint16_t idx, uint8_t flags, const uint8_t key[16],
uint32_t iv_index);
uint8_t bt_mesh_net_flags(struct bt_mesh_subnet *sub);
bool bt_mesh_kr_update(struct bt_mesh_subnet *sub, uint8_t new_kr, bool new_key);
void bt_mesh_net_revoke_keys(struct bt_mesh_subnet *sub);
int bt_mesh_net_secure_beacon_update(struct bt_mesh_subnet *sub);
bool bt_mesh_net_iv_update(uint32_t iv_index, bool iv_update);
void bt_mesh_net_sec_update(struct bt_mesh_subnet *sub);
struct bt_mesh_subnet *bt_mesh_subnet_get(uint16_t net_idx);
struct bt_mesh_subnet *bt_mesh_subnet_find_with_snb(const uint8_t net_id[8], uint8_t flags,
uint32_t iv_index, const uint8_t auth[8],
bool *new_key);
int bt_mesh_net_encode(struct bt_mesh_net_tx *tx, struct net_buf_simple *buf,
bool proxy);
int bt_mesh_net_send(struct bt_mesh_net_tx *tx, struct net_buf *buf,
const struct bt_mesh_send_cb *cb, void *cb_data);
int bt_mesh_net_resend(struct bt_mesh_subnet *sub, struct net_buf *buf,
bool new_key, uint8_t *tx_cred, uint8_t tx_tag,
const struct bt_mesh_send_cb *cb, void *cb_data);
int bt_mesh_net_decode(struct net_buf_simple *data, enum bt_mesh_net_if net_if,
struct bt_mesh_net_rx *rx, struct net_buf_simple *buf);
void bt_mesh_net_recv(struct net_buf_simple *data, int8_t rssi,
enum bt_mesh_net_if net_if);
bool bt_mesh_primary_subnet_exist(void);
uint32_t bt_mesh_next_seq(void);
void bt_mesh_net_start(void);
void bt_mesh_net_init(void);
void bt_mesh_net_reset(void);
void bt_mesh_net_deinit(void);
void bt_mesh_net_header_parse(struct net_buf_simple *buf,
struct bt_mesh_net_rx *rx);
struct friend_cred {
uint16_t net_idx;
uint16_t addr;
uint16_t lpn_counter;
uint16_t frnd_counter;
struct {
uint8_t nid;
uint8_t enc[16];
uint8_t privacy[16];
}{ ... } cred[2];
}{ ... };
int friend_cred_get(struct bt_mesh_subnet *sub, uint16_t addr, uint8_t *nid,
const uint8_t **enc, const uint8_t **priv);
int friend_cred_set(struct friend_cred *cred, uint8_t idx, const uint8_t net_key[16]);
void friend_cred_refresh(uint16_t net_idx);
int friend_cred_update(struct bt_mesh_subnet *sub);
struct friend_cred *friend_cred_create(struct bt_mesh_subnet *sub, uint16_t addr,
uint16_t lpn_counter, uint16_t frnd_counter);
void friend_cred_clear(struct friend_cred *cred);
int friend_cred_del(uint16_t net_idx, uint16_t addr);
static inline void send_cb_finalize(const struct bt_mesh_send_cb *cb,
void *cb_data)
{
if (!cb) {
return;
}{...}
if (cb->start) {
cb->start(0, 0, cb_data);
}{...}
if (cb->end) {
cb->end(0, cb_data);
}{...}
}{ ... }
#ifdef __cplusplus
}{...}
#endif
/* ... */
#endif