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