WXK
2024-12-16 9201a33e45484b3247271759c91c158063baccac
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
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
333
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
370
371
372
373
374
375
376
377
378
379
380
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
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
/*
 * Copyright (c) 2017 Intel Corporation
 * Copyright (c) 2020 Nordic Semiconductor ASA
 *
 * SPDX-License-Identifier: Apache-2.0
 */
#include <stdlib.h>
#include "nimble_syscfg.h"
#define MESH_LOG_MODULE BLE_MESH_NET_KEYS_LOG
 
#include "log/log.h"
 
#include "crypto.h"
#include "adv.h"
#include "mesh/mesh.h"
#include "net.h"
#include "mesh_priv.h"
#include "lpn.h"
#include "friend.h"
#include "proxy.h"
#include "transport.h"
#include "access.h"
#include "foundation.h"
#include "beacon.h"
#include "rpl.h"
#include "settings.h"
#include "prov.h"
 
/* Tracking of what storage changes are pending for Net Keys. We track this in
 * a separate array here instead of within the respective bt_mesh_subnet
 * struct itselve, since once a key gets deleted its struct becomes invalid
 * and may be reused for other keys.
 */
struct net_key_update {
    uint16_t key_idx:12,    /* NetKey Index */
         valid:1,       /* 1 if this entry is valid, 0 if not */
         clear:1;       /* 1 if key needs clearing, 0 if storing */
};
 
/* NetKey storage information */
struct net_key_val {
    uint8_t kr_flag:1,
        kr_phase:7;
    uint8_t val[2][16];
} __packed;
 
static struct net_key_update net_key_updates[CONFIG_BT_MESH_SUBNET_COUNT];
 
#ifdef CONFIG_BT_MESH_GATT_PROXY
void (*bt_mesh_subnet_cb_list[5]) (struct bt_mesh_subnet *sub,
                                          enum bt_mesh_key_evt evt);
#else
void (*bt_mesh_subnet_cb_list[4]) (struct bt_mesh_subnet *sub,
                                          enum bt_mesh_key_evt evt);
#endif
 
static struct bt_mesh_subnet subnets[CONFIG_BT_MESH_SUBNET_COUNT] = {
    [0 ... (CONFIG_BT_MESH_SUBNET_COUNT - 1)] = {
        .net_idx = BT_MESH_KEY_UNUSED,
    },
};
 
static void subnet_evt(struct bt_mesh_subnet *sub, enum bt_mesh_key_evt evt)
{
    int i;
    for (i = 0; i < (sizeof(bt_mesh_subnet_cb_list)/sizeof(void *)); i++) {
        BT_DBG("%d", i);
        if (bt_mesh_subnet_cb_list[i]) {
            bt_mesh_subnet_cb_list[i] (sub, evt);
        }
    }
}
 
static void clear_net_key(uint16_t net_idx)
{
#if MYNEWT_VAL(BLE_MESH_SETTINGS)
    char path[20];
    int err;
 
    BT_DBG("NetKeyIndex 0x%03x", net_idx);
 
    snprintk(path, sizeof(path), "bt_mesh/NetKey/%x", net_idx);
    err = settings_save_one(path, NULL);
    if (err) {
        BT_ERR("Failed to clear NetKeyIndex 0x%03x", net_idx);
    } else {
        BT_DBG("Cleared NetKeyIndex 0x%03x", net_idx);
    }
#endif
}
 
static void store_subnet(uint16_t net_idx)
{
#if MYNEWT_VAL(BLE_MESH_SETTINGS)
    const struct bt_mesh_subnet *sub;
    struct net_key_val key;
    char buf[BT_SETTINGS_SIZE(sizeof(struct net_key_val))];
    char path[20];
    char *str;
    int err;
 
    sub = bt_mesh_subnet_get(net_idx);
    if (!sub) {
        BT_WARN("NetKeyIndex 0x%03x not found", net_idx);
        return;
    }
 
    BT_DBG("NetKeyIndex 0x%03x", net_idx);
 
    snprintk(path, sizeof(path), "bt_mesh/NetKey/%x", net_idx);
 
    memcpy(&key.val[0], sub->keys[0].net, 16);
    memcpy(&key.val[1], sub->keys[1].net, 16);
    key.kr_flag = 0U; /* Deprecated */
    key.kr_phase = sub->kr_phase;
 
    str = settings_str_from_bytes(&key, sizeof(key), buf, sizeof(buf));
    if (!str) {
        BT_ERR("Unable to encode AppKey as value");
        return;
    }
 
    err = settings_save_one(path, str);
    if (err) {
        BT_ERR("Failed to store NetKey");
    } else {
        BT_DBG("Stored NetKey");
    }
#endif
}
 
