xref: /btstack/src/hci.c (revision 07fd2f3183d4c181979139149eefe08ee508a098)
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 MATTHIAS
24  * RINGWALD OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
25  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
26  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
27  * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
28  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
29  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
30  * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  *
33  * Please inquire about commercial licensing options at
34  * [email protected]
35  *
36  */
37 
38 #define BTSTACK_FILE__ "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 HAVE_PLATFORM_IPHONE_OS
57 #include "../port/ios/src/btstack_control_iphone.h"
58 #endif
59 
60 #ifdef ENABLE_BLE
61 #include "gap.h"
62 #endif
63 
64 #include <stdarg.h>
65 #include <string.h>
66 #include <stdio.h>
67 #include <inttypes.h>
68 
69 #include "btstack_debug.h"
70 #include "btstack_event.h"
71 #include "btstack_linked_list.h"
72 #include "btstack_memory.h"
73 #include "bluetooth_company_id.h"
74 #include "bluetooth_data_types.h"
75 #include "gap.h"
76 #include "hci.h"
77 #include "hci_cmd.h"
78 #include "hci_dump.h"
79 #include "ad_parser.h"
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 #define HCI_CONNECTION_TIMEOUT_MS 10000
97 #define HCI_RESET_RESEND_TIMEOUT_MS 200
98 
99 // Names are arbitrarily shortened to 32 bytes if not requested otherwise
100 #ifndef GAP_INQUIRY_MAX_NAME_LEN
101 #define GAP_INQUIRY_MAX_NAME_LEN 32
102 #endif
103 
104 // GAP inquiry state: 0 = off, 0x01 - 0x30 = requested duration, 0xfe = active, 0xff = stop requested
105 #define GAP_INQUIRY_DURATION_MIN 0x01
106 #define GAP_INQUIRY_DURATION_MAX 0x30
107 #define GAP_INQUIRY_STATE_ACTIVE 0x80
108 #define GAP_INQUIRY_STATE_IDLE 0
109 #define GAP_INQUIRY_STATE_W2_CANCEL 0x81
110 #define GAP_INQUIRY_STATE_W4_CANCELLED 0x82
111 
112 // GAP Remote Name Request
113 #define GAP_REMOTE_NAME_STATE_IDLE 0
114 #define GAP_REMOTE_NAME_STATE_W2_SEND 1
115 #define GAP_REMOTE_NAME_STATE_W4_COMPLETE 2
116 
117 // GAP Pairing
118 #define GAP_PAIRING_STATE_IDLE                       0
119 #define GAP_PAIRING_STATE_SEND_PIN                   1
120 #define GAP_PAIRING_STATE_SEND_PIN_NEGATIVE          2
121 #define GAP_PAIRING_STATE_SEND_PASSKEY               3
122 #define GAP_PAIRING_STATE_SEND_PASSKEY_NEGATIVE      4
123 #define GAP_PAIRING_STATE_SEND_CONFIRMATION          5
124 #define GAP_PAIRING_STATE_SEND_CONFIRMATION_NEGATIVE 6
125 
126 
127 // prototypes
128 #ifdef ENABLE_CLASSIC
129 static void hci_update_scan_enable(void);
130 static void hci_emit_discoverable_enabled(uint8_t enabled);
131 static int  hci_local_ssp_activated(void);
132 static int  hci_remote_ssp_supported(hci_con_handle_t con_handle);
133 static void hci_notify_if_sco_can_send_now(void);
134 static void hci_emit_connection_complete(bd_addr_t address, hci_con_handle_t con_handle, uint8_t status);
135 static gap_security_level_t gap_security_level_for_connection(hci_connection_t * connection);
136 static void hci_emit_security_level(hci_con_handle_t con_handle, gap_security_level_t level);
137 static void hci_connection_timeout_handler(btstack_timer_source_t *timer);
138 static void hci_connection_timestamp(hci_connection_t *connection);
139 static void hci_emit_l2cap_check_timeout(hci_connection_t *conn);
140 static void gap_inquiry_explode(uint8_t *packet, uint16_t size);
141 #endif
142 
143 static int  hci_power_control_on(void);
144 static void hci_power_control_off(void);
145 static void hci_state_reset(void);
146 static void hci_emit_transport_packet_sent(void);
147 static void hci_emit_disconnection_complete(hci_con_handle_t con_handle, uint8_t reason);
148 static void hci_emit_nr_connections_changed(void);
149 static void hci_emit_hci_open_failed(void);
150 static void hci_emit_dedicated_bonding_result(bd_addr_t address, uint8_t status);
151 static void hci_emit_event(uint8_t * event, uint16_t size, int dump);
152 static void hci_emit_acl_packet(uint8_t * packet, uint16_t size);
153 static void hci_run(void);
154 static int  hci_is_le_connection(hci_connection_t * connection);
155 static int  hci_number_free_acl_slots_for_connection_type( bd_addr_type_t address_type);
156 
157 #ifdef ENABLE_CLASSIC
158 static int hci_have_usb_transport(void);
159 #endif
160 
161 #ifdef ENABLE_BLE
162 #ifdef ENABLE_LE_CENTRAL
163 // called from test/ble_client/advertising_data_parser.c
164 void le_handle_advertisement_report(uint8_t *packet, uint16_t size);
165 static void hci_remove_from_whitelist(bd_addr_type_t address_type, bd_addr_t address);
166 static hci_connection_t * gap_get_outgoing_connection(void);
167 #endif
168 #endif
169 
170 // the STACK is here
171 #ifndef HAVE_MALLOC
172 static hci_stack_t   hci_stack_static;
173 #endif
174 static hci_stack_t * hci_stack = NULL;
175 
176 #ifdef ENABLE_CLASSIC
177 // default name
178 static const char * default_classic_name = "BTstack 00:00:00:00:00:00";
179 
180 // test helper
181 static uint8_t disable_l2cap_timeouts = 0;
182 #endif
183 
184 /**
185  * create connection for given address
186  *
187  * @return connection OR NULL, if no memory left
188  */
189 static hci_connection_t * create_connection_for_bd_addr_and_type(bd_addr_t addr, bd_addr_type_t addr_type){
190     log_info("create_connection_for_addr %s, type %x", bd_addr_to_str(addr), addr_type);
191     hci_connection_t * conn = btstack_memory_hci_connection_get();
192     if (!conn) return NULL;
193     bd_addr_copy(conn->address, addr);
194     conn->address_type = addr_type;
195     conn->con_handle = 0xffff;
196     conn->authentication_flags = AUTH_FLAGS_NONE;
197     conn->bonding_flags = 0;
198     conn->requested_security_level = LEVEL_0;
199 #ifdef ENABLE_CLASSIC
200     btstack_run_loop_set_timer_handler(&conn->timeout, hci_connection_timeout_handler);
201     btstack_run_loop_set_timer_context(&conn->timeout, conn);
202     hci_connection_timestamp(conn);
203 #endif
204     conn->acl_recombination_length = 0;
205     conn->acl_recombination_pos = 0;
206     conn->num_packets_sent = 0;
207 
208     conn->le_con_parameter_update_state = CON_PARAMETER_UPDATE_NONE;
209 #ifdef ENABLE_BLE
210     conn->le_phy_update_all_phys = 0xff;
211 #endif
212     btstack_linked_list_add(&hci_stack->connections, (btstack_linked_item_t *) conn);
213     return conn;
214 }
215 
216 
217 /**
218  * get le connection parameter range
219 *
220  * @return le connection parameter range struct
221  */
222 void gap_get_connection_parameter_range(le_connection_parameter_range_t * range){
223     *range = hci_stack->le_connection_parameter_range;
224 }
225 
226 /**
227  * set le connection parameter range
228  *
229  */
230 
231 void gap_set_connection_parameter_range(le_connection_parameter_range_t *range){
232     hci_stack->le_connection_parameter_range = *range;
233 }
234 
235 /**
236  * @brief Test if connection parameters are inside in existing rage
237  * @param conn_interval_min (unit: 1.25ms)
238  * @param conn_interval_max (unit: 1.25ms)
239  * @param conn_latency
240  * @param supervision_timeout (unit: 10ms)
241  * @returns 1 if included
242  */
243 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){
244     if (le_conn_interval_min < existing_range->le_conn_interval_min) return 0;
245     if (le_conn_interval_max > existing_range->le_conn_interval_max) return 0;
246 
247     if (le_conn_latency < existing_range->le_conn_latency_min) return 0;
248     if (le_conn_latency > existing_range->le_conn_latency_max) return 0;
249 
250     if (le_supervision_timeout < existing_range->le_supervision_timeout_min) return 0;
251     if (le_supervision_timeout > existing_range->le_supervision_timeout_max) return 0;
252 
253     return 1;
254 }
255 
256 /**
257  * @brief Set max number of connections in LE Peripheral role (if Bluetooth Controller supports it)
258  * @note: default: 1
259  * @param max_peripheral_connections
260  */
261 #ifdef ENABLE_LE_PERIPHERAL
262 void gap_set_max_number_peripheral_connections(int max_peripheral_connections){
263     hci_stack->le_max_number_peripheral_connections = max_peripheral_connections;
264 }
265 #endif
266 
267 /**
268  * get hci connections iterator
269  *
270  * @return hci connections iterator
271  */
272 
273 void hci_connections_get_iterator(btstack_linked_list_iterator_t *it){
274     btstack_linked_list_iterator_init(it, &hci_stack->connections);
275 }
276 
277 /**
278  * get connection for a given handle
279  *
280  * @return connection OR NULL, if not found
281  */
282 hci_connection_t * hci_connection_for_handle(hci_con_handle_t con_handle){
283     btstack_linked_list_iterator_t it;
284     btstack_linked_list_iterator_init(&it, &hci_stack->connections);
285     while (btstack_linked_list_iterator_has_next(&it)){
286         hci_connection_t * item = (hci_connection_t *) btstack_linked_list_iterator_next(&it);
287         if ( item->con_handle == con_handle ) {
288             return item;
289         }
290     }
291     return NULL;
292 }
293 
294 /**
295  * get connection for given address
296  *
297  * @return connection OR NULL, if not found
298  */
299 hci_connection_t * hci_connection_for_bd_addr_and_type(bd_addr_t  addr, bd_addr_type_t addr_type){
300     btstack_linked_list_iterator_t it;
301     btstack_linked_list_iterator_init(&it, &hci_stack->connections);
302     while (btstack_linked_list_iterator_has_next(&it)){
303         hci_connection_t * connection = (hci_connection_t *) btstack_linked_list_iterator_next(&it);
304         if (connection->address_type != addr_type)  continue;
305         if (memcmp(addr, connection->address, 6) != 0) continue;
306         return connection;
307     }
308     return NULL;
309 }
310 
311 inline static void connectionClearAuthenticationFlags(hci_connection_t * conn, hci_authentication_flags_t flags){
312     conn->authentication_flags = (hci_authentication_flags_t)(conn->authentication_flags & ~flags);
313 }
314 
315 inline static void connectionSetAuthenticationFlags(hci_connection_t * conn, hci_authentication_flags_t flags){
316     conn->authentication_flags = (hci_authentication_flags_t)(conn->authentication_flags | flags);
317 }
318 
319 #ifdef ENABLE_CLASSIC
320 
321 #ifdef ENABLE_SCO_OVER_HCI
322 static int hci_number_sco_connections(void){
323     int connections = 0;
324     btstack_linked_list_iterator_t it;
325     btstack_linked_list_iterator_init(&it, &hci_stack->connections);
326     while (btstack_linked_list_iterator_has_next(&it)){
327         hci_connection_t * connection = (hci_connection_t *) btstack_linked_list_iterator_next(&it);
328         if (connection->address_type != BD_ADDR_TYPE_SCO) continue;
329         connections++;
330     }
331     return connections;
332 }
333 #endif
334 
335 static void hci_connection_timeout_handler(btstack_timer_source_t *timer){
336     hci_connection_t * connection = (hci_connection_t *) btstack_run_loop_get_timer_context(timer);
337 #ifdef HAVE_EMBEDDED_TICK
338     if (btstack_run_loop_embedded_get_ticks() > connection->timestamp + btstack_run_loop_embedded_ticks_for_ms(HCI_CONNECTION_TIMEOUT_MS)){
339         // connections might be timed out
340         hci_emit_l2cap_check_timeout(connection);
341     }
342 #else
343     if (btstack_run_loop_get_time_ms() > (connection->timestamp + HCI_CONNECTION_TIMEOUT_MS)){
344         // connections might be timed out
345         hci_emit_l2cap_check_timeout(connection);
346     }
347 #endif
348 }
349 
350 static void hci_connection_timestamp(hci_connection_t *connection){
351 #ifdef HAVE_EMBEDDED_TICK
352     connection->timestamp = btstack_run_loop_embedded_get_ticks();
353 #else
354     connection->timestamp = btstack_run_loop_get_time_ms();
355 #endif
356 }
357 
358 /**
359  * add authentication flags and reset timer
360  * @note: assumes classic connection
361  * @note: bd_addr is passed in as litle endian uint8_t * as it is called from parsing packets
362  */
363 static void hci_add_connection_flags_for_flipped_bd_addr(uint8_t *bd_addr, hci_authentication_flags_t flags){
364     bd_addr_t addr;
365     reverse_bd_addr(bd_addr, addr);
366     hci_connection_t * conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
367     if (conn) {
368         connectionSetAuthenticationFlags(conn, flags);
369         hci_connection_timestamp(conn);
370     }
371 }
372 
373 int  hci_authentication_active_for_handle(hci_con_handle_t handle){
374     hci_connection_t * conn = hci_connection_for_handle(handle);
375     if (!conn) return 0;
376     if (conn->authentication_flags & LEGACY_PAIRING_ACTIVE) return 1;
377     if (conn->authentication_flags & SSP_PAIRING_ACTIVE) return 1;
378     return 0;
379 }
380 
381 void gap_drop_link_key_for_bd_addr(bd_addr_t addr){
382     if (!hci_stack->link_key_db) return;
383     log_info("gap_drop_link_key_for_bd_addr: %s", bd_addr_to_str(addr));
384     hci_stack->link_key_db->delete_link_key(addr);
385 }
386 
387 void gap_store_link_key_for_bd_addr(bd_addr_t addr, link_key_t link_key, link_key_type_t type){
388     if (!hci_stack->link_key_db) return;
389     log_info("gap_store_link_key_for_bd_addr: %s, type %u", bd_addr_to_str(addr), type);
390     hci_stack->link_key_db->put_link_key(addr, link_key, type);
391 }
392 
393 void gap_delete_all_link_keys(void){
394     bd_addr_t  addr;
395     link_key_t link_key;
396     link_key_type_t type;
397     btstack_link_key_iterator_t it;
398     int ok = gap_link_key_iterator_init(&it);
399     if (!ok) {
400         log_error("could not initialize iterator");
401         return;
402     }
403     while (gap_link_key_iterator_get_next(&it, addr, link_key, &type)){
404         gap_drop_link_key_for_bd_addr(addr);
405     }
406     gap_link_key_iterator_done(&it);
407 }
408 
409 int gap_link_key_iterator_init(btstack_link_key_iterator_t * it){
410     if (!hci_stack->link_key_db) return 0;
411     if (!hci_stack->link_key_db->iterator_init) return 0;
412     return hci_stack->link_key_db->iterator_init(it);
413 }
414 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){
415     if (!hci_stack->link_key_db) return 0;
416     return hci_stack->link_key_db->iterator_get_next(it, bd_addr, link_key, type);
417 }
418 void gap_link_key_iterator_done(btstack_link_key_iterator_t * it){
419     if (!hci_stack->link_key_db) return;
420     hci_stack->link_key_db->iterator_done(it);
421 }
422 #endif
423 
424 static int hci_is_le_connection(hci_connection_t * connection){
425     switch (connection->address_type){
426         case BD_ADDR_TYPE_LE_PUBLIC:
427         case BD_ADDR_TYPE_LE_RANDOM:
428         case BD_ADDR_TYPE_LE_PRIVAT_FALLBACK_PUBLIC:
429         case BD_ADDR_TYPE_LE_PRIVAT_FALLBACK_RANDOM:
430             return 1;
431         default:
432             return 0;
433     }
434 }
435 
436 /**
437  * count connections
438  */
439 static int nr_hci_connections(void){
440     int count = 0;
441     btstack_linked_item_t *it;
442     for (it = (btstack_linked_item_t *) hci_stack->connections; it != NULL ; it = it->next){
443         count++;
444     }
445     return count;
446 }
447 
448 static int hci_number_free_acl_slots_for_connection_type(bd_addr_type_t address_type){
449 
450     unsigned int num_packets_sent_classic = 0;
451     unsigned int num_packets_sent_le = 0;
452 
453     btstack_linked_item_t *it;
454     for (it = (btstack_linked_item_t *) hci_stack->connections; it != NULL; it = it->next){
455         hci_connection_t * connection = (hci_connection_t *) it;
456         if (hci_is_le_connection(connection)){
457             num_packets_sent_le += connection->num_packets_sent;
458         }
459         if (connection->address_type == BD_ADDR_TYPE_ACL){
460             num_packets_sent_classic += connection->num_packets_sent;
461         }
462     }
463     log_debug("ACL classic buffers: %u used of %u", num_packets_sent_classic, hci_stack->acl_packets_total_num);
464     int free_slots_classic = hci_stack->acl_packets_total_num - num_packets_sent_classic;
465     int free_slots_le = 0;
466 
467     if (free_slots_classic < 0){
468         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);
469         return 0;
470     }
471 
472     if (hci_stack->le_acl_packets_total_num){
473         // if we have LE slots, they are used
474         free_slots_le = hci_stack->le_acl_packets_total_num - num_packets_sent_le;
475         if (free_slots_le < 0){
476             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);
477             return 0;
478         }
479     } else {
480         // otherwise, classic slots are used for LE, too
481         free_slots_classic -= num_packets_sent_le;
482         if (free_slots_classic < 0){
483             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);
484             return 0;
485         }
486     }
487 
488     switch (address_type){
489         case BD_ADDR_TYPE_UNKNOWN:
490             log_error("hci_number_free_acl_slots: unknown address type");
491             return 0;
492 
493         case BD_ADDR_TYPE_ACL:
494             return free_slots_classic;
495 
496         default:
497            if (hci_stack->le_acl_packets_total_num){
498                return free_slots_le;
499            }
500            return free_slots_classic;
501     }
502 }
503 
504 int hci_number_free_acl_slots_for_handle(hci_con_handle_t con_handle){
505     // get connection type
506     hci_connection_t * connection = hci_connection_for_handle(con_handle);
507     if (!connection){
508         log_error("hci_number_free_acl_slots: handle 0x%04x not in connection list", con_handle);
509         return 0;
510     }
511     return hci_number_free_acl_slots_for_connection_type(connection->address_type);
512 }
513 
514 #ifdef ENABLE_CLASSIC
515 static int hci_number_free_sco_slots(void){
516     unsigned int num_sco_packets_sent  = 0;
517     btstack_linked_item_t *it;
518     if (hci_stack->synchronous_flow_control_enabled){
519         // explicit flow control
520         for (it = (btstack_linked_item_t *) hci_stack->connections; it ; it = it->next){
521             hci_connection_t * connection = (hci_connection_t *) it;
522             if (connection->address_type != BD_ADDR_TYPE_SCO) continue;
523             num_sco_packets_sent += connection->num_packets_sent;
524         }
525         if (num_sco_packets_sent > hci_stack->sco_packets_total_num){
526             log_info("hci_number_free_sco_slots:packets (%u) > total packets (%u)", num_sco_packets_sent, hci_stack->sco_packets_total_num);
527             return 0;
528         }
529         return hci_stack->sco_packets_total_num - num_sco_packets_sent;
530     } else {
531         // implicit flow control -- TODO
532         int num_ready = 0;
533         for (it = (btstack_linked_item_t *) hci_stack->connections; it ; it = it->next){
534             hci_connection_t * connection = (hci_connection_t *) it;
535             if (connection->address_type != BD_ADDR_TYPE_SCO) continue;
536             if (connection->sco_tx_ready == 0) continue;
537             num_ready++;
538         }
539         return num_ready;
540     }
541 }
542 #endif
543 
544 // only used to send HCI Host Number Completed Packets
545 static int hci_can_send_comand_packet_transport(void){
546     if (hci_stack->hci_packet_buffer_reserved) return 0;
547 
548     // check for async hci transport implementations
549     if (hci_stack->hci_transport->can_send_packet_now){
550         if (!hci_stack->hci_transport->can_send_packet_now(HCI_COMMAND_DATA_PACKET)){
551             return 0;
552         }
553     }
554     return 1;
555 }
556 
557 // new functions replacing hci_can_send_packet_now[_using_packet_buffer]
558 int hci_can_send_command_packet_now(void){
559     if (hci_can_send_comand_packet_transport() == 0) return 0;
560     return hci_stack->num_cmd_packets > 0;
561 }
562 
563 static int hci_transport_can_send_prepared_packet_now(uint8_t packet_type){
564     // check for async hci transport implementations
565     if (!hci_stack->hci_transport->can_send_packet_now) return 1;
566     return hci_stack->hci_transport->can_send_packet_now(packet_type);
567 }
568 
569 static int hci_can_send_prepared_acl_packet_for_address_type(bd_addr_type_t address_type){
570     if (!hci_transport_can_send_prepared_packet_now(HCI_ACL_DATA_PACKET)) return 0;
571     return hci_number_free_acl_slots_for_connection_type(address_type) > 0;
572 }
573 
574 int hci_can_send_acl_le_packet_now(void){
575     if (hci_stack->hci_packet_buffer_reserved) return 0;
576     return hci_can_send_prepared_acl_packet_for_address_type(BD_ADDR_TYPE_LE_PUBLIC);
577 }
578 
579 int hci_can_send_prepared_acl_packet_now(hci_con_handle_t con_handle) {
580     if (!hci_transport_can_send_prepared_packet_now(HCI_ACL_DATA_PACKET)) return 0;
581     return hci_number_free_acl_slots_for_handle(con_handle) > 0;
582 }
583 
584 int hci_can_send_acl_packet_now(hci_con_handle_t con_handle){
585     if (hci_stack->hci_packet_buffer_reserved) return 0;
586     return hci_can_send_prepared_acl_packet_now(con_handle);
587 }
588 
589 #ifdef ENABLE_CLASSIC
590 int hci_can_send_acl_classic_packet_now(void){
591     if (hci_stack->hci_packet_buffer_reserved) return 0;
592     return hci_can_send_prepared_acl_packet_for_address_type(BD_ADDR_TYPE_ACL);
593 }
594 
595 int hci_can_send_prepared_sco_packet_now(void){
596     if (!hci_transport_can_send_prepared_packet_now(HCI_SCO_DATA_PACKET)) return 0;
597     if (hci_have_usb_transport()){
598         return hci_stack->sco_can_send_now;
599     } else {
600         return hci_number_free_sco_slots() > 0;
601     }
602 }
603 
604 int hci_can_send_sco_packet_now(void){
605     if (hci_stack->hci_packet_buffer_reserved) return 0;
606     return hci_can_send_prepared_sco_packet_now();
607 }
608 
609 void hci_request_sco_can_send_now_event(void){
610     hci_stack->sco_waiting_for_can_send_now = 1;
611     hci_notify_if_sco_can_send_now();
612 }
613 #endif
614 
615 // used for internal checks in l2cap.c
616 int hci_is_packet_buffer_reserved(void){
617     return hci_stack->hci_packet_buffer_reserved;
618 }
619 
620 // reserves outgoing packet buffer. @returns 1 if successful
621 int hci_reserve_packet_buffer(void){
622     if (hci_stack->hci_packet_buffer_reserved) {
623         log_error("hci_reserve_packet_buffer called but buffer already reserved");
624         return 0;
625     }
626     hci_stack->hci_packet_buffer_reserved = 1;
627     return 1;
628 }
629 
630 void hci_release_packet_buffer(void){
631     hci_stack->hci_packet_buffer_reserved = 0;
632 }
633 
634 // assumption: synchronous implementations don't provide can_send_packet_now as they don't keep the buffer after the call
635 static int hci_transport_synchronous(void){
636     return hci_stack->hci_transport->can_send_packet_now == NULL;
637 }
638 
639 static int hci_send_acl_packet_fragments(hci_connection_t *connection){
640 
641     // 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);
642 
643     // max ACL data packet length depends on connection type (LE vs. Classic) and available buffers
644     uint16_t max_acl_data_packet_length = hci_stack->acl_data_packet_length;
645     if (hci_is_le_connection(connection) && (hci_stack->le_data_packets_length > 0)){
646         max_acl_data_packet_length = hci_stack->le_data_packets_length;
647     }
648 
649     // testing: reduce buffer to minimum
650     // max_acl_data_packet_length = 52;
651 
652     log_debug("hci_send_acl_packet_fragments entered");
653 
654     int err;
655     // multiple packets could be send on a synchronous HCI transport
656     while (true){
657 
658         log_debug("hci_send_acl_packet_fragments loop entered");
659 
660         // get current data
661         const uint16_t acl_header_pos = hci_stack->acl_fragmentation_pos - 4;
662         int current_acl_data_packet_length = hci_stack->acl_fragmentation_total_size - hci_stack->acl_fragmentation_pos;
663         int more_fragments = 0;
664 
665         // if ACL packet is larger than Bluetooth packet buffer, only send max_acl_data_packet_length
666         if (current_acl_data_packet_length > max_acl_data_packet_length){
667             more_fragments = 1;
668             current_acl_data_packet_length = max_acl_data_packet_length;
669         }
670 
671         // copy handle_and_flags if not first fragment and update packet boundary flags to be 01 (continuing fragmnent)
672         if (acl_header_pos > 0){
673             uint16_t handle_and_flags = little_endian_read_16(hci_stack->hci_packet_buffer, 0);
674             handle_and_flags = (handle_and_flags & 0xcfff) | (1 << 12);
675             little_endian_store_16(hci_stack->hci_packet_buffer, acl_header_pos, handle_and_flags);
676         }
677 
678         // update header len
679         little_endian_store_16(hci_stack->hci_packet_buffer, acl_header_pos + 2, current_acl_data_packet_length);
680 
681         // count packet
682         connection->num_packets_sent++;
683         log_debug("hci_send_acl_packet_fragments loop before send (more fragments %d)", more_fragments);
684 
685         // update state for next fragment (if any) as "transport done" might be sent during send_packet already
686         if (more_fragments){
687             // update start of next fragment to send
688             hci_stack->acl_fragmentation_pos += current_acl_data_packet_length;
689         } else {
690             // done
691             hci_stack->acl_fragmentation_pos = 0;
692             hci_stack->acl_fragmentation_total_size = 0;
693         }
694 
695         // send packet
696         uint8_t * packet = &hci_stack->hci_packet_buffer[acl_header_pos];
697         const int size = current_acl_data_packet_length + 4;
698         hci_dump_packet(HCI_ACL_DATA_PACKET, 0, packet, size);
699         hci_stack->acl_fragmentation_tx_active = 1;
700         err = hci_stack->hci_transport->send_packet(HCI_ACL_DATA_PACKET, packet, size);
701 
702         log_debug("hci_send_acl_packet_fragments loop after send (more fragments %d)", more_fragments);
703 
704         // done yet?
705         if (!more_fragments) break;
706 
707         // can send more?
708         if (!hci_can_send_prepared_acl_packet_now(connection->con_handle)) return err;
709     }
710 
711     log_debug("hci_send_acl_packet_fragments loop over");
712 
713     // release buffer now for synchronous transport
714     if (hci_transport_synchronous()){
715         hci_stack->acl_fragmentation_tx_active = 0;
716         hci_release_packet_buffer();
717         hci_emit_transport_packet_sent();
718     }
719 
720     return err;
721 }
722 
723 // pre: caller has reserved the packet buffer
724 int hci_send_acl_packet_buffer(int size){
725 
726     // log_info("hci_send_acl_packet_buffer size %u", size);
727 
728     if (!hci_stack->hci_packet_buffer_reserved) {
729         log_error("hci_send_acl_packet_buffer called without reserving packet buffer");
730         return 0;
731     }
732 
733     uint8_t * packet = hci_stack->hci_packet_buffer;
734     hci_con_handle_t con_handle = READ_ACL_CONNECTION_HANDLE(packet);
735 
736     // check for free places on Bluetooth module
737     if (!hci_can_send_prepared_acl_packet_now(con_handle)) {
738         log_error("hci_send_acl_packet_buffer called but no free ACL buffers on controller");
739         hci_release_packet_buffer();
740         hci_emit_transport_packet_sent();
741         return BTSTACK_ACL_BUFFERS_FULL;
742     }
743 
744     hci_connection_t *connection = hci_connection_for_handle( con_handle);
745     if (!connection) {
746         log_error("hci_send_acl_packet_buffer called but no connection for handle 0x%04x", con_handle);
747         hci_release_packet_buffer();
748         hci_emit_transport_packet_sent();
749         return 0;
750     }
751 
752 #ifdef ENABLE_CLASSIC
753     hci_connection_timestamp(connection);
754 #endif
755 
756     // hci_dump_packet( HCI_ACL_DATA_PACKET, 0, packet, size);
757 
758     // setup data
759     hci_stack->acl_fragmentation_total_size = size;
760     hci_stack->acl_fragmentation_pos = 4;   // start of L2CAP packet
761 
762     return hci_send_acl_packet_fragments(connection);
763 }
764 
765 #ifdef ENABLE_CLASSIC
766 // pre: caller has reserved the packet buffer
767 int hci_send_sco_packet_buffer(int size){
768 
769     // log_info("hci_send_acl_packet_buffer size %u", size);
770 
771     if (!hci_stack->hci_packet_buffer_reserved) {
772         log_error("hci_send_acl_packet_buffer called without reserving packet buffer");
773         return 0;
774     }
775 
776     uint8_t * packet = hci_stack->hci_packet_buffer;
777 
778     // skip checks in loopback mode
779     if (!hci_stack->loopback_mode){
780         hci_con_handle_t con_handle = READ_ACL_CONNECTION_HANDLE(packet);   // same for ACL and SCO
781 
782         // check for free places on Bluetooth module
783         if (!hci_can_send_prepared_sco_packet_now()) {
784             log_error("hci_send_sco_packet_buffer called but no free SCO buffers on controller");
785             hci_release_packet_buffer();
786             hci_emit_transport_packet_sent();
787             return BTSTACK_ACL_BUFFERS_FULL;
788         }
789 
790         // track send packet in connection struct
791         hci_connection_t *connection = hci_connection_for_handle( con_handle);
792         if (!connection) {
793             log_error("hci_send_sco_packet_buffer called but no connection for handle 0x%04x", con_handle);
794             hci_release_packet_buffer();
795             hci_emit_transport_packet_sent();
796             return 0;
797         }
798 
799         if (hci_have_usb_transport()){
800             // token used
801             hci_stack->sco_can_send_now = 0;
802         } else {
803             if (hci_stack->synchronous_flow_control_enabled){
804                 connection->num_packets_sent++;
805             } else {
806                 connection->sco_tx_ready--;
807             }
808         }
809     }
810 
811     hci_dump_packet( HCI_SCO_DATA_PACKET, 0, packet, size);
812     int err = hci_stack->hci_transport->send_packet(HCI_SCO_DATA_PACKET, packet, size);
813 
814     if (hci_transport_synchronous()){
815         hci_release_packet_buffer();
816         hci_emit_transport_packet_sent();
817     }
818 
819     return err;
820 }
821 #endif
822 
823 static void acl_handler(uint8_t *packet, int size){
824 
825     // log_info("acl_handler: size %u", size);
826 
827     // get info
828     hci_con_handle_t con_handle = READ_ACL_CONNECTION_HANDLE(packet);
829     hci_connection_t *conn      = hci_connection_for_handle(con_handle);
830     uint8_t  acl_flags          = READ_ACL_FLAGS(packet);
831     uint16_t acl_length         = READ_ACL_LENGTH(packet);
832 
833     // ignore non-registered handle
834     if (!conn){
835         log_error( "hci.c: acl_handler called with non-registered handle %u!" , con_handle);
836         return;
837     }
838 
839     // assert packet is complete
840     if ((acl_length + 4) != size){
841         log_error("hci.c: acl_handler called with ACL packet of wrong size %d, expected %u => dropping packet", size, acl_length + 4);
842         return;
843     }
844 
845 #ifdef ENABLE_CLASSIC
846     // update idle timestamp
847     hci_connection_timestamp(conn);
848 #endif
849 
850 #ifdef ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL
851     hci_stack->host_completed_packets = 1;
852     conn->num_packets_completed++;
853 #endif
854 
855     // handle different packet types
856     switch (acl_flags & 0x03) {
857 
858         case 0x01: // continuation fragment
859 
860             // sanity checks
861             if (conn->acl_recombination_pos == 0) {
862                 log_error( "ACL Cont Fragment but no first fragment for handle 0x%02x", con_handle);
863                 return;
864             }
865             if ((conn->acl_recombination_pos + acl_length) > (4 + HCI_ACL_BUFFER_SIZE)){
866                 log_error( "ACL Cont Fragment to large: combined packet %u > buffer size %u for handle 0x%02x",
867                     conn->acl_recombination_pos + acl_length, 4 + HCI_ACL_BUFFER_SIZE, con_handle);
868                 conn->acl_recombination_pos = 0;
869                 return;
870             }
871 
872             // append fragment payload (header already stored)
873             (void)memcpy(&conn->acl_recombination_buffer[HCI_INCOMING_PRE_BUFFER_SIZE + conn->acl_recombination_pos],
874                          &packet[4], acl_length);
875             conn->acl_recombination_pos += acl_length;
876 
877             // log_error( "ACL Cont Fragment: acl_len %u, combined_len %u, l2cap_len %u", acl_length,
878             //        conn->acl_recombination_pos, conn->acl_recombination_length);
879 
880             // forward complete L2CAP packet if complete.
881             if (conn->acl_recombination_pos >= (conn->acl_recombination_length + 4 + 4)){ // pos already incl. ACL header
882                 hci_emit_acl_packet(&conn->acl_recombination_buffer[HCI_INCOMING_PRE_BUFFER_SIZE], conn->acl_recombination_pos);
883                 // reset recombination buffer
884                 conn->acl_recombination_length = 0;
885                 conn->acl_recombination_pos = 0;
886             }
887             break;
888 
889         case 0x02: { // first fragment
890 
891             // sanity check
892             if (conn->acl_recombination_pos) {
893                 log_error( "ACL First Fragment but data in buffer for handle 0x%02x, dropping stale fragments", con_handle);
894                 conn->acl_recombination_pos = 0;
895             }
896 
897             // peek into L2CAP packet!
898             uint16_t l2cap_length = READ_L2CAP_LENGTH( packet );
899 
900             // log_info( "ACL First Fragment: acl_len %u, l2cap_len %u", acl_length, l2cap_length);
901 
902             // compare fragment size to L2CAP packet size
903             if (acl_length >= (l2cap_length + 4)){
904                 // forward fragment as L2CAP packet
905                 hci_emit_acl_packet(packet, acl_length + 4);
906             } else {
907 
908                 if (acl_length > HCI_ACL_BUFFER_SIZE){
909                     log_error( "ACL First Fragment to large: fragment %u > buffer size %u for handle 0x%02x",
910                         4 + acl_length, 4 + HCI_ACL_BUFFER_SIZE, con_handle);
911                     return;
912                 }
913 
914                 // store first fragment and tweak acl length for complete package
915                 (void)memcpy(&conn->acl_recombination_buffer[HCI_INCOMING_PRE_BUFFER_SIZE],
916                              packet, acl_length + 4);
917                 conn->acl_recombination_pos    = acl_length + 4;
918                 conn->acl_recombination_length = l2cap_length;
919                 little_endian_store_16(conn->acl_recombination_buffer, HCI_INCOMING_PRE_BUFFER_SIZE + 2, l2cap_length +4);
920             }
921             break;
922 
923         }
924         default:
925             log_error( "hci.c: acl_handler called with invalid packet boundary flags %u", acl_flags & 0x03);
926             return;
927     }
928 
929     // execute main loop
930     hci_run();
931 }
932 
933 static void hci_shutdown_connection(hci_connection_t *conn){
934     log_info("Connection closed: handle 0x%x, %s", conn->con_handle, bd_addr_to_str(conn->address));
935 
936 #ifdef ENABLE_CLASSIC
937 #ifdef ENABLE_SCO_OVER_HCI
938     int addr_type = conn->address_type;
939 #endif
940 #endif
941 
942     btstack_run_loop_remove_timer(&conn->timeout);
943 
944     btstack_linked_list_remove(&hci_stack->connections, (btstack_linked_item_t *) conn);
945     btstack_memory_hci_connection_free( conn );
946 
947     // now it's gone
948     hci_emit_nr_connections_changed();
949 
950 #ifdef ENABLE_CLASSIC
951 #ifdef ENABLE_SCO_OVER_HCI
952     // update SCO
953     if (addr_type == BD_ADDR_TYPE_SCO && hci_stack->hci_transport && hci_stack->hci_transport->set_sco_config){
954         hci_stack->hci_transport->set_sco_config(hci_stack->sco_voice_setting_active, hci_number_sco_connections());
955     }
956 #endif
957 #endif
958 }
959 
960 #ifdef ENABLE_CLASSIC
961 
962 static const uint16_t packet_type_sizes[] = {
963     0, HCI_ACL_2DH1_SIZE, HCI_ACL_3DH1_SIZE, HCI_ACL_DM1_SIZE,
964     HCI_ACL_DH1_SIZE, 0, 0, 0,
965     HCI_ACL_2DH3_SIZE, HCI_ACL_3DH3_SIZE, HCI_ACL_DM3_SIZE, HCI_ACL_DH3_SIZE,
966     HCI_ACL_2DH5_SIZE, HCI_ACL_3DH5_SIZE, HCI_ACL_DM5_SIZE, HCI_ACL_DH5_SIZE
967 };
968 static const uint8_t  packet_type_feature_requirement_bit[] = {
969      0, // 3 slot packets
970      1, // 5 slot packets
971     25, // EDR 2 mpbs
972     26, // EDR 3 mbps
973     39, // 3 slot EDR packts
974     40, // 5 slot EDR packet
975 };
976 static const uint16_t packet_type_feature_packet_mask[] = {
977     0x0f00, // 3 slot packets
978     0xf000, // 5 slot packets
979     0x1102, // EDR 2 mpbs
980     0x2204, // EDR 3 mbps
981     0x0300, // 3 slot EDR packts
982     0x3000, // 5 slot EDR packet
983 };
984 
985 static uint16_t hci_acl_packet_types_for_buffer_size_and_local_features(uint16_t buffer_size, uint8_t * local_supported_features){
986     // enable packet types based on size
987     uint16_t packet_types = 0;
988     unsigned int i;
989     for (i=0;i<16;i++){
990         if (packet_type_sizes[i] == 0) continue;
991         if (packet_type_sizes[i] <= buffer_size){
992             packet_types |= 1 << i;
993         }
994     }
995     // disable packet types due to missing local supported features
996     for (i=0;i<sizeof(packet_type_feature_requirement_bit);i++){
997         unsigned int bit_idx = packet_type_feature_requirement_bit[i];
998         int feature_set = (local_supported_features[bit_idx >> 3] & (1<<(bit_idx & 7))) != 0;
999         if (feature_set) continue;
1000         log_info("Features bit %02u is not set, removing packet types 0x%04x", bit_idx, packet_type_feature_packet_mask[i]);
1001         packet_types &= ~packet_type_feature_packet_mask[i];
1002     }
1003     // flip bits for "may not be used"
1004     packet_types ^= 0x3306;
1005     return packet_types;
1006 }
1007 
1008 uint16_t hci_usable_acl_packet_types(void){
1009     return hci_stack->packet_types;
1010 }
1011 #endif
1012 
1013 uint8_t* hci_get_outgoing_packet_buffer(void){
1014     // hci packet buffer is >= acl data packet length
1015     return hci_stack->hci_packet_buffer;
1016 }
1017 
1018 uint16_t hci_max_acl_data_packet_length(void){
1019     return hci_stack->acl_data_packet_length;
1020 }
1021 
1022 #ifdef ENABLE_CLASSIC
1023 int hci_extended_sco_link_supported(void){
1024     // No. 31, byte 3, bit 7
1025     return (hci_stack->local_supported_features[3] & (1 << 7)) != 0;
1026 }
1027 #endif
1028 
1029 int hci_non_flushable_packet_boundary_flag_supported(void){
1030     // No. 54, byte 6, bit 6
1031     return (hci_stack->local_supported_features[6] & (1 << 6)) != 0;
1032 }
1033 
1034 static int gap_ssp_supported(void){
1035     // No. 51, byte 6, bit 3
1036     return (hci_stack->local_supported_features[6] & (1 << 3)) != 0;
1037 }
1038 
1039 static int hci_classic_supported(void){
1040 #ifdef ENABLE_CLASSIC
1041     // No. 37, byte 4, bit 5, = No BR/EDR Support
1042     return (hci_stack->local_supported_features[4] & (1 << 5)) == 0;
1043 #else
1044     return 0;
1045 #endif
1046 }
1047 
1048 static int hci_le_supported(void){
1049 #ifdef ENABLE_BLE
1050     // No. 37, byte 4, bit 6 = LE Supported (Controller)
1051     return (hci_stack->local_supported_features[4] & (1 << 6)) != 0;
1052 #else
1053     return 0;
1054 #endif
1055 }
1056 
1057 #ifdef ENABLE_BLE
1058 
1059 /**
1060  * @brief Get addr type and address used for LE in Advertisements, Scan Responses,
1061  */
1062 void gap_le_get_own_address(uint8_t * addr_type, bd_addr_t addr){
1063     *addr_type = hci_stack->le_own_addr_type;
1064     if (hci_stack->le_own_addr_type){
1065         (void)memcpy(addr, hci_stack->le_random_address, 6);
1066     } else {
1067         (void)memcpy(addr, hci_stack->local_bd_addr, 6);
1068     }
1069 }
1070 
1071 #ifdef ENABLE_LE_CENTRAL
1072 void le_handle_advertisement_report(uint8_t *packet, uint16_t size){
1073 
1074     int offset = 3;
1075     int num_reports = packet[offset];
1076     offset += 1;
1077 
1078     int i;
1079     // log_info("HCI: handle adv report with num reports: %d", num_reports);
1080     uint8_t event[12 + LE_ADVERTISING_DATA_SIZE]; // use upper bound to avoid var size automatic var
1081     for (i=0; (i<num_reports) && (offset < size);i++){
1082         // sanity checks on data_length:
1083         uint8_t data_length = packet[offset + 8];
1084         if (data_length > LE_ADVERTISING_DATA_SIZE) return;
1085         if ((offset + 9 + data_length + 1) > size)    return;
1086         // setup event
1087         uint8_t event_size = 10 + data_length;
1088         int pos = 0;
1089         event[pos++] = GAP_EVENT_ADVERTISING_REPORT;
1090         event[pos++] = event_size;
1091         (void)memcpy(&event[pos], &packet[offset], 1 + 1 + 6); // event type + address type + address
1092         offset += 8;
1093         pos += 8;
1094         event[pos++] = packet[offset + 1 + data_length]; // rssi
1095         event[pos++] = data_length;
1096         offset++;
1097         (void)memcpy(&event[pos], &packet[offset], data_length);
1098         pos +=    data_length;
1099         offset += data_length + 1; // rssi
1100         hci_emit_event(event, pos, 1);
1101     }
1102 }
1103 #endif
1104 #endif
1105 
1106 #ifdef ENABLE_BLE
1107 #ifdef ENABLE_LE_PERIPHERAL
1108 static void hci_reenable_advertisements_if_needed(void){
1109     if (!hci_stack->le_advertisements_active && hci_stack->le_advertisements_enabled){
1110         // get number of active le slave connections
1111         int num_slave_connections = 0;
1112         btstack_linked_list_iterator_t it;
1113         btstack_linked_list_iterator_init(&it, &hci_stack->connections);
1114         while (btstack_linked_list_iterator_has_next(&it)){
1115             hci_connection_t * con = (hci_connection_t*) btstack_linked_list_iterator_next(&it);
1116             log_info("state %u, role %u, le_con %u", con->state, con->role, hci_is_le_connection(con));
1117             if (con->state != OPEN) continue;
1118             if (con->role  != HCI_ROLE_SLAVE) continue;
1119             if (!hci_is_le_connection(con)) continue;
1120             num_slave_connections++;
1121         }
1122         log_info("Num LE Peripheral roles: %u of %u", num_slave_connections, hci_stack->le_max_number_peripheral_connections);
1123         if (num_slave_connections < hci_stack->le_max_number_peripheral_connections){
1124             hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_ENABLE;
1125         }
1126     }
1127 }
1128 #endif
1129 #endif
1130 
1131 #if !defined(HAVE_PLATFORM_IPHONE_OS) && !defined (HAVE_HOST_CONTROLLER_API)
1132 
1133 static uint32_t hci_transport_uart_get_main_baud_rate(void){
1134     if (!hci_stack->config) return 0;
1135     uint32_t baud_rate = ((hci_transport_config_uart_t *)hci_stack->config)->baudrate_main;
1136     // Limit baud rate for Broadcom chipsets to 3 mbps
1137     if ((hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_BROADCOM_CORPORATION) && (baud_rate > 3000000)){
1138         baud_rate = 3000000;
1139     }
1140     return baud_rate;
1141 }
1142 
1143 static void hci_initialization_timeout_handler(btstack_timer_source_t * ds){
1144     UNUSED(ds);
1145 
1146     switch (hci_stack->substate){
1147         case HCI_INIT_W4_SEND_RESET:
1148             log_info("Resend HCI Reset");
1149             hci_stack->substate = HCI_INIT_SEND_RESET;
1150             hci_stack->num_cmd_packets = 1;
1151             hci_run();
1152             break;
1153         case HCI_INIT_W4_CUSTOM_INIT_CSR_WARM_BOOT_LINK_RESET:
1154             log_info("Resend HCI Reset - CSR Warm Boot with Link Reset");
1155             if (hci_stack->hci_transport->reset_link){
1156                 hci_stack->hci_transport->reset_link();
1157             }
1158 
1159             /* fall through */
1160 
1161         case HCI_INIT_W4_CUSTOM_INIT_CSR_WARM_BOOT:
1162             log_info("Resend HCI Reset - CSR Warm Boot");
1163             hci_stack->substate = HCI_INIT_SEND_RESET_CSR_WARM_BOOT;
1164             hci_stack->num_cmd_packets = 1;
1165             hci_run();
1166             break;
1167         case HCI_INIT_W4_SEND_BAUD_CHANGE:
1168             if (hci_stack->hci_transport->set_baudrate){
1169                 uint32_t baud_rate = hci_transport_uart_get_main_baud_rate();
1170                 log_info("Local baud rate change to %"PRIu32"(timeout handler)", baud_rate);
1171                 hci_stack->hci_transport->set_baudrate(baud_rate);
1172             }
1173             // For CSR, HCI Reset is sent on new baud rate. Don't forget to reset link for H5/BCSP
1174             if (hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_CAMBRIDGE_SILICON_RADIO){
1175                 if (hci_stack->hci_transport->reset_link){
1176                     log_info("Link Reset");
1177                     hci_stack->hci_transport->reset_link();
1178                 }
1179                 hci_stack->substate = HCI_INIT_SEND_RESET_CSR_WARM_BOOT;
1180                 hci_run();
1181             }
1182             break;
1183         case HCI_INIT_W4_CUSTOM_INIT_BCM_DELAY:
1184             // otherwise continue
1185             hci_stack->substate = HCI_INIT_W4_READ_LOCAL_SUPPORTED_COMMANDS;
1186             hci_send_cmd(&hci_read_local_supported_commands);
1187             break;
1188         default:
1189             break;
1190     }
1191 }
1192 #endif
1193 
1194 static void hci_initializing_next_state(void){
1195     hci_stack->substate = (hci_substate_t )( ((int) hci_stack->substate) + 1);
1196 }
1197 
1198 #if defined(ENABLE_CLASSIC) || defined(ENABLE_LE_PERIPHERAL)
1199 static void hci_replace_bd_addr_placeholder(uint8_t * data, uint16_t size){
1200     const int bd_addr_string_len = 17;
1201     int i = 0;
1202     while (i < (size - bd_addr_string_len)){
1203         if (memcmp(&data[i], "00:00:00:00:00:00", bd_addr_string_len)) {
1204             i++;
1205             continue;
1206         }
1207         // set real address
1208         (void)memcpy(&data[i], bd_addr_to_str(hci_stack->local_bd_addr),
1209                      bd_addr_string_len);
1210         i += bd_addr_string_len;
1211     }
1212 }
1213 #endif
1214 
1215 // assumption: hci_can_send_command_packet_now() == true
1216 static void hci_initializing_run(void){
1217     log_debug("hci_initializing_run: substate %u, can send %u", hci_stack->substate, hci_can_send_command_packet_now());
1218     switch (hci_stack->substate){
1219         case HCI_INIT_SEND_RESET:
1220             hci_state_reset();
1221 
1222 #if !defined(HAVE_PLATFORM_IPHONE_OS) && !defined (HAVE_HOST_CONTROLLER_API)
1223             // prepare reset if command complete not received in 100ms
1224             btstack_run_loop_set_timer(&hci_stack->timeout, HCI_RESET_RESEND_TIMEOUT_MS);
1225             btstack_run_loop_set_timer_handler(&hci_stack->timeout, hci_initialization_timeout_handler);
1226             btstack_run_loop_add_timer(&hci_stack->timeout);
1227 #endif
1228             // send command
1229             hci_stack->substate = HCI_INIT_W4_SEND_RESET;
1230             hci_send_cmd(&hci_reset);
1231             break;
1232         case HCI_INIT_SEND_READ_LOCAL_VERSION_INFORMATION:
1233             hci_send_cmd(&hci_read_local_version_information);
1234             hci_stack->substate = HCI_INIT_W4_SEND_READ_LOCAL_VERSION_INFORMATION;
1235             break;
1236         case HCI_INIT_SEND_READ_LOCAL_NAME:
1237             hci_send_cmd(&hci_read_local_name);
1238             hci_stack->substate = HCI_INIT_W4_SEND_READ_LOCAL_NAME;
1239             break;
1240 
1241 #if !defined(HAVE_PLATFORM_IPHONE_OS) && !defined (HAVE_HOST_CONTROLLER_API)
1242         case HCI_INIT_SEND_RESET_CSR_WARM_BOOT:
1243             hci_state_reset();
1244             // prepare reset if command complete not received in 100ms
1245             btstack_run_loop_set_timer(&hci_stack->timeout, HCI_RESET_RESEND_TIMEOUT_MS);
1246             btstack_run_loop_set_timer_handler(&hci_stack->timeout, hci_initialization_timeout_handler);
1247             btstack_run_loop_add_timer(&hci_stack->timeout);
1248             // send command
1249             hci_stack->substate = HCI_INIT_W4_CUSTOM_INIT_CSR_WARM_BOOT;
1250             hci_send_cmd(&hci_reset);
1251             break;
1252         case HCI_INIT_SEND_RESET_ST_WARM_BOOT:
1253             hci_state_reset();
1254             hci_stack->substate = HCI_INIT_W4_SEND_RESET_ST_WARM_BOOT;
1255             hci_send_cmd(&hci_reset);
1256             break;
1257         case HCI_INIT_SEND_BAUD_CHANGE: {
1258             uint32_t baud_rate = hci_transport_uart_get_main_baud_rate();
1259             hci_stack->chipset->set_baudrate_command(baud_rate, hci_stack->hci_packet_buffer);
1260             hci_stack->last_cmd_opcode = little_endian_read_16(hci_stack->hci_packet_buffer, 0);
1261             hci_stack->substate = HCI_INIT_W4_SEND_BAUD_CHANGE;
1262             hci_send_cmd_packet(hci_stack->hci_packet_buffer, 3 + hci_stack->hci_packet_buffer[2]);
1263             // STLC25000D: baudrate change happens within 0.5 s after command was send,
1264             // use timer to update baud rate after 100 ms (knowing exactly, when command was sent is non-trivial)
1265             if (hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_ST_MICROELECTRONICS){
1266                 btstack_run_loop_set_timer(&hci_stack->timeout, HCI_RESET_RESEND_TIMEOUT_MS);
1267                 btstack_run_loop_add_timer(&hci_stack->timeout);
1268             }
1269             break;
1270         }
1271         case HCI_INIT_SEND_BAUD_CHANGE_BCM: {
1272             uint32_t baud_rate = hci_transport_uart_get_main_baud_rate();
1273             hci_stack->chipset->set_baudrate_command(baud_rate, hci_stack->hci_packet_buffer);
1274             hci_stack->last_cmd_opcode = little_endian_read_16(hci_stack->hci_packet_buffer, 0);
1275             hci_stack->substate = HCI_INIT_W4_SEND_BAUD_CHANGE_BCM;
1276             hci_send_cmd_packet(hci_stack->hci_packet_buffer, 3 + hci_stack->hci_packet_buffer[2]);
1277             break;
1278         }
1279         case HCI_INIT_CUSTOM_INIT:
1280             // Custom initialization
1281             if (hci_stack->chipset && hci_stack->chipset->next_command){
1282                 hci_stack->chipset_result = (*hci_stack->chipset->next_command)(hci_stack->hci_packet_buffer);
1283                 int send_cmd = 0;
1284                 switch (hci_stack->chipset_result){
1285                     case BTSTACK_CHIPSET_VALID_COMMAND:
1286                         send_cmd = 1;
1287                         hci_stack->substate = HCI_INIT_W4_CUSTOM_INIT;
1288                         break;
1289                     case BTSTACK_CHIPSET_WARMSTART_REQUIRED:
1290                         send_cmd = 1;
1291                         // CSR Warm Boot: Wait a bit, then send HCI Reset until HCI Command Complete
1292                         log_info("CSR Warm Boot");
1293                         btstack_run_loop_set_timer(&hci_stack->timeout, HCI_RESET_RESEND_TIMEOUT_MS);
1294                         btstack_run_loop_set_timer_handler(&hci_stack->timeout, hci_initialization_timeout_handler);
1295                         btstack_run_loop_add_timer(&hci_stack->timeout);
1296                         if ((hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_CAMBRIDGE_SILICON_RADIO)
1297                             && hci_stack->config
1298                             && hci_stack->chipset
1299                             // && hci_stack->chipset->set_baudrate_command -- there's no such command
1300                             && hci_stack->hci_transport->set_baudrate
1301                             && hci_transport_uart_get_main_baud_rate()){
1302                             hci_stack->substate = HCI_INIT_W4_SEND_BAUD_CHANGE;
1303                         } else {
1304                            hci_stack->substate = HCI_INIT_W4_CUSTOM_INIT_CSR_WARM_BOOT_LINK_RESET;
1305                         }
1306                         break;
1307                     default:
1308                         break;
1309                 }
1310 
1311                 if (send_cmd){
1312                     int size = 3 + hci_stack->hci_packet_buffer[2];
1313                     hci_stack->last_cmd_opcode = little_endian_read_16(hci_stack->hci_packet_buffer, 0);
1314                     hci_dump_packet(HCI_COMMAND_DATA_PACKET, 0, hci_stack->hci_packet_buffer, size);
1315                     hci_stack->hci_transport->send_packet(HCI_COMMAND_DATA_PACKET, hci_stack->hci_packet_buffer, size);
1316                     break;
1317                 }
1318                 log_info("Init script done");
1319 
1320                 // Init script download on Broadcom chipsets causes:
1321                 if ( (hci_stack->chipset_result != BTSTACK_CHIPSET_NO_INIT_SCRIPT) &&
1322                    (  (hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_BROADCOM_CORPORATION)
1323                 ||    (hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_EM_MICROELECTRONIC_MARIN_SA)) ){
1324 
1325                     // - baud rate to reset, restore UART baud rate if needed
1326                     int need_baud_change = hci_stack->config
1327                         && hci_stack->chipset
1328                         && hci_stack->chipset->set_baudrate_command
1329                         && hci_stack->hci_transport->set_baudrate
1330                         && ((hci_transport_config_uart_t *)hci_stack->config)->baudrate_main;
1331                     if (need_baud_change) {
1332                         uint32_t baud_rate = ((hci_transport_config_uart_t *)hci_stack->config)->baudrate_init;
1333                         log_info("Local baud rate change to %"PRIu32" after init script (bcm)", baud_rate);
1334                         hci_stack->hci_transport->set_baudrate(baud_rate);
1335                     }
1336 
1337                     uint16_t bcm_delay_ms = 300;
1338                     // - UART may or may not be disabled during update and Controller RTS may or may not be high during this time
1339                     //   -> Work around: wait here.
1340                     log_info("BCM delay (%u ms) after init script", bcm_delay_ms);
1341                     hci_stack->substate = HCI_INIT_W4_CUSTOM_INIT_BCM_DELAY;
1342                     btstack_run_loop_set_timer(&hci_stack->timeout, bcm_delay_ms);
1343                     btstack_run_loop_set_timer_handler(&hci_stack->timeout, hci_initialization_timeout_handler);
1344                     btstack_run_loop_add_timer(&hci_stack->timeout);
1345                     break;
1346                 }
1347             }
1348             // otherwise continue
1349             hci_stack->substate = HCI_INIT_W4_READ_LOCAL_SUPPORTED_COMMANDS;
1350             hci_send_cmd(&hci_read_local_supported_commands);
1351             break;
1352         case HCI_INIT_SET_BD_ADDR:
1353             log_info("Set Public BD ADDR to %s", bd_addr_to_str(hci_stack->custom_bd_addr));
1354             hci_stack->chipset->set_bd_addr_command(hci_stack->custom_bd_addr, hci_stack->hci_packet_buffer);
1355             hci_stack->last_cmd_opcode = little_endian_read_16(hci_stack->hci_packet_buffer, 0);
1356             hci_stack->substate = HCI_INIT_W4_SET_BD_ADDR;
1357             hci_send_cmd_packet(hci_stack->hci_packet_buffer, 3 + hci_stack->hci_packet_buffer[2]);
1358             break;
1359 #endif
1360 
1361         case HCI_INIT_READ_LOCAL_SUPPORTED_COMMANDS:
1362             log_info("Resend hci_read_local_supported_commands after CSR Warm Boot double reset");
1363             hci_stack->substate = HCI_INIT_W4_READ_LOCAL_SUPPORTED_COMMANDS;
1364             hci_send_cmd(&hci_read_local_supported_commands);
1365             break;
1366         case HCI_INIT_READ_BD_ADDR:
1367             hci_stack->substate = HCI_INIT_W4_READ_BD_ADDR;
1368             hci_send_cmd(&hci_read_bd_addr);
1369             break;
1370         case HCI_INIT_READ_BUFFER_SIZE:
1371             hci_stack->substate = HCI_INIT_W4_READ_BUFFER_SIZE;
1372             hci_send_cmd(&hci_read_buffer_size);
1373             break;
1374         case HCI_INIT_READ_LOCAL_SUPPORTED_FEATURES:
1375             hci_stack->substate = HCI_INIT_W4_READ_LOCAL_SUPPORTED_FEATURES;
1376             hci_send_cmd(&hci_read_local_supported_features);
1377             break;
1378 
1379 #ifdef ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL
1380         case HCI_INIT_SET_CONTROLLER_TO_HOST_FLOW_CONTROL:
1381             hci_stack->substate = HCI_INIT_W4_SET_CONTROLLER_TO_HOST_FLOW_CONTROL;
1382             hci_send_cmd(&hci_set_controller_to_host_flow_control, 3);  // ACL + SCO Flow Control
1383             break;
1384         case HCI_INIT_HOST_BUFFER_SIZE:
1385             hci_stack->substate = HCI_INIT_W4_HOST_BUFFER_SIZE;
1386             hci_send_cmd(&hci_host_buffer_size, HCI_HOST_ACL_PACKET_LEN, HCI_HOST_SCO_PACKET_LEN,
1387                                                 HCI_HOST_ACL_PACKET_NUM, HCI_HOST_SCO_PACKET_NUM);
1388             break;
1389 #endif
1390 
1391         case HCI_INIT_SET_EVENT_MASK:
1392             hci_stack->substate = HCI_INIT_W4_SET_EVENT_MASK;
1393             if (hci_le_supported()){
1394                 hci_send_cmd(&hci_set_event_mask,0xffffffff, 0x3FFFFFFF);
1395             } else {
1396                 // Kensington Bluetooth 2.1 USB Dongle (CSR Chipset) returns an error for 0xffff...
1397                 hci_send_cmd(&hci_set_event_mask,0xffffffff, 0x1FFFFFFF);
1398             }
1399             break;
1400 
1401 #ifdef ENABLE_CLASSIC
1402         case HCI_INIT_WRITE_SIMPLE_PAIRING_MODE:
1403             hci_stack->substate = HCI_INIT_W4_WRITE_SIMPLE_PAIRING_MODE;
1404             hci_send_cmd(&hci_write_simple_pairing_mode, hci_stack->ssp_enable);
1405             break;
1406         case HCI_INIT_WRITE_PAGE_TIMEOUT:
1407             hci_stack->substate = HCI_INIT_W4_WRITE_PAGE_TIMEOUT;
1408             hci_send_cmd(&hci_write_page_timeout, 0x6000);  // ca. 15 sec
1409             break;
1410         case HCI_INIT_WRITE_DEFAULT_LINK_POLICY_SETTING:
1411             hci_stack->substate = HCI_INIT_W4_WRITE_DEFAULT_LINK_POLICY_SETTING;
1412             hci_send_cmd(&hci_write_default_link_policy_setting, hci_stack->default_link_policy_settings);
1413             break;
1414         case HCI_INIT_WRITE_CLASS_OF_DEVICE:
1415             hci_stack->substate = HCI_INIT_W4_WRITE_CLASS_OF_DEVICE;
1416             hci_send_cmd(&hci_write_class_of_device, hci_stack->class_of_device);
1417             break;
1418         case HCI_INIT_WRITE_LOCAL_NAME: {
1419             hci_stack->substate = HCI_INIT_W4_WRITE_LOCAL_NAME;
1420             hci_reserve_packet_buffer();
1421             uint8_t * packet = hci_stack->hci_packet_buffer;
1422             // construct HCI Command and send
1423             uint16_t opcode = hci_write_local_name.opcode;
1424             hci_stack->last_cmd_opcode = opcode;
1425             packet[0] = opcode & 0xff;
1426             packet[1] = opcode >> 8;
1427             packet[2] = DEVICE_NAME_LEN;
1428             memset(&packet[3], 0, DEVICE_NAME_LEN);
1429             (void)memcpy(&packet[3], hci_stack->local_name,
1430                          strlen(hci_stack->local_name));
1431             // expand '00:00:00:00:00:00' in name with bd_addr
1432             hci_replace_bd_addr_placeholder(&packet[3], DEVICE_NAME_LEN);
1433             hci_send_cmd_packet(packet, HCI_CMD_HEADER_SIZE + DEVICE_NAME_LEN);
1434             break;
1435         }
1436         case HCI_INIT_WRITE_EIR_DATA: {
1437             hci_stack->substate = HCI_INIT_W4_WRITE_EIR_DATA;
1438             hci_reserve_packet_buffer();
1439             uint8_t * packet = hci_stack->hci_packet_buffer;
1440             // construct HCI Command and send
1441             uint16_t opcode = hci_write_extended_inquiry_response.opcode;
1442             hci_stack->last_cmd_opcode = opcode;
1443             packet[0] = opcode & 0xff;
1444             packet[1] = opcode >> 8;
1445             packet[2] = 1 + 240;
1446             packet[3] = 0;  // FEC not required
1447             if (hci_stack->eir_data){
1448                 (void)memcpy(&packet[4], hci_stack->eir_data, 240);
1449             } else {
1450                 memset(&packet[4], 0, 240);
1451                 int name_len = strlen(hci_stack->local_name);
1452                 packet[4] = name_len + 1;
1453                 packet[5] = BLUETOOTH_DATA_TYPE_COMPLETE_LOCAL_NAME;
1454                 (void)memcpy(&packet[6], hci_stack->local_name, name_len);
1455             }
1456             // expand '00:00:00:00:00:00' in name with bd_addr
1457             hci_replace_bd_addr_placeholder(&packet[4], 240);
1458             hci_send_cmd_packet(packet, HCI_CMD_HEADER_SIZE + 1 + 240);
1459             break;
1460         }
1461         case HCI_INIT_WRITE_INQUIRY_MODE:
1462             hci_stack->substate = HCI_INIT_W4_WRITE_INQUIRY_MODE;
1463             hci_send_cmd(&hci_write_inquiry_mode, (int) hci_stack->inquiry_mode);
1464             break;
1465         case HCI_INIT_WRITE_SCAN_ENABLE:
1466             hci_send_cmd(&hci_write_scan_enable, (hci_stack->connectable << 1) | hci_stack->discoverable); // page scan
1467             hci_stack->substate = HCI_INIT_W4_WRITE_SCAN_ENABLE;
1468             break;
1469         // only sent if ENABLE_SCO_OVER_HCI is defined
1470         case HCI_INIT_WRITE_SYNCHRONOUS_FLOW_CONTROL_ENABLE:
1471             hci_stack->substate = HCI_INIT_W4_WRITE_SYNCHRONOUS_FLOW_CONTROL_ENABLE;
1472             hci_send_cmd(&hci_write_synchronous_flow_control_enable, 1); // SCO tracking enabled
1473             break;
1474         case HCI_INIT_WRITE_DEFAULT_ERRONEOUS_DATA_REPORTING:
1475             hci_stack->substate = HCI_INIT_W4_WRITE_DEFAULT_ERRONEOUS_DATA_REPORTING;
1476             hci_send_cmd(&hci_write_default_erroneous_data_reporting, 1);
1477             break;
1478         // only sent if ENABLE_SCO_OVER_HCI and manufacturer is Broadcom
1479         case HCI_INIT_BCM_WRITE_SCO_PCM_INT:
1480             hci_stack->substate = HCI_INIT_W4_BCM_WRITE_SCO_PCM_INT;
1481             log_info("BCM: Route SCO data via HCI transport");
1482             hci_send_cmd(&hci_bcm_write_sco_pcm_int, 1, 0, 0, 0, 0);
1483             break;
1484 
1485 #endif
1486 #ifdef ENABLE_BLE
1487         // LE INIT
1488         case HCI_INIT_LE_READ_BUFFER_SIZE:
1489             hci_stack->substate = HCI_INIT_W4_LE_READ_BUFFER_SIZE;
1490             hci_send_cmd(&hci_le_read_buffer_size);
1491             break;
1492         case HCI_INIT_LE_SET_EVENT_MASK:
1493             hci_stack->substate = HCI_INIT_W4_LE_SET_EVENT_MASK;
1494             hci_send_cmd(&hci_le_set_event_mask, 0x809FF, 0x0); // bits 0-8, 11, 19
1495             break;
1496         case HCI_INIT_WRITE_LE_HOST_SUPPORTED:
1497             // LE Supported Host = 1, Simultaneous Host = 0
1498             hci_stack->substate = HCI_INIT_W4_WRITE_LE_HOST_SUPPORTED;
1499             hci_send_cmd(&hci_write_le_host_supported, 1, 0);
1500             break;
1501 #endif
1502 
1503 #ifdef ENABLE_LE_DATA_LENGTH_EXTENSION
1504         case HCI_INIT_LE_READ_MAX_DATA_LENGTH:
1505             hci_stack->substate = HCI_INIT_W4_LE_READ_MAX_DATA_LENGTH;
1506             hci_send_cmd(&hci_le_read_maximum_data_length);
1507             break;
1508         case HCI_INIT_LE_WRITE_SUGGESTED_DATA_LENGTH:
1509             hci_stack->substate = HCI_INIT_W4_LE_WRITE_SUGGESTED_DATA_LENGTH;
1510             hci_send_cmd(&hci_le_write_suggested_default_data_length, hci_stack->le_supported_max_tx_octets, hci_stack->le_supported_max_tx_time);
1511             break;
1512 #endif
1513 
1514 #ifdef ENABLE_LE_CENTRAL
1515         case HCI_INIT_READ_WHITE_LIST_SIZE:
1516             hci_stack->substate = HCI_INIT_W4_READ_WHITE_LIST_SIZE;
1517             hci_send_cmd(&hci_le_read_white_list_size);
1518             break;
1519         case HCI_INIT_LE_SET_SCAN_PARAMETERS:
1520             // LE Scan Parameters: active scanning, 300 ms interval, 30 ms window, own address type, accept all advs
1521             hci_stack->substate = HCI_INIT_W4_LE_SET_SCAN_PARAMETERS;
1522             hci_send_cmd(&hci_le_set_scan_parameters, 1, hci_stack->le_scan_interval, hci_stack->le_scan_window, hci_stack->le_own_addr_type, 0);
1523             break;
1524 #endif
1525         default:
1526             return;
1527     }
1528 }
1529 
1530 static void hci_init_done(void){
1531     // done. tell the app
1532     log_info("hci_init_done -> HCI_STATE_WORKING");
1533     hci_stack->state = HCI_STATE_WORKING;
1534     hci_emit_state();
1535     hci_run();
1536 }
1537 
1538 static bool hci_initializing_event_handler_command_completed(const uint8_t * packet){
1539     bool command_completed = false;
1540     if (hci_event_packet_get_type(packet) == HCI_EVENT_COMMAND_COMPLETE){
1541         uint16_t opcode = little_endian_read_16(packet,3);
1542         if (opcode == hci_stack->last_cmd_opcode){
1543             command_completed = true;
1544             log_debug("Command complete for expected opcode %04x at substate %u", opcode, hci_stack->substate);
1545         } else {
1546             log_info("Command complete for different opcode %04x, expected %04x, at substate %u", opcode, hci_stack->last_cmd_opcode, hci_stack->substate);
1547         }
1548     }
1549 
1550     if (hci_event_packet_get_type(packet) == HCI_EVENT_COMMAND_STATUS){
1551         uint8_t  status = packet[2];
1552         uint16_t opcode = little_endian_read_16(packet,4);
1553         if (opcode == hci_stack->last_cmd_opcode){
1554             if (status){
1555                 command_completed = true;
1556                 log_debug("Command status error 0x%02x for expected opcode %04x at substate %u", status, opcode, hci_stack->substate);
1557             } else {
1558                 log_info("Command status OK for expected opcode %04x, waiting for command complete", opcode);
1559             }
1560         } else {
1561             log_debug("Command status for opcode %04x, expected %04x", opcode, hci_stack->last_cmd_opcode);
1562         }
1563     }
1564 #if !defined(HAVE_PLATFORM_IPHONE_OS) && !defined (HAVE_HOST_CONTROLLER_API)
1565     // Vendor == CSR
1566     if ((hci_stack->substate == HCI_INIT_W4_CUSTOM_INIT) && (hci_event_packet_get_type(packet) == HCI_EVENT_VENDOR_SPECIFIC)){
1567         // TODO: track actual command
1568         command_completed = true;
1569     }
1570 
1571     // Vendor == Toshiba
1572     if ((hci_stack->substate == HCI_INIT_W4_SEND_BAUD_CHANGE) && (hci_event_packet_get_type(packet) == HCI_EVENT_VENDOR_SPECIFIC)){
1573         // TODO: track actual command
1574         command_completed = true;
1575         // Fix: no HCI Command Complete received, so num_cmd_packets not reset
1576         hci_stack->num_cmd_packets = 1;
1577     }
1578 #endif
1579 
1580     return command_completed;
1581 }
1582 
1583 static void hci_initializing_event_handler(const uint8_t * packet, uint16_t size){
1584 
1585     UNUSED(size);   // ok: less than 6 bytes are read from our buffer
1586 
1587     bool command_completed =  hci_initializing_event_handler_command_completed(packet);
1588 
1589 #if !defined(HAVE_PLATFORM_IPHONE_OS) && !defined (HAVE_HOST_CONTROLLER_API)
1590 
1591     // Late response (> 100 ms) for HCI Reset e.g. on Toshiba TC35661:
1592     // Command complete for HCI Reset arrives after we've resent the HCI Reset command
1593     //
1594     // HCI Reset
1595     // Timeout 100 ms
1596     // HCI Reset
1597     // Command Complete Reset
1598     // HCI Read Local Version Information
1599     // Command Complete Reset - but we expected Command Complete Read Local Version Information
1600     // hang...
1601     //
1602     // Fix: Command Complete for HCI Reset in HCI_INIT_W4_SEND_READ_LOCAL_VERSION_INFORMATION trigger resend
1603     if (!command_completed
1604             && (hci_event_packet_get_type(packet) == HCI_EVENT_COMMAND_COMPLETE)
1605             && (hci_stack->substate == HCI_INIT_W4_SEND_READ_LOCAL_VERSION_INFORMATION)){
1606 
1607         uint16_t opcode = little_endian_read_16(packet,3);
1608         if (opcode == hci_reset.opcode){
1609             hci_stack->substate = HCI_INIT_SEND_READ_LOCAL_VERSION_INFORMATION;
1610             return;
1611         }
1612     }
1613 
1614     // CSR & H5
1615     // Fix: Command Complete for HCI Reset in HCI_INIT_W4_SEND_READ_LOCAL_VERSION_INFORMATION trigger resend
1616     if (!command_completed
1617             && (hci_event_packet_get_type(packet) == HCI_EVENT_COMMAND_COMPLETE)
1618             && (hci_stack->substate == HCI_INIT_W4_READ_LOCAL_SUPPORTED_COMMANDS)){
1619 
1620         uint16_t opcode = little_endian_read_16(packet,3);
1621         if (opcode == hci_reset.opcode){
1622             hci_stack->substate = HCI_INIT_READ_LOCAL_SUPPORTED_COMMANDS;
1623             return;
1624         }
1625     }
1626 
1627     // on CSR with BCSP/H5, the reset resend timeout leads to substate == HCI_INIT_SEND_RESET or HCI_INIT_SEND_RESET_CSR_WARM_BOOT
1628     // fix: Correct substate and behave as command below
1629     if (command_completed){
1630         switch (hci_stack->substate){
1631             case HCI_INIT_SEND_RESET:
1632                 hci_stack->substate = HCI_INIT_W4_SEND_RESET;
1633                 break;
1634             case HCI_INIT_SEND_RESET_CSR_WARM_BOOT:
1635                 hci_stack->substate = HCI_INIT_W4_CUSTOM_INIT_CSR_WARM_BOOT;
1636                 break;
1637             default:
1638                 break;
1639         }
1640     }
1641 
1642 #endif
1643 
1644     if (!command_completed) return;
1645 
1646     bool need_baud_change = false;
1647     bool need_addr_change = false;
1648 
1649 #if !defined(HAVE_PLATFORM_IPHONE_OS) && !defined (HAVE_HOST_CONTROLLER_API)
1650     need_baud_change = hci_stack->config
1651                         && hci_stack->chipset
1652                         && hci_stack->chipset->set_baudrate_command
1653                         && hci_stack->hci_transport->set_baudrate
1654                         && ((hci_transport_config_uart_t *)hci_stack->config)->baudrate_main;
1655 
1656     need_addr_change = hci_stack->custom_bd_addr_set
1657                         && hci_stack->chipset
1658                         && hci_stack->chipset->set_bd_addr_command;
1659 #endif
1660 
1661     switch(hci_stack->substate){
1662 
1663 #if !defined(HAVE_PLATFORM_IPHONE_OS) && !defined (HAVE_HOST_CONTROLLER_API)
1664         case HCI_INIT_SEND_RESET:
1665             // on CSR with BCSP/H5, resend triggers resend of HCI Reset and leads to substate == HCI_INIT_SEND_RESET
1666             // fix: just correct substate and behave as command below
1667             hci_stack->substate = HCI_INIT_W4_SEND_RESET;
1668             btstack_run_loop_remove_timer(&hci_stack->timeout);
1669             break;
1670         case HCI_INIT_W4_SEND_RESET:
1671             btstack_run_loop_remove_timer(&hci_stack->timeout);
1672             break;
1673         case HCI_INIT_W4_SEND_READ_LOCAL_NAME:
1674             log_info("Received local name, need baud change %d", (int) need_baud_change);
1675             if (need_baud_change){
1676                 hci_stack->substate = HCI_INIT_SEND_BAUD_CHANGE;
1677                 return;
1678             }
1679             // skip baud change
1680             hci_stack->substate = HCI_INIT_CUSTOM_INIT;
1681             return;
1682         case HCI_INIT_W4_SEND_BAUD_CHANGE:
1683             // for STLC2500D, baud rate change already happened.
1684             // for others, baud rate gets changed now
1685             if ((hci_stack->manufacturer != BLUETOOTH_COMPANY_ID_ST_MICROELECTRONICS) && need_baud_change){
1686                 uint32_t baud_rate = hci_transport_uart_get_main_baud_rate();
1687                 log_info("Local baud rate change to %"PRIu32"(w4_send_baud_change)", baud_rate);
1688                 hci_stack->hci_transport->set_baudrate(baud_rate);
1689             }
1690             hci_stack->substate = HCI_INIT_CUSTOM_INIT;
1691             return;
1692         case HCI_INIT_W4_CUSTOM_INIT_CSR_WARM_BOOT:
1693             btstack_run_loop_remove_timer(&hci_stack->timeout);
1694             hci_stack->substate = HCI_INIT_CUSTOM_INIT;
1695             return;
1696         case HCI_INIT_W4_CUSTOM_INIT:
1697             // repeat custom init
1698             hci_stack->substate = HCI_INIT_CUSTOM_INIT;
1699             return;
1700 #else
1701         case HCI_INIT_W4_SEND_RESET:
1702             hci_stack->substate = HCI_INIT_READ_LOCAL_SUPPORTED_COMMANDS;
1703             return ;
1704 #endif
1705 
1706         case HCI_INIT_W4_READ_LOCAL_SUPPORTED_COMMANDS:
1707             if (need_baud_change && (hci_stack->chipset_result != BTSTACK_CHIPSET_NO_INIT_SCRIPT) &&
1708               ((hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_BROADCOM_CORPORATION) ||
1709                (hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_EM_MICROELECTRONIC_MARIN_SA))) {
1710                 hci_stack->substate = HCI_INIT_SEND_BAUD_CHANGE_BCM;
1711                 return;
1712             }
1713             if (need_addr_change){
1714                 hci_stack->substate = HCI_INIT_SET_BD_ADDR;
1715                 return;
1716             }
1717             hci_stack->substate = HCI_INIT_READ_BD_ADDR;
1718             return;
1719 #if !defined(HAVE_PLATFORM_IPHONE_OS) && !defined (HAVE_HOST_CONTROLLER_API)
1720         case HCI_INIT_W4_SEND_BAUD_CHANGE_BCM:
1721             if (need_baud_change){
1722                 uint32_t baud_rate = hci_transport_uart_get_main_baud_rate();
1723                 log_info("Local baud rate change to %"PRIu32"(w4_send_baud_change_bcm))", baud_rate);
1724                 hci_stack->hci_transport->set_baudrate(baud_rate);
1725             }
1726             if (need_addr_change){
1727                 hci_stack->substate = HCI_INIT_SET_BD_ADDR;
1728                 return;
1729             }
1730             hci_stack->substate = HCI_INIT_READ_BD_ADDR;
1731             return;
1732         case HCI_INIT_W4_SET_BD_ADDR:
1733             // for STLC2500D + ATWILC3000, bd addr change only gets active after sending reset command
1734             if ((hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_ST_MICROELECTRONICS)
1735             ||  (hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_ATMEL_CORPORATION)){
1736                 hci_stack->substate = HCI_INIT_SEND_RESET_ST_WARM_BOOT;
1737                 return;
1738             }
1739             // skipping st warm boot
1740             hci_stack->substate = HCI_INIT_READ_BD_ADDR;
1741             return;
1742         case HCI_INIT_W4_SEND_RESET_ST_WARM_BOOT:
1743             hci_stack->substate = HCI_INIT_READ_BD_ADDR;
1744             return;
1745 #endif
1746         case HCI_INIT_W4_READ_BD_ADDR:
1747             // only read buffer size if supported
1748             if (hci_stack->local_supported_commands[0] & 0x01) {
1749                 hci_stack->substate = HCI_INIT_READ_BUFFER_SIZE;
1750                 return;
1751             }
1752             // skipping read buffer size
1753             hci_stack->substate = HCI_INIT_READ_LOCAL_SUPPORTED_FEATURES;
1754             return;
1755         case HCI_INIT_W4_SET_EVENT_MASK:
1756             // skip Classic init commands for LE only chipsets
1757             if (!hci_classic_supported()){
1758 #ifdef ENABLE_BLE
1759                 if (hci_le_supported()){
1760                     hci_stack->substate = HCI_INIT_LE_READ_BUFFER_SIZE; // skip all classic command
1761                     return;
1762                 }
1763 #endif
1764                 log_error("Neither BR/EDR nor LE supported");
1765                 hci_init_done();
1766                 return;
1767             }
1768             if (!gap_ssp_supported()){
1769                 hci_stack->substate = HCI_INIT_WRITE_PAGE_TIMEOUT;
1770                 return;
1771             }
1772             break;
1773 #ifdef ENABLE_BLE
1774         case HCI_INIT_W4_LE_READ_BUFFER_SIZE:
1775             // skip write le host if not supported (e.g. on LE only EM9301)
1776             if (hci_stack->local_supported_commands[0] & 0x02) break;
1777             hci_stack->substate = HCI_INIT_LE_SET_EVENT_MASK;
1778             return;
1779 
1780 #ifdef ENABLE_LE_DATA_LENGTH_EXTENSION
1781         case HCI_INIT_W4_WRITE_LE_HOST_SUPPORTED:
1782             log_info("Supported commands %x", hci_stack->local_supported_commands[0] & 0x30);
1783             if ((hci_stack->local_supported_commands[0] & 0x30) == 0x30){
1784                 hci_stack->substate = HCI_INIT_LE_SET_EVENT_MASK;
1785                 return;
1786             }
1787             // explicit fall through to reduce repetitions
1788 
1789 #ifdef ENABLE_LE_CENTRAL
1790             hci_stack->substate = HCI_INIT_READ_WHITE_LIST_SIZE;
1791 #else
1792             hci_init_done();
1793 #endif
1794             return;
1795 #endif  /* ENABLE_LE_DATA_LENGTH_EXTENSION */
1796 
1797 #endif  /* ENABLE_BLE */
1798 
1799 #ifdef ENABLE_SCO_OVER_HCI
1800         case HCI_INIT_W4_WRITE_SCAN_ENABLE:
1801             // skip write synchronous flow control if not supported
1802             if (hci_stack->local_supported_commands[0] & 0x04) break;
1803             hci_stack->substate = HCI_INIT_W4_WRITE_SYNCHRONOUS_FLOW_CONTROL_ENABLE;
1804 
1805             /* fall through */
1806 
1807         case HCI_INIT_W4_WRITE_SYNCHRONOUS_FLOW_CONTROL_ENABLE:
1808             // skip write default erroneous data reporting if not supported
1809             if (hci_stack->local_supported_commands[0] & 0x08) break;
1810             hci_stack->substate = HCI_INIT_W4_WRITE_DEFAULT_ERRONEOUS_DATA_REPORTING;
1811 
1812             /* fall through */
1813 
1814         case HCI_INIT_W4_WRITE_DEFAULT_ERRONEOUS_DATA_REPORTING:
1815             // skip bcm set sco pcm config on non-Broadcom chipsets
1816             if (hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_BROADCOM_CORPORATION) break;
1817             hci_stack->substate = HCI_INIT_W4_BCM_WRITE_SCO_PCM_INT;
1818 
1819             /* fall through */
1820 
1821         case HCI_INIT_W4_BCM_WRITE_SCO_PCM_INT:
1822             if (!hci_le_supported()){
1823                 // SKIP LE init for Classic only configuration
1824                 hci_init_done();
1825                 return;
1826             }
1827             break;
1828 
1829 #else /* !ENABLE_SCO_OVER_HCI */
1830 
1831         case HCI_INIT_W4_WRITE_SCAN_ENABLE:
1832 #ifdef ENABLE_BLE
1833             if (hci_le_supported()){
1834                 hci_stack->substate = HCI_INIT_LE_READ_BUFFER_SIZE;
1835                 return;
1836             }
1837 #endif
1838             // SKIP LE init for Classic only configuration
1839             hci_init_done();
1840             return;
1841 #endif /* ENABLE_SCO_OVER_HCI */
1842 
1843 // avoid compile error due to duplicate cases: HCI_INIT_W4_BCM_WRITE_SCO_PCM_INT == HCI_INIT_DONE-1
1844 #if defined(ENABLE_BLE) || defined(ENABLE_LE_DATA_LENGTH_EXTENSION) || defined(ENABLE_LE_CENTRAL)
1845         // Response to command before init done state -> init done
1846         case (HCI_INIT_DONE-1):
1847             hci_init_done();
1848             return;
1849 #endif
1850 
1851         default:
1852             break;
1853     }
1854     hci_initializing_next_state();
1855 }
1856 
1857 static void hci_handle_connection_failed(hci_connection_t * conn, uint8_t status){
1858     log_info("Outgoing connection to %s failed", bd_addr_to_str(conn->address));
1859     bd_addr_t bd_address;
1860     (void)memcpy(&bd_address, conn->address, 6);
1861 
1862 #ifdef ENABLE_CLASSIC
1863     // cache needed data
1864     int notify_dedicated_bonding_failed = conn->bonding_flags & BONDING_DEDICATED;
1865 #endif
1866 
1867     // connection failed, remove entry
1868     btstack_linked_list_remove(&hci_stack->connections, (btstack_linked_item_t *) conn);
1869     btstack_memory_hci_connection_free( conn );
1870 
1871 #ifdef ENABLE_CLASSIC
1872     // notify client if dedicated bonding
1873     if (notify_dedicated_bonding_failed){
1874         log_info("hci notify_dedicated_bonding_failed");
1875         hci_emit_dedicated_bonding_result(bd_address, status);
1876     }
1877 
1878     // if authentication error, also delete link key
1879     if (status == ERROR_CODE_AUTHENTICATION_FAILURE) {
1880         gap_drop_link_key_for_bd_addr(bd_address);
1881     }
1882 #endif
1883 }
1884 
1885 static void event_handler(uint8_t *packet, int size){
1886 
1887     uint16_t event_length = packet[1];
1888 
1889     // assert packet is complete
1890     if (size != (event_length + 2)){
1891         log_error("event_handler called with packet of wrong size %d, expected %u => dropping packet", size, event_length + 2);
1892         return;
1893     }
1894 
1895     bd_addr_t addr;
1896     bd_addr_type_t addr_type;
1897     hci_con_handle_t handle;
1898     hci_connection_t * conn;
1899     int i;
1900     int create_connection_cmd;
1901 
1902 #ifdef ENABLE_CLASSIC
1903     uint8_t link_type;
1904 #endif
1905 
1906     // log_info("HCI:EVENT:%02x", hci_event_packet_get_type(packet));
1907 
1908     switch (hci_event_packet_get_type(packet)) {
1909 
1910         case HCI_EVENT_COMMAND_COMPLETE:
1911             // get num cmd packets - limit to 1 to reduce complexity
1912             hci_stack->num_cmd_packets = packet[2] ? 1 : 0;
1913 
1914             if (HCI_EVENT_IS_COMMAND_COMPLETE(packet, hci_read_local_name)){
1915                 if (packet[5]) break;
1916                 // terminate, name 248 chars
1917                 packet[6+248] = 0;
1918                 log_info("local name: %s", &packet[6]);
1919             }
1920             if (HCI_EVENT_IS_COMMAND_COMPLETE(packet, hci_read_buffer_size)){
1921                 // "The HC_ACL_Data_Packet_Length return parameter will be used to determine the size of the L2CAP segments contained in ACL Data Packets"
1922                 if (hci_stack->state == HCI_STATE_INITIALIZING){
1923                     uint16_t acl_len = little_endian_read_16(packet, 6);
1924                     uint16_t sco_len = packet[8];
1925 
1926                     // determine usable ACL/SCO payload size
1927                     hci_stack->acl_data_packet_length = btstack_min(acl_len, HCI_ACL_PAYLOAD_SIZE);
1928                     hci_stack->sco_data_packet_length = btstack_min(sco_len, HCI_ACL_PAYLOAD_SIZE);
1929 
1930                     hci_stack->acl_packets_total_num  = little_endian_read_16(packet, 9);
1931                     hci_stack->sco_packets_total_num  = little_endian_read_16(packet, 11);
1932 
1933                     log_info("hci_read_buffer_size: ACL size module %u -> used %u, count %u / SCO size %u, count %u",
1934                              acl_len, hci_stack->acl_data_packet_length, hci_stack->acl_packets_total_num,
1935                              hci_stack->sco_data_packet_length, hci_stack->sco_packets_total_num);
1936                 }
1937             }
1938             if (HCI_EVENT_IS_COMMAND_COMPLETE(packet, hci_read_rssi)){
1939                 if (packet[5] == 0){
1940                     uint8_t event[5];
1941                     event[0] = GAP_EVENT_RSSI_MEASUREMENT;
1942                     event[1] = 3;
1943                     (void)memcpy(&event[2], &packet[6], 3);
1944                     hci_emit_event(event, sizeof(event), 1);
1945                 }
1946             }
1947 #ifdef ENABLE_BLE
1948             if (HCI_EVENT_IS_COMMAND_COMPLETE(packet, hci_le_read_buffer_size)){
1949                 hci_stack->le_data_packets_length = little_endian_read_16(packet, 6);
1950                 hci_stack->le_acl_packets_total_num  = packet[8];
1951                 // determine usable ACL payload size
1952                 if (HCI_ACL_PAYLOAD_SIZE < hci_stack->le_data_packets_length){
1953                     hci_stack->le_data_packets_length = HCI_ACL_PAYLOAD_SIZE;
1954                 }
1955                 log_info("hci_le_read_buffer_size: size %u, count %u", hci_stack->le_data_packets_length, hci_stack->le_acl_packets_total_num);
1956             }
1957 #endif
1958 #ifdef ENABLE_LE_DATA_LENGTH_EXTENSION
1959             if (HCI_EVENT_IS_COMMAND_COMPLETE(packet, hci_le_read_maximum_data_length)){
1960                 hci_stack->le_supported_max_tx_octets = little_endian_read_16(packet, 6);
1961                 hci_stack->le_supported_max_tx_time = little_endian_read_16(packet, 8);
1962                 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);
1963             }
1964 #endif
1965 #ifdef ENABLE_LE_CENTRAL
1966             if (HCI_EVENT_IS_COMMAND_COMPLETE(packet, hci_le_read_white_list_size)){
1967                 hci_stack->le_whitelist_capacity = packet[6];
1968                 log_info("hci_le_read_white_list_size: size %u", hci_stack->le_whitelist_capacity);
1969             }
1970 #endif
1971             if (HCI_EVENT_IS_COMMAND_COMPLETE(packet, hci_read_bd_addr)) {
1972                 reverse_bd_addr(&packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE + 1],
1973 				hci_stack->local_bd_addr);
1974                 log_info("Local Address, Status: 0x%02x: Addr: %s",
1975                     packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE], bd_addr_to_str(hci_stack->local_bd_addr));
1976 #ifdef ENABLE_CLASSIC
1977                 if (hci_stack->link_key_db){
1978                     hci_stack->link_key_db->set_local_bd_addr(hci_stack->local_bd_addr);
1979                 }
1980 #endif
1981             }
1982 #ifdef ENABLE_CLASSIC
1983             if (HCI_EVENT_IS_COMMAND_COMPLETE(packet, hci_write_scan_enable)){
1984                 hci_emit_discoverable_enabled(hci_stack->discoverable);
1985             }
1986             if (HCI_EVENT_IS_COMMAND_COMPLETE(packet, hci_inquiry_cancel)){
1987                 if (hci_stack->inquiry_state == GAP_INQUIRY_STATE_W4_CANCELLED){
1988                     hci_stack->inquiry_state = GAP_INQUIRY_STATE_IDLE;
1989                     uint8_t event[] = { GAP_EVENT_INQUIRY_COMPLETE, 1, 0};
1990                     hci_emit_event(event, sizeof(event), 1);
1991                 }
1992             }
1993 #endif
1994 
1995             // Note: HCI init checks
1996             if (HCI_EVENT_IS_COMMAND_COMPLETE(packet, hci_read_local_supported_features)){
1997                 (void)memcpy(hci_stack->local_supported_features,
1998 			     &packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE + 1],
1999 			     8);
2000 
2001 #ifdef ENABLE_CLASSIC
2002                 // determine usable ACL packet types based on host buffer size and supported features
2003                 hci_stack->packet_types = hci_acl_packet_types_for_buffer_size_and_local_features(HCI_ACL_PAYLOAD_SIZE, &hci_stack->local_supported_features[0]);
2004                 log_info("Packet types %04x, eSCO %u", hci_stack->packet_types, hci_extended_sco_link_supported());
2005 #endif
2006                 // Classic/LE
2007                 log_info("BR/EDR support %u, LE support %u", hci_classic_supported(), hci_le_supported());
2008             }
2009             if (HCI_EVENT_IS_COMMAND_COMPLETE(packet, hci_read_local_version_information)){
2010                 // hci_stack->hci_version    = little_endian_read_16(packet, 4);
2011                 // hci_stack->hci_revision   = little_endian_read_16(packet, 6);
2012                 uint16_t manufacturer = little_endian_read_16(packet, 10);
2013                 // map Cypress to Broadcom
2014                 if (manufacturer  == BLUETOOTH_COMPANY_ID_CYPRESS_SEMICONDUCTOR){
2015                     log_info("Treat Cypress as Broadcom");
2016                     manufacturer = BLUETOOTH_COMPANY_ID_BROADCOM_CORPORATION;
2017                     little_endian_store_16(packet, 10, manufacturer);
2018                 }
2019                 hci_stack->manufacturer = manufacturer;
2020                 // hci_stack->lmp_version    = little_endian_read_16(packet, 8);
2021                 // hci_stack->lmp_subversion = little_endian_read_16(packet, 12);
2022                 log_info("Manufacturer: 0x%04x", hci_stack->manufacturer);
2023             }
2024             if (HCI_EVENT_IS_COMMAND_COMPLETE(packet, hci_read_local_supported_commands)){
2025                 hci_stack->local_supported_commands[0] =
2026                     ((packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE+1+14] & 0x80) >> 7) |  // bit 0 = Octet 14, bit 7 / Read Buffer Size
2027                     ((packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE+1+24] & 0x40) >> 5) |  // bit 1 = Octet 24, bit 6 / Write Le Host Supported
2028                     ((packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE+1+10] & 0x10) >> 2) |  // bit 2 = Octet 10, bit 4 / Write Synchronous Flow Control Enable
2029                      (packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE+1+18] & 0x08)       |  // bit 3 = Octet 18, bit 3 / Write Default Erroneous Data Reporting
2030                     ((packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE+1+34] & 0x01) << 4) |  // bit 4 = Octet 34, bit 0 / LE Write Suggested Default Data Length
2031                     ((packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE+1+35] & 0x08) << 2) |  // bit 5 = Octet 35, bit 3 / LE Read Maximum Data Length
2032                     ((packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE+1+35] & 0x20) << 1) |  // bit 6 = Octet 35, bit 5 / LE Set Default PHY
2033                     ((packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE+1+20] & 0x10) << 3);   // bit 7 = Octet 20, bit 4 / Read Encryption Key Size
2034                     log_info("Local supported commands summary 0x%02x", hci_stack->local_supported_commands[0]);
2035             }
2036 #ifdef ENABLE_CLASSIC
2037             if (HCI_EVENT_IS_COMMAND_COMPLETE(packet, hci_write_synchronous_flow_control_enable)){
2038                 if (packet[5] == 0){
2039                     hci_stack->synchronous_flow_control_enabled = 1;
2040                 }
2041             }
2042             if (HCI_EVENT_IS_COMMAND_COMPLETE(packet, hci_read_encryption_key_size)){
2043                 uint8_t status = packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE];
2044                 handle = little_endian_read_16(packet, OFFSET_OF_DATA_IN_COMMAND_COMPLETE+1);
2045                 conn   = hci_connection_for_handle(handle);
2046                 if (!conn) break;
2047                 if (status == 0){
2048                     uint8_t key_size = packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE+3];
2049                     log_info("Handle %x04x key Size: %u", handle, key_size);
2050                     conn->encryption_key_size = key_size;
2051                 } else {
2052                     log_info("Read Encryption Key Size failed -> assuming insecure connection with key size of 1");
2053                     conn->encryption_key_size = 1;
2054                 }
2055                 conn->authentication_flags |= CONNECTION_ENCRYPTED;
2056                 hci_emit_security_level(handle, gap_security_level_for_connection(conn));
2057             }
2058 #endif
2059             break;
2060 
2061         case HCI_EVENT_COMMAND_STATUS:
2062             // get num cmd packets - limit to 1 to reduce complexity
2063             hci_stack->num_cmd_packets = packet[3] ? 1 : 0;
2064 
2065             // check command status to detected failed outgoing connections
2066             create_connection_cmd = 0;
2067 #ifdef ENABLE_CLASSIC
2068             if (HCI_EVENT_IS_COMMAND_STATUS(packet, hci_create_connection)){
2069                 create_connection_cmd = 1;
2070             }
2071 #endif
2072 #ifdef ENABLE_LE_CENTRAL
2073             if (HCI_EVENT_IS_COMMAND_STATUS(packet, hci_le_create_connection)){
2074                 create_connection_cmd = 1;
2075             }
2076 #endif
2077             if (create_connection_cmd) {
2078                 uint8_t status = hci_event_command_status_get_status(packet);
2079                 conn = hci_connection_for_bd_addr_and_type(hci_stack->outgoing_addr, hci_stack->outgoing_addr_type);
2080                 log_info("command status (create connection), status %x, connection %p, addr %s, type %x", status, conn, bd_addr_to_str(hci_stack->outgoing_addr), hci_stack->outgoing_addr_type);
2081 
2082                 // reset outgoing address info
2083                 memset(hci_stack->outgoing_addr, 0, 6);
2084                 hci_stack->outgoing_addr_type = BD_ADDR_TYPE_UNKNOWN;
2085 
2086                 // error => outgoing connection failed
2087                 if ((conn != NULL) && (status != 0)){
2088                     hci_handle_connection_failed(conn, status);
2089                 }
2090             }
2091             break;
2092 
2093         case HCI_EVENT_NUMBER_OF_COMPLETED_PACKETS:{
2094             if (size < 3) return;
2095             uint16_t num_handles = packet[2];
2096             if (size != (3 + num_handles * 4)) return;
2097             uint16_t offset = 3;
2098             for (i=0; i<num_handles;i++){
2099                 handle = little_endian_read_16(packet, offset) & 0x0fff;
2100                 offset += 2;
2101                 uint16_t num_packets = little_endian_read_16(packet, offset);
2102                 offset += 2;
2103 
2104                 conn = hci_connection_for_handle(handle);
2105                 if (!conn){
2106                     log_error("hci_number_completed_packet lists unused con handle %u", handle);
2107                     continue;
2108                 }
2109 
2110                 if (conn->num_packets_sent >= num_packets){
2111                     conn->num_packets_sent -= num_packets;
2112                 } else {
2113                     log_error("hci_number_completed_packets, more packet slots freed then sent.");
2114                     conn->num_packets_sent = 0;
2115                 }
2116                 // log_info("hci_number_completed_packet %u processed for handle %u, outstanding %u", num_packets, handle, conn->num_packets_sent);
2117 
2118 #ifdef ENABLE_CLASSIC
2119                 // For SCO, we do the can_send_now_check here
2120                 hci_notify_if_sco_can_send_now();
2121 #endif
2122             }
2123             break;
2124         }
2125 
2126 #ifdef ENABLE_CLASSIC
2127         case HCI_EVENT_INQUIRY_COMPLETE:
2128             if (hci_stack->inquiry_state == GAP_INQUIRY_STATE_ACTIVE){
2129                 hci_stack->inquiry_state = GAP_INQUIRY_STATE_IDLE;
2130                 uint8_t event[] = { GAP_EVENT_INQUIRY_COMPLETE, 1, 0};
2131                 hci_emit_event(event, sizeof(event), 1);
2132             }
2133             break;
2134         case HCI_EVENT_REMOTE_NAME_REQUEST_COMPLETE:
2135             if (hci_stack->remote_name_state == GAP_REMOTE_NAME_STATE_W4_COMPLETE){
2136                 hci_stack->remote_name_state = GAP_REMOTE_NAME_STATE_IDLE;
2137             }
2138             break;
2139         case HCI_EVENT_CONNECTION_REQUEST:
2140             reverse_bd_addr(&packet[2], addr);
2141             if (hci_stack->gap_classic_accept_callback != NULL){
2142                 if ((*hci_stack->gap_classic_accept_callback)(addr) == 0){
2143                     hci_stack->decline_reason = ERROR_CODE_CONNECTION_REJECTED_DUE_TO_UNACCEPTABLE_BD_ADDR;
2144                     bd_addr_copy(hci_stack->decline_addr, addr);
2145                     break;
2146                 }
2147             }
2148 
2149             // TODO: eval COD 8-10
2150             link_type = packet[11];
2151             log_info("Connection_incoming: %s, type %u", bd_addr_to_str(addr), link_type);
2152             addr_type = (link_type == 1) ? BD_ADDR_TYPE_ACL : BD_ADDR_TYPE_SCO;
2153             conn = hci_connection_for_bd_addr_and_type(addr, addr_type);
2154             if (!conn) {
2155                 conn = create_connection_for_bd_addr_and_type(addr, addr_type);
2156             }
2157             if (!conn) {
2158                 // CONNECTION REJECTED DUE TO LIMITED RESOURCES (0X0D)
2159                 hci_stack->decline_reason = ERROR_CODE_CONNECTION_REJECTED_DUE_TO_LIMITED_RESOURCES;
2160                 bd_addr_copy(hci_stack->decline_addr, addr);
2161                 break;
2162             }
2163             conn->role  = HCI_ROLE_SLAVE;
2164             conn->state = RECEIVED_CONNECTION_REQUEST;
2165             // store info about eSCO
2166             if (link_type == 0x02){
2167                 conn->remote_supported_feature_eSCO = 1;
2168             }
2169             hci_run();
2170             break;
2171 
2172         case HCI_EVENT_CONNECTION_COMPLETE:
2173             // Connection management
2174             reverse_bd_addr(&packet[5], addr);
2175             log_info("Connection_complete (status=%u) %s", packet[2], bd_addr_to_str(addr));
2176             addr_type = BD_ADDR_TYPE_ACL;
2177             conn = hci_connection_for_bd_addr_and_type(addr, addr_type);
2178             if (conn) {
2179                 if (!packet[2]){
2180                     conn->state = OPEN;
2181                     conn->con_handle = little_endian_read_16(packet, 3);
2182 
2183                     // queue get remote feature
2184                     conn->bonding_flags |= BONDING_REQUEST_REMOTE_FEATURES;
2185 
2186                     // queue set supervision timeout if we're master
2187                     if ((hci_stack->link_supervision_timeout != 0) && (conn->role == HCI_ROLE_MASTER)){
2188                         connectionSetAuthenticationFlags(conn, WRITE_SUPERVISION_TIMEOUT);
2189                     }
2190 
2191                     // restart timer
2192                     btstack_run_loop_set_timer(&conn->timeout, HCI_CONNECTION_TIMEOUT_MS);
2193                     btstack_run_loop_add_timer(&conn->timeout);
2194 
2195                     log_info("New connection: handle %u, %s", conn->con_handle, bd_addr_to_str(conn->address));
2196 
2197                     hci_emit_nr_connections_changed();
2198                 } else {
2199                     // connection failed
2200                     hci_handle_connection_failed(conn, packet[2]);
2201                 }
2202             }
2203             break;
2204 
2205         case HCI_EVENT_SYNCHRONOUS_CONNECTION_COMPLETE:
2206             reverse_bd_addr(&packet[5], addr);
2207             log_info("Synchronous Connection Complete (status=%u) %s", packet[2], bd_addr_to_str(addr));
2208             if (packet[2]){
2209                 // connection failed
2210                 break;
2211             }
2212             conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_SCO);
2213             if (!conn) {
2214                 conn = create_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_SCO);
2215             }
2216             if (!conn) {
2217                 break;
2218             }
2219             conn->state = OPEN;
2220             conn->con_handle = little_endian_read_16(packet, 3);
2221 
2222 #ifdef ENABLE_SCO_OVER_HCI
2223             // update SCO
2224             if (conn->address_type == BD_ADDR_TYPE_SCO && hci_stack->hci_transport && hci_stack->hci_transport->set_sco_config){
2225                 hci_stack->hci_transport->set_sco_config(hci_stack->sco_voice_setting_active, hci_number_sco_connections());
2226             }
2227             // trigger can send now
2228             if (hci_have_usb_transport()){
2229                 hci_stack->sco_can_send_now = 1;
2230             }
2231 #endif
2232             break;
2233 
2234         case HCI_EVENT_READ_REMOTE_SUPPORTED_FEATURES_COMPLETE:
2235             handle = little_endian_read_16(packet, 3);
2236             conn = hci_connection_for_handle(handle);
2237             if (!conn) break;
2238             if (!packet[2]){
2239                 uint8_t * features = &packet[5];
2240                 if (features[6] & (1 << 3)){
2241                     conn->bonding_flags |= BONDING_REMOTE_SUPPORTS_SSP;
2242                 }
2243                 if (features[3] & (1<<7)){
2244                     conn->remote_supported_feature_eSCO = 1;
2245                 }
2246             }
2247             conn->bonding_flags |= BONDING_RECEIVED_REMOTE_FEATURES;
2248             log_info("HCI_EVENT_READ_REMOTE_SUPPORTED_FEATURES_COMPLETE, bonding flags %x, eSCO %u", conn->bonding_flags, conn->remote_supported_feature_eSCO);
2249             if (conn->bonding_flags & BONDING_DEDICATED){
2250                 conn->bonding_flags |= BONDING_SEND_AUTHENTICATE_REQUEST;
2251             }
2252             break;
2253 
2254         case HCI_EVENT_LINK_KEY_REQUEST:
2255             log_info("HCI_EVENT_LINK_KEY_REQUEST");
2256             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], RECV_LINK_KEY_REQUEST);
2257             // non-bondable mode: link key negative reply will be sent by HANDLE_LINK_KEY_REQUEST
2258             if (hci_stack->bondable && !hci_stack->link_key_db) break;
2259             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], HANDLE_LINK_KEY_REQUEST);
2260             hci_run();
2261             // request handled by hci_run() as HANDLE_LINK_KEY_REQUEST gets set
2262             return;
2263 
2264         case HCI_EVENT_LINK_KEY_NOTIFICATION: {
2265             reverse_bd_addr(&packet[2], addr);
2266             conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
2267             if (!conn) break;
2268             conn->authentication_flags |= RECV_LINK_KEY_NOTIFICATION;
2269             link_key_type_t link_key_type = (link_key_type_t)packet[24];
2270             // Change Connection Encryption keeps link key type
2271             if (link_key_type != CHANGED_COMBINATION_KEY){
2272                 conn->link_key_type = link_key_type;
2273             }
2274             gap_store_link_key_for_bd_addr(addr, &packet[8], conn->link_key_type);
2275             // still forward event to allow dismiss of pairing dialog
2276             break;
2277         }
2278 
2279         case HCI_EVENT_PIN_CODE_REQUEST:
2280             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], LEGACY_PAIRING_ACTIVE);
2281             // non-bondable mode: pin code negative reply will be sent
2282             if (!hci_stack->bondable){
2283                 hci_add_connection_flags_for_flipped_bd_addr(&packet[2], DENY_PIN_CODE_REQUEST);
2284                 hci_run();
2285                 return;
2286             }
2287             // PIN CODE REQUEST means the link key request didn't succee -> delete stored link key
2288             if (!hci_stack->link_key_db) break;
2289             hci_event_pin_code_request_get_bd_addr(packet, addr);
2290             hci_stack->link_key_db->delete_link_key(addr);
2291             break;
2292 
2293         case HCI_EVENT_IO_CAPABILITY_REQUEST:
2294             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], RECV_IO_CAPABILITIES_REQUEST);
2295             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], SEND_IO_CAPABILITIES_REPLY);
2296             break;
2297 
2298         case HCI_EVENT_USER_CONFIRMATION_REQUEST:
2299             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], SSP_PAIRING_ACTIVE);
2300             if (!hci_stack->ssp_auto_accept) break;
2301             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], SEND_USER_CONFIRM_REPLY);
2302             break;
2303 
2304         case HCI_EVENT_USER_PASSKEY_REQUEST:
2305             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], SSP_PAIRING_ACTIVE);
2306             if (!hci_stack->ssp_auto_accept) break;
2307             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], SEND_USER_PASSKEY_REPLY);
2308             break;
2309         case HCI_EVENT_MODE_CHANGE:
2310             handle = hci_event_mode_change_get_handle(packet);
2311             conn = hci_connection_for_handle(handle);
2312             if (!conn) break;
2313             conn->connection_mode = hci_event_mode_change_get_mode(packet);
2314             log_info("HCI_EVENT_MODE_CHANGE, handle 0x%04x, mode %u", handle, conn->connection_mode);
2315             break;
2316 #endif
2317 
2318         case HCI_EVENT_ENCRYPTION_CHANGE:
2319             handle = little_endian_read_16(packet, 3);
2320             conn = hci_connection_for_handle(handle);
2321             if (!conn) break;
2322             if (packet[2] == 0) {
2323                 if (packet[5]){
2324                     if (hci_is_le_connection(conn)){
2325                         // For LE, we accept connection as encrypted
2326                         conn->authentication_flags |= CONNECTION_ENCRYPTED;
2327                     }
2328 #ifdef ENABLE_CLASSIC
2329                     else {
2330                         if ((hci_stack->local_supported_commands[0] & 0x80) != 0){
2331                             // For Classic, we need to validate encryption key size first, if possible (== supported by Controller)
2332                             conn->bonding_flags |= BONDING_SEND_READ_ENCRYPTION_KEY_SIZE;
2333                         } else {
2334                             // if not, pretend everything is perfect
2335                             conn->encryption_key_size = 16;
2336                             conn->authentication_flags |= CONNECTION_ENCRYPTED;
2337                             hci_emit_security_level(handle, gap_security_level_for_connection(conn));
2338                         }
2339                     }
2340 #endif
2341                 } else {
2342                     conn->authentication_flags &= ~CONNECTION_ENCRYPTED;
2343                 }
2344             }
2345 
2346             break;
2347 
2348 #ifdef ENABLE_CLASSIC
2349         case HCI_EVENT_AUTHENTICATION_COMPLETE_EVENT:
2350             handle = little_endian_read_16(packet, 3);
2351             conn = hci_connection_for_handle(handle);
2352             if (!conn) break;
2353 
2354             // dedicated bonding: send result and disconnect
2355             if (conn->bonding_flags & BONDING_DEDICATED){
2356                 conn->bonding_flags &= ~BONDING_DEDICATED;
2357                 conn->bonding_flags |= BONDING_DISCONNECT_DEDICATED_DONE;
2358                 conn->bonding_status = packet[2];
2359                 break;
2360             }
2361 
2362             if ((packet[2] == 0) && (gap_security_level_for_link_key_type(conn->link_key_type) >= conn->requested_security_level)){
2363                 // link key sufficient for requested security
2364                 conn->bonding_flags |= BONDING_SEND_ENCRYPTION_REQUEST;
2365                 break;
2366             }
2367             // not enough
2368             hci_emit_security_level(handle, gap_security_level_for_connection(conn));
2369             break;
2370 #endif
2371 
2372         // HCI_EVENT_DISCONNECTION_COMPLETE
2373         // has been split, to first notify stack before shutting connection down
2374         // see end of function, too.
2375         case HCI_EVENT_DISCONNECTION_COMPLETE:
2376             if (packet[2]) break;   // status != 0
2377             handle = little_endian_read_16(packet, 3);
2378             // drop outgoing ACL fragments if it is for closed connection and release buffer if tx not active
2379             if (hci_stack->acl_fragmentation_total_size > 0) {
2380                 if (handle == READ_ACL_CONNECTION_HANDLE(hci_stack->hci_packet_buffer)){
2381                     int release_buffer = hci_stack->acl_fragmentation_tx_active == 0;
2382                     log_info("drop fragmented ACL data for closed connection, release buffer %u", release_buffer);
2383                     hci_stack->acl_fragmentation_total_size = 0;
2384                     hci_stack->acl_fragmentation_pos = 0;
2385                     if (release_buffer){
2386                         hci_release_packet_buffer();
2387                     }
2388                 }
2389             }
2390 
2391             // re-enable advertisements for le connections if active
2392             conn = hci_connection_for_handle(handle);
2393             if (!conn) break;
2394             conn->state = RECEIVED_DISCONNECTION_COMPLETE;
2395 #ifdef ENABLE_BLE
2396 #ifdef ENABLE_LE_PERIPHERAL
2397             if (hci_is_le_connection(conn)){
2398                 hci_reenable_advertisements_if_needed();
2399             }
2400 #endif
2401 #endif
2402             break;
2403 
2404         case HCI_EVENT_HARDWARE_ERROR:
2405             log_error("Hardware Error: 0x%02x", packet[2]);
2406             if (hci_stack->hardware_error_callback){
2407                 (*hci_stack->hardware_error_callback)(packet[2]);
2408             } else {
2409                 // if no special requests, just reboot stack
2410                 hci_power_control_off();
2411                 hci_power_control_on();
2412             }
2413             break;
2414 
2415 #ifdef ENABLE_CLASSIC
2416         case HCI_EVENT_ROLE_CHANGE:
2417             if (packet[2]) break;   // status != 0
2418             reverse_bd_addr(&packet[3], addr);
2419             addr_type = BD_ADDR_TYPE_ACL;
2420             conn = hci_connection_for_bd_addr_and_type(addr, addr_type);
2421             if (!conn) break;
2422             conn->role = packet[9];
2423             break;
2424 #endif
2425 
2426         case HCI_EVENT_TRANSPORT_PACKET_SENT:
2427             // release packet buffer only for asynchronous transport and if there are not further fragements
2428             if (hci_transport_synchronous()) {
2429                 log_error("Synchronous HCI Transport shouldn't send HCI_EVENT_TRANSPORT_PACKET_SENT");
2430                 return; // instead of break: to avoid re-entering hci_run()
2431             }
2432             hci_stack->acl_fragmentation_tx_active = 0;
2433             if (hci_stack->acl_fragmentation_total_size) break;
2434             hci_release_packet_buffer();
2435 
2436             // L2CAP receives this event via the hci_emit_event below
2437 
2438 #ifdef ENABLE_CLASSIC
2439             // For SCO, we do the can_send_now_check here
2440             hci_notify_if_sco_can_send_now();
2441 #endif
2442             break;
2443 
2444 #ifdef ENABLE_CLASSIC
2445         case HCI_EVENT_SCO_CAN_SEND_NOW:
2446             // For SCO, we do the can_send_now_check here
2447             hci_stack->sco_can_send_now = 1;
2448             hci_notify_if_sco_can_send_now();
2449             return;
2450 
2451         // explode inquriy results for easier consumption
2452         case HCI_EVENT_INQUIRY_RESULT:
2453         case HCI_EVENT_INQUIRY_RESULT_WITH_RSSI:
2454         case HCI_EVENT_EXTENDED_INQUIRY_RESPONSE:
2455             gap_inquiry_explode(packet, size);
2456             break;
2457 #endif
2458 
2459 #ifdef ENABLE_BLE
2460         case HCI_EVENT_LE_META:
2461             switch (packet[2]){
2462 #ifdef ENABLE_LE_CENTRAL
2463                 case HCI_SUBEVENT_LE_ADVERTISING_REPORT:
2464                     // log_info("advertising report received");
2465                     if (!hci_stack->le_scanning_enabled) break;
2466                     le_handle_advertisement_report(packet, size);
2467                     break;
2468 #endif
2469                 case HCI_SUBEVENT_LE_CONNECTION_COMPLETE:
2470                     // Connection management
2471                     reverse_bd_addr(&packet[8], addr);
2472                     addr_type = (bd_addr_type_t)packet[7];
2473                     log_info("LE Connection_complete (status=%u) type %u, %s", packet[3], addr_type, bd_addr_to_str(addr));
2474                     conn = hci_connection_for_bd_addr_and_type(addr, addr_type);
2475 
2476 #ifdef ENABLE_LE_CENTRAL
2477                     // if auto-connect, remove from whitelist in both roles
2478                     if (hci_stack->le_connecting_state == LE_CONNECTING_WHITELIST){
2479                         hci_remove_from_whitelist(addr_type, addr);
2480                     }
2481                     // handle error: error is reported only to the initiator -> outgoing connection
2482                     if (packet[3]){
2483 
2484                         // handle cancelled outgoing connection
2485                         // "If the cancellation was successful then, after the Command Complete event for the LE_Create_Connection_Cancel command,
2486                         //  either an LE Connection Complete or an LE Enhanced Connection Complete event shall be generated.
2487                         //  In either case, the event shall be sent with the error code Unknown Connection Identifier (0x02)."
2488                         if (packet[3] == ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER){
2489                             conn = gap_get_outgoing_connection();
2490                         }
2491 
2492                         // outgoing connection establishment is done
2493                         hci_stack->le_connecting_state = LE_CONNECTING_IDLE;
2494                         // remove entry
2495                         if (conn){
2496                             btstack_linked_list_remove(&hci_stack->connections, (btstack_linked_item_t *) conn);
2497                             btstack_memory_hci_connection_free( conn );
2498                         }
2499                         break;
2500                     }
2501 #endif
2502                     // on success, both hosts receive connection complete event
2503                     if (packet[6] == HCI_ROLE_MASTER){
2504 #ifdef ENABLE_LE_CENTRAL
2505                         // if we're master, it was an outgoing connection and we're done with it
2506                         hci_stack->le_connecting_state = LE_CONNECTING_IDLE;
2507 #endif
2508                     } else {
2509 #ifdef ENABLE_LE_PERIPHERAL
2510                         // if we're slave, it was an incoming connection, advertisements have stopped
2511                         hci_stack->le_advertisements_active = 0;
2512 #endif
2513                     }
2514                     // LE connections are auto-accepted, so just create a connection if there isn't one already
2515                     if (!conn){
2516                         conn = create_connection_for_bd_addr_and_type(addr, addr_type);
2517                     }
2518                     // no memory, sorry.
2519                     if (!conn){
2520                         break;
2521                     }
2522 
2523                     conn->state = OPEN;
2524                     conn->role  = packet[6];
2525                     conn->con_handle             = hci_subevent_le_connection_complete_get_connection_handle(packet);
2526                     conn->le_connection_interval = hci_subevent_le_connection_complete_get_conn_interval(packet);
2527 
2528 #ifdef ENABLE_LE_PERIPHERAL
2529                     if (packet[6] == HCI_ROLE_SLAVE){
2530                         hci_reenable_advertisements_if_needed();
2531                     }
2532 #endif
2533 
2534                     // TODO: store - role, peer address type, conn_interval, conn_latency, supervision timeout, master clock
2535 
2536                     // restart timer
2537                     // btstack_run_loop_set_timer(&conn->timeout, HCI_CONNECTION_TIMEOUT_MS);
2538                     // btstack_run_loop_add_timer(&conn->timeout);
2539 
2540                     log_info("New connection: handle %u, %s", conn->con_handle, bd_addr_to_str(conn->address));
2541 
2542                     hci_emit_nr_connections_changed();
2543                     break;
2544 
2545                 // log_info("LE buffer size: %u, count %u", little_endian_read_16(packet,6), packet[8]);
2546                 case HCI_SUBEVENT_LE_CONNECTION_UPDATE_COMPLETE:
2547                     handle = hci_subevent_le_connection_update_complete_get_connection_handle(packet);
2548                     conn = hci_connection_for_handle(handle);
2549                     if (!conn) break;
2550                     conn->le_connection_interval = hci_subevent_le_connection_update_complete_get_conn_interval(packet);
2551                     break;
2552 
2553                 case HCI_SUBEVENT_LE_REMOTE_CONNECTION_PARAMETER_REQUEST:
2554                     // connection
2555                     handle = hci_subevent_le_remote_connection_parameter_request_get_connection_handle(packet);
2556                     conn = hci_connection_for_handle(handle);
2557                     if (conn) {
2558                         // read arguments
2559                         uint16_t le_conn_interval_min   = hci_subevent_le_remote_connection_parameter_request_get_interval_min(packet);
2560                         uint16_t le_conn_interval_max   = hci_subevent_le_remote_connection_parameter_request_get_interval_max(packet);
2561                         uint16_t le_conn_latency        = hci_subevent_le_remote_connection_parameter_request_get_latency(packet);
2562                         uint16_t le_supervision_timeout = hci_subevent_le_remote_connection_parameter_request_get_timeout(packet);
2563 
2564                         // validate against current connection parameter range
2565                         le_connection_parameter_range_t existing_range;
2566                         gap_get_connection_parameter_range(&existing_range);
2567                         int update_parameter = gap_connection_parameter_range_included(&existing_range, le_conn_interval_min, le_conn_interval_max, le_conn_latency, le_supervision_timeout);
2568                         if (update_parameter){
2569                             conn->le_con_parameter_update_state = CON_PARAMETER_UPDATE_REPLY;
2570                             conn->le_conn_interval_min = le_conn_interval_min;
2571                             conn->le_conn_interval_max = le_conn_interval_max;
2572                             conn->le_conn_latency = le_conn_latency;
2573                             conn->le_supervision_timeout = le_supervision_timeout;
2574                         } else {
2575                             conn->le_con_parameter_update_state = CON_PARAMETER_UPDATE_DENY;
2576                         }
2577                     }
2578                     break;
2579                 default:
2580                     break;
2581             }
2582             break;
2583 #endif
2584         case HCI_EVENT_VENDOR_SPECIFIC:
2585             // Vendor specific commands often create vendor specific event instead of num completed packets
2586             // To avoid getting stuck as num_cmds_packets is zero, reset it to 1 for controllers with this behaviour
2587             switch (hci_stack->manufacturer){
2588                 case BLUETOOTH_COMPANY_ID_CAMBRIDGE_SILICON_RADIO:
2589                     hci_stack->num_cmd_packets = 1;
2590                     break;
2591                 default:
2592                     break;
2593             }
2594             break;
2595         default:
2596             break;
2597     }
2598 
2599     // handle BT initialization
2600     if (hci_stack->state == HCI_STATE_INITIALIZING){
2601         hci_initializing_event_handler(packet, size);
2602     }
2603 
2604     // help with BT sleep
2605     if ((hci_stack->state == HCI_STATE_FALLING_ASLEEP)
2606         && (hci_stack->substate == HCI_FALLING_ASLEEP_W4_WRITE_SCAN_ENABLE)
2607         && HCI_EVENT_IS_COMMAND_COMPLETE(packet, hci_write_scan_enable)){
2608         hci_initializing_next_state();
2609     }
2610 
2611     // notify upper stack
2612 	hci_emit_event(packet, size, 0);   // don't dump, already happened in packet handler
2613 
2614     // moved here to give upper stack a chance to close down everything with hci_connection_t intact
2615     if (hci_event_packet_get_type(packet) == HCI_EVENT_DISCONNECTION_COMPLETE){
2616         if (!packet[2]){
2617             handle = little_endian_read_16(packet, 3);
2618             hci_connection_t * aConn = hci_connection_for_handle(handle);
2619             if (aConn) {
2620                 uint8_t status = aConn->bonding_status;
2621                 uint16_t flags = aConn->bonding_flags;
2622                 bd_addr_t bd_address;
2623                 (void)memcpy(&bd_address, aConn->address, 6);
2624                 hci_shutdown_connection(aConn);
2625                 // connection struct is gone, don't access anymore
2626                 if (flags & BONDING_EMIT_COMPLETE_ON_DISCONNECT){
2627                     hci_emit_dedicated_bonding_result(bd_address, status);
2628                 }
2629             }
2630         }
2631     }
2632 
2633 	// execute main loop
2634 	hci_run();
2635 }
2636 
2637 #ifdef ENABLE_CLASSIC
2638 
2639 static void sco_tx_timeout_handler(btstack_timer_source_t * ts);
2640 static void sco_schedule_tx(hci_connection_t * conn);
2641 
2642 static void sco_tx_timeout_handler(btstack_timer_source_t * ts){
2643     log_debug("SCO TX Timeout");
2644     hci_con_handle_t con_handle = (hci_con_handle_t) (uintptr_t) btstack_run_loop_get_timer_context(ts);
2645     hci_connection_t * conn = hci_connection_for_handle(con_handle);
2646     if (!conn) return;
2647 
2648     // trigger send
2649     conn->sco_tx_ready = 1;
2650     // extra packet if CVSD but SCO buffer is too short
2651     if (((hci_stack->sco_voice_setting_active & 0x03) != 0x03) && (hci_stack->sco_data_packet_length < 123)){
2652         conn->sco_tx_ready++;
2653     }
2654     hci_notify_if_sco_can_send_now();
2655 }
2656 
2657 
2658 #define SCO_TX_AFTER_RX_MS (6)
2659 
2660 static void sco_schedule_tx(hci_connection_t * conn){
2661 
2662     uint32_t now = btstack_run_loop_get_time_ms();
2663     uint32_t sco_tx_ms = conn->sco_rx_ms + SCO_TX_AFTER_RX_MS;
2664     int time_delta_ms = sco_tx_ms - now;
2665 
2666     btstack_timer_source_t * timer = (conn->sco_rx_count & 1) ? &conn->timeout : &conn->timeout_sco;
2667 
2668     // log_error("SCO TX at %u in %u", (int) sco_tx_ms, time_delta_ms);
2669     btstack_run_loop_set_timer(timer, time_delta_ms);
2670     btstack_run_loop_set_timer_context(timer, (void *) (uintptr_t) conn->con_handle);
2671     btstack_run_loop_set_timer_handler(timer, &sco_tx_timeout_handler);
2672     btstack_run_loop_add_timer(timer);
2673 }
2674 
2675 static void sco_handler(uint8_t * packet, uint16_t size){
2676     // lookup connection struct
2677     hci_con_handle_t con_handle = READ_SCO_CONNECTION_HANDLE(packet);
2678     hci_connection_t * conn     = hci_connection_for_handle(con_handle);
2679     if (!conn) return;
2680 
2681     // CSR 8811 prefixes 60 byte SCO packet in transparent mode with 20 zero bytes -> skip first 20 payload bytes
2682     if (hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_CAMBRIDGE_SILICON_RADIO){
2683         if ((size == 83) && ((hci_stack->sco_voice_setting_active & 0x03) == 0x03)){
2684             packet[2] = 0x3c;
2685             memmove(&packet[3], &packet[23], 63);
2686             size = 63;
2687         }
2688     }
2689 
2690     if (hci_have_usb_transport()){
2691         // Nothing to do
2692     } else {
2693         // 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);
2694         if (hci_stack->synchronous_flow_control_enabled == 0){
2695             uint32_t now = btstack_run_loop_get_time_ms();
2696 
2697             if (!conn->sco_rx_valid){
2698                 // ignore first 10 packets
2699                 conn->sco_rx_count++;
2700                 // log_debug("sco rx count %u", conn->sco_rx_count);
2701                 if (conn->sco_rx_count == 10) {
2702                     // use first timestamp as is and pretent it just started
2703                     conn->sco_rx_ms = now;
2704                     conn->sco_rx_valid = 1;
2705                     conn->sco_rx_count = 0;
2706                     sco_schedule_tx(conn);
2707                 }
2708             } else {
2709                 // track expected arrival timme
2710                 conn->sco_rx_count++;
2711                 conn->sco_rx_ms += 7;
2712                 int delta = (int32_t) (now - conn->sco_rx_ms);
2713                 if (delta > 0){
2714                     conn->sco_rx_ms++;
2715                 }
2716                 // log_debug("sco rx %u", conn->sco_rx_ms);
2717                 sco_schedule_tx(conn);
2718             }
2719         }
2720     }
2721     // deliver to app
2722     if (hci_stack->sco_packet_handler) {
2723         hci_stack->sco_packet_handler(HCI_SCO_DATA_PACKET, 0, packet, size);
2724     }
2725 
2726 #ifdef ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL
2727     conn->num_packets_completed++;
2728     hci_stack->host_completed_packets = 1;
2729     hci_run();
2730 #endif
2731 }
2732 #endif
2733 
2734 static void packet_handler(uint8_t packet_type, uint8_t *packet, uint16_t size){
2735     hci_dump_packet(packet_type, 1, packet, size);
2736     switch (packet_type) {
2737         case HCI_EVENT_PACKET:
2738             event_handler(packet, size);
2739             break;
2740         case HCI_ACL_DATA_PACKET:
2741             acl_handler(packet, size);
2742             break;
2743 #ifdef ENABLE_CLASSIC
2744         case HCI_SCO_DATA_PACKET:
2745             sco_handler(packet, size);
2746             break;
2747 #endif
2748         default:
2749             break;
2750     }
2751 }
2752 
2753 /**
2754  * @brief Add event packet handler.
2755  */
2756 void hci_add_event_handler(btstack_packet_callback_registration_t * callback_handler){
2757     btstack_linked_list_add_tail(&hci_stack->event_handlers, (btstack_linked_item_t*) callback_handler);
2758 }
2759 
2760 
2761 /** Register HCI packet handlers */
2762 void hci_register_acl_packet_handler(btstack_packet_handler_t handler){
2763     hci_stack->acl_packet_handler = handler;
2764 }
2765 
2766 #ifdef ENABLE_CLASSIC
2767 /**
2768  * @brief Registers a packet handler for SCO data. Used for HSP and HFP profiles.
2769  */
2770 void hci_register_sco_packet_handler(btstack_packet_handler_t handler){
2771     hci_stack->sco_packet_handler = handler;
2772 }
2773 #endif
2774 
2775 static void hci_state_reset(void){
2776     // no connections yet
2777     hci_stack->connections = NULL;
2778 
2779     // keep discoverable/connectable as this has been requested by the client(s)
2780     // hci_stack->discoverable = 0;
2781     // hci_stack->connectable = 0;
2782     // hci_stack->bondable = 1;
2783     // hci_stack->own_addr_type = 0;
2784 
2785     // buffer is free
2786     hci_stack->hci_packet_buffer_reserved = 0;
2787 
2788     // no pending cmds
2789     hci_stack->decline_reason = 0;
2790     hci_stack->new_scan_enable_value = 0xff;
2791 
2792     // LE
2793 #ifdef ENABLE_BLE
2794     memset(hci_stack->le_random_address, 0, 6);
2795     hci_stack->le_random_address_set = 0;
2796 #endif
2797 #ifdef ENABLE_LE_CENTRAL
2798     hci_stack->le_scanning_active  = 0;
2799     hci_stack->le_scan_type = 0xff;
2800     hci_stack->le_connecting_state = LE_CONNECTING_IDLE;
2801     hci_stack->le_whitelist = 0;
2802     hci_stack->le_whitelist_capacity = 0;
2803 #endif
2804 }
2805 
2806 #ifdef ENABLE_CLASSIC
2807 /**
2808  * @brief Configure Bluetooth hardware control. Has to be called before power on.
2809  */
2810 void hci_set_link_key_db(btstack_link_key_db_t const * link_key_db){
2811     // store and open remote device db
2812     hci_stack->link_key_db = link_key_db;
2813     if (hci_stack->link_key_db) {
2814         hci_stack->link_key_db->open();
2815     }
2816 }
2817 #endif
2818 
2819 void hci_init(const hci_transport_t *transport, const void *config){
2820 
2821 #ifdef HAVE_MALLOC
2822     if (!hci_stack) {
2823         hci_stack = (hci_stack_t*) malloc(sizeof(hci_stack_t));
2824     }
2825 #else
2826     hci_stack = &hci_stack_static;
2827 #endif
2828     memset(hci_stack, 0, sizeof(hci_stack_t));
2829 
2830     // reference to use transport layer implementation
2831     hci_stack->hci_transport = transport;
2832 
2833     // reference to used config
2834     hci_stack->config = config;
2835 
2836     // setup pointer for outgoing packet buffer
2837     hci_stack->hci_packet_buffer = &hci_stack->hci_packet_buffer_data[HCI_OUTGOING_PRE_BUFFER_SIZE];
2838 
2839     // max acl payload size defined in config.h
2840     hci_stack->acl_data_packet_length = HCI_ACL_PAYLOAD_SIZE;
2841 
2842     // register packet handlers with transport
2843     transport->register_packet_handler(&packet_handler);
2844 
2845     hci_stack->state = HCI_STATE_OFF;
2846 
2847     // class of device
2848     hci_stack->class_of_device = 0x007a020c; // Smartphone
2849 
2850     // bondable by default
2851     hci_stack->bondable = 1;
2852 
2853 #ifdef ENABLE_CLASSIC
2854     // classic name
2855     hci_stack->local_name = default_classic_name;
2856 
2857     // Master slave policy
2858     hci_stack->master_slave_policy = 1;
2859 
2860     // Allow Role Switch
2861     hci_stack->allow_role_switch = 1;
2862 
2863     // Errata-11838 mandates 7 bytes for GAP Security Level 1-3, we use 16 as default
2864     hci_stack->gap_required_encyrption_key_size = 16;
2865 #endif
2866 
2867     // Secure Simple Pairing default: enable, no I/O capabilities, general bonding, mitm not required, auto accept
2868     hci_stack->ssp_enable = 1;
2869     hci_stack->ssp_io_capability = SSP_IO_CAPABILITY_NO_INPUT_NO_OUTPUT;
2870     hci_stack->ssp_authentication_requirement = SSP_IO_AUTHREQ_MITM_PROTECTION_NOT_REQUIRED_GENERAL_BONDING;
2871     hci_stack->ssp_auto_accept = 1;
2872 
2873     // voice setting - signed 16 bit pcm data with CVSD over the air
2874     hci_stack->sco_voice_setting = 0x60;
2875 
2876 #ifdef ENABLE_LE_CENTRAL
2877     // connection parameter to use for outgoing connections
2878     hci_stack->le_connection_scan_interval = 0x0060;   // 60ms
2879     hci_stack->le_connection_scan_window  = 0x0030;    // 30ms
2880     hci_stack->le_connection_interval_min = 0x0008;    // 10 ms
2881     hci_stack->le_connection_interval_max = 0x0018;    // 30 ms
2882     hci_stack->le_connection_latency      = 4;         // 4
2883     hci_stack->le_supervision_timeout     = 0x0048;    // 720 ms
2884     hci_stack->le_minimum_ce_length       = 2;         // 1.25 ms
2885     hci_stack->le_maximum_ce_length       = 0x0030;    // 30 ms
2886 
2887     // default LE Scanning
2888     hci_stack->le_scan_interval = 0x1e0;
2889     hci_stack->le_scan_window   =  0x30;
2890 #endif
2891 
2892 #ifdef ENABLE_LE_PERIPHERAL
2893     hci_stack->le_max_number_peripheral_connections = 1; // only single connection as peripheral
2894 #endif
2895 
2896     // connection parameter range used to answer connection parameter update requests in l2cap
2897     hci_stack->le_connection_parameter_range.le_conn_interval_min =          6;
2898     hci_stack->le_connection_parameter_range.le_conn_interval_max =       3200;
2899     hci_stack->le_connection_parameter_range.le_conn_latency_min =           0;
2900     hci_stack->le_connection_parameter_range.le_conn_latency_max =         500;
2901     hci_stack->le_connection_parameter_range.le_supervision_timeout_min =   10;
2902     hci_stack->le_connection_parameter_range.le_supervision_timeout_max = 3200;
2903 
2904     hci_state_reset();
2905 }
2906 
2907 /**
2908  * @brief Configure Bluetooth chipset driver. Has to be called before power on, or right after receiving the local version information
2909  */
2910 void hci_set_chipset(const btstack_chipset_t *chipset_driver){
2911     hci_stack->chipset = chipset_driver;
2912 
2913     // reset chipset driver - init is also called on power_up
2914     if (hci_stack->chipset && hci_stack->chipset->init){
2915         hci_stack->chipset->init(hci_stack->config);
2916     }
2917 }
2918 
2919 /**
2920  * @brief Configure Bluetooth hardware control. Has to be called after hci_init() but before power on.
2921  */
2922 void hci_set_control(const btstack_control_t *hardware_control){
2923     // references to used control implementation
2924     hci_stack->control = hardware_control;
2925     // init with transport config
2926     hardware_control->init(hci_stack->config);
2927 }
2928 
2929 void hci_close(void){
2930     // close remote device db
2931     if (hci_stack->link_key_db) {
2932         hci_stack->link_key_db->close();
2933     }
2934 
2935     btstack_linked_list_iterator_t lit;
2936     btstack_linked_list_iterator_init(&lit, &hci_stack->connections);
2937     while (btstack_linked_list_iterator_has_next(&lit)){
2938         // cancel all l2cap connections by emitting dicsconnection complete before shutdown (free) connection
2939         hci_connection_t * connection = (hci_connection_t*) btstack_linked_list_iterator_next(&lit);
2940         hci_emit_disconnection_complete(connection->con_handle, 0x16); // terminated by local host
2941         hci_shutdown_connection(connection);
2942     }
2943 
2944     hci_power_control(HCI_POWER_OFF);
2945 
2946 #ifdef HAVE_MALLOC
2947     free(hci_stack);
2948 #endif
2949     hci_stack = NULL;
2950 }
2951 
2952 #ifdef ENABLE_CLASSIC
2953 void gap_set_required_encryption_key_size(uint8_t encryption_key_size){
2954     // validate ranage and set
2955     if (encryption_key_size < 7)  return;
2956     if (encryption_key_size > 16) return;
2957     hci_stack->gap_required_encyrption_key_size = encryption_key_size;
2958 }
2959 #endif
2960 
2961 #ifdef ENABLE_CLASSIC
2962 void gap_set_class_of_device(uint32_t class_of_device){
2963     hci_stack->class_of_device = class_of_device;
2964 }
2965 
2966 void gap_set_default_link_policy_settings(uint16_t default_link_policy_settings){
2967     hci_stack->default_link_policy_settings = default_link_policy_settings;
2968 }
2969 
2970 void gap_set_allow_role_switch(bool allow_role_switch){
2971     hci_stack->allow_role_switch = allow_role_switch ? 1 : 0;
2972 }
2973 
2974 uint8_t hci_get_allow_role_switch(void){
2975     return  hci_stack->allow_role_switch;
2976 }
2977 
2978 void gap_set_link_supervision_timeout(uint16_t link_supervision_timeout){
2979     hci_stack->link_supervision_timeout = link_supervision_timeout;
2980 }
2981 
2982 void hci_disable_l2cap_timeout_check(void){
2983     disable_l2cap_timeouts = 1;
2984 }
2985 #endif
2986 
2987 #if !defined(HAVE_PLATFORM_IPHONE_OS) && !defined (HAVE_HOST_CONTROLLER_API)
2988 // Set Public BD ADDR - passed on to Bluetooth chipset if supported in bt_control_h
2989 void hci_set_bd_addr(bd_addr_t addr){
2990     (void)memcpy(hci_stack->custom_bd_addr, addr, 6);
2991     hci_stack->custom_bd_addr_set = 1;
2992 }
2993 #endif
2994 
2995 // State-Module-Driver overview
2996 // state                    module  low-level
2997 // HCI_STATE_OFF             off      close
2998 // HCI_STATE_INITIALIZING,   on       open
2999 // HCI_STATE_WORKING,        on       open
3000 // HCI_STATE_HALTING,        on       open
3001 // HCI_STATE_SLEEPING,    off/sleep   close
3002 // HCI_STATE_FALLING_ASLEEP  on       open
3003 
3004 static int hci_power_control_on(void){
3005 
3006     // power on
3007     int err = 0;
3008     if (hci_stack->control && hci_stack->control->on){
3009         err = (*hci_stack->control->on)();
3010     }
3011     if (err){
3012         log_error( "POWER_ON failed");
3013         hci_emit_hci_open_failed();
3014         return err;
3015     }
3016 
3017     // int chipset driver
3018     if (hci_stack->chipset && hci_stack->chipset->init){
3019         hci_stack->chipset->init(hci_stack->config);
3020     }
3021 
3022     // init transport
3023     if (hci_stack->hci_transport->init){
3024         hci_stack->hci_transport->init(hci_stack->config);
3025     }
3026 
3027     // open transport
3028     err = hci_stack->hci_transport->open();
3029     if (err){
3030         log_error( "HCI_INIT failed, turning Bluetooth off again");
3031         if (hci_stack->control && hci_stack->control->off){
3032             (*hci_stack->control->off)();
3033         }
3034         hci_emit_hci_open_failed();
3035         return err;
3036     }
3037     return 0;
3038 }
3039 
3040 static void hci_power_control_off(void){
3041 
3042     log_info("hci_power_control_off");
3043 
3044     // close low-level device
3045     hci_stack->hci_transport->close();
3046 
3047     log_info("hci_power_control_off - hci_transport closed");
3048 
3049     // power off
3050     if (hci_stack->control && hci_stack->control->off){
3051         (*hci_stack->control->off)();
3052     }
3053 
3054     log_info("hci_power_control_off - control closed");
3055 
3056     hci_stack->state = HCI_STATE_OFF;
3057 }
3058 
3059 static void hci_power_control_sleep(void){
3060 
3061     log_info("hci_power_control_sleep");
3062 
3063 #if 0
3064     // don't close serial port during sleep
3065 
3066     // close low-level device
3067     hci_stack->hci_transport->close(hci_stack->config);
3068 #endif
3069 
3070     // sleep mode
3071     if (hci_stack->control && hci_stack->control->sleep){
3072         (*hci_stack->control->sleep)();
3073     }
3074 
3075     hci_stack->state = HCI_STATE_SLEEPING;
3076 }
3077 
3078 static int hci_power_control_wake(void){
3079 
3080     log_info("hci_power_control_wake");
3081 
3082     // wake on
3083     if (hci_stack->control && hci_stack->control->wake){
3084         (*hci_stack->control->wake)();
3085     }
3086 
3087 #if 0
3088     // open low-level device
3089     int err = hci_stack->hci_transport->open(hci_stack->config);
3090     if (err){
3091         log_error( "HCI_INIT failed, turning Bluetooth off again");
3092         if (hci_stack->control && hci_stack->control->off){
3093             (*hci_stack->control->off)();
3094         }
3095         hci_emit_hci_open_failed();
3096         return err;
3097     }
3098 #endif
3099 
3100     return 0;
3101 }
3102 
3103 static void hci_power_transition_to_initializing(void){
3104     // set up state machine
3105     hci_stack->num_cmd_packets = 1; // assume that one cmd can be sent
3106     hci_stack->hci_packet_buffer_reserved = 0;
3107     hci_stack->state = HCI_STATE_INITIALIZING;
3108     hci_stack->substate = HCI_INIT_SEND_RESET;
3109 }
3110 
3111 int hci_power_control(HCI_POWER_MODE power_mode){
3112 
3113     log_info("hci_power_control: %d, current mode %u", power_mode, hci_stack->state);
3114 
3115     int err = 0;
3116     switch (hci_stack->state){
3117 
3118         case HCI_STATE_OFF:
3119             switch (power_mode){
3120                 case HCI_POWER_ON:
3121                     err = hci_power_control_on();
3122                     if (err) {
3123                         log_error("hci_power_control_on() error %d", err);
3124                         return err;
3125                     }
3126                     hci_power_transition_to_initializing();
3127                     break;
3128                 case HCI_POWER_OFF:
3129                     // do nothing
3130                     break;
3131                 case HCI_POWER_SLEEP:
3132                     // do nothing (with SLEEP == OFF)
3133                     break;
3134             }
3135             break;
3136 
3137         case HCI_STATE_INITIALIZING:
3138             switch (power_mode){
3139                 case HCI_POWER_ON:
3140                     // do nothing
3141                     break;
3142                 case HCI_POWER_OFF:
3143                     // no connections yet, just turn it off
3144                     hci_power_control_off();
3145                     break;
3146                 case HCI_POWER_SLEEP:
3147                     // no connections yet, just turn it off
3148                     hci_power_control_sleep();
3149                     break;
3150             }
3151             break;
3152 
3153         case HCI_STATE_WORKING:
3154             switch (power_mode){
3155                 case HCI_POWER_ON:
3156                     // do nothing
3157                     break;
3158                 case HCI_POWER_OFF:
3159                     // see hci_run
3160                     hci_stack->state = HCI_STATE_HALTING;
3161                     hci_stack->substate = HCI_HALTING_DISCONNECT_ALL_NO_TIMER;
3162                     break;
3163                 case HCI_POWER_SLEEP:
3164                     // see hci_run
3165                     hci_stack->state = HCI_STATE_FALLING_ASLEEP;
3166                     hci_stack->substate = HCI_FALLING_ASLEEP_DISCONNECT;
3167                     break;
3168             }
3169             break;
3170 
3171         case HCI_STATE_HALTING:
3172             switch (power_mode){
3173                 case HCI_POWER_ON:
3174                     hci_power_transition_to_initializing();
3175                     break;
3176                 case HCI_POWER_OFF:
3177                     // do nothing
3178                     break;
3179                 case HCI_POWER_SLEEP:
3180                     // see hci_run
3181                     hci_stack->state = HCI_STATE_FALLING_ASLEEP;
3182                     hci_stack->substate = HCI_FALLING_ASLEEP_DISCONNECT;
3183                     break;
3184             }
3185             break;
3186 
3187         case HCI_STATE_FALLING_ASLEEP:
3188             switch (power_mode){
3189                 case HCI_POWER_ON:
3190 
3191 #ifdef HAVE_PLATFORM_IPHONE_OS
3192                     // nothing to do, if H4 supports power management
3193                     if (btstack_control_iphone_power_management_enabled()){
3194                         hci_stack->state = HCI_STATE_INITIALIZING;
3195                         hci_stack->substate = HCI_INIT_WRITE_SCAN_ENABLE;   // init after sleep
3196                         break;
3197                     }
3198 #endif
3199                     hci_power_transition_to_initializing();
3200                     break;
3201                 case HCI_POWER_OFF:
3202                     // see hci_run
3203                     hci_stack->state = HCI_STATE_HALTING;
3204                     hci_stack->substate = HCI_HALTING_DISCONNECT_ALL_NO_TIMER;
3205                     break;
3206                 case HCI_POWER_SLEEP:
3207                     // do nothing
3208                     break;
3209             }
3210             break;
3211 
3212         case HCI_STATE_SLEEPING:
3213             switch (power_mode){
3214                 case HCI_POWER_ON:
3215 
3216 #ifdef HAVE_PLATFORM_IPHONE_OS
3217                     // nothing to do, if H4 supports power management
3218                     if (btstack_control_iphone_power_management_enabled()){
3219                         hci_stack->state = HCI_STATE_INITIALIZING;
3220                         hci_stack->substate = HCI_INIT_AFTER_SLEEP;
3221                         hci_update_scan_enable();
3222                         break;
3223                     }
3224 #endif
3225                     err = hci_power_control_wake();
3226                     if (err) return err;
3227                     hci_power_transition_to_initializing();
3228                     break;
3229                 case HCI_POWER_OFF:
3230                     hci_stack->state = HCI_STATE_HALTING;
3231                     hci_stack->substate = HCI_HALTING_DISCONNECT_ALL_NO_TIMER;
3232                     break;
3233                 case HCI_POWER_SLEEP:
3234                     // do nothing
3235                     break;
3236             }
3237             break;
3238     }
3239 
3240     // create internal event
3241 	hci_emit_state();
3242 
3243 	// trigger next/first action
3244 	hci_run();
3245 
3246     return 0;
3247 }
3248 
3249 
3250 #ifdef ENABLE_CLASSIC
3251 
3252 static void hci_update_scan_enable(void){
3253     // 2 = page scan, 1 = inq scan
3254     hci_stack->new_scan_enable_value  = (hci_stack->connectable << 1) | hci_stack->discoverable;
3255     hci_run();
3256 }
3257 
3258 void gap_discoverable_control(uint8_t enable){
3259     if (enable) enable = 1; // normalize argument
3260 
3261     if (hci_stack->discoverable == enable){
3262         hci_emit_discoverable_enabled(hci_stack->discoverable);
3263         return;
3264     }
3265 
3266     hci_stack->discoverable = enable;
3267     hci_update_scan_enable();
3268 }
3269 
3270 void gap_connectable_control(uint8_t enable){
3271     if (enable) enable = 1; // normalize argument
3272 
3273     // don't emit event
3274     if (hci_stack->connectable == enable) return;
3275 
3276     hci_stack->connectable = enable;
3277     hci_update_scan_enable();
3278 }
3279 #endif
3280 
3281 void gap_local_bd_addr(bd_addr_t address_buffer){
3282     (void)memcpy(address_buffer, hci_stack->local_bd_addr, 6);
3283 }
3284 
3285 #ifdef ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL
3286 static void hci_host_num_completed_packets(void){
3287 
3288     // create packet manually as arrays are not supported and num_commands should not get reduced
3289     hci_reserve_packet_buffer();
3290     uint8_t * packet = hci_get_outgoing_packet_buffer();
3291 
3292     uint16_t size = 0;
3293     uint16_t num_handles = 0;
3294     packet[size++] = 0x35;
3295     packet[size++] = 0x0c;
3296     size++;  // skip param len
3297     size++;  // skip num handles
3298 
3299     // add { handle, packets } entries
3300     btstack_linked_item_t * it;
3301     for (it = (btstack_linked_item_t *) hci_stack->connections; it ; it = it->next){
3302         hci_connection_t * connection = (hci_connection_t *) it;
3303         if (connection->num_packets_completed){
3304             little_endian_store_16(packet, size, connection->con_handle);
3305             size += 2;
3306             little_endian_store_16(packet, size, connection->num_packets_completed);
3307             size += 2;
3308             //
3309             num_handles++;
3310             connection->num_packets_completed = 0;
3311         }
3312     }
3313 
3314     packet[2] = size - 3;
3315     packet[3] = num_handles;
3316 
3317     hci_stack->host_completed_packets = 0;
3318 
3319     hci_dump_packet(HCI_COMMAND_DATA_PACKET, 0, packet, size);
3320     hci_stack->hci_transport->send_packet(HCI_COMMAND_DATA_PACKET, packet, size);
3321 
3322     // release packet buffer for synchronous transport implementations
3323     if (hci_transport_synchronous()){
3324         hci_release_packet_buffer();
3325         hci_emit_transport_packet_sent();
3326     }
3327 }
3328 #endif
3329 
3330 static void hci_halting_timeout_handler(btstack_timer_source_t * ds){
3331     UNUSED(ds);
3332     hci_stack->substate = HCI_HALTING_CLOSE;
3333     // allow packet handlers to defer final shutdown
3334     hci_emit_state();
3335     hci_run();
3336 }
3337 
3338 static bool hci_run_acl_fragments(void){
3339     if (hci_stack->acl_fragmentation_total_size > 0) {
3340         hci_con_handle_t con_handle = READ_ACL_CONNECTION_HANDLE(hci_stack->hci_packet_buffer);
3341         hci_connection_t *connection = hci_connection_for_handle(con_handle);
3342         if (connection) {
3343             if (hci_can_send_prepared_acl_packet_now(con_handle)){
3344                 hci_send_acl_packet_fragments(connection);
3345                 return true;
3346             }
3347         } else {
3348             // connection gone -> discard further fragments
3349             log_info("hci_run: fragmented ACL packet no connection -> discard fragment");
3350             hci_stack->acl_fragmentation_total_size = 0;
3351             hci_stack->acl_fragmentation_pos = 0;
3352         }
3353     }
3354     return false;
3355 }
3356 
3357 #ifdef ENABLE_CLASSIC
3358 static bool hci_run_general_gap_classic(void){
3359 
3360     // decline incoming connections
3361     if (hci_stack->decline_reason){
3362         uint8_t reason = hci_stack->decline_reason;
3363         hci_stack->decline_reason = 0;
3364         hci_send_cmd(&hci_reject_connection_request, hci_stack->decline_addr, reason);
3365         return true;
3366     }
3367     // send scan enable
3368     if ((hci_stack->state == HCI_STATE_WORKING) && (hci_stack->new_scan_enable_value != 0xff) && hci_classic_supported()){
3369         hci_send_cmd(&hci_write_scan_enable, hci_stack->new_scan_enable_value);
3370         hci_stack->new_scan_enable_value = 0xff;
3371         return true;
3372     }
3373     // start/stop inquiry
3374     if ((hci_stack->inquiry_state >= GAP_INQUIRY_DURATION_MIN) && (hci_stack->inquiry_state <= GAP_INQUIRY_DURATION_MAX)){
3375         uint8_t duration = hci_stack->inquiry_state;
3376         hci_stack->inquiry_state = GAP_INQUIRY_STATE_ACTIVE;
3377         hci_send_cmd(&hci_inquiry, GAP_IAC_GENERAL_INQUIRY, duration, 0);
3378         return true;
3379     }
3380     if (hci_stack->inquiry_state == GAP_INQUIRY_STATE_W2_CANCEL){
3381         hci_stack->inquiry_state = GAP_INQUIRY_STATE_W4_CANCELLED;
3382         hci_send_cmd(&hci_inquiry_cancel);
3383         return true;
3384     }
3385     // remote name request
3386     if (hci_stack->remote_name_state == GAP_REMOTE_NAME_STATE_W2_SEND){
3387         hci_stack->remote_name_state = GAP_REMOTE_NAME_STATE_W4_COMPLETE;
3388         hci_send_cmd(&hci_remote_name_request, hci_stack->remote_name_addr,
3389                      hci_stack->remote_name_page_scan_repetition_mode, 0, hci_stack->remote_name_clock_offset);
3390         return true;
3391     }
3392     // pairing
3393     if (hci_stack->gap_pairing_state != GAP_PAIRING_STATE_IDLE){
3394         uint8_t state = hci_stack->gap_pairing_state;
3395         hci_stack->gap_pairing_state = GAP_PAIRING_STATE_IDLE;
3396         switch (state){
3397             case GAP_PAIRING_STATE_SEND_PIN:
3398                 hci_send_cmd(&hci_pin_code_request_reply, hci_stack->gap_pairing_addr, strlen(hci_stack->gap_pairing_input.gap_pairing_pin), hci_stack->gap_pairing_input.gap_pairing_pin);
3399                 break;
3400             case GAP_PAIRING_STATE_SEND_PIN_NEGATIVE:
3401                 hci_send_cmd(&hci_pin_code_request_negative_reply, hci_stack->gap_pairing_addr);
3402                 break;
3403             case GAP_PAIRING_STATE_SEND_PASSKEY:
3404                 hci_send_cmd(&hci_user_passkey_request_reply, hci_stack->gap_pairing_addr, hci_stack->gap_pairing_input.gap_pairing_passkey);
3405                 break;
3406             case GAP_PAIRING_STATE_SEND_PASSKEY_NEGATIVE:
3407                 hci_send_cmd(&hci_user_passkey_request_negative_reply, hci_stack->gap_pairing_addr);
3408                 break;
3409             case GAP_PAIRING_STATE_SEND_CONFIRMATION:
3410                 hci_send_cmd(&hci_user_confirmation_request_reply, hci_stack->gap_pairing_addr);
3411                 break;
3412             case GAP_PAIRING_STATE_SEND_CONFIRMATION_NEGATIVE:
3413                 hci_send_cmd(&hci_user_confirmation_request_negative_reply, hci_stack->gap_pairing_addr);
3414                 break;
3415             default:
3416                 break;
3417         }
3418         return true;
3419     }
3420     return false;
3421 }
3422 #endif
3423 
3424 #ifdef ENABLE_BLE
3425 static bool hci_run_general_gap_le(void){
3426 
3427     // advertisements, active scanning, and creating connections requires random address to be set if using private address
3428 
3429     if (hci_stack->state != HCI_STATE_WORKING) return false;
3430     if ( (hci_stack->le_own_addr_type != BD_ADDR_TYPE_LE_PUBLIC) && (hci_stack->le_random_address_set == 0) ) return false;
3431 
3432 #ifdef ENABLE_LE_CENTRAL
3433     // parameter change requires scanning to be stopped first
3434     if (hci_stack->le_scan_type != 0xff) {
3435         if (hci_stack->le_scanning_active){
3436             hci_stack->le_scanning_active = 0;
3437             hci_send_cmd(&hci_le_set_scan_enable, 0, 0);
3438         } else {
3439             int scan_type = (int) hci_stack->le_scan_type;
3440             hci_stack->le_scan_type = 0xff;
3441             hci_send_cmd(&hci_le_set_scan_parameters, scan_type, hci_stack->le_scan_interval, hci_stack->le_scan_window, hci_stack->le_own_addr_type, 0);
3442         }
3443         return true;
3444     }
3445     // finally, we can enable/disable le scan
3446     if ((hci_stack->le_scanning_enabled != hci_stack->le_scanning_active)){
3447         hci_stack->le_scanning_active = hci_stack->le_scanning_enabled;
3448         hci_send_cmd(&hci_le_set_scan_enable, hci_stack->le_scanning_enabled, 0);
3449         return true;
3450     }
3451 #endif
3452 #ifdef ENABLE_LE_PERIPHERAL
3453     // le advertisement control
3454     if (hci_stack->le_advertisements_todo){
3455         log_info("hci_run: gap_le: adv todo: %x", hci_stack->le_advertisements_todo );
3456     }
3457     if (hci_stack->le_advertisements_todo & LE_ADVERTISEMENT_TASKS_DISABLE){
3458         hci_stack->le_advertisements_todo &= ~LE_ADVERTISEMENT_TASKS_DISABLE;
3459         hci_send_cmd(&hci_le_set_advertise_enable, 0);
3460         return true;
3461     }
3462     if (hci_stack->le_advertisements_todo & LE_ADVERTISEMENT_TASKS_SET_PARAMS){
3463         hci_stack->le_advertisements_todo &= ~LE_ADVERTISEMENT_TASKS_SET_PARAMS;
3464         hci_send_cmd(&hci_le_set_advertising_parameters,
3465                      hci_stack->le_advertisements_interval_min,
3466                      hci_stack->le_advertisements_interval_max,
3467                      hci_stack->le_advertisements_type,
3468                      hci_stack->le_own_addr_type,
3469                      hci_stack->le_advertisements_direct_address_type,
3470                      hci_stack->le_advertisements_direct_address,
3471                      hci_stack->le_advertisements_channel_map,
3472                      hci_stack->le_advertisements_filter_policy);
3473         return true;
3474     }
3475     if (hci_stack->le_advertisements_todo & LE_ADVERTISEMENT_TASKS_SET_ADV_DATA){
3476         hci_stack->le_advertisements_todo &= ~LE_ADVERTISEMENT_TASKS_SET_ADV_DATA;
3477         uint8_t adv_data_clean[31];
3478         memset(adv_data_clean, 0, sizeof(adv_data_clean));
3479         (void)memcpy(adv_data_clean, hci_stack->le_advertisements_data,
3480                      hci_stack->le_advertisements_data_len);
3481         hci_replace_bd_addr_placeholder(adv_data_clean, hci_stack->le_advertisements_data_len);
3482         hci_send_cmd(&hci_le_set_advertising_data, hci_stack->le_advertisements_data_len, adv_data_clean);
3483         return true;
3484     }
3485     if (hci_stack->le_advertisements_todo & LE_ADVERTISEMENT_TASKS_SET_SCAN_DATA){
3486         hci_stack->le_advertisements_todo &= ~LE_ADVERTISEMENT_TASKS_SET_SCAN_DATA;
3487         uint8_t scan_data_clean[31];
3488         memset(scan_data_clean, 0, sizeof(scan_data_clean));
3489         (void)memcpy(scan_data_clean, hci_stack->le_scan_response_data,
3490                      hci_stack->le_scan_response_data_len);
3491         hci_replace_bd_addr_placeholder(scan_data_clean, hci_stack->le_scan_response_data_len);
3492         hci_send_cmd(&hci_le_set_scan_response_data, hci_stack->le_scan_response_data_len, scan_data_clean);
3493         return true;
3494     }
3495     if (hci_stack->le_advertisements_todo & LE_ADVERTISEMENT_TASKS_ENABLE){
3496         hci_stack->le_advertisements_todo &= ~LE_ADVERTISEMENT_TASKS_ENABLE;
3497         hci_send_cmd(&hci_le_set_advertise_enable, 1);
3498         return true;
3499     }
3500 #endif
3501 
3502 #ifdef ENABLE_LE_CENTRAL
3503     //
3504     // LE Whitelist Management
3505     //
3506 
3507     // check if whitelist needs modification
3508     btstack_linked_list_iterator_t lit;
3509     int modification_pending = 0;
3510     btstack_linked_list_iterator_init(&lit, &hci_stack->le_whitelist);
3511     while (btstack_linked_list_iterator_has_next(&lit)){
3512         whitelist_entry_t * entry = (whitelist_entry_t*) btstack_linked_list_iterator_next(&lit);
3513         if (entry->state & (LE_WHITELIST_REMOVE_FROM_CONTROLLER | LE_WHITELIST_ADD_TO_CONTROLLER)){
3514             modification_pending = 1;
3515             break;
3516         }
3517     }
3518 
3519     if (modification_pending){
3520         // stop connnecting if modification pending
3521         if (hci_stack->le_connecting_state != LE_CONNECTING_IDLE){
3522             hci_send_cmd(&hci_le_create_connection_cancel);
3523             return true;
3524         }
3525 
3526         // add/remove entries
3527         btstack_linked_list_iterator_init(&lit, &hci_stack->le_whitelist);
3528         while (btstack_linked_list_iterator_has_next(&lit)){
3529             whitelist_entry_t * entry = (whitelist_entry_t*) btstack_linked_list_iterator_next(&lit);
3530             if (entry->state & LE_WHITELIST_ADD_TO_CONTROLLER){
3531                 entry->state = LE_WHITELIST_ON_CONTROLLER;
3532                 hci_send_cmd(&hci_le_add_device_to_white_list, entry->address_type, entry->address);
3533                 return true;
3534             }
3535             if (entry->state & LE_WHITELIST_REMOVE_FROM_CONTROLLER){
3536                 bd_addr_t address;
3537                 bd_addr_type_t address_type = entry->address_type;
3538                 (void)memcpy(address, entry->address, 6);
3539                 btstack_linked_list_remove(&hci_stack->le_whitelist, (btstack_linked_item_t *) entry);
3540                 btstack_memory_whitelist_entry_free(entry);
3541                 hci_send_cmd(&hci_le_remove_device_from_white_list, address_type, address);
3542                 return true;
3543             }
3544         }
3545     }
3546 
3547     // start connecting
3548     if ( (hci_stack->le_connecting_state == LE_CONNECTING_IDLE) &&
3549          !btstack_linked_list_empty(&hci_stack->le_whitelist)){
3550         bd_addr_t null_addr;
3551         memset(null_addr, 0, 6);
3552         hci_send_cmd(&hci_le_create_connection,
3553                      hci_stack->le_connection_scan_interval,    // scan interval: 60 ms
3554                      hci_stack->le_connection_scan_window,    // scan interval: 30 ms
3555                      1,         // use whitelist
3556                      0,         // peer address type
3557                      null_addr, // peer bd addr
3558                      hci_stack->le_own_addr_type, // our addr type:
3559                      hci_stack->le_connection_interval_min,    // conn interval min
3560                      hci_stack->le_connection_interval_max,    // conn interval max
3561                      hci_stack->le_connection_latency,         // conn latency
3562                      hci_stack->le_supervision_timeout,        // conn latency
3563                      hci_stack->le_minimum_ce_length,          // min ce length
3564                      hci_stack->le_maximum_ce_length           // max ce length
3565         );
3566         return true;
3567     }
3568 #endif
3569     return false;
3570 }
3571 #endif
3572 
3573 static bool hci_run_general_pending_commmands(void){
3574     btstack_linked_item_t * it;
3575     for (it = (btstack_linked_item_t *) hci_stack->connections; it != NULL; it = it->next){
3576         hci_connection_t * connection = (hci_connection_t *) it;
3577 
3578         switch(connection->state){
3579             case SEND_CREATE_CONNECTION:
3580                 switch(connection->address_type){
3581 #ifdef ENABLE_CLASSIC
3582                     case BD_ADDR_TYPE_ACL:
3583                         log_info("sending hci_create_connection");
3584                         hci_send_cmd(&hci_create_connection, connection->address, hci_usable_acl_packet_types(), 0, 0, 0, hci_stack->allow_role_switch);
3585                         break;
3586 #endif
3587                     default:
3588 #ifdef ENABLE_BLE
3589 #ifdef ENABLE_LE_CENTRAL
3590                         // track outgoing connection
3591                         hci_stack->outgoing_addr_type = connection->address_type;
3592                         (void)memcpy(hci_stack->outgoing_addr,
3593                                      connection->address, 6);
3594                         log_info("sending hci_le_create_connection");
3595                         hci_send_cmd(&hci_le_create_connection,
3596                                      hci_stack->le_connection_scan_interval,    // conn scan interval
3597                                      hci_stack->le_connection_scan_window,      // conn scan windows
3598                                      0,         // don't use whitelist
3599                                      connection->address_type, // peer address type
3600                                      connection->address,      // peer bd addr
3601                                      hci_stack->le_own_addr_type, // our addr type:
3602                                      hci_stack->le_connection_interval_min,    // conn interval min
3603                                      hci_stack->le_connection_interval_max,    // conn interval max
3604                                      hci_stack->le_connection_latency,         // conn latency
3605                                      hci_stack->le_supervision_timeout,        // conn latency
3606                                      hci_stack->le_minimum_ce_length,          // min ce length
3607                                      hci_stack->le_maximum_ce_length          // max ce length
3608                         );
3609                         connection->state = SENT_CREATE_CONNECTION;
3610 #endif
3611 #endif
3612                         break;
3613                 }
3614                 return true;
3615 
3616 #ifdef ENABLE_CLASSIC
3617             case RECEIVED_CONNECTION_REQUEST:
3618                 connection->role  = HCI_ROLE_SLAVE;
3619                 if (connection->address_type == BD_ADDR_TYPE_ACL){
3620                     log_info("sending hci_accept_connection_request, remote eSCO %u", connection->remote_supported_feature_eSCO);
3621                     connection->state = ACCEPTED_CONNECTION_REQUEST;
3622                     hci_send_cmd(&hci_accept_connection_request, connection->address, hci_stack->master_slave_policy);
3623                 }
3624                 return true;
3625 #endif
3626 
3627 #ifdef ENABLE_BLE
3628 #ifdef ENABLE_LE_CENTRAL
3629             case SEND_CANCEL_CONNECTION:
3630                 connection->state = SENT_CANCEL_CONNECTION;
3631                 hci_send_cmd(&hci_le_create_connection_cancel);
3632                 return true;
3633 #endif
3634 #endif
3635             case SEND_DISCONNECT:
3636                 connection->state = SENT_DISCONNECT;
3637                 hci_send_cmd(&hci_disconnect, connection->con_handle, 0x13); // remote closed connection
3638                 return true;
3639 
3640             default:
3641                 break;
3642         }
3643 
3644         // no further commands if connection is about to get shut down
3645         if (connection->state == SENT_DISCONNECT) continue;
3646 
3647         if (connection->authentication_flags & READ_RSSI){
3648             connectionClearAuthenticationFlags(connection, READ_RSSI);
3649             hci_send_cmd(&hci_read_rssi, connection->con_handle);
3650             return true;
3651         }
3652 
3653 #ifdef ENABLE_CLASSIC
3654 
3655         if (connection->authentication_flags & WRITE_SUPERVISION_TIMEOUT){
3656             connectionClearAuthenticationFlags(connection, WRITE_SUPERVISION_TIMEOUT);
3657             hci_send_cmd(&hci_write_link_supervision_timeout, connection->con_handle, hci_stack->link_supervision_timeout);
3658             return true;
3659         }
3660 
3661         if (connection->authentication_flags & HANDLE_LINK_KEY_REQUEST){
3662             log_info("responding to link key request");
3663             connectionClearAuthenticationFlags(connection, HANDLE_LINK_KEY_REQUEST);
3664             link_key_t link_key;
3665             link_key_type_t link_key_type;
3666             if ( hci_stack->link_key_db
3667                  && hci_stack->link_key_db->get_link_key(connection->address, link_key, &link_key_type)
3668                  && (gap_security_level_for_link_key_type(link_key_type) >= connection->requested_security_level)){
3669                 connection->link_key_type = link_key_type;
3670                 hci_send_cmd(&hci_link_key_request_reply, connection->address, &link_key);
3671             } else {
3672                 hci_send_cmd(&hci_link_key_request_negative_reply, connection->address);
3673             }
3674             return true;
3675         }
3676 
3677         if (connection->authentication_flags & DENY_PIN_CODE_REQUEST){
3678             log_info("denying to pin request");
3679             connectionClearAuthenticationFlags(connection, DENY_PIN_CODE_REQUEST);
3680             hci_send_cmd(&hci_pin_code_request_negative_reply, connection->address);
3681             return true;
3682         }
3683 
3684         if (connection->authentication_flags & SEND_IO_CAPABILITIES_REPLY){
3685             connectionClearAuthenticationFlags(connection, SEND_IO_CAPABILITIES_REPLY);
3686             log_info("IO Capability Request received, stack bondable %u, io cap %u", hci_stack->bondable, hci_stack->ssp_io_capability);
3687             if (hci_stack->bondable && (hci_stack->ssp_io_capability != SSP_IO_CAPABILITY_UNKNOWN)){
3688                 // tweak authentication requirements
3689                 uint8_t authreq = hci_stack->ssp_authentication_requirement;
3690                 if (connection->bonding_flags & BONDING_DEDICATED){
3691                     authreq = SSP_IO_AUTHREQ_MITM_PROTECTION_NOT_REQUIRED_DEDICATED_BONDING;
3692                 }
3693                 if (gap_mitm_protection_required_for_security_level(connection->requested_security_level)){
3694                     authreq |= 1;
3695                 }
3696                 hci_send_cmd(&hci_io_capability_request_reply, &connection->address, hci_stack->ssp_io_capability, NULL, authreq);
3697             } else {
3698                 hci_send_cmd(&hci_io_capability_request_negative_reply, &connection->address, ERROR_CODE_PAIRING_NOT_ALLOWED);
3699             }
3700             return true;
3701         }
3702 
3703         if (connection->authentication_flags & SEND_USER_CONFIRM_REPLY){
3704             connectionClearAuthenticationFlags(connection, SEND_USER_CONFIRM_REPLY);
3705             hci_send_cmd(&hci_user_confirmation_request_reply, &connection->address);
3706             return true;
3707         }
3708 
3709         if (connection->authentication_flags & SEND_USER_PASSKEY_REPLY){
3710             connectionClearAuthenticationFlags(connection, SEND_USER_PASSKEY_REPLY);
3711             hci_send_cmd(&hci_user_passkey_request_reply, &connection->address, 000000);
3712             return true;
3713         }
3714 
3715         if (connection->bonding_flags & BONDING_REQUEST_REMOTE_FEATURES){
3716             connection->bonding_flags &= ~BONDING_REQUEST_REMOTE_FEATURES;
3717             hci_send_cmd(&hci_read_remote_supported_features_command, connection->con_handle);
3718             return true;
3719         }
3720 
3721         if (connection->bonding_flags & BONDING_DISCONNECT_DEDICATED_DONE){
3722             connection->bonding_flags &= ~BONDING_DISCONNECT_DEDICATED_DONE;
3723             connection->bonding_flags |= BONDING_EMIT_COMPLETE_ON_DISCONNECT;
3724             hci_send_cmd(&hci_disconnect, connection->con_handle, 0x13);  // authentication done
3725             return true;
3726         }
3727 
3728         if (connection->bonding_flags & BONDING_SEND_AUTHENTICATE_REQUEST){
3729             connection->bonding_flags &= ~BONDING_SEND_AUTHENTICATE_REQUEST;
3730             hci_send_cmd(&hci_authentication_requested, connection->con_handle);
3731             return true;
3732         }
3733 
3734         if (connection->bonding_flags & BONDING_SEND_ENCRYPTION_REQUEST){
3735             connection->bonding_flags &= ~BONDING_SEND_ENCRYPTION_REQUEST;
3736             hci_send_cmd(&hci_set_connection_encryption, connection->con_handle, 1);
3737             return true;
3738         }
3739         if (connection->bonding_flags & BONDING_SEND_READ_ENCRYPTION_KEY_SIZE){
3740             connection->bonding_flags &= ~BONDING_SEND_READ_ENCRYPTION_KEY_SIZE;
3741             hci_send_cmd(&hci_read_encryption_key_size, connection->con_handle, 1);
3742             return true;
3743         }
3744 #endif
3745 
3746         if (connection->bonding_flags & BONDING_DISCONNECT_SECURITY_BLOCK){
3747             connection->bonding_flags &= ~BONDING_DISCONNECT_SECURITY_BLOCK;
3748             hci_send_cmd(&hci_disconnect, connection->con_handle, 0x0005);  // authentication failure
3749             return true;
3750         }
3751 
3752 #ifdef ENABLE_CLASSIC
3753         uint16_t sniff_min_interval;
3754         switch (connection->sniff_min_interval){
3755             case 0:
3756                 break;
3757             case 0xffff:
3758                 connection->sniff_min_interval = 0;
3759                 hci_send_cmd(&hci_exit_sniff_mode, connection->con_handle);
3760                 return true;
3761             default:
3762                 sniff_min_interval = connection->sniff_min_interval;
3763                 connection->sniff_min_interval = 0;
3764                 hci_send_cmd(&hci_sniff_mode, connection->con_handle, connection->sniff_max_interval, sniff_min_interval, connection->sniff_attempt, connection->sniff_timeout);
3765                 return true;
3766         }
3767 #endif
3768 
3769 #ifdef ENABLE_BLE
3770         switch (connection->le_con_parameter_update_state){
3771             // response to L2CAP CON PARAMETER UPDATE REQUEST
3772             case CON_PARAMETER_UPDATE_CHANGE_HCI_CON_PARAMETERS:
3773                 connection->le_con_parameter_update_state = CON_PARAMETER_UPDATE_NONE;
3774                 hci_send_cmd(&hci_le_connection_update, connection->con_handle, connection->le_conn_interval_min,
3775                              connection->le_conn_interval_max, connection->le_conn_latency, connection->le_supervision_timeout,
3776                              0x0000, 0xffff);
3777                 return true;
3778             case CON_PARAMETER_UPDATE_REPLY:
3779                 connection->le_con_parameter_update_state = CON_PARAMETER_UPDATE_NONE;
3780                 hci_send_cmd(&hci_le_remote_connection_parameter_request_reply, connection->con_handle, connection->le_conn_interval_min,
3781                              connection->le_conn_interval_max, connection->le_conn_latency, connection->le_supervision_timeout,
3782                              0x0000, 0xffff);
3783                 return true;
3784             case CON_PARAMETER_UPDATE_NEGATIVE_REPLY:
3785                 connection->le_con_parameter_update_state = CON_PARAMETER_UPDATE_NONE;
3786                 hci_send_cmd(&hci_le_remote_connection_parameter_request_negative_reply, ERROR_CODE_UNSUPPORTED_LMP_PARAMETER_VALUE_UNSUPPORTED_LL_PARAMETER_VALUE);
3787                 return true;
3788             default:
3789                 break;
3790         }
3791         if (connection->le_phy_update_all_phys != 0xff){
3792             uint8_t all_phys = connection->le_phy_update_all_phys;
3793             connection->le_phy_update_all_phys = 0xff;
3794             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);
3795             return true;
3796         }
3797 #endif
3798     }
3799     return false;
3800 }
3801 
3802 static void hci_run(void){
3803 
3804     bool done;
3805 
3806     // send continuation fragments first, as they block the prepared packet buffer
3807     done = hci_run_acl_fragments();
3808     if (done) return;
3809 
3810 #ifdef ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL
3811     // send host num completed packets next as they don't require num_cmd_packets > 0
3812     if (!hci_can_send_comand_packet_transport()) return;
3813     if (hci_stack->host_completed_packets){
3814         hci_host_num_completed_packets();
3815         return;
3816     }
3817 #endif
3818 
3819     if (!hci_can_send_command_packet_now()) return;
3820 
3821     // global/non-connection oriented commands
3822 
3823 
3824 #ifdef ENABLE_CLASSIC
3825     // general gap classic
3826     done = hci_run_general_gap_classic();
3827     if (done) return;
3828 #endif
3829 
3830 #ifdef ENABLE_BLE
3831     // general gap le
3832     done = hci_run_general_gap_le();
3833     if (done) return;
3834 #endif
3835 
3836     // send pending HCI commands
3837     done = hci_run_general_pending_commmands();
3838     if (done) return;
3839 
3840     // stack state sub statemachines
3841     hci_connection_t * connection;
3842     switch (hci_stack->state){
3843         case HCI_STATE_INITIALIZING:
3844             hci_initializing_run();
3845             break;
3846 
3847         case HCI_STATE_HALTING:
3848 
3849             log_info("HCI_STATE_HALTING, substate %x\n", hci_stack->substate);
3850             switch (hci_stack->substate){
3851                 case HCI_HALTING_DISCONNECT_ALL_NO_TIMER:
3852                 case HCI_HALTING_DISCONNECT_ALL_TIMER:
3853 
3854 #ifdef ENABLE_BLE
3855 #ifdef ENABLE_LE_CENTRAL
3856                     // free whitelist entries
3857                     {
3858                         btstack_linked_list_iterator_t lit;
3859                         btstack_linked_list_iterator_init(&lit, &hci_stack->le_whitelist);
3860                         while (btstack_linked_list_iterator_has_next(&lit)){
3861                             whitelist_entry_t * entry = (whitelist_entry_t*) btstack_linked_list_iterator_next(&lit);
3862                             btstack_linked_list_remove(&hci_stack->le_whitelist, (btstack_linked_item_t *) entry);
3863                             btstack_memory_whitelist_entry_free(entry);
3864                         }
3865                     }
3866 #endif
3867 #endif
3868                     // close all open connections
3869                     connection =  (hci_connection_t *) hci_stack->connections;
3870                     if (connection){
3871                         hci_con_handle_t con_handle = (uint16_t) connection->con_handle;
3872                         if (!hci_can_send_command_packet_now()) return;
3873 
3874                         // check state
3875                         if (connection->state == SENT_DISCONNECT) return;
3876                         connection->state = SENT_DISCONNECT;
3877 
3878                         log_info("HCI_STATE_HALTING, connection %p, handle %u", connection, con_handle);
3879 
3880                         // cancel all l2cap connections right away instead of waiting for disconnection complete event ...
3881                         hci_emit_disconnection_complete(con_handle, 0x16); // terminated by local host
3882 
3883                         // ... which would be ignored anyway as we shutdown (free) the connection now
3884                         hci_shutdown_connection(connection);
3885 
3886                         // finally, send the disconnect command
3887                         hci_send_cmd(&hci_disconnect, con_handle, 0x13);  // remote closed connection
3888                         return;
3889                     }
3890 
3891                     if (hci_stack->substate == HCI_HALTING_DISCONNECT_ALL_TIMER){
3892                         // no connections left, wait a bit to assert that btstack_cyrpto isn't waiting for an HCI event
3893                         log_info("HCI_STATE_HALTING: wait 50 ms");
3894                         hci_stack->substate = HCI_HALTING_W4_TIMER;
3895                         btstack_run_loop_set_timer(&hci_stack->timeout, 50);
3896                         btstack_run_loop_set_timer_handler(&hci_stack->timeout, hci_halting_timeout_handler);
3897                         btstack_run_loop_add_timer(&hci_stack->timeout);
3898                         break;
3899                     }
3900 
3901                     /* fall through */
3902 
3903                 case HCI_HALTING_CLOSE:
3904                     log_info("HCI_STATE_HALTING, calling off");
3905 
3906                     // switch mode
3907                     hci_power_control_off();
3908 
3909                     log_info("HCI_STATE_HALTING, emitting state");
3910                     hci_emit_state();
3911                     log_info("HCI_STATE_HALTING, done");
3912                     break;
3913 
3914                 case HCI_HALTING_W4_TIMER:
3915                     // keep waiting
3916 
3917                     break;
3918                 default:
3919                     break;
3920             }
3921 
3922             break;
3923 
3924         case HCI_STATE_FALLING_ASLEEP:
3925             switch(hci_stack->substate) {
3926                 case HCI_FALLING_ASLEEP_DISCONNECT:
3927                     log_info("HCI_STATE_FALLING_ASLEEP");
3928                     // close all open connections
3929                     connection =  (hci_connection_t *) hci_stack->connections;
3930 
3931 #ifdef HAVE_PLATFORM_IPHONE_OS
3932                     // don't close connections, if H4 supports power management
3933                     if (btstack_control_iphone_power_management_enabled()){
3934                         connection = NULL;
3935                     }
3936 #endif
3937                     if (connection){
3938 
3939                         // send disconnect
3940                         if (!hci_can_send_command_packet_now()) return;
3941 
3942                         log_info("HCI_STATE_FALLING_ASLEEP, connection %p, handle %u", connection, (uint16_t)connection->con_handle);
3943                         hci_send_cmd(&hci_disconnect, connection->con_handle, 0x13);  // remote closed connection
3944 
3945                         // send disconnected event right away - causes higher layer connections to get closed, too.
3946                         hci_shutdown_connection(connection);
3947                         return;
3948                     }
3949 
3950                     if (hci_classic_supported()){
3951                         // disable page and inquiry scan
3952                         if (!hci_can_send_command_packet_now()) return;
3953 
3954                         log_info("HCI_STATE_HALTING, disabling inq scans");
3955                         hci_send_cmd(&hci_write_scan_enable, hci_stack->connectable << 1); // drop inquiry scan but keep page scan
3956 
3957                         // continue in next sub state
3958                         hci_stack->substate = HCI_FALLING_ASLEEP_W4_WRITE_SCAN_ENABLE;
3959                         break;
3960                     }
3961 
3962                     /* fall through */
3963 
3964                 case HCI_FALLING_ASLEEP_COMPLETE:
3965                     log_info("HCI_STATE_HALTING, calling sleep");
3966 #ifdef HAVE_PLATFORM_IPHONE_OS
3967                     // don't actually go to sleep, if H4 supports power management
3968                     if (btstack_control_iphone_power_management_enabled()){
3969                         // SLEEP MODE reached
3970                         hci_stack->state = HCI_STATE_SLEEPING;
3971                         hci_emit_state();
3972                         break;
3973                     }
3974 #endif
3975                     // switch mode
3976                     hci_power_control_sleep();  // changes hci_stack->state to SLEEP
3977                     hci_emit_state();
3978                     break;
3979 
3980                 default:
3981                     break;
3982             }
3983             break;
3984 
3985         default:
3986             break;
3987     }
3988 }
3989 
3990 int hci_send_cmd_packet(uint8_t *packet, int size){
3991     // house-keeping
3992 
3993     if (IS_COMMAND(packet, hci_write_loopback_mode)){
3994         hci_stack->loopback_mode = packet[3];
3995     }
3996 
3997 #ifdef ENABLE_CLASSIC
3998     bd_addr_t addr;
3999     hci_connection_t * conn;
4000 
4001     // create_connection?
4002     if (IS_COMMAND(packet, hci_create_connection)){
4003         reverse_bd_addr(&packet[3], addr);
4004         log_info("Create_connection to %s", bd_addr_to_str(addr));
4005 
4006         conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
4007         if (!conn){
4008             conn = create_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
4009             if (!conn){
4010                 // notify client that alloc failed
4011                 hci_emit_connection_complete(addr, 0, BTSTACK_MEMORY_ALLOC_FAILED);
4012                 return -1; // packet not sent to controller
4013             }
4014             conn->state = SEND_CREATE_CONNECTION;
4015         }
4016         log_info("conn state %u", conn->state);
4017         switch (conn->state){
4018             // if connection active exists
4019             case OPEN:
4020                 // and OPEN, emit connection complete command
4021                 hci_emit_connection_complete(addr, conn->con_handle, 0);
4022                 return -1; // packet not sent to controller
4023             case SEND_CREATE_CONNECTION:
4024                 // connection created by hci, e.g. dedicated bonding, but not executed yet, let's do it now
4025                 break;
4026             default:
4027                 // otherwise, just ignore as it is already in the open process
4028                 return -1; // packet not sent to controller
4029         }
4030         conn->state = SENT_CREATE_CONNECTION;
4031 
4032         // track outgoing connection
4033         hci_stack->outgoing_addr_type = BD_ADDR_TYPE_ACL;
4034         (void)memcpy(hci_stack->outgoing_addr, addr, 6);
4035     }
4036 
4037     else if (IS_COMMAND(packet, hci_link_key_request_reply)){
4038         hci_add_connection_flags_for_flipped_bd_addr(&packet[3], SENT_LINK_KEY_REPLY);
4039     }
4040     else if (IS_COMMAND(packet, hci_link_key_request_negative_reply)){
4041         hci_add_connection_flags_for_flipped_bd_addr(&packet[3], SENT_LINK_KEY_NEGATIVE_REQUEST);
4042     }
4043 
4044     else if (IS_COMMAND(packet, hci_delete_stored_link_key)){
4045         if (hci_stack->link_key_db){
4046             reverse_bd_addr(&packet[3], addr);
4047             hci_stack->link_key_db->delete_link_key(addr);
4048         }
4049     }
4050 
4051     else if (IS_COMMAND(packet, hci_pin_code_request_negative_reply)
4052     ||  IS_COMMAND(packet, hci_pin_code_request_reply)){
4053         reverse_bd_addr(&packet[3], addr);
4054         conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
4055         if (conn){
4056             connectionClearAuthenticationFlags(conn, LEGACY_PAIRING_ACTIVE);
4057         }
4058     }
4059 
4060     else if (IS_COMMAND(packet, hci_user_confirmation_request_negative_reply)
4061     ||  IS_COMMAND(packet, hci_user_confirmation_request_reply)
4062     ||  IS_COMMAND(packet, hci_user_passkey_request_negative_reply)
4063     ||  IS_COMMAND(packet, hci_user_passkey_request_reply)) {
4064         reverse_bd_addr(&packet[3], addr);
4065         conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
4066         if (conn){
4067             connectionClearAuthenticationFlags(conn, SSP_PAIRING_ACTIVE);
4068         }
4069     }
4070 
4071 #ifdef ENABLE_SCO_OVER_HCI
4072     // setup_synchronous_connection? Voice setting at offset 22
4073     else if (IS_COMMAND(packet, hci_setup_synchronous_connection)){
4074         // TODO: compare to current setting if sco connection already active
4075         hci_stack->sco_voice_setting_active = little_endian_read_16(packet, 15);
4076     }
4077     // accept_synchronus_connection? Voice setting at offset 18
4078     else if (IS_COMMAND(packet, hci_accept_synchronous_connection)){
4079         // TODO: compare to current setting if sco connection already active
4080         hci_stack->sco_voice_setting_active = little_endian_read_16(packet, 19);
4081     }
4082 #endif
4083 #endif
4084 
4085 #ifdef ENABLE_BLE
4086     else if (IS_COMMAND(packet, hci_le_set_random_address)){
4087         hci_stack->le_random_address_set = 1;
4088         reverse_bd_addr(&packet[3], hci_stack->le_random_address);
4089     }
4090 #ifdef ENABLE_LE_PERIPHERAL
4091     else if (IS_COMMAND(packet, hci_le_set_advertise_enable)){
4092         hci_stack->le_advertisements_active = packet[3];
4093     }
4094 #endif
4095 #ifdef ENABLE_LE_CENTRAL
4096     else if (IS_COMMAND(packet, hci_le_create_connection)){
4097         // white list used?
4098         uint8_t initiator_filter_policy = packet[7];
4099         switch (initiator_filter_policy){
4100             case 0:
4101                 // whitelist not used
4102                 hci_stack->le_connecting_state = LE_CONNECTING_DIRECT;
4103                 break;
4104             case 1:
4105                 hci_stack->le_connecting_state = LE_CONNECTING_WHITELIST;
4106                 break;
4107             default:
4108                 log_error("Invalid initiator_filter_policy in LE Create Connection %u", initiator_filter_policy);
4109                 break;
4110         }
4111     }
4112     else if (IS_COMMAND(packet, hci_le_create_connection_cancel)){
4113         hci_stack->le_connecting_state = LE_CONNECTING_IDLE;
4114     }
4115 #endif
4116 #endif
4117 
4118     hci_stack->num_cmd_packets--;
4119 
4120     hci_dump_packet(HCI_COMMAND_DATA_PACKET, 0, packet, size);
4121     return hci_stack->hci_transport->send_packet(HCI_COMMAND_DATA_PACKET, packet, size);
4122 }
4123 
4124 // disconnect because of security block
4125 void hci_disconnect_security_block(hci_con_handle_t con_handle){
4126     hci_connection_t * connection = hci_connection_for_handle(con_handle);
4127     if (!connection) return;
4128     connection->bonding_flags |= BONDING_DISCONNECT_SECURITY_BLOCK;
4129 }
4130 
4131 
4132 // Configure Secure Simple Pairing
4133 
4134 #ifdef ENABLE_CLASSIC
4135 
4136 // enable will enable SSP during init
4137 void gap_ssp_set_enable(int enable){
4138     hci_stack->ssp_enable = enable;
4139 }
4140 
4141 static int hci_local_ssp_activated(void){
4142     return gap_ssp_supported() && hci_stack->ssp_enable;
4143 }
4144 
4145 // if set, BTstack will respond to io capability request using authentication requirement
4146 void gap_ssp_set_io_capability(int io_capability){
4147     hci_stack->ssp_io_capability = io_capability;
4148 }
4149 void gap_ssp_set_authentication_requirement(int authentication_requirement){
4150     hci_stack->ssp_authentication_requirement = authentication_requirement;
4151 }
4152 
4153 // if set, BTstack will confirm a numberic comparion and enter '000000' if requested
4154 void gap_ssp_set_auto_accept(int auto_accept){
4155     hci_stack->ssp_auto_accept = auto_accept;
4156 }
4157 #endif
4158 
4159 // va_list part of hci_send_cmd
4160 int hci_send_cmd_va_arg(const hci_cmd_t *cmd, va_list argptr){
4161     if (!hci_can_send_command_packet_now()){
4162         log_error("hci_send_cmd called but cannot send packet now");
4163         return 0;
4164     }
4165 
4166     // for HCI INITIALIZATION
4167     // log_info("hci_send_cmd: opcode %04x", cmd->opcode);
4168     hci_stack->last_cmd_opcode = cmd->opcode;
4169 
4170     hci_reserve_packet_buffer();
4171     uint8_t * packet = hci_stack->hci_packet_buffer;
4172     uint16_t size = hci_cmd_create_from_template(packet, cmd, argptr);
4173     int err = hci_send_cmd_packet(packet, size);
4174 
4175     // release packet buffer for synchronous transport implementations
4176     if (hci_transport_synchronous()){
4177         hci_release_packet_buffer();
4178         hci_emit_transport_packet_sent();
4179     }
4180 
4181     return err;
4182 }
4183 
4184 /**
4185  * pre: numcmds >= 0 - it's allowed to send a command to the controller
4186  */
4187 int hci_send_cmd(const hci_cmd_t *cmd, ...){
4188     va_list argptr;
4189     va_start(argptr, cmd);
4190     int res = hci_send_cmd_va_arg(cmd, argptr);
4191     va_end(argptr);
4192     return res;
4193 }
4194 
4195 // Create various non-HCI events.
4196 // TODO: generalize, use table similar to hci_create_command
4197 
4198 static void hci_emit_event(uint8_t * event, uint16_t size, int dump){
4199     // dump packet
4200     if (dump) {
4201         hci_dump_packet( HCI_EVENT_PACKET, 0, event, size);
4202     }
4203 
4204     // dispatch to all event handlers
4205     btstack_linked_list_iterator_t it;
4206     btstack_linked_list_iterator_init(&it, &hci_stack->event_handlers);
4207     while (btstack_linked_list_iterator_has_next(&it)){
4208         btstack_packet_callback_registration_t * entry = (btstack_packet_callback_registration_t*) btstack_linked_list_iterator_next(&it);
4209         entry->callback(HCI_EVENT_PACKET, 0, event, size);
4210     }
4211 }
4212 
4213 static void hci_emit_acl_packet(uint8_t * packet, uint16_t size){
4214     if (!hci_stack->acl_packet_handler) return;
4215     hci_stack->acl_packet_handler(HCI_ACL_DATA_PACKET, 0, packet, size);
4216 }
4217 
4218 #ifdef ENABLE_CLASSIC
4219 static void hci_notify_if_sco_can_send_now(void){
4220     // notify SCO sender if waiting
4221     if (!hci_stack->sco_waiting_for_can_send_now) return;
4222     if (hci_can_send_sco_packet_now()){
4223         hci_stack->sco_waiting_for_can_send_now = 0;
4224         uint8_t event[2] = { HCI_EVENT_SCO_CAN_SEND_NOW, 0 };
4225         hci_dump_packet(HCI_EVENT_PACKET, 1, event, sizeof(event));
4226         hci_stack->sco_packet_handler(HCI_EVENT_PACKET, 0, event, sizeof(event));
4227     }
4228 }
4229 
4230 // parsing end emitting has been merged to reduce code size
4231 static void gap_inquiry_explode(uint8_t *packet, uint16_t size) {
4232     uint8_t event[19+GAP_INQUIRY_MAX_NAME_LEN];
4233 
4234     uint8_t * eir_data;
4235     ad_context_t context;
4236     const uint8_t * name;
4237     uint8_t         name_len;
4238 
4239     if (size < 3) return;
4240 
4241     int event_type = hci_event_packet_get_type(packet);
4242     int num_reserved_fields = (event_type == HCI_EVENT_INQUIRY_RESULT) ? 2 : 1;    // 2 for old event, 1 otherwise
4243     int num_responses       = hci_event_inquiry_result_get_num_responses(packet);
4244 
4245     switch (event_type){
4246         case HCI_EVENT_INQUIRY_RESULT:
4247         case HCI_EVENT_INQUIRY_RESULT_WITH_RSSI:
4248             if (size != (3 + (num_responses * 14))) return;
4249             break;
4250         case HCI_EVENT_EXTENDED_INQUIRY_RESPONSE:
4251             if (size != 257) return;
4252             if (num_responses != 1) return;
4253             break;
4254         default:
4255             return;
4256     }
4257 
4258     // event[1] is set at the end
4259     int i;
4260     for (i=0; i<num_responses;i++){
4261         memset(event, 0, sizeof(event));
4262         event[0] = GAP_EVENT_INQUIRY_RESULT;
4263         uint8_t event_size = 18;    // if name is not set by EIR
4264 
4265         (void)memcpy(&event[2], &packet[3 + (i * 6)], 6); // bd_addr
4266         event[8] =          packet[3 + (num_responses*(6))                         + (i*1)];     // page_scan_repetition_mode
4267         (void)memcpy(&event[9],
4268                      &packet[3 + (num_responses * (6 + 1 + num_reserved_fields)) + (i * 3)],
4269                      3); // class of device
4270         (void)memcpy(&event[12],
4271                      &packet[3 + (num_responses * (6 + 1 + num_reserved_fields + 3)) + (i * 2)],
4272                      2); // clock offset
4273 
4274         switch (event_type){
4275             case HCI_EVENT_INQUIRY_RESULT:
4276                 // 14,15,16,17 = 0, size 18
4277                 break;
4278             case HCI_EVENT_INQUIRY_RESULT_WITH_RSSI:
4279                 event[14] = 1;
4280                 event[15] = packet [3 + (num_responses*(6+1+num_reserved_fields+3+2)) + (i*1)]; // rssi
4281                 // 16,17 = 0, size 18
4282                 break;
4283             case HCI_EVENT_EXTENDED_INQUIRY_RESPONSE:
4284                 event[14] = 1;
4285                 event[15] = packet [3 + (num_responses*(6+1+num_reserved_fields+3+2)) + (i*1)]; // rssi
4286                 // for EIR packets, there is only one reponse in it
4287                 eir_data = &packet[3 + (6+1+num_reserved_fields+3+2+1)];
4288                 name = NULL;
4289                 // EIR data is 240 bytes in EIR event
4290                 for (ad_iterator_init(&context, 240, eir_data) ; ad_iterator_has_more(&context) ; ad_iterator_next(&context)){
4291                     uint8_t data_type    = ad_iterator_get_data_type(&context);
4292                     uint8_t data_size    = ad_iterator_get_data_len(&context);
4293                     const uint8_t * data = ad_iterator_get_data(&context);
4294                     // Prefer Complete Local Name over Shortend Local Name
4295                     switch (data_type){
4296                         case BLUETOOTH_DATA_TYPE_SHORTENED_LOCAL_NAME:
4297                             if (name) continue;
4298                             /* fall through */
4299                         case BLUETOOTH_DATA_TYPE_COMPLETE_LOCAL_NAME:
4300                             name = data;
4301                             name_len = data_size;
4302                             break;
4303                         default:
4304                             break;
4305                     }
4306                 }
4307                 if (name){
4308                     event[16] = 1;
4309                     // truncate name if needed
4310                     int len = btstack_min(name_len, GAP_INQUIRY_MAX_NAME_LEN);
4311                     event[17] = len;
4312                     (void)memcpy(&event[18], name, len);
4313                     event_size += len;
4314                 }
4315                 break;
4316         }
4317         event[1] = event_size - 2;
4318         hci_emit_event(event, event_size, 1);
4319     }
4320 }
4321 #endif
4322 
4323 void hci_emit_state(void){
4324     log_info("BTSTACK_EVENT_STATE %u", hci_stack->state);
4325     uint8_t event[3];
4326     event[0] = BTSTACK_EVENT_STATE;
4327     event[1] = sizeof(event) - 2;
4328     event[2] = hci_stack->state;
4329     hci_emit_event(event, sizeof(event), 1);
4330 }
4331 
4332 #ifdef ENABLE_CLASSIC
4333 static void hci_emit_connection_complete(bd_addr_t address, hci_con_handle_t con_handle, uint8_t status){
4334     uint8_t event[13];
4335     event[0] = HCI_EVENT_CONNECTION_COMPLETE;
4336     event[1] = sizeof(event) - 2;
4337     event[2] = status;
4338     little_endian_store_16(event, 3, con_handle);
4339     reverse_bd_addr(address, &event[5]);
4340     event[11] = 1; // ACL connection
4341     event[12] = 0; // encryption disabled
4342     hci_emit_event(event, sizeof(event), 1);
4343 }
4344 static void hci_emit_l2cap_check_timeout(hci_connection_t *conn){
4345     if (disable_l2cap_timeouts) return;
4346     log_info("L2CAP_EVENT_TIMEOUT_CHECK");
4347     uint8_t event[4];
4348     event[0] = L2CAP_EVENT_TIMEOUT_CHECK;
4349     event[1] = sizeof(event) - 2;
4350     little_endian_store_16(event, 2, conn->con_handle);
4351     hci_emit_event(event, sizeof(event), 1);
4352 }
4353 #endif
4354 
4355 #ifdef ENABLE_BLE
4356 #ifdef ENABLE_LE_CENTRAL
4357 static void hci_emit_le_connection_complete(uint8_t address_type, bd_addr_t address, hci_con_handle_t con_handle, uint8_t status){
4358     uint8_t event[21];
4359     event[0] = HCI_EVENT_LE_META;
4360     event[1] = sizeof(event) - 2;
4361     event[2] = HCI_SUBEVENT_LE_CONNECTION_COMPLETE;
4362     event[3] = status;
4363     little_endian_store_16(event, 4, con_handle);
4364     event[6] = 0; // TODO: role
4365     event[7] = address_type;
4366     reverse_bd_addr(address, &event[8]);
4367     little_endian_store_16(event, 14, 0); // interval
4368     little_endian_store_16(event, 16, 0); // latency
4369     little_endian_store_16(event, 18, 0); // supervision timeout
4370     event[20] = 0; // master clock accuracy
4371     hci_emit_event(event, sizeof(event), 1);
4372 }
4373 #endif
4374 #endif
4375 
4376 static void hci_emit_transport_packet_sent(void){
4377     // notify upper stack that it might be possible to send again
4378     uint8_t event[] = { HCI_EVENT_TRANSPORT_PACKET_SENT, 0};
4379     hci_emit_event(&event[0], sizeof(event), 0);  // don't dump
4380 }
4381 
4382 static void hci_emit_disconnection_complete(hci_con_handle_t con_handle, uint8_t reason){
4383     uint8_t event[6];
4384     event[0] = HCI_EVENT_DISCONNECTION_COMPLETE;
4385     event[1] = sizeof(event) - 2;
4386     event[2] = 0; // status = OK
4387     little_endian_store_16(event, 3, con_handle);
4388     event[5] = reason;
4389     hci_emit_event(event, sizeof(event), 1);
4390 }
4391 
4392 static void hci_emit_nr_connections_changed(void){
4393     log_info("BTSTACK_EVENT_NR_CONNECTIONS_CHANGED %u", nr_hci_connections());
4394     uint8_t event[3];
4395     event[0] = BTSTACK_EVENT_NR_CONNECTIONS_CHANGED;
4396     event[1] = sizeof(event) - 2;
4397     event[2] = nr_hci_connections();
4398     hci_emit_event(event, sizeof(event), 1);
4399 }
4400 
4401 static void hci_emit_hci_open_failed(void){
4402     log_info("BTSTACK_EVENT_POWERON_FAILED");
4403     uint8_t event[2];
4404     event[0] = BTSTACK_EVENT_POWERON_FAILED;
4405     event[1] = sizeof(event) - 2;
4406     hci_emit_event(event, sizeof(event), 1);
4407 }
4408 
4409 static void hci_emit_dedicated_bonding_result(bd_addr_t address, uint8_t status){
4410     log_info("hci_emit_dedicated_bonding_result %u ", status);
4411     uint8_t event[9];
4412     int pos = 0;
4413     event[pos++] = GAP_EVENT_DEDICATED_BONDING_COMPLETED;
4414     event[pos++] = sizeof(event) - 2;
4415     event[pos++] = status;
4416     reverse_bd_addr(address, &event[pos]);
4417     hci_emit_event(event, sizeof(event), 1);
4418 }
4419 
4420 
4421 #ifdef ENABLE_CLASSIC
4422 
4423 static void hci_emit_security_level(hci_con_handle_t con_handle, gap_security_level_t level){
4424     log_info("hci_emit_security_level %u for handle %x", level, con_handle);
4425     uint8_t event[5];
4426     int pos = 0;
4427     event[pos++] = GAP_EVENT_SECURITY_LEVEL;
4428     event[pos++] = sizeof(event) - 2;
4429     little_endian_store_16(event, 2, con_handle);
4430     pos += 2;
4431     event[pos++] = level;
4432     hci_emit_event(event, sizeof(event), 1);
4433 }
4434 
4435 static gap_security_level_t gap_security_level_for_connection(hci_connection_t * connection){
4436     if (!connection) return LEVEL_0;
4437     if ((connection->authentication_flags & CONNECTION_ENCRYPTED) == 0) return LEVEL_0;
4438     if (connection->encryption_key_size < hci_stack->gap_required_encyrption_key_size) return LEVEL_0;
4439     gap_security_level_t security_level = gap_security_level_for_link_key_type(connection->link_key_type);
4440     // LEVEL 4 always requires 128 bit encrytion key size
4441     if ((security_level == LEVEL_4) && (connection->encryption_key_size < 16)){
4442         security_level = LEVEL_3;
4443     }
4444     return security_level;
4445 }
4446 
4447 static void hci_emit_discoverable_enabled(uint8_t enabled){
4448     log_info("BTSTACK_EVENT_DISCOVERABLE_ENABLED %u", enabled);
4449     uint8_t event[3];
4450     event[0] = BTSTACK_EVENT_DISCOVERABLE_ENABLED;
4451     event[1] = sizeof(event) - 2;
4452     event[2] = enabled;
4453     hci_emit_event(event, sizeof(event), 1);
4454 }
4455 
4456 // query if remote side supports eSCO
4457 int hci_remote_esco_supported(hci_con_handle_t con_handle){
4458     hci_connection_t * connection = hci_connection_for_handle(con_handle);
4459     if (!connection) return 0;
4460     return connection->remote_supported_feature_eSCO;
4461 }
4462 
4463 // query if remote side supports SSP
4464 int hci_remote_ssp_supported(hci_con_handle_t con_handle){
4465     hci_connection_t * connection = hci_connection_for_handle(con_handle);
4466     if (!connection) return 0;
4467     return (connection->bonding_flags & BONDING_REMOTE_SUPPORTS_SSP) ? 1 : 0;
4468 }
4469 
4470 int gap_ssp_supported_on_both_sides(hci_con_handle_t handle){
4471     return hci_local_ssp_activated() && hci_remote_ssp_supported(handle);
4472 }
4473 
4474 // GAP API
4475 /**
4476  * @bbrief enable/disable bonding. default is enabled
4477  * @praram enabled
4478  */
4479 void gap_set_bondable_mode(int enable){
4480     hci_stack->bondable = enable ? 1 : 0;
4481 }
4482 /**
4483  * @brief Get bondable mode.
4484  * @return 1 if bondable
4485  */
4486 int gap_get_bondable_mode(void){
4487     return hci_stack->bondable;
4488 }
4489 
4490 /**
4491  * @brief map link keys to security levels
4492  */
4493 gap_security_level_t gap_security_level_for_link_key_type(link_key_type_t link_key_type){
4494     switch (link_key_type){
4495         case AUTHENTICATED_COMBINATION_KEY_GENERATED_FROM_P256:
4496             return LEVEL_4;
4497         case COMBINATION_KEY:
4498         case AUTHENTICATED_COMBINATION_KEY_GENERATED_FROM_P192:
4499             return LEVEL_3;
4500         default:
4501             return LEVEL_2;
4502     }
4503 }
4504 
4505 /**
4506  * @brief map link keys to secure connection yes/no
4507  */
4508 int gap_secure_connection_for_link_key_type(link_key_type_t link_key_type){
4509     switch (link_key_type){
4510         case AUTHENTICATED_COMBINATION_KEY_GENERATED_FROM_P256:
4511         case UNAUTHENTICATED_COMBINATION_KEY_GENERATED_FROM_P256:
4512             return 1;
4513         default:
4514             return 0;
4515     }
4516 }
4517 
4518 /**
4519  * @brief map link keys to authenticated
4520  */
4521 int gap_authenticated_for_link_key_type(link_key_type_t link_key_type){
4522     switch (link_key_type){
4523         case AUTHENTICATED_COMBINATION_KEY_GENERATED_FROM_P256:
4524         case AUTHENTICATED_COMBINATION_KEY_GENERATED_FROM_P192:
4525             return 1;
4526         default:
4527             return 0;
4528     }
4529 }
4530 
4531 int gap_mitm_protection_required_for_security_level(gap_security_level_t level){
4532     log_info("gap_mitm_protection_required_for_security_level %u", level);
4533     return level > LEVEL_2;
4534 }
4535 
4536 /**
4537  * @brief get current security level
4538  */
4539 gap_security_level_t gap_security_level(hci_con_handle_t con_handle){
4540     hci_connection_t * connection = hci_connection_for_handle(con_handle);
4541     if (!connection) return LEVEL_0;
4542     return gap_security_level_for_connection(connection);
4543 }
4544 
4545 /**
4546  * @brief request connection to device to
4547  * @result GAP_AUTHENTICATION_RESULT
4548  */
4549 void gap_request_security_level(hci_con_handle_t con_handle, gap_security_level_t requested_level){
4550     hci_connection_t * connection = hci_connection_for_handle(con_handle);
4551     if (!connection){
4552         hci_emit_security_level(con_handle, LEVEL_0);
4553         return;
4554     }
4555     gap_security_level_t current_level = gap_security_level(con_handle);
4556     log_info("gap_request_security_level requested level %u, planned level %u, current level %u",
4557         requested_level, connection->requested_security_level, current_level);
4558 
4559     // assumption: earlier requested security higher than current level => security request is active
4560     if (current_level < connection->requested_security_level){
4561         if (connection->requested_security_level < requested_level){
4562             // increase requested level as new level is higher
4563 
4564             // TODO: handle re-authentication when done
4565 
4566             connection->requested_security_level = requested_level;
4567         }
4568         return;
4569     }
4570 
4571     // no request active, notify if security sufficient
4572     if (requested_level <= current_level){
4573         hci_emit_security_level(con_handle, current_level);
4574         return;
4575     }
4576 
4577     // start pairing to increase security level
4578     connection->requested_security_level = requested_level;
4579 
4580 #if 0
4581     // sending encryption request without a link key results in an error.
4582     // TODO: figure out how to use it properly
4583 
4584     // would enabling ecnryption suffice (>= LEVEL_2)?
4585     if (hci_stack->link_key_db){
4586         link_key_type_t link_key_type;
4587         link_key_t      link_key;
4588         if (hci_stack->link_key_db->get_link_key( &connection->address, &link_key, &link_key_type)){
4589             if (gap_security_level_for_link_key_type(link_key_type) >= requested_level){
4590                 connection->bonding_flags |= BONDING_SEND_ENCRYPTION_REQUEST;
4591                 return;
4592             }
4593         }
4594     }
4595 #endif
4596 
4597     // start to authenticate connection
4598     connection->bonding_flags |= BONDING_SEND_AUTHENTICATE_REQUEST;
4599     hci_run();
4600 }
4601 
4602 /**
4603  * @brief start dedicated bonding with device. disconnect after bonding
4604  * @param device
4605  * @param request MITM protection
4606  * @result GAP_DEDICATED_BONDING_COMPLETE
4607  */
4608 int gap_dedicated_bonding(bd_addr_t device, int mitm_protection_required){
4609 
4610     // create connection state machine
4611     hci_connection_t * connection = create_connection_for_bd_addr_and_type(device, BD_ADDR_TYPE_ACL);
4612 
4613     if (!connection){
4614         return BTSTACK_MEMORY_ALLOC_FAILED;
4615     }
4616 
4617     // delete linkn key
4618     gap_drop_link_key_for_bd_addr(device);
4619 
4620     // configure LEVEL_2/3, dedicated bonding
4621     connection->state = SEND_CREATE_CONNECTION;
4622     connection->requested_security_level = mitm_protection_required ? LEVEL_3 : LEVEL_2;
4623     log_info("gap_dedicated_bonding, mitm %d -> level %u", mitm_protection_required, connection->requested_security_level);
4624     connection->bonding_flags = BONDING_DEDICATED;
4625 
4626     // wait for GAP Security Result and send GAP Dedicated Bonding complete
4627 
4628     // handle: connnection failure (connection complete != ok)
4629     // handle: authentication failure
4630     // handle: disconnect on done
4631 
4632     hci_run();
4633 
4634     return 0;
4635 }
4636 #endif
4637 
4638 void gap_set_local_name(const char * local_name){
4639     hci_stack->local_name = local_name;
4640 }
4641 
4642 
4643 #ifdef ENABLE_BLE
4644 
4645 #ifdef ENABLE_LE_CENTRAL
4646 void gap_start_scan(void){
4647     hci_stack->le_scanning_enabled = 1;
4648     hci_run();
4649 }
4650 
4651 void gap_stop_scan(void){
4652     hci_stack->le_scanning_enabled = 0;
4653     hci_run();
4654 }
4655 
4656 void gap_set_scan_parameters(uint8_t scan_type, uint16_t scan_interval, uint16_t scan_window){
4657     hci_stack->le_scan_type     = scan_type;
4658     hci_stack->le_scan_interval = scan_interval;
4659     hci_stack->le_scan_window   = scan_window;
4660     hci_run();
4661 }
4662 
4663 uint8_t gap_connect(bd_addr_t addr, bd_addr_type_t addr_type){
4664     hci_connection_t * conn = hci_connection_for_bd_addr_and_type(addr, addr_type);
4665     if (!conn){
4666         log_info("gap_connect: no connection exists yet, creating context");
4667         conn = create_connection_for_bd_addr_and_type(addr, addr_type);
4668         if (!conn){
4669             // notify client that alloc failed
4670             hci_emit_le_connection_complete(addr_type, addr, 0, BTSTACK_MEMORY_ALLOC_FAILED);
4671             log_info("gap_connect: failed to alloc hci_connection_t");
4672             return GATT_CLIENT_NOT_CONNECTED; // don't sent packet to controller
4673         }
4674         conn->state = SEND_CREATE_CONNECTION;
4675         log_info("gap_connect: send create connection next");
4676         hci_run();
4677         return 0;
4678     }
4679 
4680     if (!hci_is_le_connection(conn) ||
4681         (conn->state == SEND_CREATE_CONNECTION) ||
4682         (conn->state == SENT_CREATE_CONNECTION)) {
4683         hci_emit_le_connection_complete(conn->address_type, conn->address, 0, ERROR_CODE_COMMAND_DISALLOWED);
4684         log_error("gap_connect: classic connection or connect is already being created");
4685         return GATT_CLIENT_IN_WRONG_STATE;
4686     }
4687 
4688     log_info("gap_connect: context exists with state %u", conn->state);
4689     hci_emit_le_connection_complete(conn->address_type, conn->address, conn->con_handle, 0);
4690     hci_run();
4691     return 0;
4692 }
4693 
4694 // @assumption: only a single outgoing LE Connection exists
4695 static hci_connection_t * gap_get_outgoing_connection(void){
4696     btstack_linked_item_t *it;
4697     for (it = (btstack_linked_item_t *) hci_stack->connections; it != NULL; it = it->next){
4698         hci_connection_t * conn = (hci_connection_t *) it;
4699         if (!hci_is_le_connection(conn)) continue;
4700         switch (conn->state){
4701             case SEND_CREATE_CONNECTION:
4702             case SENT_CREATE_CONNECTION:
4703             case SENT_CANCEL_CONNECTION:
4704                 return conn;
4705             default:
4706                 break;
4707         };
4708     }
4709     return NULL;
4710 }
4711 
4712 uint8_t gap_connect_cancel(void){
4713     hci_connection_t * conn = gap_get_outgoing_connection();
4714     if (!conn) return 0;
4715     switch (conn->state){
4716         case SEND_CREATE_CONNECTION:
4717             // skip sending create connection and emit event instead
4718             hci_emit_le_connection_complete(conn->address_type, conn->address, 0, ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER);
4719             btstack_linked_list_remove(&hci_stack->connections, (btstack_linked_item_t *) conn);
4720             btstack_memory_hci_connection_free( conn );
4721             break;
4722         case SENT_CREATE_CONNECTION:
4723             // request to send cancel connection
4724             conn->state = SEND_CANCEL_CONNECTION;
4725             hci_run();
4726             break;
4727         default:
4728             break;
4729     }
4730     return 0;
4731 }
4732 #endif
4733 
4734 #ifdef ENABLE_LE_CENTRAL
4735 /**
4736  * @brief Set connection parameters for outgoing connections
4737  * @param conn_scan_interval (unit: 0.625 msec), default: 60 ms
4738  * @param conn_scan_window (unit: 0.625 msec), default: 30 ms
4739  * @param conn_interval_min (unit: 1.25ms), default: 10 ms
4740  * @param conn_interval_max (unit: 1.25ms), default: 30 ms
4741  * @param conn_latency, default: 4
4742  * @param supervision_timeout (unit: 10ms), default: 720 ms
4743  * @param min_ce_length (unit: 0.625ms), default: 10 ms
4744  * @param max_ce_length (unit: 0.625ms), default: 30 ms
4745  */
4746 
4747 void gap_set_connection_parameters(uint16_t conn_scan_interval, uint16_t conn_scan_window,
4748     uint16_t conn_interval_min, uint16_t conn_interval_max, uint16_t conn_latency,
4749     uint16_t supervision_timeout, uint16_t min_ce_length, uint16_t max_ce_length){
4750     hci_stack->le_connection_scan_interval = conn_scan_interval;
4751     hci_stack->le_connection_scan_window = conn_scan_window;
4752     hci_stack->le_connection_interval_min = conn_interval_min;
4753     hci_stack->le_connection_interval_max = conn_interval_max;
4754     hci_stack->le_connection_latency = conn_latency;
4755     hci_stack->le_supervision_timeout = supervision_timeout;
4756     hci_stack->le_minimum_ce_length = min_ce_length;
4757     hci_stack->le_maximum_ce_length = max_ce_length;
4758 }
4759 #endif
4760 
4761 /**
4762  * @brief Updates the connection parameters for a given LE connection
4763  * @param handle
4764  * @param conn_interval_min (unit: 1.25ms)
4765  * @param conn_interval_max (unit: 1.25ms)
4766  * @param conn_latency
4767  * @param supervision_timeout (unit: 10ms)
4768  * @returns 0 if ok
4769  */
4770 int gap_update_connection_parameters(hci_con_handle_t con_handle, uint16_t conn_interval_min,
4771     uint16_t conn_interval_max, uint16_t conn_latency, uint16_t supervision_timeout){
4772     hci_connection_t * connection = hci_connection_for_handle(con_handle);
4773     if (!connection) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
4774     connection->le_conn_interval_min = conn_interval_min;
4775     connection->le_conn_interval_max = conn_interval_max;
4776     connection->le_conn_latency = conn_latency;
4777     connection->le_supervision_timeout = supervision_timeout;
4778     connection->le_con_parameter_update_state = CON_PARAMETER_UPDATE_CHANGE_HCI_CON_PARAMETERS;
4779     hci_run();
4780     return 0;
4781 }
4782 
4783 /**
4784  * @brief Request an update of the connection parameter for a given LE connection
4785  * @param handle
4786  * @param conn_interval_min (unit: 1.25ms)
4787  * @param conn_interval_max (unit: 1.25ms)
4788  * @param conn_latency
4789  * @param supervision_timeout (unit: 10ms)
4790  * @returns 0 if ok
4791  */
4792 int gap_request_connection_parameter_update(hci_con_handle_t con_handle, uint16_t conn_interval_min,
4793     uint16_t conn_interval_max, uint16_t conn_latency, uint16_t supervision_timeout){
4794     hci_connection_t * connection = hci_connection_for_handle(con_handle);
4795     if (!connection) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
4796     connection->le_conn_interval_min = conn_interval_min;
4797     connection->le_conn_interval_max = conn_interval_max;
4798     connection->le_conn_latency = conn_latency;
4799     connection->le_supervision_timeout = supervision_timeout;
4800     connection->le_con_parameter_update_state = CON_PARAMETER_UPDATE_SEND_REQUEST;
4801     uint8_t l2cap_trigger_run_event[2] = { L2CAP_EVENT_TRIGGER_RUN, 0};
4802     hci_emit_event(l2cap_trigger_run_event, sizeof(l2cap_trigger_run_event), 0);
4803     return 0;
4804 }
4805 
4806 #ifdef ENABLE_LE_PERIPHERAL
4807 
4808 static void gap_advertisments_changed(void){
4809     // disable advertisements before updating adv, scan data, or adv params
4810     if (hci_stack->le_advertisements_active){
4811         hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_DISABLE | LE_ADVERTISEMENT_TASKS_ENABLE;
4812     }
4813     hci_run();
4814 }
4815 
4816 /**
4817  * @brief Set Advertisement Data
4818  * @param advertising_data_length
4819  * @param advertising_data (max 31 octets)
4820  * @note data is not copied, pointer has to stay valid
4821  */
4822 void gap_advertisements_set_data(uint8_t advertising_data_length, uint8_t * advertising_data){
4823     hci_stack->le_advertisements_data_len = advertising_data_length;
4824     hci_stack->le_advertisements_data = advertising_data;
4825     hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_SET_ADV_DATA;
4826     gap_advertisments_changed();
4827 }
4828 
4829 /**
4830  * @brief Set Scan Response Data
4831  * @param advertising_data_length
4832  * @param advertising_data (max 31 octets)
4833  * @note data is not copied, pointer has to stay valid
4834  */
4835 void gap_scan_response_set_data(uint8_t scan_response_data_length, uint8_t * scan_response_data){
4836     hci_stack->le_scan_response_data_len = scan_response_data_length;
4837     hci_stack->le_scan_response_data = scan_response_data;
4838     hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_SET_SCAN_DATA;
4839     gap_advertisments_changed();
4840 }
4841 
4842 /**
4843  * @brief Set Advertisement Parameters
4844  * @param adv_int_min
4845  * @param adv_int_max
4846  * @param adv_type
4847  * @param direct_address_type
4848  * @param direct_address
4849  * @param channel_map
4850  * @param filter_policy
4851  *
4852  * @note internal use. use gap_advertisements_set_params from gap_le.h instead.
4853  */
4854  void hci_le_advertisements_set_params(uint16_t adv_int_min, uint16_t adv_int_max, uint8_t adv_type,
4855     uint8_t direct_address_typ, bd_addr_t direct_address,
4856     uint8_t channel_map, uint8_t filter_policy) {
4857 
4858     hci_stack->le_advertisements_interval_min = adv_int_min;
4859     hci_stack->le_advertisements_interval_max = adv_int_max;
4860     hci_stack->le_advertisements_type = adv_type;
4861     hci_stack->le_advertisements_direct_address_type = direct_address_typ;
4862     hci_stack->le_advertisements_channel_map = channel_map;
4863     hci_stack->le_advertisements_filter_policy = filter_policy;
4864     (void)memcpy(hci_stack->le_advertisements_direct_address, direct_address,
4865                  6);
4866 
4867     hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_SET_PARAMS;
4868     gap_advertisments_changed();
4869  }
4870 
4871 /**
4872  * @brief Enable/Disable Advertisements
4873  * @param enabled
4874  */
4875 void gap_advertisements_enable(int enabled){
4876     hci_stack->le_advertisements_enabled = enabled;
4877     if (enabled && !hci_stack->le_advertisements_active){
4878         hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_ENABLE;
4879     }
4880     if (!enabled && hci_stack->le_advertisements_active){
4881         hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_DISABLE;
4882     }
4883     hci_run();
4884 }
4885 
4886 #endif
4887 
4888 void hci_le_set_own_address_type(uint8_t own_address_type){
4889     log_info("hci_le_set_own_address_type: old %u, new %u", hci_stack->le_own_addr_type, own_address_type);
4890     if (own_address_type == hci_stack->le_own_addr_type) return;
4891     hci_stack->le_own_addr_type = own_address_type;
4892 
4893 #ifdef ENABLE_LE_PERIPHERAL
4894     // update advertisement parameters, too
4895     hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_SET_PARAMS;
4896     gap_advertisments_changed();
4897 #endif
4898 #ifdef ENABLE_LE_CENTRAL
4899     // note: we don't update scan parameters or modify ongoing connection attempts
4900 #endif
4901 }
4902 
4903 #endif
4904 
4905 uint8_t gap_disconnect(hci_con_handle_t handle){
4906     hci_connection_t * conn = hci_connection_for_handle(handle);
4907     if (!conn){
4908         hci_emit_disconnection_complete(handle, 0);
4909         return 0;
4910     }
4911     // ignore if already disconnected
4912     if (conn->state == RECEIVED_DISCONNECTION_COMPLETE){
4913         return 0;
4914     }
4915     conn->state = SEND_DISCONNECT;
4916     hci_run();
4917     return 0;
4918 }
4919 
4920 int gap_read_rssi(hci_con_handle_t con_handle){
4921     hci_connection_t * hci_connection = hci_connection_for_handle(con_handle);
4922     if (hci_connection == NULL) return 0;
4923     connectionSetAuthenticationFlags(hci_connection, READ_RSSI);
4924     hci_run();
4925     return 1;
4926 }
4927 
4928 /**
4929  * @brief Get connection type
4930  * @param con_handle
4931  * @result connection_type
4932  */
4933 gap_connection_type_t gap_get_connection_type(hci_con_handle_t connection_handle){
4934     hci_connection_t * conn = hci_connection_for_handle(connection_handle);
4935     if (!conn) return GAP_CONNECTION_INVALID;
4936     switch (conn->address_type){
4937         case BD_ADDR_TYPE_LE_PUBLIC:
4938         case BD_ADDR_TYPE_LE_RANDOM:
4939             return GAP_CONNECTION_LE;
4940         case BD_ADDR_TYPE_SCO:
4941             return GAP_CONNECTION_SCO;
4942         case BD_ADDR_TYPE_ACL:
4943             return GAP_CONNECTION_ACL;
4944         default:
4945             return GAP_CONNECTION_INVALID;
4946     }
4947 }
4948 
4949 #ifdef ENABLE_BLE
4950 
4951 uint8_t gap_le_set_phy(hci_con_handle_t connection_handle, uint8_t all_phys, uint8_t tx_phys, uint8_t rx_phys, uint8_t phy_options){
4952     hci_connection_t * conn = hci_connection_for_handle(connection_handle);
4953     if (!conn) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
4954 
4955     conn->le_phy_update_all_phys    = all_phys;
4956     conn->le_phy_update_tx_phys     = tx_phys;
4957     conn->le_phy_update_rx_phys     = rx_phys;
4958     conn->le_phy_update_phy_options = phy_options;
4959 
4960     hci_run();
4961 
4962     return 0;
4963 }
4964 
4965 #ifdef ENABLE_LE_CENTRAL
4966 /**
4967  * @brief Auto Connection Establishment - Start Connecting to device
4968  * @param address_typ
4969  * @param address
4970  * @returns 0 if ok
4971  */
4972 int gap_auto_connection_start(bd_addr_type_t address_type, bd_addr_t address){
4973     // check capacity
4974     int num_entries = btstack_linked_list_count(&hci_stack->le_whitelist);
4975     if (num_entries >= hci_stack->le_whitelist_capacity) return ERROR_CODE_MEMORY_CAPACITY_EXCEEDED;
4976     whitelist_entry_t * entry = btstack_memory_whitelist_entry_get();
4977     if (!entry) return BTSTACK_MEMORY_ALLOC_FAILED;
4978     entry->address_type = address_type;
4979     (void)memcpy(entry->address, address, 6);
4980     entry->state = LE_WHITELIST_ADD_TO_CONTROLLER;
4981     btstack_linked_list_add(&hci_stack->le_whitelist, (btstack_linked_item_t*) entry);
4982     hci_run();
4983     return 0;
4984 }
4985 
4986 static void hci_remove_from_whitelist(bd_addr_type_t address_type, bd_addr_t address){
4987     btstack_linked_list_iterator_t it;
4988     btstack_linked_list_iterator_init(&it, &hci_stack->le_whitelist);
4989     while (btstack_linked_list_iterator_has_next(&it)){
4990         whitelist_entry_t * entry = (whitelist_entry_t*) btstack_linked_list_iterator_next(&it);
4991         if (entry->address_type != address_type) continue;
4992         if (memcmp(entry->address, address, 6) != 0) continue;
4993         if (entry->state & LE_WHITELIST_ON_CONTROLLER){
4994             // remove from controller if already present
4995             entry->state |= LE_WHITELIST_REMOVE_FROM_CONTROLLER;
4996             continue;
4997         }
4998         // direclty remove entry from whitelist
4999         btstack_linked_list_iterator_remove(&it);
5000         btstack_memory_whitelist_entry_free(entry);
5001     }
5002 }
5003 
5004 /**
5005  * @brief Auto Connection Establishment - Stop Connecting to device
5006  * @param address_typ
5007  * @param address
5008  * @returns 0 if ok
5009  */
5010 int gap_auto_connection_stop(bd_addr_type_t address_type, bd_addr_t address){
5011     hci_remove_from_whitelist(address_type, address);
5012     hci_run();
5013     return 0;
5014 }
5015 
5016 /**
5017  * @brief Auto Connection Establishment - Stop everything
5018  * @note  Convenience function to stop all active auto connection attempts
5019  */
5020 void gap_auto_connection_stop_all(void){
5021     btstack_linked_list_iterator_t it;
5022     btstack_linked_list_iterator_init(&it, &hci_stack->le_whitelist);
5023     while (btstack_linked_list_iterator_has_next(&it)){
5024         whitelist_entry_t * entry = (whitelist_entry_t*) btstack_linked_list_iterator_next(&it);
5025         if (entry->state & LE_WHITELIST_ON_CONTROLLER){
5026             // remove from controller if already present
5027             entry->state |= LE_WHITELIST_REMOVE_FROM_CONTROLLER;
5028             continue;
5029         }
5030         // directly remove entry from whitelist
5031         btstack_linked_list_iterator_remove(&it);
5032         btstack_memory_whitelist_entry_free(entry);
5033     }
5034     hci_run();
5035 }
5036 
5037 uint16_t gap_le_connection_interval(hci_con_handle_t connection_handle){
5038     hci_connection_t * conn = hci_connection_for_handle(connection_handle);
5039     if (!conn) return 0;
5040     return conn->le_connection_interval;
5041 }
5042 #endif
5043 #endif
5044 
5045 #ifdef ENABLE_CLASSIC
5046 /**
5047  * @brief Set Extended Inquiry Response data
5048  * @param eir_data size 240 bytes, is not copied make sure memory is accessible during stack startup
5049  * @note has to be done before stack starts up
5050  */
5051 void gap_set_extended_inquiry_response(const uint8_t * data){
5052     hci_stack->eir_data = data;
5053 }
5054 
5055 /**
5056  * @brief Start GAP Classic Inquiry
5057  * @param duration in 1.28s units
5058  * @return 0 if ok
5059  * @events: GAP_EVENT_INQUIRY_RESULT, GAP_EVENT_INQUIRY_COMPLETE
5060  */
5061 int gap_inquiry_start(uint8_t duration_in_1280ms_units){
5062     if (hci_stack->state != HCI_STATE_WORKING) return ERROR_CODE_COMMAND_DISALLOWED;
5063     if (hci_stack->inquiry_state != GAP_INQUIRY_STATE_IDLE) return ERROR_CODE_COMMAND_DISALLOWED;
5064     if ((duration_in_1280ms_units < GAP_INQUIRY_DURATION_MIN) || (duration_in_1280ms_units > GAP_INQUIRY_DURATION_MAX)){
5065         return ERROR_CODE_INVALID_HCI_COMMAND_PARAMETERS;
5066     }
5067     hci_stack->inquiry_state = duration_in_1280ms_units;
5068     hci_run();
5069     return 0;
5070 }
5071 
5072 /**
5073  * @brief Stop GAP Classic Inquiry
5074  * @returns 0 if ok
5075  */
5076 int gap_inquiry_stop(void){
5077     if ((hci_stack->inquiry_state >= GAP_INQUIRY_DURATION_MIN) && (hci_stack->inquiry_state <= GAP_INQUIRY_DURATION_MAX)) {
5078         // emit inquiry complete event, before it even started
5079         uint8_t event[] = { GAP_EVENT_INQUIRY_COMPLETE, 1, 0};
5080         hci_emit_event(event, sizeof(event), 1);
5081         return 0;
5082     }
5083     if (hci_stack->inquiry_state != GAP_INQUIRY_STATE_ACTIVE) return ERROR_CODE_COMMAND_DISALLOWED;
5084     hci_stack->inquiry_state = GAP_INQUIRY_STATE_W2_CANCEL;
5085     hci_run();
5086     return 0;
5087 }
5088 
5089 
5090 /**
5091  * @brief Remote Name Request
5092  * @param addr
5093  * @param page_scan_repetition_mode
5094  * @param clock_offset only used when bit 15 is set
5095  * @events: HCI_EVENT_REMOTE_NAME_REQUEST_COMPLETE
5096  */
5097 int gap_remote_name_request(bd_addr_t addr, uint8_t page_scan_repetition_mode, uint16_t clock_offset){
5098     if (hci_stack->remote_name_state != GAP_REMOTE_NAME_STATE_IDLE) return ERROR_CODE_COMMAND_DISALLOWED;
5099     (void)memcpy(hci_stack->remote_name_addr, addr, 6);
5100     hci_stack->remote_name_page_scan_repetition_mode = page_scan_repetition_mode;
5101     hci_stack->remote_name_clock_offset = clock_offset;
5102     hci_stack->remote_name_state = GAP_REMOTE_NAME_STATE_W2_SEND;
5103     hci_run();
5104     return 0;
5105 }
5106 
5107 static int gap_pairing_set_state_and_run(bd_addr_t addr, uint8_t state){
5108     hci_stack->gap_pairing_state = state;
5109     (void)memcpy(hci_stack->gap_pairing_addr, addr, 6);
5110     hci_run();
5111     return 0;
5112 }
5113 
5114 /**
5115  * @brief Legacy Pairing Pin Code Response
5116  * @param addr
5117  * @param pin
5118  * @return 0 if ok
5119  */
5120 int gap_pin_code_response(bd_addr_t addr, const char * pin){
5121     if (hci_stack->gap_pairing_state != GAP_PAIRING_STATE_IDLE) return ERROR_CODE_COMMAND_DISALLOWED;
5122     hci_stack->gap_pairing_input.gap_pairing_pin = pin;
5123     return gap_pairing_set_state_and_run(addr, GAP_PAIRING_STATE_SEND_PIN);
5124 }
5125 
5126 /**
5127  * @brief Abort Legacy Pairing
5128  * @param addr
5129  * @param pin
5130  * @return 0 if ok
5131  */
5132 int gap_pin_code_negative(bd_addr_t addr){
5133     if (hci_stack->gap_pairing_state != GAP_PAIRING_STATE_IDLE) return ERROR_CODE_COMMAND_DISALLOWED;
5134     return gap_pairing_set_state_and_run(addr, GAP_PAIRING_STATE_SEND_PIN_NEGATIVE);
5135 }
5136 
5137 /**
5138  * @brief SSP Passkey Response
5139  * @param addr
5140  * @param passkey
5141  * @return 0 if ok
5142  */
5143 int gap_ssp_passkey_response(bd_addr_t addr, uint32_t passkey){
5144     if (hci_stack->gap_pairing_state != GAP_PAIRING_STATE_IDLE) return ERROR_CODE_COMMAND_DISALLOWED;
5145     hci_stack->gap_pairing_input.gap_pairing_passkey = passkey;
5146     return gap_pairing_set_state_and_run(addr, GAP_PAIRING_STATE_SEND_PASSKEY);
5147 }
5148 
5149 /**
5150  * @brief Abort SSP Passkey Entry/Pairing
5151  * @param addr
5152  * @param pin
5153  * @return 0 if ok
5154  */
5155 int gap_ssp_passkey_negative(bd_addr_t addr){
5156     if (hci_stack->gap_pairing_state != GAP_PAIRING_STATE_IDLE) return ERROR_CODE_COMMAND_DISALLOWED;
5157     return gap_pairing_set_state_and_run(addr, GAP_PAIRING_STATE_SEND_PASSKEY_NEGATIVE);
5158 }
5159 
5160 /**
5161  * @brief Accept SSP Numeric Comparison
5162  * @param addr
5163  * @param passkey
5164  * @return 0 if ok
5165  */
5166 int gap_ssp_confirmation_response(bd_addr_t addr){
5167     if (hci_stack->gap_pairing_state != GAP_PAIRING_STATE_IDLE) return ERROR_CODE_COMMAND_DISALLOWED;
5168     return gap_pairing_set_state_and_run(addr, GAP_PAIRING_STATE_SEND_CONFIRMATION);
5169 }
5170 
5171 /**
5172  * @brief Abort SSP Numeric Comparison/Pairing
5173  * @param addr
5174  * @param pin
5175  * @return 0 if ok
5176  */
5177 int gap_ssp_confirmation_negative(bd_addr_t addr){
5178     if (hci_stack->gap_pairing_state != GAP_PAIRING_STATE_IDLE) return ERROR_CODE_COMMAND_DISALLOWED;
5179     return gap_pairing_set_state_and_run(addr, GAP_PAIRING_STATE_SEND_CONFIRMATION_NEGATIVE);
5180 }
5181 
5182 /**
5183  * @brief Set inquiry mode: standard, with RSSI, with RSSI + Extended Inquiry Results. Has to be called before power on.
5184  * @param inquiry_mode see bluetooth_defines.h
5185  */
5186 void hci_set_inquiry_mode(inquiry_mode_t mode){
5187     hci_stack->inquiry_mode = mode;
5188 }
5189 
5190 /**
5191  * @brief Configure Voice Setting for use with SCO data in HSP/HFP
5192  */
5193 void hci_set_sco_voice_setting(uint16_t voice_setting){
5194     hci_stack->sco_voice_setting = voice_setting;
5195 }
5196 
5197 /**
5198  * @brief Get SCO Voice Setting
5199  * @return current voice setting
5200  */
5201 uint16_t hci_get_sco_voice_setting(void){
5202     return hci_stack->sco_voice_setting;
5203 }
5204 
5205 static int hci_have_usb_transport(void){
5206     if (!hci_stack->hci_transport) return 0;
5207     const char * transport_name = hci_stack->hci_transport->name;
5208     if (!transport_name) return 0;
5209     return (transport_name[0] == 'H') && (transport_name[1] == '2');
5210 }
5211 
5212 /** @brief Get SCO packet length for current SCO Voice setting
5213  *  @note  Using SCO packets of the exact length is required for USB transfer
5214  *  @return Length of SCO packets in bytes (not audio frames)
5215  */
5216 int hci_get_sco_packet_length(void){
5217     int sco_packet_length = 0;
5218 
5219 #ifdef ENABLE_SCO_OVER_HCI
5220 
5221     // Transparent = mSBC => 1, CVSD with 16-bit samples requires twice as much bytes
5222     int multiplier = ((hci_stack->sco_voice_setting_active & 0x03) == 0x03) ? 1 : 2;
5223 
5224     if (hci_have_usb_transport()){
5225         // see Core Spec for H2 USB Transfer.
5226         // 3 byte SCO header + 24 bytes per connection
5227         int num_sco_connections = btstack_max(1, hci_number_sco_connections());
5228         sco_packet_length = 3 + 24 * num_sco_connections * multiplier;
5229     } else {
5230         // 3 byte SCO header + SCO packet size over the air (60 bytes)
5231         sco_packet_length = 3 + 60 * multiplier;
5232         // assert that it still fits inside an SCO buffer
5233         if (sco_packet_length > hci_stack->sco_data_packet_length){
5234             sco_packet_length = 3 + 60;
5235         }
5236     }
5237 #endif
5238     return sco_packet_length;
5239 }
5240 
5241 /**
5242 * @brief Sets the master/slave policy
5243 * @param policy (0: attempt to become master, 1: let connecting device decide)
5244 */
5245 void hci_set_master_slave_policy(uint8_t policy){
5246     hci_stack->master_slave_policy = policy;
5247 }
5248 
5249 #endif
5250 
5251 HCI_STATE hci_get_state(void){
5252     return hci_stack->state;
5253 }
5254 
5255 #ifdef ENABLE_CLASSIC
5256 void gap_register_classic_connection_filter(int (*accept_callback)(bd_addr_t addr)){
5257     hci_stack->gap_classic_accept_callback = accept_callback;
5258 }
5259 #endif
5260 
5261 /**
5262  * @brief Set callback for Bluetooth Hardware Error
5263  */
5264 void hci_set_hardware_error_callback(void (*fn)(uint8_t error)){
5265     hci_stack->hardware_error_callback = fn;
5266 }
5267 
5268 void hci_disconnect_all(void){
5269     btstack_linked_list_iterator_t it;
5270     btstack_linked_list_iterator_init(&it, &hci_stack->connections);
5271     while (btstack_linked_list_iterator_has_next(&it)){
5272         hci_connection_t * con = (hci_connection_t*) btstack_linked_list_iterator_next(&it);
5273         if (con->state == SENT_DISCONNECT) continue;
5274         con->state = SEND_DISCONNECT;
5275     }
5276     hci_run();
5277 }
5278 
5279 uint16_t hci_get_manufacturer(void){
5280     return hci_stack->manufacturer;
5281 }
5282 
5283 #ifdef ENABLE_BLE
5284 
5285 static sm_connection_t * sm_get_connection_for_handle(hci_con_handle_t con_handle){
5286     hci_connection_t * hci_con = hci_connection_for_handle(con_handle);
5287     if (!hci_con) return NULL;
5288     return &hci_con->sm_connection;
5289 }
5290 
5291 // extracted from sm.c to allow enabling of l2cap le data channels without adding sm.c to the build
5292 // without sm.c default values from create_connection_for_bd_addr_and_type() resulg in non-encrypted, not-authenticated
5293 
5294 int gap_encryption_key_size(hci_con_handle_t con_handle){
5295     hci_connection_t * hci_connection = hci_connection_for_handle(con_handle);
5296     if (hci_connection == NULL) return 0;
5297     if (hci_is_le_connection(hci_connection)){
5298         sm_connection_t * sm_conn = &hci_connection->sm_connection;
5299         if (sm_conn->sm_connection_encrypted) {
5300             return sm_conn->sm_actual_encryption_key_size;
5301         }
5302     }
5303 #ifdef ENABLE_CLASSIC
5304     else {
5305         if ((hci_connection->authentication_flags & CONNECTION_ENCRYPTED)){
5306             return hci_connection->encryption_key_size;
5307         }
5308     }
5309 #endif
5310     return 0;
5311 }
5312 
5313 int gap_authenticated(hci_con_handle_t con_handle){
5314     hci_connection_t * hci_connection = hci_connection_for_handle(con_handle);
5315     if (hci_connection == NULL) return 0;
5316 
5317     switch (hci_connection->address_type){
5318         case BD_ADDR_TYPE_LE_PUBLIC:
5319         case BD_ADDR_TYPE_LE_RANDOM:
5320             if (hci_connection->sm_connection.sm_connection_encrypted == 0) return 0; // unencrypted connection cannot be authenticated
5321             return hci_connection->sm_connection.sm_connection_authenticated;
5322 #ifdef ENABLE_CLASSIC
5323         case BD_ADDR_TYPE_SCO:
5324         case BD_ADDR_TYPE_ACL:
5325             return gap_authenticated_for_link_key_type(hci_connection->link_key_type);
5326 #endif
5327         default:
5328             return 0;
5329     }
5330 }
5331 
5332 int gap_secure_connection(hci_con_handle_t con_handle){
5333     hci_connection_t * hci_connection = hci_connection_for_handle(con_handle);
5334     if (hci_connection == NULL) return 0;
5335 
5336     switch (hci_connection->address_type){
5337         case BD_ADDR_TYPE_LE_PUBLIC:
5338         case BD_ADDR_TYPE_LE_RANDOM:
5339             if (hci_connection->sm_connection.sm_connection_encrypted == 0) return 0; // unencrypted connection cannot be authenticated
5340             return hci_connection->sm_connection.sm_connection_sc;
5341 #ifdef ENABLE_CLASSIC
5342         case BD_ADDR_TYPE_SCO:
5343         case BD_ADDR_TYPE_ACL:
5344             return gap_secure_connection_for_link_key_type(hci_connection->link_key_type);
5345 #endif
5346         default:
5347             return 0;
5348     }
5349 }
5350 
5351 authorization_state_t gap_authorization_state(hci_con_handle_t con_handle){
5352     sm_connection_t * sm_conn = sm_get_connection_for_handle(con_handle);
5353     if (!sm_conn) return AUTHORIZATION_UNKNOWN;     // wrong connection
5354     if (!sm_conn->sm_connection_encrypted)               return AUTHORIZATION_UNKNOWN; // unencrypted connection cannot be authorized
5355     if (!sm_conn->sm_connection_authenticated)           return AUTHORIZATION_UNKNOWN; // unauthenticatd connection cannot be authorized
5356     return sm_conn->sm_connection_authorization_state;
5357 }
5358 #endif
5359 
5360 #ifdef ENABLE_CLASSIC
5361 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){
5362     hci_connection_t * conn = hci_connection_for_handle(con_handle);
5363     if (!conn) return GAP_CONNECTION_INVALID;
5364     conn->sniff_min_interval = sniff_min_interval;
5365     conn->sniff_max_interval = sniff_max_interval;
5366     conn->sniff_attempt = sniff_attempt;
5367     conn->sniff_timeout = sniff_timeout;
5368     hci_run();
5369     return 0;
5370 }
5371 
5372 /**
5373  * @brief Exit Sniff mode
5374  * @param con_handle
5375  @ @return 0 if ok
5376  */
5377 uint8_t gap_sniff_mode_exit(hci_con_handle_t con_handle){
5378     hci_connection_t * conn = hci_connection_for_handle(con_handle);
5379     if (!conn) return GAP_CONNECTION_INVALID;
5380     conn->sniff_min_interval = 0xffff;
5381     hci_run();
5382     return 0;
5383 }
5384 #endif
5385 
5386 void hci_halting_defer(void){
5387     if (hci_stack->state != HCI_STATE_HALTING) return;
5388     switch (hci_stack->substate){
5389         case HCI_HALTING_DISCONNECT_ALL_NO_TIMER:
5390         case HCI_HALTING_CLOSE:
5391             hci_stack->substate = HCI_HALTING_DISCONNECT_ALL_TIMER;
5392             break;
5393         default:
5394             break;
5395     }
5396 }
5397 
5398 #ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
5399 void hci_setup_test_connections_fuzz(void){
5400     hci_connection_t * conn;
5401 
5402     // default address: 66:55:44:33:00:01
5403     bd_addr_t addr = { 0x66, 0x55, 0x44, 0x33, 0x00, 0x00};
5404 
5405     // setup Controller info
5406     hci_stack->num_cmd_packets = 255;
5407     hci_stack->acl_packets_total_num = 255;
5408 
5409     // setup incoming Classic ACL connection with con handle 0x0001, 66:55:44:33:22:01
5410     addr[5] = 0x01;
5411     conn = create_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
5412     conn->con_handle = addr[5];
5413     conn->role  = HCI_ROLE_SLAVE;
5414     conn->state = RECEIVED_CONNECTION_REQUEST;
5415     conn->sm_connection.sm_role = HCI_ROLE_SLAVE;
5416 
5417     // setup incoming Classic SCO connection with con handle 0x0002
5418     addr[5] = 0x02;
5419     conn = create_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_SCO);
5420     conn->con_handle = addr[5];
5421     conn->role  = HCI_ROLE_SLAVE;
5422     conn->state = RECEIVED_CONNECTION_REQUEST;
5423     conn->sm_connection.sm_role = HCI_ROLE_SLAVE;
5424 
5425     // setup ready Classic ACL connection with con handle 0x0003
5426     addr[5] = 0x03;
5427     conn = create_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
5428     conn->con_handle = addr[5];
5429     conn->role  = HCI_ROLE_SLAVE;
5430     conn->state = OPEN;
5431     conn->sm_connection.sm_role = HCI_ROLE_SLAVE;
5432 
5433     // setup ready Classic SCO connection with con handle 0x0004
5434     addr[5] = 0x04;
5435     conn = create_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_SCO);
5436     conn->con_handle = addr[5];
5437     conn->role  = HCI_ROLE_SLAVE;
5438     conn->state = OPEN;
5439     conn->sm_connection.sm_role = HCI_ROLE_SLAVE;
5440 
5441     // setup ready LE ACL connection with con handle 0x005 and public address
5442     addr[5] = 0x05;
5443     conn = create_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_LE_PUBLIC);
5444     conn->con_handle = addr[5];
5445     conn->role  = HCI_ROLE_SLAVE;
5446     conn->state = OPEN;
5447     conn->sm_connection.sm_role = HCI_ROLE_SLAVE;
5448 }
5449 
5450 void hci_free_connections_fuzz(void){
5451     btstack_linked_list_iterator_t it;
5452     btstack_linked_list_iterator_init(&it, &hci_stack->connections);
5453     while (btstack_linked_list_iterator_has_next(&it)){
5454         hci_connection_t * con = (hci_connection_t*) btstack_linked_list_iterator_next(&it);
5455         btstack_linked_list_iterator_remove(&it);
5456         btstack_memory_hci_connection_free(con);
5457     }
5458 }
5459 void hci_simulate_working_fuzz(void){
5460     hci_init_done();
5461     hci_stack->num_cmd_packets = 255;
5462 }
5463 #endif
5464