xref: /btstack/src/hci.c (revision 98e87e7776ef9a7fe55135aea8cddc761fe3a7a5)
1 /*
2  * Copyright (C) 2014 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 BLUEKITCHEN
24  * GMBH 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__ "hci.c"
39 
40 /*
41  *  hci.c
42  *
43  *  Created by Matthias Ringwald on 4/29/09.
44  *
45  */
46 
47 #include "btstack_config.h"
48 
49 
50 #ifdef ENABLE_CLASSIC
51 #ifdef HAVE_EMBEDDED_TICK
52 #include "btstack_run_loop_embedded.h"
53 #endif
54 #endif
55 
56 #ifdef ENABLE_BLE
57 #include "gap.h"
58 #include "ble/le_device_db.h"
59 #endif
60 
61 #include <stdarg.h>
62 #include <string.h>
63 #include <inttypes.h>
64 
65 #include "btstack_debug.h"
66 #include "btstack_event.h"
67 #include "btstack_linked_list.h"
68 #include "btstack_memory.h"
69 #include "bluetooth_company_id.h"
70 #include "bluetooth_data_types.h"
71 #include "gap.h"
72 #include "hci.h"
73 #include "hci_cmd.h"
74 #include "hci_dump.h"
75 #include "ad_parser.h"
76 
77 #ifdef ENABLE_CONTROLLER_DUMP_PACKETS
78 #include <stdio.h>  // sprintf
79 #endif
80 
81 #ifdef ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL
82 #ifndef HCI_HOST_ACL_PACKET_NUM
83 #error "ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL requires to define HCI_HOST_ACL_PACKET_NUM"
84 #endif
85 #ifndef HCI_HOST_ACL_PACKET_LEN
86 #error "ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL requires to define HCI_HOST_ACL_PACKET_LEN"
87 #endif
88 #ifndef HCI_HOST_SCO_PACKET_NUM
89 #error "ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL requires to define HCI_HOST_SCO_PACKET_NUM"
90 #endif
91 #ifndef HCI_HOST_SCO_PACKET_LEN
92 #error "ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL requires to define HCI_HOST_SCO_PACKET_LEN"
93 #endif
94 #endif
95 
96 #ifndef MAX_NR_CONTROLLER_ACL_BUFFERS
97 #define MAX_NR_CONTROLLER_ACL_BUFFERS 255
98 #endif
99 #ifndef MAX_NR_CONTROLLER_SCO_PACKETS
100 #define MAX_NR_CONTROLLER_SCO_PACKETS 255
101 #endif
102 
103 #ifndef HCI_ACL_CHUNK_SIZE_ALIGNMENT
104 #define HCI_ACL_CHUNK_SIZE_ALIGNMENT 1
105 #endif
106 
107 #if defined(ENABLE_SCO_OVER_HCI) && defined(ENABLE_SCO_OVER_PCM)
108 #error "SCO data can either be routed over HCI or over PCM, but not over both. Please only enable ENABLE_SCO_OVER_HCI or ENABLE_SCO_OVER_PCM."
109 #endif
110 
111 #if defined(ENABLE_SCO_OVER_HCI) && defined(HAVE_SCO_TRANSPORT)
112 #error "SCO data can either be routed over HCI or over PCM, but not over both. Please only enable ENABLE_SCO_OVER_HCI or HAVE_SCO_TRANSPORT."
113 #endif
114 
115 #define HCI_CONNECTION_TIMEOUT_MS 10000
116 
117 #ifndef HCI_RESET_RESEND_TIMEOUT_MS
118 #define HCI_RESET_RESEND_TIMEOUT_MS 200
119 #endif
120 
121 // Names are arbitrarily shortened to 32 bytes if not requested otherwise
122 #ifndef GAP_INQUIRY_MAX_NAME_LEN
123 #define GAP_INQUIRY_MAX_NAME_LEN 32
124 #endif
125 
126 // GAP inquiry state: 0 = off, 0x01 - 0x30 = requested duration, 0xfe = active, 0xff = stop requested
127 #define GAP_INQUIRY_DURATION_MIN       0x01
128 #define GAP_INQUIRY_DURATION_MAX       0x30
129 #define GAP_INQUIRY_MIN_PERIODIC_LEN_MIN 0x02
130 #define GAP_INQUIRY_MAX_PERIODIC_LEN_MIN 0x03
131 #define GAP_INQUIRY_STATE_IDLE         0x00
132 #define GAP_INQUIRY_STATE_W4_ACTIVE    0x80
133 #define GAP_INQUIRY_STATE_ACTIVE       0x81
134 #define GAP_INQUIRY_STATE_W2_CANCEL    0x82
135 #define GAP_INQUIRY_STATE_W4_CANCELLED 0x83
136 #define GAP_INQUIRY_STATE_PERIODIC     0x84
137 #define GAP_INQUIRY_STATE_W2_EXIT_PERIODIC 0x85
138 
139 // GAP Remote Name Request
140 #define GAP_REMOTE_NAME_STATE_IDLE 0
141 #define GAP_REMOTE_NAME_STATE_W2_SEND 1
142 #define GAP_REMOTE_NAME_STATE_W4_COMPLETE 2
143 
144 // GAP Pairing
145 #define GAP_PAIRING_STATE_IDLE                       0
146 #define GAP_PAIRING_STATE_SEND_PIN                   1
147 #define GAP_PAIRING_STATE_SEND_PIN_NEGATIVE          2
148 #define GAP_PAIRING_STATE_SEND_PASSKEY               3
149 #define GAP_PAIRING_STATE_SEND_PASSKEY_NEGATIVE      4
150 #define GAP_PAIRING_STATE_SEND_CONFIRMATION          5
151 #define GAP_PAIRING_STATE_SEND_CONFIRMATION_NEGATIVE 6
152 #define GAP_PAIRING_STATE_WAIT_FOR_COMMAND_COMPLETE  7
153 
154 //
155 // compact storage of relevant supported HCI Commands.
156 // X-Macro below provides enumeration and mapping table into the supported
157 // commands bitmap (64 bytes) from HCI Read Local Supported Commands
158 //
159 
160 // format: command name, byte offset, bit nr in 64-byte supported commands
161 // currently stored in 32-bit variable
162 #define SUPPORTED_HCI_COMMANDS \
163     X( SUPPORTED_HCI_COMMAND_READ_REMOTE_EXTENDED_FEATURES         ,  2, 5) \
164     X( SUPPORTED_HCI_COMMAND_WRITE_SYNCHRONOUS_FLOW_CONTROL_ENABLE , 10, 4) \
165     X( SUPPORTED_HCI_COMMAND_READ_BUFFER_SIZE                      , 14, 7) \
166     X( SUPPORTED_HCI_COMMAND_WRITE_DEFAULT_ERRONEOUS_DATA_REPORTING, 18, 3) \
167     X( SUPPORTED_HCI_COMMAND_READ_ENCRYPTION_KEY_SIZE              , 20, 4) \
168     X( SUPPORTED_HCI_COMMAND_SET_EVENT_MASK_PAGE_2                 , 22, 2) \
169     X( SUPPORTED_HCI_COMMAND_WRITE_LE_HOST_SUPPORTED               , 24, 6) \
170     X( SUPPORTED_HCI_COMMAND_REMOTE_OOB_EXTENDED_DATA_REQUEST_REPLY, 32, 1) \
171     X( SUPPORTED_HCI_COMMAND_WRITE_SECURE_CONNECTIONS_HOST         , 32, 3) \
172     X( SUPPORTED_HCI_COMMAND_READ_LOCAL_OOB_EXTENDED_DATA_COMMAND  , 32, 6) \
173     X( SUPPORTED_HCI_COMMAND_LE_WRITE_SUGGESTED_DEFAULT_DATA_LENGTH, 34, 0) \
174     X( SUPPORTED_HCI_COMMAND_LE_SET_ADDRESS_RESOLUTION_ENABLE      , 35, 1) \
175     X( SUPPORTED_HCI_COMMAND_LE_READ_MAXIMUM_DATA_LENGTH           , 35, 3) \
176     X( SUPPORTED_HCI_COMMAND_LE_SET_DEFAULT_PHY                    , 35, 5) \
177     X( SUPPORTED_HCI_COMMAND_LE_SET_EXTENDED_ADVERTISING_ENABLE    , 36, 6) \
178     X( SUPPORTED_HCI_COMMAND_LE_READ_BUFFER_SIZE_V2                , 41, 5) \
179     X( SUPPORTED_HCI_COMMAND_SET_MIN_ENCRYPTION_KEY_SIZE           , 45, 7) \
180 
181 // enumerate supported commands
182 #define X(name, offset, bit) name,
183 enum {
184     SUPPORTED_HCI_COMMANDS
185     SUPPORTED_HCI_COMMANDS_COUNT
186 };
187 #undef X
188 
189 // prototypes
190 #ifdef ENABLE_CLASSIC
191 static void hci_update_scan_enable(void);
192 static void hci_emit_scan_mode_changed(uint8_t discoverable, uint8_t connectable);
193 static int  hci_local_ssp_activated(void);
194 static bool hci_remote_ssp_supported(hci_con_handle_t con_handle);
195 static bool hci_ssp_supported(hci_connection_t * connection);
196 static void hci_notify_if_sco_can_send_now(void);
197 static void hci_emit_connection_complete(bd_addr_t address, hci_con_handle_t con_handle, uint8_t status);
198 static gap_security_level_t gap_security_level_for_connection(hci_connection_t * connection);
199 static void hci_emit_security_level(hci_con_handle_t con_handle, gap_security_level_t level);
200 static void hci_connection_timeout_handler(btstack_timer_source_t *timer);
201 static void hci_connection_timestamp(hci_connection_t *connection);
202 static void hci_emit_l2cap_check_timeout(hci_connection_t *conn);
203 static void gap_inquiry_explode(uint8_t *packet, uint16_t size);
204 #endif
205 
206 static int  hci_power_control_on(void);
207 static void hci_power_control_off(void);
208 static void hci_state_reset(void);
209 static void hci_halting_timeout_handler(btstack_timer_source_t * ds);
210 static void hci_emit_transport_packet_sent(void);
211 static void hci_emit_disconnection_complete(hci_con_handle_t con_handle, uint8_t reason);
212 static void hci_emit_nr_connections_changed(void);
213 static void hci_emit_hci_open_failed(void);
214 static void hci_emit_dedicated_bonding_result(bd_addr_t address, uint8_t status);
215 static void hci_emit_event(uint8_t * event, uint16_t size, int dump);
216 static void hci_emit_acl_packet(uint8_t * packet, uint16_t size);
217 static void hci_run(void);
218 static bool hci_is_le_connection(hci_connection_t * connection);
219 
220 #ifdef ENABLE_CLASSIC
221 static int hci_have_usb_transport(void);
222 static void hci_trigger_remote_features_for_connection(hci_connection_t * connection);
223 #endif
224 
225 #ifdef ENABLE_BLE
226 #ifdef ENABLE_LE_CENTRAL
227 // called from test/ble_client/advertising_data_parser.c
228 void le_handle_advertisement_report(uint8_t *packet, uint16_t size);
229 static uint8_t hci_whitelist_remove(bd_addr_type_t address_type, const bd_addr_t address);
230 static hci_connection_t * gap_get_outgoing_connection(void);
231 static void hci_le_scan_stop(void);
232 static bool hci_run_general_gap_le(void);
233 #endif
234 #ifdef ENABLE_LE_PERIPHERAL
235 #ifdef ENABLE_LE_EXTENDED_ADVERTISING
236 static le_advertising_set_t * hci_advertising_set_for_handle(uint8_t advertising_handle);
237 #endif /* ENABLE_LE_EXTENDED_ADVERTISING */
238 #endif /* ENABLE_LE_PERIPHERAL */
239 #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
240 static hci_iso_stream_t * hci_iso_stream_create(hci_iso_type_t iso_type, hci_iso_stream_state_t state, uint8_t group_id, uint8_t stream_id);
241 static void hci_iso_stream_finalize(hci_iso_stream_t * iso_stream);
242 static void hci_iso_stream_finalize_by_type_and_group_id(hci_iso_type_t iso_type, uint8_t group_id);
243 static hci_iso_stream_t * hci_iso_stream_for_con_handle(hci_con_handle_t con_handle);
244 static void hci_iso_stream_requested_finalize(uint8_t big_handle);
245 static void hci_iso_stream_requested_confirm(uint8_t big_handle);
246 static void hci_iso_packet_handler(uint8_t * packet, uint16_t size);
247 static le_audio_big_t * hci_big_for_handle(uint8_t big_handle);
248 static le_audio_cig_t * hci_cig_for_id(uint8_t cig_id);
249 static void hci_iso_notify_can_send_now(void);
250 static void hci_emit_big_created(const le_audio_big_t * big, uint8_t status);
251 static void hci_emit_big_terminated(const le_audio_big_t * big);
252 static void hci_emit_big_sync_created(const le_audio_big_sync_t * big_sync, uint8_t status);
253 static void hci_emit_big_sync_stopped(uint8_t big_handle);
254 static void hci_emit_cig_created(const le_audio_cig_t * cig, uint8_t status);
255 static void hci_cis_handle_created(hci_iso_stream_t * iso_stream, uint8_t status);
256 static le_audio_big_sync_t * hci_big_sync_for_handle(uint8_t big_handle);
257 
258 #endif /* ENABLE_LE_ISOCHRONOUS_STREAMS */
259 #endif /* ENABLE_BLE */
260 
261 // the STACK is here
262 #ifndef HAVE_MALLOC
263 static hci_stack_t   hci_stack_static;
264 #endif
265 static hci_stack_t * hci_stack = NULL;
266 
267 #ifdef ENABLE_CLASSIC
268 // default name
269 static const char * default_classic_name = "BTstack 00:00:00:00:00:00";
270 
271 // test helper
272 static uint8_t disable_l2cap_timeouts = 0;
273 #endif
274 
275 // reset connection state on create and on reconnect
276 // don't overwrite addr, con handle, role
277 static void hci_connection_init(hci_connection_t * conn){
278     conn->authentication_flags = AUTH_FLAG_NONE;
279     conn->bonding_flags = 0;
280     conn->requested_security_level = LEVEL_0;
281 #ifdef ENABLE_CLASSIC
282     conn->request_role = HCI_ROLE_INVALID;
283     conn->sniff_subrating_max_latency = 0xffff;
284     conn->qos_service_type = HCI_SERVICE_TYPE_INVALID;
285     conn->link_key_type = INVALID_LINK_KEY;
286     btstack_run_loop_set_timer_handler(&conn->timeout, hci_connection_timeout_handler);
287     btstack_run_loop_set_timer_context(&conn->timeout, conn);
288     hci_connection_timestamp(conn);
289 #endif
290     conn->acl_recombination_length = 0;
291     conn->acl_recombination_pos = 0;
292     conn->num_packets_sent = 0;
293 
294     conn->le_con_parameter_update_state = CON_PARAMETER_UPDATE_NONE;
295 #ifdef ENABLE_BLE
296     conn->le_phy_update_all_phys = 0xff;
297 #endif
298 #ifdef ENABLE_LE_LIMIT_ACL_FRAGMENT_BY_MAX_OCTETS
299     conn->le_max_tx_octets = 27;
300 #endif
301 #ifdef ENABLE_CLASSIC_PAIRING_OOB
302     conn->classic_oob_c_192 = NULL;
303     conn->classic_oob_r_192 = NULL;
304     conn->classic_oob_c_256 = NULL;
305     conn->classic_oob_r_256 = NULL;
306 #endif
307 }
308 
309 /**
310  * create connection for given address
311  *
312  * @return connection OR NULL, if no memory left
313  */
314 static hci_connection_t *
315 create_connection_for_bd_addr_and_type(const bd_addr_t addr, bd_addr_type_t addr_type, hci_role_t role) {
316     log_info("create_connection_for_addr %s, type %x", bd_addr_to_str(addr), addr_type);
317 
318     hci_connection_t * conn = btstack_memory_hci_connection_get();
319     if (!conn) return NULL;
320     hci_connection_init(conn);
321 
322     bd_addr_copy(conn->address, addr);
323     conn->address_type = addr_type;
324     conn->con_handle = HCI_CON_HANDLE_INVALID;
325     conn->role = role;
326 #ifdef ENABLE_LE_PERIODIC_ADVERTISING
327     conn->le_past_sync_handle = HCI_CON_HANDLE_INVALID;
328     conn->le_past_advertising_handle = 0xff;
329 #endif
330     btstack_linked_list_add(&hci_stack->connections, (btstack_linked_item_t *) conn);
331 
332     return conn;
333 }
334 
335 
336 /**
337  * get le connection parameter range
338 *
339  * @return le connection parameter range struct
340  */
341 void gap_get_connection_parameter_range(le_connection_parameter_range_t * range){
342     *range = hci_stack->le_connection_parameter_range;
343 }
344 
345 /**
346  * set le connection parameter range
347  *
348  */
349 
350 void gap_set_connection_parameter_range(le_connection_parameter_range_t *range){
351     hci_stack->le_connection_parameter_range = *range;
352 }
353 
354 /**
355  * @brief Test if connection parameters are inside in existing rage
356  * @param conn_interval_min (unit: 1.25ms)
357  * @param conn_interval_max (unit: 1.25ms)
358  * @param conn_latency
359  * @param supervision_timeout (unit: 10ms)
360  * @return 1 if included
361  */
362 int gap_connection_parameter_range_included(le_connection_parameter_range_t * existing_range, uint16_t le_conn_interval_min, uint16_t le_conn_interval_max, uint16_t le_conn_latency, uint16_t le_supervision_timeout){
363     if (le_conn_interval_min < existing_range->le_conn_interval_min) return 0;
364     if (le_conn_interval_max > existing_range->le_conn_interval_max) return 0;
365 
366     if (le_conn_latency < existing_range->le_conn_latency_min) return 0;
367     if (le_conn_latency > existing_range->le_conn_latency_max) return 0;
368 
369     if (le_supervision_timeout < existing_range->le_supervision_timeout_min) return 0;
370     if (le_supervision_timeout > existing_range->le_supervision_timeout_max) return 0;
371 
372     return 1;
373 }
374 
375 /**
376  * @brief Set max number of connections in LE Peripheral role (if Bluetooth Controller supports it)
377  * @note: default: 1
378  * @param max_peripheral_connections
379  */
380 #ifdef ENABLE_LE_PERIPHERAL
381 void gap_set_max_number_peripheral_connections(int max_peripheral_connections){
382     hci_stack->le_max_number_peripheral_connections = max_peripheral_connections;
383 }
384 #endif
385 
386 /**
387  * get hci connections iterator
388  *
389  * @return hci connections iterator
390  */
391 
392 void hci_connections_get_iterator(btstack_linked_list_iterator_t *it){
393     btstack_linked_list_iterator_init(it, &hci_stack->connections);
394 }
395 
396 /**
397  * get connection for a given handle
398  *
399  * @return connection OR NULL, if not found
400  */
401 hci_connection_t * hci_connection_for_handle(hci_con_handle_t con_handle){
402     btstack_linked_list_iterator_t it;
403     btstack_linked_list_iterator_init(&it, &hci_stack->connections);
404     while (btstack_linked_list_iterator_has_next(&it)){
405         hci_connection_t * item = (hci_connection_t *) btstack_linked_list_iterator_next(&it);
406         if ( item->con_handle == con_handle ) {
407             return item;
408         }
409     }
410     return NULL;
411 }
412 
413 /**
414  * get connection for given address
415  *
416  * @return connection OR NULL, if not found
417  */
418 hci_connection_t * hci_connection_for_bd_addr_and_type(const bd_addr_t  addr, bd_addr_type_t addr_type){
419     btstack_linked_list_iterator_t it;
420     btstack_linked_list_iterator_init(&it, &hci_stack->connections);
421     while (btstack_linked_list_iterator_has_next(&it)){
422         hci_connection_t * connection = (hci_connection_t *) btstack_linked_list_iterator_next(&it);
423         if (connection->address_type != addr_type)  continue;
424         if (memcmp(addr, connection->address, 6) != 0) continue;
425         return connection;
426     }
427     return NULL;
428 }
429 
430 #ifdef ENABLE_CLASSIC
431 
432 inline static void connectionClearAuthenticationFlags(hci_connection_t * conn, hci_authentication_flags_t flags){
433     conn->authentication_flags = (hci_authentication_flags_t)(conn->authentication_flags & ~flags);
434 }
435 
436 inline static void connectionSetAuthenticationFlags(hci_connection_t * conn, hci_authentication_flags_t flags){
437     conn->authentication_flags = (hci_authentication_flags_t)(conn->authentication_flags | flags);
438 }
439 
440 #ifdef ENABLE_SCO_OVER_HCI
441 static int hci_number_sco_connections(void){
442     int connections = 0;
443     btstack_linked_list_iterator_t it;
444     btstack_linked_list_iterator_init(&it, &hci_stack->connections);
445     while (btstack_linked_list_iterator_has_next(&it)){
446         hci_connection_t * connection = (hci_connection_t *) btstack_linked_list_iterator_next(&it);
447         if (connection->address_type != BD_ADDR_TYPE_SCO) continue;
448         connections++;
449     }
450     return connections;
451 }
452 #endif
453 
454 static void hci_connection_timeout_handler(btstack_timer_source_t *timer){
455     hci_connection_t * connection = (hci_connection_t *) btstack_run_loop_get_timer_context(timer);
456 #ifdef HAVE_EMBEDDED_TICK
457     if (btstack_run_loop_embedded_get_ticks() > connection->timestamp + btstack_run_loop_embedded_ticks_for_ms(HCI_CONNECTION_TIMEOUT_MS)){
458         // connections might be timed out
459         hci_emit_l2cap_check_timeout(connection);
460     }
461 #else
462     if (btstack_run_loop_get_time_ms() > (connection->timestamp + HCI_CONNECTION_TIMEOUT_MS)){
463         // connections might be timed out
464         hci_emit_l2cap_check_timeout(connection);
465     }
466 #endif
467 }
468 
469 static void hci_connection_timestamp(hci_connection_t *connection){
470 #ifdef HAVE_EMBEDDED_TICK
471     connection->timestamp = btstack_run_loop_embedded_get_ticks();
472 #else
473     connection->timestamp = btstack_run_loop_get_time_ms();
474 #endif
475 }
476 
477 /**
478  * add authentication flags and reset timer
479  * @note: assumes classic connection
480  * @note: bd_addr is passed in as litle endian uint8_t * as it is called from parsing packets
481  */
482 static void hci_add_connection_flags_for_flipped_bd_addr(uint8_t *bd_addr, hci_authentication_flags_t flags){
483     bd_addr_t addr;
484     reverse_bd_addr(bd_addr, addr);
485     hci_connection_t * conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
486     if (conn) {
487         connectionSetAuthenticationFlags(conn, flags);
488         hci_connection_timestamp(conn);
489     }
490 }
491 
492 static bool hci_pairing_active(hci_connection_t * hci_connection){
493     return (hci_connection->authentication_flags & AUTH_FLAG_PAIRING_ACTIVE_MASK) != 0;
494 }
495 
496 static void hci_pairing_started(hci_connection_t * hci_connection, bool ssp){
497     if (hci_pairing_active(hci_connection)) return;
498     if (ssp){
499         hci_connection->authentication_flags |= AUTH_FLAG_SSP_PAIRING_ACTIVE;
500     } else {
501         hci_connection->authentication_flags |= AUTH_FLAG_LEGACY_PAIRING_ACTIVE;
502     }
503     // if we are initiator, we have sent an HCI Authenticate Request
504     bool initiator = (hci_connection->bonding_flags & BONDING_SENT_AUTHENTICATE_REQUEST) != 0;
505 
506     // if we are responder, use minimal service security level as required level
507     if (!initiator){
508         hci_connection->requested_security_level = (gap_security_level_t) btstack_max((uint32_t) hci_connection->requested_security_level, (uint32_t) hci_stack->gap_minimal_service_security_level);
509     }
510 
511     log_info("pairing started, ssp %u, initiator %u, requested level %u", (int) ssp, (int) initiator, hci_connection->requested_security_level);
512 
513     uint8_t event[12];
514     event[0] = GAP_EVENT_PAIRING_STARTED;
515     event[1] = 10;
516     little_endian_store_16(event, 2, (uint16_t) hci_connection->con_handle);
517     reverse_bd_addr(hci_connection->address, &event[4]);
518     event[10] = (uint8_t) ssp;
519     event[11] = (uint8_t) initiator;
520     hci_emit_event(event, sizeof(event), 1);
521 }
522 
523 static void hci_pairing_complete(hci_connection_t * hci_connection, uint8_t status){
524     hci_connection->requested_security_level = LEVEL_0;
525     if (!hci_pairing_active(hci_connection)) return;
526     hci_connection->authentication_flags &= ~AUTH_FLAG_PAIRING_ACTIVE_MASK;
527 #ifdef ENABLE_CLASSIC_PAIRING_OOB
528     hci_connection->classic_oob_c_192 = NULL;
529     hci_connection->classic_oob_r_192 = NULL;
530     hci_connection->classic_oob_c_256 = NULL;
531     hci_connection->classic_oob_r_256 = NULL;
532 #endif
533     log_info("pairing complete, status %02x", status);
534 
535     uint8_t event[11];
536     event[0] = GAP_EVENT_PAIRING_COMPLETE;
537     event[1] = 9;
538     little_endian_store_16(event, 2, (uint16_t) hci_connection->con_handle);
539     reverse_bd_addr(hci_connection->address, &event[4]);
540     event[10] = status;
541     hci_emit_event(event, sizeof(event), 1);
542 
543     // emit dedicated bonding done on failure, otherwise verify that connection can be encrypted
544     if ((status != ERROR_CODE_SUCCESS) && ((hci_connection->bonding_flags & BONDING_DEDICATED) != 0)){
545         hci_connection->bonding_flags &= ~BONDING_DEDICATED;
546         hci_connection->bonding_flags |= BONDING_DISCONNECT_DEDICATED_DONE;
547         hci_connection->bonding_status = status;
548     }
549 }
550 
551 bool hci_authentication_active_for_handle(hci_con_handle_t handle){
552     hci_connection_t * conn = hci_connection_for_handle(handle);
553     if (!conn) return false;
554     return hci_pairing_active(conn);
555 }
556 
557 void gap_drop_link_key_for_bd_addr(bd_addr_t addr){
558     if (!hci_stack->link_key_db) return;
559     log_info("gap_drop_link_key_for_bd_addr: %s", bd_addr_to_str(addr));
560     hci_stack->link_key_db->delete_link_key(addr);
561 }
562 
563 void gap_store_link_key_for_bd_addr(bd_addr_t addr, link_key_t link_key, link_key_type_t type){
564     if (!hci_stack->link_key_db) return;
565     log_info("gap_store_link_key_for_bd_addr: %s, type %u", bd_addr_to_str(addr), type);
566     hci_stack->link_key_db->put_link_key(addr, link_key, type);
567 }
568 
569 bool gap_get_link_key_for_bd_addr(bd_addr_t addr, link_key_t link_key, link_key_type_t * type){
570 	if (!hci_stack->link_key_db) return false;
571 	int result = hci_stack->link_key_db->get_link_key(addr, link_key, type) != 0;
572 	log_info("link key for %s available %u, type %u", bd_addr_to_str(addr), result, (int) *type);
573 	return result;
574 }
575 
576 void gap_delete_all_link_keys(void){
577     bd_addr_t  addr;
578     link_key_t link_key;
579     link_key_type_t type;
580     btstack_link_key_iterator_t it;
581     int ok = gap_link_key_iterator_init(&it);
582     if (!ok) {
583         log_error("could not initialize iterator");
584         return;
585     }
586     while (gap_link_key_iterator_get_next(&it, addr, link_key, &type)){
587         gap_drop_link_key_for_bd_addr(addr);
588     }
589     gap_link_key_iterator_done(&it);
590 }
591 
592 int gap_link_key_iterator_init(btstack_link_key_iterator_t * it){
593     if (!hci_stack->link_key_db) return 0;
594     if (!hci_stack->link_key_db->iterator_init) return 0;
595     return hci_stack->link_key_db->iterator_init(it);
596 }
597 int gap_link_key_iterator_get_next(btstack_link_key_iterator_t * it, bd_addr_t bd_addr, link_key_t link_key, link_key_type_t * type){
598     if (!hci_stack->link_key_db) return 0;
599     return hci_stack->link_key_db->iterator_get_next(it, bd_addr, link_key, type);
600 }
601 void gap_link_key_iterator_done(btstack_link_key_iterator_t * it){
602     if (!hci_stack->link_key_db) return;
603     hci_stack->link_key_db->iterator_done(it);
604 }
605 #endif
606 
607 static bool hci_is_le_connection_type(bd_addr_type_t address_type){
608     switch (address_type){
609         case BD_ADDR_TYPE_LE_PUBLIC:
610         case BD_ADDR_TYPE_LE_RANDOM:
611         case BD_ADDR_TYPE_LE_PUBLIC_IDENTITY:
612         case BD_ADDR_TYPE_LE_RANDOM_IDENTITY:
613             return true;
614         default:
615             return false;
616     }
617 }
618 
619 static bool hci_is_le_connection(hci_connection_t * connection){
620     return hci_is_le_connection_type(connection->address_type);
621 }
622 
623 /**
624  * count connections
625  */
626 static int nr_hci_connections(void){
627     int count = 0;
628     btstack_linked_item_t *it;
629     for (it = (btstack_linked_item_t *) hci_stack->connections; it != NULL ; it = it->next){
630         count++;
631     }
632     return count;
633 }
634 
635 uint16_t hci_number_free_acl_slots_for_connection_type(bd_addr_type_t address_type){
636 
637     unsigned int num_packets_sent_classic = 0;
638     unsigned int num_packets_sent_le = 0;
639 
640     btstack_linked_item_t *it;
641     for (it = (btstack_linked_item_t *) hci_stack->connections; it != NULL; it = it->next){
642         hci_connection_t * connection = (hci_connection_t *) it;
643         if (hci_is_le_connection(connection)){
644             num_packets_sent_le += connection->num_packets_sent;
645         }
646         if (connection->address_type == BD_ADDR_TYPE_ACL){
647             num_packets_sent_classic += connection->num_packets_sent;
648         }
649     }
650     log_debug("ACL classic buffers: %u used of %u", num_packets_sent_classic, hci_stack->acl_packets_total_num);
651     int free_slots_classic = hci_stack->acl_packets_total_num - num_packets_sent_classic;
652     int free_slots_le = 0;
653 
654     if (free_slots_classic < 0){
655         log_error("hci_number_free_acl_slots: outgoing classic packets (%u) > total classic packets (%u)", num_packets_sent_classic, hci_stack->acl_packets_total_num);
656         return 0;
657     }
658 
659     if (hci_stack->le_acl_packets_total_num){
660         // if we have LE slots, they are used
661         free_slots_le = hci_stack->le_acl_packets_total_num - num_packets_sent_le;
662         if (free_slots_le < 0){
663             log_error("hci_number_free_acl_slots: outgoing le packets (%u) > total le packets (%u)", num_packets_sent_le, hci_stack->le_acl_packets_total_num);
664             return 0;
665         }
666     } else {
667         // otherwise, classic slots are used for LE, too
668         free_slots_classic -= num_packets_sent_le;
669         if (free_slots_classic < 0){
670             log_error("hci_number_free_acl_slots: outgoing classic + le packets (%u + %u) > total packets (%u)", num_packets_sent_classic, num_packets_sent_le, hci_stack->acl_packets_total_num);
671             return 0;
672         }
673     }
674 
675     switch (address_type){
676         case BD_ADDR_TYPE_UNKNOWN:
677             log_error("hci_number_free_acl_slots: unknown address type");
678             return 0;
679 
680         case BD_ADDR_TYPE_ACL:
681             return (uint16_t) free_slots_classic;
682 
683         default:
684            if (hci_stack->le_acl_packets_total_num > 0){
685                return (uint16_t) free_slots_le;
686            }
687            return (uint16_t) free_slots_classic;
688     }
689 }
690 
691 int hci_number_free_acl_slots_for_handle(hci_con_handle_t con_handle){
692     // get connection type
693     hci_connection_t * connection = hci_connection_for_handle(con_handle);
694     if (!connection){
695         log_error("hci_number_free_acl_slots: handle 0x%04x not in connection list", con_handle);
696         return 0;
697     }
698     return hci_number_free_acl_slots_for_connection_type(connection->address_type);
699 }
700 
701 #ifdef ENABLE_CLASSIC
702 static int hci_number_free_sco_slots(void){
703     unsigned int num_sco_packets_sent  = 0;
704     btstack_linked_item_t *it;
705     if (hci_stack->synchronous_flow_control_enabled){
706         // explicit flow control
707         for (it = (btstack_linked_item_t *) hci_stack->connections; it ; it = it->next){
708             hci_connection_t * connection = (hci_connection_t *) it;
709             if (connection->address_type != BD_ADDR_TYPE_SCO) continue;
710             num_sco_packets_sent += connection->num_packets_sent;
711         }
712         if (num_sco_packets_sent > hci_stack->sco_packets_total_num){
713             log_info("hci_number_free_sco_slots:packets (%u) > total packets (%u)", num_sco_packets_sent, hci_stack->sco_packets_total_num);
714             return 0;
715         }
716         return hci_stack->sco_packets_total_num - num_sco_packets_sent;
717     } else {
718         // implicit flow control -- TODO
719         int num_ready = 0;
720         for (it = (btstack_linked_item_t *) hci_stack->connections; it ; it = it->next){
721             hci_connection_t * connection = (hci_connection_t *) it;
722             if (connection->address_type != BD_ADDR_TYPE_SCO) continue;
723             if (connection->sco_tx_ready == 0) continue;
724             num_ready++;
725         }
726         return num_ready;
727     }
728 }
729 #endif
730 
731 // only used to send HCI Host Number Completed Packets
732 static int hci_can_send_comand_packet_transport(void){
733     if (hci_stack->hci_packet_buffer_reserved) return 0;
734 
735     // check for async hci transport implementations
736     if (hci_stack->hci_transport->can_send_packet_now){
737         if (!hci_stack->hci_transport->can_send_packet_now(HCI_COMMAND_DATA_PACKET)){
738             return 0;
739         }
740     }
741     return 1;
742 }
743 
744 // new functions replacing hci_can_send_packet_now[_using_packet_buffer]
745 bool hci_can_send_command_packet_now(void){
746     if (hci_can_send_comand_packet_transport() == 0) return false;
747     return hci_stack->num_cmd_packets > 0u;
748 }
749 
750 static int hci_transport_can_send_prepared_packet_now(uint8_t packet_type){
751     // check for async hci transport implementations
752     if (!hci_stack->hci_transport->can_send_packet_now) return true;
753     return hci_stack->hci_transport->can_send_packet_now(packet_type);
754 }
755 
756 static bool hci_can_send_prepared_acl_packet_for_address_type(bd_addr_type_t address_type){
757     if (!hci_transport_can_send_prepared_packet_now(HCI_ACL_DATA_PACKET)) return false;
758     return hci_number_free_acl_slots_for_connection_type(address_type) > 0;
759 }
760 
761 bool hci_can_send_acl_le_packet_now(void){
762     if (hci_stack->hci_packet_buffer_reserved) return false;
763     return hci_can_send_prepared_acl_packet_for_address_type(BD_ADDR_TYPE_LE_PUBLIC);
764 }
765 
766 bool hci_can_send_prepared_acl_packet_now(hci_con_handle_t con_handle) {
767     if (!hci_transport_can_send_prepared_packet_now(HCI_ACL_DATA_PACKET)) return false;
768     return hci_number_free_acl_slots_for_handle(con_handle) > 0;
769 }
770 
771 bool hci_can_send_acl_packet_now(hci_con_handle_t con_handle){
772     if (hci_stack->hci_packet_buffer_reserved) return false;
773     return hci_can_send_prepared_acl_packet_now(con_handle);
774 }
775 
776 #ifdef ENABLE_CLASSIC
777 bool hci_can_send_acl_classic_packet_now(void){
778     if (hci_stack->hci_packet_buffer_reserved) return false;
779     return hci_can_send_prepared_acl_packet_for_address_type(BD_ADDR_TYPE_ACL);
780 }
781 
782 bool hci_can_send_prepared_sco_packet_now(void){
783     if (!hci_transport_can_send_prepared_packet_now(HCI_SCO_DATA_PACKET)) return false;
784     if (hci_have_usb_transport()){
785         return hci_stack->sco_can_send_now;
786     } else {
787         return hci_number_free_sco_slots() > 0;
788     }
789 }
790 
791 bool hci_can_send_sco_packet_now(void){
792     if (hci_stack->hci_packet_buffer_reserved) return false;
793     return hci_can_send_prepared_sco_packet_now();
794 }
795 
796 void hci_request_sco_can_send_now_event(void){
797     hci_stack->sco_waiting_for_can_send_now = 1;
798     hci_notify_if_sco_can_send_now();
799 }
800 #endif
801 
802 // used for internal checks in l2cap.c
803 bool hci_is_packet_buffer_reserved(void){
804     return hci_stack->hci_packet_buffer_reserved;
805 }
806 
807 // reserves outgoing packet buffer.
808 // @return 1 if successful
809 bool hci_reserve_packet_buffer(void){
810     if (hci_stack->hci_packet_buffer_reserved) {
811         log_error("hci_reserve_packet_buffer called but buffer already reserved");
812         return false;
813     }
814     hci_stack->hci_packet_buffer_reserved = true;
815     return true;
816 }
817 
818 void hci_release_packet_buffer(void){
819     hci_stack->hci_packet_buffer_reserved = false;
820 }
821 
822 // assumption: synchronous implementations don't provide can_send_packet_now as they don't keep the buffer after the call
823 static int hci_transport_synchronous(void){
824     return hci_stack->hci_transport->can_send_packet_now == NULL;
825 }
826 
827 // used for debugging
828 #ifdef ENABLE_CONTROLLER_DUMP_PACKETS
829 static void hci_controller_dump_packets(void){
830     // format: "{handle:04x}:{count:02d} "
831     char summaries[3][7 * 8 + 1];
832     uint16_t totals[3];
833     uint8_t index;
834     for (index = 0 ; index < 3 ; index++){
835         summaries[index][0] = 0;
836         totals[index] = 0;
837     }
838     btstack_linked_item_t *it;
839     for (it = (btstack_linked_item_t *) hci_stack->connections; it != NULL; it = it->next){
840         hci_connection_t * connection = (hci_connection_t *) it;
841         switch (connection->address_type){
842             case BD_ADDR_TYPE_ACL:
843                 index = 0;
844                 break;
845             case BD_ADDR_TYPE_SCO:
846                 index = 2;
847                 break;
848             default:
849                 index = 1;
850                 break;
851         }
852         totals[index] += connection->num_packets_sent;
853         char item_text[10];
854         sprintf(item_text, "%04x:%02d ", connection->con_handle,connection->num_packets_sent);
855         btstack_strcat(summaries[index], sizeof(summaries[0]), item_text);
856     }
857     for (index = 0 ; index < 3 ; index++){
858         if (summaries[index][0] == 0){
859             summaries[index][0] = '-';
860             summaries[index][1] = 0;
861         }
862     }
863     log_info("Controller ACL BR/EDR: %s total %u / LE: %s total %u / SCO: %s total %u", summaries[0], totals[0], summaries[1], totals[1], summaries[2], totals[2]);
864 }
865 #endif
866 
867 static uint8_t hci_send_acl_packet_fragments(hci_connection_t *connection){
868 
869     // log_info("hci_send_acl_packet_fragments  %u/%u (con 0x%04x)", hci_stack->acl_fragmentation_pos, hci_stack->acl_fragmentation_total_size, connection->con_handle);
870 
871     // max ACL data packet length depends on connection type (LE vs. Classic) and available buffers
872     uint16_t max_acl_data_packet_length = hci_stack->acl_data_packet_length;
873     if (hci_is_le_connection(connection) && (hci_stack->le_data_packets_length > 0u)){
874         max_acl_data_packet_length = hci_stack->le_data_packets_length;
875     }
876 
877 #ifdef ENABLE_LE_LIMIT_ACL_FRAGMENT_BY_MAX_OCTETS
878     if (hci_is_le_connection(connection) && (connection->le_max_tx_octets < max_acl_data_packet_length)){
879         max_acl_data_packet_length = connection->le_max_tx_octets;
880     }
881 #endif
882 
883     log_debug("hci_send_acl_packet_fragments entered");
884 
885     uint8_t status = ERROR_CODE_SUCCESS;
886     // multiple packets could be send on a synchronous HCI transport
887     while (true){
888 
889         log_debug("hci_send_acl_packet_fragments loop entered");
890 
891         // get current data
892         const uint16_t acl_header_pos = hci_stack->acl_fragmentation_pos - 4u;
893         int current_acl_data_packet_length = hci_stack->acl_fragmentation_total_size - hci_stack->acl_fragmentation_pos;
894         bool more_fragments = false;
895 
896         // if ACL packet is larger than Bluetooth packet buffer, only send max_acl_data_packet_length
897         if (current_acl_data_packet_length > max_acl_data_packet_length){
898             more_fragments = true;
899             current_acl_data_packet_length = max_acl_data_packet_length & (~(HCI_ACL_CHUNK_SIZE_ALIGNMENT-1));
900         }
901 
902         // copy handle_and_flags if not first fragment and update packet boundary flags to be 01 (continuing fragmnent)
903         if (acl_header_pos > 0u){
904             uint16_t handle_and_flags = little_endian_read_16(hci_stack->hci_packet_buffer, 0);
905             handle_and_flags = (handle_and_flags & 0xcfffu) | (1u << 12u);
906             little_endian_store_16(hci_stack->hci_packet_buffer, acl_header_pos, handle_and_flags);
907         }
908 
909         // update header len
910         little_endian_store_16(hci_stack->hci_packet_buffer, acl_header_pos + 2u, current_acl_data_packet_length);
911 
912         // count packet
913         connection->num_packets_sent++;
914         log_debug("hci_send_acl_packet_fragments loop before send (more fragments %d)", (int) more_fragments);
915 
916         // update state for next fragment (if any) as "transport done" might be sent during send_packet already
917         if (more_fragments){
918             // update start of next fragment to send
919             hci_stack->acl_fragmentation_pos += current_acl_data_packet_length;
920         } else {
921             // done
922             hci_stack->acl_fragmentation_pos = 0;
923             hci_stack->acl_fragmentation_total_size = 0;
924         }
925 
926         // send packet
927         uint8_t * packet = &hci_stack->hci_packet_buffer[acl_header_pos];
928         const int size = current_acl_data_packet_length + 4;
929         hci_dump_packet(HCI_ACL_DATA_PACKET, 0, packet, size);
930         hci_stack->acl_fragmentation_tx_active = 1;
931         int err = hci_stack->hci_transport->send_packet(HCI_ACL_DATA_PACKET, packet, size);
932         if (err != 0){
933             // no error from HCI Transport expected
934             status = ERROR_CODE_HARDWARE_FAILURE;
935         }
936 
937 #ifdef ENABLE_CONTROLLER_DUMP_PACKETS
938         hci_controller_dump_packets();
939 #endif
940 
941         log_debug("hci_send_acl_packet_fragments loop after send (more fragments %d)", (int) more_fragments);
942 
943         // done yet?
944         if (!more_fragments) break;
945 
946         // can send more?
947         if (!hci_can_send_prepared_acl_packet_now(connection->con_handle)) return status;
948     }
949 
950     log_debug("hci_send_acl_packet_fragments loop over");
951 
952     // release buffer now for synchronous transport
953     if (hci_transport_synchronous()){
954         hci_stack->acl_fragmentation_tx_active = 0;
955         hci_release_packet_buffer();
956         hci_emit_transport_packet_sent();
957     }
958 
959     return status;
960 }
961 
962 // pre: caller has reserved the packet buffer
963 uint8_t hci_send_acl_packet_buffer(int size){
964     btstack_assert(hci_stack->hci_packet_buffer_reserved);
965 
966     uint8_t * packet = hci_stack->hci_packet_buffer;
967     hci_con_handle_t con_handle = READ_ACL_CONNECTION_HANDLE(packet);
968 
969     hci_connection_t *connection = hci_connection_for_handle( con_handle);
970     if (!connection) {
971         log_error("hci_send_acl_packet_buffer called but no connection for handle 0x%04x", con_handle);
972         hci_release_packet_buffer();
973         hci_emit_transport_packet_sent();
974         return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
975     }
976 
977     // check for free places on Bluetooth module
978     if (!hci_can_send_prepared_acl_packet_now(con_handle)) {
979         log_error("hci_send_acl_packet_buffer called but no free ACL buffers on controller");
980         hci_release_packet_buffer();
981         hci_emit_transport_packet_sent();
982         return BTSTACK_ACL_BUFFERS_FULL;
983     }
984 
985 #ifdef ENABLE_CLASSIC
986     hci_connection_timestamp(connection);
987 #endif
988 
989     // hci_dump_packet( HCI_ACL_DATA_PACKET, 0, packet, size);
990 
991     // setup data
992     hci_stack->acl_fragmentation_total_size = size;
993     hci_stack->acl_fragmentation_pos = 4;   // start of L2CAP packet
994 
995     return hci_send_acl_packet_fragments(connection);
996 }
997 
998 #ifdef ENABLE_CLASSIC
999 // pre: caller has reserved the packet buffer
1000 uint8_t hci_send_sco_packet_buffer(int size){
1001     btstack_assert(hci_stack->hci_packet_buffer_reserved);
1002 
1003     uint8_t * packet = hci_stack->hci_packet_buffer;
1004 
1005     // skip checks in loopback mode
1006     if (!hci_stack->loopback_mode){
1007         hci_con_handle_t con_handle = READ_ACL_CONNECTION_HANDLE(packet);   // same for ACL and SCO
1008 
1009         // check for free places on Bluetooth module
1010         if (!hci_can_send_prepared_sco_packet_now()) {
1011             log_error("hci_send_sco_packet_buffer called but no free SCO buffers on controller");
1012             hci_release_packet_buffer();
1013             hci_emit_transport_packet_sent();
1014             return BTSTACK_ACL_BUFFERS_FULL;
1015         }
1016 
1017         // track send packet in connection struct
1018         hci_connection_t *connection = hci_connection_for_handle( con_handle);
1019         if (!connection) {
1020             log_error("hci_send_sco_packet_buffer called but no connection for handle 0x%04x", con_handle);
1021             hci_release_packet_buffer();
1022             hci_emit_transport_packet_sent();
1023             return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
1024         }
1025 
1026         if (hci_have_usb_transport()){
1027             // token used
1028             hci_stack->sco_can_send_now = false;
1029         } else {
1030             if (hci_stack->synchronous_flow_control_enabled){
1031                 connection->num_packets_sent++;
1032             } else {
1033                 connection->sco_tx_ready--;
1034             }
1035         }
1036     }
1037 
1038     hci_dump_packet( HCI_SCO_DATA_PACKET, 0, packet, size);
1039 
1040 #ifdef HAVE_SCO_TRANSPORT
1041     hci_stack->sco_transport->send_packet(packet, size);
1042     hci_release_packet_buffer();
1043     hci_emit_transport_packet_sent();
1044 
1045     return 0;
1046 #else
1047     int err = hci_stack->hci_transport->send_packet(HCI_SCO_DATA_PACKET, packet, size);
1048     if (hci_transport_synchronous()){
1049         hci_release_packet_buffer();
1050         hci_emit_transport_packet_sent();
1051     }
1052 
1053     if (err != 0){
1054         return ERROR_CODE_HARDWARE_FAILURE;
1055     }
1056     return ERROR_CODE_SUCCESS;
1057 #endif
1058 }
1059 #endif
1060 
1061 #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
1062 static uint8_t hci_send_iso_packet_fragments(void){
1063 
1064     uint16_t max_iso_data_packet_length = hci_stack->le_iso_packets_length;
1065     uint8_t status = ERROR_CODE_SUCCESS;
1066     // multiple packets could be send on a synchronous HCI transport
1067     while (true){
1068 
1069         // get current data
1070         const uint16_t iso_header_pos = hci_stack->iso_fragmentation_pos - 4u;
1071         int current_iso_data_packet_length = hci_stack->iso_fragmentation_total_size - hci_stack->iso_fragmentation_pos;
1072         bool more_fragments = false;
1073 
1074         // if ISO packet is larger than Bluetooth packet buffer, only send max_acl_data_packet_length
1075         if (current_iso_data_packet_length > max_iso_data_packet_length){
1076             more_fragments = true;
1077             current_iso_data_packet_length = max_iso_data_packet_length;
1078         }
1079 
1080         // copy handle_and_flags if not first fragment and update packet boundary flags to be 01 (continuing fragmnent)
1081         uint16_t handle_and_flags = little_endian_read_16(hci_stack->hci_packet_buffer, 0);
1082         uint8_t pb_flags;
1083         if (iso_header_pos == 0u){
1084             // first fragment, keep TS field
1085             pb_flags = more_fragments ? 0x00 : 0x02;
1086             handle_and_flags = (handle_and_flags & 0x4fffu) | (pb_flags << 12u);
1087         } else {
1088             // later fragment, drop TS field
1089             pb_flags = more_fragments ? 0x01 : 0x03;
1090             handle_and_flags = (handle_and_flags & 0x0fffu) | (pb_flags << 12u);
1091         }
1092         little_endian_store_16(hci_stack->hci_packet_buffer, iso_header_pos, handle_and_flags);
1093 
1094         // update header len
1095         little_endian_store_16(hci_stack->hci_packet_buffer, iso_header_pos + 2u, current_iso_data_packet_length);
1096 
1097         // update state for next fragment (if any) as "transport done" might be sent during send_packet already
1098         if (more_fragments){
1099             // update start of next fragment to send
1100             hci_stack->iso_fragmentation_pos += current_iso_data_packet_length;
1101         } else {
1102             // done
1103             hci_stack->iso_fragmentation_pos = 0;
1104             hci_stack->iso_fragmentation_total_size = 0;
1105         }
1106 
1107         // send packet
1108         uint8_t * packet = &hci_stack->hci_packet_buffer[iso_header_pos];
1109         const int size = current_iso_data_packet_length + 4;
1110         hci_dump_packet(HCI_ISO_DATA_PACKET, 0, packet, size);
1111         hci_stack->iso_fragmentation_tx_active = true;
1112         int err = hci_stack->hci_transport->send_packet(HCI_ISO_DATA_PACKET, packet, size);
1113         if (err != 0){
1114             // no error from HCI Transport expected
1115             status = ERROR_CODE_HARDWARE_FAILURE;
1116         }
1117 
1118         // done yet?
1119         if (!more_fragments) break;
1120 
1121         // can send more?
1122         if (!hci_transport_can_send_prepared_packet_now(HCI_ISO_DATA_PACKET)) return false;
1123     }
1124 
1125     // release buffer now for synchronous transport
1126     if (hci_transport_synchronous()){
1127         hci_stack->iso_fragmentation_tx_active = false;
1128         hci_release_packet_buffer();
1129         hci_emit_transport_packet_sent();
1130     }
1131 
1132     return status;
1133 }
1134 
1135 uint8_t hci_send_iso_packet_buffer(uint16_t size){
1136     btstack_assert(hci_stack->hci_packet_buffer_reserved);
1137 
1138     hci_con_handle_t con_handle = (hci_con_handle_t) little_endian_read_16(hci_stack->hci_packet_buffer, 0) & 0xfff;
1139     hci_iso_stream_t * iso_stream = hci_iso_stream_for_con_handle(con_handle);
1140     if (iso_stream == NULL){
1141         hci_release_packet_buffer();
1142         hci_iso_notify_can_send_now();
1143         return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
1144     }
1145 
1146     // TODO: check for space on controller
1147 
1148     // skip iso packets if needed
1149     if (iso_stream->num_packets_to_skip > 0){
1150         iso_stream->num_packets_to_skip--;
1151         // pretend it was processed and trigger next one
1152         hci_release_packet_buffer();
1153         hci_iso_notify_can_send_now();
1154         return ERROR_CODE_SUCCESS;
1155     }
1156 
1157     // track outgoing packet sent
1158     log_info("Outgoing ISO packet for con handle 0x%04x", con_handle);
1159     iso_stream->num_packets_sent++;
1160 
1161     // setup data
1162     hci_stack->iso_fragmentation_total_size = size;
1163     hci_stack->iso_fragmentation_pos = 4;   // start of L2CAP packet
1164 
1165     return hci_send_iso_packet_fragments();
1166 }
1167 #endif
1168 
1169 static void acl_handler(uint8_t *packet, uint16_t size){
1170 
1171     // get info
1172     hci_con_handle_t con_handle = READ_ACL_CONNECTION_HANDLE(packet);
1173     hci_connection_t *conn      = hci_connection_for_handle(con_handle);
1174     uint8_t  acl_flags          = READ_ACL_FLAGS(packet);
1175     uint16_t acl_length         = READ_ACL_LENGTH(packet);
1176 
1177     // ignore non-registered handle
1178     if (!conn){
1179         log_error("acl_handler called with non-registered handle %u!" , con_handle);
1180         return;
1181     }
1182 
1183     // assert packet is complete
1184     if ((acl_length + 4u) != size){
1185         log_error("acl_handler called with ACL packet of wrong size %d, expected %u => dropping packet", size, acl_length + 4);
1186         return;
1187     }
1188 
1189 #ifdef ENABLE_CLASSIC
1190     // update idle timestamp
1191     hci_connection_timestamp(conn);
1192 #endif
1193 
1194 #ifdef ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL
1195     hci_stack->host_completed_packets = 1;
1196     conn->num_packets_completed++;
1197 #endif
1198 
1199     // handle different packet types
1200     switch (acl_flags & 0x03u) {
1201 
1202         case 0x01: // continuation fragment
1203 
1204             // sanity checks
1205             if (conn->acl_recombination_pos == 0u) {
1206                 log_error( "ACL Cont Fragment but no first fragment for handle 0x%02x", con_handle);
1207                 return;
1208             }
1209             if ((conn->acl_recombination_pos + acl_length) > (4u + HCI_ACL_BUFFER_SIZE)){
1210                 log_error( "ACL Cont Fragment to large: combined packet %u > buffer size %u for handle 0x%02x",
1211                     conn->acl_recombination_pos + acl_length, 4 + HCI_ACL_BUFFER_SIZE, con_handle);
1212                 conn->acl_recombination_pos = 0;
1213                 return;
1214             }
1215 
1216             // append fragment payload (header already stored)
1217             (void)memcpy(&conn->acl_recombination_buffer[HCI_INCOMING_PRE_BUFFER_SIZE + conn->acl_recombination_pos],
1218                          &packet[4], acl_length);
1219             conn->acl_recombination_pos += acl_length;
1220 
1221             // forward complete L2CAP packet if complete.
1222             if (conn->acl_recombination_pos >= (conn->acl_recombination_length + 4u + 4u)){ // pos already incl. ACL header
1223                 hci_emit_acl_packet(&conn->acl_recombination_buffer[HCI_INCOMING_PRE_BUFFER_SIZE], conn->acl_recombination_pos);
1224                 // reset recombination buffer
1225                 conn->acl_recombination_length = 0;
1226                 conn->acl_recombination_pos = 0;
1227             }
1228             break;
1229 
1230         case 0x02: { // first fragment
1231 
1232             // sanity check
1233             if (conn->acl_recombination_pos) {
1234                 // we just received the first fragment, but still have data. Only warn if the packet wasn't a flushable packet
1235                 if ((conn->acl_recombination_buffer[HCI_INCOMING_PRE_BUFFER_SIZE+1] >> 4) != 0x02){
1236                     log_error( "ACL First Fragment but %u bytes in buffer for handle 0x%02x, dropping stale fragments", conn->acl_recombination_pos, con_handle);
1237                 }
1238                 conn->acl_recombination_pos = 0;
1239             }
1240 
1241             // peek into L2CAP packet!
1242             uint16_t l2cap_length = READ_L2CAP_LENGTH( packet );
1243 
1244             // compare fragment size to L2CAP packet size
1245             if (acl_length >= (l2cap_length + 4u)){
1246                 // forward fragment as L2CAP packet
1247                 hci_emit_acl_packet(packet, acl_length + 4u);
1248             } else {
1249 
1250                 if (acl_length > HCI_ACL_BUFFER_SIZE){
1251                     log_error( "ACL First Fragment to large: fragment %u > buffer size %u for handle 0x%02x",
1252                         4 + acl_length, 4 + HCI_ACL_BUFFER_SIZE, con_handle);
1253                     return;
1254                 }
1255 
1256                 // store first fragment and tweak acl length for complete package
1257                 (void)memcpy(&conn->acl_recombination_buffer[HCI_INCOMING_PRE_BUFFER_SIZE],
1258                              packet, acl_length + 4u);
1259                 conn->acl_recombination_pos    = acl_length + 4u;
1260                 conn->acl_recombination_length = l2cap_length;
1261                 little_endian_store_16(conn->acl_recombination_buffer, HCI_INCOMING_PRE_BUFFER_SIZE + 2u, l2cap_length +4u);
1262             }
1263             break;
1264 
1265         }
1266         default:
1267             log_error( "acl_handler called with invalid packet boundary flags %u", acl_flags & 0x03);
1268             return;
1269     }
1270 
1271     // execute main loop
1272     hci_run();
1273 }
1274 
1275 static void hci_connection_stop_timer(hci_connection_t * conn){
1276     btstack_run_loop_remove_timer(&conn->timeout);
1277 #ifdef ENABLE_CLASSIC
1278     btstack_run_loop_remove_timer(&conn->timeout_sco);
1279 #endif
1280 }
1281 
1282 static void hci_shutdown_connection(hci_connection_t *conn){
1283     log_info("Connection closed: handle 0x%x, %s", conn->con_handle, bd_addr_to_str(conn->address));
1284 
1285 #ifdef ENABLE_CLASSIC
1286 #if defined(ENABLE_SCO_OVER_HCI) || defined(HAVE_SCO_TRANSPORT)
1287     bd_addr_type_t addr_type = conn->address_type;
1288 #endif
1289 #ifdef HAVE_SCO_TRANSPORT
1290     hci_con_handle_t con_handle = conn->con_handle;
1291 #endif
1292 #endif
1293 
1294     hci_connection_stop_timer(conn);
1295 
1296     btstack_linked_list_remove(&hci_stack->connections, (btstack_linked_item_t *) conn);
1297     btstack_memory_hci_connection_free( conn );
1298 
1299     // now it's gone
1300     hci_emit_nr_connections_changed();
1301 
1302 #ifdef ENABLE_CLASSIC
1303 #ifdef ENABLE_SCO_OVER_HCI
1304     // update SCO
1305     if ((addr_type == BD_ADDR_TYPE_SCO) && (hci_stack->hci_transport != NULL) && (hci_stack->hci_transport->set_sco_config != NULL)){
1306         hci_stack->hci_transport->set_sco_config(hci_stack->sco_voice_setting_active, hci_number_sco_connections());
1307     }
1308 #endif
1309 #ifdef HAVE_SCO_TRANSPORT
1310     if ((addr_type == BD_ADDR_TYPE_SCO) && (hci_stack->sco_transport != NULL)){
1311         hci_stack->sco_transport->close(con_handle);
1312     }
1313 #endif
1314 #endif
1315 }
1316 
1317 #ifdef ENABLE_CLASSIC
1318 
1319 static const uint16_t hci_acl_packet_type_sizes[] = {
1320     0, HCI_ACL_2DH1_SIZE, HCI_ACL_3DH1_SIZE, HCI_ACL_DM1_SIZE,
1321     HCI_ACL_DH1_SIZE, 0, 0, 0,
1322     HCI_ACL_2DH3_SIZE, HCI_ACL_3DH3_SIZE, HCI_ACL_DM3_SIZE, HCI_ACL_DH3_SIZE,
1323     HCI_ACL_2DH5_SIZE, HCI_ACL_3DH5_SIZE, HCI_ACL_DM5_SIZE, HCI_ACL_DH5_SIZE
1324 };
1325 static const uint8_t hci_acl_packet_type_feature_requirement_bit[] = {
1326      0, // 3 slot packets
1327      1, // 5 slot packets
1328     25, // EDR 2 mpbs
1329     26, // EDR 3 mbps
1330     39, // 3 slot EDR packts
1331     40, // 5 slot EDR packet
1332 };
1333 static const uint16_t hci_acl_packet_type_feature_packet_mask[] = {
1334     0x0f00, // 3 slot packets
1335     0xf000, // 5 slot packets
1336     0x1102, // EDR 2 mpbs
1337     0x2204, // EDR 3 mbps
1338     0x0300, // 3 slot EDR packts
1339     0x3000, // 5 slot EDR packet
1340 };
1341 
1342 static uint16_t hci_acl_packet_types_for_buffer_size_and_local_features(uint16_t buffer_size, uint8_t * local_supported_features){
1343     // enable packet types based on size
1344     uint16_t packet_types = 0;
1345     unsigned int i;
1346     for (i=0;i<16;i++){
1347         if (hci_acl_packet_type_sizes[i] == 0) continue;
1348         if (hci_acl_packet_type_sizes[i] <= buffer_size){
1349             packet_types |= 1 << i;
1350         }
1351     }
1352     // disable packet types due to missing local supported features
1353     for (i=0;i<sizeof(hci_acl_packet_type_feature_requirement_bit); i++){
1354         unsigned int bit_idx = hci_acl_packet_type_feature_requirement_bit[i];
1355         int feature_set = (local_supported_features[bit_idx >> 3] & (1<<(bit_idx & 7))) != 0;
1356         if (feature_set) continue;
1357         log_info("Features bit %02u is not set, removing packet types 0x%04x", bit_idx, hci_acl_packet_type_feature_packet_mask[i]);
1358         packet_types &= ~hci_acl_packet_type_feature_packet_mask[i];
1359     }
1360     return packet_types;
1361 }
1362 
1363 uint16_t hci_usable_acl_packet_types(void){
1364     // flip bits for "may not be used"
1365     return hci_stack->usable_packet_types_acl ^ 0x3306;
1366 }
1367 
1368 static const struct {
1369     uint8_t feature_index;
1370     uint16_t feature_packet_mask;
1371 } hci_sco_packet_type_feature_requirements[] = {
1372         { 12, SCO_PACKET_TYPES_HV2 },                           // HV2 packets
1373         { 13, SCO_PACKET_TYPES_HV3 },                           // HV3 packets
1374         { 31, SCO_PACKET_TYPES_ESCO },                          // eSCO links (EV3 packets)
1375         { 32, SCO_PACKET_TYPES_EV4 },                           // EV4 packets
1376         { 45, SCO_PACKET_TYPES_2EV3 | SCO_PACKET_TYPES_2EV5 },  // EDR eSCO 2 Mb/s
1377         { 46, SCO_PACKET_TYPES_3EV3 | SCO_PACKET_TYPES_3EV5 },  // EDR eSCO 3 Mb/s
1378         { 47, SCO_PACKET_TYPES_2EV5 | SCO_PACKET_TYPES_3EV5 },  // 3-slot EDR eSCO packets, 2-EV3/3-EV3 use single slot
1379 };
1380 
1381 static uint16_t hci_sco_packet_types_for_features(const uint8_t * local_supported_features){
1382     uint16_t packet_types = SCO_PACKET_TYPES_ALL;
1383     unsigned int i;
1384     // disable packet types due to missing local supported features
1385     for (i=0;i<(sizeof(hci_sco_packet_type_feature_requirements)/sizeof(hci_sco_packet_type_feature_requirements[0])); i++){
1386         unsigned int bit_idx = hci_sco_packet_type_feature_requirements[i].feature_index;
1387         bool feature_set = (local_supported_features[bit_idx >> 3] & (1<<(bit_idx & 7))) != 0;
1388         if (feature_set) continue;
1389         log_info("Features bit %02u is not set, removing packet types 0x%04x", bit_idx, hci_sco_packet_type_feature_requirements[i].feature_packet_mask);
1390         packet_types &= ~hci_sco_packet_type_feature_requirements[i].feature_packet_mask;
1391     }
1392     return packet_types;
1393 }
1394 
1395 uint16_t hci_usable_sco_packet_types(void){
1396     return hci_stack->usable_packet_types_sco;
1397 }
1398 
1399 #endif
1400 
1401 uint8_t* hci_get_outgoing_packet_buffer(void){
1402     // hci packet buffer is >= acl data packet length
1403     return hci_stack->hci_packet_buffer;
1404 }
1405 
1406 uint16_t hci_max_acl_data_packet_length(void){
1407     return hci_stack->acl_data_packet_length;
1408 }
1409 
1410 #ifdef ENABLE_CLASSIC
1411 bool hci_extended_sco_link_supported(void){
1412     // No. 31, byte 3, bit 7
1413     return (hci_stack->local_supported_features[3] & (1 << 7)) != 0;
1414 }
1415 #endif
1416 
1417 bool hci_non_flushable_packet_boundary_flag_supported(void){
1418     // No. 54, byte 6, bit 6
1419     return (hci_stack->local_supported_features[6u] & (1u << 6u)) != 0u;
1420 }
1421 
1422 #ifdef ENABLE_CLASSIC
1423 static int gap_ssp_supported(void){
1424     // No. 51, byte 6, bit 3
1425     return (hci_stack->local_supported_features[6u] & (1u << 3u)) != 0u;
1426 }
1427 #endif
1428 
1429 static int hci_classic_supported(void){
1430 #ifdef ENABLE_CLASSIC
1431     // No. 37, byte 4, bit 5, = No BR/EDR Support
1432     return (hci_stack->local_supported_features[4] & (1 << 5)) == 0;
1433 #else
1434     return 0;
1435 #endif
1436 }
1437 
1438 static int hci_le_supported(void){
1439 #ifdef ENABLE_BLE
1440     // No. 37, byte 4, bit 6 = LE Supported (Controller)
1441     return (hci_stack->local_supported_features[4u] & (1u << 6u)) != 0u;
1442 #else
1443     return 0;
1444 #endif
1445 }
1446 
1447 static bool hci_command_supported(uint8_t command_index){
1448     return (hci_stack->local_supported_commands & (1LU << command_index)) != 0;
1449 }
1450 
1451 #ifdef ENABLE_BLE
1452 
1453 #ifdef ENABLE_LE_EXTENDED_ADVERTISING
1454 static bool hci_extended_advertising_supported(void){
1455     return hci_command_supported(SUPPORTED_HCI_COMMAND_LE_SET_EXTENDED_ADVERTISING_ENABLE);
1456 }
1457 #endif
1458 
1459 static void hci_get_own_address_for_addr_type(uint8_t own_addr_type, bd_addr_t own_addr){
1460     if (own_addr_type == BD_ADDR_TYPE_LE_PUBLIC){
1461         (void)memcpy(own_addr, hci_stack->local_bd_addr, 6);
1462     } else {
1463         (void)memcpy(own_addr, hci_stack->le_random_address, 6);
1464     }
1465 }
1466 
1467 void gap_le_get_own_address(uint8_t * addr_type, bd_addr_t addr){
1468     *addr_type = hci_stack->le_own_addr_type;
1469     hci_get_own_address_for_addr_type(hci_stack->le_own_addr_type, addr);
1470 }
1471 
1472 #ifdef ENABLE_LE_PERIPHERAL
1473 void gap_le_get_own_advertisements_address(uint8_t * addr_type, bd_addr_t addr){
1474     *addr_type = hci_stack->le_advertisements_own_addr_type;
1475     hci_get_own_address_for_addr_type(hci_stack->le_advertisements_own_addr_type, addr);
1476 };
1477 #endif
1478 
1479 #ifdef ENABLE_LE_CENTRAL
1480 
1481 /**
1482  * @brief Get own addr type and address used for LE connections (Central)
1483  */
1484 void gap_le_get_own_connection_address(uint8_t * addr_type, bd_addr_t addr){
1485     *addr_type = hci_stack->le_connection_own_addr_type;
1486     hci_get_own_address_for_addr_type(hci_stack->le_connection_own_addr_type, addr);
1487 }
1488 
1489 void le_handle_advertisement_report(uint8_t *packet, uint16_t size){
1490 
1491     uint16_t offset = 3;
1492     uint8_t num_reports = packet[offset];
1493     offset += 1;
1494 
1495     uint16_t i;
1496     uint8_t event[12 + LE_ADVERTISING_DATA_SIZE]; // use upper bound to avoid var size automatic var
1497     for (i=0; (i<num_reports) && (offset < size);i++){
1498         // sanity checks on data_length:
1499         uint8_t data_length = packet[offset + 8];
1500         if (data_length > LE_ADVERTISING_DATA_SIZE) return;
1501         if ((offset + 9u + data_length + 1u) > size)    return;
1502         // setup event
1503         uint8_t event_size = 10u + data_length;
1504         uint16_t pos = 0;
1505         event[pos++] = GAP_EVENT_ADVERTISING_REPORT;
1506         event[pos++] = event_size;
1507         (void)memcpy(&event[pos], &packet[offset], 1 + 1 + 6); // event type + address type + address
1508         offset += 8;
1509         pos += 8;
1510         event[pos++] = packet[offset + 1 + data_length]; // rssi
1511         event[pos++] = data_length;
1512         offset++;
1513         (void)memcpy(&event[pos], &packet[offset], data_length);
1514         pos +=    data_length;
1515         offset += data_length + 1u; // rssi
1516         hci_emit_event(event, pos, 1);
1517     }
1518 }
1519 
1520 #ifdef ENABLE_LE_EXTENDED_ADVERTISING
1521 void le_handle_extended_advertisement_report(uint8_t *packet, uint16_t size) {
1522     uint16_t offset = 3;
1523     uint8_t num_reports = packet[offset++];
1524     uint8_t event[2 + 255]; // use upper bound to avoid var size automatic var
1525     uint8_t i;
1526     for (i=0; (i<num_reports) && (offset < size);i++){
1527         // sanity checks on data_length:
1528         uint16_t data_length = packet[offset + 23];
1529         if (data_length > LE_EXTENDED_ADVERTISING_DATA_SIZE) return;
1530         if ((offset + 24u + data_length) > size)    return;
1531         uint16_t event_type = little_endian_read_16(packet, offset);
1532         offset += 2;
1533         if ((event_type & 0x10) != 0) {
1534            // setup legacy event
1535             uint8_t legacy_event_type;
1536             switch (event_type){
1537                 case 0b0010011:
1538                     // ADV_IND
1539                     legacy_event_type = 0;
1540                     break;
1541                 case 0b0010101:
1542                     // ADV_DIRECT_IND
1543                     legacy_event_type = 1;
1544                     break;
1545                 case 0b0010010:
1546                     // ADV_SCAN_IND
1547                     legacy_event_type = 2;
1548                     break;
1549                 case 0b0010000:
1550                     // ADV_NONCONN_IND
1551                     legacy_event_type = 3;
1552                     break;
1553                 case 0b0011011:
1554                 case 0b0011010:
1555                     // SCAN_RSP
1556                     legacy_event_type = 4;
1557                     break;
1558                 default:
1559                     legacy_event_type = 0;
1560                     break;
1561             }
1562             uint16_t pos = 0;
1563             event[pos++] = GAP_EVENT_ADVERTISING_REPORT;
1564             event[pos++] = 10u + data_length;
1565             event[pos++] = legacy_event_type;
1566             // copy address type + address
1567             (void) memcpy(&event[pos], &packet[offset], 1 + 6);
1568             offset += 7;
1569             pos += 7;
1570             // skip primary_phy, secondary_phy, advertising_sid, tx_power
1571             offset += 4;
1572             // copy rssi
1573             event[pos++] = packet[offset++];
1574             // skip periodic advertising interval and direct address
1575             offset += 9;
1576             // copy data len + data;
1577             (void) memcpy(&event[pos], &packet[offset], 1 + data_length);
1578             pos    += 1 +data_length;
1579             offset += 1+ data_length;
1580             hci_emit_event(event, pos, 1);
1581         } else {
1582             event[0] = GAP_EVENT_EXTENDED_ADVERTISING_REPORT;
1583             uint8_t report_len = 24 + data_length;
1584             event[1] = report_len;
1585             little_endian_store_16(event, 2, event_type);
1586             memcpy(&event[4], &packet[offset], report_len);
1587             offset += report_len;
1588             hci_emit_event(event, 2 + report_len, 1);
1589         }
1590     }
1591 }
1592 #endif
1593 
1594 #endif
1595 #endif
1596 
1597 #ifdef ENABLE_BLE
1598 #ifdef ENABLE_LE_PERIPHERAL
1599 static void hci_update_advertisements_enabled_for_current_roles(void){
1600     if ((hci_stack->le_advertisements_state & LE_ADVERTISEMENT_STATE_ENABLED) != 0){
1601         // get number of active le slave connections
1602         int num_slave_connections = 0;
1603         btstack_linked_list_iterator_t it;
1604         btstack_linked_list_iterator_init(&it, &hci_stack->connections);
1605         while (btstack_linked_list_iterator_has_next(&it)){
1606             hci_connection_t * con = (hci_connection_t*) btstack_linked_list_iterator_next(&it);
1607             log_info("state %u, role %u, le_con %u", con->state, con->role, hci_is_le_connection(con));
1608             if (con->state != OPEN) continue;
1609             if (con->role  != HCI_ROLE_SLAVE) continue;
1610             if (!hci_is_le_connection(con)) continue;
1611             num_slave_connections++;
1612         }
1613         log_info("Num LE Peripheral roles: %u of %u", num_slave_connections, hci_stack->le_max_number_peripheral_connections);
1614         hci_stack->le_advertisements_enabled_for_current_roles = num_slave_connections < hci_stack->le_max_number_peripheral_connections;
1615     } else {
1616         hci_stack->le_advertisements_enabled_for_current_roles = false;
1617     }
1618 }
1619 #endif
1620 #endif
1621 
1622 #ifdef ENABLE_CLASSIC
1623 static void gap_run_set_local_name(void){
1624     hci_reserve_packet_buffer();
1625     uint8_t * packet = hci_stack->hci_packet_buffer;
1626     // construct HCI Command and send
1627     uint16_t opcode = hci_write_local_name.opcode;
1628     hci_stack->last_cmd_opcode = opcode;
1629     packet[0] = opcode & 0xff;
1630     packet[1] = opcode >> 8;
1631     packet[2] = DEVICE_NAME_LEN;
1632     memset(&packet[3], 0, DEVICE_NAME_LEN);
1633     uint16_t name_len = (uint16_t) strlen(hci_stack->local_name);
1634     uint16_t bytes_to_copy = btstack_min(name_len, DEVICE_NAME_LEN);
1635     // if shorter than DEVICE_NAME_LEN, it's implicitly NULL-terminated by memset call
1636     (void)memcpy(&packet[3], hci_stack->local_name, bytes_to_copy);
1637     // expand '00:00:00:00:00:00' in name with bd_addr
1638     btstack_replace_bd_addr_placeholder(&packet[3], bytes_to_copy, hci_stack->local_bd_addr);
1639     hci_send_cmd_packet(packet, HCI_CMD_HEADER_SIZE + DEVICE_NAME_LEN);
1640 }
1641 
1642 static void gap_run_set_eir_data(void){
1643     hci_reserve_packet_buffer();
1644     uint8_t * packet = hci_stack->hci_packet_buffer;
1645     // construct HCI Command in-place and send
1646     uint16_t opcode = hci_write_extended_inquiry_response.opcode;
1647     hci_stack->last_cmd_opcode = opcode;
1648     uint16_t offset = 0;
1649     packet[offset++] = opcode & 0xff;
1650     packet[offset++] = opcode >> 8;
1651     packet[offset++] = 1 + EXTENDED_INQUIRY_RESPONSE_DATA_LEN;
1652     packet[offset++] = 0;  // FEC not required
1653     memset(&packet[offset], 0, EXTENDED_INQUIRY_RESPONSE_DATA_LEN);
1654     if (hci_stack->eir_data){
1655         // copy items and expand '00:00:00:00:00:00' in name with bd_addr
1656         ad_context_t context;
1657         for (ad_iterator_init(&context, EXTENDED_INQUIRY_RESPONSE_DATA_LEN, hci_stack->eir_data) ; ad_iterator_has_more(&context) ; ad_iterator_next(&context)) {
1658             uint8_t data_type   = ad_iterator_get_data_type(&context);
1659             uint8_t size        = ad_iterator_get_data_len(&context);
1660             const uint8_t *data = ad_iterator_get_data(&context);
1661             // copy item
1662             packet[offset++] = size + 1;
1663             packet[offset++] = data_type;
1664             memcpy(&packet[offset], data, size);
1665             // update name item
1666             if ((data_type == BLUETOOTH_DATA_TYPE_SHORTENED_LOCAL_NAME) || (data_type == BLUETOOTH_DATA_TYPE_COMPLETE_LOCAL_NAME)){
1667                 btstack_replace_bd_addr_placeholder(&packet[offset], size, hci_stack->local_bd_addr);
1668             }
1669             offset += size;
1670         }
1671     } else {
1672         uint16_t name_len = (uint16_t) strlen(hci_stack->local_name);
1673         uint16_t bytes_to_copy = btstack_min(name_len, EXTENDED_INQUIRY_RESPONSE_DATA_LEN - 2);
1674         packet[offset++] = bytes_to_copy + 1;
1675         packet[offset++] = BLUETOOTH_DATA_TYPE_COMPLETE_LOCAL_NAME;
1676         (void)memcpy(&packet[6], hci_stack->local_name, bytes_to_copy);
1677         // expand '00:00:00:00:00:00' in name with bd_addr
1678         btstack_replace_bd_addr_placeholder(&packet[offset], bytes_to_copy, hci_stack->local_bd_addr);
1679     }
1680     hci_send_cmd_packet(packet, HCI_CMD_HEADER_SIZE + 1 + EXTENDED_INQUIRY_RESPONSE_DATA_LEN);
1681 }
1682 
1683 static void hci_run_gap_tasks_classic(void){
1684     if ((hci_stack->gap_tasks_classic & GAP_TASK_SET_CLASS_OF_DEVICE) != 0) {
1685         hci_stack->gap_tasks_classic &= ~GAP_TASK_SET_CLASS_OF_DEVICE;
1686         hci_send_cmd(&hci_write_class_of_device, hci_stack->class_of_device);
1687         return;
1688     }
1689     if ((hci_stack->gap_tasks_classic & GAP_TASK_SET_LOCAL_NAME) != 0) {
1690         hci_stack->gap_tasks_classic &= ~GAP_TASK_SET_LOCAL_NAME;
1691         gap_run_set_local_name();
1692         return;
1693     }
1694     if ((hci_stack->gap_tasks_classic & GAP_TASK_SET_EIR_DATA) != 0) {
1695         hci_stack->gap_tasks_classic &= ~GAP_TASK_SET_EIR_DATA;
1696         gap_run_set_eir_data();
1697         return;
1698     }
1699     if ((hci_stack->gap_tasks_classic & GAP_TASK_SET_DEFAULT_LINK_POLICY) != 0) {
1700         hci_stack->gap_tasks_classic &= ~GAP_TASK_SET_DEFAULT_LINK_POLICY;
1701         hci_send_cmd(&hci_write_default_link_policy_setting, hci_stack->default_link_policy_settings);
1702         return;
1703     }
1704     // write page scan activity
1705     if ((hci_stack->gap_tasks_classic & GAP_TASK_WRITE_PAGE_SCAN_ACTIVITY) != 0) {
1706         hci_stack->gap_tasks_classic &= ~GAP_TASK_WRITE_PAGE_SCAN_ACTIVITY;
1707         hci_send_cmd(&hci_write_page_scan_activity, hci_stack->new_page_scan_interval, hci_stack->new_page_scan_window);
1708         return;
1709     }
1710     // write page scan type
1711     if ((hci_stack->gap_tasks_classic & GAP_TASK_WRITE_PAGE_SCAN_TYPE) != 0) {
1712         hci_stack->gap_tasks_classic &= ~GAP_TASK_WRITE_PAGE_SCAN_TYPE;
1713         hci_send_cmd(&hci_write_page_scan_type, hci_stack->new_page_scan_type);
1714         return;
1715     }
1716     // write page timeout
1717     if ((hci_stack->gap_tasks_classic & GAP_TASK_WRITE_PAGE_TIMEOUT) != 0) {
1718         hci_stack->gap_tasks_classic &= ~GAP_TASK_WRITE_PAGE_TIMEOUT;
1719         hci_send_cmd(&hci_write_page_timeout, hci_stack->page_timeout);
1720         return;
1721     }
1722     // send scan enable
1723     if ((hci_stack->gap_tasks_classic & GAP_TASK_WRITE_SCAN_ENABLE) != 0) {
1724         hci_stack->gap_tasks_classic &= ~GAP_TASK_WRITE_SCAN_ENABLE;
1725         hci_send_cmd(&hci_write_scan_enable, hci_stack->new_scan_enable_value);
1726         return;
1727     }
1728     // send write scan activity
1729     if ((hci_stack->gap_tasks_classic & GAP_TASK_WRITE_INQUIRY_SCAN_ACTIVITY) != 0) {
1730         hci_stack->gap_tasks_classic &= ~GAP_TASK_WRITE_INQUIRY_SCAN_ACTIVITY;
1731         hci_send_cmd(&hci_write_inquiry_scan_activity, hci_stack->inquiry_scan_interval, hci_stack->inquiry_scan_window);
1732         return;
1733     }
1734     // send write inquiry transmit power level
1735     if ((hci_stack->gap_tasks_classic & GAP_TASK_WRITE_INQUIRY_TX_POWER_LEVEL) != 0) {
1736         hci_stack->gap_tasks_classic &= ~GAP_TASK_WRITE_INQUIRY_TX_POWER_LEVEL;
1737         hci_send_cmd(&hci_write_inquiry_transmit_power_level, hci_stack->inquiry_tx_power_level);
1738         return;
1739     }
1740 }
1741 #endif
1742 
1743 #ifndef HAVE_HOST_CONTROLLER_API
1744 
1745 static uint32_t hci_transport_uart_get_main_baud_rate(void){
1746     if (!hci_stack->config) return 0;
1747     uint32_t baud_rate = ((hci_transport_config_uart_t *)hci_stack->config)->baudrate_main;
1748     // Limit baud rate for Broadcom chipsets to 3 mbps
1749     if ((hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_BROADCOM_CORPORATION) && (baud_rate > 3000000)){
1750         baud_rate = 3000000;
1751     }
1752     return baud_rate;
1753 }
1754 
1755 static void hci_initialization_timeout_handler(btstack_timer_source_t * ds){
1756     UNUSED(ds);
1757 
1758     switch (hci_stack->substate){
1759         case HCI_INIT_W4_SEND_RESET:
1760             log_info("Resend HCI Reset");
1761             hci_stack->substate = HCI_INIT_SEND_RESET;
1762             hci_stack->num_cmd_packets = 1;
1763             hci_run();
1764             break;
1765         case HCI_INIT_W4_CUSTOM_INIT_CSR_WARM_BOOT_LINK_RESET:
1766             log_info("Resend HCI Reset - CSR Warm Boot with Link Reset");
1767             if (hci_stack->hci_transport->reset_link){
1768                 hci_stack->hci_transport->reset_link();
1769             }
1770 
1771             /* fall through */
1772 
1773         case HCI_INIT_W4_CUSTOM_INIT_CSR_WARM_BOOT:
1774             log_info("Resend HCI Reset - CSR Warm Boot");
1775             hci_stack->substate = HCI_INIT_SEND_RESET_CSR_WARM_BOOT;
1776             hci_stack->num_cmd_packets = 1;
1777             hci_run();
1778             break;
1779         case HCI_INIT_W4_SEND_BAUD_CHANGE:
1780             if (hci_stack->hci_transport->set_baudrate){
1781                 uint32_t baud_rate = hci_transport_uart_get_main_baud_rate();
1782                 log_info("Local baud rate change to %" PRIu32 "(timeout handler)", baud_rate);
1783                 hci_stack->hci_transport->set_baudrate(baud_rate);
1784             }
1785             // For CSR, HCI Reset is sent on new baud rate. Don't forget to reset link for H5/BCSP
1786             if (hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_CAMBRIDGE_SILICON_RADIO){
1787                 if (hci_stack->hci_transport->reset_link){
1788                     log_info("Link Reset");
1789                     hci_stack->hci_transport->reset_link();
1790                 }
1791                 hci_stack->substate = HCI_INIT_SEND_RESET_CSR_WARM_BOOT;
1792                 hci_run();
1793             }
1794             break;
1795         case HCI_INIT_W4_CUSTOM_INIT_BCM_DELAY:
1796             // otherwise continue
1797             hci_stack->substate = HCI_INIT_W4_READ_LOCAL_SUPPORTED_COMMANDS;
1798             hci_send_cmd(&hci_read_local_supported_commands);
1799             break;
1800         default:
1801             break;
1802     }
1803 }
1804 #endif
1805 
1806 static void hci_initializing_next_state(void){
1807     hci_stack->substate = (hci_substate_t )( ((int) hci_stack->substate) + 1);
1808 }
1809 
1810 static void hci_init_done(void){
1811     // done. tell the app
1812     log_info("hci_init_done -> HCI_STATE_WORKING");
1813     hci_stack->state = HCI_STATE_WORKING;
1814     hci_emit_state();
1815 }
1816 
1817 // assumption: hci_can_send_command_packet_now() == true
1818 static void hci_initializing_run(void){
1819     log_debug("hci_initializing_run: substate %u, can send %u", hci_stack->substate, hci_can_send_command_packet_now());
1820 
1821     if (!hci_can_send_command_packet_now()) return;
1822 
1823 #ifndef HAVE_HOST_CONTROLLER_API
1824     bool need_baud_change = hci_stack->config
1825             && hci_stack->chipset
1826             && hci_stack->chipset->set_baudrate_command
1827             && hci_stack->hci_transport->set_baudrate
1828             && ((hci_transport_config_uart_t *)hci_stack->config)->baudrate_main;
1829 #endif
1830 
1831     switch (hci_stack->substate){
1832         case HCI_INIT_SEND_RESET:
1833             hci_state_reset();
1834 
1835 #ifndef HAVE_HOST_CONTROLLER_API
1836             // prepare reset if command complete not received in 100ms
1837             btstack_run_loop_set_timer(&hci_stack->timeout, HCI_RESET_RESEND_TIMEOUT_MS);
1838             btstack_run_loop_set_timer_handler(&hci_stack->timeout, hci_initialization_timeout_handler);
1839             btstack_run_loop_add_timer(&hci_stack->timeout);
1840 #endif
1841             // send command
1842             hci_stack->substate = HCI_INIT_W4_SEND_RESET;
1843             hci_send_cmd(&hci_reset);
1844             break;
1845         case HCI_INIT_SEND_READ_LOCAL_VERSION_INFORMATION:
1846             hci_send_cmd(&hci_read_local_version_information);
1847             hci_stack->substate = HCI_INIT_W4_SEND_READ_LOCAL_VERSION_INFORMATION;
1848             break;
1849 
1850 #ifndef HAVE_HOST_CONTROLLER_API
1851         case HCI_INIT_SEND_RESET_CSR_WARM_BOOT:
1852             hci_state_reset();
1853             // prepare reset if command complete not received in 100ms
1854             btstack_run_loop_set_timer(&hci_stack->timeout, HCI_RESET_RESEND_TIMEOUT_MS);
1855             btstack_run_loop_set_timer_handler(&hci_stack->timeout, hci_initialization_timeout_handler);
1856             btstack_run_loop_add_timer(&hci_stack->timeout);
1857             // send command
1858             hci_stack->substate = HCI_INIT_W4_CUSTOM_INIT_CSR_WARM_BOOT;
1859             hci_send_cmd(&hci_reset);
1860             break;
1861         case HCI_INIT_SEND_RESET_ST_WARM_BOOT:
1862             hci_state_reset();
1863             hci_stack->substate = HCI_INIT_W4_SEND_RESET_ST_WARM_BOOT;
1864             hci_send_cmd(&hci_reset);
1865             break;
1866         case HCI_INIT_SEND_BAUD_CHANGE_BCM: {
1867             uint32_t baud_rate = hci_transport_uart_get_main_baud_rate();
1868             hci_stack->chipset->set_baudrate_command(baud_rate, hci_stack->hci_packet_buffer);
1869             hci_stack->last_cmd_opcode = little_endian_read_16(hci_stack->hci_packet_buffer, 0);
1870             hci_stack->substate = HCI_INIT_W4_SEND_BAUD_CHANGE_BCM;
1871             hci_send_cmd_packet(hci_stack->hci_packet_buffer, 3u + hci_stack->hci_packet_buffer[2u]);
1872             break;
1873         }
1874         case HCI_INIT_SET_BD_ADDR:
1875             log_info("Set Public BD ADDR to %s", bd_addr_to_str(hci_stack->custom_bd_addr));
1876             hci_stack->chipset->set_bd_addr_command(hci_stack->custom_bd_addr, hci_stack->hci_packet_buffer);
1877             hci_stack->last_cmd_opcode = little_endian_read_16(hci_stack->hci_packet_buffer, 0);
1878             hci_stack->substate = HCI_INIT_W4_SET_BD_ADDR;
1879             hci_send_cmd_packet(hci_stack->hci_packet_buffer, 3u + hci_stack->hci_packet_buffer[2u]);
1880             break;
1881         case HCI_INIT_SEND_READ_LOCAL_NAME:
1882 #ifdef ENABLE_CLASSIC
1883             hci_send_cmd(&hci_read_local_name);
1884             hci_stack->substate = HCI_INIT_W4_SEND_READ_LOCAL_NAME;
1885             break;
1886 #endif
1887             /* fall through */
1888 
1889         case HCI_INIT_SEND_BAUD_CHANGE:
1890             if (need_baud_change) {
1891                 uint32_t baud_rate = hci_transport_uart_get_main_baud_rate();
1892                 hci_stack->chipset->set_baudrate_command(baud_rate, hci_stack->hci_packet_buffer);
1893                 hci_stack->last_cmd_opcode = little_endian_read_16(hci_stack->hci_packet_buffer, 0);
1894                 hci_stack->substate = HCI_INIT_W4_SEND_BAUD_CHANGE;
1895                 hci_send_cmd_packet(hci_stack->hci_packet_buffer, 3u + hci_stack->hci_packet_buffer[2u]);
1896                 // STLC25000D: baudrate change happens within 0.5 s after command was send,
1897                 // use timer to update baud rate after 100 ms (knowing exactly, when command was sent is non-trivial)
1898                 if (hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_ST_MICROELECTRONICS){
1899                     btstack_run_loop_set_timer(&hci_stack->timeout, HCI_RESET_RESEND_TIMEOUT_MS);
1900                     btstack_run_loop_add_timer(&hci_stack->timeout);
1901                }
1902                break;
1903             }
1904             hci_stack->substate = HCI_INIT_CUSTOM_INIT;
1905 
1906             /* fall through */
1907 
1908         case HCI_INIT_CUSTOM_INIT:
1909         case HCI_INIT_CUSTOM_PRE_INIT:
1910             // Custom initialization
1911             if (hci_stack->chipset && hci_stack->chipset->next_command){
1912                 hci_stack->chipset_result = (*hci_stack->chipset->next_command)(hci_stack->hci_packet_buffer);
1913                 bool send_cmd = false;
1914                 switch (hci_stack->chipset_result){
1915                     case BTSTACK_CHIPSET_VALID_COMMAND:
1916                         send_cmd = true;
1917                         switch (hci_stack->substate){
1918                             case HCI_INIT_CUSTOM_INIT:
1919                                 hci_stack->substate = HCI_INIT_W4_CUSTOM_INIT;
1920                                 break;
1921                             case HCI_INIT_CUSTOM_PRE_INIT:
1922                                 hci_stack->substate = HCI_INIT_W4_CUSTOM_PRE_INIT;
1923                                 break;
1924                             default:
1925                                 btstack_assert(false);
1926                                 break;
1927                         }
1928                         break;
1929                     case BTSTACK_CHIPSET_WARMSTART_REQUIRED:
1930                         send_cmd = true;
1931                         // CSR Warm Boot: Wait a bit, then send HCI Reset until HCI Command Complete
1932                         log_info("CSR Warm Boot");
1933                         btstack_run_loop_set_timer(&hci_stack->timeout, HCI_RESET_RESEND_TIMEOUT_MS);
1934                         btstack_run_loop_set_timer_handler(&hci_stack->timeout, hci_initialization_timeout_handler);
1935                         btstack_run_loop_add_timer(&hci_stack->timeout);
1936                         if ((hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_CAMBRIDGE_SILICON_RADIO)
1937                             && hci_stack->config
1938                             && hci_stack->chipset
1939                             // && hci_stack->chipset->set_baudrate_command -- there's no such command
1940                             && hci_stack->hci_transport->set_baudrate
1941                             && hci_transport_uart_get_main_baud_rate()){
1942                             hci_stack->substate = HCI_INIT_W4_SEND_BAUD_CHANGE;
1943                         } else {
1944                            hci_stack->substate = HCI_INIT_W4_CUSTOM_INIT_CSR_WARM_BOOT_LINK_RESET;
1945                         }
1946                         break;
1947                     default:
1948                         break;
1949                 }
1950 
1951                 if (send_cmd){
1952                     int size = 3u + hci_stack->hci_packet_buffer[2u];
1953                     hci_stack->last_cmd_opcode = little_endian_read_16(hci_stack->hci_packet_buffer, 0);
1954                     hci_dump_packet(HCI_COMMAND_DATA_PACKET, 0, hci_stack->hci_packet_buffer, size);
1955                     hci_stack->hci_transport->send_packet(HCI_COMMAND_DATA_PACKET, hci_stack->hci_packet_buffer, size);
1956                     break;
1957                 }
1958                 log_info("Init script done");
1959 
1960                 // Custom Pre-Init complete, start regular init with HCI Reset
1961                 if (hci_stack->substate == HCI_INIT_CUSTOM_PRE_INIT){
1962                     hci_stack->substate = HCI_INIT_W4_SEND_RESET;
1963                     hci_send_cmd(&hci_reset);
1964                     break;
1965                 }
1966 
1967                 // Init script download on Broadcom chipsets causes:
1968                 if ( (hci_stack->chipset_result != BTSTACK_CHIPSET_NO_INIT_SCRIPT) &&
1969                    (  (hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_BROADCOM_CORPORATION)
1970                 ||    (hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_EM_MICROELECTRONIC_MARIN_SA)) ){
1971 
1972                     // - baud rate to reset, restore UART baud rate if needed
1973                     if (need_baud_change) {
1974                         uint32_t baud_rate = ((hci_transport_config_uart_t *)hci_stack->config)->baudrate_init;
1975                         log_info("Local baud rate change to %" PRIu32 " after init script (bcm)", baud_rate);
1976                         hci_stack->hci_transport->set_baudrate(baud_rate);
1977                     }
1978 
1979                     uint16_t bcm_delay_ms = 300;
1980                     // - UART may or may not be disabled during update and Controller RTS may or may not be high during this time
1981                     //   -> Work around: wait here.
1982                     log_info("BCM delay (%u ms) after init script", bcm_delay_ms);
1983                     hci_stack->substate = HCI_INIT_W4_CUSTOM_INIT_BCM_DELAY;
1984                     btstack_run_loop_set_timer(&hci_stack->timeout, bcm_delay_ms);
1985                     btstack_run_loop_set_timer_handler(&hci_stack->timeout, hci_initialization_timeout_handler);
1986                     btstack_run_loop_add_timer(&hci_stack->timeout);
1987                     break;
1988                 }
1989             }
1990 #endif
1991             /* fall through */
1992 
1993         case HCI_INIT_READ_LOCAL_SUPPORTED_COMMANDS:
1994             hci_stack->substate = HCI_INIT_W4_READ_LOCAL_SUPPORTED_COMMANDS;
1995             hci_send_cmd(&hci_read_local_supported_commands);
1996             break;
1997         case HCI_INIT_READ_BD_ADDR:
1998             hci_stack->substate = HCI_INIT_W4_READ_BD_ADDR;
1999             hci_send_cmd(&hci_read_bd_addr);
2000             break;
2001         case HCI_INIT_READ_BUFFER_SIZE:
2002             // only read buffer size if supported
2003             if (hci_command_supported(SUPPORTED_HCI_COMMAND_READ_BUFFER_SIZE)){
2004                 hci_stack->substate = HCI_INIT_W4_READ_BUFFER_SIZE;
2005                 hci_send_cmd(&hci_read_buffer_size);
2006                 break;
2007             }
2008 
2009             /* fall through */
2010 
2011         case HCI_INIT_READ_LOCAL_SUPPORTED_FEATURES:
2012             hci_stack->substate = HCI_INIT_W4_READ_LOCAL_SUPPORTED_FEATURES;
2013             hci_send_cmd(&hci_read_local_supported_features);
2014             break;
2015 
2016 #ifdef ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL
2017         case HCI_INIT_SET_CONTROLLER_TO_HOST_FLOW_CONTROL:
2018             hci_stack->substate = HCI_INIT_W4_SET_CONTROLLER_TO_HOST_FLOW_CONTROL;
2019             hci_send_cmd(&hci_set_controller_to_host_flow_control, 3);  // ACL + SCO Flow Control
2020             break;
2021         case HCI_INIT_HOST_BUFFER_SIZE:
2022             hci_stack->substate = HCI_INIT_W4_HOST_BUFFER_SIZE;
2023             hci_send_cmd(&hci_host_buffer_size, HCI_HOST_ACL_PACKET_LEN, HCI_HOST_SCO_PACKET_LEN,
2024                                                 HCI_HOST_ACL_PACKET_NUM, HCI_HOST_SCO_PACKET_NUM);
2025             break;
2026 #endif
2027 
2028         case HCI_INIT_SET_EVENT_MASK:
2029             hci_stack->substate = HCI_INIT_W4_SET_EVENT_MASK;
2030             if (hci_le_supported()){
2031                 hci_send_cmd(&hci_set_event_mask,0xFFFFFFFFU, 0x3FFFFFFFU);
2032             } else {
2033                 // Kensington Bluetooth 2.1 USB Dongle (CSR Chipset) returns an error for 0xffff...
2034                 hci_send_cmd(&hci_set_event_mask,0xFFFFFFFFU, 0x1FFFFFFFU);
2035             }
2036             break;
2037 
2038         case HCI_INIT_SET_EVENT_MASK_2:
2039             // On Bluettooth PTS dongle (BL 654) with PacketCraft HCI Firmware (LMP subversion) 0x5244,
2040             // setting Event Mask 2 causes Controller to drop Encryption Change events.
2041             if (hci_command_supported(SUPPORTED_HCI_COMMAND_SET_EVENT_MASK_PAGE_2)
2042             && (hci_stack->manufacturer != BLUETOOTH_COMPANY_ID_PACKETCRAFT_INC)){
2043                 hci_stack->substate = HCI_INIT_W4_SET_EVENT_MASK_2;
2044                 // Encryption Change Event v2 - bit 25
2045                 hci_send_cmd(&hci_set_event_mask_2,0x02000000U, 0x0);
2046                 break;
2047             }
2048 
2049 #ifdef ENABLE_CLASSIC
2050             /* fall through */
2051 
2052         case HCI_INIT_WRITE_SIMPLE_PAIRING_MODE:
2053             if (hci_classic_supported() && gap_ssp_supported()){
2054                 hci_stack->substate = HCI_INIT_W4_WRITE_SIMPLE_PAIRING_MODE;
2055                 hci_send_cmd(&hci_write_simple_pairing_mode, hci_stack->ssp_enable);
2056                 break;
2057             }
2058 
2059             /* fall through */
2060 
2061         case HCI_INIT_WRITE_INQUIRY_MODE:
2062             if (hci_classic_supported()){
2063                 hci_stack->substate = HCI_INIT_W4_WRITE_INQUIRY_MODE;
2064                 hci_send_cmd(&hci_write_inquiry_mode, (int) hci_stack->inquiry_mode);
2065                 break;
2066             }
2067 
2068             /* fall through */
2069 
2070         case HCI_INIT_WRITE_SECURE_CONNECTIONS_HOST_ENABLE:
2071             // skip write secure connections host support if not supported or disabled
2072             if (hci_classic_supported() && hci_stack->secure_connections_enable
2073             && hci_command_supported(SUPPORTED_HCI_COMMAND_WRITE_SECURE_CONNECTIONS_HOST)) {
2074                 hci_stack->secure_connections_active = true;
2075                 hci_stack->substate = HCI_INIT_W4_WRITE_SECURE_CONNECTIONS_HOST_ENABLE;
2076                 hci_send_cmd(&hci_write_secure_connections_host_support, 1);
2077                 break;
2078             }
2079 
2080             /* fall through */
2081 
2082         case HCI_INIT_SET_MIN_ENCRYPTION_KEY_SIZE:
2083             // skip set min encryption key size
2084             if (hci_classic_supported() && hci_command_supported(SUPPORTED_HCI_COMMAND_SET_MIN_ENCRYPTION_KEY_SIZE)) {
2085                 hci_stack->substate = HCI_INIT_W4_SET_MIN_ENCRYPTION_KEY_SIZE;
2086                 hci_send_cmd(&hci_set_min_encryption_key_size, hci_stack->gap_required_encyrption_key_size);
2087                 break;
2088             }
2089 
2090 #ifdef ENABLE_SCO_OVER_HCI
2091             /* fall through */
2092 
2093         // only sent if ENABLE_SCO_OVER_HCI is defined
2094         case HCI_INIT_WRITE_SYNCHRONOUS_FLOW_CONTROL_ENABLE:
2095             // skip write synchronous flow control if not supported
2096             if (hci_classic_supported()
2097             && hci_command_supported(SUPPORTED_HCI_COMMAND_WRITE_SYNCHRONOUS_FLOW_CONTROL_ENABLE)) {
2098                 hci_stack->substate = HCI_INIT_W4_WRITE_SYNCHRONOUS_FLOW_CONTROL_ENABLE;
2099                 hci_send_cmd(&hci_write_synchronous_flow_control_enable, 1); // SCO tracking enabled
2100                 break;
2101             }
2102             /* fall through */
2103 
2104         case HCI_INIT_WRITE_DEFAULT_ERRONEOUS_DATA_REPORTING:
2105             // skip write default erroneous data reporting if not supported
2106             if (hci_classic_supported()
2107             && hci_command_supported(SUPPORTED_HCI_COMMAND_WRITE_DEFAULT_ERRONEOUS_DATA_REPORTING)) {
2108                 hci_stack->substate = HCI_INIT_W4_WRITE_DEFAULT_ERRONEOUS_DATA_REPORTING;
2109                 hci_send_cmd(&hci_write_default_erroneous_data_reporting, 1);
2110                 break;
2111             }
2112 #endif
2113 
2114 #if defined(ENABLE_SCO_OVER_HCI) || defined(ENABLE_SCO_OVER_PCM)
2115             /* fall through */
2116 
2117         // only sent if manufacturer is Broadcom and ENABLE_SCO_OVER_HCI or ENABLE_SCO_OVER_PCM is defined
2118         case HCI_INIT_BCM_WRITE_SCO_PCM_INT:
2119             if (hci_classic_supported() && (hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_BROADCOM_CORPORATION)){
2120                 hci_stack->substate = HCI_INIT_W4_BCM_WRITE_SCO_PCM_INT;
2121 #ifdef ENABLE_SCO_OVER_HCI
2122                 log_info("BCM: Route SCO data via HCI transport");
2123                 hci_send_cmd(&hci_bcm_write_sco_pcm_int, 1, 0, 0, 0, 0);
2124 #endif
2125 #ifdef ENABLE_SCO_OVER_PCM
2126                 log_info("BCM: Route SCO data via PCM interface");
2127 #ifdef ENABLE_BCM_PCM_WBS
2128                 // 512 kHz bit clock for 2 channels x 16 bit x 16 kHz
2129                 hci_send_cmd(&hci_bcm_write_sco_pcm_int, 0, 2, 0, 1, 1);
2130 #else
2131                 // 256 kHz bit clock for 2 channels x 16 bit x 8 kHz
2132                 hci_send_cmd(&hci_bcm_write_sco_pcm_int, 0, 1, 0, 1, 1);
2133 #endif
2134 #endif
2135                 break;
2136             }
2137 #endif
2138 
2139 #ifdef ENABLE_SCO_OVER_PCM
2140             /* fall through */
2141 
2142         case HCI_INIT_BCM_WRITE_I2SPCM_INTERFACE_PARAM:
2143             if (hci_classic_supported() && (hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_BROADCOM_CORPORATION)){
2144                 hci_stack->substate = HCI_INIT_W4_BCM_WRITE_I2SPCM_INTERFACE_PARAM;
2145                 log_info("BCM: Config PCM interface for I2S");
2146 #ifdef ENABLE_BCM_PCM_WBS
2147                 // 512 kHz bit clock for 2 channels x 16 bit x 8 kHz
2148                 hci_send_cmd(&hci_bcm_write_i2spcm_interface_param, 1, 1, 0, 2);
2149 #else
2150                 // 256 kHz bit clock for 2 channels x 16 bit x 8 kHz
2151                 hci_send_cmd(&hci_bcm_write_i2spcm_interface_param, 1, 1, 0, 1);
2152 #endif
2153                 break;
2154             }
2155 #endif
2156 #endif
2157 
2158 #ifdef ENABLE_BLE
2159             /* fall through */
2160 
2161         // LE INIT
2162         case HCI_INIT_LE_READ_BUFFER_SIZE:
2163             if (hci_le_supported()){
2164                 hci_stack->substate = HCI_INIT_W4_LE_READ_BUFFER_SIZE;
2165                 if (hci_command_supported(SUPPORTED_HCI_COMMAND_LE_READ_BUFFER_SIZE_V2)){
2166                     hci_send_cmd(&hci_le_read_buffer_size_v2);
2167                 } else {
2168                     hci_send_cmd(&hci_le_read_buffer_size);
2169                 }
2170                 break;
2171             }
2172 
2173             /* fall through */
2174 
2175         case HCI_INIT_WRITE_LE_HOST_SUPPORTED:
2176             // skip write le host if not supported (e.g. on LE only EM9301)
2177             if (hci_le_supported()
2178             && hci_command_supported(SUPPORTED_HCI_COMMAND_WRITE_LE_HOST_SUPPORTED)) {
2179                 // LE Supported Host = 1, Simultaneous Host = 0
2180                 hci_stack->substate = HCI_INIT_W4_WRITE_LE_HOST_SUPPORTED;
2181                 hci_send_cmd(&hci_write_le_host_supported, 1, 0);
2182                 break;
2183             }
2184 
2185             /* fall through */
2186 
2187         case HCI_INIT_LE_SET_EVENT_MASK:
2188             if (hci_le_supported()){
2189                 hci_stack->substate = HCI_INIT_W4_LE_SET_EVENT_MASK;
2190                 hci_send_cmd(&hci_le_set_event_mask, 0xfffffdff, 0x07); // all events from core v5.3 without LE Enhanced Connection Complete
2191                 break;
2192             }
2193 #endif
2194 
2195 #ifdef ENABLE_LE_DATA_LENGTH_EXTENSION
2196             /* fall through */
2197 
2198         case HCI_INIT_LE_READ_MAX_DATA_LENGTH:
2199             if (hci_le_supported()
2200             && hci_command_supported(SUPPORTED_HCI_COMMAND_LE_READ_MAXIMUM_DATA_LENGTH)) {
2201                 hci_stack->substate = HCI_INIT_W4_LE_READ_MAX_DATA_LENGTH;
2202                 hci_send_cmd(&hci_le_read_maximum_data_length);
2203                 break;
2204             }
2205 
2206             /* fall through */
2207 
2208         case HCI_INIT_LE_WRITE_SUGGESTED_DATA_LENGTH:
2209             if (hci_le_supported()
2210             && hci_command_supported(SUPPORTED_HCI_COMMAND_LE_WRITE_SUGGESTED_DEFAULT_DATA_LENGTH)) {
2211                 hci_stack->substate = HCI_INIT_W4_LE_WRITE_SUGGESTED_DATA_LENGTH;
2212                 hci_send_cmd(&hci_le_write_suggested_default_data_length, hci_stack->le_supported_max_tx_octets, hci_stack->le_supported_max_tx_time);
2213                 break;
2214             }
2215 #endif
2216 
2217 #ifdef ENABLE_LE_CENTRAL
2218             /* fall through */
2219 
2220         case HCI_INIT_READ_WHITE_LIST_SIZE:
2221             if (hci_le_supported()){
2222                 hci_stack->substate = HCI_INIT_W4_READ_WHITE_LIST_SIZE;
2223                 hci_send_cmd(&hci_le_read_white_list_size);
2224                 break;
2225             }
2226 
2227 #endif
2228 
2229 #ifdef ENABLE_LE_PERIPHERAL
2230 #ifdef ENABLE_LE_EXTENDED_ADVERTISING
2231             /* fall through */
2232 
2233         case HCI_INIT_LE_READ_MAX_ADV_DATA_LEN:
2234             if (hci_extended_advertising_supported()){
2235                 hci_stack->substate = HCI_INIT_W4_LE_READ_MAX_ADV_DATA_LEN;
2236                 hci_send_cmd(&hci_le_read_maximum_advertising_data_length);
2237                 break;
2238             }
2239 #endif
2240 #endif
2241             /* fall through */
2242 
2243 #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
2244     case HCI_INIT_LE_SET_HOST_FEATURE_CONNECTED_ISO_STREAMS:
2245             if (hci_le_supported()) {
2246                 hci_stack->substate = HCI_INIT_W4_LE_SET_HOST_FEATURE_CONNECTED_ISO_STREAMS;
2247                 hci_send_cmd(&hci_le_set_host_feature, 32, 1);
2248                 break;
2249             }
2250 #endif
2251 
2252             /* fall through */
2253 
2254         case HCI_INIT_DONE:
2255             hci_stack->substate = HCI_INIT_DONE;
2256             // main init sequence complete
2257 #ifdef ENABLE_CLASSIC
2258             // check if initial Classic GAP Tasks are completed
2259             if (hci_classic_supported() && (hci_stack->gap_tasks_classic != 0)) {
2260                 hci_run_gap_tasks_classic();
2261                 break;
2262             }
2263 #endif
2264 #ifdef ENABLE_BLE
2265 #ifdef ENABLE_LE_CENTRAL
2266             // check if initial LE GAP Tasks are completed
2267             if (hci_le_supported() && hci_stack->le_scanning_param_update) {
2268                 hci_run_general_gap_le();
2269                 break;
2270             }
2271 #endif
2272 #endif
2273             hci_init_done();
2274             break;
2275 
2276         default:
2277             return;
2278     }
2279 }
2280 
2281 static bool hci_initializing_event_handler_command_completed(const uint8_t * packet){
2282     bool command_completed = false;
2283     if (hci_event_packet_get_type(packet) == HCI_EVENT_COMMAND_COMPLETE){
2284         uint16_t opcode = little_endian_read_16(packet,3);
2285         if (opcode == hci_stack->last_cmd_opcode){
2286             command_completed = true;
2287             log_debug("Command complete for expected opcode %04x at substate %u", opcode, hci_stack->substate);
2288         } else {
2289             log_info("Command complete for different opcode %04x, expected %04x, at substate %u", opcode, hci_stack->last_cmd_opcode, hci_stack->substate);
2290         }
2291     }
2292 
2293     if (hci_event_packet_get_type(packet) == HCI_EVENT_COMMAND_STATUS){
2294         uint8_t  status = packet[2];
2295         uint16_t opcode = little_endian_read_16(packet,4);
2296         if (opcode == hci_stack->last_cmd_opcode){
2297             if (status){
2298                 command_completed = true;
2299                 log_debug("Command status error 0x%02x for expected opcode %04x at substate %u", status, opcode, hci_stack->substate);
2300             } else {
2301                 log_info("Command status OK for expected opcode %04x, waiting for command complete", opcode);
2302             }
2303         } else {
2304             log_debug("Command status for opcode %04x, expected %04x", opcode, hci_stack->last_cmd_opcode);
2305         }
2306     }
2307 #ifndef HAVE_HOST_CONTROLLER_API
2308     // Vendor == CSR
2309     if ((hci_stack->substate == HCI_INIT_W4_CUSTOM_INIT) && (hci_event_packet_get_type(packet) == HCI_EVENT_VENDOR_SPECIFIC)){
2310         // TODO: track actual command
2311         command_completed = true;
2312     }
2313 
2314     // Vendor == Toshiba
2315     if ((hci_stack->substate == HCI_INIT_W4_SEND_BAUD_CHANGE) && (hci_event_packet_get_type(packet) == HCI_EVENT_VENDOR_SPECIFIC)){
2316         // TODO: track actual command
2317         command_completed = true;
2318         // Fix: no HCI Command Complete received, so num_cmd_packets not reset
2319         hci_stack->num_cmd_packets = 1;
2320     }
2321 #endif
2322 
2323     return command_completed;
2324 }
2325 
2326 static void hci_initializing_event_handler(const uint8_t * packet, uint16_t size){
2327 
2328     UNUSED(size);   // ok: less than 6 bytes are read from our buffer
2329 
2330     bool command_completed =  hci_initializing_event_handler_command_completed(packet);
2331 
2332 #ifndef HAVE_HOST_CONTROLLER_API
2333 
2334     // Late response (> 100 ms) for HCI Reset e.g. on Toshiba TC35661:
2335     // Command complete for HCI Reset arrives after we've resent the HCI Reset command
2336     //
2337     // HCI Reset
2338     // Timeout 100 ms
2339     // HCI Reset
2340     // Command Complete Reset
2341     // HCI Read Local Version Information
2342     // Command Complete Reset - but we expected Command Complete Read Local Version Information
2343     // hang...
2344     //
2345     // Fix: Command Complete for HCI Reset in HCI_INIT_W4_SEND_READ_LOCAL_VERSION_INFORMATION trigger resend
2346     if (!command_completed
2347             && (hci_event_packet_get_type(packet) == HCI_EVENT_COMMAND_COMPLETE)
2348             && (hci_stack->substate == HCI_INIT_W4_SEND_READ_LOCAL_VERSION_INFORMATION)){
2349 
2350         uint16_t opcode = little_endian_read_16(packet,3);
2351         if (opcode == hci_reset.opcode){
2352             hci_stack->substate = HCI_INIT_SEND_READ_LOCAL_VERSION_INFORMATION;
2353             return;
2354         }
2355     }
2356 
2357     // CSR & H5
2358     // Fix: Command Complete for HCI Reset in HCI_INIT_W4_SEND_READ_LOCAL_VERSION_INFORMATION trigger resend
2359     if (!command_completed
2360             && (hci_event_packet_get_type(packet) == HCI_EVENT_COMMAND_COMPLETE)
2361             && (hci_stack->substate == HCI_INIT_W4_READ_LOCAL_SUPPORTED_COMMANDS)){
2362 
2363         uint16_t opcode = little_endian_read_16(packet,3);
2364         if (opcode == hci_reset.opcode){
2365             hci_stack->substate = HCI_INIT_READ_LOCAL_SUPPORTED_COMMANDS;
2366             return;
2367         }
2368     }
2369 
2370     // on CSR with BCSP/H5, the reset resend timeout leads to substate == HCI_INIT_SEND_RESET or HCI_INIT_SEND_RESET_CSR_WARM_BOOT
2371     // fix: Correct substate and behave as command below
2372     if (command_completed){
2373         switch (hci_stack->substate){
2374             case HCI_INIT_SEND_RESET:
2375                 hci_stack->substate = HCI_INIT_W4_SEND_RESET;
2376                 break;
2377             case HCI_INIT_SEND_RESET_CSR_WARM_BOOT:
2378                 hci_stack->substate = HCI_INIT_W4_CUSTOM_INIT_CSR_WARM_BOOT;
2379                 break;
2380             default:
2381                 break;
2382         }
2383     }
2384 
2385 #endif
2386 
2387     if (!command_completed) return;
2388 
2389     bool need_baud_change = false;
2390     bool need_addr_change = false;
2391 
2392 #ifndef HAVE_HOST_CONTROLLER_API
2393     need_baud_change = hci_stack->config
2394                         && hci_stack->chipset
2395                         && hci_stack->chipset->set_baudrate_command
2396                         && hci_stack->hci_transport->set_baudrate
2397                         && ((hci_transport_config_uart_t *)hci_stack->config)->baudrate_main;
2398 
2399     need_addr_change = hci_stack->custom_bd_addr_set
2400                         && hci_stack->chipset
2401                         && hci_stack->chipset->set_bd_addr_command;
2402 #endif
2403 
2404     switch(hci_stack->substate){
2405 
2406 #ifndef HAVE_HOST_CONTROLLER_API
2407         case HCI_INIT_SEND_RESET:
2408             // on CSR with BCSP/H5, resend triggers resend of HCI Reset and leads to substate == HCI_INIT_SEND_RESET
2409             // fix: just correct substate and behave as command below
2410 
2411             /* fall through */
2412 #endif
2413 
2414         case HCI_INIT_W4_SEND_RESET:
2415             btstack_run_loop_remove_timer(&hci_stack->timeout);
2416             hci_stack->substate = HCI_INIT_SEND_READ_LOCAL_VERSION_INFORMATION;
2417             return;
2418 
2419 #ifndef HAVE_HOST_CONTROLLER_API
2420         case HCI_INIT_W4_SEND_BAUD_CHANGE:
2421             // for STLC2500D, baud rate change already happened.
2422             // for others, baud rate gets changed now
2423             if ((hci_stack->manufacturer != BLUETOOTH_COMPANY_ID_ST_MICROELECTRONICS) && need_baud_change){
2424                 uint32_t baud_rate = hci_transport_uart_get_main_baud_rate();
2425                 log_info("Local baud rate change to %" PRIu32 "(w4_send_baud_change)", baud_rate);
2426                 hci_stack->hci_transport->set_baudrate(baud_rate);
2427             }
2428             hci_stack->substate = HCI_INIT_CUSTOM_INIT;
2429             return;
2430         case HCI_INIT_W4_CUSTOM_INIT_CSR_WARM_BOOT:
2431             btstack_run_loop_remove_timer(&hci_stack->timeout);
2432             hci_stack->substate = HCI_INIT_CUSTOM_INIT;
2433             return;
2434         case HCI_INIT_W4_CUSTOM_INIT:
2435             // repeat custom init
2436             hci_stack->substate = HCI_INIT_CUSTOM_INIT;
2437             return;
2438         case HCI_INIT_W4_CUSTOM_PRE_INIT:
2439             // repeat custom init
2440             hci_stack->substate = HCI_INIT_CUSTOM_PRE_INIT;
2441             return;
2442 #endif
2443 
2444         case HCI_INIT_W4_READ_LOCAL_SUPPORTED_COMMANDS:
2445             if (need_baud_change && (hci_stack->chipset_result != BTSTACK_CHIPSET_NO_INIT_SCRIPT) &&
2446               ((hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_BROADCOM_CORPORATION) ||
2447                (hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_EM_MICROELECTRONIC_MARIN_SA))) {
2448                 hci_stack->substate = HCI_INIT_SEND_BAUD_CHANGE_BCM;
2449                 return;
2450             }
2451             if (need_addr_change){
2452                 hci_stack->substate = HCI_INIT_SET_BD_ADDR;
2453                 return;
2454             }
2455             hci_stack->substate = HCI_INIT_READ_BD_ADDR;
2456             return;
2457 #ifndef HAVE_HOST_CONTROLLER_API
2458         case HCI_INIT_W4_SEND_BAUD_CHANGE_BCM:
2459             if (need_baud_change){
2460                 uint32_t baud_rate = hci_transport_uart_get_main_baud_rate();
2461                 log_info("Local baud rate change to %" PRIu32 "(w4_send_baud_change_bcm))", baud_rate);
2462                 hci_stack->hci_transport->set_baudrate(baud_rate);
2463             }
2464             if (need_addr_change){
2465                 hci_stack->substate = HCI_INIT_SET_BD_ADDR;
2466                 return;
2467             }
2468             hci_stack->substate = HCI_INIT_READ_BD_ADDR;
2469             return;
2470         case HCI_INIT_W4_SET_BD_ADDR:
2471             // for STLC2500D + ATWILC3000, bd addr change only gets active after sending reset command
2472             if ((hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_ST_MICROELECTRONICS)
2473             ||  (hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_ATMEL_CORPORATION)){
2474                 hci_stack->substate = HCI_INIT_SEND_RESET_ST_WARM_BOOT;
2475                 return;
2476             }
2477             // skipping st warm boot
2478             hci_stack->substate = HCI_INIT_READ_BD_ADDR;
2479             return;
2480         case HCI_INIT_W4_SEND_RESET_ST_WARM_BOOT:
2481             hci_stack->substate = HCI_INIT_READ_BD_ADDR;
2482             return;
2483 #endif
2484 
2485         case HCI_INIT_DONE:
2486             // set state if we came here by fall through
2487             hci_stack->substate = HCI_INIT_DONE;
2488             return;
2489 
2490         default:
2491             break;
2492     }
2493     hci_initializing_next_state();
2494 }
2495 
2496 static void hci_handle_connection_failed(hci_connection_t * conn, uint8_t status){
2497     // CC2564C might emit Connection Complete for rejected incoming SCO connection
2498     // To prevent accidentally free'ing the HCI connection for the ACL connection,
2499     // check if we have been aware of the HCI connection
2500     switch (conn->state){
2501         case SENT_CREATE_CONNECTION:
2502         case RECEIVED_CONNECTION_REQUEST:
2503         case ACCEPTED_CONNECTION_REQUEST:
2504             break;
2505         default:
2506             return;
2507     }
2508 
2509     log_info("Outgoing connection to %s failed", bd_addr_to_str(conn->address));
2510     bd_addr_t bd_address;
2511     (void)memcpy(&bd_address, conn->address, 6);
2512 
2513 #ifdef ENABLE_CLASSIC
2514     // cache needed data
2515     int notify_dedicated_bonding_failed = conn->bonding_flags & BONDING_DEDICATED;
2516 #endif
2517 
2518     // connection failed, remove entry
2519     btstack_linked_list_remove(&hci_stack->connections, (btstack_linked_item_t *) conn);
2520     btstack_memory_hci_connection_free( conn );
2521 
2522 #ifdef ENABLE_CLASSIC
2523     // notify client if dedicated bonding
2524     if (notify_dedicated_bonding_failed){
2525         log_info("hci notify_dedicated_bonding_failed");
2526         hci_emit_dedicated_bonding_result(bd_address, status);
2527     }
2528 
2529     // if authentication error, also delete link key
2530     if (status == ERROR_CODE_AUTHENTICATION_FAILURE) {
2531         gap_drop_link_key_for_bd_addr(bd_address);
2532     }
2533 #else
2534     UNUSED(status);
2535 #endif
2536 }
2537 
2538 #ifdef ENABLE_CLASSIC
2539 static void hci_handle_remote_features_page_0(hci_connection_t * conn, const uint8_t * features){
2540     // SSP Controller
2541     if (features[6] & (1 << 3)){
2542         conn->bonding_flags |= BONDING_REMOTE_SUPPORTS_SSP_CONTROLLER;
2543     }
2544     // eSCO
2545     if (features[3] & (1<<7)){
2546         conn->remote_supported_features[0] |= 1;
2547     }
2548     // Extended features
2549     if (features[7] & (1<<7)){
2550         conn->remote_supported_features[0] |= 2;
2551     }
2552     // SCO packet types
2553     conn->remote_supported_sco_packets = hci_sco_packet_types_for_features(features);
2554 }
2555 
2556 static void hci_handle_remote_features_page_1(hci_connection_t * conn, const uint8_t * features){
2557     // SSP Host
2558     if (features[0] & (1 << 0)){
2559         conn->bonding_flags |= BONDING_REMOTE_SUPPORTS_SSP_HOST;
2560     }
2561     // SC Host
2562     if (features[0] & (1 << 3)){
2563         conn->bonding_flags |= BONDING_REMOTE_SUPPORTS_SC_HOST;
2564     }
2565 }
2566 
2567 static void hci_handle_remote_features_page_2(hci_connection_t * conn, const uint8_t * features){
2568     // SC Controller
2569     if (features[1] & (1 << 0)){
2570         conn->bonding_flags |= BONDING_REMOTE_SUPPORTS_SC_CONTROLLER;
2571     }
2572 }
2573 
2574 static void hci_handle_remote_features_received(hci_connection_t * conn){
2575     conn->bonding_flags &= ~BONDING_REMOTE_FEATURES_QUERY_ACTIVE;
2576     conn->bonding_flags |= BONDING_RECEIVED_REMOTE_FEATURES;
2577     log_info("Remote features %02x, bonding flags %" PRIx32, conn->remote_supported_features[0], conn->bonding_flags);
2578     if (conn->bonding_flags & BONDING_DEDICATED){
2579         conn->bonding_flags |= BONDING_SEND_AUTHENTICATE_REQUEST;
2580     }
2581 }
2582 static bool hci_remote_sc_enabled(hci_connection_t * connection){
2583     const uint16_t sc_enabled_mask = BONDING_REMOTE_SUPPORTS_SC_HOST | BONDING_REMOTE_SUPPORTS_SC_CONTROLLER;
2584     return (connection->bonding_flags & sc_enabled_mask) == sc_enabled_mask;
2585 }
2586 
2587 #endif
2588 
2589 static void handle_event_for_current_stack_state(const uint8_t * packet, uint16_t size) {
2590     // handle BT initialization
2591     if (hci_stack->state == HCI_STATE_INITIALIZING) {
2592         hci_initializing_event_handler(packet, size);
2593     }
2594 
2595     // help with BT sleep
2596     if ((hci_stack->state == HCI_STATE_FALLING_ASLEEP)
2597         && (hci_stack->substate == HCI_FALLING_ASLEEP_W4_WRITE_SCAN_ENABLE)
2598         && (hci_event_packet_get_type(packet) == HCI_EVENT_COMMAND_COMPLETE)
2599         && (hci_event_command_complete_get_command_opcode(packet) == HCI_OPCODE_HCI_WRITE_SCAN_ENABLE)){
2600         hci_initializing_next_state();
2601     }
2602 }
2603 
2604 #ifdef ENABLE_CLASSIC
2605 static void hci_handle_mutual_authentication_completed(hci_connection_t * conn){
2606     // bonding complete if connection is authenticated (either initiated or BR/EDR SC)
2607     conn->requested_security_level = LEVEL_0;
2608     gap_security_level_t security_level = gap_security_level_for_connection(conn);
2609     hci_emit_security_level(conn->con_handle, security_level);
2610 
2611     // dedicated bonding
2612     if ((conn->bonding_flags & BONDING_DEDICATED) != 0){
2613         conn->bonding_flags &= ~BONDING_DEDICATED;
2614         conn->bonding_status = security_level == 0 ? ERROR_CODE_INSUFFICIENT_SECURITY : ERROR_CODE_SUCCESS;
2615 #ifdef ENABLE_EXPLICIT_DEDICATED_BONDING_DISCONNECT
2616         // emit dedicated bonding complete, don't disconnect
2617         hci_emit_dedicated_bonding_result(conn->address, conn->bonding_status);
2618 #else
2619         // request disconnect, event is emitted after disconnect
2620         conn->bonding_flags |= BONDING_DISCONNECT_DEDICATED_DONE;
2621 #endif
2622     }
2623 }
2624 
2625 static void hci_handle_read_encryption_key_size_complete(hci_connection_t * conn, uint8_t encryption_key_size) {
2626     conn->authentication_flags |= AUTH_FLAG_CONNECTION_ENCRYPTED;
2627     conn->encryption_key_size = encryption_key_size;
2628 
2629     // mutual authentication complete if authenticated and we have retrieved the encryption key size
2630     if ((conn->authentication_flags & AUTH_FLAG_CONNECTION_AUTHENTICATED) != 0) {
2631         hci_handle_mutual_authentication_completed(conn);
2632     } else {
2633         // otherwise trigger remote feature request and send authentication request
2634         hci_trigger_remote_features_for_connection(conn);
2635         if ((conn->bonding_flags & BONDING_SENT_AUTHENTICATE_REQUEST) == 0) {
2636             conn->bonding_flags |= BONDING_SEND_AUTHENTICATE_REQUEST;
2637         }
2638     }
2639 }
2640 #endif
2641 
2642 static void hci_store_local_supported_commands(const uint8_t * packet){
2643     // create mapping table
2644 #define X(name, offset, bit) { offset, bit },
2645     static struct {
2646         uint8_t byte_offset;
2647         uint8_t bit_position;
2648     } supported_hci_commands_map [] = {
2649         SUPPORTED_HCI_COMMANDS
2650     };
2651 #undef X
2652 
2653     // create names for debug purposes
2654 #ifdef ENABLE_LOG_DEBUG
2655 #define X(name, offset, bit) #name,
2656     static const char * command_names[] = {
2657         SUPPORTED_HCI_COMMANDS
2658     };
2659 #undef X
2660 #endif
2661 
2662     hci_stack->local_supported_commands = 0;
2663     const uint8_t * commands_map = &packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE+1];
2664     uint16_t i;
2665     for (i = 0 ; i < SUPPORTED_HCI_COMMANDS_COUNT ; i++){
2666         if ((commands_map[supported_hci_commands_map[i].byte_offset] & (1 << supported_hci_commands_map[i].bit_position)) != 0){
2667 #ifdef ENABLE_LOG_DEBUG
2668             log_info("Command %s (%u) supported %u/%u", command_names[i], i, supported_hci_commands_map[i].byte_offset, supported_hci_commands_map[i].bit_position);
2669 #else
2670             log_info("Command 0x%02x supported %u/%u", i, supported_hci_commands_map[i].byte_offset, supported_hci_commands_map[i].bit_position);
2671 #endif
2672             hci_stack->local_supported_commands |= (1LU << i);
2673         }
2674     }
2675     log_info("Local supported commands summary %08" PRIx32, hci_stack->local_supported_commands);
2676 }
2677 
2678 static void handle_command_complete_event(uint8_t * packet, uint16_t size){
2679     UNUSED(size);
2680 
2681     uint16_t manufacturer;
2682 #ifdef ENABLE_CLASSIC
2683     hci_con_handle_t handle;
2684     hci_connection_t * conn;
2685 #endif
2686 #if defined(ENABLE_CLASSIC) || (defined(ENABLE_BLE) && defined(ENABLE_LE_ISOCHRONOUS_STREAMS))
2687     uint8_t status;
2688 #endif
2689 #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
2690     le_audio_cig_t * cig;
2691 #endif
2692 
2693     // get num cmd packets - limit to 1 to reduce complexity
2694     hci_stack->num_cmd_packets = packet[2] ? 1 : 0;
2695 
2696     uint16_t opcode = hci_event_command_complete_get_command_opcode(packet);
2697     switch (opcode){
2698         case HCI_OPCODE_HCI_READ_LOCAL_NAME:
2699             if (packet[5]) break;
2700             // terminate, name 248 chars
2701             packet[6+248] = 0;
2702             log_info("local name: %s", &packet[6]);
2703             break;
2704         case HCI_OPCODE_HCI_READ_BUFFER_SIZE:
2705             // "The HC_ACL_Data_Packet_Length return parameter will be used to determine the size of the L2CAP segments contained in ACL Data Packets"
2706             if (hci_stack->state == HCI_STATE_INITIALIZING) {
2707                 uint16_t acl_len = little_endian_read_16(packet, 6);
2708                 uint16_t sco_len = packet[8];
2709 
2710                 // determine usable ACL/SCO payload size
2711                 hci_stack->acl_data_packet_length = btstack_min(acl_len, HCI_ACL_PAYLOAD_SIZE);
2712                 hci_stack->sco_data_packet_length = btstack_min(sco_len, HCI_ACL_PAYLOAD_SIZE);
2713 
2714                 hci_stack->acl_packets_total_num = (uint8_t) btstack_min(little_endian_read_16(packet,  9), MAX_NR_CONTROLLER_ACL_BUFFERS);
2715                 hci_stack->sco_packets_total_num = (uint8_t) btstack_min(little_endian_read_16(packet, 11), MAX_NR_CONTROLLER_SCO_PACKETS);
2716 
2717                 log_info("hci_read_buffer_size: ACL size module %u -> used %u, count %u / SCO size %u, count %u",
2718                          acl_len, hci_stack->acl_data_packet_length, hci_stack->acl_packets_total_num,
2719                          hci_stack->sco_data_packet_length, hci_stack->sco_packets_total_num);
2720             }
2721             break;
2722         case HCI_OPCODE_HCI_READ_RSSI:
2723             if (packet[5] == ERROR_CODE_SUCCESS){
2724                 uint8_t event[5];
2725                 event[0] = GAP_EVENT_RSSI_MEASUREMENT;
2726                 event[1] = 3;
2727                 (void)memcpy(&event[2], &packet[6], 3);
2728                 hci_emit_event(event, sizeof(event), 1);
2729             }
2730             break;
2731 #ifdef ENABLE_BLE
2732         case HCI_OPCODE_HCI_LE_READ_BUFFER_SIZE_V2:
2733             hci_stack->le_iso_packets_length = little_endian_read_16(packet, 9);
2734             hci_stack->le_iso_packets_total_num = packet[11];
2735             log_info("hci_le_read_buffer_size_v2: iso size %u, iso count %u",
2736                      hci_stack->le_iso_packets_length, hci_stack->le_iso_packets_total_num);
2737 
2738             /* fall through */
2739 
2740         case HCI_OPCODE_HCI_LE_READ_BUFFER_SIZE:
2741             hci_stack->le_data_packets_length = little_endian_read_16(packet, 6);
2742             hci_stack->le_acl_packets_total_num = packet[8];
2743             // determine usable ACL payload size
2744             if (HCI_ACL_PAYLOAD_SIZE < hci_stack->le_data_packets_length){
2745                 hci_stack->le_data_packets_length = HCI_ACL_PAYLOAD_SIZE;
2746             }
2747             log_info("hci_le_read_buffer_size: acl size %u, acl count %u", hci_stack->le_data_packets_length, hci_stack->le_acl_packets_total_num);
2748             break;
2749 #endif
2750 #ifdef ENABLE_LE_DATA_LENGTH_EXTENSION
2751         case HCI_OPCODE_HCI_LE_READ_MAXIMUM_DATA_LENGTH:
2752             hci_stack->le_supported_max_tx_octets = little_endian_read_16(packet, 6);
2753             hci_stack->le_supported_max_tx_time = little_endian_read_16(packet, 8);
2754             log_info("hci_le_read_maximum_data_length: tx octets %u, tx time %u us", hci_stack->le_supported_max_tx_octets, hci_stack->le_supported_max_tx_time);
2755             break;
2756 #endif
2757 #ifdef ENABLE_LE_CENTRAL
2758         case HCI_OPCODE_HCI_LE_READ_WHITE_LIST_SIZE:
2759             hci_stack->le_whitelist_capacity = packet[6];
2760             log_info("hci_le_read_white_list_size: size %u", hci_stack->le_whitelist_capacity);
2761             break;
2762 #endif
2763 #ifdef ENABLE_LE_PERIPHERAL
2764 #ifdef ENABLE_LE_EXTENDED_ADVERTISING
2765         case HCI_OPCODE_HCI_LE_READ_MAXIMUM_ADVERTISING_DATA_LENGTH:
2766             hci_stack->le_maximum_advertising_data_length = little_endian_read_16(packet, 6);
2767             break;
2768         case HCI_OPCODE_HCI_LE_SET_EXTENDED_ADVERTISING_PARAMETERS:
2769             if (hci_stack->le_advertising_set_in_current_command != 0) {
2770                 le_advertising_set_t * advertising_set = hci_advertising_set_for_handle(hci_stack->le_advertising_set_in_current_command);
2771                 hci_stack->le_advertising_set_in_current_command = 0;
2772                 if (advertising_set == NULL) break;
2773                 uint8_t adv_status = packet[6];
2774                 uint8_t tx_power   = packet[7];
2775                 uint8_t event[] = { HCI_EVENT_META_GAP, 4, GAP_SUBEVENT_ADVERTISING_SET_INSTALLED, hci_stack->le_advertising_set_in_current_command, adv_status, tx_power };
2776                 if (adv_status == 0){
2777                     advertising_set->state |= LE_ADVERTISEMENT_STATE_PARAMS_SET;
2778                 }
2779                 hci_emit_event(event, sizeof(event), 1);
2780             }
2781             break;
2782         case HCI_OPCODE_HCI_LE_REMOVE_ADVERTISING_SET:
2783             if (hci_stack->le_advertising_set_in_current_command != 0) {
2784                 le_advertising_set_t * advertising_set = hci_advertising_set_for_handle(hci_stack->le_advertising_set_in_current_command);
2785                 hci_stack->le_advertising_set_in_current_command = 0;
2786                 if (advertising_set == NULL) break;
2787                 uint8_t adv_status = packet[5];
2788                 uint8_t event[] = { HCI_EVENT_META_GAP, 3, GAP_SUBEVENT_ADVERTISING_SET_REMOVED, hci_stack->le_advertising_set_in_current_command, adv_status };
2789                 if (adv_status == 0){
2790                     btstack_linked_list_remove(&hci_stack->le_advertising_sets, (btstack_linked_item_t *) advertising_set);
2791                 }
2792                 hci_emit_event(event, sizeof(event), 1);
2793             }
2794             break;
2795 #endif
2796 #endif
2797         case HCI_OPCODE_HCI_READ_BD_ADDR:
2798             reverse_bd_addr(&packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE + 1], hci_stack->local_bd_addr);
2799             log_info("Local Address, Status: 0x%02x: Addr: %s", packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE], bd_addr_to_str(hci_stack->local_bd_addr));
2800 #ifdef ENABLE_CLASSIC
2801             if (hci_stack->link_key_db){
2802                 hci_stack->link_key_db->set_local_bd_addr(hci_stack->local_bd_addr);
2803             }
2804 #endif
2805             break;
2806 #ifdef ENABLE_CLASSIC
2807         case HCI_OPCODE_HCI_WRITE_SCAN_ENABLE:
2808             hci_emit_scan_mode_changed(hci_stack->discoverable, hci_stack->connectable);
2809             break;
2810         case HCI_OPCODE_HCI_PERIODIC_INQUIRY_MODE:
2811             status = hci_event_command_complete_get_return_parameters(packet)[0];
2812             if (status == ERROR_CODE_SUCCESS) {
2813                 hci_stack->inquiry_state = GAP_INQUIRY_STATE_PERIODIC;
2814             } else {
2815                 hci_stack->inquiry_state = GAP_INQUIRY_STATE_IDLE;
2816             }
2817             break;
2818         case HCI_OPCODE_HCI_INQUIRY_CANCEL:
2819         case HCI_OPCODE_HCI_EXIT_PERIODIC_INQUIRY_MODE:
2820             if (hci_stack->inquiry_state == GAP_INQUIRY_STATE_W4_CANCELLED){
2821                 hci_stack->inquiry_state = GAP_INQUIRY_STATE_IDLE;
2822                 uint8_t event[] = { GAP_EVENT_INQUIRY_COMPLETE, 1, 0};
2823                 hci_emit_event(event, sizeof(event), 1);
2824             }
2825             break;
2826 #endif
2827         case HCI_OPCODE_HCI_READ_LOCAL_SUPPORTED_FEATURES:
2828             (void)memcpy(hci_stack->local_supported_features, &packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE + 1], 8);
2829 
2830 #ifdef ENABLE_CLASSIC
2831             // determine usable ACL packet types based on host buffer size and supported features
2832             hci_stack->usable_packet_types_acl = hci_acl_packet_types_for_buffer_size_and_local_features(HCI_ACL_PAYLOAD_SIZE, &hci_stack->local_supported_features[0]);
2833             log_info("ACL Packet types %04x", hci_stack->usable_packet_types_acl);
2834             // determine usable SCO packet types based on supported features
2835             hci_stack->usable_packet_types_sco = hci_sco_packet_types_for_features(
2836                     &hci_stack->local_supported_features[0]);
2837             log_info("SCO Packet types %04x - eSCO %u", hci_stack->usable_packet_types_sco, hci_extended_sco_link_supported());
2838 #endif
2839             // Classic/LE
2840             log_info("BR/EDR support %u, LE support %u", hci_classic_supported(), hci_le_supported());
2841             break;
2842         case HCI_OPCODE_HCI_READ_LOCAL_VERSION_INFORMATION:
2843             manufacturer = little_endian_read_16(packet, 10);
2844             // map Cypress & Infineon to Broadcom
2845             switch (manufacturer){
2846                 case BLUETOOTH_COMPANY_ID_CYPRESS_SEMICONDUCTOR:
2847                 case BLUETOOTH_COMPANY_ID_INFINEON_TECHNOLOGIES_AG:
2848                     log_info("Treat Cypress/Infineon as Broadcom");
2849                     manufacturer = BLUETOOTH_COMPANY_ID_BROADCOM_CORPORATION;
2850                     little_endian_store_16(packet, 10, manufacturer);
2851                     break;
2852                 default:
2853                     break;
2854             }
2855             hci_stack->manufacturer = manufacturer;
2856             log_info("Manufacturer: 0x%04x", hci_stack->manufacturer);
2857             break;
2858         case HCI_OPCODE_HCI_READ_LOCAL_SUPPORTED_COMMANDS:
2859             hci_store_local_supported_commands(packet);
2860             break;
2861 #ifdef ENABLE_CLASSIC
2862         case HCI_OPCODE_HCI_WRITE_SYNCHRONOUS_FLOW_CONTROL_ENABLE:
2863             if (packet[5]) return;
2864             hci_stack->synchronous_flow_control_enabled = 1;
2865             break;
2866         case HCI_OPCODE_HCI_READ_ENCRYPTION_KEY_SIZE:
2867             status = packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE];
2868             handle = little_endian_read_16(packet, OFFSET_OF_DATA_IN_COMMAND_COMPLETE+1);
2869             conn   = hci_connection_for_handle(handle);
2870             if (conn != NULL) {
2871                 uint8_t key_size = 0;
2872                 if (status == 0){
2873                     key_size = packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE+3];
2874                     log_info("Handle %04x key Size: %u", handle, key_size);
2875                 } else {
2876                     key_size = 1;
2877                     log_info("Read Encryption Key Size failed 0x%02x-> assuming insecure connection with key size of 1", status);
2878                 }
2879                 hci_handle_read_encryption_key_size_complete(conn, key_size);
2880             }
2881             break;
2882         // assert pairing complete event is emitted.
2883         // note: for SSP, Simple Pairing Complete Event is sufficient, but we want to be more robust
2884         case HCI_OPCODE_HCI_PIN_CODE_REQUEST_NEGATIVE_REPLY:
2885         case HCI_OPCODE_HCI_USER_PASSKEY_REQUEST_NEGATIVE_REPLY:
2886         case HCI_OPCODE_HCI_USER_CONFIRMATION_REQUEST_NEGATIVE_REPLY:
2887             hci_stack->gap_pairing_state = GAP_PAIRING_STATE_IDLE;
2888             // lookup connection by gap pairing addr
2889             conn = hci_connection_for_bd_addr_and_type(hci_stack->gap_pairing_addr, BD_ADDR_TYPE_ACL);
2890             if (conn == NULL) break;
2891             hci_pairing_complete(conn, ERROR_CODE_AUTHENTICATION_FAILURE);
2892             break;
2893 
2894 #ifdef ENABLE_CLASSIC_PAIRING_OOB
2895         case HCI_OPCODE_HCI_READ_LOCAL_OOB_DATA:
2896         case HCI_OPCODE_HCI_READ_LOCAL_EXTENDED_OOB_DATA:{
2897             uint8_t event[67];
2898             event[0] = GAP_EVENT_LOCAL_OOB_DATA;
2899             event[1] = 65;
2900             (void)memset(&event[2], 0, 65);
2901             if (packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE] == ERROR_CODE_SUCCESS){
2902                 (void)memcpy(&event[3], &packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE+1], 32);
2903                 if (opcode == HCI_OPCODE_HCI_READ_LOCAL_EXTENDED_OOB_DATA){
2904                     event[2] = 3;
2905                     (void)memcpy(&event[35], &packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE+33], 32);
2906                 } else {
2907                     event[2] = 1;
2908                 }
2909             }
2910             hci_emit_event(event, sizeof(event), 0);
2911             break;
2912         }
2913 
2914         // note: only needed if user does not provide OOB data
2915         case HCI_OPCODE_HCI_REMOTE_OOB_DATA_REQUEST_NEGATIVE_REPLY:
2916             conn = hci_connection_for_handle(hci_stack->classic_oob_con_handle);
2917             hci_stack->classic_oob_con_handle = HCI_CON_HANDLE_INVALID;
2918             if (conn == NULL) break;
2919             hci_pairing_complete(conn, ERROR_CODE_AUTHENTICATION_FAILURE);
2920             break;
2921 #endif
2922 #endif
2923 #ifdef ENABLE_BLE
2924 #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
2925         case HCI_OPCODE_HCI_LE_SET_CIG_PARAMETERS:
2926             // lookup CIG
2927             cig = hci_cig_for_id(hci_stack->iso_active_operation_group_id);
2928             if (cig != NULL){
2929                 status = packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE];
2930                 uint8_t i = 0;
2931                 if (status == ERROR_CODE_SUCCESS){
2932                     // assign CIS handles to pre-allocated CIS
2933                     btstack_linked_list_iterator_t it;
2934                     btstack_linked_list_iterator_init(&it, &hci_stack->iso_streams);
2935                     while (btstack_linked_list_iterator_has_next(&it) && (i < cig->num_cis)) {
2936                         hci_iso_stream_t *iso_stream = (hci_iso_stream_t *) btstack_linked_list_iterator_next(&it);
2937                         if ((iso_stream->group_id == hci_stack->iso_active_operation_group_id) &&
2938                             (iso_stream->iso_type == HCI_ISO_TYPE_CIS)){
2939                             hci_con_handle_t cis_handle = little_endian_read_16(packet, OFFSET_OF_DATA_IN_COMMAND_COMPLETE+3+(2*i));
2940                             iso_stream->cis_handle  = cis_handle;
2941                             cig->cis_con_handles[i] = cis_handle;
2942                             i++;
2943                         }
2944                     }
2945                     cig->state = LE_AUDIO_CIG_STATE_W4_CIS_REQUEST;
2946                     hci_emit_cig_created(cig, status);
2947                 } else {
2948                     hci_emit_cig_created(cig, status);
2949                     btstack_linked_list_remove(&hci_stack->le_audio_cigs, (btstack_linked_item_t *) cig);
2950                 }
2951             }
2952             hci_stack->iso_active_operation_type = HCI_ISO_TYPE_INVALID;
2953             break;
2954         case HCI_OPCODE_HCI_LE_CREATE_CIS:
2955             status = packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE];
2956             if (status != ERROR_CODE_SUCCESS){
2957                 hci_iso_stream_requested_finalize(HCI_ISO_GROUP_ID_INVALID);
2958             }
2959             break;
2960         case HCI_OPCODE_HCI_LE_ACCEPT_CIS_REQUEST:
2961             status = packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE];
2962             if (status != ERROR_CODE_SUCCESS){
2963                 hci_iso_stream_requested_finalize(HCI_ISO_GROUP_ID_INVALID);
2964             }
2965             break;
2966         case HCI_OPCODE_HCI_LE_SETUP_ISO_DATA_PATH: {
2967             // lookup BIG by state
2968             btstack_linked_list_iterator_t it;
2969             btstack_linked_list_iterator_init(&it, &hci_stack->le_audio_bigs);
2970             while (btstack_linked_list_iterator_has_next(&it)) {
2971                 le_audio_big_t *big = (le_audio_big_t *) btstack_linked_list_iterator_next(&it);
2972                 if (big->state == LE_AUDIO_BIG_STATE_W4_SETUP_ISO_PATH){
2973                     status = packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE];
2974                     if (status == ERROR_CODE_SUCCESS){
2975                         big->state_vars.next_bis++;
2976                         if (big->state_vars.next_bis == big->num_bis){
2977                             big->state = LE_AUDIO_BIG_STATE_ACTIVE;
2978                             hci_emit_big_created(big, ERROR_CODE_SUCCESS);
2979                         } else {
2980                             big->state = LE_AUDIO_BIG_STATE_SETUP_ISO_PATH;
2981                         }
2982                     } else {
2983                         big->state = LE_AUDIO_BIG_STATE_SETUP_ISO_PATHS_FAILED;
2984                         big->state_vars.status = status;
2985                     }
2986                     return;
2987                 }
2988             }
2989             btstack_linked_list_iterator_init(&it, &hci_stack->le_audio_big_syncs);
2990             while (btstack_linked_list_iterator_has_next(&it)) {
2991                 le_audio_big_sync_t *big_sync = (le_audio_big_sync_t *) btstack_linked_list_iterator_next(&it);
2992                 if (big_sync->state == LE_AUDIO_BIG_STATE_W4_SETUP_ISO_PATH){
2993                     status = packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE];
2994                     if (status == ERROR_CODE_SUCCESS){
2995                         big_sync->state_vars.next_bis++;
2996                         if (big_sync->state_vars.next_bis == big_sync->num_bis){
2997                             big_sync->state = LE_AUDIO_BIG_STATE_ACTIVE;
2998                             hci_emit_big_sync_created(big_sync, ERROR_CODE_SUCCESS);
2999                         } else {
3000                             big_sync->state = LE_AUDIO_BIG_STATE_SETUP_ISO_PATH;
3001                         }
3002                     } else {
3003                         big_sync->state = LE_AUDIO_BIG_STATE_SETUP_ISO_PATHS_FAILED;
3004                         big_sync->state_vars.status = status;
3005                     }
3006                     return;
3007                 }
3008             }
3009             // Lookup CIS via active group operation
3010             if (hci_stack->iso_active_operation_type == HCI_ISO_TYPE_CIS){
3011                 if (hci_stack->iso_active_operation_group_id == HCI_ISO_GROUP_ID_SINGLE_CIS){
3012                     hci_stack->iso_active_operation_type = HCI_ISO_TYPE_INVALID;
3013 
3014                     // lookup CIS by state
3015                     btstack_linked_list_iterator_t it;
3016                     btstack_linked_list_iterator_init(&it, &hci_stack->iso_streams);
3017                     status = packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE];
3018                     while (btstack_linked_list_iterator_has_next(&it)){
3019                         hci_iso_stream_t * iso_stream = (hci_iso_stream_t *) btstack_linked_list_iterator_next(&it);
3020                         handle = iso_stream->cis_handle;
3021                         bool emit_cis_created = false;
3022                         switch (iso_stream->state){
3023                             case HCI_ISO_STREAM_STATE_W4_ISO_SETUP_INPUT:
3024                                 if (status != ERROR_CODE_SUCCESS){
3025                                     emit_cis_created = true;
3026                                     break;
3027                                 }
3028                                 if (iso_stream->max_sdu_c_to_p > 0){
3029                                     iso_stream->state = HCI_ISO_STREAM_STATE_W2_SETUP_ISO_OUTPUT;
3030                                 } else {
3031                                     emit_cis_created = true;
3032                                 }
3033                                 break;
3034                             case HCI_ISO_STREAM_STATE_W4_ISO_SETUP_OUTPUT:
3035                                 emit_cis_created = true;
3036                                 break;
3037                             default:
3038                                 break;
3039                         }
3040                         if (emit_cis_created){
3041                             hci_cis_handle_created(iso_stream, status);
3042                         }
3043                     }
3044                 } else {
3045                     cig = hci_cig_for_id(hci_stack->iso_active_operation_group_id);
3046                     hci_stack->iso_active_operation_type = HCI_ISO_TYPE_INVALID;
3047                     if (cig != NULL) {
3048                         // emit cis created if all ISO Paths have been created
3049                         // assume we are central
3050                         uint8_t cis_index     = cig->state_vars.next_cis >> 1;
3051                         uint8_t cis_direction = cig->state_vars.next_cis & 1;
3052                         bool outgoing_needed  = cig->params->cis_params[cis_index].max_sdu_p_to_c > 0;
3053                         // if outgoing has been setup, or incoming was setup but outgoing not required
3054                         if ((cis_direction == 1) || (outgoing_needed == false)){
3055                             // lookup iso stream by cig/cis
3056                             while (btstack_linked_list_iterator_has_next(&it)) {
3057                                 hci_iso_stream_t *iso_stream = (hci_iso_stream_t *) btstack_linked_list_iterator_next(&it);
3058                                 if ((iso_stream->group_id == cig->cig_id) && (iso_stream->stream_id == cis_index)){
3059                                     hci_cis_handle_created(iso_stream, status);
3060                                 }
3061                             }
3062                         }
3063                         // next state
3064                         cig->state_vars.next_cis++;
3065                         cig->state = LE_AUDIO_CIG_STATE_SETUP_ISO_PATH;
3066                     }
3067                 }
3068             }
3069             break;
3070         }
3071         case HCI_OPCODE_HCI_LE_BIG_TERMINATE_SYNC: {
3072             // lookup BIG by state
3073             btstack_linked_list_iterator_t it;
3074             btstack_linked_list_iterator_init(&it, &hci_stack->le_audio_big_syncs);
3075             while (btstack_linked_list_iterator_has_next(&it)) {
3076                 le_audio_big_sync_t *big_sync = (le_audio_big_sync_t *) btstack_linked_list_iterator_next(&it);
3077                 uint8_t big_handle = big_sync->big_handle;
3078                 switch (big_sync->state){
3079                     case LE_AUDIO_BIG_STATE_W4_TERMINATED_AFTER_SETUP_FAILED:
3080                         btstack_linked_list_iterator_remove(&it);
3081                         hci_emit_big_sync_created(big_sync, big_sync->state_vars.status);
3082                         return;
3083                     default:
3084                         btstack_linked_list_iterator_remove(&it);
3085                         hci_emit_big_sync_stopped(big_handle);
3086                         return;
3087                 }
3088             }
3089             break;
3090         }
3091 #endif
3092 #endif
3093         default:
3094             break;
3095     }
3096 }
3097 
3098 static void handle_command_status_event(uint8_t * packet, uint16_t size) {
3099     UNUSED(size);
3100 
3101     // get num cmd packets - limit to 1 to reduce complexity
3102     hci_stack->num_cmd_packets = packet[3] ? 1 : 0;
3103 
3104     // get opcode and command status
3105     uint16_t opcode = hci_event_command_status_get_command_opcode(packet);
3106 
3107 #if defined(ENABLE_CLASSIC) || defined(ENABLE_LE_CENTRAL) || defined(ENABLE_LE_ISOCHRONOUS_STREAMS)
3108     uint8_t status = hci_event_command_status_get_status(packet);
3109 #endif
3110 
3111 #if defined(ENABLE_CLASSIC) || defined(ENABLE_LE_CENTRAL)
3112     bd_addr_type_t addr_type;
3113     bd_addr_t addr;
3114 #endif
3115 
3116     switch (opcode){
3117 #ifdef ENABLE_CLASSIC
3118         case HCI_OPCODE_HCI_CREATE_CONNECTION:
3119         case HCI_OPCODE_HCI_SETUP_SYNCHRONOUS_CONNECTION:
3120         case HCI_OPCODE_HCI_ACCEPT_SYNCHRONOUS_CONNECTION:
3121 #endif
3122 #ifdef ENABLE_LE_CENTRAL
3123         case HCI_OPCODE_HCI_LE_CREATE_CONNECTION:
3124 #endif
3125 #if defined(ENABLE_CLASSIC) || defined(ENABLE_LE_CENTRAL)
3126             addr_type = hci_stack->outgoing_addr_type;
3127             memcpy(addr, hci_stack->outgoing_addr, 6);
3128 
3129             // reset outgoing address info
3130             memset(hci_stack->outgoing_addr, 0, 6);
3131             hci_stack->outgoing_addr_type = BD_ADDR_TYPE_UNKNOWN;
3132 
3133             // on error
3134             if (status != ERROR_CODE_SUCCESS){
3135 #ifdef ENABLE_LE_CENTRAL
3136                 if (hci_is_le_connection_type(addr_type)){
3137                     hci_stack->le_connecting_state = LE_CONNECTING_IDLE;
3138                     hci_stack->le_connecting_request = LE_CONNECTING_IDLE;
3139                 }
3140 #endif
3141                 // error => outgoing connection failed
3142                 hci_connection_t * conn = hci_connection_for_bd_addr_and_type(addr, addr_type);
3143                 if (conn != NULL){
3144                     hci_handle_connection_failed(conn, status);
3145                 }
3146             }
3147             break;
3148 #endif
3149 #ifdef ENABLE_CLASSIC
3150         case HCI_OPCODE_HCI_INQUIRY:
3151             if (status == ERROR_CODE_SUCCESS) {
3152                 hci_stack->inquiry_state = GAP_INQUIRY_STATE_ACTIVE;
3153             } else {
3154                 hci_stack->inquiry_state = GAP_INQUIRY_STATE_IDLE;
3155             }
3156             break;
3157 #endif
3158 #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
3159         case HCI_OPCODE_HCI_LE_CREATE_CIS:
3160         case HCI_OPCODE_HCI_LE_ACCEPT_CIS_REQUEST:
3161             if (status == ERROR_CODE_SUCCESS){
3162                 hci_iso_stream_requested_confirm(HCI_ISO_GROUP_ID_INVALID);
3163             } else {
3164                 hci_iso_stream_requested_finalize(HCI_ISO_GROUP_ID_INVALID);
3165             }
3166             break;
3167 #endif /* ENABLE_LE_ISOCHRONOUS_STREAMS */
3168         default:
3169             break;
3170     }
3171 }
3172 
3173 #ifdef ENABLE_BLE
3174 static void event_handle_le_connection_complete(const uint8_t * packet){
3175 	bd_addr_t addr;
3176 	bd_addr_type_t addr_type;
3177 	hci_connection_t * conn;
3178 
3179     // read fields
3180     uint8_t status = packet[3];
3181     hci_role_t role = (hci_role_t) packet[6];
3182 
3183     // support different connection complete events
3184     uint16_t conn_interval;
3185     switch (packet[2]){
3186         case HCI_SUBEVENT_LE_CONNECTION_COMPLETE:
3187             conn_interval = hci_subevent_le_connection_complete_get_conn_interval(packet);
3188             break;
3189 #ifdef ENABLE_LE_EXTENDED_ADVERTISING
3190         case HCI_SUBEVENT_LE_ENHANCED_CONNECTION_COMPLETE_V1:
3191             conn_interval = hci_subevent_le_enhanced_connection_complete_v1_get_conn_interval(packet);
3192             break;
3193         case HCI_SUBEVENT_LE_ENHANCED_CONNECTION_COMPLETE_V2:
3194             conn_interval = hci_subevent_le_enhanced_connection_complete_v2_get_conn_interval(packet);
3195             break;
3196 #endif
3197         default:
3198             btstack_unreachable();
3199             return;
3200     }
3201 
3202 	// Connection management
3203 	reverse_bd_addr(&packet[8], addr);
3204 	addr_type = (bd_addr_type_t)packet[7];
3205     log_info("LE Connection_complete (status=%u) type %u, %s", status, addr_type, bd_addr_to_str(addr));
3206 	conn = hci_connection_for_bd_addr_and_type(addr, addr_type);
3207 
3208 #ifdef ENABLE_LE_CENTRAL
3209 	// handle error: error is reported only to the initiator -> outgoing connection
3210 	if (status){
3211 
3212 		// handle cancelled outgoing connection
3213 		// "If the cancellation was successful then, after the Command Complete event for the LE_Create_Connection_Cancel command,
3214 		//  either an LE Connection Complete or an LE Enhanced Connection Complete event shall be generated.
3215 		//  In either case, the event shall be sent with the error code Unknown Connection Identifier (0x02)."
3216 		if (status == ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER){
3217 		    // reset state
3218             hci_stack->le_connecting_state   = LE_CONNECTING_IDLE;
3219             hci_stack->le_connecting_request = LE_CONNECTING_IDLE;
3220 			// get outgoing connection conn struct for direct connect
3221 			conn = gap_get_outgoing_connection();
3222 		}
3223 
3224 		// outgoing le connection establishment is done
3225 		if (conn){
3226 			// remove entry
3227 			btstack_linked_list_remove(&hci_stack->connections, (btstack_linked_item_t *) conn);
3228 			btstack_memory_hci_connection_free( conn );
3229 		}
3230 		return;
3231 	}
3232 #endif
3233 
3234 	// on success, both hosts receive connection complete event
3235     if (role == HCI_ROLE_MASTER){
3236 #ifdef ENABLE_LE_CENTRAL
3237 		// if we're master on an le connection, it was an outgoing connection and we're done with it
3238 		// note: no hci_connection_t object exists yet for connect with whitelist
3239 		if (hci_is_le_connection_type(addr_type)){
3240 			hci_stack->le_connecting_state   = LE_CONNECTING_IDLE;
3241 			hci_stack->le_connecting_request = LE_CONNECTING_IDLE;
3242 		}
3243 #endif
3244 	} else {
3245 #ifdef ENABLE_LE_PERIPHERAL
3246 		// if we're slave, it was an incoming connection, advertisements have stopped
3247         hci_stack->le_advertisements_state &= ~LE_ADVERTISEMENT_STATE_ACTIVE;
3248 #endif
3249 	}
3250 
3251 	// LE connections are auto-accepted, so just create a connection if there isn't one already
3252 	if (!conn){
3253 		conn = create_connection_for_bd_addr_and_type(addr, addr_type, role);
3254 	}
3255 
3256 	// no memory, sorry.
3257 	if (!conn){
3258 		return;
3259 	}
3260 
3261 	conn->state = OPEN;
3262 	conn->con_handle             = hci_subevent_le_connection_complete_get_connection_handle(packet);
3263     conn->le_connection_interval = conn_interval;
3264 
3265     // workaround: PAST doesn't work without LE Read Remote Features on PacketCraft Controller with LMP 568B
3266     conn->gap_connection_tasks = GAP_CONNECTION_TASK_LE_READ_REMOTE_FEATURES;
3267 
3268 #ifdef ENABLE_LE_PERIPHERAL
3269 	if (role == HCI_ROLE_SLAVE){
3270 		hci_update_advertisements_enabled_for_current_roles();
3271 	}
3272 #endif
3273 
3274     // init unenhanced att bearer mtu
3275     conn->att_connection.mtu = ATT_DEFAULT_MTU;
3276     conn->att_connection.mtu_exchanged = false;
3277 
3278     // TODO: store - role, peer address type, conn_interval, conn_latency, supervision timeout, master clock
3279 
3280 	// restart timer
3281 	// btstack_run_loop_set_timer(&conn->timeout, HCI_CONNECTION_TIMEOUT_MS);
3282 	// btstack_run_loop_add_timer(&conn->timeout);
3283 
3284 	log_info("New connection: handle %u, %s", conn->con_handle, bd_addr_to_str(conn->address));
3285 
3286 	hci_emit_nr_connections_changed();
3287 }
3288 #endif
3289 
3290 #ifdef ENABLE_CLASSIC
3291 static bool hci_ssp_security_level_possible_for_io_cap(gap_security_level_t level, uint8_t io_cap_local, uint8_t io_cap_remote){
3292     if (io_cap_local == SSP_IO_CAPABILITY_UNKNOWN) return false;
3293     // LEVEL_4 is tested by l2cap
3294     // LEVEL 3 requires MITM protection -> check io capabilities if Authenticated is possible
3295     // @see: Core Spec v5.3, Vol 3, Part C, Table 5.7
3296     if (level >= LEVEL_3){
3297         // MITM not possible without keyboard or display
3298         if (io_cap_remote >= SSP_IO_CAPABILITY_NO_INPUT_NO_OUTPUT) return false;
3299         if (io_cap_local  >= SSP_IO_CAPABILITY_NO_INPUT_NO_OUTPUT) return false;
3300 
3301         // MITM possible if one side has keyboard and the other has keyboard or display
3302         if (io_cap_remote == SSP_IO_CAPABILITY_KEYBOARD_ONLY)      return true;
3303         if (io_cap_local  == SSP_IO_CAPABILITY_KEYBOARD_ONLY)      return true;
3304 
3305         // MITM not possible if one side has only display and other side has no keyboard
3306         if (io_cap_remote == SSP_IO_CAPABILITY_DISPLAY_ONLY)       return false;
3307         if (io_cap_local  == SSP_IO_CAPABILITY_DISPLAY_ONLY)       return false;
3308     }
3309     // LEVEL 2 requires SSP, which is a given
3310     return true;
3311 }
3312 
3313 static void hci_ssp_assess_security_on_io_cap_request(hci_connection_t * conn){
3314     // get requested security level
3315     gap_security_level_t requested_security_level = conn->requested_security_level;
3316     if (hci_stack->gap_secure_connections_only_mode){
3317         requested_security_level = LEVEL_4;
3318     }
3319 
3320     // assess security: LEVEL 4 requires SC
3321     // skip this preliminary test if remote features are not available yet to work around potential issue in ESP32 controller
3322     if ((requested_security_level == LEVEL_4) &&
3323         ((conn->bonding_flags & BONDING_RECEIVED_REMOTE_FEATURES) != 0) &&
3324         !hci_remote_sc_enabled(conn)){
3325         log_info("Level 4 required, but SC not supported -> abort");
3326         hci_pairing_complete(conn, ERROR_CODE_INSUFFICIENT_SECURITY);
3327         connectionSetAuthenticationFlags(conn, AUTH_FLAG_SEND_IO_CAPABILITIES_NEGATIVE_REPLY);
3328         return;
3329     }
3330 
3331     // assess bonding requirements: abort if remote in dedicated bonding mode but we are non-bonding
3332     // - GAP/MOD/NBON/BV-02-C
3333     // - GAP/DM/NBON/BV-01-C
3334     if (conn->authentication_flags & AUTH_FLAG_RECV_IO_CAPABILITIES_RESPONSE){
3335         switch (conn->io_cap_response_auth_req){
3336             case SSP_IO_AUTHREQ_MITM_PROTECTION_NOT_REQUIRED_DEDICATED_BONDING:
3337             case SSP_IO_AUTHREQ_MITM_PROTECTION_REQUIRED_DEDICATED_BONDING:
3338                 if (hci_stack->bondable == false){
3339                     log_info("Dedicated vs. non-bondable -> abort");
3340                     hci_pairing_complete(conn, ERROR_CODE_INSUFFICIENT_SECURITY);
3341                     connectionSetAuthenticationFlags(conn, AUTH_FLAG_SEND_IO_CAPABILITIES_NEGATIVE_REPLY);
3342                     return;
3343                 }
3344             default:
3345                 break;
3346         }
3347     }
3348 
3349     // assess security based on io capabilities
3350     if (conn->authentication_flags & AUTH_FLAG_RECV_IO_CAPABILITIES_RESPONSE){
3351         // responder: fully validate io caps of both sides as well as OOB data
3352         bool security_possible = false;
3353         security_possible = hci_ssp_security_level_possible_for_io_cap(requested_security_level, hci_stack->ssp_io_capability, conn->io_cap_response_io);
3354 
3355 #ifdef ENABLE_CLASSIC_PAIRING_OOB
3356         // We assume that both Controller can reach LEVEL 4, if one side has received P-192 and the other has received P-256,
3357         // so we merge the OOB data availability
3358         uint8_t have_oob_data = conn->io_cap_response_oob_data;
3359         if (conn->classic_oob_c_192 != NULL){
3360             have_oob_data |= 1;
3361         }
3362         if (conn->classic_oob_c_256 != NULL){
3363             have_oob_data |= 2;
3364         }
3365         // for up to Level 3, either P-192 as well as P-256 will do
3366         // if we don't support SC, then a) conn->classic_oob_c_256 will be NULL and b) remote should not report P-256 available
3367         // if remote does not SC, we should not receive P-256 data either
3368         if ((requested_security_level <= LEVEL_3) && (have_oob_data != 0)){
3369             security_possible = true;
3370         }
3371         // for Level 4, P-256 is needed
3372         if ((requested_security_level == LEVEL_4 && ((have_oob_data & 2) != 0))){
3373             security_possible = true;
3374         }
3375 #endif
3376 
3377         if (security_possible == false){
3378             log_info("IOCap/OOB insufficient for level %u -> abort", requested_security_level);
3379             hci_pairing_complete(conn, ERROR_CODE_INSUFFICIENT_SECURITY);
3380             connectionSetAuthenticationFlags(conn, AUTH_FLAG_SEND_IO_CAPABILITIES_NEGATIVE_REPLY);
3381             return;
3382         }
3383     } else {
3384         // initiator: remote io cap not yet, only check if we have ability for MITM protection if requested and OOB is not supported
3385 #ifndef ENABLE_CLASSIC_PAIRING_OOB
3386 #ifndef ENABLE_EXPLICIT_IO_CAPABILITIES_REPLY
3387         if ((conn->requested_security_level >= LEVEL_3) && (hci_stack->ssp_io_capability >= SSP_IO_CAPABILITY_NO_INPUT_NO_OUTPUT)){
3388             log_info("Level 3+ required, but no input/output -> abort");
3389             hci_pairing_complete(conn, ERROR_CODE_INSUFFICIENT_SECURITY);
3390             connectionSetAuthenticationFlags(conn, AUTH_FLAG_SEND_IO_CAPABILITIES_NEGATIVE_REPLY);
3391             return;
3392         }
3393 #endif
3394 #endif
3395     }
3396 
3397 #ifndef ENABLE_EXPLICIT_IO_CAPABILITIES_REPLY
3398     if (hci_stack->ssp_io_capability != SSP_IO_CAPABILITY_UNKNOWN){
3399         connectionSetAuthenticationFlags(conn, AUTH_FLAG_SEND_IO_CAPABILITIES_REPLY);
3400     } else {
3401         connectionSetAuthenticationFlags(conn, AUTH_FLAG_SEND_IO_CAPABILITIES_NEGATIVE_REPLY);
3402     }
3403 #endif
3404 }
3405 
3406 #endif
3407 
3408 static void event_handler(uint8_t *packet, uint16_t size){
3409 
3410     uint16_t event_length = packet[1];
3411 
3412     // assert packet is complete
3413     if (size != (event_length + 2u)){
3414         log_error("event_handler called with packet of wrong size %d, expected %u => dropping packet", size, event_length + 2);
3415         return;
3416     }
3417 
3418     hci_con_handle_t handle;
3419     hci_connection_t * conn;
3420     int i;
3421 
3422 #ifdef ENABLE_CLASSIC
3423     hci_link_type_t link_type;
3424     bd_addr_t addr;
3425     bd_addr_type_t addr_type;
3426 #endif
3427 #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
3428     hci_iso_stream_t * iso_stream;
3429     le_audio_big_t   * big;
3430     le_audio_big_sync_t * big_sync;
3431 #endif
3432 #if defined(ENABLE_LE_ISOCHRONOUS_STREAMS) || defined(ENABLE_LE_EXTENDED_ADVERTISING)
3433     btstack_linked_list_iterator_t it;
3434 #endif
3435 #ifdef ENABLE_LE_EXTENDED_ADVERTISING
3436     uint8_t advertising_handle;
3437 #endif
3438 
3439     // log_info("HCI:EVENT:%02x", hci_event_packet_get_type(packet));
3440 
3441     switch (hci_event_packet_get_type(packet)) {
3442 
3443         case HCI_EVENT_COMMAND_COMPLETE:
3444             handle_command_complete_event(packet, size);
3445             break;
3446 
3447         case HCI_EVENT_COMMAND_STATUS:
3448             handle_command_status_event(packet, size);
3449             break;
3450 
3451         case HCI_EVENT_NUMBER_OF_COMPLETED_PACKETS:{
3452             if (size < 3) return;
3453             uint16_t num_handles = packet[2];
3454             if (size != (3u + num_handles * 4u)) return;
3455 #ifdef ENABLE_CLASSIC
3456             bool notify_sco = false;
3457 #endif
3458 #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
3459             bool notify_iso = false;
3460 #endif
3461             uint16_t offset = 3;
3462             for (i=0; i<num_handles;i++){
3463                 handle = little_endian_read_16(packet, offset) & 0x0fffu;
3464                 offset += 2u;
3465                 uint16_t num_packets = little_endian_read_16(packet, offset);
3466                 offset += 2u;
3467 
3468                 conn = hci_connection_for_handle(handle);
3469                 if (conn != NULL) {
3470 
3471                     if (conn->num_packets_sent >= num_packets) {
3472                         conn->num_packets_sent -= num_packets;
3473                     } else {
3474                         log_error("hci_number_completed_packets, more packet slots freed then sent.");
3475                         conn->num_packets_sent = 0;
3476                     }
3477                     // log_info("hci_number_completed_packet %u processed for handle %u, outstanding %u", num_packets, handle, conn->num_packets_sent);
3478 #ifdef ENABLE_CLASSIC
3479                     if (conn->address_type == BD_ADDR_TYPE_SCO){
3480                         notify_sco = true;
3481                     }
3482 #endif
3483                 }
3484 
3485 #ifdef ENABLE_CONTROLLER_DUMP_PACKETS
3486                 hci_controller_dump_packets();
3487 #endif
3488 
3489 #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
3490                 if (conn == NULL){
3491                     hci_iso_stream_t * iso_stream = hci_iso_stream_for_con_handle(handle);
3492                     if (iso_stream != NULL){
3493                         if (iso_stream->num_packets_sent >= num_packets) {
3494                             iso_stream->num_packets_sent -= num_packets;
3495                         } else {
3496                             log_error("hci_number_completed_packets, more packet slots freed then sent.");
3497                             iso_stream->num_packets_sent = 0;
3498                         }
3499                         if (iso_stream->iso_type == HCI_ISO_TYPE_BIS){
3500                             le_audio_big_t * big = hci_big_for_handle(iso_stream->group_id);
3501                             if (big != NULL){
3502                                 big->num_completed_timestamp_current_valid = true;
3503                                 big->num_completed_timestamp_current_ms = btstack_run_loop_get_time_ms();
3504                             }
3505                         }
3506                         log_info("hci_number_completed_packet %u processed for handle %u, outstanding %u",
3507                                  num_packets, handle, iso_stream->num_packets_sent);
3508                         notify_iso = true;
3509                     }
3510                 }
3511 #endif
3512             }
3513 
3514 #ifdef ENABLE_CLASSIC
3515             if (notify_sco){
3516                 hci_notify_if_sco_can_send_now();
3517             }
3518 #endif
3519 #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
3520             if (notify_iso){
3521                 hci_iso_notify_can_send_now();
3522             }
3523 #endif
3524             break;
3525         }
3526 
3527 #ifdef ENABLE_CLASSIC
3528         case HCI_EVENT_FLUSH_OCCURRED:
3529             // flush occurs only if automatic flush has been enabled by gap_enable_link_watchdog()
3530             handle = hci_event_flush_occurred_get_handle(packet);
3531             conn = hci_connection_for_handle(handle);
3532             if (conn) {
3533                 log_info("Flush occurred, disconnect 0x%04x", handle);
3534                 conn->state = SEND_DISCONNECT;
3535             }
3536             break;
3537 
3538         case HCI_EVENT_INQUIRY_COMPLETE:
3539             if (hci_stack->inquiry_state == GAP_INQUIRY_STATE_ACTIVE){
3540                 hci_stack->inquiry_state = GAP_INQUIRY_STATE_IDLE;
3541                 uint8_t event[] = { GAP_EVENT_INQUIRY_COMPLETE, 1, 0};
3542                 hci_emit_event(event, sizeof(event), 1);
3543             }
3544             break;
3545         case HCI_EVENT_REMOTE_NAME_REQUEST_COMPLETE:
3546             if (hci_stack->remote_name_state == GAP_REMOTE_NAME_STATE_W4_COMPLETE){
3547                 hci_stack->remote_name_state = GAP_REMOTE_NAME_STATE_IDLE;
3548             }
3549             break;
3550         case HCI_EVENT_CONNECTION_REQUEST:
3551             reverse_bd_addr(&packet[2], addr);
3552             link_type = (hci_link_type_t) packet[11];
3553 
3554             // CVE-2020-26555: reject incoming connection from device with same BD ADDR
3555             if (memcmp(hci_stack->local_bd_addr, addr, 6) == 0){
3556                 hci_stack->decline_reason = ERROR_CODE_CONNECTION_REJECTED_DUE_TO_UNACCEPTABLE_BD_ADDR;
3557                 bd_addr_copy(hci_stack->decline_addr, addr);
3558                 break;
3559             }
3560 
3561             if (hci_stack->gap_classic_accept_callback != NULL){
3562                 if ((*hci_stack->gap_classic_accept_callback)(addr, link_type) == 0){
3563                     hci_stack->decline_reason = ERROR_CODE_CONNECTION_REJECTED_DUE_TO_SECURITY_REASONS;
3564                     bd_addr_copy(hci_stack->decline_addr, addr);
3565                     break;
3566                 }
3567             }
3568 
3569             // TODO: eval COD 8-10
3570             log_info("Connection_incoming: %s, type %u", bd_addr_to_str(addr), (unsigned int) link_type);
3571             addr_type = (link_type == HCI_LINK_TYPE_ACL) ? BD_ADDR_TYPE_ACL : BD_ADDR_TYPE_SCO;
3572             conn = hci_connection_for_bd_addr_and_type(addr, addr_type);
3573             if (!conn) {
3574                 conn = create_connection_for_bd_addr_and_type(addr, addr_type, HCI_ROLE_SLAVE);
3575             }
3576             if (!conn) {
3577                 // CONNECTION REJECTED DUE TO LIMITED RESOURCES (0X0D)
3578                 hci_stack->decline_reason = ERROR_CODE_CONNECTION_REJECTED_DUE_TO_LIMITED_RESOURCES;
3579                 bd_addr_copy(hci_stack->decline_addr, addr);
3580                 hci_run();
3581                 // avoid event to higher layer
3582                 return;
3583             }
3584             conn->state = RECEIVED_CONNECTION_REQUEST;
3585             // store info about eSCO
3586             if (link_type == HCI_LINK_TYPE_ESCO){
3587                 conn->remote_supported_features[0] |= 1;
3588             }
3589             hci_run();
3590             break;
3591 
3592         case HCI_EVENT_CONNECTION_COMPLETE:
3593             // Connection management
3594             reverse_bd_addr(&packet[5], addr);
3595             log_info("Connection_complete (status=%u) %s", packet[2], bd_addr_to_str(addr));
3596             addr_type = BD_ADDR_TYPE_ACL;
3597             conn = hci_connection_for_bd_addr_and_type(addr, addr_type);
3598             if (conn) {
3599                 switch (conn->state){
3600                     // expected states
3601                     case ACCEPTED_CONNECTION_REQUEST:
3602                     case SENT_CREATE_CONNECTION:
3603                         break;
3604                     // unexpected state -> ignore
3605                     default:
3606                         // don't forward event to app
3607                         return;
3608                 }
3609                 if (!packet[2]){
3610                     conn->state = OPEN;
3611                     conn->con_handle = little_endian_read_16(packet, 3);
3612 
3613                     // trigger write supervision timeout if we're master
3614                     if ((hci_stack->link_supervision_timeout != HCI_LINK_SUPERVISION_TIMEOUT_DEFAULT) && (conn->role == HCI_ROLE_MASTER)){
3615                         conn->gap_connection_tasks |= GAP_CONNECTION_TASK_WRITE_SUPERVISION_TIMEOUT;
3616                     }
3617 
3618                     // trigger write automatic flush timeout
3619                     if (hci_stack->automatic_flush_timeout != 0){
3620                         conn->gap_connection_tasks |= GAP_CONNECTION_TASK_WRITE_AUTOMATIC_FLUSH_TIMEOUT;
3621                     }
3622 
3623                     // restart timer
3624                     btstack_run_loop_set_timer(&conn->timeout, HCI_CONNECTION_TIMEOUT_MS);
3625                     btstack_run_loop_add_timer(&conn->timeout);
3626 
3627                     // trigger remote features for dedicated bonding
3628                     if ((conn->bonding_flags & BONDING_DEDICATED) != 0){
3629                         hci_trigger_remote_features_for_connection(conn);
3630                     }
3631 
3632                     log_info("New connection: handle %u, %s", conn->con_handle, bd_addr_to_str(conn->address));
3633 
3634                     hci_emit_nr_connections_changed();
3635                 } else {
3636                     // connection failed
3637                     hci_handle_connection_failed(conn, packet[2]);
3638                 }
3639             }
3640             break;
3641 
3642         case HCI_EVENT_SYNCHRONOUS_CONNECTION_COMPLETE:
3643             reverse_bd_addr(&packet[5], addr);
3644             conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_SCO);
3645             log_info("Synchronous Connection Complete for %p (status=%u) %s", conn, packet[2], bd_addr_to_str(addr));
3646             btstack_assert(conn != NULL);
3647 
3648             if (packet[2] != ERROR_CODE_SUCCESS){
3649                 // connection failed, remove entry
3650                 hci_handle_connection_failed(conn, packet[2]);
3651                 break;
3652             }
3653 
3654             conn->state = OPEN;
3655             conn->con_handle = little_endian_read_16(packet, 3);
3656 
3657 #ifdef ENABLE_SCO_OVER_HCI
3658             // update SCO
3659             if (conn->address_type == BD_ADDR_TYPE_SCO && hci_stack->hci_transport && hci_stack->hci_transport->set_sco_config){
3660                 hci_stack->hci_transport->set_sco_config(hci_stack->sco_voice_setting_active, hci_number_sco_connections());
3661             }
3662             // trigger can send now
3663             if (hci_have_usb_transport()){
3664                 hci_stack->sco_can_send_now = true;
3665             }
3666 #endif
3667 #ifdef HAVE_SCO_TRANSPORT
3668             // configure sco transport
3669             if (hci_stack->sco_transport != NULL){
3670                 sco_format_t sco_format = ((hci_stack->sco_voice_setting_active & 0x03) == 0x03) ? SCO_FORMAT_8_BIT : SCO_FORMAT_16_BIT;
3671                 hci_stack->sco_transport->open(conn->con_handle, sco_format);
3672             }
3673 #endif
3674             break;
3675 
3676         case HCI_EVENT_READ_REMOTE_SUPPORTED_FEATURES_COMPLETE:
3677             handle = little_endian_read_16(packet, 3);
3678             conn = hci_connection_for_handle(handle);
3679             if (!conn) break;
3680             if (!packet[2]){
3681                 const uint8_t * features = &packet[5];
3682                 hci_handle_remote_features_page_0(conn, features);
3683 
3684                 // read extended features if possible
3685                 if (hci_command_supported(SUPPORTED_HCI_COMMAND_READ_REMOTE_EXTENDED_FEATURES)
3686                 && ((conn->remote_supported_features[0] & 2) != 0)) {
3687                     conn->bonding_flags |= BONDING_REQUEST_REMOTE_FEATURES_PAGE_1;
3688                     break;
3689                 }
3690             }
3691             hci_handle_remote_features_received(conn);
3692             break;
3693 
3694         case HCI_EVENT_READ_REMOTE_EXTENDED_FEATURES_COMPLETE:
3695             handle = little_endian_read_16(packet, 3);
3696             conn = hci_connection_for_handle(handle);
3697             if (!conn) break;
3698             // status = ok, page = 1
3699             if (!packet[2]) {
3700                 uint8_t page_number = packet[5];
3701                 uint8_t maximum_page_number = packet[6];
3702                 const uint8_t * features = &packet[7];
3703                 bool done = false;
3704                 switch (page_number){
3705                     case 1:
3706                         hci_handle_remote_features_page_1(conn, features);
3707                         if (maximum_page_number >= 2){
3708                             // get Secure Connections (Controller) from Page 2 if available
3709                             conn->bonding_flags |= BONDING_REQUEST_REMOTE_FEATURES_PAGE_2;
3710                         } else {
3711                             // otherwise, assume SC (Controller) == SC (Host)
3712                             if ((conn->bonding_flags & BONDING_REMOTE_SUPPORTS_SC_HOST) != 0){
3713                                 conn->bonding_flags |= BONDING_REMOTE_SUPPORTS_SC_CONTROLLER;
3714                             }
3715                             done = true;
3716                         }
3717                         break;
3718                     case 2:
3719                         hci_handle_remote_features_page_2(conn, features);
3720                         done = true;
3721                         break;
3722                     default:
3723                         break;
3724                 }
3725                 if (!done) break;
3726             }
3727             hci_handle_remote_features_received(conn);
3728             break;
3729 
3730         case HCI_EVENT_LINK_KEY_REQUEST:
3731 #ifndef ENABLE_EXPLICIT_LINK_KEY_REPLY
3732             hci_event_link_key_request_get_bd_addr(packet, addr);
3733             conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
3734             if (!conn) break;
3735 
3736             // lookup link key in db if not cached
3737             if ((conn->link_key_type == INVALID_LINK_KEY) && (hci_stack->link_key_db != NULL)){
3738                 hci_stack->link_key_db->get_link_key(conn->address, conn->link_key, &conn->link_key_type);
3739             }
3740 
3741             // response sent by hci_run()
3742             conn->authentication_flags |= AUTH_FLAG_HANDLE_LINK_KEY_REQUEST;
3743 #endif
3744             break;
3745 
3746         case HCI_EVENT_LINK_KEY_NOTIFICATION: {
3747             hci_event_link_key_request_get_bd_addr(packet, addr);
3748             conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
3749             if (!conn) break;
3750 
3751             hci_pairing_complete(conn, ERROR_CODE_SUCCESS);
3752 
3753             // CVE-2020-26555: ignore NULL link key
3754             // default link_key_type = INVALID_LINK_KEY asserts that NULL key won't be used for encryption
3755             if (btstack_is_null(&packet[8], 16)) break;
3756 
3757             link_key_type_t link_key_type = (link_key_type_t)packet[24];
3758             // Change Connection Encryption keeps link key type
3759             if (link_key_type != CHANGED_COMBINATION_KEY){
3760                 conn->link_key_type = link_key_type;
3761             }
3762 
3763             // cache link key. link keys stored in little-endian format for legacy reasons
3764             memcpy(&conn->link_key, &packet[8], 16);
3765 
3766             // only store link key:
3767             // - if bondable enabled
3768             if (hci_stack->bondable == false) break;
3769             // - if security level sufficient
3770             if (gap_security_level_for_link_key_type(link_key_type) < conn->requested_security_level) break;
3771             // - for SSP, also check if remote side requested bonding as well
3772             if (conn->link_key_type != COMBINATION_KEY){
3773                 bool remote_bonding = conn->io_cap_response_auth_req >= SSP_IO_AUTHREQ_MITM_PROTECTION_NOT_REQUIRED_DEDICATED_BONDING;
3774                 if (!remote_bonding){
3775                     break;
3776                 }
3777             }
3778             gap_store_link_key_for_bd_addr(addr, &packet[8], conn->link_key_type);
3779             break;
3780         }
3781 
3782         case HCI_EVENT_PIN_CODE_REQUEST:
3783             hci_event_pin_code_request_get_bd_addr(packet, addr);
3784             conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
3785             if (!conn) break;
3786 
3787             hci_pairing_started(conn, false);
3788             // abort pairing if: non-bondable mode (pin code request is not forwarded to app)
3789             if (!hci_stack->bondable ){
3790                 conn->authentication_flags |= AUTH_FLAG_DENY_PIN_CODE_REQUEST;
3791                 hci_pairing_complete(conn, ERROR_CODE_PAIRING_NOT_ALLOWED);
3792                 hci_run();
3793                 return;
3794             }
3795             // abort pairing if: LEVEL_4 required (pin code request is not forwarded to app)
3796             if ((hci_stack->gap_secure_connections_only_mode) || (conn->requested_security_level == LEVEL_4)){
3797                 log_info("Level 4 required, but SC not supported -> abort");
3798                 conn->authentication_flags |= AUTH_FLAG_DENY_PIN_CODE_REQUEST;
3799                 hci_pairing_complete(conn, ERROR_CODE_INSUFFICIENT_SECURITY);
3800                 hci_run();
3801                 return;
3802             }
3803             break;
3804 
3805         case HCI_EVENT_IO_CAPABILITY_RESPONSE:
3806             hci_event_io_capability_response_get_bd_addr(packet, addr);
3807             conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
3808             if (!conn) break;
3809 
3810             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], AUTH_FLAG_RECV_IO_CAPABILITIES_RESPONSE);
3811             hci_pairing_started(conn, true);
3812             conn->io_cap_response_auth_req = hci_event_io_capability_response_get_authentication_requirements(packet);
3813             conn->io_cap_response_io       = hci_event_io_capability_response_get_io_capability(packet);
3814 #ifdef ENABLE_CLASSIC_PAIRING_OOB
3815             conn->io_cap_response_oob_data = hci_event_io_capability_response_get_oob_data_present(packet);
3816 #endif
3817             break;
3818 
3819         case HCI_EVENT_IO_CAPABILITY_REQUEST:
3820             hci_event_io_capability_response_get_bd_addr(packet, addr);
3821             conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
3822             if (!conn) break;
3823 
3824             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], AUTH_FLAG_RECV_IO_CAPABILITIES_REQUEST);
3825             hci_connection_timestamp(conn);
3826             hci_pairing_started(conn, true);
3827             break;
3828 
3829 #ifdef ENABLE_CLASSIC_PAIRING_OOB
3830         case HCI_EVENT_REMOTE_OOB_DATA_REQUEST:
3831             hci_event_remote_oob_data_request_get_bd_addr(packet, addr);
3832             conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
3833             if (!conn) break;
3834 
3835             hci_connection_timestamp(conn);
3836 
3837             hci_pairing_started(conn, true);
3838 
3839             connectionSetAuthenticationFlags(conn, AUTH_FLAG_SEND_REMOTE_OOB_DATA_REPLY);
3840             break;
3841 #endif
3842 
3843         case HCI_EVENT_USER_CONFIRMATION_REQUEST:
3844             hci_event_user_confirmation_request_get_bd_addr(packet, addr);
3845             conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
3846             if (!conn) break;
3847             if (hci_ssp_security_level_possible_for_io_cap(conn->requested_security_level, hci_stack->ssp_io_capability, conn->io_cap_response_io)) {
3848                 if (hci_stack->ssp_auto_accept){
3849                     hci_add_connection_flags_for_flipped_bd_addr(&packet[2], AUTH_FLAG_SEND_USER_CONFIRM_REPLY);
3850                 };
3851             } else {
3852                 hci_pairing_complete(conn, ERROR_CODE_INSUFFICIENT_SECURITY);
3853                 hci_add_connection_flags_for_flipped_bd_addr(&packet[2], AUTH_FLAG_SEND_USER_CONFIRM_NEGATIVE_REPLY);
3854                 // don't forward event to app
3855                 hci_run();
3856                 return;
3857             }
3858             break;
3859 
3860         case HCI_EVENT_USER_PASSKEY_REQUEST:
3861             // Pairing using Passkey results in MITM protection. If Level 4 is required, support for SC is validated on IO Cap Request
3862             if (hci_stack->ssp_auto_accept){
3863                 hci_add_connection_flags_for_flipped_bd_addr(&packet[2], AUTH_FLAG_SEND_USER_PASSKEY_REPLY);
3864             };
3865             break;
3866 
3867         case HCI_EVENT_MODE_CHANGE:
3868             handle = hci_event_mode_change_get_handle(packet);
3869             conn = hci_connection_for_handle(handle);
3870             if (!conn) break;
3871             conn->connection_mode = hci_event_mode_change_get_mode(packet);
3872             log_info("HCI_EVENT_MODE_CHANGE, handle 0x%04x, mode %u", handle, conn->connection_mode);
3873             break;
3874 #endif
3875 
3876         case HCI_EVENT_ENCRYPTION_CHANGE:
3877         case HCI_EVENT_ENCRYPTION_CHANGE_V2:
3878             handle = hci_event_encryption_change_get_connection_handle(packet);
3879             conn = hci_connection_for_handle(handle);
3880             if (!conn) break;
3881             if (hci_event_encryption_change_get_status(packet) == ERROR_CODE_SUCCESS) {
3882                 uint8_t encryption_enabled = hci_event_encryption_change_get_encryption_enabled(packet);
3883                 if (encryption_enabled){
3884                     if (hci_is_le_connection(conn)){
3885                         // For LE, we accept connection as encrypted
3886                         conn->authentication_flags |= AUTH_FLAG_CONNECTION_ENCRYPTED;
3887                     }
3888 #ifdef ENABLE_CLASSIC
3889                     else {
3890 
3891                         // Detect Secure Connection -> Legacy Connection Downgrade Attack (BIAS)
3892                         bool sc_used_during_pairing = gap_secure_connection_for_link_key_type(conn->link_key_type);
3893                         bool connected_uses_aes_ccm = encryption_enabled == 2;
3894                         if (hci_stack->secure_connections_active && sc_used_during_pairing && !connected_uses_aes_ccm){
3895 #ifdef ENABLE_TESTING_SUPPORT
3896                             // The following tests require to reject L2CAP connection as SC has been disabled on the remote
3897                             // - GAP/SEC/SEM/BI-31-C
3898                             // - GAP/SEC/SEM/BI-32-C
3899                             // - GAP/SEC/SEM/BI-33-C
3900 
3901                             // Our release code (aggressively) disconnects the HCI connection, without a chance to respond to PTS
3902                             // To pass the tests, we only downgrade the link key type instead of the more secure disconnect
3903                             link_key_type_t new_link_key_type = UNAUTHENTICATED_COMBINATION_KEY_GENERATED_FROM_P192;
3904                             if (conn->link_key_type == AUTHENTICATED_COMBINATION_KEY_GENERATED_FROM_P256){
3905                                 new_link_key_type = AUTHENTICATED_COMBINATION_KEY_GENERATED_FROM_P192;
3906                             }
3907                             log_info("SC during pairing, but only E0 now -> downgrade link key type from %u to %u",
3908                                      conn->link_key_type, new_link_key_type);
3909                             conn->link_key_type = new_link_key_type;
3910 #else
3911                             log_info("SC during pairing, but only E0 now -> abort");
3912                             conn->bonding_flags |= BONDING_DISCONNECT_SECURITY_BLOCK;
3913                             break;
3914 #endif
3915                         }
3916 
3917                         // if AES-CCM is used, authentication used SC -> authentication was mutual and we can skip explicit authentication
3918                         if (connected_uses_aes_ccm){
3919                             conn->authentication_flags |= AUTH_FLAG_CONNECTION_AUTHENTICATED;
3920                         }
3921 
3922 #ifdef ENABLE_TESTING_SUPPORT
3923                         // work around for issue with PTS dongle
3924                         conn->authentication_flags |= AUTH_FLAG_CONNECTION_AUTHENTICATED;
3925 #endif
3926                         // validate encryption key size
3927                         if (hci_event_packet_get_type(packet) == HCI_EVENT_ENCRYPTION_CHANGE_V2) {
3928                             uint8_t encryption_key_size = hci_event_encryption_change_v2_get_encryption_key_size(packet);
3929                             // already got encryption key size
3930                             hci_handle_read_encryption_key_size_complete(conn, encryption_key_size);
3931                         } else {
3932                             if (hci_command_supported(SUPPORTED_HCI_COMMAND_READ_ENCRYPTION_KEY_SIZE)) {
3933                                 // For Classic, we need to validate encryption key size first, if possible (== supported by Controller)
3934                                 conn->bonding_flags |= BONDING_SEND_READ_ENCRYPTION_KEY_SIZE;
3935                             } else {
3936                                 // if not, pretend everything is perfect
3937                                 hci_handle_read_encryption_key_size_complete(conn, 16);
3938                             }
3939                         }
3940                     }
3941 #endif
3942                 } else {
3943                     conn->authentication_flags &= ~AUTH_FLAG_CONNECTION_ENCRYPTED;
3944                 }
3945             } else {
3946 #ifdef ENABLE_CLASSIC
3947                 if (!hci_is_le_connection(conn)){
3948                     uint8_t status = hci_event_encryption_change_get_status(packet);
3949                     if ((conn->bonding_flags & BONDING_DEDICATED) != 0){
3950                         conn->bonding_flags &= ~BONDING_DEDICATED;
3951                         conn->bonding_flags |= BONDING_DISCONNECT_DEDICATED_DONE;
3952                         conn->bonding_status = status;
3953                     }
3954                     // trigger security update -> level 0
3955                     hci_handle_mutual_authentication_completed(conn);
3956                 }
3957 #endif
3958             }
3959 
3960             break;
3961 
3962 #ifdef ENABLE_CLASSIC
3963         case HCI_EVENT_AUTHENTICATION_COMPLETE_EVENT:
3964             handle = hci_event_authentication_complete_get_connection_handle(packet);
3965             conn = hci_connection_for_handle(handle);
3966             if (!conn) break;
3967 
3968             // clear authentication active flag
3969             conn->bonding_flags &= ~BONDING_SENT_AUTHENTICATE_REQUEST;
3970             hci_pairing_complete(conn, hci_event_authentication_complete_get_status(packet));
3971 
3972             // authenticated only if auth status == 0
3973             if (hci_event_authentication_complete_get_status(packet) == 0){
3974                 // authenticated
3975                 conn->authentication_flags |= AUTH_FLAG_CONNECTION_AUTHENTICATED;
3976 
3977                 // If not already encrypted, start encryption
3978                 if ((conn->authentication_flags & AUTH_FLAG_CONNECTION_ENCRYPTED) == 0){
3979                     conn->bonding_flags |= BONDING_SEND_ENCRYPTION_REQUEST;
3980                     break;
3981                 }
3982             }
3983 
3984             // emit updated security level (will be 0 if not authenticated)
3985             hci_handle_mutual_authentication_completed(conn);
3986             break;
3987 
3988         case HCI_EVENT_SIMPLE_PAIRING_COMPLETE:
3989             hci_event_simple_pairing_complete_get_bd_addr(packet, addr);
3990             conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
3991             if (!conn) break;
3992 
3993             // treat successfully paired connection as authenticated
3994             if (hci_event_simple_pairing_complete_get_status(packet) == ERROR_CODE_SUCCESS){
3995                 conn->authentication_flags |= AUTH_FLAG_CONNECTION_AUTHENTICATED;
3996             }
3997 
3998             hci_pairing_complete(conn, hci_event_simple_pairing_complete_get_status(packet));
3999             break;
4000 #endif
4001 
4002         // HCI_EVENT_DISCONNECTION_COMPLETE
4003         // has been split, to first notify stack before shutting connection down
4004         // see end of function, too.
4005         case HCI_EVENT_DISCONNECTION_COMPLETE:
4006             if (packet[2]) break;   // status != 0
4007             handle = little_endian_read_16(packet, 3);
4008             // drop outgoing ACL fragments if it is for closed connection and release buffer if tx not active
4009             if (hci_stack->acl_fragmentation_total_size > 0u) {
4010                 if (handle == READ_ACL_CONNECTION_HANDLE(hci_stack->hci_packet_buffer)){
4011                     int release_buffer = hci_stack->acl_fragmentation_tx_active == 0u;
4012                     log_info("drop fragmented ACL data for closed connection, release buffer %u", release_buffer);
4013                     hci_stack->acl_fragmentation_total_size = 0;
4014                     hci_stack->acl_fragmentation_pos = 0;
4015                     if (release_buffer){
4016                         hci_release_packet_buffer();
4017                     }
4018                 }
4019             }
4020 
4021 #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
4022             // drop outgoing ISO fragments if it is for closed connection and release buffer if tx not active
4023             if (hci_stack->iso_fragmentation_total_size > 0u) {
4024                 if (handle == READ_ISO_CONNECTION_HANDLE(hci_stack->hci_packet_buffer)){
4025                     int release_buffer = hci_stack->iso_fragmentation_tx_active == 0u;
4026                     log_info("drop fragmented ISO data for closed connection, release buffer %u", release_buffer);
4027                     hci_stack->iso_fragmentation_total_size = 0;
4028                     hci_stack->iso_fragmentation_pos = 0;
4029                     if (release_buffer){
4030                         hci_release_packet_buffer();
4031                     }
4032                 }
4033             }
4034 
4035             // finalize iso stream for CIS handle
4036             iso_stream = hci_iso_stream_for_con_handle(handle);
4037             if (iso_stream != NULL){
4038                 hci_iso_stream_finalize(iso_stream);
4039                 break;
4040             }
4041 
4042             // finalize iso stream(s) for ACL handle
4043             btstack_linked_list_iterator_init(&it, &hci_stack->iso_streams);
4044             while (btstack_linked_list_iterator_has_next(&it)){
4045                 hci_iso_stream_t * iso_stream = (hci_iso_stream_t *) btstack_linked_list_iterator_next(&it);
4046                 if (iso_stream->acl_handle == handle ) {
4047                     hci_iso_stream_finalize(iso_stream);
4048                 }
4049             }
4050 #endif
4051 
4052             conn = hci_connection_for_handle(handle);
4053             if (!conn) break;
4054 #ifdef ENABLE_CLASSIC
4055             // pairing failed if it was ongoing
4056             hci_pairing_complete(conn, ERROR_CODE_REMOTE_USER_TERMINATED_CONNECTION);
4057 #endif
4058 
4059             // emit dedicatd bonding event
4060             if (conn->bonding_flags & BONDING_EMIT_COMPLETE_ON_DISCONNECT){
4061                 hci_emit_dedicated_bonding_result(conn->address, conn->bonding_status);
4062             }
4063 
4064             // mark connection for shutdown, stop timers, reset state
4065             conn->state = RECEIVED_DISCONNECTION_COMPLETE;
4066             hci_connection_stop_timer(conn);
4067             hci_connection_init(conn);
4068 
4069 #ifdef ENABLE_BLE
4070 #ifdef ENABLE_LE_PERIPHERAL
4071             // re-enable advertisements for le connections if active
4072             if (hci_is_le_connection(conn)){
4073                 hci_update_advertisements_enabled_for_current_roles();
4074             }
4075 #endif
4076 #endif
4077             break;
4078 
4079         case HCI_EVENT_HARDWARE_ERROR:
4080             log_error("Hardware Error: 0x%02x", packet[2]);
4081             if (hci_stack->hardware_error_callback){
4082                 (*hci_stack->hardware_error_callback)(packet[2]);
4083             } else {
4084                 // if no special requests, just reboot stack
4085                 hci_power_control_off();
4086                 hci_power_control_on();
4087             }
4088             break;
4089 
4090 #ifdef ENABLE_CLASSIC
4091         case HCI_EVENT_ROLE_CHANGE:
4092             if (packet[2]) break;   // status != 0
4093             reverse_bd_addr(&packet[3], addr);
4094             addr_type = BD_ADDR_TYPE_ACL;
4095             conn = hci_connection_for_bd_addr_and_type(addr, addr_type);
4096             if (!conn) break;
4097             conn->role = (hci_role_t) packet[9];
4098             break;
4099 #endif
4100 
4101         case HCI_EVENT_TRANSPORT_PACKET_SENT:
4102             // release packet buffer only for asynchronous transport and if there are not further fragments
4103             if (hci_transport_synchronous()) {
4104                 log_error("Synchronous HCI Transport shouldn't send HCI_EVENT_TRANSPORT_PACKET_SENT");
4105                 return; // instead of break: to avoid re-entering hci_run()
4106             }
4107             hci_stack->acl_fragmentation_tx_active = 0;
4108 #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
4109             hci_stack->iso_fragmentation_tx_active = 0;
4110             if (hci_stack->iso_fragmentation_total_size) break;
4111 #endif
4112             if (hci_stack->acl_fragmentation_total_size) break;
4113             hci_release_packet_buffer();
4114 
4115 #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
4116             hci_iso_notify_can_send_now();
4117 #endif
4118             // L2CAP receives this event via the hci_emit_event below
4119 
4120 #ifdef ENABLE_CLASSIC
4121             // For SCO, we do the can_send_now_check here
4122             hci_notify_if_sco_can_send_now();
4123 #endif
4124             break;
4125 
4126 #ifdef ENABLE_CLASSIC
4127         case HCI_EVENT_SCO_CAN_SEND_NOW:
4128             // For SCO, we do the can_send_now_check here
4129             hci_stack->sco_can_send_now = true;
4130             hci_notify_if_sco_can_send_now();
4131             return;
4132 
4133         // explode inquriy results for easier consumption
4134         case HCI_EVENT_INQUIRY_RESULT:
4135         case HCI_EVENT_INQUIRY_RESULT_WITH_RSSI:
4136         case HCI_EVENT_EXTENDED_INQUIRY_RESPONSE:
4137             gap_inquiry_explode(packet, size);
4138             break;
4139 #endif
4140 
4141 #ifdef ENABLE_BLE
4142         case HCI_EVENT_LE_META:
4143             switch (packet[2]){
4144 #ifdef ENABLE_LE_CENTRAL
4145                 case HCI_SUBEVENT_LE_ADVERTISING_REPORT:
4146                     if (!hci_stack->le_scanning_enabled) break;
4147                     le_handle_advertisement_report(packet, size);
4148                     break;
4149 #ifdef ENABLE_LE_EXTENDED_ADVERTISING
4150                 case HCI_SUBEVENT_LE_EXTENDED_ADVERTISING_REPORT:
4151                     if (!hci_stack->le_scanning_enabled) break;
4152                     le_handle_extended_advertisement_report(packet, size);
4153                     break;
4154                 case HCI_SUBEVENT_LE_PERIODIC_ADVERTISING_SYNC_ESTABLISHMENT:
4155                     hci_stack->le_periodic_sync_request = LE_CONNECTING_IDLE;
4156                     hci_stack->le_periodic_sync_state = LE_CONNECTING_IDLE;
4157                     break;
4158                 case HCI_SUBEVENT_LE_ADVERTISING_SET_TERMINATED:
4159                     advertising_handle = hci_subevent_le_advertising_set_terminated_get_advertising_handle(packet);
4160                     btstack_linked_list_iterator_init(&it, &hci_stack->le_advertising_sets);
4161                     while (btstack_linked_list_iterator_has_next(&it)) {
4162                         le_advertising_set_t *advertising_set = (le_advertising_set_t *) btstack_linked_list_iterator_next(&it);
4163                         if (advertising_set->advertising_handle == advertising_handle){
4164                             advertising_set->state &= ~(LE_ADVERTISEMENT_STATE_ACTIVE | LE_ADVERTISEMENT_STATE_ENABLED);
4165                         }
4166                     }
4167                     break;
4168 #endif
4169 #endif
4170                 case HCI_SUBEVENT_LE_CONNECTION_COMPLETE:
4171                 case HCI_SUBEVENT_LE_ENHANCED_CONNECTION_COMPLETE_V1:
4172                 case HCI_SUBEVENT_LE_ENHANCED_CONNECTION_COMPLETE_V2:
4173 					event_handle_le_connection_complete(packet);
4174                     break;
4175 
4176                 // log_info("LE buffer size: %u, count %u", little_endian_read_16(packet,6), packet[8]);
4177                 case HCI_SUBEVENT_LE_CONNECTION_UPDATE_COMPLETE:
4178                     handle = hci_subevent_le_connection_update_complete_get_connection_handle(packet);
4179                     conn = hci_connection_for_handle(handle);
4180                     if (!conn) break;
4181                     conn->le_connection_interval = hci_subevent_le_connection_update_complete_get_conn_interval(packet);
4182                     break;
4183 
4184                 case HCI_SUBEVENT_LE_REMOTE_CONNECTION_PARAMETER_REQUEST:
4185                     // connection
4186                     handle = hci_subevent_le_remote_connection_parameter_request_get_connection_handle(packet);
4187                     conn = hci_connection_for_handle(handle);
4188                     if (conn) {
4189                         // read arguments
4190                         uint16_t le_conn_interval_min   = hci_subevent_le_remote_connection_parameter_request_get_interval_min(packet);
4191                         uint16_t le_conn_interval_max   = hci_subevent_le_remote_connection_parameter_request_get_interval_max(packet);
4192                         uint16_t le_conn_latency        = hci_subevent_le_remote_connection_parameter_request_get_latency(packet);
4193                         uint16_t le_supervision_timeout = hci_subevent_le_remote_connection_parameter_request_get_timeout(packet);
4194 
4195                         // validate against current connection parameter range
4196                         le_connection_parameter_range_t existing_range;
4197                         gap_get_connection_parameter_range(&existing_range);
4198                         int update_parameter = gap_connection_parameter_range_included(&existing_range, le_conn_interval_min, le_conn_interval_max, le_conn_latency, le_supervision_timeout);
4199                         if (update_parameter){
4200                             conn->le_con_parameter_update_state = CON_PARAMETER_UPDATE_REPLY;
4201                             conn->le_conn_interval_min = le_conn_interval_min;
4202                             conn->le_conn_interval_max = le_conn_interval_max;
4203                             conn->le_conn_latency = le_conn_latency;
4204                             conn->le_supervision_timeout = le_supervision_timeout;
4205                         } else {
4206                             conn->le_con_parameter_update_state = CON_PARAMETER_UPDATE_NEGATIVE_REPLY;
4207                         }
4208                     }
4209                     break;
4210 #ifdef ENABLE_LE_LIMIT_ACL_FRAGMENT_BY_MAX_OCTETS
4211                 case HCI_SUBEVENT_LE_DATA_LENGTH_CHANGE:
4212                     handle = hci_subevent_le_data_length_change_get_connection_handle(packet);
4213                     conn = hci_connection_for_handle(handle);
4214                     if (conn) {
4215                         conn->le_max_tx_octets = hci_subevent_le_data_length_change_get_max_tx_octets(packet);
4216                     }
4217                     break;
4218 #endif
4219 #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
4220                 case HCI_SUBEVENT_LE_CIS_REQUEST:
4221                     // incoming CIS request, allocate iso stream object and cache metadata
4222                     iso_stream = hci_iso_stream_create(HCI_ISO_TYPE_CIS, HCI_ISO_STREAM_W4_USER,
4223                                                        hci_subevent_le_cis_request_get_cig_id(packet),
4224                                                        hci_subevent_le_cis_request_get_cis_id(packet));
4225                     // if there's no memory, gap_cis_accept/gap_cis_reject will fail
4226                     if (iso_stream != NULL){
4227                         iso_stream->cis_handle = hci_subevent_le_cis_request_get_cis_connection_handle(packet);
4228                         iso_stream->acl_handle = hci_subevent_le_cis_request_get_acl_connection_handle(packet);
4229                     }
4230                     break;
4231                 case HCI_SUBEVENT_LE_CIS_ESTABLISHED:
4232                     if (hci_stack->iso_active_operation_type == HCI_ISO_TYPE_CIS){
4233                         handle = hci_subevent_le_cis_established_get_connection_handle(packet);
4234                         uint8_t status = hci_subevent_le_cis_established_get_status(packet);
4235                         iso_stream = hci_iso_stream_for_con_handle(handle);
4236                         btstack_assert(iso_stream != NULL);
4237                         // track SDU
4238                         iso_stream->max_sdu_c_to_p = hci_subevent_le_cis_established_get_max_pdu_c_to_p(packet);
4239                         iso_stream->max_sdu_p_to_c = hci_subevent_le_cis_established_get_max_pdu_p_to_c(packet);
4240                         if (hci_stack->iso_active_operation_group_id == HCI_ISO_GROUP_ID_SINGLE_CIS){
4241                             // CIS Accept by Peripheral
4242                             if (status == ERROR_CODE_SUCCESS){
4243                                 if (iso_stream->max_sdu_p_to_c > 0){
4244                                     // we're peripheral and we will send data
4245                                     iso_stream->state = HCI_ISO_STREAM_STATE_W2_SETUP_ISO_INPUT;
4246                                 } else {
4247                                     // we're peripheral and we will only receive data
4248                                     iso_stream->state = HCI_ISO_STREAM_STATE_W2_SETUP_ISO_OUTPUT;
4249                                 }
4250                             } else {
4251                                 hci_cis_handle_created(iso_stream, status);
4252                             }
4253                             hci_stack->iso_active_operation_type = HCI_ISO_TYPE_INVALID;
4254                         } else {
4255                             // CIG Setup by Central
4256                             le_audio_cig_t * cig = hci_cig_for_id(hci_stack->iso_active_operation_group_id);
4257                             btstack_assert(cig != NULL);
4258                             // update iso stream state
4259                             if (status == ERROR_CODE_SUCCESS){
4260                                 iso_stream->state = HCI_ISO_STREAM_STATE_ESTABLISHED;
4261                             } else {
4262                                 iso_stream->state = HCI_ISO_STREAM_STATE_IDLE;
4263                             }
4264                             // update cig state
4265                             uint8_t i;
4266                             for (i=0;i<cig->num_cis;i++){
4267                                 if (cig->cis_con_handles[i] == handle){
4268                                     cig->cis_setup_active[i] = false;
4269                                     if (status == ERROR_CODE_SUCCESS){
4270                                         cig->cis_established[i] = true;
4271                                     } else {
4272                                         hci_cis_handle_created(iso_stream, status);
4273                                     }
4274                                 }
4275                             }
4276 
4277                             // trigger iso path setup if complete
4278                             bool cis_setup_active = false;
4279                             for (i=0;i<cig->num_cis;i++){
4280                                 cis_setup_active |= cig->cis_setup_active[i];
4281                             }
4282                             if (cis_setup_active == false){
4283                                 cig->state_vars.next_cis = 0;
4284                                 cig->state = LE_AUDIO_CIG_STATE_SETUP_ISO_PATH;
4285                                 hci_stack->iso_active_operation_type = HCI_ISO_TYPE_INVALID;
4286                             }
4287                         }
4288                     }
4289                     break;
4290                 case HCI_SUBEVENT_LE_CREATE_BIG_COMPLETE:
4291                     hci_stack->iso_active_operation_type = HCI_ISO_TYPE_INVALID;
4292                     big = hci_big_for_handle(packet[4]);
4293                     if (big != NULL){
4294                         uint8_t status = packet[3];
4295                         if (status == ERROR_CODE_SUCCESS){
4296                             // store bis_con_handles and trigger iso path setup
4297                             uint8_t num_bis = btstack_min(MAX_NR_BIS, packet[20]);
4298                             uint8_t i;
4299                             for (i=0;i<num_bis;i++){
4300                                 hci_con_handle_t bis_handle = (hci_con_handle_t) little_endian_read_16(packet, 21 + (2 * i));
4301                                 big->bis_con_handles[i] = bis_handle;
4302                                 // assign bis handle
4303                                 btstack_linked_list_iterator_t it;
4304                                 btstack_linked_list_iterator_init(&it, &hci_stack->iso_streams);
4305                                 while (btstack_linked_list_iterator_has_next(&it)){
4306                                     hci_iso_stream_t * iso_stream = (hci_iso_stream_t *) btstack_linked_list_iterator_next(&it);
4307                                     if ((iso_stream->state == HCI_ISO_STREAM_STATE_REQUESTED ) &&
4308                                         (iso_stream->group_id == big->big_handle)){
4309                                         iso_stream->cis_handle = bis_handle;
4310                                         iso_stream->state = HCI_ISO_STREAM_STATE_ESTABLISHED;
4311                                         break;
4312                                     }
4313                                 }
4314                             }
4315                             if (big->state == LE_AUDIO_BIG_STATE_W4_ESTABLISHED) {
4316                                 big->state = LE_AUDIO_BIG_STATE_SETUP_ISO_PATH;
4317                                 big->state_vars.next_bis = 0;
4318                             }
4319                         } else {
4320                             // create BIG failed or has been stopped by us
4321                             hci_iso_stream_finalize_by_type_and_group_id(HCI_ISO_TYPE_BIS, big->big_handle);
4322                             btstack_linked_list_remove(&hci_stack->le_audio_bigs, (btstack_linked_item_t *) big);
4323                             if (big->state == LE_AUDIO_BIG_STATE_W4_ESTABLISHED){
4324                                 hci_emit_big_created(big, status);
4325                             } else {
4326                                 hci_emit_big_terminated(big);
4327                             }
4328                         }
4329                     }
4330                     break;
4331                 case HCI_SUBEVENT_LE_TERMINATE_BIG_COMPLETE:
4332                     hci_stack->iso_active_operation_type = HCI_ISO_TYPE_INVALID;
4333                     big = hci_big_for_handle(hci_subevent_le_terminate_big_complete_get_big_handle(packet));
4334                     if (big != NULL){
4335                         // finalize associated ISO streams
4336                         btstack_linked_list_iterator_t it;
4337                         btstack_linked_list_iterator_init(&it, &hci_stack->iso_streams);
4338                         while (btstack_linked_list_iterator_has_next(&it)){
4339                             hci_iso_stream_t * iso_stream = (hci_iso_stream_t *) btstack_linked_list_iterator_next(&it);
4340                             if (iso_stream->group_id == big->big_handle){
4341                                 log_info("BIG Terminated, big_handle 0x%02x, con handle 0x%04x", iso_stream->group_id, iso_stream->cis_handle);
4342                                 btstack_linked_list_iterator_remove(&it);
4343                                 btstack_memory_hci_iso_stream_free(iso_stream);
4344                             }
4345                         }
4346                         btstack_linked_list_remove(&hci_stack->le_audio_bigs, (btstack_linked_item_t *) big);
4347                         switch (big->state){
4348                             case LE_AUDIO_BIG_STATE_W4_TERMINATED_AFTER_SETUP_FAILED:
4349                                 hci_emit_big_created(big, big->state_vars.status);
4350                                 break;
4351                             default:
4352                                 hci_emit_big_terminated(big);
4353                                 break;
4354                         }
4355                     }
4356                     break;
4357                 case HCI_SUBEVENT_LE_BIG_SYNC_ESTABLISHED:
4358                     hci_stack->iso_active_operation_type = HCI_ISO_TYPE_INVALID;
4359                     big_sync = hci_big_sync_for_handle(packet[4]);
4360                     if (big_sync != NULL){
4361                         uint8_t status = packet[3];
4362                         uint8_t big_handle = packet[4];
4363                         if (status == ERROR_CODE_SUCCESS){
4364                             // store bis_con_handles and trigger iso path setup
4365                             uint8_t num_bis = btstack_min(MAX_NR_BIS, packet[16]);
4366                             uint8_t i;
4367                             for (i=0;i<num_bis;i++){
4368                                 big_sync->bis_con_handles[i] = little_endian_read_16(packet, 17 + (2 * i));
4369                             }
4370                             if (big_sync->state == LE_AUDIO_BIG_STATE_W4_ESTABLISHED) {
4371                                 // trigger iso path setup
4372                                 big_sync->state = LE_AUDIO_BIG_STATE_SETUP_ISO_PATH;
4373                                 big_sync->state_vars.next_bis = 0;
4374                             }
4375                         } else {
4376                             // create BIG Sync failed or has been stopped by us
4377                             btstack_linked_list_remove(&hci_stack->le_audio_big_syncs, (btstack_linked_item_t *) big_sync);
4378                             if (big_sync->state == LE_AUDIO_BIG_STATE_W4_ESTABLISHED) {
4379                                 hci_emit_big_sync_created(big_sync, status);
4380                             } else {
4381                                 hci_emit_big_sync_stopped(big_handle);
4382                             }
4383                         }
4384                     }
4385                     break;
4386                 case HCI_SUBEVENT_LE_BIG_SYNC_LOST:
4387                     hci_stack->iso_active_operation_type = HCI_ISO_TYPE_INVALID;
4388                     big_sync = hci_big_sync_for_handle(packet[4]);
4389                     if (big_sync != NULL){
4390                         uint8_t big_handle = packet[4];
4391                         btstack_linked_list_remove(&hci_stack->le_audio_big_syncs, (btstack_linked_item_t *) big_sync);
4392                         hci_emit_big_sync_stopped(big_handle);
4393                     }
4394                     break;
4395 #endif
4396                 default:
4397                     break;
4398             }
4399             break;
4400 #endif
4401         case HCI_EVENT_VENDOR_SPECIFIC:
4402             // Vendor specific commands often create vendor specific event instead of num completed packets
4403             // To avoid getting stuck as num_cmds_packets is zero, reset it to 1 for controllers with this behaviour
4404             switch (hci_stack->manufacturer){
4405                 case BLUETOOTH_COMPANY_ID_CAMBRIDGE_SILICON_RADIO:
4406                     hci_stack->num_cmd_packets = 1;
4407                     break;
4408                 default:
4409                     break;
4410             }
4411             break;
4412         default:
4413             break;
4414     }
4415 
4416     handle_event_for_current_stack_state(packet, size);
4417 
4418     // notify upper stack
4419 	hci_emit_event(packet, size, 0);   // don't dump, already happened in packet handler
4420 
4421     // moved here to give upper stack a chance to close down everything with hci_connection_t intact
4422     if ((hci_event_packet_get_type(packet) == HCI_EVENT_DISCONNECTION_COMPLETE) && (packet[2] == 0)){
4423 		handle = little_endian_read_16(packet, 3);
4424 		hci_connection_t * aConn = hci_connection_for_handle(handle);
4425 		// discard connection if app did not trigger a reconnect in the event handler
4426 		if (aConn && aConn->state == RECEIVED_DISCONNECTION_COMPLETE){
4427 			hci_shutdown_connection(aConn);
4428 		}
4429 #ifdef ENABLE_CONTROLLER_DUMP_PACKETS
4430         hci_controller_dump_packets();
4431 #endif
4432     }
4433 
4434 	// execute main loop
4435 	hci_run();
4436 }
4437 
4438 #ifdef ENABLE_CLASSIC
4439 
4440 #ifdef ENABLE_SCO_OVER_HCI
4441 static void sco_tx_timeout_handler(btstack_timer_source_t * ts);
4442 static void sco_schedule_tx(hci_connection_t * conn);
4443 
4444 static void sco_tx_timeout_handler(btstack_timer_source_t * ts){
4445     log_debug("SCO TX Timeout");
4446     hci_con_handle_t con_handle = (hci_con_handle_t) (uintptr_t) btstack_run_loop_get_timer_context(ts);
4447     hci_connection_t * conn = hci_connection_for_handle(con_handle);
4448     if (!conn) return;
4449 
4450     // trigger send
4451     conn->sco_tx_ready = 1;
4452     // extra packet if CVSD but SCO buffer is too short
4453     if (((hci_stack->sco_voice_setting_active & 0x03) != 0x03) && (hci_stack->sco_data_packet_length < 123)){
4454         conn->sco_tx_ready++;
4455     }
4456     hci_notify_if_sco_can_send_now();
4457 }
4458 
4459 
4460 #define SCO_TX_AFTER_RX_MS (6)
4461 
4462 static void sco_schedule_tx(hci_connection_t * conn){
4463 
4464     uint32_t now = btstack_run_loop_get_time_ms();
4465     uint32_t sco_tx_ms = conn->sco_rx_ms + SCO_TX_AFTER_RX_MS;
4466     int time_delta_ms = sco_tx_ms - now;
4467 
4468     btstack_timer_source_t * timer = (conn->sco_rx_count & 1) ? &conn->timeout : &conn->timeout_sco;
4469 
4470     // log_error("SCO TX at %u in %u", (int) sco_tx_ms, time_delta_ms);
4471     btstack_run_loop_remove_timer(timer);
4472     btstack_run_loop_set_timer(timer, time_delta_ms);
4473     btstack_run_loop_set_timer_context(timer, (void *) (uintptr_t) conn->con_handle);
4474     btstack_run_loop_set_timer_handler(timer, &sco_tx_timeout_handler);
4475     btstack_run_loop_add_timer(timer);
4476 }
4477 #endif
4478 
4479 static void sco_handler(uint8_t * packet, uint16_t size){
4480     // lookup connection struct
4481     hci_con_handle_t con_handle = READ_SCO_CONNECTION_HANDLE(packet);
4482     hci_connection_t * conn     = hci_connection_for_handle(con_handle);
4483     if (!conn) return;
4484 
4485 #ifdef ENABLE_SCO_OVER_HCI
4486     // CSR 8811 prefixes 60 byte SCO packet in transparent mode with 20 zero bytes -> skip first 20 payload bytes
4487     if (hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_CAMBRIDGE_SILICON_RADIO){
4488         if ((size == 83) && ((hci_stack->sco_voice_setting_active & 0x03) == 0x03)){
4489             packet[2] = 0x3c;
4490             memmove(&packet[3], &packet[23], 63);
4491             size = 63;
4492         }
4493     }
4494 
4495     if (hci_have_usb_transport()){
4496         // Nothing to do
4497     } else {
4498         // log_debug("sco flow %u, handle 0x%04x, packets sent %u, bytes send %u", hci_stack->synchronous_flow_control_enabled, (int) con_handle, conn->num_packets_sent, conn->num_sco_bytes_sent);
4499         if (hci_stack->synchronous_flow_control_enabled == 0){
4500             uint32_t now = btstack_run_loop_get_time_ms();
4501 
4502             if (!conn->sco_rx_valid){
4503                 // ignore first 10 packets
4504                 conn->sco_rx_count++;
4505                 // log_debug("sco rx count %u", conn->sco_rx_count);
4506                 if (conn->sco_rx_count == 10) {
4507                     // use first timestamp as is and pretent it just started
4508                     conn->sco_rx_ms = now;
4509                     conn->sco_rx_valid = 1;
4510                     conn->sco_rx_count = 0;
4511                     sco_schedule_tx(conn);
4512                 }
4513             } else {
4514                 // track expected arrival timme
4515                 conn->sco_rx_count++;
4516                 conn->sco_rx_ms += 7;
4517                 int delta = (int32_t) (now - conn->sco_rx_ms);
4518                 if (delta > 0){
4519                     conn->sco_rx_ms++;
4520                 }
4521                 // log_debug("sco rx %u", conn->sco_rx_ms);
4522                 sco_schedule_tx(conn);
4523             }
4524         }
4525     }
4526 #endif
4527 
4528     // deliver to app
4529     if (hci_stack->sco_packet_handler) {
4530         hci_stack->sco_packet_handler(HCI_SCO_DATA_PACKET, 0, packet, size);
4531     }
4532 
4533 #ifdef HAVE_SCO_TRANSPORT
4534     // We can send one packet for each received packet
4535     conn->sco_tx_ready++;
4536     hci_notify_if_sco_can_send_now();
4537 #endif
4538 
4539 #ifdef ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL
4540     conn->num_packets_completed++;
4541     hci_stack->host_completed_packets = 1;
4542     hci_run();
4543 #endif
4544 }
4545 #endif
4546 
4547 static void packet_handler(uint8_t packet_type, uint8_t *packet, uint16_t size){
4548     hci_dump_packet(packet_type, 1, packet, size);
4549     switch (packet_type) {
4550         case HCI_EVENT_PACKET:
4551             event_handler(packet, size);
4552             break;
4553         case HCI_ACL_DATA_PACKET:
4554             acl_handler(packet, size);
4555             break;
4556 #ifdef ENABLE_CLASSIC
4557         case HCI_SCO_DATA_PACKET:
4558             sco_handler(packet, size);
4559             break;
4560 #endif
4561 #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
4562         case HCI_ISO_DATA_PACKET:
4563             hci_iso_packet_handler(packet, size);
4564             break;
4565 #endif
4566         default:
4567             break;
4568     }
4569 }
4570 
4571 /**
4572  * @brief Add event packet handler.
4573  */
4574 void hci_add_event_handler(btstack_packet_callback_registration_t * callback_handler){
4575     btstack_linked_list_add_tail(&hci_stack->event_handlers, (btstack_linked_item_t*) callback_handler);
4576 }
4577 
4578 /**
4579  * @brief Remove event packet handler.
4580  */
4581 void hci_remove_event_handler(btstack_packet_callback_registration_t * callback_handler){
4582     btstack_linked_list_remove(&hci_stack->event_handlers, (btstack_linked_item_t*) callback_handler);
4583 }
4584 
4585 /** Register HCI packet handlers */
4586 void hci_register_acl_packet_handler(btstack_packet_handler_t handler){
4587     hci_stack->acl_packet_handler = handler;
4588 }
4589 
4590 #ifdef ENABLE_CLASSIC
4591 /**
4592  * @brief Registers a packet handler for SCO data. Used for HSP and HFP profiles.
4593  */
4594 void hci_register_sco_packet_handler(btstack_packet_handler_t handler){
4595     hci_stack->sco_packet_handler = handler;
4596 }
4597 #endif
4598 
4599 #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
4600 void hci_register_iso_packet_handler(btstack_packet_handler_t handler){
4601     hci_stack->iso_packet_handler = handler;
4602 }
4603 #endif
4604 
4605 static void hci_state_reset(void){
4606     // no connections yet
4607     hci_stack->connections = NULL;
4608 
4609     // keep discoverable/connectable as this has been requested by the client(s)
4610     // hci_stack->discoverable = 0;
4611     // hci_stack->connectable = 0;
4612     // hci_stack->bondable = 1;
4613     // hci_stack->own_addr_type = 0;
4614 
4615     // buffer is free
4616     hci_stack->hci_packet_buffer_reserved = false;
4617 
4618     // no pending cmds
4619     hci_stack->decline_reason = 0;
4620 
4621     hci_stack->secure_connections_active = false;
4622 
4623 #ifdef ENABLE_CLASSIC
4624     hci_stack->inquiry_lap = GAP_IAC_GENERAL_INQUIRY;
4625     hci_stack->page_timeout = 0x6000;  // ca. 15 sec
4626 
4627     hci_stack->gap_tasks_classic =
4628             GAP_TASK_SET_DEFAULT_LINK_POLICY |
4629             GAP_TASK_SET_CLASS_OF_DEVICE |
4630             GAP_TASK_SET_LOCAL_NAME |
4631             GAP_TASK_SET_EIR_DATA |
4632             GAP_TASK_WRITE_SCAN_ENABLE |
4633             GAP_TASK_WRITE_PAGE_TIMEOUT;
4634 #endif
4635 
4636 #ifdef ENABLE_CLASSIC_PAIRING_OOB
4637     hci_stack->classic_read_local_oob_data = false;
4638     hci_stack->classic_oob_con_handle = HCI_CON_HANDLE_INVALID;
4639 #endif
4640 
4641     // LE
4642 #ifdef ENABLE_BLE
4643     memset(hci_stack->le_random_address, 0, 6);
4644     hci_stack->le_random_address_set = 0;
4645 #endif
4646 #ifdef ENABLE_LE_CENTRAL
4647     hci_stack->le_scanning_active  = false;
4648     hci_stack->le_scanning_param_update = true;
4649     hci_stack->le_connecting_state = LE_CONNECTING_IDLE;
4650     hci_stack->le_connecting_request = LE_CONNECTING_IDLE;
4651     hci_stack->le_whitelist_capacity = 0;
4652 #ifdef ENABLE_LE_EXTENDED_ADVERTISING
4653     hci_stack->le_periodic_terminate_sync_handle = HCI_CON_HANDLE_INVALID;
4654 #endif
4655 #endif
4656 #ifdef ENABLE_LE_PERIPHERAL
4657     hci_stack->le_advertisements_state &= ~LE_ADVERTISEMENT_STATE_ACTIVE;
4658     if ((hci_stack->le_advertisements_state & LE_ADVERTISEMENT_STATE_PARAMS_SET) != 0){
4659         hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_SET_PARAMS;
4660     }
4661     if (hci_stack->le_advertisements_data != NULL){
4662         hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_SET_ADV_DATA;
4663     }
4664 #endif
4665 #ifdef ENABLE_LE_PRIVACY_ADDRESS_RESOLUTION
4666     hci_stack->le_resolving_list_state = LE_RESOLVING_LIST_SEND_ENABLE_ADDRESS_RESOLUTION;
4667 #endif
4668 #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
4669     hci_stack->iso_active_operation_type = HCI_ISO_TYPE_INVALID;
4670     hci_stack->iso_active_operation_group_id = HCI_ISO_GROUP_ID_INVALID;
4671 #endif
4672 }
4673 
4674 #ifdef ENABLE_CLASSIC
4675 /**
4676  * @brief Configure Bluetooth hardware control. Has to be called before power on.
4677  */
4678 void hci_set_link_key_db(btstack_link_key_db_t const * link_key_db){
4679     // store and open remote device db
4680     hci_stack->link_key_db = link_key_db;
4681     if (hci_stack->link_key_db) {
4682         hci_stack->link_key_db->open();
4683     }
4684 }
4685 #endif
4686 
4687 void hci_init(const hci_transport_t *transport, const void *config){
4688 
4689 #ifdef HAVE_MALLOC
4690     if (!hci_stack) {
4691         hci_stack = (hci_stack_t*) malloc(sizeof(hci_stack_t));
4692     }
4693 #else
4694     hci_stack = &hci_stack_static;
4695 #endif
4696     memset(hci_stack, 0, sizeof(hci_stack_t));
4697 
4698     // reference to use transport layer implementation
4699     hci_stack->hci_transport = transport;
4700 
4701     // reference to used config
4702     hci_stack->config = config;
4703 
4704     // setup pointer for outgoing packet buffer
4705     hci_stack->hci_packet_buffer = &hci_stack->hci_packet_buffer_data[HCI_OUTGOING_PRE_BUFFER_SIZE];
4706 
4707     // max acl payload size defined in config.h
4708     hci_stack->acl_data_packet_length = HCI_ACL_PAYLOAD_SIZE;
4709 
4710     // register packet handlers with transport
4711     transport->register_packet_handler(&packet_handler);
4712 
4713     hci_stack->state = HCI_STATE_OFF;
4714 
4715     // class of device
4716     hci_stack->class_of_device = 0x007a020c; // Smartphone
4717 
4718     // bondable by default
4719     hci_stack->bondable = 1;
4720 
4721 #ifdef ENABLE_CLASSIC
4722     // classic name
4723     hci_stack->local_name = default_classic_name;
4724 
4725     // Master slave policy
4726     hci_stack->master_slave_policy = 1;
4727 
4728     // Allow Role Switch
4729     hci_stack->allow_role_switch = 1;
4730 
4731     // Default / minimum security level = 2
4732     hci_stack->gap_security_level = LEVEL_2;
4733 
4734     // Default Security Mode 4
4735     hci_stack->gap_security_mode = GAP_SECURITY_MODE_4;
4736 
4737     // Errata-11838 mandates 7 bytes for GAP Security Level 1-3
4738     hci_stack->gap_required_encyrption_key_size = 7;
4739 
4740     // Link Supervision Timeout
4741     hci_stack->link_supervision_timeout = HCI_LINK_SUPERVISION_TIMEOUT_DEFAULT;
4742 
4743 #endif
4744 
4745     // Secure Simple Pairing default: enable, no I/O capabilities, general bonding, mitm not required, auto accept
4746     hci_stack->ssp_enable = 1;
4747     hci_stack->ssp_io_capability = SSP_IO_CAPABILITY_NO_INPUT_NO_OUTPUT;
4748     hci_stack->ssp_authentication_requirement = SSP_IO_AUTHREQ_MITM_PROTECTION_NOT_REQUIRED_GENERAL_BONDING;
4749     hci_stack->ssp_auto_accept = 1;
4750 
4751     // Secure Connections: enable (requires support from Controller)
4752     hci_stack->secure_connections_enable = true;
4753 
4754     // voice setting - signed 16 bit pcm data with CVSD over the air
4755     hci_stack->sco_voice_setting = 0x60;
4756 
4757 #ifdef ENABLE_BLE
4758     hci_stack->le_connection_scan_interval = 0x0060;   //    60 ms
4759     hci_stack->le_connection_scan_window   = 0x0030;    //   30 ms
4760     hci_stack->le_connection_interval_min  = 0x0008;    //   10 ms
4761     hci_stack->le_connection_interval_max  = 0x0018;    //   30 ms
4762     hci_stack->le_connection_latency       =      4;    //    4
4763     hci_stack->le_supervision_timeout      = 0x0048;    //  720 ms
4764     hci_stack->le_minimum_ce_length        =      0;    //    0 ms
4765     hci_stack->le_maximum_ce_length        =      0;    //    0 ms
4766 #endif
4767 
4768 #ifdef ENABLE_LE_CENTRAL
4769     hci_stack->le_connection_phys          =   0x01;    // LE 1M PHY
4770 
4771     // default LE Scanning
4772     hci_stack->le_scan_type     =  0x01; // active
4773     hci_stack->le_scan_interval = 0x1e0; // 300 ms
4774     hci_stack->le_scan_window   =  0x30; //  30 ms
4775     hci_stack->le_scan_phys     =  0x01; // LE 1M PHY
4776 #endif
4777 
4778 #ifdef ENABLE_LE_PERIPHERAL
4779     hci_stack->le_max_number_peripheral_connections = 1; // only single connection as peripheral
4780 
4781     // default advertising parameters from Core v5.4 -- needed to use random address without prior adv setup
4782     hci_stack->le_advertisements_interval_min =                         0x0800;
4783     hci_stack->le_advertisements_interval_max =                         0x0800;
4784     hci_stack->le_advertisements_type =                                      0;
4785     hci_stack->le_own_addr_type =                       BD_ADDR_TYPE_LE_PUBLIC;
4786     hci_stack->le_advertisements_direct_address_type =  BD_ADDR_TYPE_LE_PUBLIC;
4787     hci_stack->le_advertisements_channel_map =                            0x07;
4788     hci_stack->le_advertisements_filter_policy =                             0;
4789 #endif
4790 
4791     // connection parameter range used to answer connection parameter update requests in l2cap
4792     hci_stack->le_connection_parameter_range.le_conn_interval_min =          6;
4793     hci_stack->le_connection_parameter_range.le_conn_interval_max =       3200;
4794     hci_stack->le_connection_parameter_range.le_conn_latency_min =           0;
4795     hci_stack->le_connection_parameter_range.le_conn_latency_max =         500;
4796     hci_stack->le_connection_parameter_range.le_supervision_timeout_min =   10;
4797     hci_stack->le_connection_parameter_range.le_supervision_timeout_max = 3200;
4798 
4799 #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
4800     hci_stack->iso_packets_to_queue = 1;
4801 #endif
4802 
4803 #ifdef ENABLE_LE_PRIVACY_ADDRESS_RESOLUTION
4804     hci_stack->le_privacy_mode = LE_PRIVACY_MODE_DEVICE;
4805 #endif
4806 
4807     hci_state_reset();
4808 }
4809 
4810 void hci_deinit(void){
4811     btstack_run_loop_remove_timer(&hci_stack->timeout);
4812 #ifdef HAVE_MALLOC
4813     if (hci_stack) {
4814         free(hci_stack);
4815     }
4816 #endif
4817     hci_stack = NULL;
4818 
4819 #ifdef ENABLE_CLASSIC
4820     disable_l2cap_timeouts = 0;
4821 #endif
4822 }
4823 
4824 /**
4825  * @brief Configure Bluetooth chipset driver. Has to be called before power on, or right after receiving the local version information
4826  */
4827 void hci_set_chipset(const btstack_chipset_t *chipset_driver){
4828     hci_stack->chipset = chipset_driver;
4829 
4830     // reset chipset driver - init is also called on power_up
4831     if (hci_stack->chipset && hci_stack->chipset->init){
4832         hci_stack->chipset->init(hci_stack->config);
4833     }
4834 }
4835 
4836 void hci_enable_custom_pre_init(void){
4837     hci_stack->chipset_pre_init = true;
4838 }
4839 
4840 /**
4841  * @brief Configure Bluetooth hardware control. Has to be called after hci_init() but before power on.
4842  */
4843 void hci_set_control(const btstack_control_t *hardware_control){
4844     // references to used control implementation
4845     hci_stack->control = hardware_control;
4846     // init with transport config
4847     hardware_control->init(hci_stack->config);
4848 }
4849 
4850 static void hci_discard_connections(void){
4851     btstack_linked_list_iterator_t it;
4852     btstack_linked_list_iterator_init(&it, &hci_stack->connections);
4853     while (btstack_linked_list_iterator_has_next(&it)){
4854         // cancel all l2cap connections by emitting dicsconnection complete before shutdown (free) connection
4855         hci_connection_t * connection = (hci_connection_t*) btstack_linked_list_iterator_next(&it);
4856         hci_emit_disconnection_complete(connection->con_handle, 0x16); // terminated by local host
4857         hci_shutdown_connection(connection);
4858     }
4859 #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
4860     while (hci_stack->iso_streams != NULL){
4861         hci_iso_stream_finalize((hci_iso_stream_t *) hci_stack->iso_streams);
4862     }
4863 #endif
4864 }
4865 
4866 void hci_close(void){
4867 
4868 #ifdef ENABLE_CLASSIC
4869     // close remote device db
4870     if (hci_stack->link_key_db) {
4871         hci_stack->link_key_db->close();
4872     }
4873 #endif
4874 
4875     hci_discard_connections();
4876 
4877     hci_power_control(HCI_POWER_OFF);
4878 
4879 #ifdef HAVE_MALLOC
4880     free(hci_stack);
4881 #endif
4882     hci_stack = NULL;
4883 }
4884 
4885 #ifdef HAVE_SCO_TRANSPORT
4886 void hci_set_sco_transport(const btstack_sco_transport_t *sco_transport){
4887     hci_stack->sco_transport = sco_transport;
4888     sco_transport->register_packet_handler(&packet_handler);
4889 }
4890 #endif
4891 
4892 #ifdef ENABLE_CLASSIC
4893 void gap_set_required_encryption_key_size(uint8_t encryption_key_size){
4894     // validate ranage and set
4895     if (encryption_key_size < 7)  return;
4896     if (encryption_key_size > 16) return;
4897     hci_stack->gap_required_encyrption_key_size = encryption_key_size;
4898 }
4899 
4900 uint8_t gap_set_security_mode(gap_security_mode_t security_mode){
4901     if ((security_mode == GAP_SECURITY_MODE_4) || (security_mode == GAP_SECURITY_MODE_2)){
4902         hci_stack->gap_security_mode = security_mode;
4903         return ERROR_CODE_SUCCESS;
4904     } else {
4905         return ERROR_CODE_UNSUPPORTED_FEATURE_OR_PARAMETER_VALUE;
4906     }
4907 }
4908 
4909 gap_security_mode_t gap_get_security_mode(void){
4910     return hci_stack->gap_security_mode;
4911 }
4912 
4913 void gap_set_security_level(gap_security_level_t security_level){
4914     hci_stack->gap_security_level = security_level;
4915 }
4916 
4917 gap_security_level_t gap_get_security_level(void){
4918     if (hci_stack->gap_secure_connections_only_mode){
4919         return LEVEL_4;
4920     }
4921     return hci_stack->gap_security_level;
4922 }
4923 
4924 void gap_set_minimal_service_security_level(gap_security_level_t security_level){
4925     hci_stack->gap_minimal_service_security_level = security_level;
4926 }
4927 
4928 void gap_set_secure_connections_only_mode(bool enable){
4929     hci_stack->gap_secure_connections_only_mode = enable;
4930 }
4931 
4932 bool gap_get_secure_connections_only_mode(void){
4933     return hci_stack->gap_secure_connections_only_mode;
4934 }
4935 #endif
4936 
4937 #ifdef ENABLE_CLASSIC
4938 void gap_set_class_of_device(uint32_t class_of_device){
4939     hci_stack->class_of_device = class_of_device;
4940     hci_stack->gap_tasks_classic |= GAP_TASK_SET_CLASS_OF_DEVICE;
4941     hci_run();
4942 }
4943 
4944 void gap_set_default_link_policy_settings(uint16_t default_link_policy_settings){
4945     hci_stack->default_link_policy_settings = default_link_policy_settings;
4946     hci_stack->gap_tasks_classic |= GAP_TASK_SET_DEFAULT_LINK_POLICY;
4947     hci_run();
4948 }
4949 
4950 void gap_set_allow_role_switch(bool allow_role_switch){
4951     hci_stack->allow_role_switch = allow_role_switch ? 1 : 0;
4952 }
4953 
4954 uint8_t hci_get_allow_role_switch(void){
4955     return  hci_stack->allow_role_switch;
4956 }
4957 
4958 void gap_set_link_supervision_timeout(uint16_t link_supervision_timeout){
4959     hci_stack->link_supervision_timeout = link_supervision_timeout;
4960 }
4961 
4962 void gap_enable_link_watchdog(uint16_t timeout_ms){
4963     hci_stack->automatic_flush_timeout = btstack_min(timeout_ms, 1280) * 8 / 5; // divide by 0.625
4964 }
4965 
4966 uint16_t hci_automatic_flush_timeout(void){
4967     return hci_stack->automatic_flush_timeout;
4968 }
4969 
4970 void hci_disable_l2cap_timeout_check(void){
4971     disable_l2cap_timeouts = 1;
4972 }
4973 #endif
4974 
4975 #ifndef HAVE_HOST_CONTROLLER_API
4976 // Set Public BD ADDR - passed on to Bluetooth chipset if supported in bt_control_h
4977 void hci_set_bd_addr(bd_addr_t addr){
4978     (void)memcpy(hci_stack->custom_bd_addr, addr, 6);
4979     hci_stack->custom_bd_addr_set = 1;
4980 }
4981 #endif
4982 
4983 // State-Module-Driver overview
4984 // state                    module  low-level
4985 // HCI_STATE_OFF             off      close
4986 // HCI_STATE_INITIALIZING,   on       open
4987 // HCI_STATE_WORKING,        on       open
4988 // HCI_STATE_HALTING,        on       open
4989 // HCI_STATE_SLEEPING,    off/sleep   close
4990 // HCI_STATE_FALLING_ASLEEP  on       open
4991 
4992 static int hci_power_control_on(void){
4993 
4994     // power on
4995     int err = 0;
4996     if (hci_stack->control && hci_stack->control->on){
4997         err = (*hci_stack->control->on)();
4998     }
4999     if (err){
5000         log_error( "POWER_ON failed");
5001         hci_emit_hci_open_failed();
5002         return err;
5003     }
5004 
5005     // int chipset driver
5006     if (hci_stack->chipset && hci_stack->chipset->init){
5007         hci_stack->chipset->init(hci_stack->config);
5008     }
5009 
5010     // init transport
5011     if (hci_stack->hci_transport->init){
5012         hci_stack->hci_transport->init(hci_stack->config);
5013     }
5014 
5015     // open transport
5016     err = hci_stack->hci_transport->open();
5017     if (err){
5018         log_error( "HCI_INIT failed, turning Bluetooth off again");
5019         if (hci_stack->control && hci_stack->control->off){
5020             (*hci_stack->control->off)();
5021         }
5022         hci_emit_hci_open_failed();
5023         return err;
5024     }
5025     return 0;
5026 }
5027 
5028 static void hci_power_control_off(void){
5029 
5030     log_info("hci_power_control_off");
5031 
5032     // close low-level device
5033     hci_stack->hci_transport->close();
5034 
5035     log_info("hci_power_control_off - hci_transport closed");
5036 
5037     // power off
5038     if (hci_stack->control && hci_stack->control->off){
5039         (*hci_stack->control->off)();
5040     }
5041 
5042     log_info("hci_power_control_off - control closed");
5043 
5044     hci_stack->state = HCI_STATE_OFF;
5045 }
5046 
5047 static void hci_power_control_sleep(void){
5048 
5049     log_info("hci_power_control_sleep");
5050 
5051 #if 0
5052     // don't close serial port during sleep
5053 
5054     // close low-level device
5055     hci_stack->hci_transport->close(hci_stack->config);
5056 #endif
5057 
5058     // sleep mode
5059     if (hci_stack->control && hci_stack->control->sleep){
5060         (*hci_stack->control->sleep)();
5061     }
5062 
5063     hci_stack->state = HCI_STATE_SLEEPING;
5064 }
5065 
5066 static int hci_power_control_wake(void){
5067 
5068     log_info("hci_power_control_wake");
5069 
5070     // wake on
5071     if (hci_stack->control && hci_stack->control->wake){
5072         (*hci_stack->control->wake)();
5073     }
5074 
5075 #if 0
5076     // open low-level device
5077     int err = hci_stack->hci_transport->open(hci_stack->config);
5078     if (err){
5079         log_error( "HCI_INIT failed, turning Bluetooth off again");
5080         if (hci_stack->control && hci_stack->control->off){
5081             (*hci_stack->control->off)();
5082         }
5083         hci_emit_hci_open_failed();
5084         return err;
5085     }
5086 #endif
5087 
5088     return 0;
5089 }
5090 
5091 static void hci_power_enter_initializing_state(void){
5092     // set up state machine
5093     hci_stack->num_cmd_packets = 1; // assume that one cmd can be sent
5094     hci_stack->hci_packet_buffer_reserved = false;
5095     hci_stack->state = HCI_STATE_INITIALIZING;
5096 
5097 #ifndef HAVE_HOST_CONTROLLER_API
5098     if (hci_stack->chipset_pre_init) {
5099         hci_stack->substate = HCI_INIT_CUSTOM_PRE_INIT;
5100     } else
5101 #endif
5102     {
5103         hci_stack->substate = HCI_INIT_SEND_RESET;
5104     }
5105 }
5106 
5107 static void hci_power_enter_halting_state(void){
5108 #ifdef ENABLE_BLE
5109     // drop entries scheduled for removal, mark others for re-adding
5110     btstack_linked_list_iterator_t it;
5111     btstack_linked_list_iterator_init(&it, &hci_stack->le_whitelist);
5112     while (btstack_linked_list_iterator_has_next(&it)){
5113         whitelist_entry_t * entry = (whitelist_entry_t*) btstack_linked_list_iterator_next(&it);
5114         if ((entry->state & (LE_WHITELIST_REMOVE_FROM_CONTROLLER | LE_WHITELIST_ADD_TO_CONTROLLER)) == LE_WHITELIST_REMOVE_FROM_CONTROLLER){
5115             btstack_linked_list_iterator_remove(&it);
5116             btstack_memory_whitelist_entry_free(entry);
5117         } else {
5118             entry->state = LE_WHITELIST_ADD_TO_CONTROLLER;
5119         }
5120     }
5121 #ifdef ENABLE_LE_PERIODIC_ADVERTISING
5122     btstack_linked_list_iterator_init(&it, &hci_stack->le_periodic_advertiser_list);
5123     const uint8_t mask = LE_PERIODIC_ADVERTISER_LIST_ENTRY_REMOVE_FROM_CONTROLLER | LE_PERIODIC_ADVERTISER_LIST_ENTRY_REMOVE_FROM_CONTROLLER;
5124     while (btstack_linked_list_iterator_has_next(&it)){
5125         periodic_advertiser_list_entry_t * entry = (periodic_advertiser_list_entry_t*) btstack_linked_list_iterator_next(&it);
5126         if ((entry->state & mask) == LE_PERIODIC_ADVERTISER_LIST_ENTRY_REMOVE_FROM_CONTROLLER) {
5127             btstack_linked_list_iterator_remove(&it);
5128             btstack_memory_periodic_advertiser_list_entry_free(entry);
5129         } else {
5130             entry->state |= LE_PERIODIC_ADVERTISER_LIST_ENTRY_ADD_TO_CONTROLLER;
5131             continue;
5132         }
5133     }
5134 #endif
5135 #endif
5136     // see hci_run
5137     hci_stack->state = HCI_STATE_HALTING;
5138     hci_stack->substate = HCI_HALTING_CLASSIC_STOP;
5139     // setup watchdog timer for disconnect - only triggers if Controller does not respond anymore
5140     btstack_run_loop_set_timer(&hci_stack->timeout, 1000);
5141     btstack_run_loop_set_timer_handler(&hci_stack->timeout, hci_halting_timeout_handler);
5142     btstack_run_loop_add_timer(&hci_stack->timeout);
5143 }
5144 
5145 // returns error
5146 static int hci_power_control_state_off(HCI_POWER_MODE power_mode){
5147     int err;
5148     switch (power_mode){
5149         case HCI_POWER_ON:
5150             err = hci_power_control_on();
5151             if (err != 0) {
5152                 log_error("hci_power_control_on() error %d", err);
5153                 return err;
5154             }
5155             hci_power_enter_initializing_state();
5156             break;
5157         case HCI_POWER_OFF:
5158             // do nothing
5159             break;
5160         case HCI_POWER_SLEEP:
5161             // do nothing (with SLEEP == OFF)
5162             break;
5163         default:
5164             btstack_assert(false);
5165             break;
5166     }
5167     return ERROR_CODE_SUCCESS;
5168 }
5169 
5170 static int hci_power_control_state_initializing(HCI_POWER_MODE power_mode){
5171     switch (power_mode){
5172         case HCI_POWER_ON:
5173             // do nothing
5174             break;
5175         case HCI_POWER_OFF:
5176             // no connections yet, just turn it off
5177             hci_power_control_off();
5178             break;
5179         case HCI_POWER_SLEEP:
5180             // no connections yet, just turn it off
5181             hci_power_control_sleep();
5182             break;
5183         default:
5184             btstack_assert(false);
5185             break;
5186     }
5187     return ERROR_CODE_SUCCESS;
5188 }
5189 
5190 static int hci_power_control_state_working(HCI_POWER_MODE power_mode) {
5191     switch (power_mode){
5192         case HCI_POWER_ON:
5193             // do nothing
5194             break;
5195         case HCI_POWER_OFF:
5196             hci_power_enter_halting_state();
5197             break;
5198         case HCI_POWER_SLEEP:
5199             // see hci_run
5200             hci_stack->state = HCI_STATE_FALLING_ASLEEP;
5201             hci_stack->substate = HCI_FALLING_ASLEEP_DISCONNECT;
5202             break;
5203         default:
5204             btstack_assert(false);
5205             break;
5206     }
5207     return ERROR_CODE_SUCCESS;
5208 }
5209 
5210 static int hci_power_control_state_halting(HCI_POWER_MODE power_mode) {
5211     switch (power_mode){
5212         case HCI_POWER_ON:
5213             hci_power_enter_initializing_state();
5214             break;
5215         case HCI_POWER_OFF:
5216             // do nothing
5217             break;
5218         case HCI_POWER_SLEEP:
5219             // see hci_run
5220             hci_stack->state = HCI_STATE_FALLING_ASLEEP;
5221             hci_stack->substate = HCI_FALLING_ASLEEP_DISCONNECT;
5222             break;
5223         default:
5224             btstack_assert(false);
5225             break;
5226     }
5227     return ERROR_CODE_SUCCESS;
5228 }
5229 
5230 static int hci_power_control_state_falling_asleep(HCI_POWER_MODE power_mode) {
5231     switch (power_mode){
5232         case HCI_POWER_ON:
5233             hci_power_enter_initializing_state();
5234             break;
5235         case HCI_POWER_OFF:
5236             hci_power_enter_halting_state();
5237             break;
5238         case HCI_POWER_SLEEP:
5239             // do nothing
5240             break;
5241         default:
5242             btstack_assert(false);
5243             break;
5244     }
5245     return ERROR_CODE_SUCCESS;
5246 }
5247 
5248 static int hci_power_control_state_sleeping(HCI_POWER_MODE power_mode) {
5249     int err;
5250     switch (power_mode){
5251         case HCI_POWER_ON:
5252             err = hci_power_control_wake();
5253             if (err) return err;
5254             hci_power_enter_initializing_state();
5255             break;
5256         case HCI_POWER_OFF:
5257             hci_power_enter_halting_state();
5258             break;
5259         case HCI_POWER_SLEEP:
5260             // do nothing
5261             break;
5262         default:
5263             btstack_assert(false);
5264             break;
5265     }
5266     return ERROR_CODE_SUCCESS;
5267 }
5268 
5269 int hci_power_control(HCI_POWER_MODE power_mode){
5270     log_info("hci_power_control: %d, current mode %u", power_mode, hci_stack->state);
5271     btstack_run_loop_remove_timer(&hci_stack->timeout);
5272     int err = 0;
5273     switch (hci_stack->state){
5274         case HCI_STATE_OFF:
5275             err = hci_power_control_state_off(power_mode);
5276             break;
5277         case HCI_STATE_INITIALIZING:
5278             err = hci_power_control_state_initializing(power_mode);
5279             break;
5280         case HCI_STATE_WORKING:
5281             err = hci_power_control_state_working(power_mode);
5282             break;
5283         case HCI_STATE_HALTING:
5284             err = hci_power_control_state_halting(power_mode);
5285             break;
5286         case HCI_STATE_FALLING_ASLEEP:
5287             err = hci_power_control_state_falling_asleep(power_mode);
5288             break;
5289         case HCI_STATE_SLEEPING:
5290             err = hci_power_control_state_sleeping(power_mode);
5291             break;
5292         default:
5293             btstack_assert(false);
5294             break;
5295     }
5296     if (err != 0){
5297         return err;
5298     }
5299 
5300     // create internal event
5301 	hci_emit_state();
5302 
5303 	// trigger next/first action
5304 	hci_run();
5305 
5306     return 0;
5307 }
5308 
5309 
5310 static void hci_halting_run(void) {
5311 
5312     log_info("HCI_STATE_HALTING, substate %x\n", hci_stack->substate);
5313 
5314     hci_connection_t *connection;
5315 #ifdef ENABLE_BLE
5316 #ifdef ENABLE_LE_PERIPHERAL
5317     bool stop_advertismenets;
5318 #endif
5319 #endif
5320 
5321     switch (hci_stack->substate) {
5322         case HCI_HALTING_CLASSIC_STOP:
5323 #ifdef ENABLE_CLASSIC
5324             if (!hci_can_send_command_packet_now()) return;
5325 
5326             if (hci_stack->connectable || hci_stack->discoverable){
5327                 hci_stack->substate = HCI_HALTING_LE_ADV_STOP;
5328                 hci_send_cmd(&hci_write_scan_enable, 0);
5329                 return;
5330             }
5331 #endif
5332             /* fall through */
5333 
5334         case HCI_HALTING_LE_ADV_STOP:
5335             hci_stack->substate = HCI_HALTING_LE_ADV_STOP;
5336 
5337 #ifdef ENABLE_BLE
5338 #ifdef ENABLE_LE_PERIPHERAL
5339             if (!hci_can_send_command_packet_now()) return;
5340 
5341             stop_advertismenets = (hci_stack->le_advertisements_state & LE_ADVERTISEMENT_STATE_ACTIVE) != 0;
5342 
5343 #ifdef ENABLE_LE_EXTENDED_ADVERTISING
5344             if (hci_extended_advertising_supported()){
5345 #ifdef ENABLE_LE_PERIODIC_ADVERTISING
5346                 btstack_linked_list_iterator_t it;
5347                 btstack_linked_list_iterator_init(&it, &hci_stack->le_advertising_sets);
5348                 // stop all periodic advertisements and check if an extended set is active
5349                 while (btstack_linked_list_iterator_has_next(&it)){
5350                     le_advertising_set_t * advertising_set = (le_advertising_set_t*) btstack_linked_list_iterator_next(&it);
5351                     if ((advertising_set->state & LE_ADVERTISEMENT_STATE_PERIODIC_ACTIVE) != 0) {
5352                         advertising_set->state &= ~LE_ADVERTISEMENT_STATE_PERIODIC_ACTIVE;
5353                         hci_send_cmd(&hci_le_set_periodic_advertising_enable, 0, advertising_set->advertising_handle);
5354                         return;
5355                     }
5356                     if ((advertising_set->state & LE_ADVERTISEMENT_STATE_ACTIVE) != 0) {
5357                         stop_advertismenets = true;
5358                         advertising_set->state &= ~LE_ADVERTISEMENT_STATE_ACTIVE;
5359                     }
5360                 }
5361 #endif /* ENABLE_LE_PERIODIC_ADVERTISING */
5362                 if (stop_advertismenets){
5363                     hci_stack->le_advertisements_state &= ~LE_ADVERTISEMENT_STATE_ACTIVE;
5364                     hci_send_cmd(&hci_le_set_extended_advertising_enable, 0, 0, NULL, NULL, NULL);
5365                     return;
5366                 }
5367             } else
5368 #else /* ENABLE_LE_PERIPHERAL */
5369             {
5370                 if (stop_advertismenets) {
5371                     hci_stack->le_advertisements_state &= ~LE_ADVERTISEMENT_STATE_ACTIVE;
5372                     hci_send_cmd(&hci_le_set_advertise_enable, 0);
5373                     return;
5374                 }
5375             }
5376 #endif  /* ENABLE_LE_EXTENDED_ADVERTISING*/
5377 #endif  /* ENABLE_LE_PERIPHERAL */
5378 #endif  /* ENABLE_BLE */
5379 
5380             /* fall through */
5381 
5382         case HCI_HALTING_LE_SCAN_STOP:
5383             hci_stack->substate = HCI_HALTING_LE_SCAN_STOP;
5384             if (!hci_can_send_command_packet_now()) return;
5385 
5386 #ifdef ENABLE_BLE
5387 #ifdef ENABLE_LE_CENTRAL
5388             if (hci_stack->le_scanning_active){
5389                 hci_le_scan_stop();
5390                 hci_stack->substate = HCI_HALTING_DISCONNECT_ALL;
5391                 return;
5392             }
5393 #endif
5394 #endif
5395 
5396             /* fall through */
5397 
5398         case HCI_HALTING_DISCONNECT_ALL:
5399             hci_stack->substate = HCI_HALTING_DISCONNECT_ALL;
5400             if (!hci_can_send_command_packet_now()) return;
5401 
5402             // close all open connections
5403             connection = (hci_connection_t *) hci_stack->connections;
5404             if (connection) {
5405                 hci_con_handle_t con_handle = (uint16_t) connection->con_handle;
5406 
5407                 log_info("HCI_STATE_HALTING, connection %p, handle %u, state %u", connection, con_handle, connection->state);
5408 
5409                 // check state
5410                 switch(connection->state) {
5411                     case SENT_DISCONNECT:
5412                     case RECEIVED_DISCONNECTION_COMPLETE:
5413                         // wait until connection is gone
5414                         return;
5415                     default:
5416                         break;
5417                 }
5418 
5419                 // finally, send the disconnect command
5420                 connection->state = SENT_DISCONNECT;
5421                 hci_send_cmd(&hci_disconnect, con_handle, ERROR_CODE_REMOTE_USER_TERMINATED_CONNECTION);
5422                 return;
5423             }
5424 
5425 #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
5426             // stop BIGs and BIG Syncs
5427             if (hci_stack->le_audio_bigs != NULL){
5428                 le_audio_big_t * big = (le_audio_big_t*) hci_stack->le_audio_bigs;
5429                 if (big->state == LE_AUDIO_BIG_STATE_W4_TERMINATED) return;
5430                 big->state = LE_AUDIO_BIG_STATE_W4_TERMINATED;
5431                 hci_send_cmd(&hci_le_terminate_big, big->big_handle);
5432                 return;
5433             }
5434             if (hci_stack->le_audio_big_syncs != NULL){
5435                 le_audio_big_sync_t * big_sync = (le_audio_big_sync_t*) hci_stack->le_audio_big_syncs;
5436                 if (big_sync->state == LE_AUDIO_BIG_STATE_W4_TERMINATED) return;
5437                 big_sync->state = LE_AUDIO_BIG_STATE_W4_TERMINATED;
5438                 hci_send_cmd(&hci_le_big_terminate_sync, big_sync->big_handle);
5439                 return;
5440             }
5441 #endif
5442 
5443             btstack_run_loop_remove_timer(&hci_stack->timeout);
5444 
5445             // no connections left, wait a bit to assert that btstack_cyrpto isn't waiting for an HCI event
5446             log_info("HCI_STATE_HALTING: wait 50 ms");
5447             hci_stack->substate = HCI_HALTING_W4_CLOSE_TIMER;
5448             btstack_run_loop_set_timer(&hci_stack->timeout, 50);
5449             btstack_run_loop_set_timer_handler(&hci_stack->timeout, hci_halting_timeout_handler);
5450             btstack_run_loop_add_timer(&hci_stack->timeout);
5451             break;
5452 
5453         case HCI_HALTING_W4_CLOSE_TIMER:
5454             // keep waiting
5455             break;
5456 
5457         case HCI_HALTING_CLOSE:
5458             // close left over connections (that had not been properly closed before)
5459             hci_stack->substate = HCI_HALTING_CLOSE_DISCARDING_CONNECTIONS;
5460             hci_discard_connections();
5461 
5462             log_info("HCI_STATE_HALTING, calling off");
5463 
5464             // switch mode
5465             hci_power_control_off();
5466 
5467             log_info("HCI_STATE_HALTING, emitting state");
5468             hci_emit_state();
5469             log_info("HCI_STATE_HALTING, done");
5470             break;
5471 
5472         default:
5473             break;
5474     }
5475 };
5476 
5477 static void hci_falling_asleep_run(void){
5478     hci_connection_t * connection;
5479     switch(hci_stack->substate) {
5480         case HCI_FALLING_ASLEEP_DISCONNECT:
5481             log_info("HCI_STATE_FALLING_ASLEEP");
5482             // close all open connections
5483             connection =  (hci_connection_t *) hci_stack->connections;
5484             if (connection){
5485 
5486                 // send disconnect
5487                 if (!hci_can_send_command_packet_now()) return;
5488 
5489                 log_info("HCI_STATE_FALLING_ASLEEP, connection %p, handle %u", connection, (uint16_t)connection->con_handle);
5490                 hci_send_cmd(&hci_disconnect, connection->con_handle, ERROR_CODE_REMOTE_USER_TERMINATED_CONNECTION);
5491 
5492                 // send disconnected event right away - causes higher layer connections to get closed, too.
5493                 hci_shutdown_connection(connection);
5494                 return;
5495             }
5496 
5497             if (hci_classic_supported()){
5498                 // disable page and inquiry scan
5499                 if (!hci_can_send_command_packet_now()) return;
5500 
5501                 log_info("HCI_STATE_HALTING, disabling inq scans");
5502                 hci_send_cmd(&hci_write_scan_enable, hci_stack->connectable << 1); // drop inquiry scan but keep page scan
5503 
5504                 // continue in next sub state
5505                 hci_stack->substate = HCI_FALLING_ASLEEP_W4_WRITE_SCAN_ENABLE;
5506                 break;
5507             }
5508 
5509             /* fall through */
5510 
5511             case HCI_FALLING_ASLEEP_COMPLETE:
5512                 log_info("HCI_STATE_HALTING, calling sleep");
5513                 // switch mode
5514                 hci_power_control_sleep();  // changes hci_stack->state to SLEEP
5515                 hci_emit_state();
5516                 break;
5517 
5518                 default:
5519                     break;
5520     }
5521 }
5522 
5523 #ifdef ENABLE_CLASSIC
5524 
5525 static void hci_update_scan_enable(void){
5526     // 2 = page scan, 1 = inq scan
5527     hci_stack->new_scan_enable_value  = (hci_stack->connectable << 1) | hci_stack->discoverable;
5528     hci_stack->gap_tasks_classic |= GAP_TASK_WRITE_SCAN_ENABLE;
5529     hci_run();
5530 }
5531 
5532 void gap_discoverable_control(uint8_t enable){
5533     if (enable) enable = 1; // normalize argument
5534 
5535     if (hci_stack->discoverable == enable){
5536         hci_emit_scan_mode_changed(hci_stack->discoverable, hci_stack->connectable);
5537         return;
5538     }
5539 
5540     hci_stack->discoverable = enable;
5541     hci_update_scan_enable();
5542 }
5543 
5544 void gap_connectable_control(uint8_t enable){
5545     if (enable) enable = 1; // normalize argument
5546 
5547     // don't emit event
5548     if (hci_stack->connectable == enable) return;
5549 
5550     hci_stack->connectable = enable;
5551     hci_update_scan_enable();
5552 }
5553 #endif
5554 
5555 void gap_local_bd_addr(bd_addr_t address_buffer){
5556     (void)memcpy(address_buffer, hci_stack->local_bd_addr, 6);
5557 }
5558 
5559 #ifdef ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL
5560 static void hci_host_num_completed_packets(void){
5561 
5562     // create packet manually as arrays are not supported and num_commands should not get reduced
5563     hci_reserve_packet_buffer();
5564     uint8_t * packet = hci_get_outgoing_packet_buffer();
5565 
5566     uint16_t size = 0;
5567     uint16_t num_handles = 0;
5568     packet[size++] = 0x35;
5569     packet[size++] = 0x0c;
5570     size++;  // skip param len
5571     size++;  // skip num handles
5572 
5573     // add { handle, packets } entries
5574     btstack_linked_item_t * it;
5575     for (it = (btstack_linked_item_t *) hci_stack->connections; it ; it = it->next){
5576         hci_connection_t * connection = (hci_connection_t *) it;
5577         if (connection->num_packets_completed){
5578             little_endian_store_16(packet, size, connection->con_handle);
5579             size += 2;
5580             little_endian_store_16(packet, size, connection->num_packets_completed);
5581             size += 2;
5582             //
5583             num_handles++;
5584             connection->num_packets_completed = 0;
5585         }
5586     }
5587 
5588     packet[2] = size - 3;
5589     packet[3] = num_handles;
5590 
5591     hci_stack->host_completed_packets = 0;
5592 
5593     hci_dump_packet(HCI_COMMAND_DATA_PACKET, 0, packet, size);
5594     hci_stack->hci_transport->send_packet(HCI_COMMAND_DATA_PACKET, packet, size);
5595 
5596     // release packet buffer for synchronous transport implementations
5597     if (hci_transport_synchronous()){
5598         hci_release_packet_buffer();
5599         hci_emit_transport_packet_sent();
5600     }
5601 }
5602 #endif
5603 
5604 static void hci_halting_timeout_handler(btstack_timer_source_t * ds){
5605     UNUSED(ds);
5606     hci_stack->substate = HCI_HALTING_CLOSE;
5607     hci_halting_run();
5608 }
5609 
5610 static bool hci_run_acl_fragments(void){
5611     if (hci_stack->acl_fragmentation_total_size > 0u) {
5612         hci_con_handle_t con_handle = READ_ACL_CONNECTION_HANDLE(hci_stack->hci_packet_buffer);
5613         hci_connection_t *connection = hci_connection_for_handle(con_handle);
5614         if (connection) {
5615             if (hci_can_send_prepared_acl_packet_now(con_handle)){
5616                 hci_send_acl_packet_fragments(connection);
5617                 return true;
5618             }
5619         } else {
5620             // connection gone -> discard further fragments
5621             log_info("hci_run: fragmented ACL packet no connection -> discard fragment");
5622             hci_stack->acl_fragmentation_total_size = 0;
5623             hci_stack->acl_fragmentation_pos = 0;
5624         }
5625     }
5626     return false;
5627 }
5628 
5629 #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
5630 static bool hci_run_iso_fragments(void){
5631     if (hci_stack->iso_fragmentation_total_size > 0u) {
5632         // TODO: flow control
5633         if (hci_transport_can_send_prepared_packet_now(HCI_ISO_DATA_PACKET)){
5634             hci_send_iso_packet_fragments();
5635             return true;
5636         }
5637     }
5638     return false;
5639 }
5640 #endif
5641 
5642 #ifdef ENABLE_CLASSIC
5643 
5644 #ifdef ENABLE_HCI_SERIALIZED_CONTROLLER_OPERATIONS
5645 static bool hci_classic_operation_active(void) {
5646     if (hci_stack->inquiry_state >= GAP_INQUIRY_STATE_W4_ACTIVE){
5647         return true;
5648     }
5649     if (hci_stack->remote_name_state == GAP_REMOTE_NAME_STATE_W4_COMPLETE){
5650         return true;
5651     }
5652     btstack_linked_item_t * it;
5653     for (it = (btstack_linked_item_t *) hci_stack->connections; it != NULL; it = it->next) {
5654         hci_connection_t *connection = (hci_connection_t *) it;
5655         switch (connection->state) {
5656             case SENT_CREATE_CONNECTION:
5657             case SENT_CANCEL_CONNECTION:
5658             case SENT_DISCONNECT:
5659                 return true;
5660             default:
5661                 break;
5662         }
5663     }
5664     return false;
5665 }
5666 #endif
5667 
5668 static bool hci_run_general_gap_classic(void){
5669 
5670     // assert stack is working and classic is active
5671     if (hci_classic_supported() == false)      return false;
5672     if (hci_stack->state != HCI_STATE_WORKING) return false;
5673 
5674     // decline incoming connections
5675     if (hci_stack->decline_reason){
5676         uint8_t reason = hci_stack->decline_reason;
5677         hci_stack->decline_reason = 0;
5678         hci_send_cmd(&hci_reject_connection_request, hci_stack->decline_addr, reason);
5679         return true;
5680     }
5681 
5682     if (hci_stack->gap_tasks_classic != 0){
5683         hci_run_gap_tasks_classic();
5684         return true;
5685     }
5686 
5687     // start/stop inquiry
5688     if ((hci_stack->inquiry_state >= GAP_INQUIRY_DURATION_MIN) && (hci_stack->inquiry_state <= GAP_INQUIRY_DURATION_MAX)){
5689 #ifdef ENABLE_HCI_SERIALIZED_CONTROLLER_OPERATIONS
5690         if (hci_classic_operation_active() == false)
5691 #endif
5692         {
5693             uint8_t duration = hci_stack->inquiry_state;
5694             hci_stack->inquiry_state = GAP_INQUIRY_STATE_W4_ACTIVE;
5695             if (hci_stack->inquiry_max_period_length != 0){
5696                 hci_send_cmd(&hci_periodic_inquiry_mode, hci_stack->inquiry_max_period_length, hci_stack->inquiry_min_period_length, hci_stack->inquiry_lap, duration, 0);
5697             } else {
5698                 hci_send_cmd(&hci_inquiry, hci_stack->inquiry_lap, duration, 0);
5699             }
5700             return true;
5701         }
5702     }
5703     if (hci_stack->inquiry_state == GAP_INQUIRY_STATE_W2_CANCEL){
5704         hci_stack->inquiry_state = GAP_INQUIRY_STATE_W4_CANCELLED;
5705         hci_send_cmd(&hci_inquiry_cancel);
5706         return true;
5707     }
5708 
5709     if (hci_stack->inquiry_state == GAP_INQUIRY_STATE_W2_EXIT_PERIODIC){
5710         hci_stack->inquiry_state = GAP_INQUIRY_STATE_W4_CANCELLED;
5711         hci_send_cmd(&hci_exit_periodic_inquiry_mode);
5712         return true;
5713     }
5714 
5715     // remote name request
5716     if (hci_stack->remote_name_state == GAP_REMOTE_NAME_STATE_W2_SEND){
5717 #ifdef ENABLE_HCI_SERIALIZED_CONTROLLER_OPERATIONS
5718         if (hci_classic_operation_active() == false)
5719 #endif
5720         {
5721             hci_stack->remote_name_state = GAP_REMOTE_NAME_STATE_W4_COMPLETE;
5722             hci_send_cmd(&hci_remote_name_request, hci_stack->remote_name_addr,
5723                          hci_stack->remote_name_page_scan_repetition_mode, 0, hci_stack->remote_name_clock_offset);
5724             return true;
5725         }
5726     }
5727 #ifdef ENABLE_CLASSIC_PAIRING_OOB
5728     // Local OOB data
5729     if (hci_stack->classic_read_local_oob_data){
5730         hci_stack->classic_read_local_oob_data = false;
5731         if (hci_command_supported(SUPPORTED_HCI_COMMAND_READ_LOCAL_OOB_EXTENDED_DATA_COMMAND)){
5732             hci_send_cmd(&hci_read_local_extended_oob_data);
5733         } else {
5734             hci_send_cmd(&hci_read_local_oob_data);
5735         }
5736     }
5737 #endif
5738     // pairing
5739     if (hci_stack->gap_pairing_state != GAP_PAIRING_STATE_IDLE){
5740         uint8_t state = hci_stack->gap_pairing_state;
5741         uint8_t pin_code[16];
5742         switch (state){
5743             case GAP_PAIRING_STATE_SEND_PIN:
5744                 hci_stack->gap_pairing_state = GAP_PAIRING_STATE_IDLE;
5745                 memset(pin_code, 0, 16);
5746                 memcpy(pin_code, hci_stack->gap_pairing_input.gap_pairing_pin, hci_stack->gap_pairing_pin_len);
5747                 hci_send_cmd(&hci_pin_code_request_reply, hci_stack->gap_pairing_addr, hci_stack->gap_pairing_pin_len, pin_code);
5748                 break;
5749             case GAP_PAIRING_STATE_SEND_PIN_NEGATIVE:
5750                 hci_stack->gap_pairing_state = GAP_PAIRING_STATE_WAIT_FOR_COMMAND_COMPLETE;
5751                 hci_send_cmd(&hci_pin_code_request_negative_reply, hci_stack->gap_pairing_addr);
5752                 break;
5753             case GAP_PAIRING_STATE_SEND_PASSKEY:
5754                 hci_stack->gap_pairing_state = GAP_PAIRING_STATE_IDLE;
5755                 hci_send_cmd(&hci_user_passkey_request_reply, hci_stack->gap_pairing_addr, hci_stack->gap_pairing_input.gap_pairing_passkey);
5756                 break;
5757             case GAP_PAIRING_STATE_SEND_PASSKEY_NEGATIVE:
5758                 hci_stack->gap_pairing_state = GAP_PAIRING_STATE_WAIT_FOR_COMMAND_COMPLETE;
5759                 hci_send_cmd(&hci_user_passkey_request_negative_reply, hci_stack->gap_pairing_addr);
5760                 break;
5761             case GAP_PAIRING_STATE_SEND_CONFIRMATION:
5762                 hci_stack->gap_pairing_state = GAP_PAIRING_STATE_IDLE;
5763                 hci_send_cmd(&hci_user_confirmation_request_reply, hci_stack->gap_pairing_addr);
5764                 break;
5765             case GAP_PAIRING_STATE_SEND_CONFIRMATION_NEGATIVE:
5766                 hci_stack->gap_pairing_state = GAP_PAIRING_STATE_WAIT_FOR_COMMAND_COMPLETE;
5767                 hci_send_cmd(&hci_user_confirmation_request_negative_reply, hci_stack->gap_pairing_addr);
5768                 break;
5769             default:
5770                 break;
5771         }
5772         return true;
5773     }
5774     return false;
5775 }
5776 #endif
5777 
5778 #ifdef ENABLE_BLE
5779 
5780 #ifdef ENABLE_LE_EXTENDED_ADVERTISING
5781 static uint8_t hci_le_num_phys(uint8_t phys){
5782     const uint8_t num_bits_set[] = { 0, 1, 1, 2, 1, 2, 2, 3 };
5783     btstack_assert(phys);
5784     return num_bits_set[phys];
5785 }
5786 #endif
5787 
5788 #ifdef ENABLE_LE_CENTRAL
5789 static void hci_le_scan_stop(void){
5790 #ifdef ENABLE_LE_EXTENDED_ADVERTISING
5791     if (hci_extended_advertising_supported()) {
5792             hci_send_cmd(&hci_le_set_extended_scan_enable, 0, 0, 0, 0);
5793     } else
5794 #endif
5795     {
5796         hci_send_cmd(&hci_le_set_scan_enable, 0, 0);
5797     }
5798 }
5799 
5800 static void
5801 hci_send_le_create_connection(uint8_t initiator_filter_policy, bd_addr_type_t address_type, uint8_t *address) {
5802 #ifdef ENABLE_LE_EXTENDED_ADVERTISING
5803     if (hci_extended_advertising_supported()) {
5804         // prepare arrays for all phys (LE Coded, LE 1M, LE 2M PHY)
5805         uint16_t le_connection_scan_interval[3];
5806         uint16_t le_connection_scan_window[3];
5807         uint16_t le_connection_interval_min[3];
5808         uint16_t le_connection_interval_max[3];
5809         uint16_t le_connection_latency[3];
5810         uint16_t le_supervision_timeout[3];
5811         uint16_t le_minimum_ce_length[3];
5812         uint16_t le_maximum_ce_length[3];
5813 
5814         uint8_t i;
5815         uint8_t num_phys = hci_le_num_phys(hci_stack->le_connection_phys);
5816         for (i=0;i<num_phys;i++){
5817             le_connection_scan_interval[i] = hci_stack->le_connection_scan_interval;
5818             le_connection_scan_window[i]   = hci_stack->le_connection_scan_window;
5819             le_connection_interval_min[i]  = hci_stack->le_connection_interval_min;
5820             le_connection_interval_max[i]  = hci_stack->le_connection_interval_max;
5821             le_connection_latency[i]       = hci_stack->le_connection_latency;
5822             le_supervision_timeout[i]      = hci_stack->le_supervision_timeout;
5823             le_minimum_ce_length[i]        = hci_stack->le_minimum_ce_length;
5824             le_maximum_ce_length[i]        = hci_stack->le_maximum_ce_length;
5825         }
5826         hci_send_cmd(&hci_le_extended_create_connection,
5827                      initiator_filter_policy,
5828                      hci_stack->le_connection_own_addr_type,   // our addr type:
5829                      address_type,                  // peer address type
5830                      address,                       // peer bd addr
5831                      hci_stack->le_connection_phys, // initiating PHY
5832                      le_connection_scan_interval,   // conn scan interval
5833                      le_connection_scan_window,     // conn scan windows
5834                      le_connection_interval_min,    // conn interval min
5835                      le_connection_interval_max,    // conn interval max
5836                      le_connection_latency,         // conn latency
5837                      le_supervision_timeout,        // conn latency
5838                      le_minimum_ce_length,          // min ce length
5839                      le_maximum_ce_length           // max ce length
5840         );
5841     } else
5842 #endif
5843     {
5844         hci_send_cmd(&hci_le_create_connection,
5845                      hci_stack->le_connection_scan_interval,  // conn scan interval
5846                      hci_stack->le_connection_scan_window,    // conn scan windows
5847                      initiator_filter_policy,                 // don't use whitelist
5848                      address_type,                            // peer address type
5849                      address,                                 // peer bd addr
5850                      hci_stack->le_connection_own_addr_type,  // our addr type:
5851                      hci_stack->le_connection_interval_min,   // conn interval min
5852                      hci_stack->le_connection_interval_max,   // conn interval max
5853                      hci_stack->le_connection_latency,        // conn latency
5854                      hci_stack->le_supervision_timeout,       // conn latency
5855                      hci_stack->le_minimum_ce_length,         // min ce length
5856                      hci_stack->le_maximum_ce_length          // max ce length
5857         );
5858     }
5859 }
5860 #endif
5861 
5862 #ifdef ENABLE_LE_PERIPHERAL
5863 #ifdef ENABLE_LE_EXTENDED_ADVERTISING
5864 uint8_t hci_le_extended_advertising_operation_for_chunk(uint16_t pos, uint16_t len){
5865     uint8_t  operation = 0;
5866     if (pos == 0){
5867         // first fragment or complete data
5868         operation |= 1;
5869     }
5870     if (pos + LE_EXTENDED_ADVERTISING_MAX_CHUNK_LEN >= len){
5871         // last fragment or complete data
5872         operation |= 2;
5873     }
5874     return operation;
5875 }
5876 #endif
5877 #endif
5878 
5879 static bool hci_run_general_gap_le(void){
5880 
5881     btstack_linked_list_iterator_t lit;
5882 
5883 #ifdef ENABLE_LE_EXTENDED_ADVERTISING
5884     if (hci_stack->le_resolvable_private_address_update_s > 0){
5885         uint16_t update_s = hci_stack->le_resolvable_private_address_update_s;
5886         hci_stack->le_resolvable_private_address_update_s = 0;
5887         hci_send_cmd(&hci_le_set_resolvable_private_address_timeout, update_s);
5888         return true;
5889     }
5890 #endif
5891 
5892     // Phase 1: collect what to stop
5893 
5894 #ifdef ENABLE_LE_CENTRAL
5895     bool scanning_stop = false;
5896     bool connecting_stop = false;
5897 #ifdef ENABLE_LE_EXTENDED_ADVERTISING
5898 #ifdef ENABLE_LE_PERIODIC_ADVERTISING
5899     bool periodic_sync_stop = false;
5900 #endif
5901 #endif
5902 #endif
5903 
5904 #ifdef ENABLE_LE_PERIPHERAL
5905     bool advertising_stop = false;
5906 #ifdef ENABLE_LE_EXTENDED_ADVERTISING
5907     le_advertising_set_t * advertising_stop_set = NULL;
5908 #ifdef ENABLE_LE_PERIODIC_ADVERTISING
5909     bool periodic_advertising_stop = false;
5910 #endif
5911 #endif
5912 #endif
5913 
5914     // check if own address changes
5915     uint8_t address_change_mask = LE_ADVERTISEMENT_TASKS_SET_ADDRESS | LE_ADVERTISEMENT_TASKS_SET_ADDRESS_SET_0;
5916     bool random_address_change = (hci_stack->le_advertisements_todo & address_change_mask) != 0;
5917 
5918     // check if whitelist needs modification
5919     bool whitelist_modification_pending = false;
5920     btstack_linked_list_iterator_init(&lit, &hci_stack->le_whitelist);
5921     while (btstack_linked_list_iterator_has_next(&lit)){
5922         whitelist_entry_t * entry = (whitelist_entry_t*) btstack_linked_list_iterator_next(&lit);
5923         if (entry->state & (LE_WHITELIST_REMOVE_FROM_CONTROLLER | LE_WHITELIST_ADD_TO_CONTROLLER)){
5924             whitelist_modification_pending = true;
5925             break;
5926         }
5927     }
5928 
5929     // check if resolving list needs modification
5930     bool resolving_list_modification_pending = false;
5931 #ifdef ENABLE_LE_PRIVACY_ADDRESS_RESOLUTION
5932     bool resolving_list_supported = hci_command_supported(SUPPORTED_HCI_COMMAND_LE_SET_ADDRESS_RESOLUTION_ENABLE);
5933 	if (resolving_list_supported && hci_stack->le_resolving_list_state != LE_RESOLVING_LIST_DONE){
5934         resolving_list_modification_pending = true;
5935     }
5936 #endif
5937 
5938 #ifdef ENABLE_LE_CENTRAL
5939 
5940 #ifdef ENABLE_LE_EXTENDED_ADVERTISING
5941     // check if periodic advertiser list needs modification
5942     bool periodic_list_modification_pending = false;
5943     btstack_linked_list_iterator_init(&lit, &hci_stack->le_periodic_advertiser_list);
5944     while (btstack_linked_list_iterator_has_next(&lit)){
5945         periodic_advertiser_list_entry_t * entry = (periodic_advertiser_list_entry_t*) btstack_linked_list_iterator_next(&lit);
5946         if (entry->state & (LE_PERIODIC_ADVERTISER_LIST_ENTRY_ADD_TO_CONTROLLER | LE_PERIODIC_ADVERTISER_LIST_ENTRY_REMOVE_FROM_CONTROLLER)){
5947             periodic_list_modification_pending = true;
5948             break;
5949         }
5950     }
5951 #endif
5952 
5953     // scanning control
5954     if (hci_stack->le_scanning_active) {
5955         // stop if:
5956         // - parameter change required
5957         // - it's disabled
5958         // - whitelist change required but used for scanning
5959         // - resolving list modified
5960         // - own address changes
5961         bool scanning_uses_whitelist = (hci_stack->le_scan_filter_policy & 1) == 1;
5962         if ((hci_stack->le_scanning_param_update) ||
5963             !hci_stack->le_scanning_enabled ||
5964             (scanning_uses_whitelist && whitelist_modification_pending) ||
5965             resolving_list_modification_pending ||
5966             random_address_change){
5967 
5968             scanning_stop = true;
5969         }
5970     }
5971 
5972     // connecting control
5973     bool connecting_with_whitelist;
5974     switch (hci_stack->le_connecting_state){
5975         case LE_CONNECTING_DIRECT:
5976         case LE_CONNECTING_WHITELIST:
5977             // stop connecting if:
5978             // - connecting uses white and whitelist modification pending
5979             // - if it got disabled
5980             // - resolving list modified
5981             // - own address changes
5982             connecting_with_whitelist = hci_stack->le_connecting_state == LE_CONNECTING_WHITELIST;
5983             if ((connecting_with_whitelist && whitelist_modification_pending) ||
5984                 (hci_stack->le_connecting_request == LE_CONNECTING_IDLE) ||
5985                 resolving_list_modification_pending ||
5986                 random_address_change) {
5987 
5988                 connecting_stop = true;
5989             }
5990             break;
5991         default:
5992             break;
5993     }
5994 
5995 #ifdef ENABLE_LE_EXTENDED_ADVERTISING
5996 #ifdef ENABLE_LE_PERIODIC_ADVERTISING
5997     // periodic sync control
5998     bool sync_with_advertiser_list;
5999     switch(hci_stack->le_periodic_sync_state){
6000         case LE_CONNECTING_DIRECT:
6001         case LE_CONNECTING_WHITELIST:
6002             // stop sync if:
6003             // - sync with advertiser list and advertiser list modification pending
6004             // - if it got disabled
6005             sync_with_advertiser_list = hci_stack->le_periodic_sync_state == LE_CONNECTING_WHITELIST;
6006             if ((sync_with_advertiser_list && periodic_list_modification_pending) ||
6007                     (hci_stack->le_periodic_sync_request == LE_CONNECTING_IDLE)){
6008                 periodic_sync_stop = true;
6009             }
6010             break;
6011         default:
6012             break;
6013     }
6014 #endif
6015 #endif
6016 
6017 #endif /* ENABLE_LE_CENTRAL */
6018 
6019 #ifdef ENABLE_LE_PERIPHERAL
6020     // le advertisement control
6021     if ((hci_stack->le_advertisements_state & LE_ADVERTISEMENT_STATE_ACTIVE) != 0){
6022         // stop if:
6023         // - parameter change required
6024         // - random address used in advertising and changes
6025         // - it's disabled
6026         // - whitelist change required but used for advertisement filter policy
6027         // - resolving list modified
6028         // - own address changes
6029         bool advertising_uses_whitelist = hci_stack->le_advertisements_filter_policy != 0;
6030         bool advertising_uses_random_address = hci_stack->le_own_addr_type != BD_ADDR_TYPE_LE_PUBLIC;
6031         bool advertising_change    = (hci_stack->le_advertisements_todo & LE_ADVERTISEMENT_TASKS_SET_PARAMS)  != 0;
6032         if (advertising_change ||
6033             (advertising_uses_random_address && random_address_change) ||
6034             (hci_stack->le_advertisements_enabled_for_current_roles == 0) ||
6035             (advertising_uses_whitelist && whitelist_modification_pending) ||
6036             resolving_list_modification_pending ||
6037             random_address_change) {
6038 
6039             advertising_stop = true;
6040         }
6041     }
6042 
6043 #ifdef ENABLE_LE_EXTENDED_ADVERTISING
6044     if (hci_extended_advertising_supported() && (advertising_stop == false)){
6045         btstack_linked_list_iterator_t it;
6046         btstack_linked_list_iterator_init(&it, &hci_stack->le_advertising_sets);
6047         while (btstack_linked_list_iterator_has_next(&it)){
6048             le_advertising_set_t * advertising_set = (le_advertising_set_t*) btstack_linked_list_iterator_next(&it);
6049             if ((advertising_set->state & LE_ADVERTISEMENT_STATE_ACTIVE) != 0) {
6050                 // stop if:
6051                 // - parameter change required
6052                 // - random address used in connectable advertising and changes
6053                 // - it's disabled
6054                 // - whitelist change required but used for advertisement filter policy
6055                 // - resolving list modified
6056                 // - own address changes
6057                 // - advertisement set will be removed
6058                 bool advertising_uses_whitelist = advertising_set->extended_params.advertising_filter_policy != 0;
6059                 bool advertising_connectable = (advertising_set->extended_params.advertising_event_properties & 1) != 0;
6060                 bool advertising_uses_random_address =
6061                         (advertising_set->extended_params.own_address_type != BD_ADDR_TYPE_LE_PUBLIC) &&
6062                         advertising_connectable;
6063                 bool advertising_parameter_change = (advertising_set->tasks & LE_ADVERTISEMENT_TASKS_SET_PARAMS) != 0;
6064                 bool advertising_enabled = (advertising_set->state & LE_ADVERTISEMENT_STATE_ENABLED) != 0;
6065                 bool advertising_set_random_address_change =
6066                         (advertising_set->tasks & LE_ADVERTISEMENT_TASKS_SET_ADDRESS) != 0;
6067                 bool advertising_set_will_be_removed =
6068                         (advertising_set->state & LE_ADVERTISEMENT_TASKS_REMOVE_SET) != 0;
6069                 if (advertising_parameter_change ||
6070                     (advertising_uses_random_address && advertising_set_random_address_change) ||
6071                     (advertising_enabled == false) ||
6072                     (advertising_uses_whitelist && whitelist_modification_pending) ||
6073                     resolving_list_modification_pending ||
6074                     advertising_set_will_be_removed) {
6075 
6076                     advertising_stop = true;
6077                     advertising_stop_set = advertising_set;
6078                     break;
6079                 }
6080             }
6081 #ifdef ENABLE_LE_PERIODIC_ADVERTISING
6082             if ((advertising_set->state & LE_ADVERTISEMENT_STATE_PERIODIC_ACTIVE) != 0) {
6083                 // stop if:
6084                 // - it's disabled
6085                 // - parameter change required
6086                 bool periodic_enabled = (advertising_set->state & LE_ADVERTISEMENT_STATE_PERIODIC_ENABLED) != 0;
6087                 bool periodic_parameter_change = (advertising_set->tasks & LE_ADVERTISEMENT_TASKS_SET_PERIODIC_PARAMS) != 0;
6088                 if ((periodic_enabled == false) || periodic_parameter_change){
6089                     periodic_advertising_stop = true;
6090                     advertising_stop_set = advertising_set;
6091                 }
6092             }
6093 #endif /* ENABLE_LE_PERIODIC_ADVERTISING */
6094         }
6095     }
6096 #endif
6097 
6098 #endif
6099 
6100 
6101     // Phase 2: stop everything that should be off during modifications
6102 
6103 
6104     // 2.1 Outgoing connection
6105 #ifdef ENABLE_LE_CENTRAL
6106     if (connecting_stop){
6107         hci_send_cmd(&hci_le_create_connection_cancel);
6108         return true;
6109     }
6110 #endif
6111 
6112     // 2.2 Scanning
6113 #ifdef ENABLE_LE_CENTRAL
6114     if (scanning_stop){
6115         hci_stack->le_scanning_active = false;
6116         hci_le_scan_stop();
6117         return true;
6118     }
6119 
6120     // 2.3 Periodic Sync
6121 #ifdef ENABLE_LE_EXTENDED_ADVERTISING
6122     if (hci_stack->le_periodic_terminate_sync_handle != HCI_CON_HANDLE_INVALID){
6123         uint16_t sync_handle = hci_stack->le_periodic_terminate_sync_handle;
6124         hci_stack->le_periodic_terminate_sync_handle = HCI_CON_HANDLE_INVALID;
6125         hci_send_cmd(&hci_le_periodic_advertising_terminate_sync, sync_handle);
6126         return true;
6127     }
6128 #ifdef ENABLE_LE_PERIODIC_ADVERTISING
6129     if (periodic_sync_stop){
6130         hci_stack->le_periodic_sync_state = LE_CONNECTING_CANCEL;
6131         hci_send_cmd(&hci_le_periodic_advertising_create_sync_cancel);
6132         return true;
6133     }
6134 #endif /* ENABLE_LE_PERIODIC_ADVERTISING */
6135 #endif /* ENABLE_LE_EXTENDED_ADVERTISING */
6136 #endif /* ENABLE_LE_CENTRAL */
6137 
6138     // 2.4 Advertising: legacy, extended, periodic
6139 #ifdef ENABLE_LE_PERIPHERAL
6140     if (advertising_stop){
6141 #ifdef ENABLE_LE_EXTENDED_ADVERTISING
6142         if (hci_extended_advertising_supported()) {
6143             uint8_t advertising_stop_handle;
6144             if (advertising_stop_set != NULL){
6145                 advertising_stop_handle = advertising_stop_set->advertising_handle;
6146                 advertising_stop_set->state &= ~LE_ADVERTISEMENT_STATE_ACTIVE;
6147             } else {
6148                 advertising_stop_handle = 0;
6149                 hci_stack->le_advertisements_state &= ~LE_ADVERTISEMENT_STATE_ACTIVE;
6150             }
6151             const uint8_t advertising_handles[] = { advertising_stop_handle };
6152             const uint16_t durations[] = { 0 };
6153             const uint16_t max_events[] = { 0 };
6154             hci_send_cmd(&hci_le_set_extended_advertising_enable, 0, 1, advertising_handles, durations, max_events);
6155         } else
6156 #endif
6157         {
6158             hci_stack->le_advertisements_state &= ~LE_ADVERTISEMENT_STATE_ACTIVE;
6159             hci_send_cmd(&hci_le_set_advertise_enable, 0);
6160         }
6161         return true;
6162     }
6163 #ifdef ENABLE_LE_EXTENDED_ADVERTISING
6164 #ifdef ENABLE_LE_PERIODIC_ADVERTISING
6165     if (periodic_advertising_stop){
6166         advertising_stop_set->state &= ~LE_ADVERTISEMENT_STATE_PERIODIC_ACTIVE;
6167         hci_send_cmd(&hci_le_set_periodic_advertising_enable, 0, advertising_stop_set->advertising_handle);
6168         return true;
6169     }
6170 #endif /* ENABLE_LE_PERIODIC_ADVERTISING */
6171 #endif /* ENABLE_LE_EXTENDED_ADVERTISING */
6172 #endif /* ENABLE_LE_PERIPHERAL */
6173 
6174 
6175     // Phase 3: modify
6176 
6177     if (hci_stack->le_advertisements_todo & LE_ADVERTISEMENT_TASKS_SET_ADDRESS){
6178         hci_stack->le_advertisements_todo &= ~LE_ADVERTISEMENT_TASKS_SET_ADDRESS;
6179         hci_send_cmd(&hci_le_set_random_address, hci_stack->le_random_address);
6180 #ifdef ENABLE_LE_SET_ADV_PARAMS_ON_RANDOM_ADDRESS_CHANGE
6181         // workaround: on some Controllers, address in advertisements is updated only after next dv params set
6182         hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_SET_PARAMS;
6183 #endif
6184         return true;
6185     }
6186 
6187 #ifdef ENABLE_LE_CENTRAL
6188     if (hci_stack->le_scanning_param_update){
6189         hci_stack->le_scanning_param_update = false;
6190 #ifdef ENABLE_LE_EXTENDED_ADVERTISING
6191         if (hci_extended_advertising_supported()){
6192             // prepare arrays for all phys (LE Coded and LE 1M PHY)
6193             uint8_t  scan_types[2];
6194             uint16_t scan_intervals[2];
6195             uint16_t scan_windows[2];
6196 
6197             uint8_t i;
6198             uint8_t num_phys = hci_le_num_phys(hci_stack->le_scan_phys);
6199             for (i=0;i<num_phys;i++){
6200                 scan_types[i]     = hci_stack->le_scan_type;
6201                 scan_intervals[i] = hci_stack->le_scan_interval;
6202                 scan_windows[i]   = hci_stack->le_scan_window;
6203             }
6204             hci_send_cmd(&hci_le_set_extended_scan_parameters, hci_stack->le_own_addr_type,
6205                          hci_stack->le_scan_filter_policy, hci_stack->le_scan_phys, scan_types, scan_intervals, scan_windows);
6206         } else
6207 #endif
6208         {
6209             hci_send_cmd(&hci_le_set_scan_parameters, hci_stack->le_scan_type, hci_stack->le_scan_interval, hci_stack->le_scan_window,
6210                          hci_stack->le_own_addr_type, hci_stack->le_scan_filter_policy);
6211         }
6212         return true;
6213     }
6214 #endif
6215 
6216 #ifdef ENABLE_LE_PERIPHERAL
6217     if (hci_stack->le_advertisements_todo & LE_ADVERTISEMENT_TASKS_SET_PARAMS){
6218         hci_stack->le_advertisements_todo &= ~LE_ADVERTISEMENT_TASKS_SET_PARAMS;
6219         hci_stack->le_advertisements_own_addr_type = hci_stack->le_own_addr_type;
6220 #ifdef ENABLE_LE_EXTENDED_ADVERTISING
6221         if (hci_extended_advertising_supported()){
6222             // map advertisment type to advertising event properties
6223             uint16_t adv_event_properties = 0;
6224             const uint16_t mapping[] = { 0b00010011, 0b00010101, 0b00011101, 0b00010010, 0b00010000};
6225             if (hci_stack->le_advertisements_type < (sizeof(mapping)/sizeof(uint16_t))){
6226                 adv_event_properties = mapping[hci_stack->le_advertisements_type];
6227             }
6228             hci_stack->le_advertising_set_in_current_command = 0;
6229             hci_send_cmd(&hci_le_set_extended_advertising_parameters,
6230                          0,
6231                          adv_event_properties,
6232                          hci_stack->le_advertisements_interval_min,
6233                          hci_stack->le_advertisements_interval_max,
6234                          hci_stack->le_advertisements_channel_map,
6235                          hci_stack->le_advertisements_own_addr_type,
6236                          hci_stack->le_advertisements_direct_address_type,
6237                          hci_stack->le_advertisements_direct_address,
6238                          hci_stack->le_advertisements_filter_policy,
6239                          0x7f,  // tx power: no preference
6240                          0x01,  // primary adv phy: LE 1M
6241                          0,     // secondary adv max skip
6242                          0x01,  // secondary adv phy
6243                          0,     // adv sid
6244                          0      // scan request notification
6245                          );
6246         } else
6247 #endif
6248         {
6249             hci_send_cmd(&hci_le_set_advertising_parameters,
6250                          hci_stack->le_advertisements_interval_min,
6251                          hci_stack->le_advertisements_interval_max,
6252                          hci_stack->le_advertisements_type,
6253                          hci_stack->le_advertisements_own_addr_type,
6254                          hci_stack->le_advertisements_direct_address_type,
6255                          hci_stack->le_advertisements_direct_address,
6256                          hci_stack->le_advertisements_channel_map,
6257                          hci_stack->le_advertisements_filter_policy);
6258         }
6259         return true;
6260     }
6261 
6262 #ifdef ENABLE_LE_EXTENDED_ADVERTISING
6263     // assumption: only set if extended advertising is supported
6264     if ((hci_stack->le_advertisements_todo & LE_ADVERTISEMENT_TASKS_SET_ADDRESS_SET_0) != 0){
6265         hci_stack->le_advertisements_todo &= ~LE_ADVERTISEMENT_TASKS_SET_ADDRESS_SET_0;
6266         hci_send_cmd(&hci_le_set_advertising_set_random_address, 0, hci_stack->le_random_address);
6267         return true;
6268     }
6269 #endif
6270 
6271     if (hci_stack->le_advertisements_todo & LE_ADVERTISEMENT_TASKS_SET_ADV_DATA){
6272         hci_stack->le_advertisements_todo &= ~LE_ADVERTISEMENT_TASKS_SET_ADV_DATA;
6273         uint8_t adv_data_clean[31];
6274         memset(adv_data_clean, 0, sizeof(adv_data_clean));
6275         (void)memcpy(adv_data_clean, hci_stack->le_advertisements_data,
6276                      hci_stack->le_advertisements_data_len);
6277         btstack_replace_bd_addr_placeholder(adv_data_clean, hci_stack->le_advertisements_data_len, hci_stack->local_bd_addr);
6278 #ifdef ENABLE_LE_EXTENDED_ADVERTISING
6279         if (hci_extended_advertising_supported()){
6280             hci_stack->le_advertising_set_in_current_command = 0;
6281             hci_send_cmd(&hci_le_set_extended_advertising_data, 0, 0x03, 0x01, hci_stack->le_advertisements_data_len, adv_data_clean);
6282         } else
6283 #endif
6284         {
6285             hci_send_cmd(&hci_le_set_advertising_data, hci_stack->le_advertisements_data_len, adv_data_clean);
6286         }
6287         return true;
6288     }
6289 
6290     if (hci_stack->le_advertisements_todo & LE_ADVERTISEMENT_TASKS_SET_SCAN_DATA){
6291         hci_stack->le_advertisements_todo &= ~LE_ADVERTISEMENT_TASKS_SET_SCAN_DATA;
6292         uint8_t scan_data_clean[31];
6293         memset(scan_data_clean, 0, sizeof(scan_data_clean));
6294         (void)memcpy(scan_data_clean, hci_stack->le_scan_response_data,
6295                      hci_stack->le_scan_response_data_len);
6296         btstack_replace_bd_addr_placeholder(scan_data_clean, hci_stack->le_scan_response_data_len, hci_stack->local_bd_addr);
6297 #ifdef ENABLE_LE_EXTENDED_ADVERTISING
6298         if (hci_extended_advertising_supported()){
6299             hci_stack->le_advertising_set_in_current_command = 0;
6300             hci_send_cmd(&hci_le_set_extended_scan_response_data, 0, 0x03, 0x01, hci_stack->le_scan_response_data_len, scan_data_clean);
6301         } else
6302 #endif
6303         {
6304             hci_send_cmd(&hci_le_set_scan_response_data, hci_stack->le_scan_response_data_len, scan_data_clean);
6305         }
6306         return true;
6307     }
6308 
6309 #ifdef ENABLE_LE_EXTENDED_ADVERTISING
6310     if (hci_extended_advertising_supported()) {
6311         btstack_linked_list_iterator_t it;
6312         btstack_linked_list_iterator_init(&it, &hci_stack->le_advertising_sets);
6313         while (btstack_linked_list_iterator_has_next(&it)){
6314             le_advertising_set_t * advertising_set = (le_advertising_set_t*) btstack_linked_list_iterator_next(&it);
6315             if ((advertising_set->tasks & LE_ADVERTISEMENT_TASKS_REMOVE_SET) != 0) {
6316                 advertising_set->tasks &= ~LE_ADVERTISEMENT_TASKS_REMOVE_SET;
6317                 hci_stack->le_advertising_set_in_current_command = advertising_set->advertising_handle;
6318                 hci_send_cmd(&hci_le_remove_advertising_set, advertising_set->advertising_handle);
6319                 return true;
6320             }
6321             if ((advertising_set->tasks & LE_ADVERTISEMENT_TASKS_SET_PARAMS) != 0){
6322                 advertising_set->tasks &= ~LE_ADVERTISEMENT_TASKS_SET_PARAMS;
6323                 hci_stack->le_advertising_set_in_current_command = advertising_set->advertising_handle;
6324                 hci_send_cmd(&hci_le_set_extended_advertising_parameters,
6325                              advertising_set->advertising_handle,
6326                              advertising_set->extended_params.advertising_event_properties,
6327                              advertising_set->extended_params.primary_advertising_interval_min,
6328                              advertising_set->extended_params.primary_advertising_interval_max,
6329                              advertising_set->extended_params.primary_advertising_channel_map,
6330                              advertising_set->extended_params.own_address_type,
6331                              advertising_set->extended_params.peer_address_type,
6332                              advertising_set->extended_params.peer_address,
6333                              advertising_set->extended_params.advertising_filter_policy,
6334                              advertising_set->extended_params.advertising_tx_power,
6335                              advertising_set->extended_params.primary_advertising_phy,
6336                              advertising_set->extended_params.secondary_advertising_max_skip,
6337                              advertising_set->extended_params.secondary_advertising_phy,
6338                              advertising_set->extended_params.advertising_sid,
6339                              advertising_set->extended_params.scan_request_notification_enable
6340                 );
6341                 return true;
6342             }
6343             if ((advertising_set->tasks & LE_ADVERTISEMENT_TASKS_SET_ADDRESS) != 0){
6344                 advertising_set->tasks &= ~LE_ADVERTISEMENT_TASKS_SET_ADDRESS;
6345                 hci_send_cmd(&hci_le_set_advertising_set_random_address, advertising_set->advertising_handle, advertising_set->random_address);
6346                 return true;
6347             }
6348             if ((advertising_set->tasks & LE_ADVERTISEMENT_TASKS_SET_ADV_DATA) != 0) {
6349                 uint16_t pos = advertising_set->adv_data_pos;
6350                 uint8_t  operation = hci_le_extended_advertising_operation_for_chunk(pos, advertising_set->adv_data_len);
6351                 uint16_t data_to_upload = btstack_min(advertising_set->adv_data_len - pos, LE_EXTENDED_ADVERTISING_MAX_CHUNK_LEN);
6352                 if ((operation & 0x02) != 0){
6353                     // last fragment or complete data
6354                     operation |= 2;
6355                     advertising_set->adv_data_pos = 0;
6356                     advertising_set->tasks &= ~LE_ADVERTISEMENT_TASKS_SET_ADV_DATA;
6357                 } else {
6358                     advertising_set->adv_data_pos += data_to_upload;
6359                 }
6360                 hci_stack->le_advertising_set_in_current_command = advertising_set->advertising_handle;
6361                 hci_send_cmd(&hci_le_set_extended_advertising_data, advertising_set->advertising_handle, operation, 0x01, data_to_upload, &advertising_set->adv_data[pos]);
6362                 return true;
6363             }
6364             if ((advertising_set->tasks & LE_ADVERTISEMENT_TASKS_SET_SCAN_DATA) != 0) {
6365                 uint16_t pos = advertising_set->scan_data_pos;
6366                 uint8_t  operation = hci_le_extended_advertising_operation_for_chunk(pos, advertising_set->scan_data_len);
6367                 uint16_t data_to_upload = btstack_min(advertising_set->scan_data_len - pos, LE_EXTENDED_ADVERTISING_MAX_CHUNK_LEN);
6368                 if ((operation & 0x02) != 0){
6369                     advertising_set->scan_data_pos = 0;
6370                     advertising_set->tasks &= ~LE_ADVERTISEMENT_TASKS_SET_SCAN_DATA;
6371                 } else {
6372                     advertising_set->scan_data_pos += data_to_upload;
6373                 }
6374                 hci_stack->le_advertising_set_in_current_command = advertising_set->advertising_handle;
6375                 hci_send_cmd(&hci_le_set_extended_scan_response_data, advertising_set->advertising_handle, operation, 0x01, data_to_upload, &advertising_set->scan_data[pos]);
6376                 return true;
6377             }
6378 #ifdef ENABLE_LE_PERIODIC_ADVERTISING
6379             if ((advertising_set->tasks & LE_ADVERTISEMENT_TASKS_SET_PERIODIC_PARAMS) != 0){
6380                 advertising_set->tasks &= ~LE_ADVERTISEMENT_TASKS_SET_PERIODIC_PARAMS;
6381                 hci_stack->le_advertising_set_in_current_command = advertising_set->advertising_handle;
6382                 hci_send_cmd(&hci_le_set_periodic_advertising_parameters,
6383                              advertising_set->advertising_handle,
6384                              advertising_set->periodic_params.periodic_advertising_interval_min,
6385                              advertising_set->periodic_params.periodic_advertising_interval_max,
6386                              advertising_set->periodic_params.periodic_advertising_properties);
6387                 return true;
6388             }
6389             if ((advertising_set->tasks & LE_ADVERTISEMENT_TASKS_SET_PERIODIC_DATA) != 0) {
6390                 uint16_t pos = advertising_set->periodic_data_pos;
6391                 uint8_t  operation = hci_le_extended_advertising_operation_for_chunk(pos, advertising_set->periodic_data_len);
6392                 uint16_t data_to_upload = btstack_min(advertising_set->periodic_data_len - pos, LE_EXTENDED_ADVERTISING_MAX_CHUNK_LEN);
6393                 if ((operation & 0x02) != 0){
6394                     // last fragment or complete data
6395                     operation |= 2;
6396                     advertising_set->periodic_data_pos = 0;
6397                     advertising_set->tasks &= ~LE_ADVERTISEMENT_TASKS_SET_PERIODIC_DATA;
6398                 } else {
6399                     advertising_set->periodic_data_pos += data_to_upload;
6400                 }
6401                 hci_stack->le_advertising_set_in_current_command = advertising_set->advertising_handle;
6402                 hci_send_cmd(&hci_le_set_periodic_advertising_data, advertising_set->advertising_handle, operation, data_to_upload, &advertising_set->periodic_data[pos]);
6403                 return true;
6404             }
6405 #endif /* ENABLE_LE_PERIODIC_ADVERTISING */
6406         }
6407     }
6408 #endif
6409 
6410 #endif
6411 
6412 #ifdef ENABLE_LE_CENTRAL
6413     // if connect with whitelist was active and is not cancelled yet, wait until next time
6414     if (hci_stack->le_connecting_state == LE_CONNECTING_CANCEL) return false;
6415 #ifdef ENABLE_LE_EXTENDED_ADVERTISING
6416     // if periodic sync with advertiser list was active and is not cancelled yet, wait until next time
6417     if (hci_stack->le_periodic_sync_state == LE_CONNECTING_CANCEL) return false;
6418 #endif
6419 #endif
6420 
6421     // LE Whitelist Management
6422     if (whitelist_modification_pending){
6423         // add/remove entries
6424         btstack_linked_list_iterator_init(&lit, &hci_stack->le_whitelist);
6425         while (btstack_linked_list_iterator_has_next(&lit)){
6426             whitelist_entry_t * entry = (whitelist_entry_t*) btstack_linked_list_iterator_next(&lit);
6427 			if (entry->state & LE_WHITELIST_REMOVE_FROM_CONTROLLER){
6428 				entry->state &= ~LE_WHITELIST_REMOVE_FROM_CONTROLLER;
6429                 entry->state &= ~LE_WHITELIST_ON_CONTROLLER;
6430                 bd_addr_type_t address_type = entry->address_type;
6431                 bd_addr_t address;
6432                 memcpy(address, entry->address, 6);
6433                 if ((entry->state & LE_WHITELIST_ADD_TO_CONTROLLER) == 0){
6434                     // remove from whitelist if not scheduled for re-addition
6435                     btstack_linked_list_remove(&hci_stack->le_whitelist, (btstack_linked_item_t *) entry);
6436                     btstack_memory_whitelist_entry_free(entry);
6437                 }
6438 				hci_send_cmd(&hci_le_remove_device_from_white_list, address_type, address);
6439 				return true;
6440 			}
6441             if (entry->state & LE_WHITELIST_ADD_TO_CONTROLLER){
6442 				entry->state &= ~LE_WHITELIST_ADD_TO_CONTROLLER;
6443                 entry->state |= LE_WHITELIST_ON_CONTROLLER;
6444                 hci_send_cmd(&hci_le_add_device_to_white_list, entry->address_type, entry->address);
6445                 return true;
6446             }
6447         }
6448     }
6449 
6450 #ifdef ENABLE_LE_PRIVACY_ADDRESS_RESOLUTION
6451     // LE Resolving List Management
6452     if (resolving_list_supported) {
6453 		uint16_t i;
6454 		switch (hci_stack->le_resolving_list_state) {
6455 			case LE_RESOLVING_LIST_SEND_ENABLE_ADDRESS_RESOLUTION:
6456 				hci_stack->le_resolving_list_state = LE_RESOLVING_LIST_READ_SIZE;
6457 				hci_send_cmd(&hci_le_set_address_resolution_enabled, 1);
6458 				return true;
6459 			case LE_RESOLVING_LIST_READ_SIZE:
6460 				hci_stack->le_resolving_list_state = LE_RESOLVING_LIST_SEND_CLEAR;
6461 				hci_send_cmd(&hci_le_read_resolving_list_size);
6462 				return true;
6463 			case LE_RESOLVING_LIST_SEND_CLEAR:
6464 				hci_stack->le_resolving_list_state = LE_RESOLVING_LIST_UPDATES_ENTRIES;
6465 				(void) memset(hci_stack->le_resolving_list_add_entries, 0xff,
6466 							  sizeof(hci_stack->le_resolving_list_add_entries));
6467                 (void) memset(hci_stack->le_resolving_list_set_privacy_mode, 0xff,
6468                               sizeof(hci_stack->le_resolving_list_set_privacy_mode));
6469 				(void) memset(hci_stack->le_resolving_list_remove_entries, 0,
6470 							  sizeof(hci_stack->le_resolving_list_remove_entries));
6471 				hci_send_cmd(&hci_le_clear_resolving_list);
6472 				return true;
6473 			case LE_RESOLVING_LIST_UPDATES_ENTRIES:
6474                 // first remove old entries
6475 				for (i = 0; i < MAX_NUM_RESOLVING_LIST_ENTRIES && i < le_device_db_max_count(); i++) {
6476 					uint8_t offset = i >> 3;
6477 					uint8_t mask = 1 << (i & 7);
6478 					if ((hci_stack->le_resolving_list_remove_entries[offset] & mask) == 0) continue;
6479 					hci_stack->le_resolving_list_remove_entries[offset] &= ~mask;
6480 					bd_addr_t peer_identity_addreses;
6481 					int peer_identity_addr_type = (int) BD_ADDR_TYPE_UNKNOWN;
6482 					sm_key_t peer_irk;
6483 					le_device_db_info(i, &peer_identity_addr_type, peer_identity_addreses, peer_irk);
6484 					if (peer_identity_addr_type == BD_ADDR_TYPE_UNKNOWN) continue;
6485 
6486 #ifdef ENABLE_LE_WHITELIST_TOUCH_AFTER_RESOLVING_LIST_UPDATE
6487 					// trigger whitelist entry 'update' (work around for controller bug)
6488 					btstack_linked_list_iterator_init(&lit, &hci_stack->le_whitelist);
6489 					while (btstack_linked_list_iterator_has_next(&lit)) {
6490 						whitelist_entry_t *entry = (whitelist_entry_t *) btstack_linked_list_iterator_next(&lit);
6491 						if (entry->address_type != peer_identity_addr_type) continue;
6492 						if (memcmp(entry->address, peer_identity_addreses, 6) != 0) continue;
6493 						log_info("trigger whitelist update %s", bd_addr_to_str(peer_identity_addreses));
6494 						entry->state |= LE_WHITELIST_REMOVE_FROM_CONTROLLER | LE_WHITELIST_ADD_TO_CONTROLLER;
6495 					}
6496 #endif
6497 
6498 					hci_send_cmd(&hci_le_remove_device_from_resolving_list, peer_identity_addr_type,
6499 								 peer_identity_addreses);
6500 					return true;
6501 				}
6502 
6503                 // then add new entries
6504 				for (i = 0; i < MAX_NUM_RESOLVING_LIST_ENTRIES && i < le_device_db_max_count(); i++) {
6505 					uint8_t offset = i >> 3;
6506 					uint8_t mask = 1 << (i & 7);
6507 					if ((hci_stack->le_resolving_list_add_entries[offset] & mask) == 0) continue;
6508 					hci_stack->le_resolving_list_add_entries[offset] &= ~mask;
6509 					bd_addr_t peer_identity_addreses;
6510 					int peer_identity_addr_type = (int) BD_ADDR_TYPE_UNKNOWN;
6511 					sm_key_t peer_irk;
6512 					le_device_db_info(i, &peer_identity_addr_type, peer_identity_addreses, peer_irk);
6513 					if (peer_identity_addr_type == BD_ADDR_TYPE_UNKNOWN) continue;
6514                     if (btstack_is_null(peer_irk, 16)) continue;
6515 					const uint8_t *local_irk = gap_get_persistent_irk();
6516 					// command uses format specifier 'P' that stores 16-byte value without flip
6517 					uint8_t local_irk_flipped[16];
6518 					uint8_t peer_irk_flipped[16];
6519 					reverse_128(local_irk, local_irk_flipped);
6520 					reverse_128(peer_irk, peer_irk_flipped);
6521 					hci_send_cmd(&hci_le_add_device_to_resolving_list, peer_identity_addr_type, peer_identity_addreses,
6522 								 peer_irk_flipped, local_irk_flipped);
6523 					return true;
6524 				}
6525 
6526                 // finally, set privacy mode
6527                 for (i = 0; i < MAX_NUM_RESOLVING_LIST_ENTRIES && i < le_device_db_max_count(); i++) {
6528                     uint8_t offset = i >> 3;
6529                     uint8_t mask = 1 << (i & 7);
6530                     if ((hci_stack->le_resolving_list_set_privacy_mode[offset] & mask) == 0) continue;
6531                     hci_stack->le_resolving_list_set_privacy_mode[offset] &= ~mask;
6532                     if (hci_stack->le_privacy_mode == LE_PRIVACY_MODE_NETWORK) {
6533                         // Network Privacy Mode is default
6534                         continue;
6535                     }
6536                     bd_addr_t peer_identity_address;
6537                     int peer_identity_addr_type = (int) BD_ADDR_TYPE_UNKNOWN;
6538                     sm_key_t peer_irk;
6539                     le_device_db_info(i, &peer_identity_addr_type, peer_identity_address, peer_irk);
6540                     if (peer_identity_addr_type == BD_ADDR_TYPE_UNKNOWN) continue;
6541                     if (btstack_is_null(peer_irk, 16)) continue;
6542                     // command uses format specifier 'P' that stores 16-byte value without flip
6543                     uint8_t peer_irk_flipped[16];
6544                     reverse_128(peer_irk, peer_irk_flipped);
6545                     hci_send_cmd(&hci_le_set_privacy_mode, peer_identity_addr_type, peer_identity_address, hci_stack->le_privacy_mode);
6546                     return true;
6547                 }
6548 				hci_stack->le_resolving_list_state = LE_RESOLVING_LIST_DONE;
6549 				break;
6550 
6551 			default:
6552 				break;
6553 		}
6554 	}
6555     hci_stack->le_resolving_list_state = LE_RESOLVING_LIST_DONE;
6556 #endif
6557 
6558 #ifdef ENABLE_LE_CENTRAL
6559 #ifdef ENABLE_LE_EXTENDED_ADVERTISING
6560     // LE Whitelist Management
6561     if (periodic_list_modification_pending){
6562         // add/remove entries
6563         btstack_linked_list_iterator_init(&lit, &hci_stack->le_periodic_advertiser_list);
6564         while (btstack_linked_list_iterator_has_next(&lit)){
6565             periodic_advertiser_list_entry_t * entry = (periodic_advertiser_list_entry_t*) btstack_linked_list_iterator_next(&lit);
6566             if (entry->state & LE_PERIODIC_ADVERTISER_LIST_ENTRY_REMOVE_FROM_CONTROLLER){
6567                 entry->state &= ~LE_PERIODIC_ADVERTISER_LIST_ENTRY_REMOVE_FROM_CONTROLLER;
6568                 hci_send_cmd(&hci_le_remove_device_from_periodic_advertiser_list, entry->address_type, entry->address);
6569                 return true;
6570             }
6571             if (entry->state & LE_PERIODIC_ADVERTISER_LIST_ENTRY_ADD_TO_CONTROLLER){
6572                 entry->state &= ~LE_PERIODIC_ADVERTISER_LIST_ENTRY_ADD_TO_CONTROLLER;
6573                 entry->state |= LE_PERIODIC_ADVERTISER_LIST_ENTRY_ON_CONTROLLER;
6574                 hci_send_cmd(&hci_le_add_device_to_periodic_advertiser_list, entry->address_type, entry->address, entry->sid);
6575                 return true;
6576             }
6577             if ((entry->state & LE_PERIODIC_ADVERTISER_LIST_ENTRY_ON_CONTROLLER) == 0){
6578                 btstack_linked_list_remove(&hci_stack->le_periodic_advertiser_list, (btstack_linked_item_t *) entry);
6579                 btstack_memory_periodic_advertiser_list_entry_free(entry);
6580             }
6581         }
6582     }
6583 #endif
6584 #endif
6585 
6586 #ifdef ENABLE_LE_CENTRAL
6587 #ifdef ENABLE_LE_EXTENDED_ADVERTISING
6588 #ifdef ENABLE_LE_PERIODIC_ADVERTISING
6589     if (hci_stack->le_past_set_default_params){
6590         hci_stack->le_past_set_default_params = false;
6591         hci_send_cmd(&hci_le_set_default_periodic_advertising_sync_transfer_parameters,
6592                      hci_stack->le_past_mode,
6593                      hci_stack->le_past_skip,
6594                      hci_stack->le_past_sync_timeout,
6595                      hci_stack->le_past_cte_type);
6596         return true;
6597     }
6598 #endif
6599 #endif
6600 #endif
6601 
6602     // post-pone all actions until stack is fully working
6603     if (hci_stack->state != HCI_STATE_WORKING) return false;
6604 
6605     // advertisements, active scanning, and creating connections requires random address to be set if using private address
6606     if ( (hci_stack->le_own_addr_type != BD_ADDR_TYPE_LE_PUBLIC) && (hci_stack->le_random_address_set == 0u) ) return false;
6607 
6608     // Phase 4: restore state
6609 
6610 #ifdef ENABLE_LE_CENTRAL
6611     // re-start scanning
6612     if ((hci_stack->le_scanning_enabled && !hci_stack->le_scanning_active)){
6613         hci_stack->le_scanning_active = true;
6614 #ifdef ENABLE_LE_EXTENDED_ADVERTISING
6615         if (hci_extended_advertising_supported()){
6616             hci_send_cmd(&hci_le_set_extended_scan_enable, 1, hci_stack->le_scan_filter_duplicates, 0, 0);
6617         } else
6618 #endif
6619         {
6620             hci_send_cmd(&hci_le_set_scan_enable, 1, hci_stack->le_scan_filter_duplicates);
6621         }
6622         return true;
6623     }
6624 #endif
6625 
6626 #ifdef ENABLE_LE_CENTRAL
6627     // re-start connecting
6628     if ( (hci_stack->le_connecting_state == LE_CONNECTING_IDLE) && (hci_stack->le_connecting_request == LE_CONNECTING_WHITELIST)){
6629         bd_addr_t null_addr;
6630         memset(null_addr, 0, 6);
6631         hci_stack->le_connection_own_addr_type =  hci_stack->le_own_addr_type;
6632         hci_get_own_address_for_addr_type(hci_stack->le_connection_own_addr_type, hci_stack->le_connection_own_address);
6633         hci_send_le_create_connection(1, 0, null_addr);
6634         return true;
6635     }
6636 #ifdef ENABLE_LE_EXTENDED_ADVERTISING
6637     if (hci_stack->le_periodic_sync_state == LE_CONNECTING_IDLE){
6638         switch(hci_stack->le_periodic_sync_request){
6639             case LE_CONNECTING_DIRECT:
6640             case LE_CONNECTING_WHITELIST:
6641                 hci_stack->le_periodic_sync_state = ((hci_stack->le_periodic_sync_options & 1) != 0) ? LE_CONNECTING_WHITELIST : LE_CONNECTING_DIRECT;
6642                 hci_send_cmd(&hci_le_periodic_advertising_create_sync,
6643                              hci_stack->le_periodic_sync_options,
6644                              hci_stack->le_periodic_sync_advertising_sid,
6645                              hci_stack->le_periodic_sync_advertiser_address_type,
6646                              hci_stack->le_periodic_sync_advertiser_address,
6647                              hci_stack->le_periodic_sync_skip,
6648                              hci_stack->le_periodic_sync_timeout,
6649                              hci_stack->le_periodic_sync_cte_type);
6650                 return true;
6651             default:
6652                 break;
6653         }
6654     }
6655 #endif
6656 #endif
6657 
6658 #ifdef ENABLE_LE_PERIPHERAL
6659     // re-start advertising
6660     if (hci_stack->le_advertisements_enabled_for_current_roles && ((hci_stack->le_advertisements_state & LE_ADVERTISEMENT_STATE_ACTIVE) == 0)){
6661         // check if advertisements should be enabled given
6662         hci_stack->le_advertisements_state |= LE_ADVERTISEMENT_STATE_ACTIVE;
6663         hci_get_own_address_for_addr_type(hci_stack->le_advertisements_own_addr_type, hci_stack->le_advertisements_own_address);
6664 
6665 #ifdef ENABLE_LE_EXTENDED_ADVERTISING
6666         if (hci_extended_advertising_supported()){
6667             const uint8_t advertising_handles[] = { 0 };
6668             const uint16_t durations[] = { 0 };
6669             const uint16_t max_events[] = { 0 };
6670             hci_send_cmd(&hci_le_set_extended_advertising_enable, 1, 1, advertising_handles, durations, max_events);
6671         } else
6672 #endif
6673         {
6674             hci_send_cmd(&hci_le_set_advertise_enable, 1);
6675         }
6676         return true;
6677     }
6678 
6679 #ifdef ENABLE_LE_EXTENDED_ADVERTISING
6680     if (hci_extended_advertising_supported()) {
6681         btstack_linked_list_iterator_t it;
6682         btstack_linked_list_iterator_init(&it, &hci_stack->le_advertising_sets);
6683         while (btstack_linked_list_iterator_has_next(&it)) {
6684             le_advertising_set_t *advertising_set = (le_advertising_set_t *) btstack_linked_list_iterator_next(&it);
6685             if (((advertising_set->state & LE_ADVERTISEMENT_STATE_ENABLED) != 0) && ((advertising_set->state & LE_ADVERTISEMENT_STATE_ACTIVE) == 0)){
6686                 advertising_set->state |= LE_ADVERTISEMENT_STATE_ACTIVE;
6687                 const uint8_t advertising_handles[] = { advertising_set->advertising_handle };
6688                 const uint16_t durations[] = { advertising_set->enable_timeout };
6689                 const uint16_t max_events[] = { advertising_set->enable_max_scan_events };
6690                 hci_send_cmd(&hci_le_set_extended_advertising_enable, 1, 1, advertising_handles, durations, max_events);
6691                 return true;
6692             }
6693 #ifdef ENABLE_LE_PERIODIC_ADVERTISING
6694             if (((advertising_set->state & LE_ADVERTISEMENT_STATE_PERIODIC_ENABLED) != 0) && ((advertising_set->state & LE_ADVERTISEMENT_STATE_PERIODIC_ACTIVE) == 0)){
6695                 advertising_set->state |= LE_ADVERTISEMENT_STATE_PERIODIC_ACTIVE;
6696                 uint8_t enable = 1;
6697                 if (advertising_set->periodic_include_adi){
6698                     enable |= 2;
6699                 }
6700                 hci_send_cmd(&hci_le_set_periodic_advertising_enable, enable, advertising_set->advertising_handle);
6701                 return true;
6702             }
6703 #endif /* ENABLE_LE_PERIODIC_ADVERTISING */
6704         }
6705     }
6706 #endif
6707 #endif
6708 
6709     return false;
6710 }
6711 
6712 #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
6713 static bool hci_run_iso_tasks(void){
6714     btstack_linked_list_iterator_t it;
6715 
6716     if (hci_stack->iso_active_operation_type != HCI_ISO_TYPE_INVALID) {
6717         return false;
6718     }
6719 
6720     // BIG
6721     btstack_linked_list_iterator_init(&it, &hci_stack->le_audio_bigs);
6722     while (btstack_linked_list_iterator_has_next(&it)){
6723         le_audio_big_t * big = (le_audio_big_t *) btstack_linked_list_iterator_next(&it);
6724         switch (big->state){
6725             case LE_AUDIO_BIG_STATE_CREATE:
6726                 hci_stack->iso_active_operation_group_id = big->params->big_handle;
6727                 hci_stack->iso_active_operation_type = HCI_ISO_TYPE_BIS;
6728                 big->state = LE_AUDIO_BIG_STATE_W4_ESTABLISHED;
6729                 hci_send_cmd(&hci_le_create_big,
6730                              big->params->big_handle,
6731                              big->params->advertising_handle,
6732                              big->params->num_bis,
6733                              big->params->sdu_interval_us,
6734                              big->params->max_sdu,
6735                              big->params->max_transport_latency_ms,
6736                              big->params->rtn,
6737                              big->params->phy,
6738                              big->params->packing,
6739                              big->params->framing,
6740                              big->params->encryption,
6741                              big->params->broadcast_code);
6742                 return true;
6743             case LE_AUDIO_BIG_STATE_SETUP_ISO_PATH:
6744                 big->state = LE_AUDIO_BIG_STATE_W4_SETUP_ISO_PATH;
6745                 hci_send_cmd(&hci_le_setup_iso_data_path, big->bis_con_handles[big->state_vars.next_bis], 0, 0,  0, 0, 0,  0, 0, NULL);
6746                 return true;
6747             case LE_AUDIO_BIG_STATE_SETUP_ISO_PATHS_FAILED:
6748                 big->state = LE_AUDIO_BIG_STATE_W4_TERMINATED_AFTER_SETUP_FAILED;
6749                 hci_send_cmd(&hci_le_terminate_big, big->big_handle, big->state_vars.status);
6750                 return true;
6751             case LE_AUDIO_BIG_STATE_TERMINATE:
6752                 big->state = LE_AUDIO_BIG_STATE_W4_TERMINATED;
6753                 hci_send_cmd(&hci_le_terminate_big, big->big_handle, ERROR_CODE_SUCCESS);
6754                 return true;
6755             default:
6756                 break;
6757         }
6758     }
6759 
6760     // BIG Sync
6761     btstack_linked_list_iterator_init(&it, &hci_stack->le_audio_big_syncs);
6762     while (btstack_linked_list_iterator_has_next(&it)){
6763         le_audio_big_sync_t * big_sync = (le_audio_big_sync_t *) btstack_linked_list_iterator_next(&it);
6764         switch (big_sync->state){
6765             case LE_AUDIO_BIG_STATE_CREATE:
6766                 hci_stack->iso_active_operation_group_id = big_sync->params->big_handle;
6767                 hci_stack->iso_active_operation_type = HCI_ISO_TYPE_BIS;
6768                 big_sync->state = LE_AUDIO_BIG_STATE_W4_ESTABLISHED;
6769                 hci_send_cmd(&hci_le_big_create_sync,
6770                              big_sync->params->big_handle,
6771                              big_sync->params->sync_handle,
6772                              big_sync->params->encryption,
6773                              big_sync->params->broadcast_code,
6774                              big_sync->params->mse,
6775                              big_sync->params->big_sync_timeout_10ms,
6776                              big_sync->params->num_bis,
6777                              big_sync->params->bis_indices);
6778                 return true;
6779             case LE_AUDIO_BIG_STATE_SETUP_ISO_PATH:
6780                 big_sync->state = LE_AUDIO_BIG_STATE_W4_SETUP_ISO_PATH;
6781                 hci_send_cmd(&hci_le_setup_iso_data_path, big_sync->bis_con_handles[big_sync->state_vars.next_bis], 1, 0, 0, 0, 0, 0, 0, NULL);
6782                 return true;
6783             case LE_AUDIO_BIG_STATE_SETUP_ISO_PATHS_FAILED:
6784                 big_sync->state = LE_AUDIO_BIG_STATE_W4_TERMINATED_AFTER_SETUP_FAILED;
6785                 hci_send_cmd(&hci_le_big_terminate_sync, big_sync->big_handle);
6786                 return true;
6787             case LE_AUDIO_BIG_STATE_TERMINATE:
6788                 big_sync->state = LE_AUDIO_BIG_STATE_W4_TERMINATED;
6789                 hci_send_cmd(&hci_le_big_terminate_sync, big_sync->big_handle);
6790                 return true;
6791             default:
6792                 break;
6793         }
6794     }
6795 
6796     // CIG
6797     btstack_linked_list_iterator_init(&it, &hci_stack->le_audio_cigs);
6798     while (btstack_linked_list_iterator_has_next(&it)) {
6799         le_audio_cig_t *cig = (le_audio_cig_t *) btstack_linked_list_iterator_next(&it);
6800         uint8_t i;
6801         // Set CIG Parameters
6802         uint8_t cis_id[MAX_NR_CIS];
6803         uint16_t max_sdu_c_to_p[MAX_NR_CIS];
6804         uint16_t max_sdu_p_to_c[MAX_NR_CIS];
6805         uint8_t phy_c_to_p[MAX_NR_CIS];
6806         uint8_t phy_p_to_c[MAX_NR_CIS];
6807         uint8_t rtn_c_to_p[MAX_NR_CIS];
6808         uint8_t rtn_p_to_c[MAX_NR_CIS];
6809         switch (cig->state) {
6810             case LE_AUDIO_CIG_STATE_CREATE:
6811                 hci_stack->iso_active_operation_group_id = cig->params->cig_id;
6812                 hci_stack->iso_active_operation_type = HCI_ISO_TYPE_CIS;
6813                 cig->state = LE_AUDIO_CIG_STATE_W4_ESTABLISHED;
6814                 le_audio_cig_params_t * params = cig->params;
6815                 for (i = 0; i < params->num_cis; i++) {
6816                     le_audio_cis_params_t * cis_params = &cig->params->cis_params[i];
6817                     cis_id[i]         = cis_params->cis_id;
6818                     max_sdu_c_to_p[i] = cis_params->max_sdu_c_to_p;
6819                     max_sdu_p_to_c[i] = cis_params->max_sdu_p_to_c;
6820                     phy_c_to_p[i]     = cis_params->phy_c_to_p;
6821                     phy_p_to_c[i]     = cis_params->phy_p_to_c;
6822                     rtn_c_to_p[i]     = cis_params->rtn_c_to_p;
6823                     rtn_p_to_c[i]     = cis_params->rtn_p_to_c;
6824                 }
6825                 hci_send_cmd(&hci_le_set_cig_parameters,
6826                              cig->cig_id,
6827                              params->sdu_interval_c_to_p,
6828                              params->sdu_interval_p_to_c,
6829                              params->worst_case_sca,
6830                              params->packing,
6831                              params->framing,
6832                              params->max_transport_latency_c_to_p,
6833                              params->max_transport_latency_p_to_c,
6834                              params->num_cis,
6835                              cis_id,
6836                              max_sdu_c_to_p,
6837                              max_sdu_p_to_c,
6838                              phy_c_to_p,
6839                              phy_p_to_c,
6840                              rtn_c_to_p,
6841                              rtn_p_to_c
6842                 );
6843                 return true;
6844             case LE_AUDIO_CIG_STATE_CREATE_CIS:
6845                 hci_stack->iso_active_operation_group_id = cig->params->cig_id;
6846                 hci_stack->iso_active_operation_type = HCI_ISO_TYPE_CIS;
6847                 cig->state = LE_AUDIO_CIG_STATE_W4_CREATE_CIS;
6848                 for (i=0;i<cig->num_cis;i++){
6849                     cig->cis_setup_active[i] = true;
6850                 }
6851                 hci_send_cmd(&hci_le_create_cis, cig->num_cis, cig->cis_con_handles, cig->acl_con_handles);
6852                 return true;
6853             case LE_AUDIO_CIG_STATE_SETUP_ISO_PATH:
6854                 while (cig->state_vars.next_cis < (cig->num_cis * 2)){
6855                     // find next path to setup
6856                     uint8_t cis_index = cig->state_vars.next_cis >> 1;
6857                     if (cig->cis_established[cis_index] == false) {
6858                         continue;
6859                     }
6860                     uint8_t cis_direction = cig->state_vars.next_cis & 1;
6861                     bool setup = true;
6862                     if (cis_direction == 0){
6863                         // 0 - input - host to controller
6864                         // we are central => central to peripheral
6865                         setup &= cig->params->cis_params[cis_index].max_sdu_c_to_p > 0;
6866                     } else {
6867                         // 1 - output - controller to host
6868                         // we are central => peripheral to central
6869                         setup &= cig->params->cis_params[cis_index].max_sdu_p_to_c > 0;
6870                     }
6871                     if (setup){
6872                         hci_stack->iso_active_operation_group_id = cig->params->cig_id;
6873                         hci_stack->iso_active_operation_type = HCI_ISO_TYPE_CIS;
6874                         cig->state = LE_AUDIO_CIG_STATE_W4_SETUP_ISO_PATH;
6875                         hci_send_cmd(&hci_le_setup_iso_data_path, cig->cis_con_handles[cis_index], cis_direction, 0, 0, 0, 0, 0, 0, NULL);
6876                         return true;
6877                     }
6878                     cig->state_vars.next_cis++;
6879                 }
6880                 // emit done
6881                 cig->state = LE_AUDIO_CIG_STATE_ACTIVE;
6882             default:
6883                 break;
6884         }
6885     }
6886 
6887     // CIS Accept/Reject
6888     btstack_linked_list_iterator_init(&it, &hci_stack->iso_streams);
6889     while (btstack_linked_list_iterator_has_next(&it)) {
6890         hci_iso_stream_t *iso_stream = (hci_iso_stream_t *) btstack_linked_list_iterator_next(&it);
6891         hci_con_handle_t con_handle;
6892         switch (iso_stream->state){
6893             case HCI_ISO_STREAM_W2_ACCEPT:
6894                 iso_stream->state = HCI_ISO_STREAM_STATE_W4_ESTABLISHED;
6895                 hci_stack->iso_active_operation_type = HCI_ISO_TYPE_CIS;
6896                 hci_stack->iso_active_operation_group_id = HCI_ISO_GROUP_ID_SINGLE_CIS;
6897                 hci_send_cmd(&hci_le_accept_cis_request, iso_stream->cis_handle);
6898                 return true;
6899             case HCI_ISO_STREAM_W2_REJECT:
6900                 con_handle = iso_stream->cis_handle;
6901                 hci_stack->iso_active_operation_type = HCI_ISO_TYPE_CIS;
6902                 hci_stack->iso_active_operation_group_id = HCI_ISO_GROUP_ID_SINGLE_CIS;
6903                 hci_iso_stream_finalize(iso_stream);
6904                 hci_send_cmd(&hci_le_reject_cis_request, con_handle, ERROR_CODE_REMOTE_DEVICE_TERMINATED_CONNECTION_DUE_TO_LOW_RESOURCES);
6905                 return true;
6906             case HCI_ISO_STREAM_STATE_W2_SETUP_ISO_INPUT:
6907                 hci_stack->iso_active_operation_group_id = HCI_ISO_GROUP_ID_SINGLE_CIS;
6908                 hci_stack->iso_active_operation_type = HCI_ISO_TYPE_CIS;
6909                 iso_stream->state = HCI_ISO_STREAM_STATE_W4_ISO_SETUP_INPUT;
6910                 hci_send_cmd(&hci_le_setup_iso_data_path, iso_stream->cis_handle, 0, 0, 0, 0, 0, 0, 0, NULL);
6911                 break;
6912             case HCI_ISO_STREAM_STATE_W2_SETUP_ISO_OUTPUT:
6913                 hci_stack->iso_active_operation_group_id = HCI_ISO_GROUP_ID_SINGLE_CIS;
6914                 hci_stack->iso_active_operation_type = HCI_ISO_TYPE_CIS;
6915                 iso_stream->state = HCI_ISO_STREAM_STATE_W4_ISO_SETUP_OUTPUT;
6916                 hci_send_cmd(&hci_le_setup_iso_data_path, iso_stream->cis_handle, 1, 0, 0, 0, 0, 0, 0, NULL);
6917                 break;
6918             default:
6919                 break;
6920         }
6921     }
6922 
6923     return false;
6924 }
6925 #endif /* ENABLE_LE_ISOCHRONOUS_STREAMS */
6926 #endif
6927 
6928 static bool hci_run_general_pending_commands(void){
6929     btstack_linked_item_t * it;
6930     for (it = (btstack_linked_item_t *) hci_stack->connections; it != NULL; it = it->next){
6931         hci_connection_t * connection = (hci_connection_t *) it;
6932 
6933         switch(connection->state){
6934             case SEND_CREATE_CONNECTION:
6935                 switch(connection->address_type){
6936 #ifdef ENABLE_CLASSIC
6937                     case BD_ADDR_TYPE_ACL:
6938                         log_info("sending hci_create_connection");
6939                         hci_send_cmd(&hci_create_connection, connection->address, hci_usable_acl_packet_types(), 0, 0, 0, hci_stack->allow_role_switch);
6940                         break;
6941 #endif
6942                     default:
6943 #ifdef ENABLE_BLE
6944 #ifdef ENABLE_LE_CENTRAL
6945                         log_info("sending hci_le_create_connection");
6946                         hci_stack->le_connection_own_addr_type =  hci_stack->le_own_addr_type;
6947                         hci_get_own_address_for_addr_type(hci_stack->le_connection_own_addr_type, hci_stack->le_connection_own_address);
6948                         hci_send_le_create_connection(0, connection->address_type, connection->address);
6949                         connection->state = SENT_CREATE_CONNECTION;
6950 #endif
6951 #endif
6952                         break;
6953                 }
6954                 return true;
6955 
6956 #ifdef ENABLE_CLASSIC
6957             case RECEIVED_CONNECTION_REQUEST:
6958                 if (connection->address_type == BD_ADDR_TYPE_ACL){
6959                     log_info("sending hci_accept_connection_request");
6960                     connection->state = ACCEPTED_CONNECTION_REQUEST;
6961                     hci_send_cmd(&hci_accept_connection_request, connection->address, hci_stack->master_slave_policy);
6962                     return true;
6963                 }
6964                 break;
6965 #endif
6966             case SEND_DISCONNECT:
6967                 connection->state = SENT_DISCONNECT;
6968                 hci_send_cmd(&hci_disconnect, connection->con_handle, ERROR_CODE_REMOTE_USER_TERMINATED_CONNECTION);
6969                 return true;
6970 
6971             default:
6972                 break;
6973         }
6974 
6975         // no further commands if connection is about to get shut down
6976         if (connection->state == SENT_DISCONNECT) continue;
6977 
6978 #ifdef ENABLE_CLASSIC
6979 
6980         // Handling link key request requires remote supported features
6981         if (((connection->authentication_flags & AUTH_FLAG_HANDLE_LINK_KEY_REQUEST) != 0)){
6982             log_info("responding to link key request, have link key db: %u", hci_stack->link_key_db != NULL);
6983             connectionClearAuthenticationFlags(connection, AUTH_FLAG_HANDLE_LINK_KEY_REQUEST);
6984 
6985             bool have_link_key = connection->link_key_type != INVALID_LINK_KEY;
6986             bool security_level_sufficient = have_link_key && (gap_security_level_for_link_key_type(connection->link_key_type) >= connection->requested_security_level);
6987             if (have_link_key && security_level_sufficient){
6988                 hci_send_cmd(&hci_link_key_request_reply, connection->address, &connection->link_key);
6989             } else {
6990                 hci_send_cmd(&hci_link_key_request_negative_reply, connection->address);
6991             }
6992             return true;
6993         }
6994 
6995         if (connection->authentication_flags & AUTH_FLAG_DENY_PIN_CODE_REQUEST){
6996             log_info("denying to pin request");
6997             connectionClearAuthenticationFlags(connection, AUTH_FLAG_DENY_PIN_CODE_REQUEST);
6998             hci_send_cmd(&hci_pin_code_request_negative_reply, connection->address);
6999             return true;
7000         }
7001 
7002         // security assessment requires remote features
7003         if ((connection->authentication_flags & AUTH_FLAG_RECV_IO_CAPABILITIES_REQUEST) != 0){
7004             connectionClearAuthenticationFlags(connection, AUTH_FLAG_RECV_IO_CAPABILITIES_REQUEST);
7005             hci_ssp_assess_security_on_io_cap_request(connection);
7006             // no return here as hci_ssp_assess_security_on_io_cap_request only sets AUTH_FLAG_SEND_IO_CAPABILITIES_REPLY or AUTH_FLAG_SEND_IO_CAPABILITIES_NEGATIVE_REPLY
7007         }
7008 
7009         if (connection->authentication_flags & AUTH_FLAG_SEND_IO_CAPABILITIES_REPLY){
7010             connectionClearAuthenticationFlags(connection, AUTH_FLAG_SEND_IO_CAPABILITIES_REPLY);
7011             // set authentication requirements:
7012             // - MITM = ssp_authentication_requirement (USER) | requested_security_level (dynamic)
7013             // - BONDING MODE: dedicated if requested, bondable otherwise. Drop bondable if not set for remote
7014             uint8_t authreq = hci_stack->ssp_authentication_requirement & 1;
7015             if (gap_mitm_protection_required_for_security_level(connection->requested_security_level)){
7016                 authreq |= 1;
7017             }
7018             bool bonding = hci_stack->bondable;
7019             if (connection->authentication_flags & AUTH_FLAG_RECV_IO_CAPABILITIES_RESPONSE){
7020                 // if we have received IO Cap Response, we're in responder role
7021                 bool remote_bonding = connection->io_cap_response_auth_req >= SSP_IO_AUTHREQ_MITM_PROTECTION_NOT_REQUIRED_DEDICATED_BONDING;
7022                 if (bonding && !remote_bonding){
7023                     log_info("Remote not bonding, dropping local flag");
7024                     bonding = false;
7025                 }
7026             }
7027             if (bonding){
7028                 if (connection->bonding_flags & BONDING_DEDICATED){
7029                     authreq |= SSP_IO_AUTHREQ_MITM_PROTECTION_NOT_REQUIRED_DEDICATED_BONDING;
7030                 } else {
7031                     authreq |= SSP_IO_AUTHREQ_MITM_PROTECTION_NOT_REQUIRED_GENERAL_BONDING;
7032                 }
7033             }
7034             uint8_t have_oob_data = 0;
7035 #ifdef ENABLE_CLASSIC_PAIRING_OOB
7036             if (connection->classic_oob_c_192 != NULL){
7037                     have_oob_data |= 1;
7038             }
7039             if (connection->classic_oob_c_256 != NULL){
7040                 have_oob_data |= 2;
7041             }
7042 #endif
7043             hci_send_cmd(&hci_io_capability_request_reply, &connection->address, hci_stack->ssp_io_capability, have_oob_data, authreq);
7044             return true;
7045         }
7046 
7047         if (connection->authentication_flags & AUTH_FLAG_SEND_IO_CAPABILITIES_NEGATIVE_REPLY) {
7048             connectionClearAuthenticationFlags(connection, AUTH_FLAG_SEND_IO_CAPABILITIES_NEGATIVE_REPLY);
7049             hci_send_cmd(&hci_io_capability_request_negative_reply, &connection->address, ERROR_CODE_PAIRING_NOT_ALLOWED);
7050             return true;
7051         }
7052 
7053 #ifdef ENABLE_CLASSIC_PAIRING_OOB
7054         if (connection->authentication_flags & AUTH_FLAG_SEND_REMOTE_OOB_DATA_REPLY){
7055             connectionClearAuthenticationFlags(connection, AUTH_FLAG_SEND_REMOTE_OOB_DATA_REPLY);
7056             const uint8_t zero[16] = { 0 };
7057             const uint8_t * r_192 = zero;
7058             const uint8_t * c_192 = zero;
7059             const uint8_t * r_256 = zero;
7060             const uint8_t * c_256 = zero;
7061             // verify P-256 OOB
7062             if ((connection->classic_oob_c_256 != NULL) && hci_command_supported(SUPPORTED_HCI_COMMAND_REMOTE_OOB_EXTENDED_DATA_REQUEST_REPLY)) {
7063                 c_256 = connection->classic_oob_c_256;
7064                 if (connection->classic_oob_r_256 != NULL) {
7065                     r_256 = connection->classic_oob_r_256;
7066                 }
7067             }
7068             // verify P-192 OOB
7069             if ((connection->classic_oob_c_192 != NULL)) {
7070                 c_192 = connection->classic_oob_c_192;
7071                 if (connection->classic_oob_r_192 != NULL) {
7072                     r_192 = connection->classic_oob_r_192;
7073                 }
7074             }
7075 
7076             // assess security
7077             bool need_level_4 = hci_stack->gap_secure_connections_only_mode || (connection->requested_security_level == LEVEL_4);
7078             bool can_reach_level_4 = hci_remote_sc_enabled(connection) && (c_256 != NULL);
7079             if (need_level_4 && !can_reach_level_4){
7080                 log_info("Level 4 required, but not possible -> abort");
7081                 hci_pairing_complete(connection, ERROR_CODE_INSUFFICIENT_SECURITY);
7082                 // send oob negative reply
7083                 c_256 = NULL;
7084                 c_192 = NULL;
7085             }
7086 
7087             // Reply
7088             if (c_256 != zero) {
7089                 hci_send_cmd(&hci_remote_oob_extended_data_request_reply, &connection->address, c_192, r_192, c_256, r_256);
7090             } else if (c_192 != zero){
7091                 hci_send_cmd(&hci_remote_oob_data_request_reply, &connection->address, c_192, r_192);
7092             } else {
7093                 hci_stack->classic_oob_con_handle = connection->con_handle;
7094                 hci_send_cmd(&hci_remote_oob_data_request_negative_reply, &connection->address);
7095             }
7096             return true;
7097         }
7098 #endif
7099 
7100         if (connection->authentication_flags & AUTH_FLAG_SEND_USER_CONFIRM_REPLY){
7101             connectionClearAuthenticationFlags(connection, AUTH_FLAG_SEND_USER_CONFIRM_REPLY);
7102             hci_send_cmd(&hci_user_confirmation_request_reply, &connection->address);
7103             return true;
7104         }
7105 
7106         if (connection->authentication_flags & AUTH_FLAG_SEND_USER_CONFIRM_NEGATIVE_REPLY){
7107             connectionClearAuthenticationFlags(connection, AUTH_FLAG_SEND_USER_CONFIRM_NEGATIVE_REPLY);
7108             hci_send_cmd(&hci_user_confirmation_request_negative_reply, &connection->address);
7109             return true;
7110         }
7111 
7112         if (connection->authentication_flags & AUTH_FLAG_SEND_USER_PASSKEY_REPLY){
7113             connectionClearAuthenticationFlags(connection, AUTH_FLAG_SEND_USER_PASSKEY_REPLY);
7114             hci_send_cmd(&hci_user_passkey_request_reply, &connection->address, 000000);
7115             return true;
7116         }
7117 
7118         if ((connection->bonding_flags & (BONDING_DISCONNECT_DEDICATED_DONE | BONDING_DEDICATED_DEFER_DISCONNECT)) == BONDING_DISCONNECT_DEDICATED_DONE){
7119             connection->bonding_flags &= ~BONDING_DISCONNECT_DEDICATED_DONE;
7120             connection->bonding_flags |= BONDING_EMIT_COMPLETE_ON_DISCONNECT;
7121             connection->state = SENT_DISCONNECT;
7122             hci_send_cmd(&hci_disconnect, connection->con_handle, ERROR_CODE_REMOTE_USER_TERMINATED_CONNECTION);
7123             return true;
7124         }
7125 
7126         if ((connection->bonding_flags & BONDING_SEND_AUTHENTICATE_REQUEST) && ((connection->bonding_flags & BONDING_RECEIVED_REMOTE_FEATURES) != 0)){
7127             connection->bonding_flags &= ~BONDING_SEND_AUTHENTICATE_REQUEST;
7128             connection->bonding_flags |= BONDING_SENT_AUTHENTICATE_REQUEST;
7129             hci_send_cmd(&hci_authentication_requested, connection->con_handle);
7130             return true;
7131         }
7132 
7133         if (connection->bonding_flags & BONDING_SEND_ENCRYPTION_REQUEST){
7134             connection->bonding_flags &= ~BONDING_SEND_ENCRYPTION_REQUEST;
7135             hci_send_cmd(&hci_set_connection_encryption, connection->con_handle, 1);
7136             return true;
7137         }
7138 
7139         if (connection->bonding_flags & BONDING_SEND_READ_ENCRYPTION_KEY_SIZE){
7140             connection->bonding_flags &= ~BONDING_SEND_READ_ENCRYPTION_KEY_SIZE;
7141             hci_send_cmd(&hci_read_encryption_key_size, connection->con_handle, 1);
7142             return true;
7143         }
7144 
7145         if (connection->bonding_flags & BONDING_REQUEST_REMOTE_FEATURES_PAGE_0){
7146             connection->bonding_flags &= ~BONDING_REQUEST_REMOTE_FEATURES_PAGE_0;
7147             hci_send_cmd(&hci_read_remote_supported_features_command, connection->con_handle);
7148             return true;
7149         }
7150 
7151         if (connection->bonding_flags & BONDING_REQUEST_REMOTE_FEATURES_PAGE_1){
7152             connection->bonding_flags &= ~BONDING_REQUEST_REMOTE_FEATURES_PAGE_1;
7153             hci_send_cmd(&hci_read_remote_extended_features_command, connection->con_handle, 1);
7154             return true;
7155         }
7156 
7157         if (connection->bonding_flags & BONDING_REQUEST_REMOTE_FEATURES_PAGE_2){
7158             connection->bonding_flags &= ~BONDING_REQUEST_REMOTE_FEATURES_PAGE_2;
7159             hci_send_cmd(&hci_read_remote_extended_features_command, connection->con_handle, 2);
7160             return true;
7161         }
7162 #endif
7163 
7164         if (connection->bonding_flags & BONDING_DISCONNECT_SECURITY_BLOCK){
7165             connection->bonding_flags &= ~BONDING_DISCONNECT_SECURITY_BLOCK;
7166 #ifdef ENABLE_CLASSIC
7167             hci_pairing_complete(connection, ERROR_CODE_CONNECTION_REJECTED_DUE_TO_SECURITY_REASONS);
7168 #endif
7169             if (connection->state != SENT_DISCONNECT){
7170                 connection->state = SENT_DISCONNECT;
7171                 hci_send_cmd(&hci_disconnect, connection->con_handle, ERROR_CODE_AUTHENTICATION_FAILURE);
7172                 return true;
7173             }
7174         }
7175 
7176 #ifdef ENABLE_CLASSIC
7177         uint16_t sniff_min_interval;
7178         switch (connection->sniff_min_interval){
7179             case 0:
7180                 break;
7181             case 0xffff:
7182                 connection->sniff_min_interval = 0;
7183                 hci_send_cmd(&hci_exit_sniff_mode, connection->con_handle);
7184                 return true;
7185             default:
7186                 sniff_min_interval = connection->sniff_min_interval;
7187                 connection->sniff_min_interval = 0;
7188                 hci_send_cmd(&hci_sniff_mode, connection->con_handle, connection->sniff_max_interval, sniff_min_interval, connection->sniff_attempt, connection->sniff_timeout);
7189                 return true;
7190         }
7191 
7192         if (connection->sniff_subrating_max_latency != 0xffff){
7193             uint16_t max_latency = connection->sniff_subrating_max_latency;
7194             connection->sniff_subrating_max_latency = 0;
7195             hci_send_cmd(&hci_sniff_subrating, connection->con_handle, max_latency, connection->sniff_subrating_min_remote_timeout, connection->sniff_subrating_min_local_timeout);
7196             return true;
7197         }
7198 
7199         if (connection->qos_service_type != HCI_SERVICE_TYPE_INVALID){
7200             uint8_t service_type = (uint8_t) connection->qos_service_type;
7201             connection->qos_service_type = HCI_SERVICE_TYPE_INVALID;
7202             hci_send_cmd(&hci_qos_setup, connection->con_handle, 0, service_type, connection->qos_token_rate, connection->qos_peak_bandwidth, connection->qos_latency, connection->qos_delay_variation);
7203             return true;
7204         }
7205 
7206         if (connection->request_role != HCI_ROLE_INVALID){
7207             hci_role_t role = connection->request_role;
7208             connection->request_role = HCI_ROLE_INVALID;
7209             hci_send_cmd(&hci_switch_role_command, connection->address, role);
7210             return true;
7211         }
7212 #endif
7213 
7214         if (connection->gap_connection_tasks != 0){
7215 #ifdef ENABLE_CLASSIC
7216             if ((connection->gap_connection_tasks & GAP_CONNECTION_TASK_WRITE_AUTOMATIC_FLUSH_TIMEOUT) != 0){
7217                 connection->gap_connection_tasks &= ~GAP_CONNECTION_TASK_WRITE_AUTOMATIC_FLUSH_TIMEOUT;
7218                 hci_send_cmd(&hci_write_automatic_flush_timeout, connection->con_handle, hci_stack->automatic_flush_timeout);
7219                 return true;
7220             }
7221             if (connection->gap_connection_tasks & GAP_CONNECTION_TASK_WRITE_SUPERVISION_TIMEOUT){
7222                 connection->gap_connection_tasks &= ~GAP_CONNECTION_TASK_WRITE_SUPERVISION_TIMEOUT;
7223                 hci_send_cmd(&hci_write_link_supervision_timeout, connection->con_handle, hci_stack->link_supervision_timeout);
7224                 return true;
7225             }
7226 #endif
7227             if (connection->gap_connection_tasks & GAP_CONNECTION_TASK_READ_RSSI){
7228                 connection->gap_connection_tasks &= ~GAP_CONNECTION_TASK_READ_RSSI;
7229                 hci_send_cmd(&hci_read_rssi, connection->con_handle);
7230                 return true;
7231             }
7232 #ifdef ENABLE_BLE
7233             if (connection->gap_connection_tasks & GAP_CONNECTION_TASK_LE_READ_REMOTE_FEATURES){
7234                 connection->gap_connection_tasks &= ~GAP_CONNECTION_TASK_LE_READ_REMOTE_FEATURES;
7235                 hci_send_cmd(&hci_le_read_remote_used_features, connection->con_handle);
7236                 return true;
7237             }
7238 #endif
7239         }
7240 
7241 #ifdef ENABLE_BLE
7242         switch (connection->le_con_parameter_update_state){
7243             // response to L2CAP CON PARAMETER UPDATE REQUEST
7244             case CON_PARAMETER_UPDATE_CHANGE_HCI_CON_PARAMETERS:
7245                 connection->le_con_parameter_update_state = CON_PARAMETER_UPDATE_NONE;
7246                 hci_send_cmd(&hci_le_connection_update, connection->con_handle, connection->le_conn_interval_min,
7247                              connection->le_conn_interval_max, connection->le_conn_latency, connection->le_supervision_timeout,
7248                              hci_stack->le_minimum_ce_length, hci_stack->le_maximum_ce_length);
7249                 return true;
7250             case CON_PARAMETER_UPDATE_REPLY:
7251                 connection->le_con_parameter_update_state = CON_PARAMETER_UPDATE_NONE;
7252                 hci_send_cmd(&hci_le_remote_connection_parameter_request_reply, connection->con_handle, connection->le_conn_interval_min,
7253                              connection->le_conn_interval_max, connection->le_conn_latency, connection->le_supervision_timeout,
7254                              hci_stack->le_minimum_ce_length, hci_stack->le_maximum_ce_length);
7255                 return true;
7256             case CON_PARAMETER_UPDATE_NEGATIVE_REPLY:
7257                 connection->le_con_parameter_update_state = CON_PARAMETER_UPDATE_NONE;
7258                 hci_send_cmd(&hci_le_remote_connection_parameter_request_negative_reply, connection->con_handle,
7259                              ERROR_CODE_UNACCEPTABLE_CONNECTION_PARAMETERS);
7260                 return true;
7261             default:
7262                 break;
7263         }
7264         if (connection->le_phy_update_all_phys != 0xffu){
7265             uint8_t all_phys = connection->le_phy_update_all_phys;
7266             connection->le_phy_update_all_phys = 0xff;
7267             hci_send_cmd(&hci_le_set_phy, connection->con_handle, all_phys, connection->le_phy_update_tx_phys, connection->le_phy_update_rx_phys, connection->le_phy_update_phy_options);
7268             return true;
7269         }
7270 #ifdef ENABLE_LE_PERIODIC_ADVERTISING
7271         if (connection->le_past_sync_handle != HCI_CON_HANDLE_INVALID){
7272             hci_con_handle_t sync_handle = connection->le_past_sync_handle;
7273             connection->le_past_sync_handle = HCI_CON_HANDLE_INVALID;
7274             hci_send_cmd(&hci_le_periodic_advertising_sync_transfer, connection->con_handle, connection->le_past_service_data, sync_handle);
7275             return true;
7276         }
7277         if (connection->le_past_advertising_handle != 0xff){
7278             uint8_t advertising_handle = connection->le_past_advertising_handle;
7279             connection->le_past_advertising_handle = 0xff;
7280             hci_send_cmd(&hci_le_periodic_advertising_set_info_transfer, connection->con_handle, connection->le_past_service_data, advertising_handle);
7281             return true;
7282         }
7283 #endif
7284 #endif
7285     }
7286     return false;
7287 }
7288 
7289 static void hci_run(void){
7290 
7291     // stack state sub statemachines
7292     switch (hci_stack->state) {
7293         case HCI_STATE_INITIALIZING:
7294             hci_initializing_run();
7295             break;
7296         case HCI_STATE_HALTING:
7297             hci_halting_run();
7298             break;
7299         case HCI_STATE_FALLING_ASLEEP:
7300             hci_falling_asleep_run();
7301             break;
7302         default:
7303             break;
7304     }
7305 
7306     // allow to run after initialization to working transition
7307     if (hci_stack->state != HCI_STATE_WORKING){
7308         return;
7309     }
7310 
7311     bool done;
7312 
7313     // send continuation fragments first, as they block the prepared packet buffer
7314     done = hci_run_acl_fragments();
7315     if (done) return;
7316 
7317 #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
7318     done = hci_run_iso_fragments();
7319     if (done) return;
7320 #endif
7321 
7322 #ifdef ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL
7323     // send host num completed packets next as they don't require num_cmd_packets > 0
7324     if (!hci_can_send_comand_packet_transport()) return;
7325     if (hci_stack->host_completed_packets){
7326         hci_host_num_completed_packets();
7327         return;
7328     }
7329 #endif
7330 
7331     if (!hci_can_send_command_packet_now()) return;
7332 
7333     // global/non-connection oriented commands
7334 
7335 
7336 #ifdef ENABLE_CLASSIC
7337     // general gap classic
7338     done = hci_run_general_gap_classic();
7339     if (done) return;
7340 #endif
7341 
7342 #ifdef ENABLE_BLE
7343     // general gap le
7344     done = hci_run_general_gap_le();
7345     if (done) return;
7346 
7347 #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
7348     // ISO related tasks, e.g. BIG create/terminate/sync
7349     done = hci_run_iso_tasks();
7350     if (done) return;
7351 #endif
7352 #endif
7353 
7354     // send pending HCI commands
7355     hci_run_general_pending_commands();
7356 }
7357 
7358 uint8_t hci_send_cmd_packet(uint8_t *packet, int size){
7359     // house-keeping
7360 
7361 #ifdef ENABLE_CLASSIC
7362     bd_addr_t addr;
7363     hci_connection_t * conn;
7364 #endif
7365 #ifdef ENABLE_LE_CENTRAL
7366     uint8_t initiator_filter_policy;
7367 #endif
7368 
7369     uint16_t opcode = little_endian_read_16(packet, 0);
7370     switch (opcode) {
7371         case HCI_OPCODE_HCI_WRITE_LOOPBACK_MODE:
7372             hci_stack->loopback_mode = packet[3];
7373             break;
7374 
7375 #ifdef ENABLE_CLASSIC
7376         case HCI_OPCODE_HCI_CREATE_CONNECTION:
7377             reverse_bd_addr(&packet[3], addr);
7378             log_info("Create_connection to %s", bd_addr_to_str(addr));
7379 
7380             // CVE-2020-26555: reject outgoing connection to device with same BD ADDR
7381             if (memcmp(hci_stack->local_bd_addr, addr, 6) == 0) {
7382                 hci_emit_connection_complete(addr, 0, ERROR_CODE_CONNECTION_REJECTED_DUE_TO_UNACCEPTABLE_BD_ADDR);
7383                 return ERROR_CODE_CONNECTION_REJECTED_DUE_TO_UNACCEPTABLE_BD_ADDR;
7384             }
7385 
7386             conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
7387             if (!conn) {
7388                 conn = create_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL, HCI_ROLE_MASTER);
7389                 if (!conn) {
7390                     // notify client that alloc failed
7391                     hci_emit_connection_complete(addr, 0, BTSTACK_MEMORY_ALLOC_FAILED);
7392                     return BTSTACK_MEMORY_ALLOC_FAILED; // packet not sent to controller
7393                 }
7394                 conn->state = SEND_CREATE_CONNECTION;
7395             }
7396 
7397             log_info("conn state %u", conn->state);
7398             // TODO: L2CAP should not send create connection command, instead a (new) gap function should be used
7399             switch (conn->state) {
7400                 // if connection active exists
7401                 case OPEN:
7402                     // and OPEN, emit connection complete command
7403                     hci_emit_connection_complete(addr, conn->con_handle, ERROR_CODE_SUCCESS);
7404                     // packet not sent to controller
7405                     return ERROR_CODE_ACL_CONNECTION_ALREADY_EXISTS;
7406                 case RECEIVED_DISCONNECTION_COMPLETE:
7407                     // create connection triggered in disconnect complete event, let's do it now
7408                     break;
7409                 case SEND_CREATE_CONNECTION:
7410 #ifdef ENABLE_HCI_SERIALIZED_CONTROLLER_OPERATIONS
7411                     if (hci_classic_operation_active()){
7412                         return ERROR_CODE_SUCCESS;
7413                     }
7414 #endif
7415                     // connection created by hci, e.g. dedicated bonding, but not executed yet, let's do it now
7416                     break;
7417                 default:
7418                     // otherwise, just ignore as it is already in the open process
7419                     // packet not sent to controller
7420                     return ERROR_CODE_ACL_CONNECTION_ALREADY_EXISTS;
7421             }
7422             conn->state = SENT_CREATE_CONNECTION;
7423 
7424             // track outgoing connection
7425             hci_stack->outgoing_addr_type = BD_ADDR_TYPE_ACL;
7426             (void) memcpy(hci_stack->outgoing_addr, addr, 6);
7427             break;
7428 
7429         case HCI_OPCODE_HCI_SETUP_SYNCHRONOUS_CONNECTION:
7430             conn = hci_connection_for_handle(little_endian_read_16(packet, 3));
7431             if (conn == NULL) {
7432                 // neither SCO nor ACL connection for con handle
7433                 return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
7434             } else {
7435                 switch (conn->address_type){
7436                     case BD_ADDR_TYPE_ACL:
7437                         // assert SCO connection does not exit
7438                         if (hci_connection_for_bd_addr_and_type(conn->address, BD_ADDR_TYPE_SCO) != NULL){
7439                             return ERROR_CODE_COMMAND_DISALLOWED;
7440                         }
7441                         // allocate connection struct
7442                         conn = create_connection_for_bd_addr_and_type(conn->address, BD_ADDR_TYPE_SCO,
7443                                                                       HCI_ROLE_MASTER);
7444                         if (!conn) {
7445                             return ERROR_CODE_MEMORY_CAPACITY_EXCEEDED;
7446                         }
7447                         break;
7448                     case BD_ADDR_TYPE_SCO:
7449                         // update of existing SCO connection
7450                         break;
7451                     default:
7452                         return ERROR_CODE_INVALID_HCI_COMMAND_PARAMETERS;
7453                 }
7454             }
7455 
7456             // conn refers to hci connection of type sco now
7457 
7458             conn->state = SENT_CREATE_CONNECTION;
7459 
7460             // track outgoing connection to handle command status with error
7461             hci_stack->outgoing_addr_type = BD_ADDR_TYPE_SCO;
7462             (void) memcpy(hci_stack->outgoing_addr, addr, 6);
7463 
7464             // setup_synchronous_connection? Voice setting at offset 22
7465             // TODO: compare to current setting if sco connection already active
7466             hci_stack->sco_voice_setting_active = little_endian_read_16(packet, 15);
7467             break;
7468 
7469         case HCI_OPCODE_HCI_ACCEPT_SYNCHRONOUS_CONNECTION:
7470             // get SCO connection
7471             reverse_bd_addr(&packet[3], addr);
7472             conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_SCO);
7473             if (conn == NULL){
7474                 return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
7475             }
7476 
7477             conn->state = ACCEPTED_CONNECTION_REQUEST;
7478 
7479             // track outgoing connection to handle command status with error
7480             hci_stack->outgoing_addr_type = BD_ADDR_TYPE_SCO;
7481             (void) memcpy(hci_stack->outgoing_addr, addr, 6);
7482 
7483             // accept_synchronous_connection? Voice setting at offset 18
7484             // TODO: compare to current setting if sco connection already active
7485             hci_stack->sco_voice_setting_active = little_endian_read_16(packet, 19);
7486             break;
7487 #endif
7488 
7489 #ifdef ENABLE_BLE
7490 #ifdef ENABLE_LE_CENTRAL
7491         case HCI_OPCODE_HCI_LE_CREATE_CONNECTION:
7492             // white list used?
7493             initiator_filter_policy = packet[7];
7494             switch (initiator_filter_policy) {
7495                 case 0:
7496                     // whitelist not used
7497                     hci_stack->le_connecting_state = LE_CONNECTING_DIRECT;
7498                     break;
7499                 case 1:
7500                     hci_stack->le_connecting_state = LE_CONNECTING_WHITELIST;
7501                     break;
7502                 default:
7503                     log_error("Invalid initiator_filter_policy in LE Create Connection %u", initiator_filter_policy);
7504                     break;
7505             }
7506             // track outgoing connection
7507             hci_stack->outgoing_addr_type = (bd_addr_type_t) packet[8]; // peer address type
7508             reverse_bd_addr( &packet[9], hci_stack->outgoing_addr); // peer address
7509             break;
7510 #ifdef ENABLE_LE_EXTENDED_ADVERTISING
7511         case HCI_OPCODE_HCI_LE_EXTENDED_CREATE_CONNECTION:
7512             // white list used?
7513             initiator_filter_policy = packet[3];
7514             switch (initiator_filter_policy) {
7515                 case 0:
7516                     // whitelist not used
7517                     hci_stack->le_connecting_state = LE_CONNECTING_DIRECT;
7518                     break;
7519                 case 1:
7520                     hci_stack->le_connecting_state = LE_CONNECTING_WHITELIST;
7521                     break;
7522                 default:
7523                     log_error("Invalid initiator_filter_policy in LE Create Connection %u", initiator_filter_policy);
7524                     break;
7525             }
7526             // track outgoing connection
7527             hci_stack->outgoing_addr_type = (bd_addr_type_t) packet[5]; // peer address type
7528             reverse_bd_addr( &packet[6], hci_stack->outgoing_addr); // peer address
7529             break;
7530 #endif
7531         case HCI_OPCODE_HCI_LE_CREATE_CONNECTION_CANCEL:
7532             hci_stack->le_connecting_state = LE_CONNECTING_CANCEL;
7533             break;
7534 #endif
7535 #endif /* ENABLE_BLE */
7536         default:
7537             break;
7538     }
7539 
7540     hci_stack->num_cmd_packets--;
7541 
7542     hci_dump_packet(HCI_COMMAND_DATA_PACKET, 0, packet, size);
7543     int err = hci_stack->hci_transport->send_packet(HCI_COMMAND_DATA_PACKET, packet, size);
7544     if (err != 0){
7545         return ERROR_CODE_HARDWARE_FAILURE;
7546     }
7547     return ERROR_CODE_SUCCESS;
7548 }
7549 
7550 // disconnect because of security block
7551 void hci_disconnect_security_block(hci_con_handle_t con_handle){
7552     hci_connection_t * connection = hci_connection_for_handle(con_handle);
7553     if (!connection) return;
7554     connection->bonding_flags |= BONDING_DISCONNECT_SECURITY_BLOCK;
7555 }
7556 
7557 
7558 // Configure Secure Simple Pairing
7559 
7560 #ifdef ENABLE_CLASSIC
7561 
7562 // enable will enable SSP during init
7563 void gap_ssp_set_enable(int enable){
7564     hci_stack->ssp_enable = enable;
7565 }
7566 
7567 static int hci_local_ssp_activated(void){
7568     return gap_ssp_supported() && hci_stack->ssp_enable;
7569 }
7570 
7571 // if set, BTstack will respond to io capability request using authentication requirement
7572 void gap_ssp_set_io_capability(int io_capability){
7573     hci_stack->ssp_io_capability = io_capability;
7574 }
7575 void gap_ssp_set_authentication_requirement(int authentication_requirement){
7576     hci_stack->ssp_authentication_requirement = authentication_requirement;
7577 }
7578 
7579 // if set, BTstack will confirm a numberic comparion and enter '000000' if requested
7580 void gap_ssp_set_auto_accept(int auto_accept){
7581     hci_stack->ssp_auto_accept = auto_accept;
7582 }
7583 
7584 void gap_secure_connections_enable(bool enable){
7585     hci_stack->secure_connections_enable = enable;
7586 }
7587 bool gap_secure_connections_active(void){
7588     return hci_stack->secure_connections_active;
7589 }
7590 
7591 #endif
7592 
7593 // va_list part of hci_send_cmd
7594 uint8_t hci_send_cmd_va_arg(const hci_cmd_t * cmd, va_list argptr){
7595     if (!hci_can_send_command_packet_now()){
7596         log_error("hci_send_cmd called but cannot send packet now");
7597         return ERROR_CODE_COMMAND_DISALLOWED;
7598     }
7599 
7600     // for HCI INITIALIZATION
7601     // log_info("hci_send_cmd: opcode %04x", cmd->opcode);
7602     hci_stack->last_cmd_opcode = cmd->opcode;
7603 
7604     hci_reserve_packet_buffer();
7605     uint8_t * packet = hci_stack->hci_packet_buffer;
7606     uint16_t size = hci_cmd_create_from_template(packet, cmd, argptr);
7607     uint8_t status = hci_send_cmd_packet(packet, size);
7608 
7609     // release packet buffer on error or for synchronous transport implementations
7610     if ((status != ERROR_CODE_SUCCESS) || hci_transport_synchronous()){
7611         hci_release_packet_buffer();
7612         hci_emit_transport_packet_sent();
7613     }
7614 
7615     return status;
7616 }
7617 
7618 /**
7619  * pre: numcmds >= 0 - it's allowed to send a command to the controller
7620  */
7621 uint8_t hci_send_cmd(const hci_cmd_t * cmd, ...){
7622     va_list argptr;
7623     va_start(argptr, cmd);
7624     uint8_t status = hci_send_cmd_va_arg(cmd, argptr);
7625     va_end(argptr);
7626     return status;
7627 }
7628 
7629 // Create various non-HCI events.
7630 // TODO: generalize, use table similar to hci_create_command
7631 
7632 static void hci_emit_event(uint8_t * event, uint16_t size, int dump){
7633     // dump packet
7634     if (dump) {
7635         hci_dump_packet( HCI_EVENT_PACKET, 1, event, size);
7636     }
7637 
7638     // dispatch to all event handlers
7639     btstack_linked_list_iterator_t it;
7640     btstack_linked_list_iterator_init(&it, &hci_stack->event_handlers);
7641     while (btstack_linked_list_iterator_has_next(&it)){
7642         btstack_packet_callback_registration_t * entry = (btstack_packet_callback_registration_t*) btstack_linked_list_iterator_next(&it);
7643         entry->callback(HCI_EVENT_PACKET, 0, event, size);
7644     }
7645 }
7646 
7647 static void hci_emit_acl_packet(uint8_t * packet, uint16_t size){
7648     if (!hci_stack->acl_packet_handler) return;
7649     hci_stack->acl_packet_handler(HCI_ACL_DATA_PACKET, 0, packet, size);
7650 }
7651 
7652 #ifdef ENABLE_CLASSIC
7653 static void hci_notify_if_sco_can_send_now(void){
7654     // notify SCO sender if waiting
7655     if (!hci_stack->sco_waiting_for_can_send_now) return;
7656     if (hci_can_send_sco_packet_now()){
7657         hci_stack->sco_waiting_for_can_send_now = 0;
7658         uint8_t event[2] = { HCI_EVENT_SCO_CAN_SEND_NOW, 0 };
7659         hci_dump_packet(HCI_EVENT_PACKET, 1, event, sizeof(event));
7660         hci_stack->sco_packet_handler(HCI_EVENT_PACKET, 0, event, sizeof(event));
7661     }
7662 }
7663 
7664 // parsing end emitting has been merged to reduce code size
7665 static void gap_inquiry_explode(uint8_t *packet, uint16_t size) {
7666     uint8_t event[28+GAP_INQUIRY_MAX_NAME_LEN];
7667 
7668     uint8_t * eir_data;
7669     ad_context_t context;
7670     const uint8_t * name;
7671     uint8_t         name_len;
7672 
7673     if (size < 3) return;
7674 
7675     int event_type = hci_event_packet_get_type(packet);
7676     int num_reserved_fields = (event_type == HCI_EVENT_INQUIRY_RESULT) ? 2 : 1;    // 2 for old event, 1 otherwise
7677     int num_responses       = hci_event_inquiry_result_get_num_responses(packet);
7678 
7679     switch (event_type){
7680         case HCI_EVENT_INQUIRY_RESULT:
7681         case HCI_EVENT_INQUIRY_RESULT_WITH_RSSI:
7682             if (size != (3 + (num_responses * 14))) return;
7683             break;
7684         case HCI_EVENT_EXTENDED_INQUIRY_RESPONSE:
7685             if (size != 257) return;
7686             if (num_responses != 1) return;
7687             break;
7688         default:
7689             return;
7690     }
7691 
7692     // event[1] is set at the end
7693     int i;
7694     for (i=0; i<num_responses;i++){
7695         memset(event, 0, sizeof(event));
7696         event[0] = GAP_EVENT_INQUIRY_RESULT;
7697         uint8_t event_size = 27;    // if name is not set by EIR
7698 
7699         (void)memcpy(&event[2], &packet[3 + (i * 6)], 6); // bd_addr
7700         event[8] =          packet[3 + (num_responses*(6))                         + (i*1)];     // page_scan_repetition_mode
7701         (void)memcpy(&event[9],
7702                      &packet[3 + (num_responses * (6 + 1 + num_reserved_fields)) + (i * 3)],
7703                      3); // class of device
7704         (void)memcpy(&event[12],
7705                      &packet[3 + (num_responses * (6 + 1 + num_reserved_fields + 3)) + (i * 2)],
7706                      2); // clock offset
7707 
7708         switch (event_type){
7709             case HCI_EVENT_INQUIRY_RESULT:
7710                 // 14,15,16,17 = 0, size 18
7711                 break;
7712             case HCI_EVENT_INQUIRY_RESULT_WITH_RSSI:
7713                 event[14] = 1;
7714                 event[15] = packet [3 + (num_responses*(6+1+num_reserved_fields+3+2)) + (i*1)]; // rssi
7715                 // 16,17 = 0, size 18
7716                 break;
7717             case HCI_EVENT_EXTENDED_INQUIRY_RESPONSE:
7718                 event[14] = 1;
7719                 event[15] = packet [3 + (num_responses*(6+1+num_reserved_fields+3+2)) + (i*1)]; // rssi
7720                 // EIR packets only contain a single inquiry response
7721                 eir_data = &packet[3 + (6+1+num_reserved_fields+3+2+1)];
7722                 name = NULL;
7723                 // Iterate over EIR data
7724                 for (ad_iterator_init(&context, EXTENDED_INQUIRY_RESPONSE_DATA_LEN, eir_data) ; ad_iterator_has_more(&context) ; ad_iterator_next(&context)){
7725                     uint8_t data_type    = ad_iterator_get_data_type(&context);
7726                     uint8_t data_size    = ad_iterator_get_data_len(&context);
7727                     const uint8_t * data = ad_iterator_get_data(&context);
7728                     // Prefer Complete Local Name over Shortened Local Name
7729                     switch (data_type){
7730                         case BLUETOOTH_DATA_TYPE_SHORTENED_LOCAL_NAME:
7731                             if (name) continue;
7732                             /* fall through */
7733                         case BLUETOOTH_DATA_TYPE_COMPLETE_LOCAL_NAME:
7734                             name = data;
7735                             name_len = data_size;
7736                             break;
7737                         case BLUETOOTH_DATA_TYPE_DEVICE_ID:
7738                             if (data_size != 8) break;
7739                             event[16] = 1;
7740                             memcpy(&event[17], data, 8);
7741                             break;
7742                         default:
7743                             break;
7744                     }
7745                 }
7746                 if (name){
7747                     event[25] = 1;
7748                     // truncate name if needed
7749                     int len = btstack_min(name_len, GAP_INQUIRY_MAX_NAME_LEN);
7750                     event[26] = len;
7751                     (void)memcpy(&event[27], name, len);
7752                     event_size += len;
7753                 }
7754                 break;
7755             default:
7756                 return;
7757         }
7758         event[1] = event_size - 2;
7759         hci_emit_event(event, event_size, 1);
7760     }
7761 }
7762 #endif
7763 
7764 void hci_emit_state(void){
7765     log_info("BTSTACK_EVENT_STATE %u", hci_stack->state);
7766     uint8_t event[3];
7767     event[0] = BTSTACK_EVENT_STATE;
7768     event[1] = sizeof(event) - 2u;
7769     event[2] = hci_stack->state;
7770     hci_emit_event(event, sizeof(event), 1);
7771 }
7772 
7773 #ifdef ENABLE_CLASSIC
7774 static void hci_emit_connection_complete(bd_addr_t address, hci_con_handle_t con_handle, uint8_t status){
7775     uint8_t event[13];
7776     event[0] = HCI_EVENT_CONNECTION_COMPLETE;
7777     event[1] = sizeof(event) - 2;
7778     event[2] = status;
7779     little_endian_store_16(event, 3, con_handle);
7780     reverse_bd_addr(address, &event[5]);
7781     event[11] = 1; // ACL connection
7782     event[12] = 0; // encryption disabled
7783     hci_emit_event(event, sizeof(event), 1);
7784 }
7785 static void hci_emit_l2cap_check_timeout(hci_connection_t *conn){
7786     if (disable_l2cap_timeouts) return;
7787     log_info("L2CAP_EVENT_TIMEOUT_CHECK");
7788     uint8_t event[4];
7789     event[0] = L2CAP_EVENT_TIMEOUT_CHECK;
7790     event[1] = sizeof(event) - 2;
7791     little_endian_store_16(event, 2, conn->con_handle);
7792     hci_emit_event(event, sizeof(event), 1);
7793 }
7794 #endif
7795 
7796 #ifdef ENABLE_BLE
7797 #ifdef ENABLE_LE_CENTRAL
7798 static void hci_emit_le_connection_complete(uint8_t address_type, const bd_addr_t address, hci_con_handle_t con_handle, uint8_t status){
7799     uint8_t event[21];
7800     event[0] = HCI_EVENT_LE_META;
7801     event[1] = sizeof(event) - 2u;
7802     event[2] = HCI_SUBEVENT_LE_CONNECTION_COMPLETE;
7803     event[3] = status;
7804     little_endian_store_16(event, 4, con_handle);
7805     event[6] = 0; // TODO: role
7806     event[7] = address_type;
7807     reverse_bd_addr(address, &event[8]);
7808     little_endian_store_16(event, 14, 0); // interval
7809     little_endian_store_16(event, 16, 0); // latency
7810     little_endian_store_16(event, 18, 0); // supervision timeout
7811     event[20] = 0; // master clock accuracy
7812     hci_emit_event(event, sizeof(event), 1);
7813 }
7814 #endif
7815 #endif
7816 
7817 static void hci_emit_transport_packet_sent(void){
7818     // notify upper stack that it might be possible to send again
7819     uint8_t event[] = { HCI_EVENT_TRANSPORT_PACKET_SENT, 0};
7820     hci_emit_event(&event[0], sizeof(event), 0);  // don't dump
7821 }
7822 
7823 static void hci_emit_disconnection_complete(hci_con_handle_t con_handle, uint8_t reason){
7824     uint8_t event[6];
7825     event[0] = HCI_EVENT_DISCONNECTION_COMPLETE;
7826     event[1] = sizeof(event) - 2u;
7827     event[2] = 0; // status = OK
7828     little_endian_store_16(event, 3, con_handle);
7829     event[5] = reason;
7830     hci_emit_event(event, sizeof(event), 1);
7831 }
7832 
7833 static void hci_emit_nr_connections_changed(void){
7834     log_info("BTSTACK_EVENT_NR_CONNECTIONS_CHANGED %u", nr_hci_connections());
7835     uint8_t event[3];
7836     event[0] = BTSTACK_EVENT_NR_CONNECTIONS_CHANGED;
7837     event[1] = sizeof(event) - 2u;
7838     event[2] = nr_hci_connections();
7839     hci_emit_event(event, sizeof(event), 1);
7840 }
7841 
7842 static void hci_emit_hci_open_failed(void){
7843     log_info("BTSTACK_EVENT_POWERON_FAILED");
7844     uint8_t event[2];
7845     event[0] = BTSTACK_EVENT_POWERON_FAILED;
7846     event[1] = sizeof(event) - 2u;
7847     hci_emit_event(event, sizeof(event), 1);
7848 }
7849 
7850 static void hci_emit_dedicated_bonding_result(bd_addr_t address, uint8_t status){
7851     log_info("hci_emit_dedicated_bonding_result %u ", status);
7852     uint8_t event[9];
7853     int pos = 0;
7854     event[pos++] = GAP_EVENT_DEDICATED_BONDING_COMPLETED;
7855     event[pos++] = sizeof(event) - 2u;
7856     event[pos++] = status;
7857     reverse_bd_addr(address, &event[pos]);
7858     hci_emit_event(event, sizeof(event), 1);
7859 }
7860 
7861 
7862 #ifdef ENABLE_CLASSIC
7863 
7864 static void hci_emit_security_level(hci_con_handle_t con_handle, gap_security_level_t level){
7865     log_info("hci_emit_security_level %u for handle %x", level, con_handle);
7866     uint8_t event[5];
7867     int pos = 0;
7868     event[pos++] = GAP_EVENT_SECURITY_LEVEL;
7869     event[pos++] = sizeof(event) - 2;
7870     little_endian_store_16(event, 2, con_handle);
7871     pos += 2;
7872     event[pos++] = level;
7873     hci_emit_event(event, sizeof(event), 1);
7874 }
7875 
7876 static gap_security_level_t gap_security_level_for_connection(hci_connection_t * connection){
7877     if (!connection) return LEVEL_0;
7878     if ((connection->authentication_flags & AUTH_FLAG_CONNECTION_ENCRYPTED) == 0) return LEVEL_0;
7879     // BIAS: we only consider Authenticated if the connection is already encrypted, which requires that both sides have link key
7880     if ((connection->authentication_flags & AUTH_FLAG_CONNECTION_AUTHENTICATED) == 0) return LEVEL_0;
7881     if (connection->encryption_key_size < hci_stack->gap_required_encyrption_key_size) return LEVEL_0;
7882     gap_security_level_t security_level = gap_security_level_for_link_key_type(connection->link_key_type);
7883     // LEVEL 4 always requires 128 bit encrytion key size
7884     if ((security_level == LEVEL_4) && (connection->encryption_key_size < 16)){
7885         security_level = LEVEL_3;
7886     }
7887     return security_level;
7888 }
7889 
7890 static void hci_emit_scan_mode_changed(uint8_t discoverable, uint8_t connectable){
7891     uint8_t event[4];
7892     event[0] = BTSTACK_EVENT_SCAN_MODE_CHANGED;
7893     event[1] = sizeof(event) - 2;
7894     event[2] = discoverable;
7895     event[3] = connectable;
7896     hci_emit_event(event, sizeof(event), 1);
7897 }
7898 
7899 // query if remote side supports eSCO
7900 bool hci_remote_esco_supported(hci_con_handle_t con_handle){
7901     hci_connection_t * connection = hci_connection_for_handle(con_handle);
7902     if (!connection) return false;
7903     return (connection->remote_supported_features[0] & 1) != 0;
7904 }
7905 
7906 uint16_t hci_remote_sco_packet_types(hci_con_handle_t con_handle){
7907     hci_connection_t * connection = hci_connection_for_handle(con_handle);
7908     if (!connection) return 0;
7909     return connection->remote_supported_sco_packets;
7910 }
7911 
7912 static bool hci_ssp_supported(hci_connection_t * connection){
7913     const uint8_t mask = BONDING_REMOTE_SUPPORTS_SSP_CONTROLLER | BONDING_REMOTE_SUPPORTS_SSP_HOST;
7914     return (connection->bonding_flags & mask) == mask;
7915 }
7916 
7917 // query if remote side supports SSP
7918 bool hci_remote_ssp_supported(hci_con_handle_t con_handle){
7919     hci_connection_t * connection = hci_connection_for_handle(con_handle);
7920     if (!connection) return false;
7921     return hci_ssp_supported(connection) ? 1 : 0;
7922 }
7923 
7924 bool gap_ssp_supported_on_both_sides(hci_con_handle_t handle){
7925     return hci_local_ssp_activated() && hci_remote_ssp_supported(handle);
7926 }
7927 
7928 /**
7929  * Check if remote supported features query has completed
7930  */
7931 bool hci_remote_features_available(hci_con_handle_t handle){
7932     hci_connection_t * connection = hci_connection_for_handle(handle);
7933     if (!connection) return false;
7934     return (connection->bonding_flags & BONDING_RECEIVED_REMOTE_FEATURES) != 0;
7935 }
7936 
7937 /**
7938  * Trigger remote supported features query
7939  */
7940 
7941 static void hci_trigger_remote_features_for_connection(hci_connection_t * connection){
7942     if ((connection->bonding_flags & (BONDING_REMOTE_FEATURES_QUERY_ACTIVE | BONDING_RECEIVED_REMOTE_FEATURES)) == 0){
7943         connection->bonding_flags |= BONDING_REMOTE_FEATURES_QUERY_ACTIVE | BONDING_REQUEST_REMOTE_FEATURES_PAGE_0;
7944     }
7945 }
7946 
7947 void hci_remote_features_query(hci_con_handle_t con_handle){
7948     hci_connection_t * connection = hci_connection_for_handle(con_handle);
7949     if (!connection) return;
7950     hci_trigger_remote_features_for_connection(connection);
7951     hci_run();
7952 }
7953 
7954 // GAP API
7955 /**
7956  * @bbrief enable/disable bonding. default is enabled
7957  * @praram enabled
7958  */
7959 void gap_set_bondable_mode(int enable){
7960     hci_stack->bondable = enable ? 1 : 0;
7961 }
7962 /**
7963  * @brief Get bondable mode.
7964  * @return 1 if bondable
7965  */
7966 int gap_get_bondable_mode(void){
7967     return hci_stack->bondable;
7968 }
7969 
7970 /**
7971  * @brief map link keys to security levels
7972  */
7973 gap_security_level_t gap_security_level_for_link_key_type(link_key_type_t link_key_type){
7974     switch (link_key_type){
7975         case AUTHENTICATED_COMBINATION_KEY_GENERATED_FROM_P256:
7976             return LEVEL_4;
7977         case COMBINATION_KEY:
7978         case AUTHENTICATED_COMBINATION_KEY_GENERATED_FROM_P192:
7979             return LEVEL_3;
7980         default:
7981             return LEVEL_2;
7982     }
7983 }
7984 
7985 /**
7986  * @brief map link keys to secure connection yes/no
7987  */
7988 bool gap_secure_connection_for_link_key_type(link_key_type_t link_key_type){
7989     switch (link_key_type){
7990         case AUTHENTICATED_COMBINATION_KEY_GENERATED_FROM_P256:
7991         case UNAUTHENTICATED_COMBINATION_KEY_GENERATED_FROM_P256:
7992             return true;
7993         default:
7994             return false;
7995     }
7996 }
7997 
7998 /**
7999  * @brief map link keys to authenticated
8000  */
8001 bool gap_authenticated_for_link_key_type(link_key_type_t link_key_type){
8002     switch (link_key_type){
8003         case AUTHENTICATED_COMBINATION_KEY_GENERATED_FROM_P256:
8004         case AUTHENTICATED_COMBINATION_KEY_GENERATED_FROM_P192:
8005             return true;
8006         default:
8007             return false;
8008     }
8009 }
8010 
8011 bool gap_mitm_protection_required_for_security_level(gap_security_level_t level){
8012     log_info("gap_mitm_protection_required_for_security_level %u", level);
8013     return level > LEVEL_2;
8014 }
8015 
8016 /**
8017  * @brief get current security level
8018  */
8019 gap_security_level_t gap_security_level(hci_con_handle_t con_handle){
8020     hci_connection_t * connection = hci_connection_for_handle(con_handle);
8021     if (!connection) return LEVEL_0;
8022     return gap_security_level_for_connection(connection);
8023 }
8024 
8025 /**
8026  * @brief request connection to device to
8027  * @result GAP_AUTHENTICATION_RESULT
8028  */
8029 void gap_request_security_level(hci_con_handle_t con_handle, gap_security_level_t requested_level){
8030     hci_connection_t * connection = hci_connection_for_handle(con_handle);
8031     if (!connection){
8032         hci_emit_security_level(con_handle, LEVEL_0);
8033         return;
8034     }
8035 
8036     btstack_assert(hci_is_le_connection(connection) == false);
8037 
8038     // Core Spec 5.2, GAP 5.2.2: "When in Secure Connections Only mode, all services (except those allowed to have Security Mode 4, Level 0)
8039     // available on the BR/EDR physical transport require Security Mode 4, Level 4 "
8040     if (hci_stack->gap_secure_connections_only_mode && (requested_level != LEVEL_0)){
8041         requested_level = LEVEL_4;
8042     }
8043 
8044     gap_security_level_t current_level = gap_security_level(con_handle);
8045     log_info("gap_request_security_level requested level %u, planned level %u, current level %u",
8046         requested_level, connection->requested_security_level, current_level);
8047 
8048     // authentication active if authentication request was sent or planned level > 0
8049     bool authentication_active = ((connection->bonding_flags & BONDING_SENT_AUTHENTICATE_REQUEST) != 0) || (connection->requested_security_level > LEVEL_0);
8050     if (authentication_active){
8051         // authentication already active
8052         if (connection->requested_security_level < requested_level){
8053             // increase requested level as new level is higher
8054             // TODO: handle re-authentication when done
8055             connection->requested_security_level = requested_level;
8056         }
8057     } else {
8058         // no request active, notify if security sufficient
8059         if (requested_level <= current_level){
8060             hci_emit_security_level(con_handle, current_level);
8061             return;
8062         }
8063 
8064         // store request
8065         connection->requested_security_level = requested_level;
8066 
8067         // start to authenticate connection
8068         connection->bonding_flags |= BONDING_SEND_AUTHENTICATE_REQUEST;
8069 
8070         // request remote features if not already active, also trigger hci_run
8071         hci_remote_features_query(con_handle);
8072     }
8073 }
8074 
8075 /**
8076  * @brief start dedicated bonding with device. disconnect after bonding
8077  * @param device
8078  * @param request MITM protection
8079  * @result GAP_DEDICATED_BONDING_COMPLETE
8080  */
8081 int gap_dedicated_bonding(bd_addr_t device, int mitm_protection_required){
8082 
8083     // create connection state machine
8084     hci_connection_t * connection = create_connection_for_bd_addr_and_type(device, BD_ADDR_TYPE_ACL, HCI_ROLE_MASTER);
8085 
8086     if (!connection){
8087         return BTSTACK_MEMORY_ALLOC_FAILED;
8088     }
8089 
8090     // delete link key
8091     gap_drop_link_key_for_bd_addr(device);
8092 
8093     // configure LEVEL_2/3, dedicated bonding
8094     connection->state = SEND_CREATE_CONNECTION;
8095     connection->requested_security_level = mitm_protection_required ? LEVEL_3 : LEVEL_2;
8096     log_info("gap_dedicated_bonding, mitm %d -> level %u", mitm_protection_required, connection->requested_security_level);
8097     connection->bonding_flags = BONDING_DEDICATED;
8098 
8099     hci_run();
8100 
8101     return 0;
8102 }
8103 
8104 uint8_t hci_dedicated_bonding_defer_disconnect(hci_con_handle_t con_handle, bool defer){
8105     hci_connection_t * connection = hci_connection_for_handle(con_handle);
8106     if (connection == NULL){
8107         return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
8108     }
8109     if (defer){
8110         connection->bonding_flags |= BONDING_DEDICATED_DEFER_DISCONNECT;
8111     } else {
8112         connection->bonding_flags &= ~BONDING_DEDICATED_DEFER_DISCONNECT;
8113         // trigger disconnect
8114         hci_run();
8115     }
8116     return ERROR_CODE_SUCCESS;
8117 }
8118 
8119 void gap_set_local_name(const char * local_name){
8120     hci_stack->local_name = local_name;
8121     hci_stack->gap_tasks_classic |= GAP_TASK_SET_LOCAL_NAME;
8122     // also update EIR if not set by user
8123     if (hci_stack->eir_data == NULL){
8124         hci_stack->gap_tasks_classic |= GAP_TASK_SET_EIR_DATA;
8125     }
8126     hci_run();
8127 }
8128 #endif
8129 
8130 
8131 #ifdef ENABLE_BLE
8132 
8133 #ifdef ENABLE_LE_CENTRAL
8134 void gap_start_scan(void){
8135     hci_stack->le_scanning_enabled = true;
8136     hci_run();
8137 }
8138 
8139 void gap_stop_scan(void){
8140     hci_stack->le_scanning_enabled = false;
8141     hci_run();
8142 }
8143 
8144 void gap_set_scan_params(uint8_t scan_type, uint16_t scan_interval, uint16_t scan_window, uint8_t scanning_filter_policy){
8145     hci_stack->le_scan_type          = scan_type;
8146     hci_stack->le_scan_filter_policy = scanning_filter_policy;
8147     hci_stack->le_scan_interval      = scan_interval;
8148     hci_stack->le_scan_window        = scan_window;
8149     hci_stack->le_scanning_param_update = true;
8150     hci_run();
8151 }
8152 
8153 void gap_set_scan_parameters(uint8_t scan_type, uint16_t scan_interval, uint16_t scan_window){
8154     gap_set_scan_params(scan_type, scan_interval, scan_window, 0);
8155 }
8156 
8157 void gap_set_scan_duplicate_filter(bool enabled){
8158     hci_stack->le_scan_filter_duplicates = enabled ? 1 : 0;
8159 }
8160 
8161 void gap_set_scan_phys(uint8_t phys){
8162     // LE Coded and LE 1M PHY
8163     hci_stack->le_scan_phys = phys & 0x05;
8164 }
8165 
8166 uint8_t gap_connect(const bd_addr_t addr, bd_addr_type_t addr_type){
8167     hci_connection_t * conn = hci_connection_for_bd_addr_and_type(addr, addr_type);
8168     if (!conn){
8169         // disallow if le connection is already outgoing
8170         if (hci_is_le_connection_type(addr_type) && hci_stack->le_connecting_request != LE_CONNECTING_IDLE){
8171             log_error("le connection already active");
8172             return ERROR_CODE_COMMAND_DISALLOWED;
8173         }
8174 
8175         log_info("gap_connect: no connection exists yet, creating context");
8176         conn = create_connection_for_bd_addr_and_type(addr, addr_type, HCI_ROLE_MASTER);
8177         if (!conn){
8178             // notify client that alloc failed
8179             hci_emit_le_connection_complete(addr_type, addr, 0, BTSTACK_MEMORY_ALLOC_FAILED);
8180             log_info("gap_connect: failed to alloc hci_connection_t");
8181             return GATT_CLIENT_NOT_CONNECTED; // don't sent packet to controller
8182         }
8183 
8184         // set le connecting state
8185         if (hci_is_le_connection_type(addr_type)){
8186             hci_stack->le_connecting_request = LE_CONNECTING_DIRECT;
8187         }
8188 
8189         conn->state = SEND_CREATE_CONNECTION;
8190         log_info("gap_connect: send create connection next");
8191         hci_run();
8192         return ERROR_CODE_SUCCESS;
8193     }
8194 
8195     if (!hci_is_le_connection(conn) ||
8196         (conn->state == SEND_CREATE_CONNECTION) ||
8197         (conn->state == SENT_CREATE_CONNECTION)) {
8198         hci_emit_le_connection_complete(conn->address_type, conn->address, 0, ERROR_CODE_COMMAND_DISALLOWED);
8199         log_error("gap_connect: classic connection or connect is already being created");
8200         return GATT_CLIENT_IN_WRONG_STATE;
8201     }
8202 
8203     // check if connection was just disconnected
8204     if (conn->state == RECEIVED_DISCONNECTION_COMPLETE){
8205         log_info("gap_connect: send create connection (again)");
8206         conn->state = SEND_CREATE_CONNECTION;
8207         hci_run();
8208         return ERROR_CODE_SUCCESS;
8209     }
8210 
8211     log_info("gap_connect: context exists with state %u", conn->state);
8212     hci_emit_le_connection_complete(conn->address_type, conn->address, conn->con_handle, ERROR_CODE_SUCCESS);
8213     hci_run();
8214     return ERROR_CODE_SUCCESS;
8215 }
8216 
8217 // @assumption: only a single outgoing LE Connection exists
8218 static hci_connection_t * gap_get_outgoing_connection(void){
8219     btstack_linked_item_t *it;
8220     for (it = (btstack_linked_item_t *) hci_stack->connections; it != NULL; it = it->next){
8221         hci_connection_t * conn = (hci_connection_t *) it;
8222         if (!hci_is_le_connection(conn)) continue;
8223         switch (conn->state){
8224             case SEND_CREATE_CONNECTION:
8225             case SENT_CREATE_CONNECTION:
8226                 return conn;
8227             default:
8228                 break;
8229         };
8230     }
8231     return NULL;
8232 }
8233 
8234 uint8_t gap_connect_cancel(void){
8235     hci_connection_t * conn;
8236     switch (hci_stack->le_connecting_request){
8237         case LE_CONNECTING_IDLE:
8238             break;
8239         case LE_CONNECTING_WHITELIST:
8240             hci_stack->le_connecting_request = LE_CONNECTING_IDLE;
8241             hci_run();
8242             break;
8243         case LE_CONNECTING_DIRECT:
8244             hci_stack->le_connecting_request = LE_CONNECTING_IDLE;
8245             conn = gap_get_outgoing_connection();
8246             if (conn == NULL){
8247                 hci_run();
8248             } else {
8249                 switch (conn->state){
8250                     case SEND_CREATE_CONNECTION:
8251                         // skip sending create connection and emit event instead
8252                         hci_emit_le_connection_complete(conn->address_type, conn->address, 0, ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER);
8253                         btstack_linked_list_remove(&hci_stack->connections, (btstack_linked_item_t *) conn);
8254                         btstack_memory_hci_connection_free( conn );
8255                         break;
8256                     case SENT_CREATE_CONNECTION:
8257                         // let hci_run_general_gap_le cancel outgoing connection
8258                         hci_run();
8259                         break;
8260                     default:
8261                         break;
8262                 }
8263             }
8264             break;
8265         default:
8266             btstack_unreachable();
8267             break;
8268     }
8269     return ERROR_CODE_SUCCESS;
8270 }
8271 
8272 /**
8273  * @brief Set connection parameters for outgoing connections
8274  * @param conn_scan_interval (unit: 0.625 msec), default: 60 ms
8275  * @param conn_scan_window (unit: 0.625 msec), default: 30 ms
8276  * @param conn_interval_min (unit: 1.25ms), default: 10 ms
8277  * @param conn_interval_max (unit: 1.25ms), default: 30 ms
8278  * @param conn_latency, default: 4
8279  * @param supervision_timeout (unit: 10ms), default: 720 ms
8280  * @param min_ce_length (unit: 0.625ms), default: 10 ms
8281  * @param max_ce_length (unit: 0.625ms), default: 30 ms
8282  */
8283 
8284 void gap_set_connection_phys(uint8_t phys){
8285     // LE Coded, LE 1M, LE 2M PHY
8286     hci_stack->le_connection_phys = phys & 7;
8287 }
8288 
8289 #endif
8290 
8291 void gap_set_connection_parameters(uint16_t conn_scan_interval, uint16_t conn_scan_window,
8292                                    uint16_t conn_interval_min, uint16_t conn_interval_max, uint16_t conn_latency,
8293                                    uint16_t supervision_timeout, uint16_t min_ce_length, uint16_t max_ce_length){
8294     hci_stack->le_connection_scan_interval = conn_scan_interval;
8295     hci_stack->le_connection_scan_window = conn_scan_window;
8296     hci_stack->le_connection_interval_min = conn_interval_min;
8297     hci_stack->le_connection_interval_max = conn_interval_max;
8298     hci_stack->le_connection_latency = conn_latency;
8299     hci_stack->le_supervision_timeout = supervision_timeout;
8300     hci_stack->le_minimum_ce_length = min_ce_length;
8301     hci_stack->le_maximum_ce_length = max_ce_length;
8302 }
8303 
8304 /**
8305  * @brief Updates the connection parameters for a given LE connection
8306  * @param handle
8307  * @param conn_interval_min (unit: 1.25ms)
8308  * @param conn_interval_max (unit: 1.25ms)
8309  * @param conn_latency
8310  * @param supervision_timeout (unit: 10ms)
8311  * @return 0 if ok
8312  */
8313 int gap_update_connection_parameters(hci_con_handle_t con_handle, uint16_t conn_interval_min,
8314     uint16_t conn_interval_max, uint16_t conn_latency, uint16_t supervision_timeout){
8315     hci_connection_t * connection = hci_connection_for_handle(con_handle);
8316     if (!connection) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
8317     connection->le_conn_interval_min = conn_interval_min;
8318     connection->le_conn_interval_max = conn_interval_max;
8319     connection->le_conn_latency = conn_latency;
8320     connection->le_supervision_timeout = supervision_timeout;
8321     connection->le_con_parameter_update_state = CON_PARAMETER_UPDATE_CHANGE_HCI_CON_PARAMETERS;
8322     hci_run();
8323     return 0;
8324 }
8325 
8326 /**
8327  * @brief Request an update of the connection parameter for a given LE connection
8328  * @param handle
8329  * @param conn_interval_min (unit: 1.25ms)
8330  * @param conn_interval_max (unit: 1.25ms)
8331  * @param conn_latency
8332  * @param supervision_timeout (unit: 10ms)
8333  * @return 0 if ok
8334  */
8335 int gap_request_connection_parameter_update(hci_con_handle_t con_handle, uint16_t conn_interval_min,
8336     uint16_t conn_interval_max, uint16_t conn_latency, uint16_t supervision_timeout){
8337     hci_connection_t * connection = hci_connection_for_handle(con_handle);
8338     if (!connection) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
8339     connection->le_conn_interval_min = conn_interval_min;
8340     connection->le_conn_interval_max = conn_interval_max;
8341     connection->le_conn_latency = conn_latency;
8342     connection->le_supervision_timeout = supervision_timeout;
8343     connection->le_con_parameter_update_state = CON_PARAMETER_UPDATE_SEND_REQUEST;
8344     uint8_t l2cap_trigger_run_event[2] = { L2CAP_EVENT_TRIGGER_RUN, 0};
8345     hci_emit_event(l2cap_trigger_run_event, sizeof(l2cap_trigger_run_event), 0);
8346     return 0;
8347 }
8348 
8349 #ifdef ENABLE_LE_PERIPHERAL
8350 
8351 /**
8352  * @brief Set Advertisement Data
8353  * @param advertising_data_length
8354  * @param advertising_data (max 31 octets)
8355  * @note data is not copied, pointer has to stay valid
8356  */
8357 void gap_advertisements_set_data(uint8_t advertising_data_length, uint8_t * advertising_data){
8358     hci_stack->le_advertisements_data_len = advertising_data_length;
8359     hci_stack->le_advertisements_data = advertising_data;
8360     hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_SET_ADV_DATA;
8361     hci_run();
8362 }
8363 
8364 /**
8365  * @brief Set Scan Response Data
8366  * @param advertising_data_length
8367  * @param advertising_data (max 31 octets)
8368  * @note data is not copied, pointer has to stay valid
8369  */
8370 void gap_scan_response_set_data(uint8_t scan_response_data_length, uint8_t * scan_response_data){
8371     hci_stack->le_scan_response_data_len = scan_response_data_length;
8372     hci_stack->le_scan_response_data = scan_response_data;
8373     hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_SET_SCAN_DATA;
8374     hci_run();
8375 }
8376 
8377 /**
8378  * @brief Set Advertisement Parameters
8379  * @param adv_int_min
8380  * @param adv_int_max
8381  * @param adv_type
8382  * @param direct_address_type
8383  * @param direct_address
8384  * @param channel_map
8385  * @param filter_policy
8386  *
8387  * @note internal use. use gap_advertisements_set_params from gap_le.h instead.
8388  */
8389  void hci_le_advertisements_set_params(uint16_t adv_int_min, uint16_t adv_int_max, uint8_t adv_type,
8390     uint8_t direct_address_typ, bd_addr_t direct_address,
8391     uint8_t channel_map, uint8_t filter_policy) {
8392 
8393     hci_stack->le_advertisements_interval_min = adv_int_min;
8394     hci_stack->le_advertisements_interval_max = adv_int_max;
8395     hci_stack->le_advertisements_type = adv_type;
8396     hci_stack->le_advertisements_direct_address_type = direct_address_typ;
8397     hci_stack->le_advertisements_channel_map = channel_map;
8398     hci_stack->le_advertisements_filter_policy = filter_policy;
8399     (void)memcpy(hci_stack->le_advertisements_direct_address, direct_address,
8400                  6);
8401 
8402     hci_stack->le_advertisements_todo  |= LE_ADVERTISEMENT_TASKS_SET_PARAMS;
8403     hci_stack->le_advertisements_state |= LE_ADVERTISEMENT_STATE_PARAMS_SET;
8404     hci_run();
8405  }
8406 
8407 /**
8408  * @brief Enable/Disable Advertisements
8409  * @param enabled
8410  */
8411 void gap_advertisements_enable(int enabled){
8412     if (enabled == 0){
8413         hci_stack->le_advertisements_state &= ~LE_ADVERTISEMENT_STATE_ENABLED;
8414     } else {
8415         hci_stack->le_advertisements_state |= LE_ADVERTISEMENT_STATE_ENABLED;
8416     }
8417     hci_update_advertisements_enabled_for_current_roles();
8418     hci_run();
8419 }
8420 
8421 #ifdef ENABLE_LE_EXTENDED_ADVERTISING
8422 static le_advertising_set_t * hci_advertising_set_for_handle(uint8_t advertising_handle){
8423     btstack_linked_list_iterator_t it;
8424     btstack_linked_list_iterator_init(&it, &hci_stack->le_advertising_sets);
8425     while (btstack_linked_list_iterator_has_next(&it)){
8426         le_advertising_set_t * item = (le_advertising_set_t *) btstack_linked_list_iterator_next(&it);
8427         if ( item->advertising_handle == advertising_handle ) {
8428             return item;
8429         }
8430     }
8431     return NULL;
8432 }
8433 
8434 uint8_t gap_extended_advertising_set_resolvable_private_address_update(uint16_t update_s){
8435     hci_stack->le_resolvable_private_address_update_s = update_s;
8436     hci_run();
8437     return ERROR_CODE_SUCCESS;
8438 }
8439 
8440 uint8_t gap_extended_advertising_setup(le_advertising_set_t * storage, const le_extended_advertising_parameters_t * advertising_parameters, uint8_t * out_advertising_handle){
8441     // find free advertisement handle
8442     uint8_t advertisement_handle;
8443     for (advertisement_handle = 1; advertisement_handle <= LE_EXTENDED_ADVERTISING_MAX_HANDLE; advertisement_handle++){
8444         if (hci_advertising_set_for_handle(advertisement_handle) == NULL) break;
8445     }
8446     if (advertisement_handle > LE_EXTENDED_ADVERTISING_MAX_HANDLE) return ERROR_CODE_MEMORY_CAPACITY_EXCEEDED;
8447     // clear
8448     memset(storage, 0, sizeof(le_advertising_set_t));
8449     // copy params
8450     storage->advertising_handle = advertisement_handle;
8451     memcpy(&storage->extended_params, advertising_parameters, sizeof(le_extended_advertising_parameters_t));
8452     // add to list
8453     bool add_ok = btstack_linked_list_add(&hci_stack->le_advertising_sets, (btstack_linked_item_t *) storage);
8454     if (!add_ok) return ERROR_CODE_ACL_CONNECTION_ALREADY_EXISTS;
8455     *out_advertising_handle = advertisement_handle;
8456     // set tasks and start
8457     storage->tasks = LE_ADVERTISEMENT_TASKS_SET_PARAMS;
8458     hci_run();
8459     return ERROR_CODE_SUCCESS;
8460 }
8461 
8462 uint8_t gap_extended_advertising_set_params(uint8_t advertising_handle, const le_extended_advertising_parameters_t * advertising_parameters){
8463     le_advertising_set_t * advertising_set = hci_advertising_set_for_handle(advertising_handle);
8464     if (advertising_set == NULL) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
8465     memcpy(&advertising_set->extended_params, advertising_parameters, sizeof(le_extended_advertising_parameters_t));
8466     // set tasks and start
8467     advertising_set->tasks |= LE_ADVERTISEMENT_TASKS_SET_PARAMS;
8468     hci_run();
8469     return ERROR_CODE_SUCCESS;
8470 }
8471 
8472 uint8_t gap_extended_advertising_get_params(uint8_t advertising_handle, le_extended_advertising_parameters_t * advertising_parameters){
8473     le_advertising_set_t * advertising_set = hci_advertising_set_for_handle(advertising_handle);
8474     if (advertising_set == NULL) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
8475     memcpy(advertising_parameters, &advertising_set->extended_params, sizeof(le_extended_advertising_parameters_t));
8476     return ERROR_CODE_SUCCESS;
8477 }
8478 
8479 uint8_t gap_extended_advertising_set_random_address(uint8_t advertising_handle, bd_addr_t random_address){
8480     le_advertising_set_t * advertising_set = hci_advertising_set_for_handle(advertising_handle);
8481     if (advertising_set == NULL) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
8482     memcpy(advertising_set->random_address, random_address, 6);
8483     // set tasks and start
8484     advertising_set->tasks |= LE_ADVERTISEMENT_TASKS_SET_ADDRESS;
8485     hci_run();
8486     return ERROR_CODE_SUCCESS;
8487 }
8488 
8489 uint8_t gap_extended_advertising_set_adv_data(uint8_t advertising_handle, uint16_t advertising_data_length, const uint8_t * advertising_data){
8490     le_advertising_set_t * advertising_set = hci_advertising_set_for_handle(advertising_handle);
8491     if (advertising_set == NULL) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
8492     advertising_set->adv_data = advertising_data;
8493     advertising_set->adv_data_len = advertising_data_length;
8494     // set tasks and start
8495     advertising_set->tasks |= LE_ADVERTISEMENT_TASKS_SET_ADV_DATA;
8496     hci_run();
8497     return ERROR_CODE_SUCCESS;
8498 }
8499 
8500 uint8_t gap_extended_advertising_set_scan_response_data(uint8_t advertising_handle, uint16_t scan_response_data_length, const uint8_t * scan_response_data){
8501     le_advertising_set_t * advertising_set = hci_advertising_set_for_handle(advertising_handle);
8502     if (advertising_set == NULL) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
8503     advertising_set->scan_data = scan_response_data;
8504     advertising_set->scan_data_len = scan_response_data_length;
8505     // set tasks and start
8506     advertising_set->tasks |= LE_ADVERTISEMENT_TASKS_SET_SCAN_DATA;
8507     hci_run();
8508     return ERROR_CODE_SUCCESS;
8509 }
8510 
8511 uint8_t gap_extended_advertising_start(uint8_t advertising_handle, uint16_t timeout, uint8_t num_extended_advertising_events){
8512     le_advertising_set_t * advertising_set = hci_advertising_set_for_handle(advertising_handle);
8513     if (advertising_set == NULL) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
8514     advertising_set->enable_timeout = timeout;
8515     advertising_set->enable_max_scan_events = num_extended_advertising_events;
8516     // set tasks and start
8517     advertising_set->state |= LE_ADVERTISEMENT_STATE_ENABLED;
8518     hci_run();
8519     return ERROR_CODE_SUCCESS;
8520 }
8521 
8522 uint8_t gap_extended_advertising_stop(uint8_t advertising_handle){
8523     le_advertising_set_t * advertising_set = hci_advertising_set_for_handle(advertising_handle);
8524     if (advertising_set == NULL) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
8525     // set tasks and start
8526     advertising_set->state &= ~LE_ADVERTISEMENT_STATE_ENABLED;
8527     hci_run();
8528     return ERROR_CODE_SUCCESS;
8529 }
8530 
8531 uint8_t gap_extended_advertising_remove(uint8_t advertising_handle){
8532     le_advertising_set_t * advertising_set = hci_advertising_set_for_handle(advertising_handle);
8533     if (advertising_set == NULL) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
8534     // set tasks and start
8535     advertising_set->tasks |= LE_ADVERTISEMENT_TASKS_REMOVE_SET;
8536     hci_run();
8537     return ERROR_CODE_SUCCESS;
8538 }
8539 
8540 #ifdef ENABLE_LE_PERIODIC_ADVERTISING
8541 uint8_t gap_periodic_advertising_set_params(uint8_t advertising_handle, const le_periodic_advertising_parameters_t * advertising_parameters){
8542     le_advertising_set_t * advertising_set = hci_advertising_set_for_handle(advertising_handle);
8543     if (advertising_set == NULL) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
8544     // periodic advertising requires neither connectable, scannable, legacy or anonymous
8545     if ((advertising_set->extended_params.advertising_event_properties & 0x1f) != 0) return ERROR_CODE_INVALID_HCI_COMMAND_PARAMETERS;
8546     memcpy(&advertising_set->periodic_params, advertising_parameters, sizeof(le_periodic_advertising_parameters_t));
8547     // set tasks and start
8548     advertising_set->tasks |= LE_ADVERTISEMENT_TASKS_SET_PERIODIC_PARAMS;
8549     hci_run();
8550     return ERROR_CODE_SUCCESS;
8551 }
8552 
8553 uint8_t gap_periodic_advertising_get_params(uint8_t advertising_handle, le_periodic_advertising_parameters_t * advertising_parameters){
8554     le_advertising_set_t * advertising_set = hci_advertising_set_for_handle(advertising_handle);
8555     if (advertising_set == NULL) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
8556     memcpy(advertising_parameters, &advertising_set->extended_params, sizeof(le_periodic_advertising_parameters_t));
8557     return ERROR_CODE_SUCCESS;
8558 }
8559 
8560 uint8_t gap_periodic_advertising_set_data(uint8_t advertising_handle, uint16_t periodic_data_length, const uint8_t * periodic_data){
8561     le_advertising_set_t * advertising_set = hci_advertising_set_for_handle(advertising_handle);
8562     if (advertising_set == NULL) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
8563     advertising_set->periodic_data = periodic_data;
8564     advertising_set->periodic_data_len = periodic_data_length;
8565     // set tasks and start
8566     advertising_set->tasks |= LE_ADVERTISEMENT_TASKS_SET_PERIODIC_DATA;
8567     hci_run();
8568     return ERROR_CODE_SUCCESS;
8569 }
8570 
8571 uint8_t gap_periodic_advertising_start(uint8_t advertising_handle, bool include_adi){
8572     le_advertising_set_t * advertising_set = hci_advertising_set_for_handle(advertising_handle);
8573     if (advertising_set == NULL) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
8574     // set tasks and start
8575     advertising_set->periodic_include_adi = include_adi;
8576     advertising_set->state |= LE_ADVERTISEMENT_STATE_PERIODIC_ENABLED;
8577     hci_run();
8578     return ERROR_CODE_SUCCESS;
8579 }
8580 
8581 uint8_t gap_periodic_advertising_stop(uint8_t advertising_handle){
8582     le_advertising_set_t * advertising_set = hci_advertising_set_for_handle(advertising_handle);
8583     if (advertising_set == NULL) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
8584     // set tasks and start
8585     advertising_set->state &= ~LE_ADVERTISEMENT_STATE_PERIODIC_ENABLED;
8586     hci_run();
8587     return ERROR_CODE_SUCCESS;
8588 }
8589 
8590 uint8_t gap_periodic_advertising_sync_transfer_set_default_parameters(uint8_t mode, uint16_t skip, uint16_t sync_timeout, uint8_t cte_type){
8591     hci_stack->le_past_mode = mode;
8592     hci_stack->le_past_skip = skip;
8593     hci_stack->le_past_sync_timeout = sync_timeout;
8594     hci_stack->le_past_cte_type = cte_type;
8595     hci_stack->le_past_set_default_params = true;
8596     hci_run();
8597     return ERROR_CODE_SUCCESS;
8598 }
8599 
8600 uint8_t gap_periodic_advertising_sync_transfer_send(hci_con_handle_t con_handle, uint16_t service_data, hci_con_handle_t sync_handle){
8601     hci_connection_t * hci_connection = hci_connection_for_handle(con_handle);
8602     if (hci_connection == NULL){
8603         return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
8604     }
8605     hci_connection->le_past_sync_handle = sync_handle;
8606     hci_connection->le_past_service_data = service_data;
8607     hci_run();
8608     return ERROR_CODE_SUCCESS;
8609 }
8610 
8611 uint8_t gap_periodic_advertising_set_info_transfer_send(hci_con_handle_t con_handle, uint16_t service_data, uint8_t advertising_handle){
8612     hci_connection_t * hci_connection = hci_connection_for_handle(con_handle);
8613     if (hci_connection == NULL){
8614         return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
8615     }
8616     hci_connection->le_past_advertising_handle = advertising_handle;
8617     hci_connection->le_past_service_data = service_data;
8618     hci_run();
8619     return ERROR_CODE_SUCCESS;
8620 }
8621 
8622 #endif /* ENABLE_LE_PERIODIC_ADVERTISING */
8623 
8624 #endif
8625 
8626 #endif
8627 
8628 void hci_le_set_own_address_type(uint8_t own_address_type){
8629     log_info("hci_le_set_own_address_type: old %u, new %u", hci_stack->le_own_addr_type, own_address_type);
8630     if (own_address_type == hci_stack->le_own_addr_type) return;
8631     hci_stack->le_own_addr_type = own_address_type;
8632 
8633 #ifdef ENABLE_LE_PERIPHERAL
8634     // update advertisement parameters, too
8635     hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_SET_PARAMS;
8636     hci_run();
8637 #endif
8638 #ifdef ENABLE_LE_CENTRAL
8639     // note: we don't update scan parameters or modify ongoing connection attempts
8640 #endif
8641 }
8642 
8643 void hci_le_random_address_set(const bd_addr_t random_address){
8644     memcpy(hci_stack->le_random_address, random_address, 6);
8645     hci_stack->le_random_address_set = true;
8646     hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_SET_ADDRESS;
8647 #ifdef ENABLE_LE_EXTENDED_ADVERTISING
8648     if (hci_extended_advertising_supported()){
8649         // force advertising set creation for LE Set Advertising Set Random Address
8650         if ((hci_stack->le_advertisements_state & LE_ADVERTISEMENT_STATE_PARAMS_SET) == 0){
8651             hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_SET_PARAMS;
8652         }
8653         hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_SET_ADDRESS_SET_0;
8654     }
8655 #endif
8656     hci_run();
8657 }
8658 
8659 #endif
8660 
8661 uint8_t gap_disconnect(hci_con_handle_t handle){
8662     hci_connection_t * conn = hci_connection_for_handle(handle);
8663     if (!conn){
8664         hci_emit_disconnection_complete(handle, 0);
8665         return 0;
8666     }
8667     // ignore if already disconnected
8668     if (conn->state == RECEIVED_DISCONNECTION_COMPLETE){
8669         return 0;
8670     }
8671     conn->state = SEND_DISCONNECT;
8672     hci_run();
8673     return 0;
8674 }
8675 
8676 int gap_read_rssi(hci_con_handle_t con_handle){
8677     hci_connection_t * hci_connection = hci_connection_for_handle(con_handle);
8678     if (hci_connection == NULL) return 0;
8679     hci_connection->gap_connection_tasks |= GAP_CONNECTION_TASK_READ_RSSI;
8680     hci_run();
8681     return 1;
8682 }
8683 
8684 /**
8685  * @brief Get connection type
8686  * @param con_handle
8687  * @result connection_type
8688  */
8689 gap_connection_type_t gap_get_connection_type(hci_con_handle_t connection_handle){
8690     hci_connection_t * conn = hci_connection_for_handle(connection_handle);
8691     if (!conn) return GAP_CONNECTION_INVALID;
8692     switch (conn->address_type){
8693         case BD_ADDR_TYPE_LE_PUBLIC:
8694         case BD_ADDR_TYPE_LE_RANDOM:
8695             return GAP_CONNECTION_LE;
8696         case BD_ADDR_TYPE_SCO:
8697             return GAP_CONNECTION_SCO;
8698         case BD_ADDR_TYPE_ACL:
8699             return GAP_CONNECTION_ACL;
8700         default:
8701             return GAP_CONNECTION_INVALID;
8702     }
8703 }
8704 
8705 hci_role_t gap_get_role(hci_con_handle_t connection_handle){
8706     hci_connection_t * conn = hci_connection_for_handle(connection_handle);
8707     if (!conn) return HCI_ROLE_INVALID;
8708     return (hci_role_t) conn->role;
8709 }
8710 
8711 
8712 #ifdef ENABLE_CLASSIC
8713 uint8_t gap_request_role(const bd_addr_t addr, hci_role_t role){
8714     hci_connection_t * conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
8715     if (!conn) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
8716     conn->request_role = role;
8717     hci_run();
8718     return ERROR_CODE_SUCCESS;
8719 }
8720 #endif
8721 
8722 #ifdef ENABLE_BLE
8723 
8724 uint8_t gap_le_set_phy(hci_con_handle_t con_handle, uint8_t all_phys, uint8_t tx_phys, uint8_t rx_phys, uint16_t phy_options){
8725     hci_connection_t * conn = hci_connection_for_handle(con_handle);
8726     if (!conn) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
8727 
8728     conn->le_phy_update_all_phys    = all_phys;
8729     conn->le_phy_update_tx_phys     = tx_phys;
8730     conn->le_phy_update_rx_phys     = rx_phys;
8731     conn->le_phy_update_phy_options = (uint8_t) phy_options;
8732 
8733     hci_run();
8734 
8735     return 0;
8736 }
8737 
8738 static uint8_t hci_whitelist_add(bd_addr_type_t address_type, const bd_addr_t address){
8739     // check if already in list
8740     btstack_linked_list_iterator_t it;
8741     btstack_linked_list_iterator_init(&it, &hci_stack->le_whitelist);
8742     while (btstack_linked_list_iterator_has_next(&it)) {
8743         whitelist_entry_t *entry = (whitelist_entry_t *) btstack_linked_list_iterator_next(&it);
8744         if (entry->address_type != address_type) {
8745             continue;
8746         }
8747         if (memcmp(entry->address, address, 6) != 0) {
8748             continue;
8749         }
8750 
8751         // if already on controller:
8752         if ((entry->state & LE_WHITELIST_ON_CONTROLLER) != 0){
8753             if ((entry->state & LE_WHITELIST_REMOVE_FROM_CONTROLLER) != 0){
8754                 // drop remove request
8755                 entry->state = LE_WHITELIST_ON_CONTROLLER;
8756                 return ERROR_CODE_SUCCESS;
8757             } else {
8758                 // disallow as already on controller
8759                 return ERROR_CODE_COMMAND_DISALLOWED;
8760             }
8761         }
8762 
8763         // assume scheduled to add
8764 		return ERROR_CODE_COMMAND_DISALLOWED;
8765     }
8766 
8767     // alloc and add to list
8768     whitelist_entry_t * entry = btstack_memory_whitelist_entry_get();
8769     if (!entry) return BTSTACK_MEMORY_ALLOC_FAILED;
8770     entry->address_type = address_type;
8771     (void)memcpy(entry->address, address, 6);
8772     entry->state = LE_WHITELIST_ADD_TO_CONTROLLER;
8773     btstack_linked_list_add(&hci_stack->le_whitelist, (btstack_linked_item_t*) entry);
8774     return ERROR_CODE_SUCCESS;
8775 }
8776 
8777 static uint8_t hci_whitelist_remove(bd_addr_type_t address_type, const bd_addr_t address){
8778     btstack_linked_list_iterator_t it;
8779     btstack_linked_list_iterator_init(&it, &hci_stack->le_whitelist);
8780     while (btstack_linked_list_iterator_has_next(&it)){
8781         whitelist_entry_t * entry = (whitelist_entry_t*) btstack_linked_list_iterator_next(&it);
8782         if (entry->address_type != address_type) {
8783             continue;
8784         }
8785         if (memcmp(entry->address, address, 6) != 0) {
8786             continue;
8787         }
8788         if (entry->state & LE_WHITELIST_ON_CONTROLLER){
8789             // remove from controller if already present
8790             entry->state |= LE_WHITELIST_REMOVE_FROM_CONTROLLER;
8791         }  else {
8792             // directly remove entry from whitelist
8793             btstack_linked_list_iterator_remove(&it);
8794             btstack_memory_whitelist_entry_free(entry);
8795         }
8796         return ERROR_CODE_SUCCESS;
8797     }
8798     return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
8799 }
8800 
8801 static void hci_whitelist_clear(void){
8802     btstack_linked_list_iterator_t it;
8803     btstack_linked_list_iterator_init(&it, &hci_stack->le_whitelist);
8804     while (btstack_linked_list_iterator_has_next(&it)){
8805         whitelist_entry_t * entry = (whitelist_entry_t*) btstack_linked_list_iterator_next(&it);
8806         if (entry->state & LE_WHITELIST_ON_CONTROLLER){
8807             // remove from controller if already present
8808             entry->state |= LE_WHITELIST_REMOVE_FROM_CONTROLLER;
8809             continue;
8810         }
8811         // directly remove entry from whitelist
8812         btstack_linked_list_iterator_remove(&it);
8813         btstack_memory_whitelist_entry_free(entry);
8814     }
8815 }
8816 
8817 /**
8818  * @brief Clear Whitelist
8819  * @return 0 if ok
8820  */
8821 uint8_t gap_whitelist_clear(void){
8822     hci_whitelist_clear();
8823     hci_run();
8824     return ERROR_CODE_SUCCESS;
8825 }
8826 
8827 /**
8828  * @brief Add Device to Whitelist
8829  * @param address_typ
8830  * @param address
8831  * @return 0 if ok
8832  */
8833 uint8_t gap_whitelist_add(bd_addr_type_t address_type, const bd_addr_t address){
8834     uint8_t status = hci_whitelist_add(address_type, address);
8835     if (status){
8836         return status;
8837     }
8838     hci_run();
8839     return ERROR_CODE_SUCCESS;
8840 }
8841 
8842 /**
8843  * @brief Remove Device from Whitelist
8844  * @param address_typ
8845  * @param address
8846  * @return 0 if ok
8847  */
8848 uint8_t gap_whitelist_remove(bd_addr_type_t address_type, const bd_addr_t address){
8849     uint8_t status = hci_whitelist_remove(address_type, address);
8850     if (status){
8851         return status;
8852     }
8853     hci_run();
8854     return ERROR_CODE_SUCCESS;
8855 }
8856 
8857 #ifdef ENABLE_LE_CENTRAL
8858 /**
8859  * @brief Connect with Whitelist
8860  * @note Explicit whitelist management and this connect with whitelist replace deprecated gap_auto_connection_* functions
8861  * @return - if ok
8862  */
8863 uint8_t gap_connect_with_whitelist(void){
8864     if (hci_stack->le_connecting_request != LE_CONNECTING_IDLE){
8865         return ERROR_CODE_COMMAND_DISALLOWED;
8866     }
8867     hci_stack->le_connecting_request = LE_CONNECTING_WHITELIST;
8868     hci_run();
8869     return ERROR_CODE_SUCCESS;
8870 }
8871 
8872 /**
8873  * @brief Auto Connection Establishment - Start Connecting to device
8874  * @param address_typ
8875  * @param address
8876  * @return 0 if ok
8877  */
8878 uint8_t gap_auto_connection_start(bd_addr_type_t address_type, const bd_addr_t address){
8879     if (hci_stack->le_connecting_request == LE_CONNECTING_DIRECT){
8880         return ERROR_CODE_COMMAND_DISALLOWED;
8881     }
8882 
8883     uint8_t status = hci_whitelist_add(address_type, address);
8884     if (status == BTSTACK_MEMORY_ALLOC_FAILED) {
8885         return status;
8886     }
8887 
8888     hci_stack->le_connecting_request = LE_CONNECTING_WHITELIST;
8889 
8890     hci_run();
8891     return ERROR_CODE_SUCCESS;
8892 }
8893 
8894 /**
8895  * @brief Auto Connection Establishment - Stop Connecting to device
8896  * @param address_typ
8897  * @param address
8898  * @return 0 if ok
8899  */
8900 uint8_t gap_auto_connection_stop(bd_addr_type_t address_type, const bd_addr_t address){
8901     if (hci_stack->le_connecting_request == LE_CONNECTING_DIRECT){
8902         return ERROR_CODE_COMMAND_DISALLOWED;
8903     }
8904 
8905     hci_whitelist_remove(address_type, address);
8906     if (btstack_linked_list_empty(&hci_stack->le_whitelist)){
8907         hci_stack->le_connecting_request = LE_CONNECTING_IDLE;
8908     }
8909     hci_run();
8910     return 0;
8911 }
8912 
8913 /**
8914  * @brief Auto Connection Establishment - Stop everything
8915  * @note  Convenience function to stop all active auto connection attempts
8916  */
8917 uint8_t gap_auto_connection_stop_all(void){
8918     if (hci_stack->le_connecting_request == LE_CONNECTING_DIRECT) {
8919         return ERROR_CODE_COMMAND_DISALLOWED;
8920     }
8921     hci_whitelist_clear();
8922     hci_stack->le_connecting_request = LE_CONNECTING_IDLE;
8923     hci_run();
8924     return ERROR_CODE_SUCCESS;
8925 }
8926 
8927 uint16_t gap_le_connection_interval(hci_con_handle_t con_handle){
8928     hci_connection_t * conn = hci_connection_for_handle(con_handle);
8929     if (!conn) return 0;
8930     return conn->le_connection_interval;
8931 }
8932 #endif
8933 #endif
8934 
8935 #ifdef ENABLE_CLASSIC
8936 /**
8937  * @brief Set Extended Inquiry Response data
8938  * @param eir_data size HCI_EXTENDED_INQUIRY_RESPONSE_DATA_LEN (240) bytes, is not copied make sure memory is accessible during stack startup
8939  * @note has to be done before stack starts up
8940  */
8941 void gap_set_extended_inquiry_response(const uint8_t * data){
8942     hci_stack->eir_data = data;
8943     hci_stack->gap_tasks_classic |= GAP_TASK_SET_EIR_DATA;
8944     hci_run();
8945 }
8946 
8947 /**
8948  * @brief Start GAP Classic Inquiry
8949  * @param duration in 1.28s units
8950  * @return 0 if ok
8951  * @events: GAP_EVENT_INQUIRY_RESULT, GAP_EVENT_INQUIRY_COMPLETE
8952  */
8953 int gap_inquiry_start(uint8_t duration_in_1280ms_units){
8954     if (hci_stack->state != HCI_STATE_WORKING) return ERROR_CODE_COMMAND_DISALLOWED;
8955     if (hci_stack->inquiry_state != GAP_INQUIRY_STATE_IDLE) return ERROR_CODE_COMMAND_DISALLOWED;
8956     if ((duration_in_1280ms_units < GAP_INQUIRY_DURATION_MIN) || (duration_in_1280ms_units > GAP_INQUIRY_DURATION_MAX)){
8957         return ERROR_CODE_INVALID_HCI_COMMAND_PARAMETERS;
8958     }
8959     hci_stack->inquiry_state = duration_in_1280ms_units;
8960     hci_stack->inquiry_max_period_length = 0;
8961     hci_stack->inquiry_min_period_length = 0;
8962     hci_run();
8963     return 0;
8964 }
8965 
8966 uint8_t gap_inquiry_periodic_start(uint8_t duration, uint16_t max_period_length, uint16_t min_period_length){
8967     if (hci_stack->state != HCI_STATE_WORKING)                return ERROR_CODE_COMMAND_DISALLOWED;
8968     if (hci_stack->inquiry_state != GAP_INQUIRY_STATE_IDLE)   return ERROR_CODE_COMMAND_DISALLOWED;
8969     if (duration < GAP_INQUIRY_DURATION_MIN)                  return ERROR_CODE_INVALID_HCI_COMMAND_PARAMETERS;
8970     if (duration > GAP_INQUIRY_DURATION_MAX)                  return ERROR_CODE_INVALID_HCI_COMMAND_PARAMETERS;
8971     if (max_period_length < GAP_INQUIRY_MAX_PERIODIC_LEN_MIN) return ERROR_CODE_INVALID_HCI_COMMAND_PARAMETERS;;
8972     if (min_period_length < GAP_INQUIRY_MIN_PERIODIC_LEN_MIN) return ERROR_CODE_INVALID_HCI_COMMAND_PARAMETERS;;
8973 
8974     hci_stack->inquiry_state = duration;
8975     hci_stack->inquiry_max_period_length = max_period_length;
8976     hci_stack->inquiry_min_period_length = min_period_length;
8977     hci_run();
8978     return 0;
8979 }
8980 
8981 /**
8982  * @brief Stop GAP Classic Inquiry
8983  * @return 0 if ok
8984  */
8985 int gap_inquiry_stop(void){
8986     if ((hci_stack->inquiry_state >= GAP_INQUIRY_DURATION_MIN) && (hci_stack->inquiry_state <= GAP_INQUIRY_DURATION_MAX)) {
8987         // emit inquiry complete event, before it even started
8988         uint8_t event[] = { GAP_EVENT_INQUIRY_COMPLETE, 1, 0};
8989         hci_emit_event(event, sizeof(event), 1);
8990         return 0;
8991     }
8992     switch (hci_stack->inquiry_state){
8993         case GAP_INQUIRY_STATE_ACTIVE:
8994             hci_stack->inquiry_state = GAP_INQUIRY_STATE_W2_CANCEL;
8995             hci_run();
8996             return ERROR_CODE_SUCCESS;
8997         case GAP_INQUIRY_STATE_PERIODIC:
8998             hci_stack->inquiry_state = GAP_INQUIRY_STATE_W2_EXIT_PERIODIC;
8999             hci_run();
9000             return ERROR_CODE_SUCCESS;
9001         default:
9002             return ERROR_CODE_COMMAND_DISALLOWED;
9003     }
9004 }
9005 
9006 void gap_inquiry_set_lap(uint32_t lap){
9007     hci_stack->inquiry_lap = lap;
9008 }
9009 
9010 void gap_inquiry_set_scan_activity(uint16_t inquiry_scan_interval, uint16_t inquiry_scan_window){
9011     hci_stack->inquiry_scan_interval = inquiry_scan_interval;
9012     hci_stack->inquiry_scan_window   = inquiry_scan_window;
9013     hci_stack->gap_tasks_classic |= GAP_TASK_WRITE_INQUIRY_SCAN_ACTIVITY;
9014     hci_run();
9015 }
9016 
9017 void gap_inquiry_set_transmit_power_level(int8_t tx_power)
9018 {
9019     hci_stack->inquiry_tx_power_level = tx_power;
9020     hci_stack->gap_tasks_classic |= GAP_TASK_WRITE_INQUIRY_TX_POWER_LEVEL;
9021     hci_run();
9022 }
9023 
9024 
9025 /**
9026  * @brief Remote Name Request
9027  * @param addr
9028  * @param page_scan_repetition_mode
9029  * @param clock_offset only used when bit 15 is set
9030  * @events: HCI_EVENT_REMOTE_NAME_REQUEST_COMPLETE
9031  */
9032 int gap_remote_name_request(const bd_addr_t addr, uint8_t page_scan_repetition_mode, uint16_t clock_offset){
9033     if (hci_stack->remote_name_state != GAP_REMOTE_NAME_STATE_IDLE) return ERROR_CODE_COMMAND_DISALLOWED;
9034     (void)memcpy(hci_stack->remote_name_addr, addr, 6);
9035     hci_stack->remote_name_page_scan_repetition_mode = page_scan_repetition_mode;
9036     hci_stack->remote_name_clock_offset = clock_offset;
9037     hci_stack->remote_name_state = GAP_REMOTE_NAME_STATE_W2_SEND;
9038     hci_run();
9039     return 0;
9040 }
9041 
9042 static int gap_pairing_set_state_and_run(const bd_addr_t addr, uint8_t state){
9043     hci_stack->gap_pairing_state = state;
9044     (void)memcpy(hci_stack->gap_pairing_addr, addr, 6);
9045     hci_run();
9046     return 0;
9047 }
9048 
9049 /**
9050  * @brief Legacy Pairing Pin Code Response for binary data / non-strings
9051  * @param addr
9052  * @param pin_data
9053  * @param pin_len
9054  * @return 0 if ok
9055  */
9056 int gap_pin_code_response_binary(const bd_addr_t addr, const uint8_t * pin_data, uint8_t pin_len){
9057     if (hci_stack->gap_pairing_state != GAP_PAIRING_STATE_IDLE) return ERROR_CODE_COMMAND_DISALLOWED;
9058     hci_stack->gap_pairing_input.gap_pairing_pin = pin_data;
9059     hci_stack->gap_pairing_pin_len = pin_len;
9060     return gap_pairing_set_state_and_run(addr, GAP_PAIRING_STATE_SEND_PIN);
9061 }
9062 
9063 /**
9064  * @brief Legacy Pairing Pin Code Response
9065  * @param addr
9066  * @param pin
9067  * @return 0 if ok
9068  */
9069 int gap_pin_code_response(const bd_addr_t addr, const char * pin){
9070     return gap_pin_code_response_binary(addr, (const uint8_t*) pin, (uint8_t) strlen(pin));
9071 }
9072 
9073 /**
9074  * @brief Abort Legacy Pairing
9075  * @param addr
9076  * @param pin
9077  * @return 0 if ok
9078  */
9079 int gap_pin_code_negative(bd_addr_t addr){
9080     if (hci_stack->gap_pairing_state != GAP_PAIRING_STATE_IDLE) return ERROR_CODE_COMMAND_DISALLOWED;
9081     return gap_pairing_set_state_and_run(addr, GAP_PAIRING_STATE_SEND_PIN_NEGATIVE);
9082 }
9083 
9084 /**
9085  * @brief SSP Passkey Response
9086  * @param addr
9087  * @param passkey
9088  * @return 0 if ok
9089  */
9090 int gap_ssp_passkey_response(const bd_addr_t addr, uint32_t passkey){
9091     if (hci_stack->gap_pairing_state != GAP_PAIRING_STATE_IDLE) return ERROR_CODE_COMMAND_DISALLOWED;
9092     hci_stack->gap_pairing_input.gap_pairing_passkey = passkey;
9093     return gap_pairing_set_state_and_run(addr, GAP_PAIRING_STATE_SEND_PASSKEY);
9094 }
9095 
9096 /**
9097  * @brief Abort SSP Passkey Entry/Pairing
9098  * @param addr
9099  * @param pin
9100  * @return 0 if ok
9101  */
9102 int gap_ssp_passkey_negative(const bd_addr_t addr){
9103     if (hci_stack->gap_pairing_state != GAP_PAIRING_STATE_IDLE) return ERROR_CODE_COMMAND_DISALLOWED;
9104     return gap_pairing_set_state_and_run(addr, GAP_PAIRING_STATE_SEND_PASSKEY_NEGATIVE);
9105 }
9106 
9107 /**
9108  * @brief Accept SSP Numeric Comparison
9109  * @param addr
9110  * @param passkey
9111  * @return 0 if ok
9112  */
9113 int gap_ssp_confirmation_response(const bd_addr_t addr){
9114     if (hci_stack->gap_pairing_state != GAP_PAIRING_STATE_IDLE) return ERROR_CODE_COMMAND_DISALLOWED;
9115     return gap_pairing_set_state_and_run(addr, GAP_PAIRING_STATE_SEND_CONFIRMATION);
9116 }
9117 
9118 /**
9119  * @brief Abort SSP Numeric Comparison/Pairing
9120  * @param addr
9121  * @param pin
9122  * @return 0 if ok
9123  */
9124 int gap_ssp_confirmation_negative(const bd_addr_t addr){
9125     if (hci_stack->gap_pairing_state != GAP_PAIRING_STATE_IDLE) return ERROR_CODE_COMMAND_DISALLOWED;
9126     return gap_pairing_set_state_and_run(addr, GAP_PAIRING_STATE_SEND_CONFIRMATION_NEGATIVE);
9127 }
9128 
9129 #if defined(ENABLE_EXPLICIT_IO_CAPABILITIES_REPLY) || defined(ENABLE_EXPLICIT_LINK_KEY_REPLY)
9130 static uint8_t gap_set_auth_flag_and_run(const bd_addr_t addr, hci_authentication_flags_t flag){
9131     hci_connection_t * conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
9132     if (!conn) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
9133     connectionSetAuthenticationFlags(conn, flag);
9134     hci_run();
9135     return ERROR_CODE_SUCCESS;
9136 }
9137 #endif
9138 
9139 #ifdef ENABLE_EXPLICIT_IO_CAPABILITIES_REPLY
9140 uint8_t gap_ssp_io_capabilities_response(const bd_addr_t addr){
9141     return gap_set_auth_flag_and_run(addr, AUTH_FLAG_SEND_IO_CAPABILITIES_REPLY);
9142 }
9143 
9144 uint8_t gap_ssp_io_capabilities_negative(const bd_addr_t addr){
9145     return gap_set_auth_flag_and_run(addr, AUTH_FLAG_SEND_IO_CAPABILITIES_NEGATIVE_REPLY);
9146 }
9147 #endif
9148 
9149 #ifdef ENABLE_CLASSIC_PAIRING_OOB
9150 /**
9151  * @brief Report Remote OOB Data
9152  * @param bd_addr
9153  * @param c_192 Simple Pairing Hash C derived from P-192 public key
9154  * @param r_192 Simple Pairing Randomizer derived from P-192 public key
9155  * @param c_256 Simple Pairing Hash C derived from P-256 public key
9156  * @param r_256 Simple Pairing Randomizer derived from P-256 public key
9157  */
9158 uint8_t gap_ssp_remote_oob_data(const bd_addr_t addr, const uint8_t * c_192, const uint8_t * r_192, const uint8_t * c_256, const uint8_t * r_256){
9159     hci_connection_t * connection = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
9160     if (connection == NULL) {
9161         return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
9162     }
9163     connection->classic_oob_c_192 = c_192;
9164     connection->classic_oob_r_192 = r_192;
9165 
9166     // ignore P-256 if not supported by us
9167     if (hci_stack->secure_connections_active){
9168         connection->classic_oob_c_256 = c_256;
9169         connection->classic_oob_r_256 = r_256;
9170     }
9171 
9172     return ERROR_CODE_SUCCESS;
9173 }
9174 /**
9175  * @brief Generate new OOB data
9176  * @note OOB data will be provided in GAP_EVENT_LOCAL_OOB_DATA and be used in future pairing procedures
9177  */
9178 void gap_ssp_generate_oob_data(void){
9179     hci_stack->classic_read_local_oob_data = true;
9180     hci_run();
9181 }
9182 
9183 #endif
9184 
9185 #ifdef ENABLE_EXPLICIT_LINK_KEY_REPLY
9186 uint8_t gap_send_link_key_response(const bd_addr_t addr, link_key_t link_key, link_key_type_t type){
9187     hci_connection_t * connection = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
9188     if (connection == NULL) {
9189         return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
9190     }
9191 
9192     memcpy(connection->link_key, link_key, sizeof(link_key_t));
9193     connection->link_key_type = type;
9194 
9195     return gap_set_auth_flag_and_run(addr, AUTH_FLAG_HANDLE_LINK_KEY_REQUEST);
9196 }
9197 
9198 #endif // ENABLE_EXPLICIT_LINK_KEY_REPLY
9199 /**
9200  * @brief Set inquiry mode: standard, with RSSI, with RSSI + Extended Inquiry Results. Has to be called before power on.
9201  * @param inquiry_mode see bluetooth_defines.h
9202  */
9203 void hci_set_inquiry_mode(inquiry_mode_t inquiry_mode){
9204     hci_stack->inquiry_mode = inquiry_mode;
9205 }
9206 
9207 /**
9208  * @brief Configure Voice Setting for use with SCO data in HSP/HFP
9209  */
9210 void hci_set_sco_voice_setting(uint16_t voice_setting){
9211     hci_stack->sco_voice_setting = voice_setting;
9212 }
9213 
9214 /**
9215  * @brief Get SCO Voice Setting
9216  * @return current voice setting
9217  */
9218 uint16_t hci_get_sco_voice_setting(void){
9219     return hci_stack->sco_voice_setting;
9220 }
9221 
9222 static int hci_have_usb_transport(void){
9223     if (!hci_stack->hci_transport) return 0;
9224     const char * transport_name = hci_stack->hci_transport->name;
9225     if (!transport_name) return 0;
9226     return (transport_name[0] == 'H') && (transport_name[1] == '2');
9227 }
9228 
9229 /** @brief Get SCO packet length for current SCO Voice setting
9230  *  @note  Using SCO packets of the exact length is required for USB transfer
9231  *  @return Length of SCO packets in bytes (not audio frames)
9232  */
9233 uint16_t hci_get_sco_packet_length(void){
9234     uint16_t sco_packet_length = 0;
9235 
9236 #ifdef ENABLE_SCO_OVER_HCI
9237     // Transparent = mSBC => 1, CVSD with 16-bit samples requires twice as much bytes
9238     int multiplier;
9239     if (((hci_stack->sco_voice_setting_active & 0x03) != 0x03) &&
9240         ((hci_stack->sco_voice_setting_active & 0x20) == 0x20)) {
9241         multiplier = 2;
9242     } else {
9243         multiplier = 1;
9244     }
9245 
9246 
9247     if (hci_have_usb_transport()){
9248         // see Core Spec for H2 USB Transfer.
9249         // 3 byte SCO header + 24 bytes per connection
9250         int num_sco_connections = btstack_max(1, hci_number_sco_connections());
9251         sco_packet_length = 3 + 24 * num_sco_connections * multiplier;
9252     } else {
9253         // 3 byte SCO header + SCO packet size over the air (60 bytes)
9254         sco_packet_length = 3 + 60 * multiplier;
9255         // assert that it still fits inside an SCO buffer
9256         if (sco_packet_length > (hci_stack->sco_data_packet_length + 3)){
9257             sco_packet_length = 3 + 60;
9258         }
9259     }
9260 #endif
9261 
9262 #ifdef HAVE_SCO_TRANSPORT
9263     // Transparent = mSBC => 1, CVSD with 16-bit samples requires twice as much bytes
9264     int multiplier = ((hci_stack->sco_voice_setting_active & 0x03) == 0x03) ? 1 : 2;
9265     sco_packet_length = 3 + 60 * multiplier;
9266 #endif
9267     return sco_packet_length;
9268 }
9269 
9270 /**
9271 * @brief Sets the master/slave policy
9272 * @param policy (0: attempt to become master, 1: let connecting device decide)
9273 */
9274 void hci_set_master_slave_policy(uint8_t policy){
9275     hci_stack->master_slave_policy = policy;
9276 }
9277 
9278 #endif
9279 
9280 HCI_STATE hci_get_state(void){
9281     return hci_stack->state;
9282 }
9283 
9284 #ifdef ENABLE_CLASSIC
9285 void gap_register_classic_connection_filter(int (*accept_callback)(bd_addr_t addr, hci_link_type_t link_type)){
9286     hci_stack->gap_classic_accept_callback = accept_callback;
9287 }
9288 #endif
9289 
9290 /**
9291  * @brief Set callback for Bluetooth Hardware Error
9292  */
9293 void hci_set_hardware_error_callback(void (*fn)(uint8_t error)){
9294     hci_stack->hardware_error_callback = fn;
9295 }
9296 
9297 void hci_disconnect_all(void){
9298     btstack_linked_list_iterator_t it;
9299     btstack_linked_list_iterator_init(&it, &hci_stack->connections);
9300     while (btstack_linked_list_iterator_has_next(&it)){
9301         hci_connection_t * con = (hci_connection_t*) btstack_linked_list_iterator_next(&it);
9302         if (con->state == SENT_DISCONNECT) continue;
9303         con->state = SEND_DISCONNECT;
9304     }
9305     hci_run();
9306 }
9307 
9308 uint16_t hci_get_manufacturer(void){
9309     return hci_stack->manufacturer;
9310 }
9311 
9312 #ifdef ENABLE_BLE
9313 static sm_connection_t * sm_get_connection_for_handle(hci_con_handle_t con_handle){
9314     hci_connection_t * hci_con = hci_connection_for_handle(con_handle);
9315     if (!hci_con) return NULL;
9316     return &hci_con->sm_connection;
9317 }
9318 
9319 // extracted from sm.c to allow enabling of l2cap le data channels without adding sm.c to the build
9320 // without sm.c default values from create_connection_for_bd_addr_and_type() resulg in non-encrypted, not-authenticated
9321 #endif
9322 
9323 uint8_t gap_encryption_key_size(hci_con_handle_t con_handle){
9324     hci_connection_t * hci_connection = hci_connection_for_handle(con_handle);
9325     if (hci_connection == NULL) return 0;
9326     if (hci_is_le_connection(hci_connection)){
9327 #ifdef ENABLE_BLE
9328         sm_connection_t * sm_conn = &hci_connection->sm_connection;
9329         if (sm_conn->sm_connection_encrypted) {
9330             return sm_conn->sm_actual_encryption_key_size;
9331         }
9332 #endif
9333     } else {
9334 #ifdef ENABLE_CLASSIC
9335         if ((hci_connection->authentication_flags & AUTH_FLAG_CONNECTION_ENCRYPTED)){
9336             return hci_connection->encryption_key_size;
9337         }
9338 #endif
9339     }
9340     return 0;
9341 }
9342 
9343 bool gap_authenticated(hci_con_handle_t con_handle){
9344     hci_connection_t * hci_connection = hci_connection_for_handle(con_handle);
9345     if (hci_connection == NULL) return false;
9346 
9347     switch (hci_connection->address_type){
9348 #ifdef ENABLE_BLE
9349         case BD_ADDR_TYPE_LE_PUBLIC:
9350         case BD_ADDR_TYPE_LE_RANDOM:
9351             if (hci_connection->sm_connection.sm_connection_encrypted == 0) return 0; // unencrypted connection cannot be authenticated
9352             return hci_connection->sm_connection.sm_connection_authenticated != 0;
9353 #endif
9354 #ifdef ENABLE_CLASSIC
9355         case BD_ADDR_TYPE_SCO:
9356         case BD_ADDR_TYPE_ACL:
9357             return gap_authenticated_for_link_key_type(hci_connection->link_key_type);
9358 #endif
9359         default:
9360             return false;
9361     }
9362 }
9363 
9364 bool gap_secure_connection(hci_con_handle_t con_handle){
9365     hci_connection_t * hci_connection = hci_connection_for_handle(con_handle);
9366     if (hci_connection == NULL) return 0;
9367 
9368     switch (hci_connection->address_type){
9369 #ifdef ENABLE_BLE
9370         case BD_ADDR_TYPE_LE_PUBLIC:
9371         case BD_ADDR_TYPE_LE_RANDOM:
9372             if (hci_connection->sm_connection.sm_connection_encrypted == 0) return false; // unencrypted connection cannot be authenticated
9373             return hci_connection->sm_connection.sm_connection_sc != 0;
9374 #endif
9375 #ifdef ENABLE_CLASSIC
9376         case BD_ADDR_TYPE_SCO:
9377         case BD_ADDR_TYPE_ACL:
9378             return gap_secure_connection_for_link_key_type(hci_connection->link_key_type);
9379 #endif
9380         default:
9381             return false;
9382     }
9383 }
9384 
9385 bool gap_bonded(hci_con_handle_t con_handle){
9386 	hci_connection_t * hci_connection = hci_connection_for_handle(con_handle);
9387 	if (hci_connection == NULL) return 0;
9388 
9389 #ifdef ENABLE_CLASSIC
9390 	link_key_t link_key;
9391 	link_key_type_t link_key_type;
9392 #endif
9393 	switch (hci_connection->address_type){
9394 #ifdef ENABLE_BLE
9395 		case BD_ADDR_TYPE_LE_PUBLIC:
9396 		case BD_ADDR_TYPE_LE_RANDOM:
9397 			return hci_connection->sm_connection.sm_le_db_index >= 0;
9398 #endif
9399 #ifdef ENABLE_CLASSIC
9400 		case BD_ADDR_TYPE_SCO:
9401 		case BD_ADDR_TYPE_ACL:
9402 			return hci_stack->link_key_db && hci_stack->link_key_db->get_link_key(hci_connection->address, link_key, &link_key_type);
9403 #endif
9404 		default:
9405 			return false;
9406 	}
9407 }
9408 
9409 #ifdef ENABLE_BLE
9410 authorization_state_t gap_authorization_state(hci_con_handle_t con_handle){
9411     sm_connection_t * sm_conn = sm_get_connection_for_handle(con_handle);
9412     if (!sm_conn) return AUTHORIZATION_UNKNOWN;     // wrong connection
9413     if (!sm_conn->sm_connection_encrypted)               return AUTHORIZATION_UNKNOWN; // unencrypted connection cannot be authorized
9414     if (!sm_conn->sm_connection_authenticated)           return AUTHORIZATION_UNKNOWN; // unauthenticatd connection cannot be authorized
9415     return sm_conn->sm_connection_authorization_state;
9416 }
9417 #endif
9418 
9419 #ifdef ENABLE_CLASSIC
9420 uint8_t gap_sniff_mode_enter(hci_con_handle_t con_handle, uint16_t sniff_min_interval, uint16_t sniff_max_interval, uint16_t sniff_attempt, uint16_t sniff_timeout){
9421     hci_connection_t * conn = hci_connection_for_handle(con_handle);
9422     if (!conn) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
9423     conn->sniff_min_interval = sniff_min_interval;
9424     conn->sniff_max_interval = sniff_max_interval;
9425     conn->sniff_attempt = sniff_attempt;
9426     conn->sniff_timeout = sniff_timeout;
9427     hci_run();
9428     return 0;
9429 }
9430 
9431 /**
9432  * @brief Exit Sniff mode
9433  * @param con_handle
9434  @ @return 0 if ok
9435  */
9436 uint8_t gap_sniff_mode_exit(hci_con_handle_t con_handle){
9437     hci_connection_t * conn = hci_connection_for_handle(con_handle);
9438     if (!conn) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
9439     conn->sniff_min_interval = 0xffff;
9440     hci_run();
9441     return 0;
9442 }
9443 
9444 uint8_t gap_sniff_subrating_configure(hci_con_handle_t con_handle, uint16_t max_latency, uint16_t min_remote_timeout, uint16_t min_local_timeout){
9445     hci_connection_t * conn = hci_connection_for_handle(con_handle);
9446     if (!conn) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
9447     conn->sniff_subrating_max_latency = max_latency;
9448     conn->sniff_subrating_min_remote_timeout = min_remote_timeout;
9449     conn->sniff_subrating_min_local_timeout = min_local_timeout;
9450     hci_run();
9451     return ERROR_CODE_SUCCESS;
9452 }
9453 
9454 uint8_t gap_qos_set(hci_con_handle_t con_handle, hci_service_type_t service_type, uint32_t token_rate, uint32_t peak_bandwidth, uint32_t latency, uint32_t delay_variation){
9455     hci_connection_t * conn = hci_connection_for_handle(con_handle);
9456     if (!conn) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
9457     conn->qos_service_type = service_type;
9458     conn->qos_token_rate = token_rate;
9459     conn->qos_peak_bandwidth = peak_bandwidth;
9460     conn->qos_latency = latency;
9461     conn->qos_delay_variation = delay_variation;
9462     hci_run();
9463     return ERROR_CODE_SUCCESS;
9464 }
9465 
9466 void gap_set_page_scan_activity(uint16_t page_scan_interval, uint16_t page_scan_window){
9467     hci_stack->new_page_scan_interval = page_scan_interval;
9468     hci_stack->new_page_scan_window = page_scan_window;
9469     hci_stack->gap_tasks_classic |= GAP_TASK_WRITE_PAGE_SCAN_ACTIVITY;
9470     hci_run();
9471 }
9472 
9473 void gap_set_page_scan_type(page_scan_type_t page_scan_type){
9474     hci_stack->new_page_scan_type = (uint8_t) page_scan_type;
9475     hci_stack->gap_tasks_classic |= GAP_TASK_WRITE_PAGE_SCAN_TYPE;
9476     hci_run();
9477 }
9478 
9479 void gap_set_page_timeout(uint16_t page_timeout){
9480     hci_stack->page_timeout = page_timeout;
9481     hci_stack->gap_tasks_classic |= GAP_TASK_WRITE_PAGE_TIMEOUT;
9482     hci_run();
9483 }
9484 
9485 #endif
9486 
9487 #ifdef ENABLE_LE_PRIVACY_ADDRESS_RESOLUTION
9488 void hci_load_le_device_db_entry_into_resolving_list(uint16_t le_device_db_index){
9489     if (le_device_db_index >= MAX_NUM_RESOLVING_LIST_ENTRIES) return;
9490     if (le_device_db_index >= le_device_db_max_count()) return;
9491     uint8_t offset = le_device_db_index >> 3;
9492     uint8_t mask = 1 << (le_device_db_index & 7);
9493     hci_stack->le_resolving_list_add_entries[offset] |= mask;
9494     hci_stack->le_resolving_list_set_privacy_mode[offset] |= mask;
9495     if (hci_stack->le_resolving_list_state == LE_RESOLVING_LIST_DONE){
9496     	// note: go back to remove entries, otherwise, a remove + add will skip the add
9497         hci_stack->le_resolving_list_state = LE_RESOLVING_LIST_UPDATES_ENTRIES;
9498     }
9499 }
9500 
9501 void hci_remove_le_device_db_entry_from_resolving_list(uint16_t le_device_db_index){
9502 	if (le_device_db_index >= MAX_NUM_RESOLVING_LIST_ENTRIES) return;
9503 	if (le_device_db_index >= le_device_db_max_count()) return;
9504 	uint8_t offset = le_device_db_index >> 3;
9505 	uint8_t mask = 1 << (le_device_db_index & 7);
9506 	hci_stack->le_resolving_list_remove_entries[offset] |= mask;
9507 	if (hci_stack->le_resolving_list_state == LE_RESOLVING_LIST_DONE){
9508 		hci_stack->le_resolving_list_state = LE_RESOLVING_LIST_UPDATES_ENTRIES;
9509 	}
9510 }
9511 
9512 uint8_t gap_load_resolving_list_from_le_device_db(void){
9513     if (hci_command_supported(SUPPORTED_HCI_COMMAND_LE_SET_ADDRESS_RESOLUTION_ENABLE) == false){
9514 		return ERROR_CODE_UNSUPPORTED_FEATURE_OR_PARAMETER_VALUE;
9515 	}
9516 	if (hci_stack->le_resolving_list_state != LE_RESOLVING_LIST_SEND_ENABLE_ADDRESS_RESOLUTION){
9517 		// restart le resolving list update
9518 		hci_stack->le_resolving_list_state = LE_RESOLVING_LIST_READ_SIZE;
9519 	}
9520 	return ERROR_CODE_SUCCESS;
9521 }
9522 
9523 void gap_set_peer_privacy_mode(le_privacy_mode_t privacy_mode ){
9524     hci_stack->le_privacy_mode = privacy_mode;
9525 }
9526 #endif
9527 
9528 #ifdef ENABLE_BLE
9529 #ifdef ENABLE_LE_CENTRAL
9530 #ifdef ENABLE_LE_EXTENDED_ADVERTISING
9531 
9532 static uint8_t hci_periodic_advertiser_list_add(bd_addr_type_t address_type, const bd_addr_t address, uint8_t advertising_sid){
9533     // check if already in list
9534     btstack_linked_list_iterator_t it;
9535     btstack_linked_list_iterator_init(&it, &hci_stack->le_periodic_advertiser_list);
9536     while (btstack_linked_list_iterator_has_next(&it)) {
9537         periodic_advertiser_list_entry_t *entry = (periodic_advertiser_list_entry_t *) btstack_linked_list_iterator_next(&it);
9538         if (entry->sid != advertising_sid) {
9539             continue;
9540         }
9541         if (entry->address_type != address_type) {
9542             continue;
9543         }
9544         if (memcmp(entry->address, address, 6) != 0) {
9545             continue;
9546         }
9547         // disallow if already scheduled to add
9548         if ((entry->state & LE_PERIODIC_ADVERTISER_LIST_ENTRY_ADD_TO_CONTROLLER) != 0){
9549             return ERROR_CODE_COMMAND_DISALLOWED;
9550         }
9551         // still on controller, but scheduled to remove -> re-add
9552         entry->state |= LE_PERIODIC_ADVERTISER_LIST_ENTRY_ADD_TO_CONTROLLER;
9553         return ERROR_CODE_SUCCESS;
9554     }
9555     // alloc and add to list
9556     periodic_advertiser_list_entry_t * entry = btstack_memory_periodic_advertiser_list_entry_get();
9557     if (!entry) return BTSTACK_MEMORY_ALLOC_FAILED;
9558     entry->sid = advertising_sid;
9559     entry->address_type = address_type;
9560     (void)memcpy(entry->address, address, 6);
9561     entry->state = LE_PERIODIC_ADVERTISER_LIST_ENTRY_ADD_TO_CONTROLLER;
9562     btstack_linked_list_add(&hci_stack->le_periodic_advertiser_list, (btstack_linked_item_t*) entry);
9563     return ERROR_CODE_SUCCESS;
9564 }
9565 
9566 static uint8_t hci_periodic_advertiser_list_remove(bd_addr_type_t address_type, const bd_addr_t address, uint8_t advertising_sid){
9567     btstack_linked_list_iterator_t it;
9568     btstack_linked_list_iterator_init(&it, &hci_stack->le_periodic_advertiser_list);
9569     while (btstack_linked_list_iterator_has_next(&it)){
9570         periodic_advertiser_list_entry_t * entry = (periodic_advertiser_list_entry_t*) btstack_linked_list_iterator_next(&it);
9571         if (entry->sid != advertising_sid) {
9572             continue;
9573         }
9574         if (entry->address_type != address_type) {
9575             continue;
9576         }
9577         if (memcmp(entry->address, address, 6) != 0) {
9578             continue;
9579         }
9580         if (entry->state & LE_PERIODIC_ADVERTISER_LIST_ENTRY_ON_CONTROLLER){
9581             // remove from controller if already present
9582             entry->state |= LE_PERIODIC_ADVERTISER_LIST_ENTRY_REMOVE_FROM_CONTROLLER;
9583         }  else {
9584             // directly remove entry from whitelist
9585             btstack_linked_list_iterator_remove(&it);
9586             btstack_memory_periodic_advertiser_list_entry_free(entry);
9587         }
9588         return ERROR_CODE_SUCCESS;
9589     }
9590     return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
9591 }
9592 
9593 static void hci_periodic_advertiser_list_clear(void){
9594     btstack_linked_list_iterator_t it;
9595     btstack_linked_list_iterator_init(&it, &hci_stack->le_periodic_advertiser_list);
9596     while (btstack_linked_list_iterator_has_next(&it)){
9597         periodic_advertiser_list_entry_t * entry = (periodic_advertiser_list_entry_t*) btstack_linked_list_iterator_next(&it);
9598         if (entry->state & LE_PERIODIC_ADVERTISER_LIST_ENTRY_ON_CONTROLLER){
9599             // remove from controller if already present
9600             entry->state |= LE_PERIODIC_ADVERTISER_LIST_ENTRY_REMOVE_FROM_CONTROLLER;
9601             continue;
9602         }
9603         // directly remove entry from whitelist
9604         btstack_linked_list_iterator_remove(&it);
9605         btstack_memory_periodic_advertiser_list_entry_free(entry);
9606     }
9607 }
9608 
9609 uint8_t gap_periodic_advertiser_list_clear(void){
9610     hci_periodic_advertiser_list_clear();
9611     hci_run();
9612     return ERROR_CODE_SUCCESS;
9613 }
9614 
9615 uint8_t gap_periodic_advertiser_list_add(bd_addr_type_t address_type, const bd_addr_t address, uint8_t advertising_sid){
9616     uint8_t status = hci_periodic_advertiser_list_add(address_type, address, advertising_sid);
9617     if (status){
9618         return status;
9619     }
9620     hci_run();
9621     return ERROR_CODE_SUCCESS;
9622 }
9623 
9624 uint8_t gap_periodic_advertiser_list_remove(bd_addr_type_t address_type, const bd_addr_t address, uint8_t advertising_sid){
9625     uint8_t status = hci_periodic_advertiser_list_remove(address_type, address, advertising_sid);
9626     if (status){
9627         return status;
9628     }
9629     hci_run();
9630     return ERROR_CODE_SUCCESS;
9631 }
9632 
9633 uint8_t gap_periodic_advertising_create_sync(uint8_t options, uint8_t advertising_sid, bd_addr_type_t advertiser_address_type,
9634                                              bd_addr_t advertiser_address, uint16_t skip, uint16_t sync_timeout, uint8_t sync_cte_type){
9635     // abort if already active
9636     if (hci_stack->le_periodic_sync_request != LE_CONNECTING_IDLE) {
9637         return ERROR_CODE_COMMAND_DISALLOWED;
9638     }
9639     // store request
9640     hci_stack->le_periodic_sync_request = ((options & 0) != 0) ? LE_CONNECTING_WHITELIST : LE_CONNECTING_DIRECT;
9641     hci_stack->le_periodic_sync_options = options;
9642     hci_stack->le_periodic_sync_advertising_sid = advertising_sid;
9643     hci_stack->le_periodic_sync_advertiser_address_type = advertiser_address_type;
9644     memcpy(hci_stack->le_periodic_sync_advertiser_address, advertiser_address, 6);
9645     hci_stack->le_periodic_sync_skip = skip;
9646     hci_stack->le_periodic_sync_timeout = sync_timeout;
9647     hci_stack->le_periodic_sync_cte_type = sync_cte_type;
9648 
9649     hci_run();
9650     return ERROR_CODE_SUCCESS;
9651 }
9652 
9653 uint8_t gap_periodic_advertising_create_sync_cancel(void){
9654     // abort if not requested
9655     if (hci_stack->le_periodic_sync_request == LE_CONNECTING_IDLE) {
9656         return ERROR_CODE_COMMAND_DISALLOWED;
9657     }
9658     hci_stack->le_periodic_sync_request = LE_CONNECTING_IDLE;
9659     hci_run();
9660     return ERROR_CODE_SUCCESS;
9661 }
9662 
9663 uint8_t gap_periodic_advertising_terminate_sync(uint16_t sync_handle){
9664     if (hci_stack->le_periodic_terminate_sync_handle != HCI_CON_HANDLE_INVALID){
9665         return ERROR_CODE_COMMAND_DISALLOWED;
9666     }
9667     hci_stack->le_periodic_terminate_sync_handle = sync_handle;
9668     hci_run();
9669     return ERROR_CODE_SUCCESS;
9670 }
9671 
9672 #endif
9673 #endif
9674 #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
9675 static hci_iso_stream_t *
9676 hci_iso_stream_create(hci_iso_type_t iso_type, hci_iso_stream_state_t state, uint8_t group_id, uint8_t stream_id) {
9677     hci_iso_stream_t * iso_stream = btstack_memory_hci_iso_stream_get();
9678     if (iso_stream != NULL){
9679         iso_stream->iso_type = iso_type;
9680         iso_stream->state = state;
9681         iso_stream->group_id = group_id;
9682         iso_stream->stream_id = stream_id;
9683         iso_stream->cis_handle = HCI_CON_HANDLE_INVALID;
9684         iso_stream->acl_handle = HCI_CON_HANDLE_INVALID;
9685         btstack_linked_list_add(&hci_stack->iso_streams, (btstack_linked_item_t*) iso_stream);
9686     }
9687     return iso_stream;
9688 }
9689 
9690 static hci_iso_stream_t * hci_iso_stream_for_con_handle(hci_con_handle_t con_handle){
9691     btstack_linked_list_iterator_t it;
9692     btstack_linked_list_iterator_init(&it, &hci_stack->iso_streams);
9693     while (btstack_linked_list_iterator_has_next(&it)){
9694         hci_iso_stream_t * iso_stream = (hci_iso_stream_t *) btstack_linked_list_iterator_next(&it);
9695         if (iso_stream->cis_handle == con_handle ) {
9696             return iso_stream;
9697         }
9698     }
9699     return NULL;
9700 }
9701 
9702 static void hci_iso_stream_finalize(hci_iso_stream_t * iso_stream){
9703     log_info("hci_iso_stream_finalize con_handle 0x%04x, group_id 0x%02x", iso_stream->cis_handle, iso_stream->group_id);
9704     btstack_linked_list_remove(&hci_stack->iso_streams, (btstack_linked_item_t*) iso_stream);
9705     btstack_memory_hci_iso_stream_free(iso_stream);
9706 }
9707 
9708 static void hci_iso_stream_finalize_by_type_and_group_id(hci_iso_type_t iso_type, uint8_t group_id) {
9709     btstack_linked_list_iterator_t it;
9710     btstack_linked_list_iterator_init(&it, &hci_stack->iso_streams);
9711     while (btstack_linked_list_iterator_has_next(&it)){
9712         hci_iso_stream_t * iso_stream = (hci_iso_stream_t *) btstack_linked_list_iterator_next(&it);
9713         if ((iso_stream->group_id == group_id) &&
9714             (iso_stream->iso_type == iso_type)){
9715             btstack_linked_list_iterator_remove(&it);
9716             btstack_memory_hci_iso_stream_free(iso_stream);
9717         }
9718     }
9719 }
9720 
9721 static void hci_iso_stream_requested_finalize(uint8_t group_id) {
9722     btstack_linked_list_iterator_t it;
9723     btstack_linked_list_iterator_init(&it, &hci_stack->iso_streams);
9724     while (btstack_linked_list_iterator_has_next(&it)){
9725         hci_iso_stream_t * iso_stream = (hci_iso_stream_t *) btstack_linked_list_iterator_next(&it);
9726         if ((iso_stream->state == HCI_ISO_STREAM_STATE_REQUESTED ) &&
9727             (iso_stream->group_id == group_id)){
9728             btstack_linked_list_iterator_remove(&it);
9729             btstack_memory_hci_iso_stream_free(iso_stream);
9730         }
9731     }
9732 }
9733 static void hci_iso_stream_requested_confirm(uint8_t big_handle){
9734     btstack_linked_list_iterator_t it;
9735     btstack_linked_list_iterator_init(&it, &hci_stack->iso_streams);
9736     while (btstack_linked_list_iterator_has_next(&it)){
9737         hci_iso_stream_t * iso_stream = (hci_iso_stream_t *) btstack_linked_list_iterator_next(&it);
9738         if ( iso_stream->state == HCI_ISO_STREAM_STATE_REQUESTED ) {
9739             iso_stream->state = HCI_ISO_STREAM_STATE_W4_ESTABLISHED;
9740         }
9741     }
9742 }
9743 
9744 static bool hci_iso_sdu_complete(uint8_t * packet, uint16_t size){
9745     uint8_t  sdu_ts_flag = (packet[1] >> 6) & 1;
9746     uint16_t sdu_len_offset = 6 + (sdu_ts_flag * 4);
9747     uint16_t sdu_len = little_endian_read_16(packet, sdu_len_offset) & 0x0fff;
9748     return (sdu_len_offset + 2 + sdu_len) == size;
9749 }
9750 
9751 static void hci_iso_packet_handler(uint8_t * packet, uint16_t size){
9752     if (hci_stack->iso_packet_handler == NULL) {
9753         return;
9754     }
9755     if (size < 4) {
9756         return;
9757     }
9758 
9759     // parse header
9760     uint16_t conn_handle_and_flags = little_endian_read_16(packet, 0);
9761     uint16_t iso_data_len = little_endian_read_16(packet, 2);
9762     hci_con_handle_t cis_handle = (hci_con_handle_t) (conn_handle_and_flags & 0xfff);
9763     hci_iso_stream_t * iso_stream = hci_iso_stream_for_con_handle(cis_handle);
9764     uint8_t pb_flag = (conn_handle_and_flags >> 12) & 3;
9765 
9766     // assert packet is complete
9767     if ((iso_data_len + 4u) != size){
9768         return;
9769     }
9770 
9771     if ((pb_flag & 0x01) == 0){
9772         if (pb_flag == 0x02){
9773             // The ISO_Data_Load field contains a header and a complete SDU.
9774             if (hci_iso_sdu_complete(packet, size)) {
9775                 (hci_stack->iso_packet_handler)(HCI_ISO_DATA_PACKET, 0, packet, size);
9776             }
9777         } else {
9778             // The ISO_Data_Load field contains a header and the first fragment of a fragmented SDU.
9779             if (iso_stream == NULL){
9780                 return;
9781             }
9782             if (size > HCI_ISO_PAYLOAD_SIZE){
9783                 return;
9784             }
9785             memcpy(iso_stream->reassembly_buffer, packet, size);
9786             // fix pb_flag
9787             iso_stream->reassembly_buffer[1] = (iso_stream->reassembly_buffer[1] & 0xcf) | 0x20;
9788             iso_stream->reassembly_pos = size;
9789         }
9790     } else {
9791         // iso_data_load contains continuation or last fragment of an SDU
9792         uint8_t  ts_flag = (conn_handle_and_flags >> 14) & 1;
9793         if (ts_flag != 0){
9794            return;
9795         }
9796         // append fragment
9797         if (iso_stream == NULL){
9798             return;
9799         }
9800         if (iso_stream->reassembly_pos == 0){
9801             return;
9802         }
9803         if ((iso_stream->reassembly_pos + iso_data_len) > size){
9804             // reset reassembly buffer
9805             iso_stream->reassembly_pos = 0;
9806             return;
9807         }
9808         memcpy(&iso_stream->reassembly_buffer[iso_stream->reassembly_pos], &packet[4], iso_data_len);
9809         iso_stream->reassembly_pos += iso_data_len;
9810 
9811         // deliver if last fragment and SDU complete
9812         if (pb_flag == 0x03){
9813             if (hci_iso_sdu_complete(iso_stream->reassembly_buffer, iso_stream->reassembly_pos)){
9814                 (hci_stack->iso_packet_handler)(HCI_ISO_DATA_PACKET, 0, iso_stream->reassembly_buffer, iso_stream->reassembly_pos);
9815             }
9816             iso_stream->reassembly_pos = 0;
9817         }
9818     }
9819 }
9820 
9821 static void hci_emit_big_created(const le_audio_big_t * big, uint8_t status){
9822     uint8_t event [6 + (MAX_NR_BIS * 2)];
9823     uint16_t pos = 0;
9824     event[pos++] = HCI_EVENT_META_GAP;
9825     event[pos++] = 4 + (2 * big->num_bis);
9826     event[pos++] = GAP_SUBEVENT_BIG_CREATED;
9827     event[pos++] = status;
9828     event[pos++] = big->big_handle;
9829     event[pos++] = big->num_bis;
9830     uint8_t i;
9831     for (i=0;i<big->num_bis;i++){
9832         little_endian_store_16(event, pos, big->bis_con_handles[i]);
9833         pos += 2;
9834     }
9835     hci_emit_event(event, pos, 0);
9836 }
9837 
9838 static void hci_emit_cig_created(const le_audio_cig_t * cig, uint8_t status){
9839     uint8_t event [6 + (MAX_NR_CIS * 2)];
9840     uint16_t pos = 0;
9841     event[pos++] = HCI_EVENT_META_GAP;
9842     event[pos++] = 4 + (2 * cig->num_cis);
9843     event[pos++] = GAP_SUBEVENT_CIG_CREATED;
9844     event[pos++] = status;
9845     event[pos++] = cig->cig_id;
9846     event[pos++] = cig->num_cis;
9847     uint8_t i;
9848     for (i=0;i<cig->num_cis;i++){
9849         little_endian_store_16(event, pos, cig->cis_con_handles[i]);
9850         pos += 2;
9851     }
9852     hci_emit_event(event, pos, 0);
9853 }
9854 
9855 static void hci_emit_cis_created(uint8_t status, uint8_t cig_id, uint8_t cis_id, hci_con_handle_t cis_con_handle,
9856                      hci_con_handle_t acl_con_handle) {
9857     uint8_t event [10];
9858     uint16_t pos = 0;
9859     event[pos++] = HCI_EVENT_META_GAP;
9860     event[pos++] = 8;
9861     event[pos++] = GAP_SUBEVENT_CIS_CREATED;
9862     event[pos++] = status;
9863     event[pos++] = cig_id;
9864     event[pos++] = cis_id;
9865     little_endian_store_16(event, pos, cis_con_handle);
9866     pos += 2;
9867     little_endian_store_16(event, pos, acl_con_handle);
9868     pos += 2;
9869     hci_emit_event(event, pos, 0);
9870 }
9871 
9872 // emits GAP_SUBEVENT_CIS_CREATED after calling hci_iso_finalize
9873 static void hci_cis_handle_created(hci_iso_stream_t * iso_stream, uint8_t status){
9874     // cache data before finalizing struct
9875     uint8_t cig_id              = iso_stream->group_id;
9876     uint8_t cis_id              = iso_stream->stream_id;
9877     hci_con_handle_t cis_handle = iso_stream->cis_handle;
9878     hci_con_handle_t acl_handle = iso_stream->acl_handle;
9879     if (status != ERROR_CODE_SUCCESS){
9880         hci_iso_stream_finalize(iso_stream);
9881     }
9882     hci_emit_cis_created(status, cig_id, cis_id, cis_handle, acl_handle);
9883 }
9884 
9885 static void hci_emit_big_terminated(const le_audio_big_t * big){
9886     uint8_t event [4];
9887     uint16_t pos = 0;
9888     event[pos++] = HCI_EVENT_META_GAP;
9889     event[pos++] = 2;
9890     event[pos++] = GAP_SUBEVENT_BIG_TERMINATED;
9891     event[pos++] = big->big_handle;
9892     hci_emit_event(event, pos, 0);
9893 }
9894 
9895 static void hci_emit_big_sync_created(const le_audio_big_sync_t * big_sync, uint8_t status){
9896     uint8_t event [6 + (MAX_NR_BIS * 2)];
9897     uint16_t pos = 0;
9898     event[pos++] = HCI_EVENT_META_GAP;
9899     event[pos++] = 4;
9900     event[pos++] = GAP_SUBEVENT_BIG_SYNC_CREATED;
9901     event[pos++] = status;
9902     event[pos++] = big_sync->big_handle;
9903     event[pos++] = big_sync->num_bis;
9904     uint8_t i;
9905     for (i=0;i<big_sync->num_bis;i++){
9906         little_endian_store_16(event, pos, big_sync->bis_con_handles[i]);
9907         pos += 2;
9908     }
9909     hci_emit_event(event, pos, 0);
9910 }
9911 
9912 static void hci_emit_big_sync_stopped(uint8_t big_handle){
9913     uint8_t event [4];
9914     uint16_t pos = 0;
9915     event[pos++] = HCI_EVENT_META_GAP;
9916     event[pos++] = 2;
9917     event[pos++] = GAP_SUBEVENT_BIG_SYNC_STOPPED;
9918     event[pos++] = big_handle;
9919     hci_emit_event(event, pos, 0);
9920 }
9921 
9922 static void hci_emit_bis_can_send_now(const le_audio_big_t *big, uint8_t bis_index) {
9923     uint8_t event[6];
9924     uint16_t pos = 0;
9925     event[pos++] = HCI_EVENT_BIS_CAN_SEND_NOW;
9926     event[pos++] = sizeof(event) - 2;
9927     event[pos++] = big->big_handle;
9928     event[pos++] = bis_index;
9929     little_endian_store_16(event, pos, big->bis_con_handles[bis_index]);
9930     hci_emit_event(&event[0], sizeof(event), 0);  // don't dump
9931 }
9932 
9933 static void hci_emit_cis_can_send_now(hci_con_handle_t cis_con_handle) {
9934     uint8_t event[4];
9935     uint16_t pos = 0;
9936     event[pos++] = HCI_EVENT_CIS_CAN_SEND_NOW;
9937     event[pos++] = sizeof(event) - 2;
9938     little_endian_store_16(event, pos, cis_con_handle);
9939     hci_emit_event(&event[0], sizeof(event), 0);  // don't dump
9940 }
9941 
9942 static le_audio_big_t * hci_big_for_handle(uint8_t big_handle){
9943     btstack_linked_list_iterator_t it;
9944     btstack_linked_list_iterator_init(&it, &hci_stack->le_audio_bigs);
9945     while (btstack_linked_list_iterator_has_next(&it)){
9946         le_audio_big_t * big = (le_audio_big_t *) btstack_linked_list_iterator_next(&it);
9947         if ( big->big_handle == big_handle ) {
9948             return big;
9949         }
9950     }
9951     return NULL;
9952 }
9953 
9954 static le_audio_big_sync_t * hci_big_sync_for_handle(uint8_t big_handle){
9955     btstack_linked_list_iterator_t it;
9956     btstack_linked_list_iterator_init(&it, &hci_stack->le_audio_big_syncs);
9957     while (btstack_linked_list_iterator_has_next(&it)){
9958         le_audio_big_sync_t * big_sync = (le_audio_big_sync_t *) btstack_linked_list_iterator_next(&it);
9959         if ( big_sync->big_handle == big_handle ) {
9960             return big_sync;
9961         }
9962     }
9963     return NULL;
9964 }
9965 
9966 void hci_set_num_iso_packets_to_queue(uint8_t num_packets){
9967     hci_stack->iso_packets_to_queue = num_packets;
9968 }
9969 
9970 static le_audio_cig_t * hci_cig_for_id(uint8_t cig_id){
9971     btstack_linked_list_iterator_t it;
9972     btstack_linked_list_iterator_init(&it, &hci_stack->le_audio_cigs);
9973     while (btstack_linked_list_iterator_has_next(&it)){
9974         le_audio_cig_t * cig = (le_audio_cig_t *) btstack_linked_list_iterator_next(&it);
9975         if ( cig->cig_id == cig_id ) {
9976             return cig;
9977         }
9978     }
9979     return NULL;
9980 }
9981 
9982 static void hci_iso_notify_can_send_now(void){
9983 
9984     // BIG
9985 
9986     btstack_linked_list_iterator_t it;
9987     btstack_linked_list_iterator_init(&it, &hci_stack->le_audio_bigs);
9988     while (btstack_linked_list_iterator_has_next(&it)){
9989         le_audio_big_t * big = (le_audio_big_t *) btstack_linked_list_iterator_next(&it);
9990         // track number completed packet timestamps
9991         if (big->num_completed_timestamp_current_valid){
9992             big->num_completed_timestamp_current_valid = false;
9993             if (big->num_completed_timestamp_previous_valid){
9994                 // detect delayed sending of all BIS: tolerate up to 50% delayed event handling
9995                 uint32_t iso_interval_missed_threshold_ms = big->params->sdu_interval_us * 3 / 2000;
9996                 int32_t  num_completed_timestamp_delta_ms = btstack_time_delta(big->num_completed_timestamp_current_ms,
9997                                                                                big->num_completed_timestamp_previous_ms);
9998                 if (num_completed_timestamp_delta_ms > iso_interval_missed_threshold_ms){
9999                     // to catch up, skip packet on all BIS
10000                     uint8_t i;
10001                     for (i=0;i<big->num_bis;i++){
10002                         hci_iso_stream_t * iso_stream = hci_iso_stream_for_con_handle(big->bis_con_handles[i]);
10003                         if (iso_stream){
10004                             iso_stream->num_packets_to_skip++;
10005                         }
10006                     }
10007                 }
10008             }
10009             big->num_completed_timestamp_previous_valid = true;
10010             big->num_completed_timestamp_previous_ms = big->num_completed_timestamp_current_ms;
10011         }
10012 
10013         if (big->can_send_now_requested){
10014             // check if no outgoing iso packets pending and no can send now have to be emitted
10015             uint8_t i;
10016             bool can_send = true;
10017             uint8_t num_iso_queued_minimum = 0;
10018             for (i=0;i<big->num_bis;i++){
10019                 hci_iso_stream_t * iso_stream = hci_iso_stream_for_con_handle(big->bis_con_handles[i]);
10020                 if (iso_stream == NULL) continue;
10021                 // handle case where individual ISO packet was sent too late:
10022                 // for each additionally queued packet, a new one needs to get skipped
10023                 if (i==0){
10024                     num_iso_queued_minimum = iso_stream->num_packets_sent;
10025                 } else if (iso_stream->num_packets_sent > num_iso_queued_minimum){
10026                     uint8_t num_packets_to_skip = iso_stream->num_packets_sent - num_iso_queued_minimum;
10027                     iso_stream->num_packets_to_skip += num_packets_to_skip;
10028                     iso_stream->num_packets_sent    -= num_packets_to_skip;
10029                 }
10030                 // check if we can send now
10031                 if  ((iso_stream->num_packets_sent >= hci_stack->iso_packets_to_queue) || (iso_stream->emit_ready_to_send)){
10032                     can_send = false;
10033                     break;
10034                 }
10035             }
10036             if (can_send){
10037                 // propagate can send now to individual streams
10038                 big->can_send_now_requested = false;
10039                 for (i=0;i<big->num_bis;i++){
10040                     hci_iso_stream_t * iso_stream = hci_iso_stream_for_con_handle(big->bis_con_handles[i]);
10041                     iso_stream->emit_ready_to_send = true;
10042                 }
10043             }
10044         }
10045     }
10046 
10047     if (hci_stack->hci_packet_buffer_reserved) return;
10048 
10049     btstack_linked_list_iterator_init(&it, &hci_stack->le_audio_bigs);
10050     while (btstack_linked_list_iterator_has_next(&it)){
10051         le_audio_big_t * big = (le_audio_big_t *) btstack_linked_list_iterator_next(&it);
10052         // report bis ready
10053         uint8_t i;
10054         for (i=0;i<big->num_bis;i++){
10055             hci_iso_stream_t * iso_stream = hci_iso_stream_for_con_handle(big->bis_con_handles[i]);
10056             if ((iso_stream != NULL) && iso_stream->emit_ready_to_send){
10057                 iso_stream->emit_ready_to_send = false;
10058                 hci_emit_bis_can_send_now(big, i);
10059                 break;
10060             }
10061         }
10062     }
10063 
10064     // CIS
10065     btstack_linked_list_iterator_init(&it, &hci_stack->iso_streams);
10066     while (btstack_linked_list_iterator_has_next(&it)) {
10067         hci_iso_stream_t *iso_stream = (hci_iso_stream_t *) btstack_linked_list_iterator_next(&it);
10068         if ((iso_stream->can_send_now_requested) &&
10069             (iso_stream->num_packets_sent < hci_stack->iso_packets_to_queue)){
10070             iso_stream->can_send_now_requested = false;
10071             hci_emit_cis_can_send_now(iso_stream->cis_handle);
10072         }
10073     }
10074 }
10075 
10076 uint8_t gap_big_create(le_audio_big_t * storage, le_audio_big_params_t * big_params){
10077     if (hci_big_for_handle(big_params->big_handle) != NULL){
10078         return ERROR_CODE_ACL_CONNECTION_ALREADY_EXISTS;
10079     }
10080     if (big_params->num_bis == 0){
10081         return ERROR_CODE_INVALID_HCI_COMMAND_PARAMETERS;
10082     }
10083     if (big_params->num_bis > MAX_NR_BIS){
10084         return ERROR_CODE_INVALID_HCI_COMMAND_PARAMETERS;
10085     }
10086 
10087     // reserve ISO Streams
10088     uint8_t i;
10089     uint8_t status = ERROR_CODE_SUCCESS;
10090     for (i=0;i<big_params->num_bis;i++){
10091         hci_iso_stream_t * iso_stream = hci_iso_stream_create(HCI_ISO_TYPE_BIS, HCI_ISO_STREAM_STATE_REQUESTED, big_params->big_handle, i);
10092         if (iso_stream == NULL) {
10093             status = ERROR_CODE_MEMORY_CAPACITY_EXCEEDED;
10094             break;
10095         }
10096     }
10097 
10098     // free structs on error
10099     if (status != ERROR_CODE_SUCCESS){
10100         hci_iso_stream_finalize_by_type_and_group_id(HCI_ISO_TYPE_BIS, big_params->big_handle);
10101         return status;
10102     }
10103 
10104     le_audio_big_t * big = storage;
10105     big->big_handle = big_params->big_handle;
10106     big->params = big_params;
10107     big->state = LE_AUDIO_BIG_STATE_CREATE;
10108     big->num_bis = big_params->num_bis;
10109     btstack_linked_list_add(&hci_stack->le_audio_bigs, (btstack_linked_item_t *) big);
10110 
10111     hci_run();
10112 
10113     return ERROR_CODE_SUCCESS;
10114 }
10115 
10116 uint8_t gap_big_sync_create(le_audio_big_sync_t * storage, le_audio_big_sync_params_t * big_sync_params){
10117     if (hci_big_sync_for_handle(big_sync_params->big_handle) != NULL){
10118         return ERROR_CODE_ACL_CONNECTION_ALREADY_EXISTS;
10119     }
10120     if (big_sync_params->num_bis == 0){
10121         return ERROR_CODE_INVALID_HCI_COMMAND_PARAMETERS;
10122     }
10123     if (big_sync_params->num_bis > MAX_NR_BIS){
10124         return ERROR_CODE_INVALID_HCI_COMMAND_PARAMETERS;
10125     }
10126 
10127     le_audio_big_sync_t * big_sync = storage;
10128     big_sync->big_handle = big_sync_params->big_handle;
10129     big_sync->params = big_sync_params;
10130     big_sync->state = LE_AUDIO_BIG_STATE_CREATE;
10131     big_sync->num_bis = big_sync_params->num_bis;
10132     btstack_linked_list_add(&hci_stack->le_audio_big_syncs, (btstack_linked_item_t *) big_sync);
10133 
10134     hci_run();
10135 
10136     return ERROR_CODE_SUCCESS;
10137 }
10138 
10139 uint8_t gap_big_terminate(uint8_t big_handle){
10140     le_audio_big_t * big = hci_big_for_handle(big_handle);
10141     if (big == NULL){
10142         return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
10143     }
10144     switch (big->state){
10145         case LE_AUDIO_BIG_STATE_CREATE:
10146             btstack_linked_list_remove(&hci_stack->le_audio_bigs, (btstack_linked_item_t *) big);
10147             hci_emit_big_terminated(big);
10148             break;
10149         case LE_AUDIO_BIG_STATE_W4_SETUP_ISO_PATH:
10150             big->state = LE_AUDIO_BIG_STATE_W4_SETUP_ISO_PATH_THEN_TERMINATE;
10151             break;
10152         case LE_AUDIO_BIG_STATE_W4_ESTABLISHED:
10153         case LE_AUDIO_BIG_STATE_SETUP_ISO_PATH:
10154         case LE_AUDIO_BIG_STATE_ACTIVE:
10155             big->state = LE_AUDIO_BIG_STATE_TERMINATE;
10156             hci_run();
10157             break;
10158         default:
10159             return ERROR_CODE_COMMAND_DISALLOWED;
10160     }
10161     return ERROR_CODE_SUCCESS;
10162 }
10163 
10164 uint8_t gap_big_sync_terminate(uint8_t big_handle){
10165     le_audio_big_sync_t * big_sync = hci_big_sync_for_handle(big_handle);
10166     if (big_sync == NULL){
10167         return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
10168     }
10169     switch (big_sync->state){
10170         case LE_AUDIO_BIG_STATE_CREATE:
10171             btstack_linked_list_remove(&hci_stack->le_audio_big_syncs, (btstack_linked_item_t *) big_sync);
10172             hci_emit_big_sync_stopped(big_handle);
10173             break;
10174         case LE_AUDIO_BIG_STATE_W4_SETUP_ISO_PATH:
10175             big_sync->state = LE_AUDIO_BIG_STATE_W4_SETUP_ISO_PATH_THEN_TERMINATE;
10176             break;
10177         case LE_AUDIO_BIG_STATE_W4_ESTABLISHED:
10178         case LE_AUDIO_BIG_STATE_SETUP_ISO_PATH:
10179         case LE_AUDIO_BIG_STATE_ACTIVE:
10180             big_sync->state = LE_AUDIO_BIG_STATE_TERMINATE;
10181             hci_run();
10182             break;
10183         default:
10184             return ERROR_CODE_COMMAND_DISALLOWED;
10185     }
10186     return ERROR_CODE_SUCCESS;
10187 }
10188 
10189 uint8_t hci_request_bis_can_send_now_events(uint8_t big_handle){
10190     le_audio_big_t * big = hci_big_for_handle(big_handle);
10191     if (big == NULL){
10192         return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
10193     }
10194     if (big->state != LE_AUDIO_BIG_STATE_ACTIVE){
10195         return ERROR_CODE_COMMAND_DISALLOWED;
10196     }
10197     big->can_send_now_requested = true;
10198     hci_iso_notify_can_send_now();
10199     return ERROR_CODE_SUCCESS;
10200 }
10201 
10202 uint8_t hci_request_cis_can_send_now_events(hci_con_handle_t cis_con_handle){
10203     hci_iso_stream_t * iso_stream = hci_iso_stream_for_con_handle(cis_con_handle);
10204     if (iso_stream == NULL){
10205         return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
10206     }
10207     if ((iso_stream->iso_type != HCI_ISO_TYPE_CIS) && (iso_stream->state != HCI_ISO_STREAM_STATE_ESTABLISHED)) {
10208         return ERROR_CODE_COMMAND_DISALLOWED;
10209     }
10210     iso_stream->can_send_now_requested = true;
10211     hci_iso_notify_can_send_now();
10212     return ERROR_CODE_SUCCESS;
10213 }
10214 
10215 uint8_t gap_cig_create(le_audio_cig_t * storage, le_audio_cig_params_t * cig_params){
10216     if (hci_cig_for_id(cig_params->cig_id) != NULL){
10217         return ERROR_CODE_ACL_CONNECTION_ALREADY_EXISTS;
10218     }
10219     if (cig_params->num_cis == 0){
10220         return ERROR_CODE_INVALID_HCI_COMMAND_PARAMETERS;
10221     }
10222     if (cig_params->num_cis > MAX_NR_BIS){
10223         return ERROR_CODE_INVALID_HCI_COMMAND_PARAMETERS;
10224     }
10225 
10226     // reserve ISO Streams
10227     uint8_t i;
10228     uint8_t status = ERROR_CODE_SUCCESS;
10229     for (i=0;i<cig_params->num_cis;i++){
10230         hci_iso_stream_t * iso_stream = hci_iso_stream_create(HCI_ISO_TYPE_CIS,HCI_ISO_STREAM_STATE_REQUESTED, cig_params->cig_id, i);
10231         if (iso_stream == NULL) {
10232             status = ERROR_CODE_MEMORY_CAPACITY_EXCEEDED;
10233             break;
10234         }
10235     }
10236 
10237     // free structs on error
10238     if (status != ERROR_CODE_SUCCESS){
10239         hci_iso_stream_finalize_by_type_and_group_id(HCI_ISO_TYPE_CIS, cig_params->cig_id);
10240         return status;
10241     }
10242 
10243     le_audio_cig_t * cig = storage;
10244     cig->cig_id = cig_params->cig_id;
10245     cig->num_cis = cig_params->num_cis;
10246     cig->params = cig_params;
10247     cig->state = LE_AUDIO_CIG_STATE_CREATE;
10248     for (i=0;i<cig->num_cis;i++){
10249         cig->cis_con_handles[i] = HCI_CON_HANDLE_INVALID;
10250         cig->acl_con_handles[i] = HCI_CON_HANDLE_INVALID;
10251         cig->cis_setup_active[i] = false;
10252         cig->cis_established[i] = false;
10253     }
10254     btstack_linked_list_add(&hci_stack->le_audio_cigs, (btstack_linked_item_t *) cig);
10255 
10256     hci_run();
10257 
10258     return ERROR_CODE_SUCCESS;
10259 }
10260 
10261 uint8_t gap_cis_create(uint8_t cig_handle, hci_con_handle_t cis_con_handles [], hci_con_handle_t acl_con_handles []){
10262     le_audio_cig_t * cig = hci_cig_for_id(cig_handle);
10263     if (cig == NULL){
10264         return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
10265     }
10266 
10267     if (cig->state != LE_AUDIO_CIG_STATE_W4_CIS_REQUEST){
10268         return ERROR_CODE_COMMAND_DISALLOWED;
10269     }
10270 
10271     // store ACL Connection Handles
10272     uint8_t i;
10273     for (i=0;i<cig->num_cis;i++){
10274         // check that all con handles exist and store
10275         hci_con_handle_t cis_handle = cis_con_handles[i];
10276         if (cis_handle == HCI_CON_HANDLE_INVALID){
10277             return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
10278         }
10279         uint8_t j;
10280         bool found = false;
10281         for (j=0;j<cig->num_cis;j++){
10282             if (cig->cis_con_handles[j] == cis_handle){
10283                 cig->acl_con_handles[j] = acl_con_handles[j];
10284                 hci_iso_stream_t * iso_stream = hci_iso_stream_for_con_handle(cis_handle);
10285                 btstack_assert(iso_stream != NULL);
10286                 iso_stream->acl_handle = acl_con_handles[j];
10287                 found = true;
10288                 break;
10289             }
10290         }
10291         if (!found){
10292             return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
10293         }
10294     }
10295 
10296     cig->state = LE_AUDIO_CIG_STATE_CREATE_CIS;
10297     hci_run();
10298 
10299     return ERROR_CODE_SUCCESS;
10300 }
10301 
10302 static uint8_t hci_cis_accept_or_reject(hci_con_handle_t cis_handle, hci_iso_stream_state_t state){
10303     hci_iso_stream_t * iso_stream = hci_iso_stream_for_con_handle(cis_handle);
10304     if (iso_stream == NULL){
10305         // if we got a CIS Request but fail to allocate a hci_iso_stream_t object, we won't find it here
10306         return ERROR_CODE_MEMORY_CAPACITY_EXCEEDED;
10307     }
10308 
10309     // set next state and continue
10310     iso_stream->state = state;
10311     hci_run();
10312     return ERROR_CODE_SUCCESS;
10313 }
10314 
10315 uint8_t gap_cis_accept(hci_con_handle_t cis_con_handle){
10316     return hci_cis_accept_or_reject(cis_con_handle, HCI_ISO_STREAM_W2_ACCEPT);
10317 }
10318 
10319 uint8_t gap_cis_reject(hci_con_handle_t cis_con_handle){
10320     return hci_cis_accept_or_reject(cis_con_handle, HCI_ISO_STREAM_W2_REJECT);
10321 }
10322 
10323 
10324 #endif
10325 #endif /* ENABLE_BLE */
10326 
10327 #ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
10328 void hci_setup_test_connections_fuzz(void){
10329     hci_connection_t * conn;
10330 
10331     // default address: 66:55:44:33:00:01
10332     bd_addr_t addr = { 0x66, 0x55, 0x44, 0x33, 0x00, 0x00};
10333 
10334     // setup Controller info
10335     hci_stack->num_cmd_packets = 255;
10336     hci_stack->acl_packets_total_num = 255;
10337 
10338     // setup incoming Classic ACL connection with con handle 0x0001, 66:55:44:33:22:01
10339     addr[5] = 0x01;
10340     conn = create_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL, HCI_ROLE_SLAVE);
10341     conn->con_handle = addr[5];
10342     conn->state = RECEIVED_CONNECTION_REQUEST;
10343     conn->sm_connection.sm_role = HCI_ROLE_SLAVE;
10344 
10345     // setup incoming Classic SCO connection with con handle 0x0002
10346     addr[5] = 0x02;
10347     conn = create_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_SCO, HCI_ROLE_SLAVE);
10348     conn->con_handle = addr[5];
10349     conn->state = RECEIVED_CONNECTION_REQUEST;
10350     conn->sm_connection.sm_role = HCI_ROLE_SLAVE;
10351 
10352     // setup ready Classic ACL connection with con handle 0x0003
10353     addr[5] = 0x03;
10354     conn = create_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL, HCI_ROLE_SLAVE);
10355     conn->con_handle = addr[5];
10356     conn->state = OPEN;
10357     conn->sm_connection.sm_role = HCI_ROLE_SLAVE;
10358 
10359     // setup ready Classic SCO connection with con handle 0x0004
10360     addr[5] = 0x04;
10361     conn = create_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_SCO, HCI_ROLE_SLAVE);
10362     conn->con_handle = addr[5];
10363     conn->state = OPEN;
10364     conn->sm_connection.sm_role = HCI_ROLE_SLAVE;
10365 
10366     // setup ready LE ACL connection with con handle 0x005 and public address
10367     addr[5] = 0x05;
10368     conn = create_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_LE_PUBLIC, HCI_ROLE_SLAVE);
10369     conn->con_handle = addr[5];
10370     conn->state = OPEN;
10371     conn->sm_connection.sm_role = HCI_ROLE_SLAVE;
10372     conn->sm_connection.sm_connection_encrypted = 1;
10373 }
10374 
10375 void hci_free_connections_fuzz(void){
10376     btstack_linked_list_iterator_t it;
10377     btstack_linked_list_iterator_init(&it, &hci_stack->connections);
10378     while (btstack_linked_list_iterator_has_next(&it)){
10379         hci_connection_t * con = (hci_connection_t*) btstack_linked_list_iterator_next(&it);
10380         btstack_linked_list_iterator_remove(&it);
10381         btstack_memory_hci_connection_free(con);
10382     }
10383 }
10384 void hci_simulate_working_fuzz(void){
10385     hci_stack->le_scanning_param_update = false;
10386     hci_init_done();
10387     hci_stack->num_cmd_packets = 255;
10388 }
10389 #endif
10390