#if MYNEWT_VAL(BLE_MESH_SETTINGS)
static struct net_key_update *net_key_update_find(uint16_t key_idx,
                          struct net_key_update **free_slot)
{
    struct net_key_update *match;
    int i;
 
    match = NULL;
    *free_slot = NULL;
 
    for (i = 0; i < ARRAY_SIZE(net_key_updates); i++) {
        struct net_key_update *update = &net_key_updates[i];
 
        if (!update->valid) {
            *free_slot = update;
            continue;
        }
 
        if (update->key_idx == key_idx) {
            match = update;
        }
    }
 
    return match;
}
#endif
 
uint8_t bt_mesh_net_flags(struct bt_mesh_subnet *sub)
{
    uint8_t flags = 0x00;
 
    if (sub && (sub->kr_phase == BT_MESH_KR_PHASE_2)) {
        flags |= BT_MESH_NET_FLAG_KR;
    }
 
    if (atomic_test_bit(bt_mesh.flags, BT_MESH_IVU_IN_PROGRESS)) {
        flags |= BT_MESH_NET_FLAG_IVU;
    }
 
    return flags;
}
 
static void update_subnet_settings(uint16_t net_idx, bool store)
{
#if MYNEWT_VAL(BLE_MESH_SETTINGS)
    struct net_key_update *update, *free_slot;
    uint8_t clear = store ? 0U : 1U;
 
    BT_DBG("NetKeyIndex 0x%03x", net_idx);
 
    update = net_key_update_find(net_idx, &free_slot);
    if (update) {
        update->clear = clear;
        bt_mesh_settings_store_schedule(
            BT_MESH_SETTINGS_NET_KEYS_PENDING);
        return;
    }
 
    if (!free_slot) {
        if (store) {
            store_subnet(net_idx);
        } else {
            clear_net_key(net_idx);
        }
        return;
    }
 
    free_slot->valid = 1U;
    free_slot->key_idx = net_idx;
    free_slot->clear = clear;
 
    bt_mesh_settings_store_schedule(BT_MESH_SETTINGS_NET_KEYS_PENDING);
#endif
}
 
#if MYNEWT_VAL(BLE_MESH_SETTINGS)
void bt_mesh_subnet_store(uint16_t net_idx)
{
    update_subnet_settings(net_idx, true);
}
#endif
 
static void key_refresh(struct bt_mesh_subnet *sub, uint8_t new_phase)
{
    BT_DBG("Phase 0x%02x -> 0x%02x", sub->kr_phase, new_phase);
 
    switch (new_phase) {
    /* Added second set of keys */
    case BT_MESH_KR_PHASE_1:
        sub->kr_phase = new_phase;
        subnet_evt(sub, BT_MESH_KEY_UPDATED);
        break;
    /* Now using new keys for TX */
    case BT_MESH_KR_PHASE_2:
        sub->kr_phase = new_phase;
        subnet_evt(sub, BT_MESH_KEY_SWAPPED);
        break;
    /* Revoking keys */
    case BT_MESH_KR_PHASE_3:
        if (sub->kr_phase == BT_MESH_KR_NORMAL) {
            return;
        }
        /* __fallthrough; */
    case BT_MESH_KR_NORMAL:
        sub->kr_phase = BT_MESH_KR_NORMAL;
        memcpy(&sub->keys[0], &sub->keys[1], sizeof(sub->keys[0]));
        sub->keys[1].valid = 0U;
        subnet_evt(sub, BT_MESH_KEY_REVOKED);
        break;
    }
 
    if (IS_ENABLED(CONFIG_BT_SETTINGS)) {
        BT_DBG("Storing Updated NetKey persistently");
        bt_mesh_subnet_store(sub->net_idx);
    }
}
 
