xref: /btstack/src/mesh/mesh_network.c (revision d58a1b5f11ada8ddf896c41fff5a35e7f140c37e)
1 /*
2  * Copyright (C) 2018 BlueKitchen GmbH
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  *
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. Neither the name of the copyright holders nor the names of
14  *    contributors may be used to endorse or promote products derived
15  *    from this software without specific prior written permission.
16  * 4. Any redistribution, use, or modification is done solely for
17  *    personal benefit and not for any commercial purpose or for
18  *    monetary gain.
19  *
20  * THIS SOFTWARE IS PROVIDED BY BLUEKITCHEN GMBH AND CONTRIBUTORS
21  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL MATTHIAS
24  * RINGWALD OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
25  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
26  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
27  * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
28  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
29  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
30  * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  *
33  * Please inquire about commercial licensing options at
34  * [email protected]
35  *
36  */
37 
38 #define BTSTACK_FILE__ "mesh_network.c"
39 
40 #include <stdio.h>
41 #include <stdlib.h>
42 #include <string.h>
43 
44 #include "btstack_debug.h"
45 #include "btstack_event.h"
46 #include "btstack_memory.h"
47 #include "btstack_util.h"
48 
49 #include "mesh/beacon.h"
50 #include "mesh/mesh_foundation.h"
51 #include "mesh/mesh_iv_index_seq_number.h"
52 #include "mesh/mesh_keys.h"
53 #include "mesh/mesh_node.h"
54 #include "mesh/provisioning.h"
55 #include "mesh/provisioning_device.h"
56 
57 #ifdef ENABLE_MESH_ADV_BEARER
58 #include "mesh/adv_bearer.h"
59 #endif
60 
61 #ifdef ENABLE_MESH_GATT_BEARER
62 #include "mesh/gatt_bearer.h"
63 #endif
64 
65 // configuration
66 #define MESH_NETWORK_CACHE_SIZE 2
67 
68 // debug config
69 // #define LOG_NETWORK
70 
71 static void mesh_network_dump_network_pdus(const char * name, btstack_linked_list_t * list);
72 
73 // structs
74 
75 // globals
76 
77 static void (*mesh_network_higher_layer_handler)(mesh_network_callback_type_t callback_type, mesh_network_pdu_t * network_pdu);
78 static void (*mesh_network_proxy_message_handler)(mesh_network_callback_type_t callback_type, mesh_network_pdu_t * network_pdu);
79 
80 #ifdef ENABLE_MESH_GATT_BEARER
81 static hci_con_handle_t gatt_bearer_con_handle;
82 #endif
83 
84 // shared send/receive crypto
85 static int mesh_crypto_active;
86 
87 // crypto requests
88 static union {
89     btstack_crypto_ccm_t         ccm;
90     btstack_crypto_aes128_t      aes128;
91 } mesh_network_crypto_request;
92 
93 static const mesh_network_key_t *  current_network_key;
94 
95 // PECB calculation
96 static uint8_t encryption_block[16];
97 static uint8_t obfuscation_block[16];
98 
99 // Subnets
100 static btstack_linked_list_t subnets;
101 
102 // Network Nonce
103 static uint8_t network_nonce[13];
104 
105 // INCOMING //
106 
107 // unprocessed network pdu - added by mesh_network_pdus_received_message
108 static btstack_linked_list_t        network_pdus_received;
109 
110 // in validation
111 static mesh_network_pdu_t *         incoming_pdu_raw;
112 static mesh_network_pdu_t *         incoming_pdu_decoded;
113 static mesh_network_key_iterator_t  validation_network_key_it;
114 
115 // OUTGOING //
116 
117 // Network PDUs queued by mesh_network_send
118 static btstack_linked_list_t network_pdus_queued;
119 
120 // Network PDU about to get send via all bearers when encrypted
121 static mesh_network_pdu_t * outgoing_pdu;
122 
123 // Network PDUs ready to send via GATT Bearer
124 static btstack_linked_list_t network_pdus_outgoing_gatt;
125 
126 #ifdef ENABLE_MESH_GATT_BEARER
127 static mesh_network_pdu_t * gatt_bearer_network_pdu;
128 #endif
129 
130 // Network PDUs ready to send via ADV Bearer
131 static btstack_linked_list_t network_pdus_outgoing_adv;
132 
133 #ifdef ENABLE_MESH_ADV_BEARER
134 static mesh_network_pdu_t * adv_bearer_network_pdu;
135 #endif
136 
137 
138 // mesh network cache - we use 32-bit 'hashes'
139 static uint32_t mesh_network_cache[MESH_NETWORK_CACHE_SIZE];
140 static int      mesh_network_cache_index;
141 
142 // prototypes
143 
144 static void mesh_network_run(void);
145 static void process_network_pdu_validate(void);
146 
147 // network caching
148 static uint32_t mesh_network_cache_hash(mesh_network_pdu_t * network_pdu){
149     // - The SEQ field is a 24-bit integer that when combined with the IV Index,
150     // shall be a unique value for each new Network PDU originated by this node (=> SRC)
151     // - IV updates only rarely
152     // => 16 bit SRC, 1 bit IVI, 15 bit SEQ
153     uint8_t  ivi = network_pdu->data[0] >> 7;
154     uint16_t seq = big_endian_read_16(network_pdu->data, 3);
155     uint16_t src = big_endian_read_16(network_pdu->data, 5);
156     return (src << 16) | (ivi << 15) | (seq & 0x7fff);
157 }
158 
159 static int mesh_network_cache_find(uint32_t hash){
160     int i;
161     for (i = 0; i < MESH_NETWORK_CACHE_SIZE; i++) {
162         if (mesh_network_cache[i] == hash) {
163             return 1;
164         }
165     }
166     return 0;
167 }
168 
169 static void mesh_network_cache_add(uint32_t hash){
170     mesh_network_cache[mesh_network_cache_index++] = hash;
171     if (mesh_network_cache_index >= MESH_NETWORK_CACHE_SIZE){
172         mesh_network_cache_index = 0;
173     }
174 }
175 
176 // common helper
177 int mesh_network_address_unicast(uint16_t addr){
178     return addr != MESH_ADDRESS_UNSASSIGNED && (addr < 0x8000);
179 }
180 
181 int mesh_network_address_virtual(uint16_t addr){
182     return (addr & 0xC000) == 0x8000;   // 0b10xx xxxx xxxx xxxx
183 }
184 
185 int mesh_network_address_group(uint16_t addr){
186     return (addr & 0xC000) == 0xC000;   // 0b11xx xxxx xxxx xxxx
187 }
188 
189 int mesh_network_address_all_proxies(uint16_t addr){
190     return addr == MESH_ADDRESS_ALL_PROXIES;
191 }
192 
193 int mesh_network_address_all_nodes(uint16_t addr){
194     return addr == MESH_ADDRESS_ALL_NODES;
195 }
196 
197 int mesh_network_address_all_friends(uint16_t addr){
198     return addr == MESH_ADDRESS_ALL_FRIENDS;
199 }
200 
201 int mesh_network_address_all_relays(uint16_t addr){
202     return addr == MESH_ADDRESS_ALL_RELAYS;
203 }
204 
205 int mesh_network_addresses_valid(uint8_t ctl, uint16_t src, uint16_t dst){
206     // printf("CTL: %u\n", ctl);
207     // printf("SRC: %04x\n", src);
208     // printf("DST: %04x\n", dst);
209     if (src == 0){
210         // printf("SRC Unassigned Addr -> ignore\n");
211         return 0;
212     }
213     if ((src & 0xC000) == 0x8000){
214         // printf("SRC Virtual Addr -> ignore\n");
215         return 0;
216     }
217     if ((src & 0xC000) == 0xC000){
218         // printf("SRC Group Addr -> ignore\n");
219         return 0;
220     }
221     if (dst == 0){
222         // printf("DST Unassigned Addr -> ignore\n");
223         return 0;
224     }
225     if ( ((dst & 0xC000) == 0x8000) && (ctl == 1)){
226         // printf("DST Virtual Addr in CONTROL -> ignore\n");
227         return 0;
228     }
229     if ( (0xFF00 <= dst) && (dst <= 0xfffb) && (ctl == 0) ){
230         // printf("DST RFU Group Addr in MESSAGE -> ignore\n");
231         return 0;
232     }
233     // printf("SRC + DST Addr valid\n");
234     return 1;
235 }
236 
237 static void mesh_network_create_nonce(uint8_t * nonce, const mesh_network_pdu_t * pdu, uint32_t iv_index){
238     unsigned int pos = 0;
239     nonce[pos++] = 0x0;      // Network Nonce
240     memcpy(&nonce[pos], &pdu->data[1], 6);
241     pos += 6;
242     big_endian_store_16(nonce, pos, 0);
243     pos += 2;
244     big_endian_store_32(nonce, pos, iv_index);
245 }
246 
247 static void mesh_proxy_create_nonce(uint8_t * nonce, const mesh_network_pdu_t * pdu, uint32_t iv_index){
248     unsigned int pos = 0;
249     nonce[pos++] = 0x3;      // Proxy Nonce
250     nonce[pos++] = 0;
251     memcpy(&nonce[pos], &pdu->data[2], 5);
252     pos += 5;
253     big_endian_store_16(nonce, pos, 0);
254     pos += 2;
255     big_endian_store_32(nonce, pos, iv_index);
256 }
257 
258 // NID/IVI | obfuscated (CTL/TTL, SEQ (24), SRC (16) ), encrypted ( DST(16), TransportPDU), MIC(32 or 64)
259 
260 static void mesh_network_send_complete(mesh_network_pdu_t * network_pdu){
261     if (network_pdu->flags & MESH_NETWORK_PDU_FLAGS_RELAY){
262 #ifdef LOG_NETWORK
263         printf("TX-F-NetworkPDU (%p): relay -> free packet\n", network_pdu);
264 #endif
265         mesh_network_pdu_free(network_pdu);
266     } else {
267 #ifdef LOG_NETWORK
268         printf("TX-F-NetworkPDU (%p): notify lower transport\n", network_pdu);
269 #endif
270         // notify higher layer
271         (*mesh_network_higher_layer_handler)(MESH_NETWORK_PDU_SENT, network_pdu);
272     }
273 }
274 
275 static void mesh_network_send_d(mesh_network_pdu_t * network_pdu){
276 
277 #ifdef LOG_NETWORK
278     printf("TX-D-NetworkPDU (%p): ", network_pdu);
279     printf_hexdump(network_pdu->data, network_pdu->len);
280 #endif
281 
282     // add to queue
283     btstack_linked_list_add_tail(&network_pdus_outgoing_gatt, (btstack_linked_item_t *) network_pdu);
284 
285     // go
286     mesh_network_run();
287 }
288 
289 // new
290 static void mesh_network_send_c(void *arg){
291     UNUSED(arg);
292 
293     // obfuscate
294     unsigned int i;
295     for (i=0;i<6;i++){
296         outgoing_pdu->data[1+i] ^= obfuscation_block[i];
297     }
298 
299 #ifdef LOG_NETWORK
300     printf("TX-C-NetworkPDU (%p): ", outgoing_pdu);
301     printf_hexdump(outgoing_pdu->data, outgoing_pdu->len);
302 #endif
303 
304     // crypto done
305     mesh_crypto_active = 0;
306 
307     // done
308     mesh_network_pdu_t * network_pdu = outgoing_pdu;
309     outgoing_pdu = NULL;
310     (network_pdu->callback)(network_pdu);
311 }
312 
313 static void mesh_network_send_b(void *arg){
314     UNUSED(arg);
315 
316     uint32_t iv_index = mesh_get_iv_index_for_tx();
317 
318     // store NetMIC
319     uint8_t net_mic[8];
320     btstack_crypto_ccm_get_authentication_value(&mesh_network_crypto_request.ccm, net_mic);
321 
322     // store MIC
323     uint8_t net_mic_len = outgoing_pdu->data[1] & 0x80 ? 8 : 4;
324     memcpy(&outgoing_pdu->data[outgoing_pdu->len], net_mic, net_mic_len);
325     outgoing_pdu->len += net_mic_len;
326 
327     btstack_assert(outgoing_pdu->len <= 29);
328 
329 #ifdef LOG_NETWORK
330     printf("TX-B-NetworkPDU (%p): ", outgoing_pdu);
331     printf_hexdump(outgoing_pdu->data, outgoing_pdu->len);
332 #endif
333 
334     // calc PECB
335     memset(encryption_block, 0, 5);
336     big_endian_store_32(encryption_block, 5, iv_index);
337     memcpy(&encryption_block[9], &outgoing_pdu->data[7], 7);
338     btstack_crypto_aes128_encrypt(&mesh_network_crypto_request.aes128, current_network_key->privacy_key, encryption_block, obfuscation_block, &mesh_network_send_c, NULL);
339 }
340 
341 static void mesh_network_send_a(void){
342 
343     mesh_crypto_active = 1;
344 
345     uint32_t iv_index = mesh_get_iv_index_for_tx();
346 
347     // lookup subnet by netkey_index
348     mesh_subnet_t * subnet = mesh_subnet_get_by_netkey_index(outgoing_pdu->netkey_index);
349     if (!subnet) {
350         mesh_crypto_active = 0;
351         mesh_network_pdu_t * network_pdu = outgoing_pdu;
352         outgoing_pdu = NULL;
353         // notify upper layer
354         mesh_network_send_complete(network_pdu);
355         // run again
356         mesh_network_run();
357         return;
358     }
359 
360     // get network key to use for sending
361     current_network_key = mesh_subnet_get_outgoing_network_key(subnet);
362 
363 #ifdef LOG_NETWORK
364     printf("TX-A-NetworkPDU (%p): ", outgoing_pdu);
365     printf_hexdump(outgoing_pdu->data, outgoing_pdu->len);
366 #endif
367 
368     // get network nonce
369     if (outgoing_pdu->flags & MESH_NETWORK_PDU_FLAGS_PROXY_CONFIGURATION){
370         mesh_proxy_create_nonce(network_nonce, outgoing_pdu, iv_index);
371 #ifdef LOG_NETWORK
372         printf("TX-ProxyNonce:  ");
373         printf_hexdump(network_nonce, 13);
374 #endif
375     } else {
376         mesh_network_create_nonce(network_nonce, outgoing_pdu, iv_index);
377 #ifdef LOG_NETWORK
378         printf("TX-NetworkNonce:  ");
379         printf_hexdump(network_nonce, 13);
380 #endif
381     }
382 
383 #ifdef LOG_NETWORK
384    printf("TX-EncryptionKey: ");
385     printf_hexdump(current_network_key->encryption_key, 16);
386 #endif
387 
388     // start ccm
389     uint8_t cypher_len  = outgoing_pdu->len - 7;
390     uint8_t net_mic_len = outgoing_pdu->data[1] & 0x80 ? 8 : 4;
391     btstack_crypto_ccm_init(&mesh_network_crypto_request.ccm, current_network_key->encryption_key, network_nonce, cypher_len, 0, net_mic_len);
392     btstack_crypto_ccm_encrypt_block(&mesh_network_crypto_request.ccm, cypher_len, &outgoing_pdu->data[7], &outgoing_pdu->data[7], &mesh_network_send_b, NULL);
393 }
394 
395 #if defined(ENABLE_MESH_RELAY) || defined (ENABLE_MESH_PROXY_SERVER)
396 static void mesh_network_relay_message(mesh_network_pdu_t * network_pdu){
397 
398     uint8_t ctl_ttl      = network_pdu->data[1];
399     uint8_t ctl_in_bit_7 = ctl_ttl & 0x80;
400     uint8_t ttl          = ctl_ttl & 0x7f;
401 
402 #ifdef LOG_NETWORK
403     printf("TX-Relay-NetworkPDU (%p): ", network_pdu);
404     printf_hexdump(network_pdu->data, network_pdu->len);
405     printf("^^ into network_pdus_queued\n");
406 #endif
407 
408     // prepare pdu for resending
409     network_pdu->data[1] = ctl_in_bit_7 | (ttl - 1);
410     network_pdu->flags |= MESH_NETWORK_PDU_FLAGS_RELAY;
411 
412     // queue up
413     network_pdu->callback = &mesh_network_send_d;
414     btstack_linked_list_add_tail(&network_pdus_queued, (btstack_linked_item_t *) network_pdu);
415 }
416 #endif
417 
418 void mesh_network_message_processed_by_higher_layer(mesh_network_pdu_t * network_pdu){
419 
420 #if defined(ENABLE_MESH_RELAY) || defined (ENABLE_MESH_PROXY_SERVER)
421 
422     // check if address does not matches elements on our node and TTL >= 2
423     uint16_t src     = mesh_network_src(network_pdu);
424     uint8_t  ttl     = mesh_network_ttl(network_pdu);
425 
426     uint16_t mesh_network_primary_address = mesh_node_get_primary_element_address();
427 
428     if (((src < mesh_network_primary_address) || (src > (mesh_network_primary_address + mesh_node_element_count()))) && (ttl >= 2)){
429 
430         if ((network_pdu->flags & MESH_NETWORK_PDU_FLAGS_GATT_BEARER) == 0){
431 
432             // message received via ADV bearer are relayed:
433 
434 #ifdef ENABLE_MESH_RELAY
435             if (mesh_foundation_relay_get() != 0){
436                 // - to ADV bearer, if Relay supported and enabled
437                 mesh_network_relay_message(network_pdu);
438                 mesh_network_run();
439                 return;
440             }
441 #endif
442 
443 #ifdef ENABLE_MESH_PROXY_SERVER
444             if (mesh_foundation_gatt_proxy_get() != 0){
445                 // - to GATT bearer, if Proxy supported and enabled
446                 mesh_network_relay_message(network_pdu);
447                 mesh_network_run();
448                 return;
449             }
450 #endif
451 
452         } else {
453 
454             // messages received via GATT bearer are relayed:
455 
456 #ifdef ENABLE_MESH_PROXY_SERVER
457             if (mesh_foundation_gatt_proxy_get() != 0){
458                 // - to ADV bearer, if Proxy supported and enabled
459                 mesh_network_relay_message(network_pdu);
460                 mesh_network_run();
461                 return;
462             }
463 #endif
464 
465         }
466     }
467 #endif
468 
469     // otherwise, we're done
470     btstack_memory_mesh_network_pdu_free(network_pdu);
471 }
472 
473 static void process_network_pdu_done(void){
474     btstack_memory_mesh_network_pdu_free(incoming_pdu_raw);
475     incoming_pdu_raw = NULL;
476     mesh_crypto_active = 0;
477 
478     mesh_network_run();
479 }
480 
481 static void process_network_pdu_validate_d(void * arg){
482     UNUSED(arg);
483     // mesh_network_pdu_t * network_pdu = (mesh_network_pdu_t *) arg;
484 
485     uint8_t ctl_ttl     = incoming_pdu_decoded->data[1];
486     uint8_t ctl         = ctl_ttl >> 7;
487     uint8_t net_mic_len = (ctl_ttl & 0x80) ? 8 : 4;
488 
489     // store NetMIC
490     uint8_t net_mic[8];
491     btstack_crypto_ccm_get_authentication_value(&mesh_network_crypto_request.ccm, net_mic);
492 #ifdef LOG_NETWORK
493     printf("RX-NetMIC (%p): ", incoming_pdu_decoded);
494     printf_hexdump(net_mic, net_mic_len);
495 #endif
496     // store in decoded pdu
497     memcpy(&incoming_pdu_decoded->data[incoming_pdu_decoded->len-net_mic_len], net_mic, net_mic_len);
498 
499 #ifdef LOG_NETWORK
500     uint8_t cypher_len  = incoming_pdu_decoded->len - 9 - net_mic_len;
501     printf("RX-Decrypted DST/TransportPDU (%p): ", incoming_pdu_decoded);
502     printf_hexdump(&incoming_pdu_decoded->data[7], 2 + cypher_len);
503 
504     printf("RX-Decrypted: ");
505     printf_hexdump(incoming_pdu_decoded->data, incoming_pdu_decoded->len);
506 #endif
507 
508     // validate network mic
509     if (memcmp(net_mic, &incoming_pdu_raw->data[incoming_pdu_decoded->len-net_mic_len], net_mic_len) != 0){
510         // fail
511         printf("RX-NetMIC mismatch, try next key (%p)\n", incoming_pdu_decoded);
512         process_network_pdu_validate();
513         return;
514     }
515 
516     // remove NetMIC from payload
517     incoming_pdu_decoded->len -= net_mic_len;
518 
519 #ifdef LOG_NETWORK
520     // match
521     printf("RX-NetMIC matches (%p)\n", incoming_pdu_decoded);
522     printf("RX-TTL (%p): 0x%02x\n", incoming_pdu_decoded, incoming_pdu_decoded->data[1] & 0x7f);
523 #endif
524 
525     // set netkey_index
526     incoming_pdu_decoded->netkey_index = current_network_key->netkey_index;
527 
528     if (incoming_pdu_decoded->flags & MESH_NETWORK_PDU_FLAGS_PROXY_CONFIGURATION){
529 
530         mesh_network_pdu_t * decoded_pdu = incoming_pdu_decoded;
531         incoming_pdu_decoded = NULL;
532 
533         // no additional checks for proxy messages
534         (*mesh_network_proxy_message_handler)(MESH_NETWORK_PDU_RECEIVED, decoded_pdu);
535 
536     } else {
537 
538         // validate src/dest addresses
539         uint16_t src = big_endian_read_16(incoming_pdu_decoded->data, 5);
540         uint16_t dst = big_endian_read_16(incoming_pdu_decoded->data, 7);
541         int valid = mesh_network_addresses_valid(ctl, src, dst);
542         if (!valid){
543 #ifdef LOG_NETWORK
544             printf("RX Address invalid (%p)\n", incoming_pdu_decoded);
545 #endif
546             btstack_memory_mesh_network_pdu_free(incoming_pdu_decoded);
547             incoming_pdu_decoded = NULL;
548             process_network_pdu_done();
549             return;
550         }
551 
552         // check cache
553         uint32_t hash = mesh_network_cache_hash(incoming_pdu_decoded);
554 #ifdef LOG_NETWORK
555         printf("RX-Hash (%p): %08x\n", incoming_pdu_decoded, hash);
556 #endif
557         if (mesh_network_cache_find(hash)){
558             // found in cache, drop
559 #ifdef LOG_NETWORK
560             printf("Found in cache -> drop packet (%p)\n", incoming_pdu_decoded);
561 #endif
562             btstack_memory_mesh_network_pdu_free(incoming_pdu_decoded);
563             incoming_pdu_decoded = NULL;
564             process_network_pdu_done();
565             return;
566         }
567 
568         // store in network cache
569         mesh_network_cache_add(hash);
570 
571 #ifdef LOG_NETWORK
572             printf("RX-Validated (%p) - forward to lower transport\n", incoming_pdu_decoded);
573 #endif
574 
575         // forward to lower transport layer. message is freed by call to mesh_network_message_processed_by_upper_layer
576         mesh_network_pdu_t * decoded_pdu = incoming_pdu_decoded;
577         incoming_pdu_decoded = NULL;
578         (*mesh_network_higher_layer_handler)(MESH_NETWORK_PDU_RECEIVED, decoded_pdu);
579     }
580 
581     // done
582     process_network_pdu_done();
583 }
584 
585 static uint32_t iv_index_for_pdu(const mesh_network_pdu_t * network_pdu){
586     // get IV Index and IVI
587     uint32_t iv_index = mesh_get_iv_index();
588     int ivi = network_pdu->data[0] >> 7;
589 
590     // if least significant bit differs, use previous IV Index
591     if ((iv_index & 1 ) ^ ivi){
592         iv_index--;
593 #ifdef LOG_NETWORK
594         printf("RX-IV: IVI indicates previous IV index, using 0x%08x\n", iv_index);
595 #endif
596     }
597     return iv_index;
598 }
599 
600 static void process_network_pdu_validate_b(void * arg){
601     UNUSED(arg);
602 
603 #ifdef LOG_NETWORK
604     printf("RX-PECB: ");
605     printf_hexdump(obfuscation_block, 6);
606 #endif
607 
608     // de-obfuscate
609     unsigned int i;
610     for (i=0;i<6;i++){
611         incoming_pdu_decoded->data[1+i] = incoming_pdu_raw->data[1+i] ^ obfuscation_block[i];
612     }
613 
614     uint32_t iv_index = iv_index_for_pdu(incoming_pdu_raw);
615 
616     if (incoming_pdu_decoded->flags & MESH_NETWORK_PDU_FLAGS_PROXY_CONFIGURATION){
617         // create network nonce
618         mesh_proxy_create_nonce(network_nonce, incoming_pdu_decoded, iv_index);
619 #ifdef LOG_NETWORK
620         printf("RX-Proxy Nonce: ");
621         printf_hexdump(network_nonce, 13);
622 #endif
623     } else {
624         // create network nonce
625         mesh_network_create_nonce(network_nonce, incoming_pdu_decoded, iv_index);
626 #ifdef LOG_NETWORK
627         printf("RX-Network Nonce: ");
628         printf_hexdump(network_nonce, 13);
629 #endif
630     }
631 
632     //
633     uint8_t ctl_ttl     = incoming_pdu_decoded->data[1];
634     uint8_t net_mic_len = (ctl_ttl & 0x80) ? 8 : 4;
635     uint8_t cypher_len  = incoming_pdu_decoded->len - 7 - net_mic_len;
636 
637 #ifdef LOG_NETWORK
638     printf("RX-Cyper len %u, mic len %u\n", cypher_len, net_mic_len);
639 
640     printf("RX-Encryption Key: ");
641     printf_hexdump(current_network_key->encryption_key, 16);
642 
643 #endif
644 
645     btstack_crypto_ccm_init(&mesh_network_crypto_request.ccm, current_network_key->encryption_key, network_nonce, cypher_len, 0, net_mic_len);
646     btstack_crypto_ccm_decrypt_block(&mesh_network_crypto_request.ccm, cypher_len, &incoming_pdu_raw->data[7], &incoming_pdu_decoded->data[7], &process_network_pdu_validate_d, incoming_pdu_decoded);
647 }
648 
649 static void process_network_pdu_validate(void){
650     if (!mesh_network_key_nid_iterator_has_more(&validation_network_key_it)){
651         printf("No valid network key found\n");
652         btstack_memory_mesh_network_pdu_free(incoming_pdu_decoded);
653         incoming_pdu_decoded = NULL;
654         process_network_pdu_done();
655         return;
656     }
657 
658     current_network_key = mesh_network_key_nid_iterator_get_next(&validation_network_key_it);
659 
660     // calc PECB
661     uint32_t iv_index = iv_index_for_pdu(incoming_pdu_raw);
662     memset(encryption_block, 0, 5);
663     big_endian_store_32(encryption_block, 5, iv_index);
664     memcpy(&encryption_block[9], &incoming_pdu_raw->data[7], 7);
665     btstack_crypto_aes128_encrypt(&mesh_network_crypto_request.aes128, current_network_key->privacy_key, encryption_block, obfuscation_block, &process_network_pdu_validate_b, NULL);
666 }
667 
668 
669 static void process_network_pdu(void){
670     //
671     uint8_t nid_ivi = incoming_pdu_raw->data[0];
672 
673     // setup pdu object
674     incoming_pdu_decoded->data[0] = nid_ivi;
675     incoming_pdu_decoded->len     = incoming_pdu_raw->len;
676     incoming_pdu_decoded->flags   = incoming_pdu_raw->flags;
677 
678     // init provisioning data iterator
679     uint8_t nid = nid_ivi & 0x7f;
680     // uint8_t iv_index = network_pdu_data[0] >> 7;
681     mesh_network_key_nid_iterator_init(&validation_network_key_it, nid);
682 
683     process_network_pdu_validate();
684 }
685 
686 // returns true if done
687 static bool mesh_network_run_gatt(void){
688     if (btstack_linked_list_empty(&network_pdus_outgoing_gatt)){
689         return true;
690     }
691 
692 #ifdef ENABLE_MESH_GATT_BEARER
693     if (gatt_bearer_network_pdu != NULL){
694         return true;
695     }
696 
697     // move to 'gatt bearer queue'
698     mesh_network_pdu_t * network_pdu = (mesh_network_pdu_t *) btstack_linked_list_pop(&network_pdus_outgoing_gatt);
699 
700 #ifdef LOG_NETWORK
701     printf("network run 1: pop %p from network_pdus_outgoing_gatt\n", network_pdu);
702 #endif
703     // request to send via gatt if:
704     // proxy active and connected
705     // packet wasn't received via gatt bearer
706     int send_via_gatt = ((mesh_foundation_gatt_proxy_get() != 0) &&
707                         (gatt_bearer_con_handle != HCI_CON_HANDLE_INVALID) &&
708                         ((network_pdu->flags & MESH_NETWORK_PDU_FLAGS_GATT_BEARER) == 0));
709     if (send_via_gatt){
710 
711 #ifdef LOG_NETWORK
712         printf("network run 2: set %p as gatt_bearer_network_pdu\n", network_pdu);
713 #endif
714         gatt_bearer_network_pdu = network_pdu;
715         gatt_bearer_request_can_send_now_for_network_pdu();
716 
717     } else {
718 
719 #ifdef LOG_NETWORK
720         printf("network run 3: push %p to network_pdus_outgoing_adv\n", network_pdu);
721 #endif
722         btstack_linked_list_add_tail(&network_pdus_outgoing_adv, (btstack_linked_item_t *) network_pdu);
723 
724 #ifdef LOG_NETWORK
725         mesh_network_dump_network_pdus("network_pdus_outgoing_adv (1)", &network_pdus_outgoing_adv);
726 #endif
727     }
728 #else
729     // directly move to 'outgoing adv bearer queue'
730     mesh_network_pdu_t * network_pdu = (mesh_network_pdu_t *) btstack_linked_list_pop(&network_pdus_outgoing_gatt);
731     btstack_linked_list_add_tail(&network_pdus_outgoing_adv, (btstack_linked_item_t *) network_pdu);
732 #endif
733     return false;
734 }
735 
736 // returns true if done
737 static bool mesh_network_run_adv(void){
738 
739     if (btstack_linked_list_empty(&network_pdus_outgoing_adv)){
740         return true;
741     }
742 
743 #ifdef ENABLE_MESH_ADV_BEARER
744     if (adv_bearer_network_pdu != NULL){
745         return true;
746     }
747 
748     // move to 'adv bearer queue'
749     mesh_network_pdu_t * network_pdu = (mesh_network_pdu_t *) btstack_linked_list_pop(&network_pdus_outgoing_adv);
750 
751 #ifdef LOG_NETWORK
752     printf("network run 4: pop %p from network_pdus_outgoing_adv\n", network_pdu);
753     mesh_network_dump_network_pdus("network_pdus_outgoing_adv (3)", &network_pdus_outgoing_adv);
754     printf("network run 5: %p -> flags 0x%02x, gatt_proxy %u, relay %u\n", network_pdu, network_pdu->flags, mesh_foundation_gatt_proxy_get(), mesh_foundation_relay_get());
755 #endif
756 
757     // send via adv if:
758     // packet was received via gatt bearer and proxy active, or,
759     // packet originated locally (== not relayed), or,
760     // packet was received via ADV bearer and relay is active, or,
761     int send_via_adv = (((network_pdu->flags & MESH_NETWORK_PDU_FLAGS_GATT_BEARER) != 0) && (mesh_foundation_gatt_proxy_get() == 1)) ||
762                        (((network_pdu->flags & MESH_NETWORK_PDU_FLAGS_GATT_BEARER) == 0) && (mesh_foundation_relay_get() == 1)) ||
763                         ((network_pdu->flags & MESH_NETWORK_PDU_FLAGS_RELAY) == 0);
764 
765     if (send_via_adv){
766 #ifdef LOG_NETWORK
767         printf("network run 6: set %p as to adv_bearer_network_pdu\n", network_pdu);
768 #endif
769         adv_bearer_network_pdu = network_pdu;
770         adv_bearer_request_can_send_now_for_network_pdu();
771     } else {
772 #ifdef LOG_NETWORK
773         printf("network run 7: skip sending %p via adv bearer\n", network_pdu);
774         #endif
775         // directly notify upper layer
776         mesh_network_send_complete(network_pdu);
777     }
778 #else
779     // done
780     mesh_network_pdu_t * network_pdu = (mesh_network_pdu_t *) btstack_linked_list_pop(&network_pdus_outgoing_adv);
781     // directly notify upper layer
782     mesh_network_send_complete(network_pdu);
783 #endif
784     return false;
785 }
786 
787 // returns true if done
788 static bool mesh_network_run_received(void){
789     if (mesh_crypto_active) {
790         return true;
791     }
792 
793     if (btstack_linked_list_empty(&network_pdus_received)) {
794         return true;
795     }
796 
797     incoming_pdu_decoded = mesh_network_pdu_get();
798     if (incoming_pdu_decoded == NULL) return true;
799 
800     // get encoded network pdu and start processing
801     mesh_crypto_active = 1;
802     incoming_pdu_raw = (mesh_network_pdu_t *) btstack_linked_list_pop(&network_pdus_received);
803     process_network_pdu();
804     return true;
805 }
806 
807 // returns true if done
808 static bool mesh_network_run_queued(void){
809     if (mesh_crypto_active) {
810         return true;
811     }
812 
813     if (btstack_linked_list_empty(&network_pdus_queued)){
814         return true;
815     }
816 
817     // get queued network pdu and start processing
818     outgoing_pdu = (mesh_network_pdu_t *) btstack_linked_list_pop(&network_pdus_queued);
819 
820 #ifdef LOG_NETWORK
821     printf("network run 5: pop %p from network_pdus_queued\n", outgoing_pdu);
822     mesh_network_dump_network_pdus("network_pdus_queued (2)", &network_pdus_queued);
823 #endif
824     mesh_network_send_a();
825     return true;
826 }
827 
828 static void mesh_network_run(void){
829     while (true){
830         bool done = true;
831         done &= mesh_network_run_gatt();
832         done &= mesh_network_run_adv();
833         done &= mesh_network_run_received();
834         done &= mesh_network_run_queued();
835         if (done) break;
836     }
837 }
838 
839 #ifdef ENABLE_MESH_ADV_BEARER
840 static void mesh_adv_bearer_handle_network_event(uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size){
841     UNUSED(channel);
842     mesh_network_pdu_t * network_pdu;
843     uint8_t  transmission_count;
844     uint16_t transmission_interval;
845     uint8_t  transmit_config;
846 
847     switch (packet_type){
848         case MESH_NETWORK_PACKET:
849             // check len. minimal transport PDU len = 1, 32 bit NetMIC -> 13 bytes
850             if (size < 13) break;
851 
852 #ifdef LOG_NETWORK
853             printf("received network pdu from adv (len %u): ", size);
854             printf_hexdump(packet, size);
855 #endif
856             mesh_network_received_message(packet, size, 0);
857             break;
858 
859         case HCI_EVENT_PACKET:
860             switch(packet[0]){
861                 case HCI_EVENT_MESH_META:
862                     switch(packet[2]){
863                         case MESH_SUBEVENT_CAN_SEND_NOW:
864                             if (adv_bearer_network_pdu == NULL) break;
865 
866                             // Get Transmission config depending on relay flag
867                             if (adv_bearer_network_pdu->flags & MESH_NETWORK_PDU_FLAGS_RELAY){
868                                 transmit_config = mesh_foundation_relay_get();
869                             } else {
870                                 transmit_config = mesh_foundation_network_transmit_get();
871                             }
872                             transmission_count     = (transmit_config & 0x07) + 1;
873                             transmission_interval = (transmit_config >> 3) * 10;
874 
875 #ifdef LOG_NETWORK
876                             printf("TX-E-NetworkPDU (%p) count %u, interval %u ms: ", adv_bearer_network_pdu, transmission_count, transmission_interval);
877                             printf_hexdump(adv_bearer_network_pdu->data, adv_bearer_network_pdu->len);
878 #endif
879 
880                             adv_bearer_send_network_pdu(adv_bearer_network_pdu->data, adv_bearer_network_pdu->len, transmission_count, transmission_interval);
881                             network_pdu = adv_bearer_network_pdu;
882                             adv_bearer_network_pdu = NULL;
883 
884                             // notify upper layer
885                             mesh_network_send_complete(network_pdu);
886 
887                             // check if more to send
888                             mesh_network_run();
889                             break;
890                         default:
891                             break;
892                     }
893                     break;
894                 default:
895                     break;
896             }
897             break;
898     }
899 }
900 #endif
901 
902 #ifdef ENABLE_MESH_GATT_BEARER
903 static void mesh_network_gatt_bearer_outgoing_complete(void){
904 
905     if (gatt_bearer_network_pdu == NULL) return;
906 
907     // forward to adv bearer
908     btstack_linked_list_add_tail(&network_pdus_outgoing_adv, (btstack_linked_item_t*) gatt_bearer_network_pdu);
909     gatt_bearer_network_pdu = NULL;
910 
911     mesh_network_run();
912     return;
913 }
914 
915 static void mesh_network_gatt_bearer_handle_network_event(uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size){
916     UNUSED(channel);
917     switch (packet_type){
918         case MESH_PROXY_DATA_PACKET:
919             if (mesh_foundation_gatt_proxy_get() == 0) break;
920 #ifdef LOG_NETWORK
921             printf("received network pdu from gatt (len %u): ", size);
922             printf_hexdump(packet, size);
923 #endif
924             mesh_network_received_message(packet, size, MESH_NETWORK_PDU_FLAGS_GATT_BEARER);
925             break;
926         case HCI_EVENT_PACKET:
927             switch (hci_event_packet_get_type(packet)){
928                 case HCI_EVENT_MESH_META:
929                     switch (hci_event_mesh_meta_get_subevent_code(packet)){
930                         case MESH_SUBEVENT_PROXY_CONNECTED:
931                             gatt_bearer_con_handle = mesh_subevent_proxy_connected_get_con_handle(packet);
932                             break;
933                         case MESH_SUBEVENT_PROXY_DISCONNECTED:
934                             gatt_bearer_con_handle = HCI_CON_HANDLE_INVALID;
935                             mesh_network_gatt_bearer_outgoing_complete();
936                             break;
937                         case MESH_SUBEVENT_CAN_SEND_NOW:
938                             if (gatt_bearer_network_pdu == NULL) break;
939 #ifdef LOG_NETWORK
940                             printf("G-TX-E-NetworkPDU (%p): ", gatt_bearer_network_pdu);
941                             printf_hexdump(gatt_bearer_network_pdu->data, gatt_bearer_network_pdu->len);
942 #endif
943                             gatt_bearer_send_network_pdu(gatt_bearer_network_pdu->data, gatt_bearer_network_pdu->len);
944                             break;
945 
946                         case MESH_SUBEVENT_MESSAGE_SENT:
947                             mesh_network_gatt_bearer_outgoing_complete();
948                             break;
949                         default:
950                             break;
951                     }
952                     break;
953                 default:
954                     break;
955             }
956             break;
957         default:
958             break;
959     }
960 }
961 #endif
962 
963 #ifdef ENABLE_MESH_GATT_BEARER
964 static void mesh_netework_gatt_bearer_handle_proxy_configuration(uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size){
965     UNUSED(channel);
966     switch (packet_type){
967         case MESH_PROXY_DATA_PACKET:
968             mesh_network_process_proxy_configuration_message(packet, size);
969             break;
970         case HCI_EVENT_PACKET:
971             switch (hci_event_packet_get_type(packet)){
972                 case HCI_EVENT_MESH_META:
973                     switch (hci_event_mesh_meta_get_subevent_code(packet)){
974                         case MESH_SUBEVENT_CAN_SEND_NOW:
975                             // forward to higher layer
976                             (*mesh_network_proxy_message_handler)(MESH_NETWORK_CAN_SEND_NOW, NULL);
977                             break;
978                         default:
979                             break;
980                     }
981                     break;
982                 default:
983                     break;
984             }
985             break;
986         default:
987             break;
988     }
989 }
990 #endif
991 
992 void mesh_network_init(void){
993 #ifdef ENABLE_MESH_ADV_BEARER
994     adv_bearer_register_for_network_pdu(&mesh_adv_bearer_handle_network_event);
995 #endif
996 #ifdef ENABLE_MESH_GATT_BEARER
997     gatt_bearer_con_handle = HCI_CON_HANDLE_INVALID;
998     gatt_bearer_register_for_network_pdu(&mesh_network_gatt_bearer_handle_network_event);
999     gatt_bearer_register_for_mesh_proxy_configuration(&mesh_netework_gatt_bearer_handle_proxy_configuration);
1000 #endif
1001 }
1002 
1003 void mesh_network_set_higher_layer_handler(void (*packet_handler)(mesh_network_callback_type_t callback_type, mesh_network_pdu_t * network_pdu)){
1004     mesh_network_higher_layer_handler = packet_handler;
1005 }
1006 
1007 void mesh_network_set_proxy_message_handler(void (*packet_handler)(mesh_network_callback_type_t callback_type, mesh_network_pdu_t * network_pdu)){
1008     mesh_network_proxy_message_handler = packet_handler;
1009 }
1010 
1011 void mesh_network_received_message(const uint8_t * pdu_data, uint8_t pdu_len, uint8_t flags){
1012     // verify len
1013     if (pdu_len > 29) return;
1014 
1015     // allocate network_pdu
1016     mesh_network_pdu_t * network_pdu = mesh_network_pdu_get();
1017     if (!network_pdu) return;
1018 
1019     // store data
1020     memcpy(network_pdu->data, pdu_data, pdu_len);
1021     network_pdu->len = pdu_len;
1022     network_pdu->flags = flags;
1023 
1024     // add to list and go
1025     btstack_linked_list_add_tail(&network_pdus_received, (btstack_linked_item_t *) network_pdu);
1026     mesh_network_run();
1027 
1028 }
1029 
1030 void mesh_network_process_proxy_configuration_message(const uint8_t * pdu_data, uint8_t pdu_len){
1031     // verify len
1032     if (pdu_len > 29) return;
1033 
1034     // allocate network_pdu
1035     mesh_network_pdu_t * network_pdu = mesh_network_pdu_get();
1036     if (!network_pdu) return;
1037 
1038     // store data
1039     memcpy(network_pdu->data, pdu_data, pdu_len);
1040     network_pdu->len = pdu_len;
1041     network_pdu->flags = MESH_NETWORK_PDU_FLAGS_PROXY_CONFIGURATION; // Network PDU
1042 
1043     // add to list and go
1044     btstack_linked_list_add_tail(&network_pdus_received, (btstack_linked_item_t *) network_pdu);
1045     mesh_network_run();
1046 }
1047 
1048 void mesh_network_send_pdu(mesh_network_pdu_t * network_pdu){
1049 #ifdef LOG_NETWORK
1050     printf("TX-NetworkPDU (%p):   ", network_pdu);
1051     printf_hexdump(network_pdu->data, network_pdu->len);
1052     printf("^^ into network_pdus_queued\n");
1053 #endif
1054 
1055     btstack_assert((network_pdu->len + (network_pdu->data[1] & 0x80 ? 8 : 4)) <= 29);
1056     btstack_assert(network_pdu->len >= 9);
1057 
1058     // setup callback
1059     network_pdu->callback = &mesh_network_send_d;
1060     network_pdu->flags    = 0;
1061 
1062     // queue up
1063     btstack_linked_list_add_tail(&network_pdus_queued, (btstack_linked_item_t *) network_pdu);
1064 #ifdef LOG_NETWORK
1065     mesh_network_dump_network_pdus("network_pdus_queued", &network_pdus_queued);
1066 #endif
1067 
1068     // go
1069     mesh_network_run();
1070 }
1071 
1072 void mesh_network_encrypt_proxy_configuration_message(mesh_network_pdu_t * network_pdu, void (* callback)(mesh_network_pdu_t * callback)){
1073     printf("ProxyPDU(unencrypted): ");
1074     printf_hexdump(network_pdu->data, network_pdu->len);
1075 
1076     // setup callback
1077     network_pdu->callback = callback;
1078     network_pdu->flags    = MESH_NETWORK_PDU_FLAGS_PROXY_CONFIGURATION;
1079 
1080     // queue up
1081     btstack_linked_list_add_tail(&network_pdus_queued, (btstack_linked_item_t *) network_pdu);
1082 
1083     // go
1084     mesh_network_run();
1085 }
1086 
1087 /*
1088  * @brief Setup network pdu header
1089  * @param netkey_index
1090  * @param ctl
1091  * @param ttl
1092  * @param seq
1093  * @param dest
1094  */
1095 void mesh_network_setup_pdu(mesh_network_pdu_t * network_pdu, uint16_t netkey_index, uint8_t nid, uint8_t ctl, uint8_t ttl, uint32_t seq, uint16_t src, uint16_t dest, const uint8_t * transport_pdu_data, uint8_t transport_pdu_len){
1096     memset(network_pdu, 0, sizeof(mesh_network_pdu_t));
1097     // set netkey_index
1098     network_pdu->netkey_index = netkey_index;
1099     // setup header
1100     network_pdu->data[network_pdu->len++] = (mesh_get_iv_index_for_tx() << 7) |  nid;
1101     uint8_t ctl_ttl = (ctl << 7) | (ttl & 0x7f);
1102     network_pdu->data[network_pdu->len++] = ctl_ttl;
1103     big_endian_store_24(network_pdu->data, 2, seq);
1104     network_pdu->len += 3;
1105     big_endian_store_16(network_pdu->data, network_pdu->len, src);
1106     network_pdu->len += 2;
1107     big_endian_store_16(network_pdu->data, network_pdu->len, dest);
1108     network_pdu->len += 2;
1109     memcpy(&network_pdu->data[network_pdu->len], transport_pdu_data, transport_pdu_len);
1110     network_pdu->len += transport_pdu_len;
1111 }
1112 
1113 /*
1114  * @brief Setup network pdu header
1115  * @param netkey_index
1116  * @param ctl
1117  * @param ttl
1118  * @param seq
1119  * @param dest
1120  */
1121 void mesh_network_setup_pdu_header(mesh_network_pdu_t * network_pdu, uint16_t netkey_index, uint8_t nid, uint8_t ctl, uint8_t ttl, uint32_t seq, uint16_t src, uint16_t dest){
1122     // set netkey_index
1123     network_pdu->netkey_index = netkey_index;
1124     // setup header
1125     network_pdu->data[0] = (mesh_get_iv_index_for_tx() << 7) |  nid;
1126     uint8_t ctl_ttl = (ctl << 7) | (ttl & 0x7f);
1127     network_pdu->data[1] = ctl_ttl;
1128     big_endian_store_24(network_pdu->data, 2, seq);
1129     big_endian_store_16(network_pdu->data, 5, src);
1130     big_endian_store_16(network_pdu->data, 7, dest);
1131 }
1132 
1133 // Network PDU Getter
1134 uint8_t  mesh_network_nid(mesh_network_pdu_t * network_pdu){
1135     return network_pdu->data[0] & 0x7f;
1136 }
1137 uint16_t mesh_network_control(mesh_network_pdu_t * network_pdu){
1138     return network_pdu->data[1] & 0x80;
1139 }
1140 uint8_t mesh_network_ttl(mesh_network_pdu_t * network_pdu){
1141     return network_pdu->data[1] & 0x7f;
1142 }
1143 uint32_t mesh_network_seq(mesh_network_pdu_t * network_pdu){
1144     return big_endian_read_24(network_pdu->data, 2);
1145 }
1146 uint16_t mesh_network_src(mesh_network_pdu_t * network_pdu){
1147     return big_endian_read_16(network_pdu->data, 5);
1148 }
1149 uint16_t mesh_network_dst(mesh_network_pdu_t * network_pdu){
1150     return big_endian_read_16(network_pdu->data, 7);
1151 }
1152 int mesh_network_segmented(mesh_network_pdu_t * network_pdu){
1153     return network_pdu->data[9] & 0x80;
1154 }
1155 uint8_t mesh_network_control_opcode(mesh_network_pdu_t * network_pdu){
1156     return network_pdu->data[9] & 0x7f;
1157 }
1158 uint8_t * mesh_network_pdu_data(mesh_network_pdu_t * network_pdu){
1159     return &network_pdu->data[9];
1160 }
1161 uint8_t   mesh_network_pdu_len(mesh_network_pdu_t * network_pdu){
1162     return network_pdu->len - 9;
1163 }
1164 
1165 void mesh_network_pdu_set_seq(mesh_network_pdu_t * network_pdu, uint32_t seq){
1166     big_endian_store_24(network_pdu->data, 2, seq);
1167 }
1168 
1169 static void mesh_network_dump_network_pdu(mesh_network_pdu_t * network_pdu){
1170     if (network_pdu){
1171         printf("- %p: ", network_pdu); printf_hexdump(network_pdu->data, network_pdu->len);
1172     }
1173 }
1174 static void mesh_network_dump_network_pdus(const char * name, btstack_linked_list_t * list){
1175     printf("List: %s:\n", name);
1176     btstack_linked_list_iterator_t it;
1177     btstack_linked_list_iterator_init(&it, list);
1178     while (btstack_linked_list_iterator_has_next(&it)){
1179         mesh_network_pdu_t * network_pdu = (mesh_network_pdu_t*) btstack_linked_list_iterator_next(&it);
1180         mesh_network_dump_network_pdu(network_pdu);
1181     }
1182 }
1183 static void mesh_network_reset_network_pdus(btstack_linked_list_t * list){
1184     while (!btstack_linked_list_empty(list)){
1185         mesh_network_pdu_t * pdu = (mesh_network_pdu_t *) btstack_linked_list_pop(list);
1186         btstack_memory_mesh_network_pdu_free(pdu);
1187     }
1188 }
1189 void mesh_network_dump(void){
1190     mesh_network_dump_network_pdus("network_pdus_received", &network_pdus_received);
1191     mesh_network_dump_network_pdus("network_pdus_queued", &network_pdus_queued);
1192     mesh_network_dump_network_pdus("network_pdus_outgoing_gatt", &network_pdus_outgoing_gatt);
1193     mesh_network_dump_network_pdus("network_pdus_outgoing_adv", &network_pdus_outgoing_adv);
1194     printf("outgoing_pdu: \n");
1195     mesh_network_dump_network_pdu(outgoing_pdu);
1196     printf("incoming_pdu_raw: \n");
1197     mesh_network_dump_network_pdu(incoming_pdu_raw);
1198 #ifdef ENABLE_MESH_GATT_BEARER
1199     printf("gatt_bearer_network_pdu: \n");
1200     mesh_network_dump_network_pdu(gatt_bearer_network_pdu);
1201 #endif
1202 #ifdef ENABLE_MESH_ADV_BEARER
1203     printf("adv_bearer_network_pdu: \n");
1204     mesh_network_dump_network_pdu(adv_bearer_network_pdu);
1205 #endif
1206 
1207 }
1208 void mesh_network_reset(void){
1209     mesh_network_reset_network_pdus(&network_pdus_received);
1210     mesh_network_reset_network_pdus(&network_pdus_queued);
1211     mesh_network_reset_network_pdus(&network_pdus_outgoing_gatt);
1212     mesh_network_reset_network_pdus(&network_pdus_outgoing_adv);
1213 
1214     // outgoing network pdus are owned by higher layer, so we don't free:
1215     // - adv_bearer_network_pdu
1216     // - gatt_bearer_network_pdu
1217     // - outoing_pdu
1218 #ifdef ENABLE_MESH_ADV_BEARER
1219     adv_bearer_network_pdu = NULL;
1220 #endif
1221 #ifdef ENABLE_MESH_GATT_BEARER
1222     gatt_bearer_network_pdu = NULL;
1223 #endif
1224     outgoing_pdu = NULL;
1225 
1226     if (incoming_pdu_raw){
1227         mesh_network_pdu_free(incoming_pdu_raw);
1228         incoming_pdu_raw = NULL;
1229     }
1230     if (incoming_pdu_decoded){
1231         mesh_network_pdu_free(incoming_pdu_decoded);
1232         incoming_pdu_decoded = NULL;
1233     }
1234     mesh_crypto_active = 0;
1235 }
1236 
1237 // buffer pool
1238 mesh_network_pdu_t * mesh_network_pdu_get(void){
1239     mesh_network_pdu_t * network_pdu = btstack_memory_mesh_network_pdu_get();
1240     if (network_pdu) {
1241         memset(network_pdu, 0, sizeof(mesh_network_pdu_t));
1242         network_pdu->pdu_header.pdu_type = MESH_PDU_TYPE_NETWORK;
1243     }
1244     return network_pdu;
1245 }
1246 
1247 void mesh_network_pdu_free(mesh_network_pdu_t * network_pdu){
1248     btstack_memory_mesh_network_pdu_free(network_pdu);
1249 }
1250 
1251 // Mesh Subnet Management
1252 
1253 void mesh_subnet_add(mesh_subnet_t * subnet){
1254     btstack_linked_list_add_tail(&subnets, (btstack_linked_item_t *) subnet);
1255 }
1256 
1257 void mesh_subnet_remove(mesh_subnet_t * subnet){
1258     btstack_linked_list_remove(&subnets, (btstack_linked_item_t *) subnet);
1259 }
1260 
1261 mesh_subnet_t * mesh_subnet_get_by_netkey_index(uint16_t netkey_index){
1262     btstack_linked_list_iterator_t it;
1263     btstack_linked_list_iterator_init(&it, &subnets);
1264     while (btstack_linked_list_iterator_has_next(&it)){
1265         mesh_subnet_t * item = (mesh_subnet_t *) btstack_linked_list_iterator_next(&it);
1266         if (item->netkey_index == netkey_index) return item;
1267     }
1268     return NULL;
1269 }
1270 
1271 int mesh_subnet_list_count(void){
1272     return btstack_linked_list_count(&subnets);
1273 }
1274 
1275 // mesh network key iterator over all keys
1276 void mesh_subnet_iterator_init(mesh_subnet_iterator_t *it){
1277     btstack_linked_list_iterator_init(&it->it, &subnets);
1278 }
1279 
1280 int mesh_subnet_iterator_has_more(mesh_subnet_iterator_t *it){
1281     return btstack_linked_list_iterator_has_next(&it->it);
1282 }
1283 
1284 mesh_subnet_t * mesh_subnet_iterator_get_next(mesh_subnet_iterator_t *it){
1285     return (mesh_subnet_t *) btstack_linked_list_iterator_next(&it->it);
1286 }
1287 
1288 mesh_network_key_t * mesh_subnet_get_outgoing_network_key(mesh_subnet_t * subnet){
1289     switch (subnet->key_refresh){
1290         case MESH_KEY_REFRESH_SECOND_PHASE:
1291             return subnet->new_key;
1292         case MESH_KEY_REFRESH_NOT_ACTIVE:
1293         case MESH_KEY_REFRESH_FIRST_PHASE:
1294         default:
1295             return subnet->old_key;
1296     }
1297 }
1298 
1299 /**
1300  * @brief Setup subnet for given netkey index
1301  */
1302 void mesh_subnet_setup_for_netkey_index(uint16_t netkey_index){
1303     mesh_subnet_t * subnet = mesh_subnet_get_by_netkey_index(netkey_index);
1304     if (subnet != NULL) return;
1305 
1306     // find old / new keys
1307     mesh_network_key_t * old_key = NULL;
1308     mesh_network_key_t * new_key = NULL;
1309     mesh_network_key_iterator_t it;
1310     mesh_network_key_iterator_init(&it);
1311     while (mesh_network_key_iterator_has_more(&it)){
1312         mesh_network_key_t * network_key = mesh_network_key_iterator_get_next(&it);
1313         if (network_key->netkey_index != netkey_index) continue;
1314         if (old_key == NULL){
1315             old_key = network_key;
1316             continue;
1317         }
1318         // assign current key depending on key version
1319         if (((int8_t) (network_key->version - new_key->version)) > 0) {
1320             new_key = network_key;
1321         } else {
1322             new_key = old_key;
1323             old_key = network_key;
1324         }
1325     }
1326 
1327     // create subnet for netkey index
1328     subnet = btstack_memory_mesh_subnet_get();
1329     if (subnet == NULL) return;
1330     subnet->netkey_index = netkey_index;
1331     mesh_subnet_add(subnet);
1332 
1333     // set keys
1334     subnet->old_key = old_key;
1335     subnet->new_key = new_key;
1336 
1337     // key refresh
1338     if (new_key == NULL){
1339         // single key -> key refresh not active
1340         subnet->key_refresh = MESH_KEY_REFRESH_NOT_ACTIVE;
1341     }
1342     else {
1343         // two keys -> at least phase 1
1344         subnet->key_refresh = MESH_KEY_REFRESH_FIRST_PHASE;
1345     }
1346 }
1347