void bt_mesh_kr_update(struct bt_mesh_subnet *sub, bool kr_flag, bool new_key)
{
    if (!new_key) {
        return;
    }
 
    if (sub->kr_phase == BT_MESH_KR_PHASE_1) {
        /* Bluetooth Mesh Profile Specification Section 3.10.4.1:
         * Can skip phase 2 if we get KR=0 on new key.
         */
        key_refresh(sub, (kr_flag ? BT_MESH_KR_PHASE_2 :
                        BT_MESH_KR_PHASE_3));
    } else if (sub->kr_phase == BT_MESH_KR_PHASE_2 && !kr_flag) {
        key_refresh(sub, BT_MESH_KR_PHASE_3);
    }
}
 
static struct bt_mesh_subnet *subnet_alloc(uint16_t net_idx)
{
    struct bt_mesh_subnet *sub = NULL;
 
    for (int i = 0; i < ARRAY_SIZE(subnets); i++) {
        /* Check for already existing subnet */
        if (subnets[i].net_idx == net_idx) {
            return &subnets[i];
        }
 
        if (!sub && subnets[i].net_idx == BT_MESH_KEY_UNUSED) {
            sub = &subnets[i];
        }
    }
 
    return sub;
}
 
static void subnet_del(struct bt_mesh_subnet *sub)
{
    if (IS_ENABLED(CONFIG_BT_SETTINGS)) {
        update_subnet_settings(sub->net_idx, false);
    }
 
    bt_mesh_net_loopback_clear(sub->net_idx);
 
    subnet_evt(sub, BT_MESH_KEY_DELETED);
    (void)memset(sub, 0, sizeof(*sub));
    sub->net_idx = BT_MESH_KEY_UNUSED;
}
 
static int msg_cred_create(struct bt_mesh_net_cred *cred, const uint8_t *p,
               size_t p_len, const uint8_t key[16])
{
    return bt_mesh_k2(key, p, p_len, &cred->nid, cred->enc, cred->privacy);
}
 
static int net_keys_create(struct bt_mesh_subnet_keys *keys,
               const uint8_t key[16])
{
    uint8_t p = 0;
    int err;
 
    err = msg_cred_create(&keys->msg, &p, 1, key);
    if (err) {
        BT_ERR("Unable to generate NID, EncKey & PrivacyKey");
        return err;
    }
 
    memcpy(keys->net, key, 16);
 
    BT_DBG("NID 0x%02x EncKey %s", keys->msg.nid,
           bt_hex(keys->msg.enc, 16));
    BT_DBG("PrivacyKey %s", bt_hex(keys->msg.privacy, 16));
 
    err = bt_mesh_k3(key, keys->net_id);
    if (err) {
        BT_ERR("Unable to generate Net ID");
        return err;
    }
 
    BT_DBG("NetID %s", bt_hex(keys->net_id, 8));
 
#if defined(CONFIG_BT_MESH_GATT_PROXY)
    err = bt_mesh_identity_key(key, keys->identity);
    if (err) {
        BT_ERR("Unable to generate IdentityKey");
        return err;
    }
 
    BT_DBG("IdentityKey %s", bt_hex(keys->identity, 16));
#endif /* GATT_PROXY */
 
    err = bt_mesh_beacon_key(key, keys->beacon);
    if (err) {
        BT_ERR("Unable to generate beacon key");
        return err;
    }
 
    BT_DBG("BeaconKey %s", bt_hex(keys->beacon, 16));
 
    keys->valid = 1U;
 
    return 0;
}
 
uint8_t bt_mesh_subnet_add(uint16_t net_idx, const uint8_t key[16])
{
    struct bt_mesh_subnet *sub = NULL;
    int err;
 
    BT_DBG("0x%03x", net_idx);
 
    sub = subnet_alloc(net_idx);
    if (!sub) {
        return STATUS_INSUFF_RESOURCES;
    }
 
    if (sub->net_idx == net_idx) {
        if (memcmp(key, sub->keys[0].net, 16)) {
            return STATUS_IDX_ALREADY_STORED;
        }
 
        return STATUS_SUCCESS;
    }
 
    err = net_keys_create(&sub->keys[0], key);
    if (err) {
        return STATUS_UNSPECIFIED;
    }
 
    sub->net_idx = net_idx;
    sub->kr_phase = BT_MESH_KR_NORMAL;
 
    if (IS_ENABLED(CONFIG_BT_MESH_GATT_PROXY)) {
        sub->node_id = BT_MESH_NODE_IDENTITY_STOPPED;
    } else {
        sub->node_id = BT_MESH_NODE_IDENTITY_NOT_SUPPORTED;
    }
 
    subnet_evt(sub, BT_MESH_KEY_ADDED);
 
    if (IS_ENABLED(CONFIG_BT_SETTINGS)) {
        BT_DBG("Storing NetKey persistently");
        bt_mesh_subnet_store(sub->net_idx);
    }
 
    return STATUS_SUCCESS;
}
 
bool bt_mesh_subnet_exists(uint16_t net_idx)
{
    return !!bt_mesh_subnet_get(net_idx);
}
 
uint8_t bt_mesh_subnet_update(uint16_t net_idx, const uint8_t key[16])
{
    struct bt_mesh_subnet *sub;
    int err;
 
    BT_DBG("0x%03x", net_idx);
 
    sub = bt_mesh_subnet_get(net_idx);
    if (!sub) {
        return STATUS_INVALID_NETKEY;
    }
 
    /* The node shall successfully process a NetKey Update message on a
     * valid NetKeyIndex when the NetKey value is different and the Key
     * Refresh procedure has not been started, or when the NetKey value is
     * the same in Phase 1. The NetKey Update message shall generate an
     * error when the node is in Phase 2, or Phase 3.
     */
    switch (sub->kr_phase) {
    case BT_MESH_KR_NORMAL:
        if (!memcmp(key, sub->keys[0].net, 16)) {
            return STATUS_IDX_ALREADY_STORED;
        }
        break;
    case BT_MESH_KR_PHASE_1:
        if (!memcmp(key, sub->keys[1].net, 16)) {
            return STATUS_SUCCESS;
        }
        /* __fallthrough; */
    case BT_MESH_KR_PHASE_2:
    case BT_MESH_KR_PHASE_3:
        return STATUS_CANNOT_UPDATE;
    }
 
    err = net_keys_create(&sub->keys[1], key);
    if (err) {
        return STATUS_CANNOT_UPDATE;
    }
 
    key_refresh(sub, BT_MESH_KR_PHASE_1);
 
    return STATUS_SUCCESS;
}
 
uint8_t bt_mesh_subnet_del(uint16_t net_idx)
{
    struct bt_mesh_subnet *sub;
 
    BT_DBG("0x%03x", net_idx);
 
    sub = bt_mesh_subnet_get(net_idx);
    if (!sub) {
        /* This could be a retry of a previous attempt that had its
         * response lost, so pretend that it was a success.
         */
        return STATUS_INVALID_NETKEY;
    }
 
    subnet_del(sub);
 
    return STATUS_SUCCESS;
}
 
int bt_mesh_friend_cred_create(struct bt_mesh_net_cred *cred, uint16_t lpn_addr,
                   uint16_t frnd_addr, uint16_t lpn_counter,
                   uint16_t frnd_counter, const uint8_t key[16])
{
    uint8_t p[9];
 
    p[0] = 0x01;
    sys_put_be16(lpn_addr, p + 1);
    sys_put_be16(frnd_addr, p + 3);
    sys_put_be16(lpn_counter, p + 5);
    sys_put_be16(frnd_counter, p + 7);
 
    return msg_cred_create(cred, p, sizeof(p), key);
}
 
uint8_t bt_mesh_subnet_kr_phase_set(uint16_t net_idx, uint8_t *phase)
{
    /* Table in Bluetooth Mesh Profile Specification Section 4.2.14: */
    const uint8_t valid_transitions[] = {
        BIT(BT_MESH_KR_PHASE_3), /* Normal phase: KR is started by key update */
        BIT(BT_MESH_KR_PHASE_2) | BIT(BT_MESH_KR_PHASE_3), /* Phase 1 */
        BIT(BT_MESH_KR_PHASE_3), /* Phase 2 */
        /* Subnet is never in Phase 3 */
    };
    struct bt_mesh_subnet *sub;
 
    BT_DBG("0x%03x", net_idx);
 
    sub = bt_mesh_subnet_get(net_idx);
    if (!sub) {
        *phase = 0x00;
        return STATUS_INVALID_NETKEY;
    }
 
    if (*phase == sub->kr_phase) {
        return STATUS_SUCCESS;
    }
 
    if (sub->kr_phase < ARRAY_SIZE(valid_transitions) &&
        valid_transitions[sub->kr_phase] & BIT(*phase)) {
        key_refresh(sub, *phase);
 
        *phase = sub->kr_phase;
 
        return STATUS_SUCCESS;
    }
 
    BT_WARN("Invalid KR transition: 0x%02x -> 0x%02x", sub->kr_phase,
        *phase);
 
    *phase = sub->kr_phase;
 
    return STATUS_CANNOT_UPDATE;
}
 
uint8_t bt_mesh_subnet_kr_phase_get(uint16_t net_idx, uint8_t *phase)
{
    struct bt_mesh_subnet *sub;
 
    sub = bt_mesh_subnet_get(net_idx);
    if (!sub) {
        *phase = BT_MESH_KR_NORMAL;
        return STATUS_INVALID_NETKEY;
    }
 
    *phase = sub->kr_phase;
 
    return STATUS_SUCCESS;
}
 
uint8_t bt_mesh_subnet_node_id_set(uint16_t net_idx,
                   enum bt_mesh_feat_state node_id)
{
    struct bt_mesh_subnet *sub;
 
    if (node_id == BT_MESH_FEATURE_NOT_SUPPORTED) {
        return STATUS_CANNOT_SET;
    }
 
    sub = bt_mesh_subnet_get(net_idx);
    if (!sub) {
        return STATUS_INVALID_NETKEY;
    }
 
    if (!IS_ENABLED(CONFIG_BT_MESH_GATT_PROXY)) {
        return STATUS_FEAT_NOT_SUPP;
    }
 
    if (node_id) {
        bt_mesh_proxy_identity_start(sub);
    } else {
        bt_mesh_proxy_identity_stop(sub);
    }
 
    bt_mesh_adv_update();
 
    return STATUS_SUCCESS;
}
 
uint8_t bt_mesh_subnet_node_id_get(uint16_t net_idx,
                   enum bt_mesh_feat_state *node_id)
{
    struct bt_mesh_subnet *sub;
 
    sub = bt_mesh_subnet_get(net_idx);
    if (!sub) {
        *node_id = 0x00;
        return STATUS_INVALID_NETKEY;
    }
 
    *node_id = sub->node_id;
 
    return STATUS_SUCCESS;
}
 
ssize_t bt_mesh_subnets_get(uint16_t net_idxs[], size_t max, off_t skip)
{
    size_t count = 0;
 
    for (int i = 0; i < ARRAY_SIZE(subnets); i++) {
        struct bt_mesh_subnet *sub = &subnets[i];
 
        if (sub->net_idx == BT_MESH_KEY_UNUSED) {
            continue;
        }
 
        if (skip) {
            skip--;
            continue;
        }
 
        if (count >= max) {
            return -ENOMEM;
        }
 
        net_idxs[count++] = sub->net_idx;
    }
 
    return count;
}
 
struct bt_mesh_subnet *bt_mesh_subnet_get(uint16_t net_idx)
{
    for (int i = 0; i < ARRAY_SIZE(subnets); i++) {
        struct bt_mesh_subnet *sub = &subnets[i];
 
        if (sub->net_idx == net_idx) {
            return sub;
        }
    }
 
    return NULL;
}
 
int bt_mesh_subnet_set(uint16_t net_idx, uint8_t kr_phase,
               const uint8_t old_key[16], const uint8_t new_key[16])
{
    const uint8_t *keys[] = { old_key, new_key };
    struct bt_mesh_subnet *sub;
 
    sub = subnet_alloc(net_idx);
    if (!sub) {
        return -ENOMEM;
    }
 
    if (sub->net_idx == net_idx) {
        return -EALREADY;
    }
 
    for (int i = 0; i < ARRAY_SIZE(keys); i++) {
        if (!keys[i]) {
            continue;
        }
 
        if (net_keys_create(&sub->keys[i], keys[i])) {
            return -EIO;
        }
    }
 
    sub->net_idx = net_idx;
    sub->kr_phase = kr_phase;
 
    if (IS_ENABLED(CONFIG_BT_MESH_GATT_PROXY)) {
        sub->node_id = BT_MESH_NODE_IDENTITY_STOPPED;
    } else {
        sub->node_id = BT_MESH_NODE_IDENTITY_NOT_SUPPORTED;
    }
 
    /* Make sure we have valid beacon data to be sent */
    bt_mesh_beacon_update(sub);
 
    return 0;
}
 
struct bt_mesh_subnet *bt_mesh_subnet_find(int (*cb)(struct bt_mesh_subnet *sub,
                             void *cb_data),
                       void *cb_data)
{
    for (int i = 0; i < ARRAY_SIZE(subnets); i++) {
        if (subnets[i].net_idx == BT_MESH_KEY_UNUSED) {
            continue;
        }
 
        if (!cb || cb(&subnets[i], cb_data)) {
            return &subnets[i];
        }
    }
 
    return NULL;
}
 
size_t bt_mesh_subnet_foreach(void (*cb)(struct bt_mesh_subnet *sub))
{
    size_t count = 0;
 
    for (int i = 0; i < ARRAY_SIZE(subnets); i++) {
        if (subnets[i].net_idx == BT_MESH_KEY_UNUSED) {
            continue;
        }
 
        cb(&subnets[i]);
        count++;
    }
 
    return count;
}
 
struct bt_mesh_subnet *bt_mesh_subnet_next(struct bt_mesh_subnet *sub)
{
    if (sub) {
        sub++;
    } else {
        sub = &subnets[0];
    }
 
    for (int i = 0; i < ARRAY_SIZE(subnets); i++, sub++) {
        /* Roll over once we reach the end */
        if (sub == &subnets[ARRAY_SIZE(subnets)]) {
            sub = &subnets[0];
        }
 
        if (sub->net_idx != BT_MESH_KEY_UNUSED) {
            return sub;
        }
    }
 
    return NULL;
}
 
void bt_mesh_net_keys_reset(void)
{
    int i;
 
    /* Delete all net keys, which also takes care of all app keys which
     * are associated with each net key.
     */
    for (i = 0; i < ARRAY_SIZE(subnets); i++) {
        struct bt_mesh_subnet *sub = &subnets[i];
 
        if (sub->net_idx != BT_MESH_KEY_UNUSED) {
            subnet_del(sub);
        }
    }
}
 
bool bt_mesh_net_cred_find(struct bt_mesh_net_rx *rx, struct os_mbuf *in,
               struct os_mbuf *out,
               bool (*cb)(struct bt_mesh_net_rx *rx,
                      struct os_mbuf *in,
                      struct os_mbuf *out,
                      const struct bt_mesh_net_cred *cred))
{
    int i, j;
 
    BT_DBG("");
 
#if MYNEWT_VAL(BLE_MESH_LOW_POWER)
    if (bt_mesh_lpn_waiting_update()) {
        rx->sub = bt_mesh.lpn.sub;
 
        for (j = 0; j < ARRAY_SIZE(bt_mesh.lpn.cred); j++) {
            if (!rx->sub->keys[j].valid) {
                continue;
            }
 
            if (cb(rx, in, out, &bt_mesh.lpn.cred[j])) {
                rx->new_key = (j > 0);
                rx->friend_cred = 1U;
                rx->ctx.net_idx = rx->sub->net_idx;
                return true;
            }
        }
 
        /* LPN Should only receive on the friendship credentials when in
         * a friendship.
         */
        return false;
    }
#endif
 
#if MYNEWT_VAL(BLE_MESH_FRIEND)
    /** Each friendship has unique friendship credentials */
    for (i = 0; i < ARRAY_SIZE(bt_mesh.frnd); i++) {
        struct bt_mesh_friend *frnd = &bt_mesh.frnd[i];
 
        if (!frnd->subnet) {
            continue;
        }
 
        rx->sub = frnd->subnet;
 
        for (j = 0; j < ARRAY_SIZE(frnd->cred); j++) {
            if (!rx->sub->keys[j].valid) {
                continue;
            }
 
            if (cb(rx, in, out, &frnd->cred[j])) {
                rx->new_key = (j > 0);
                rx->friend_cred = 1U;
                rx->ctx.net_idx = rx->sub->net_idx;
                return true;
            }
        }
    }
#endif
 
    for (i = 0; i < ARRAY_SIZE(subnets); i++) {
        rx->sub = &subnets[i];
        if (rx->sub->net_idx == BT_MESH_KEY_UNUSED) {
            continue;
        }
 
        for (j = 0; j < ARRAY_SIZE(rx->sub->keys); j++) {
            if (!rx->sub->keys[j].valid) {
                continue;
            }
 
            if (cb(rx, in, out, &rx->sub->keys[j].msg)) {
                rx->new_key = (j > 0);
                rx->friend_cred = 0U;
                rx->ctx.net_idx = rx->sub->net_idx;
                return true;
            }
        }
    }
 
    return false;
}
 
#if MYNEWT_VAL(BLE_MESH_SETTINGS)
static int net_key_set(int argc, char **argv, char *val)
{
    struct net_key_val key;
    int len, err;
    uint16_t net_idx;
 
    BT_DBG("argv[0] %s val %s", argv[0], val ? val : "(null)");
 
    net_idx = strtol(argv[0], NULL, 16);
 
    len = sizeof(key);
    err = settings_bytes_from_str(val, &key, &len);
    if (err) {
        BT_ERR("Failed to decode value %s (err %d)", val, err);
        return err;
    }
 
    if (len != sizeof(key)) {
        BT_ERR("Unexpected value length (%d != %zu)", len, sizeof(key));
        return -EINVAL;
    }
 
    BT_DBG("NetKeyIndex 0x%03x recovered from storage", net_idx);
 
    return bt_mesh_subnet_set(
        net_idx, key.kr_phase, key.val[0],
        (key.kr_phase != BT_MESH_KR_NORMAL) ? key.val[1] : NULL);
}
#endif
 
void bt_mesh_subnet_pending_store(void)
{
    int i;
 
    for (i = 0; i < ARRAY_SIZE(net_key_updates); i++) {
        struct net_key_update *update = &net_key_updates[i];
 
        if (!update->valid) {
            continue;
        }
 
        if (update->clear) {
            clear_net_key(update->key_idx);
        } else {
            store_subnet(update->key_idx);
        }
 
        update->valid = 0U;
    }
}
 
#if MYNEWT_VAL(BLE_MESH_SETTINGS)
static struct conf_handler bt_mesh_net_key_conf_handler = {
    .ch_name = "bt_mesh",
    .ch_get = NULL,
    .ch_set = net_key_set,
    .ch_commit = NULL,
    .ch_export = NULL,
};
#endif
 
void bt_mesh_net_key_init(void)
{
#if MYNEWT_VAL(BLE_MESH_SETTINGS)
    int rc;
 
    rc = conf_register(&bt_mesh_net_key_conf_handler);
 
    SYSINIT_PANIC_ASSERT_MSG(rc == 0,
                 "Failed to register bt_mesh_net_key conf");
#endif
}