xref: /btstack/src/hci.c (revision 16ece13520cb8efcf94cb63eab58a3eda87f40a2)
11f504dbdSmatthias.ringwald /*
2a0c35809S[email protected]  * Copyright (C) 2014 BlueKitchen GmbH
31713bceaSmatthias.ringwald  *
41713bceaSmatthias.ringwald  * Redistribution and use in source and binary forms, with or without
51713bceaSmatthias.ringwald  * modification, are permitted provided that the following conditions
61713bceaSmatthias.ringwald  * are met:
71713bceaSmatthias.ringwald  *
81713bceaSmatthias.ringwald  * 1. Redistributions of source code must retain the above copyright
91713bceaSmatthias.ringwald  *    notice, this list of conditions and the following disclaimer.
101713bceaSmatthias.ringwald  * 2. Redistributions in binary form must reproduce the above copyright
111713bceaSmatthias.ringwald  *    notice, this list of conditions and the following disclaimer in the
121713bceaSmatthias.ringwald  *    documentation and/or other materials provided with the distribution.
131713bceaSmatthias.ringwald  * 3. Neither the name of the copyright holders nor the names of
141713bceaSmatthias.ringwald  *    contributors may be used to endorse or promote products derived
151713bceaSmatthias.ringwald  *    from this software without specific prior written permission.
166b64433eSmatthias.ringwald  * 4. Any redistribution, use, or modification is done solely for
176b64433eSmatthias.ringwald  *    personal benefit and not for any commercial purpose or for
186b64433eSmatthias.ringwald  *    monetary gain.
191713bceaSmatthias.ringwald  *
20a0c35809S[email protected]  * THIS SOFTWARE IS PROVIDED BY BLUEKITCHEN GMBH AND CONTRIBUTORS
211713bceaSmatthias.ringwald  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
221713bceaSmatthias.ringwald  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
231713bceaSmatthias.ringwald  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL MATTHIAS
241713bceaSmatthias.ringwald  * RINGWALD OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
251713bceaSmatthias.ringwald  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
261713bceaSmatthias.ringwald  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
271713bceaSmatthias.ringwald  * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
281713bceaSmatthias.ringwald  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
291713bceaSmatthias.ringwald  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
301713bceaSmatthias.ringwald  * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
311713bceaSmatthias.ringwald  * SUCH DAMAGE.
321713bceaSmatthias.ringwald  *
33a0c35809S[email protected]  * Please inquire about commercial licensing options at
34a0c35809S[email protected]  * [email protected]
356b64433eSmatthias.ringwald  *
361713bceaSmatthias.ringwald  */
371713bceaSmatthias.ringwald 
381713bceaSmatthias.ringwald /*
391f504dbdSmatthias.ringwald  *  hci.c
401f504dbdSmatthias.ringwald  *
411f504dbdSmatthias.ringwald  *  Created by Matthias Ringwald on 4/29/09.
421f504dbdSmatthias.ringwald  *
431f504dbdSmatthias.ringwald  */
441f504dbdSmatthias.ringwald 
45bde315ceS[email protected] #include "btstack-config.h"
4628171530Smatthias.ringwald 
477f2435e6Smatthias.ringwald #include "hci.h"
484c57c146S[email protected] #include "gap.h"
497f2435e6Smatthias.ringwald 
50a484130cSMatthias Ringwald #ifdef HAVE_TICK
51a484130cSMatthias Ringwald #include "run_loop_embedded.h"
52a484130cSMatthias Ringwald #endif
53a484130cSMatthias Ringwald 
5445c102fdSMatthias Ringwald #ifdef HAVE_BLE
55472a5742SMatthias Ringwald #include "gap.h"
5645c102fdSMatthias Ringwald #endif
5745c102fdSMatthias Ringwald 
5893b8dc03Smatthias.ringwald #include <stdarg.h>
5993b8dc03Smatthias.ringwald #include <string.h>
6056fe0872Smatthias.ringwald #include <stdio.h>
615838a2edSMatthias Ringwald #include <inttypes.h>
627f2435e6Smatthias.ringwald 
63549e6ebeSmatthias.ringwald #ifndef EMBEDDED
64fe475138S[email protected] #ifdef _WIN32
65fe475138S[email protected] #include "Winsock2.h"
66fe475138S[email protected] #else
67549e6ebeSmatthias.ringwald #include <unistd.h> // gethostbyname
68fe475138S[email protected] #endif
69195a8028SMatthias Ringwald #include "version.h"
70549e6ebeSmatthias.ringwald #endif
71549e6ebeSmatthias.ringwald 
72a3b02b71Smatthias.ringwald #include "btstack_memory.h"
73*16ece135SMatthias Ringwald #include "btstack_debug.h"
74d8905019Smatthias.ringwald #include "hci_dump.h"
7593b8dc03Smatthias.ringwald 
764fd23d47SMatthias Ringwald #include "btstack_linked_list.h"
77195a8028SMatthias Ringwald #include "hci_cmds.h"
781b0e3922Smatthias.ringwald 
79169f8b28Smatthias.ringwald #define HCI_CONNECTION_TIMEOUT_MS 10000
80ee091cf1Smatthias.ringwald 
8128171530Smatthias.ringwald #ifdef USE_BLUETOOL
823edc84c5SMatthias Ringwald #include "../port/ios/src/bt_control_iphone.h"
8328171530Smatthias.ringwald #endif
8428171530Smatthias.ringwald 
85758b46ceSmatthias.ringwald static void hci_update_scan_enable(void);
86a00031e2S[email protected] static gap_security_level_t gap_security_level_for_connection(hci_connection_t * connection);
8796a45072S[email protected] static void hci_connection_timeout_handler(timer_source_t *timer);
8896a45072S[email protected] static void hci_connection_timestamp(hci_connection_t *connection);
897586ee35S[email protected] static int  hci_power_control_on(void);
907586ee35S[email protected] static void hci_power_control_off(void);
916da48142SSean Wilson static void hci_state_reset(void);
925d509858SMatthias Ringwald 
935d509858SMatthias Ringwald #ifdef HAVE_BLE
9439677e66SMatthias Ringwald // called from test/ble_client/advertising_data_parser.c
9539677e66SMatthias Ringwald void le_handle_advertisement_report(uint8_t *packet, int size);
9642ff5ba1SMatthias Ringwald static void hci_remove_from_whitelist(bd_addr_type_t address_type, bd_addr_t address);
975d509858SMatthias Ringwald #endif
98758b46ceSmatthias.ringwald 
9906b35ec0Smatthias.ringwald // the STACK is here
1003a9fb326S[email protected] #ifndef HAVE_MALLOC
1013a9fb326S[email protected] static hci_stack_t   hci_stack_static;
1023a9fb326S[email protected] #endif
1033a9fb326S[email protected] static hci_stack_t * hci_stack = NULL;
10416833f0aSmatthias.ringwald 
10566fb9560S[email protected] // test helper
10666fb9560S[email protected] static uint8_t disable_l2cap_timeouts = 0;
10766fb9560S[email protected] 
10896a45072S[email protected] /**
10996a45072S[email protected]  * create connection for given address
11096a45072S[email protected]  *
11196a45072S[email protected]  * @return connection OR NULL, if no memory left
11296a45072S[email protected]  */
11396a45072S[email protected] static hci_connection_t * create_connection_for_bd_addr_and_type(bd_addr_t addr, bd_addr_type_t addr_type){
1141a06f663S[email protected]     log_info("create_connection_for_addr %s, type %x", bd_addr_to_str(addr), addr_type);
115bb69aaaeS[email protected]     hci_connection_t * conn = btstack_memory_hci_connection_get();
11696a45072S[email protected]     if (!conn) return NULL;
117c91d150bS[email protected]     memset(conn, 0, sizeof(hci_connection_t));
11896a45072S[email protected]     BD_ADDR_COPY(conn->address, addr);
11996a45072S[email protected]     conn->address_type = addr_type;
12096a45072S[email protected]     conn->con_handle = 0xffff;
12196a45072S[email protected]     conn->authentication_flags = AUTH_FLAGS_NONE;
12296a45072S[email protected]     conn->bonding_flags = 0;
12396a45072S[email protected]     conn->requested_security_level = LEVEL_0;
124665d90f2SMatthias Ringwald     btstack_linked_item_set_user(&conn->timeout.item, conn);
12596a45072S[email protected]     conn->timeout.process = hci_connection_timeout_handler;
12696a45072S[email protected]     hci_connection_timestamp(conn);
12796a45072S[email protected]     conn->acl_recombination_length = 0;
12896a45072S[email protected]     conn->acl_recombination_pos = 0;
12996a45072S[email protected]     conn->num_acl_packets_sent = 0;
1301a06f663S[email protected]     conn->num_sco_packets_sent = 0;
131da886c03S[email protected]     conn->le_con_parameter_update_state = CON_PARAMETER_UPDATE_NONE;
132665d90f2SMatthias Ringwald     btstack_linked_list_add(&hci_stack->connections, (btstack_linked_item_t *) conn);
13396a45072S[email protected]     return conn;
13496a45072S[email protected] }
13566fb9560S[email protected] 
136da886c03S[email protected] 
137da886c03S[email protected] /**
138da886c03S[email protected]  * get le connection parameter range
139da886c03S[email protected] *
140da886c03S[email protected]  * @return le connection parameter range struct
141da886c03S[email protected]  */
142a4c06b28SMatthias Ringwald void gap_le_get_connection_parameter_range(le_connection_parameter_range_t range){
143a4c06b28SMatthias Ringwald     range = hci_stack->le_connection_parameter_range;
144da886c03S[email protected] }
145da886c03S[email protected] 
146da886c03S[email protected] /**
147da886c03S[email protected]  * set le connection parameter range
148da886c03S[email protected]  *
149da886c03S[email protected]  */
150da886c03S[email protected] 
151da886c03S[email protected] void gap_le_set_connection_parameter_range(le_connection_parameter_range_t range){
152a4c06b28SMatthias Ringwald     hci_stack->le_connection_parameter_range = range;
153da886c03S[email protected] }
154da886c03S[email protected] 
155da886c03S[email protected] /**
156da886c03S[email protected]  * get hci connections iterator
157da886c03S[email protected]  *
158da886c03S[email protected]  * @return hci connections iterator
159da886c03S[email protected]  */
160da886c03S[email protected] 
161665d90f2SMatthias Ringwald void hci_connections_get_iterator(btstack_linked_list_iterator_t *it){
162665d90f2SMatthias Ringwald     btstack_linked_list_iterator_init(it, &hci_stack->connections);
163da886c03S[email protected] }
164da886c03S[email protected] 
16597addcc5Smatthias.ringwald /**
166ee091cf1Smatthias.ringwald  * get connection for a given handle
167ee091cf1Smatthias.ringwald  *
168ee091cf1Smatthias.ringwald  * @return connection OR NULL, if not found
169ee091cf1Smatthias.ringwald  */
1705061f3afS[email protected] hci_connection_t * hci_connection_for_handle(hci_con_handle_t con_handle){
171665d90f2SMatthias Ringwald     btstack_linked_list_iterator_t it;
172665d90f2SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->connections);
173665d90f2SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
174665d90f2SMatthias Ringwald         hci_connection_t * item = (hci_connection_t *) btstack_linked_list_iterator_next(&it);
1753ac2fe56S[email protected]         if ( item->con_handle == con_handle ) {
176da886c03S[email protected]             return item;
177ee091cf1Smatthias.ringwald         }
178ee091cf1Smatthias.ringwald     }
179ee091cf1Smatthias.ringwald     return NULL;
180ee091cf1Smatthias.ringwald }
181ee091cf1Smatthias.ringwald 
18296a45072S[email protected] /**
18396a45072S[email protected]  * get connection for given address
18496a45072S[email protected]  *
18596a45072S[email protected]  * @return connection OR NULL, if not found
18696a45072S[email protected]  */
1872e77e513S[email protected] hci_connection_t * hci_connection_for_bd_addr_and_type(bd_addr_t  addr, bd_addr_type_t addr_type){
188665d90f2SMatthias Ringwald     btstack_linked_list_iterator_t it;
189665d90f2SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->connections);
190665d90f2SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
191665d90f2SMatthias Ringwald         hci_connection_t * connection = (hci_connection_t *) btstack_linked_list_iterator_next(&it);
19296a45072S[email protected]         if (connection->address_type != addr_type)  continue;
19396a45072S[email protected]         if (memcmp(addr, connection->address, 6) != 0) continue;
19462bda3fbS[email protected]         return connection;
19562bda3fbS[email protected]     }
19662bda3fbS[email protected]     return NULL;
19762bda3fbS[email protected] }
19862bda3fbS[email protected] 
1992b12a0b9Smatthias.ringwald static void hci_connection_timeout_handler(timer_source_t *timer){
200665d90f2SMatthias Ringwald     hci_connection_t * connection = (hci_connection_t *) btstack_linked_item_get_user(&timer->item);
201c785ef68Smatthias.ringwald #ifdef HAVE_TIME
202ee091cf1Smatthias.ringwald     struct timeval tv;
203ee091cf1Smatthias.ringwald     gettimeofday(&tv, NULL);
204c21e6239Smatthias.ringwald     if (tv.tv_sec >= connection->timestamp.tv_sec + HCI_CONNECTION_TIMEOUT_MS/1000) {
205ee091cf1Smatthias.ringwald         // connections might be timed out
206ee091cf1Smatthias.ringwald         hci_emit_l2cap_check_timeout(connection);
207ee091cf1Smatthias.ringwald     }
2082b12a0b9Smatthias.ringwald #endif
209e5780900Smatthias.ringwald #ifdef HAVE_TICK
210a484130cSMatthias Ringwald     if (run_loop_embedded_get_ticks() > connection->timestamp + run_loop_embedded_ticks_for_ms(HCI_CONNECTION_TIMEOUT_MS)){
211c785ef68Smatthias.ringwald         // connections might be timed out
212c785ef68Smatthias.ringwald         hci_emit_l2cap_check_timeout(connection);
213c785ef68Smatthias.ringwald     }
214c785ef68Smatthias.ringwald #endif
2155f26aadcSMatthias Ringwald #ifdef HAVE_TIME_MS
2165f26aadcSMatthias Ringwald     if (run_loop_get_time_ms() > connection->timestamp + HCI_CONNECTION_TIMEOUT_MS){
2175f26aadcSMatthias Ringwald         // connections might be timed out
2185f26aadcSMatthias Ringwald         hci_emit_l2cap_check_timeout(connection);
2195f26aadcSMatthias Ringwald     }
2205f26aadcSMatthias Ringwald #endif
221c785ef68Smatthias.ringwald     run_loop_set_timer(timer, HCI_CONNECTION_TIMEOUT_MS);
222c785ef68Smatthias.ringwald     run_loop_add_timer(timer);
223c785ef68Smatthias.ringwald }
224ee091cf1Smatthias.ringwald 
225ee091cf1Smatthias.ringwald static void hci_connection_timestamp(hci_connection_t *connection){
226c7492964Smatthias.ringwald #ifdef HAVE_TIME
227ee091cf1Smatthias.ringwald     gettimeofday(&connection->timestamp, NULL);
228c7492964Smatthias.ringwald #endif
229e5780900Smatthias.ringwald #ifdef HAVE_TICK
230829afdbeSMatthias Ringwald     connection->timestamp = run_loop_embedded_get_ticks();
231c785ef68Smatthias.ringwald #endif
2325f26aadcSMatthias Ringwald #ifdef HAVE_TIME_MS
2335f26aadcSMatthias Ringwald     connection->timestamp = run_loop_get_time_ms();
2345f26aadcSMatthias Ringwald #endif
235ee091cf1Smatthias.ringwald }
236ee091cf1Smatthias.ringwald 
23706b35ec0Smatthias.ringwald 
23828ca2b46S[email protected] inline static void connectionSetAuthenticationFlags(hci_connection_t * conn, hci_authentication_flags_t flags){
23928ca2b46S[email protected]     conn->authentication_flags = (hci_authentication_flags_t)(conn->authentication_flags | flags);
24028ca2b46S[email protected] }
24128ca2b46S[email protected] 
24228ca2b46S[email protected] inline static void connectionClearAuthenticationFlags(hci_connection_t * conn, hci_authentication_flags_t flags){
24328ca2b46S[email protected]     conn->authentication_flags = (hci_authentication_flags_t)(conn->authentication_flags & ~flags);
24428ca2b46S[email protected] }
24528ca2b46S[email protected] 
24628ca2b46S[email protected] 
24743bfb1bdSmatthias.ringwald /**
24880ca58a0Smatthias.ringwald  * add authentication flags and reset timer
24996a45072S[email protected]  * @note: assumes classic connection
2502e77e513S[email protected]  * @note: bd_addr is passed in as litle endian uint8_t * as it is called from parsing packets
2517fde4af9Smatthias.ringwald  */
2527fde4af9Smatthias.ringwald static void hci_add_connection_flags_for_flipped_bd_addr(uint8_t *bd_addr, hci_authentication_flags_t flags){
2537fde4af9Smatthias.ringwald     bd_addr_t addr;
2542e77e513S[email protected]     bt_flip_addr(addr, bd_addr);
2552e77e513S[email protected]     hci_connection_t * conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_CLASSIC);
2567fde4af9Smatthias.ringwald     if (conn) {
25728ca2b46S[email protected]         connectionSetAuthenticationFlags(conn, flags);
25880ca58a0Smatthias.ringwald         hci_connection_timestamp(conn);
2597fde4af9Smatthias.ringwald     }
2607fde4af9Smatthias.ringwald }
2617fde4af9Smatthias.ringwald 
26280ca58a0Smatthias.ringwald int  hci_authentication_active_for_handle(hci_con_handle_t handle){
2635061f3afS[email protected]     hci_connection_t * conn = hci_connection_for_handle(handle);
26480ca58a0Smatthias.ringwald     if (!conn) return 0;
2656724cd9eS[email protected]     if (conn->authentication_flags & LEGACY_PAIRING_ACTIVE) return 1;
2666724cd9eS[email protected]     if (conn->authentication_flags & SSP_PAIRING_ACTIVE) return 1;
2676724cd9eS[email protected]     return 0;
26880ca58a0Smatthias.ringwald }
26980ca58a0Smatthias.ringwald 
2702e77e513S[email protected] void hci_drop_link_key_for_bd_addr(bd_addr_t addr){
2713a9fb326S[email protected]     if (hci_stack->remote_device_db) {
2723a9fb326S[email protected]         hci_stack->remote_device_db->delete_link_key(addr);
273c12e46e7Smatthias.ringwald     }
274c12e46e7Smatthias.ringwald }
275c12e46e7Smatthias.ringwald 
2760bf6344aS[email protected] int hci_is_le_connection(hci_connection_t * connection){
2770bf6344aS[email protected]     return  connection->address_type == BD_ADDR_TYPE_LE_PUBLIC ||
2780bf6344aS[email protected]     connection->address_type == BD_ADDR_TYPE_LE_RANDOM;
2790bf6344aS[email protected] }
2800bf6344aS[email protected] 
2817fde4af9Smatthias.ringwald 
2827fde4af9Smatthias.ringwald /**
28343bfb1bdSmatthias.ringwald  * count connections
28443bfb1bdSmatthias.ringwald  */
28540d1c7a4Smatthias.ringwald static int nr_hci_connections(void){
28656c253c9Smatthias.ringwald     int count = 0;
287665d90f2SMatthias Ringwald     btstack_linked_item_t *it;
288665d90f2SMatthias Ringwald     for (it = (btstack_linked_item_t *) hci_stack->connections; it ; it = it->next, count++);
28943bfb1bdSmatthias.ringwald     return count;
29043bfb1bdSmatthias.ringwald }
291c8e4258aSmatthias.ringwald 
29297addcc5Smatthias.ringwald /**
293ba681a6cSmatthias.ringwald  * Dummy handler called by HCI
29416833f0aSmatthias.ringwald  */
2952718e2e7Smatthias.ringwald static void dummy_handler(uint8_t packet_type, uint8_t *packet, uint16_t size){
29616833f0aSmatthias.ringwald }
29716833f0aSmatthias.ringwald 
298998906cdSmatthias.ringwald uint8_t hci_number_outgoing_packets(hci_con_handle_t handle){
2995061f3afS[email protected]     hci_connection_t * connection = hci_connection_for_handle(handle);
300998906cdSmatthias.ringwald     if (!connection) {
3019da54300S[email protected]         log_error("hci_number_outgoing_packets: connection for handle %u does not exist!", handle);
302998906cdSmatthias.ringwald         return 0;
303998906cdSmatthias.ringwald     }
304998906cdSmatthias.ringwald     return connection->num_acl_packets_sent;
305998906cdSmatthias.ringwald }
306998906cdSmatthias.ringwald 
307e79abdd6S[email protected] uint8_t hci_number_free_acl_slots_for_handle(hci_con_handle_t con_handle){
308ee303eddS[email protected] 
309ee303eddS[email protected]     int num_packets_sent_classic = 0;
310ee303eddS[email protected]     int num_packets_sent_le = 0;
311ee303eddS[email protected] 
312ee303eddS[email protected]     bd_addr_type_t address_type = BD_ADDR_TYPE_UNKNOWN;
313ee303eddS[email protected] 
314665d90f2SMatthias Ringwald     btstack_linked_item_t *it;
315665d90f2SMatthias Ringwald     for (it = (btstack_linked_item_t *) hci_stack->connections; it ; it = it->next){
316998906cdSmatthias.ringwald         hci_connection_t * connection = (hci_connection_t *) it;
317ee303eddS[email protected]         if (connection->address_type == BD_ADDR_TYPE_CLASSIC){
318ee303eddS[email protected]             num_packets_sent_classic += connection->num_acl_packets_sent;
319ee303eddS[email protected]         } else {
320ee303eddS[email protected]             num_packets_sent_le += connection->num_acl_packets_sent;
321ee303eddS[email protected]         }
322ccda6e14S[email protected]         // ignore connections that are not open, e.g., in state RECEIVED_DISCONNECTION_COMPLETE
323ccda6e14S[email protected]         if (connection->con_handle == con_handle && connection->state == OPEN){
324ee303eddS[email protected]             address_type = connection->address_type;
325ee303eddS[email protected]         }
326ee303eddS[email protected]     }
327ee303eddS[email protected] 
328ee303eddS[email protected]     int free_slots_classic = hci_stack->acl_packets_total_num - num_packets_sent_classic;
329ee303eddS[email protected]     int free_slots_le = 0;
330ee303eddS[email protected] 
331ee303eddS[email protected]     if (free_slots_classic < 0){
3329da54300S[email protected]         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);
333998906cdSmatthias.ringwald         return 0;
334998906cdSmatthias.ringwald     }
335ee303eddS[email protected] 
336ee303eddS[email protected]     if (hci_stack->le_acl_packets_total_num){
337ee303eddS[email protected]         // if we have LE slots, they are used
338ee303eddS[email protected]         free_slots_le = hci_stack->le_acl_packets_total_num - num_packets_sent_le;
339ee303eddS[email protected]         if (free_slots_le < 0){
3409da54300S[email protected]             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);
341ee303eddS[email protected]             return 0;
342998906cdSmatthias.ringwald         }
343ee303eddS[email protected]     } else {
344ee303eddS[email protected]         // otherwise, classic slots are used for LE, too
345ee303eddS[email protected]         free_slots_classic -= num_packets_sent_le;
346ee303eddS[email protected]         if (free_slots_classic < 0){
3479da54300S[email protected]             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);
348ee303eddS[email protected]             return 0;
349ee303eddS[email protected]         }
350ee303eddS[email protected]     }
351ee303eddS[email protected] 
352ee303eddS[email protected]     switch (address_type){
353ee303eddS[email protected]         case BD_ADDR_TYPE_UNKNOWN:
3549da54300S[email protected]             log_error("hci_number_free_acl_slots: handle 0x%04x not in connection list", con_handle);
355ee303eddS[email protected]             return 0;
356ee303eddS[email protected] 
357ee303eddS[email protected]         case BD_ADDR_TYPE_CLASSIC:
358ee303eddS[email protected]             return free_slots_classic;
359ee303eddS[email protected] 
360ee303eddS[email protected]         default:
361cb00d3aaS[email protected]            if (hci_stack->le_acl_packets_total_num){
362ee303eddS[email protected]                return free_slots_le;
363ee303eddS[email protected]            }
364cb00d3aaS[email protected]            return free_slots_classic;
365cb00d3aaS[email protected]     }
366998906cdSmatthias.ringwald }
367998906cdSmatthias.ringwald 
3687f02f414SMatthias Ringwald static int hci_number_free_sco_slots_for_handle(hci_con_handle_t handle){
369e35edcc1S[email protected]     int num_sco_packets_sent = 0;
370665d90f2SMatthias Ringwald     btstack_linked_item_t *it;
371665d90f2SMatthias Ringwald     for (it = (btstack_linked_item_t *) hci_stack->connections; it ; it = it->next){
372e35edcc1S[email protected]         hci_connection_t * connection = (hci_connection_t *) it;
373e35edcc1S[email protected]         num_sco_packets_sent += connection->num_sco_packets_sent;
374e35edcc1S[email protected]     }
375e35edcc1S[email protected]     if (num_sco_packets_sent > hci_stack->sco_packets_total_num){
3762b65942fSMatthias Ringwald         log_info("hci_number_free_sco_slots_for_handle: outgoing packets (%u) > total packets (%u)", num_sco_packets_sent, hci_stack->sco_packets_total_num);
37744d0e3d5S[email protected]         return 0;
37844d0e3d5S[email protected]     }
3795b9b590fSMatthias Ringwald     // log_info("hci_number_free_sco_slots_for_handle %x: sent %u", handle, num_sco_packets_sent);
380e35edcc1S[email protected]     return hci_stack->sco_packets_total_num - num_sco_packets_sent;
381e35edcc1S[email protected] }
38244d0e3d5S[email protected] 
383ac928cc2S[email protected] // new functions replacing hci_can_send_packet_now[_using_packet_buffer]
384ac928cc2S[email protected] int hci_can_send_command_packet_now(void){
385ac928cc2S[email protected]     if (hci_stack->hci_packet_buffer_reserved) return 0;
386ac928cc2S[email protected] 
387ac928cc2S[email protected]     // check for async hci transport implementations
388ac928cc2S[email protected]     if (hci_stack->hci_transport->can_send_packet_now){
389ac928cc2S[email protected]         if (!hci_stack->hci_transport->can_send_packet_now(HCI_COMMAND_DATA_PACKET)){
390ac928cc2S[email protected]             return 0;
391ac928cc2S[email protected]         }
392ac928cc2S[email protected]     }
393ac928cc2S[email protected] 
394ac928cc2S[email protected]     return hci_stack->num_cmd_packets > 0;
395ac928cc2S[email protected] }
396ac928cc2S[email protected] 
397ac928cc2S[email protected] int hci_can_send_prepared_acl_packet_now(hci_con_handle_t con_handle) {
398ac928cc2S[email protected]     // check for async hci transport implementations
399ac928cc2S[email protected]     if (hci_stack->hci_transport->can_send_packet_now){
400ac928cc2S[email protected]         if (!hci_stack->hci_transport->can_send_packet_now(HCI_ACL_DATA_PACKET)){
401ac928cc2S[email protected]             return 0;
402ac928cc2S[email protected]         }
403ac928cc2S[email protected]     }
404e79abdd6S[email protected]     return hci_number_free_acl_slots_for_handle(con_handle) > 0;
405ac928cc2S[email protected] }
406ac928cc2S[email protected] 
407ac928cc2S[email protected] int hci_can_send_acl_packet_now(hci_con_handle_t con_handle){
408ac928cc2S[email protected]     if (hci_stack->hci_packet_buffer_reserved) return 0;
409ac928cc2S[email protected]     return hci_can_send_prepared_acl_packet_now(con_handle);
4106b4af23dS[email protected] }
4116b4af23dS[email protected] 
41244d0e3d5S[email protected] int hci_can_send_prepared_sco_packet_now(hci_con_handle_t con_handle){
41344d0e3d5S[email protected]     if (hci_stack->hci_transport->can_send_packet_now){
41444d0e3d5S[email protected]         if (!hci_stack->hci_transport->can_send_packet_now(HCI_SCO_DATA_PACKET)){
41544d0e3d5S[email protected]             return 0;
41644d0e3d5S[email protected]         }
41744d0e3d5S[email protected]     }
418ed361f5fSMatthias Ringwald     if (!hci_stack->synchronous_flow_control_enabled) return 1;
41944d0e3d5S[email protected]     return hci_number_free_sco_slots_for_handle(con_handle) > 0;
42044d0e3d5S[email protected] }
42144d0e3d5S[email protected] 
42244d0e3d5S[email protected] int hci_can_send_sco_packet_now(hci_con_handle_t con_handle){
42344d0e3d5S[email protected]     if (hci_stack->hci_packet_buffer_reserved) return 0;
42444d0e3d5S[email protected]     return hci_can_send_prepared_sco_packet_now(con_handle);
42544d0e3d5S[email protected] }
42644d0e3d5S[email protected] 
427c8b9416aS[email protected] // used for internal checks in l2cap[-le].c
428c8b9416aS[email protected] int hci_is_packet_buffer_reserved(void){
429c8b9416aS[email protected]     return hci_stack->hci_packet_buffer_reserved;
430c8b9416aS[email protected] }
431c8b9416aS[email protected] 
4326b4af23dS[email protected] // reserves outgoing packet buffer. @returns 1 if successful
4336b4af23dS[email protected] int hci_reserve_packet_buffer(void){
4349d14b626S[email protected]     if (hci_stack->hci_packet_buffer_reserved) {
4359d14b626S[email protected]         log_error("hci_reserve_packet_buffer called but buffer already reserved");
4369d14b626S[email protected]         return 0;
4379d14b626S[email protected]     }
4386b4af23dS[email protected]     hci_stack->hci_packet_buffer_reserved = 1;
4396b4af23dS[email protected]     return 1;
4406b4af23dS[email protected] }
4416b4af23dS[email protected] 
44268a0fcf7S[email protected] void hci_release_packet_buffer(void){
44368a0fcf7S[email protected]     hci_stack->hci_packet_buffer_reserved = 0;
44468a0fcf7S[email protected] }
44568a0fcf7S[email protected] 
4466b4af23dS[email protected] // assumption: synchronous implementations don't provide can_send_packet_now as they don't keep the buffer after the call
4477f02f414SMatthias Ringwald static int hci_transport_synchronous(void){
4486b4af23dS[email protected]     return hci_stack->hci_transport->can_send_packet_now == NULL;
4496b4af23dS[email protected] }
4506b4af23dS[email protected] 
4516c26b087S[email protected] uint16_t hci_max_acl_le_data_packet_length(void){
4526c26b087S[email protected]     return hci_stack->le_data_packets_length > 0 ? hci_stack->le_data_packets_length : hci_stack->acl_data_packet_length;
4536c26b087S[email protected] }
4546c26b087S[email protected] 
455452cf3bbS[email protected] static int hci_send_acl_packet_fragments(hci_connection_t *connection){
456452cf3bbS[email protected] 
457452cf3bbS[email protected]     // 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);
458452cf3bbS[email protected] 
459452cf3bbS[email protected]     // max ACL data packet length depends on connection type (LE vs. Classic) and available buffers
460452cf3bbS[email protected]     uint16_t max_acl_data_packet_length = hci_stack->acl_data_packet_length;
461452cf3bbS[email protected]     if (hci_is_le_connection(connection) && hci_stack->le_data_packets_length > 0){
462452cf3bbS[email protected]         max_acl_data_packet_length = hci_stack->le_data_packets_length;
463452cf3bbS[email protected]     }
464452cf3bbS[email protected] 
465452cf3bbS[email protected]     // testing: reduce buffer to minimum
466452cf3bbS[email protected]     // max_acl_data_packet_length = 52;
467452cf3bbS[email protected] 
468452cf3bbS[email protected]     int err;
469452cf3bbS[email protected]     // multiple packets could be send on a synchronous HCI transport
470452cf3bbS[email protected]     while (1){
471452cf3bbS[email protected] 
472452cf3bbS[email protected]         // get current data
473452cf3bbS[email protected]         const uint16_t acl_header_pos = hci_stack->acl_fragmentation_pos - 4;
474452cf3bbS[email protected]         int current_acl_data_packet_length = hci_stack->acl_fragmentation_total_size - hci_stack->acl_fragmentation_pos;
475452cf3bbS[email protected]         int more_fragments = 0;
476452cf3bbS[email protected] 
477452cf3bbS[email protected]         // if ACL packet is larger than Bluetooth packet buffer, only send max_acl_data_packet_length
478452cf3bbS[email protected]         if (current_acl_data_packet_length > max_acl_data_packet_length){
479452cf3bbS[email protected]             more_fragments = 1;
480452cf3bbS[email protected]             current_acl_data_packet_length = max_acl_data_packet_length;
481452cf3bbS[email protected]         }
482452cf3bbS[email protected] 
483452cf3bbS[email protected]         // copy handle_and_flags if not first fragment and update packet boundary flags to be 01 (continuing fragmnent)
484452cf3bbS[email protected]         if (acl_header_pos > 0){
485452cf3bbS[email protected]             uint16_t handle_and_flags = READ_BT_16(hci_stack->hci_packet_buffer, 0);
486452cf3bbS[email protected]             handle_and_flags = (handle_and_flags & 0xcfff) | (1 << 12);
487452cf3bbS[email protected]             bt_store_16(hci_stack->hci_packet_buffer, acl_header_pos, handle_and_flags);
488452cf3bbS[email protected]         }
489452cf3bbS[email protected] 
490452cf3bbS[email protected]         // update header len
491452cf3bbS[email protected]         bt_store_16(hci_stack->hci_packet_buffer, acl_header_pos + 2, current_acl_data_packet_length);
492452cf3bbS[email protected] 
493452cf3bbS[email protected]         // count packet
494452cf3bbS[email protected]         connection->num_acl_packets_sent++;
495452cf3bbS[email protected] 
496452cf3bbS[email protected]         // send packet
497452cf3bbS[email protected]         uint8_t * packet = &hci_stack->hci_packet_buffer[acl_header_pos];
498452cf3bbS[email protected]         const int size = current_acl_data_packet_length + 4;
4995bb5bc3eS[email protected]         hci_dump_packet(HCI_ACL_DATA_PACKET, 0, packet, size);
500452cf3bbS[email protected]         err = hci_stack->hci_transport->send_packet(HCI_ACL_DATA_PACKET, packet, size);
501452cf3bbS[email protected] 
502452cf3bbS[email protected]         // done yet?
503452cf3bbS[email protected]         if (!more_fragments) break;
504452cf3bbS[email protected] 
505452cf3bbS[email protected]         // update start of next fragment to send
506452cf3bbS[email protected]         hci_stack->acl_fragmentation_pos += current_acl_data_packet_length;
507452cf3bbS[email protected] 
508452cf3bbS[email protected]         // can send more?
509452cf3bbS[email protected]         if (!hci_can_send_prepared_acl_packet_now(connection->con_handle)) return err;
510452cf3bbS[email protected]     }
511452cf3bbS[email protected] 
512452cf3bbS[email protected]     // done
513452cf3bbS[email protected]     hci_stack->acl_fragmentation_pos = 0;
514452cf3bbS[email protected]     hci_stack->acl_fragmentation_total_size = 0;
515452cf3bbS[email protected] 
516d051460cS[email protected]     // release buffer now for synchronous transport
517203bace6S[email protected]     if (hci_transport_synchronous()){
518452cf3bbS[email protected]         hci_release_packet_buffer();
519690bd0baS[email protected]         // notify upper stack that iit might be possible to send again
520690bd0baS[email protected]         uint8_t event[] = { DAEMON_EVENT_HCI_PACKET_SENT, 0};
521690bd0baS[email protected]         hci_stack->packet_handler(HCI_EVENT_PACKET, &event[0], sizeof(event));
522452cf3bbS[email protected]     }
523452cf3bbS[email protected] 
524452cf3bbS[email protected]     return err;
525452cf3bbS[email protected] }
526452cf3bbS[email protected] 
527826f7347S[email protected] // pre: caller has reserved the packet buffer
528826f7347S[email protected] int hci_send_acl_packet_buffer(int size){
5297856c818Smatthias.ringwald 
530452cf3bbS[email protected]     // log_info("hci_send_acl_packet_buffer size %u", size);
531452cf3bbS[email protected] 
532826f7347S[email protected]     if (!hci_stack->hci_packet_buffer_reserved) {
533826f7347S[email protected]         log_error("hci_send_acl_packet_buffer called without reserving packet buffer");
534826f7347S[email protected]         return 0;
535826f7347S[email protected]     }
536826f7347S[email protected] 
537d713a683S[email protected]     uint8_t * packet = hci_stack->hci_packet_buffer;
538d713a683S[email protected]     hci_con_handle_t con_handle = READ_ACL_CONNECTION_HANDLE(packet);
539d713a683S[email protected] 
540826f7347S[email protected]     // check for free places on Bluetooth module
541d713a683S[email protected]     if (!hci_can_send_prepared_acl_packet_now(con_handle)) {
542826f7347S[email protected]         log_error("hci_send_acl_packet_buffer called but no free ACL buffers on controller");
54397b61c7bS[email protected]         hci_release_packet_buffer();
54497b61c7bS[email protected]         return BTSTACK_ACL_BUFFERS_FULL;
54597b61c7bS[email protected]     }
5466218e6f1Smatthias.ringwald 
5475061f3afS[email protected]     hci_connection_t *connection = hci_connection_for_handle( con_handle);
54897b61c7bS[email protected]     if (!connection) {
5495fa0b7cfS[email protected]         log_error("hci_send_acl_packet_buffer called but no connection for handle 0x%04x", con_handle);
55097b61c7bS[email protected]         hci_release_packet_buffer();
55197b61c7bS[email protected]         return 0;
55297b61c7bS[email protected]     }
55356cf178bSmatthias.ringwald     hci_connection_timestamp(connection);
55456cf178bSmatthias.ringwald 
555452cf3bbS[email protected]     // hci_dump_packet( HCI_ACL_DATA_PACKET, 0, packet, size);
5567856c818Smatthias.ringwald 
557452cf3bbS[email protected]     // setup data
558452cf3bbS[email protected]     hci_stack->acl_fragmentation_total_size = size;
559452cf3bbS[email protected]     hci_stack->acl_fragmentation_pos = 4;   // start of L2CAP packet
5606218e6f1Smatthias.ringwald 
561452cf3bbS[email protected]     return hci_send_acl_packet_fragments(connection);
562ee091cf1Smatthias.ringwald }
563ee091cf1Smatthias.ringwald 
56444d0e3d5S[email protected] // pre: caller has reserved the packet buffer
56544d0e3d5S[email protected] int hci_send_sco_packet_buffer(int size){
56644d0e3d5S[email protected] 
56744d0e3d5S[email protected]     // log_info("hci_send_acl_packet_buffer size %u", size);
56844d0e3d5S[email protected] 
56944d0e3d5S[email protected]     if (!hci_stack->hci_packet_buffer_reserved) {
57044d0e3d5S[email protected]         log_error("hci_send_acl_packet_buffer called without reserving packet buffer");
57144d0e3d5S[email protected]         return 0;
57244d0e3d5S[email protected]     }
57344d0e3d5S[email protected] 
57444d0e3d5S[email protected]     uint8_t * packet = hci_stack->hci_packet_buffer;
5754b3e1e19SMatthias Ringwald 
5764b3e1e19SMatthias Ringwald     // skip checks in loopback mode
5774b3e1e19SMatthias Ringwald     if (!hci_stack->loopback_mode){
57844d0e3d5S[email protected]         hci_con_handle_t con_handle = READ_ACL_CONNECTION_HANDLE(packet);   // same for ACL and SCO
57944d0e3d5S[email protected] 
58044d0e3d5S[email protected]         // check for free places on Bluetooth module
58144d0e3d5S[email protected]         if (!hci_can_send_prepared_sco_packet_now(con_handle)) {
58244d0e3d5S[email protected]             log_error("hci_send_sco_packet_buffer called but no free ACL buffers on controller");
58344d0e3d5S[email protected]             hci_release_packet_buffer();
58444d0e3d5S[email protected]             return BTSTACK_ACL_BUFFERS_FULL;
58544d0e3d5S[email protected]         }
58644d0e3d5S[email protected] 
587e35edcc1S[email protected]         // track send packet in connection struct
588e35edcc1S[email protected]         hci_connection_t *connection = hci_connection_for_handle( con_handle);
589e35edcc1S[email protected]         if (!connection) {
590e35edcc1S[email protected]             log_error("hci_send_sco_packet_buffer called but no connection for handle 0x%04x", con_handle);
591e35edcc1S[email protected]             hci_release_packet_buffer();
592e35edcc1S[email protected]             return 0;
593e35edcc1S[email protected]         }
594e35edcc1S[email protected]         connection->num_sco_packets_sent++;
5954b3e1e19SMatthias Ringwald     }
59644d0e3d5S[email protected] 
59744d0e3d5S[email protected]     hci_dump_packet( HCI_SCO_DATA_PACKET, 0, packet, size);
598543e835cSMatthias Ringwald     int err = hci_stack->hci_transport->send_packet(HCI_SCO_DATA_PACKET, packet, size);
599543e835cSMatthias Ringwald 
600543e835cSMatthias Ringwald     if (hci_transport_synchronous()){
601543e835cSMatthias Ringwald         hci_release_packet_buffer();
602543e835cSMatthias Ringwald         // notify upper stack that iit might be possible to send again
603543e835cSMatthias Ringwald         uint8_t event[] = { DAEMON_EVENT_HCI_PACKET_SENT, 0};
604543e835cSMatthias Ringwald         hci_stack->packet_handler(HCI_EVENT_PACKET, &event[0], sizeof(event));
605543e835cSMatthias Ringwald     }
606543e835cSMatthias Ringwald 
607543e835cSMatthias Ringwald     return err;
60844d0e3d5S[email protected] }
60944d0e3d5S[email protected] 
61016833f0aSmatthias.ringwald static void acl_handler(uint8_t *packet, int size){
6117856c818Smatthias.ringwald 
612e76a89eeS[email protected]     // log_info("acl_handler: size %u", size);
613e76a89eeS[email protected] 
6147856c818Smatthias.ringwald     // get info
6157856c818Smatthias.ringwald     hci_con_handle_t con_handle = READ_ACL_CONNECTION_HANDLE(packet);
6165061f3afS[email protected]     hci_connection_t *conn      = hci_connection_for_handle(con_handle);
6177856c818Smatthias.ringwald     uint8_t  acl_flags          = READ_ACL_FLAGS(packet);
6187856c818Smatthias.ringwald     uint16_t acl_length         = READ_ACL_LENGTH(packet);
6197856c818Smatthias.ringwald 
6207856c818Smatthias.ringwald     // ignore non-registered handle
6217856c818Smatthias.ringwald     if (!conn){
6229da54300S[email protected]         log_error( "hci.c: acl_handler called with non-registered handle %u!" , con_handle);
6237856c818Smatthias.ringwald         return;
6247856c818Smatthias.ringwald     }
6257856c818Smatthias.ringwald 
626e76a89eeS[email protected]     // assert packet is complete
6279ecc3e17S[email protected]     if (acl_length + 4 != size){
628e76a89eeS[email protected]         log_error("hci.c: acl_handler called with ACL packet of wrong size %u, expected %u => dropping packet", size, acl_length + 4);
629e76a89eeS[email protected]         return;
630e76a89eeS[email protected]     }
631e76a89eeS[email protected] 
6327856c818Smatthias.ringwald     // update idle timestamp
6337856c818Smatthias.ringwald     hci_connection_timestamp(conn);
6347856c818Smatthias.ringwald 
6357856c818Smatthias.ringwald     // handle different packet types
6367856c818Smatthias.ringwald     switch (acl_flags & 0x03) {
6377856c818Smatthias.ringwald 
6387856c818Smatthias.ringwald         case 0x01: // continuation fragment
6397856c818Smatthias.ringwald 
6400ca847afS[email protected]             // sanity checks
6417856c818Smatthias.ringwald             if (conn->acl_recombination_pos == 0) {
6429da54300S[email protected]                 log_error( "ACL Cont Fragment but no first fragment for handle 0x%02x", con_handle);
6437856c818Smatthias.ringwald                 return;
6447856c818Smatthias.ringwald             }
6450ca847afS[email protected]             if (conn->acl_recombination_pos + acl_length > 4 + HCI_ACL_BUFFER_SIZE){
6460ca847afS[email protected]                 log_error( "ACL Cont Fragment to large: combined packet %u > buffer size %u for handle 0x%02x",
6470ca847afS[email protected]                     conn->acl_recombination_pos + acl_length, 4 + HCI_ACL_BUFFER_SIZE, con_handle);
6480ca847afS[email protected]                 conn->acl_recombination_pos = 0;
6490ca847afS[email protected]                 return;
6500ca847afS[email protected]             }
6517856c818Smatthias.ringwald 
6527856c818Smatthias.ringwald             // append fragment payload (header already stored)
653ec6321eeS[email protected]             memcpy(&conn->acl_recombination_buffer[HCI_INCOMING_PRE_BUFFER_SIZE + conn->acl_recombination_pos], &packet[4], acl_length );
6547856c818Smatthias.ringwald             conn->acl_recombination_pos += acl_length;
6557856c818Smatthias.ringwald 
6569da54300S[email protected]             // log_error( "ACL Cont Fragment: acl_len %u, combined_len %u, l2cap_len %u", acl_length,
657decc01a8Smatthias.ringwald             //        conn->acl_recombination_pos, conn->acl_recombination_length);
6587856c818Smatthias.ringwald 
6597856c818Smatthias.ringwald             // forward complete L2CAP packet if complete.
6607856c818Smatthias.ringwald             if (conn->acl_recombination_pos >= conn->acl_recombination_length + 4 + 4){ // pos already incl. ACL header
6617856c818Smatthias.ringwald 
662ec6321eeS[email protected]                 hci_stack->packet_handler(HCI_ACL_DATA_PACKET, &conn->acl_recombination_buffer[HCI_INCOMING_PRE_BUFFER_SIZE], conn->acl_recombination_pos);
6637856c818Smatthias.ringwald                 // reset recombination buffer
6647856c818Smatthias.ringwald                 conn->acl_recombination_length = 0;
6657856c818Smatthias.ringwald                 conn->acl_recombination_pos = 0;
6667856c818Smatthias.ringwald             }
6677856c818Smatthias.ringwald             break;
6687856c818Smatthias.ringwald 
6697856c818Smatthias.ringwald         case 0x02: { // first fragment
6707856c818Smatthias.ringwald 
67123a77e1aS[email protected]             // sanity check
67223a77e1aS[email protected]             if (conn->acl_recombination_pos) {
67323a77e1aS[email protected]                 log_error( "ACL First Fragment but data in buffer for handle 0x%02x, dropping stale fragments", con_handle);
67423a77e1aS[email protected]                 conn->acl_recombination_pos = 0;
67523a77e1aS[email protected]             }
67623a77e1aS[email protected] 
6777856c818Smatthias.ringwald             // peek into L2CAP packet!
6787856c818Smatthias.ringwald             uint16_t l2cap_length = READ_L2CAP_LENGTH( packet );
6797856c818Smatthias.ringwald 
6809da54300S[email protected]             // log_info( "ACL First Fragment: acl_len %u, l2cap_len %u", acl_length, l2cap_length);
681decc01a8Smatthias.ringwald 
6827856c818Smatthias.ringwald             // compare fragment size to L2CAP packet size
6837856c818Smatthias.ringwald             if (acl_length >= l2cap_length + 4){
6847856c818Smatthias.ringwald 
6857856c818Smatthias.ringwald                 // forward fragment as L2CAP packet
6863a9fb326S[email protected]                 hci_stack->packet_handler(HCI_ACL_DATA_PACKET, packet, acl_length + 4);
6877856c818Smatthias.ringwald 
6887856c818Smatthias.ringwald             } else {
6890ca847afS[email protected] 
6900ca847afS[email protected]                 if (acl_length > HCI_ACL_BUFFER_SIZE){
6910ca847afS[email protected]                     log_error( "ACL First Fragment to large: fragment %u > buffer size %u for handle 0x%02x",
6920ca847afS[email protected]                         4 + acl_length, 4 + HCI_ACL_BUFFER_SIZE, con_handle);
6930ca847afS[email protected]                     return;
6940ca847afS[email protected]                 }
6950ca847afS[email protected] 
6967856c818Smatthias.ringwald                 // store first fragment and tweak acl length for complete package
697ec6321eeS[email protected]                 memcpy(&conn->acl_recombination_buffer[HCI_INCOMING_PRE_BUFFER_SIZE], packet, acl_length + 4);
6987856c818Smatthias.ringwald                 conn->acl_recombination_pos    = acl_length + 4;
6997856c818Smatthias.ringwald                 conn->acl_recombination_length = l2cap_length;
700ec6321eeS[email protected]                 bt_store_16(conn->acl_recombination_buffer, HCI_INCOMING_PRE_BUFFER_SIZE + 2, l2cap_length +4);
7017856c818Smatthias.ringwald             }
7027856c818Smatthias.ringwald             break;
7037856c818Smatthias.ringwald 
7047856c818Smatthias.ringwald         }
7057856c818Smatthias.ringwald         default:
7069da54300S[email protected]             log_error( "hci.c: acl_handler called with invalid packet boundary flags %u", acl_flags & 0x03);
7077856c818Smatthias.ringwald             return;
7087856c818Smatthias.ringwald     }
70994ab26f8Smatthias.ringwald 
71094ab26f8Smatthias.ringwald     // execute main loop
71194ab26f8Smatthias.ringwald     hci_run();
71216833f0aSmatthias.ringwald }
71322909952Smatthias.ringwald 
71467a3e8ecSmatthias.ringwald static void hci_shutdown_connection(hci_connection_t *conn){
7159da54300S[email protected]     log_info("Connection closed: handle 0x%x, %s", conn->con_handle, bd_addr_to_str(conn->address));
7163c4d4b90Smatthias.ringwald 
717c7e0c5f6Smatthias.ringwald     run_loop_remove_timer(&conn->timeout);
718c785ef68Smatthias.ringwald 
719665d90f2SMatthias Ringwald     btstack_linked_list_remove(&hci_stack->connections, (btstack_linked_item_t *) conn);
720a3b02b71Smatthias.ringwald     btstack_memory_hci_connection_free( conn );
7213c4d4b90Smatthias.ringwald 
7223c4d4b90Smatthias.ringwald     // now it's gone
723c7e0c5f6Smatthias.ringwald     hci_emit_nr_connections_changed();
724c7e0c5f6Smatthias.ringwald }
725c7e0c5f6Smatthias.ringwald 
7260c042179S[email protected] static const uint16_t packet_type_sizes[] = {
7278f8108aaSmatthias.ringwald     0, HCI_ACL_2DH1_SIZE, HCI_ACL_3DH1_SIZE, HCI_ACL_DM1_SIZE,
7288f8108aaSmatthias.ringwald     HCI_ACL_DH1_SIZE, 0, 0, 0,
7298f8108aaSmatthias.ringwald     HCI_ACL_2DH3_SIZE, HCI_ACL_3DH3_SIZE, HCI_ACL_DM3_SIZE, HCI_ACL_DH3_SIZE,
7308f8108aaSmatthias.ringwald     HCI_ACL_2DH5_SIZE, HCI_ACL_3DH5_SIZE, HCI_ACL_DM5_SIZE, HCI_ACL_DH5_SIZE
7318f8108aaSmatthias.ringwald };
73265389bfcS[email protected] static const uint8_t  packet_type_feature_requirement_bit[] = {
73365389bfcS[email protected]      0, // 3 slot packets
73465389bfcS[email protected]      1, // 5 slot packets
73565389bfcS[email protected]     25, // EDR 2 mpbs
73665389bfcS[email protected]     26, // EDR 3 mbps
73765389bfcS[email protected]     39, // 3 slot EDR packts
73865389bfcS[email protected]     40, // 5 slot EDR packet
73965389bfcS[email protected] };
74065389bfcS[email protected] static const uint16_t packet_type_feature_packet_mask[] = {
74165389bfcS[email protected]     0x0f00, // 3 slot packets
74265389bfcS[email protected]     0xf000, // 5 slot packets
74365389bfcS[email protected]     0x1102, // EDR 2 mpbs
74465389bfcS[email protected]     0x2204, // EDR 3 mbps
74565389bfcS[email protected]     0x0300, // 3 slot EDR packts
74665389bfcS[email protected]     0x3000, // 5 slot EDR packet
74765389bfcS[email protected] };
7488f8108aaSmatthias.ringwald 
74965389bfcS[email protected] static uint16_t hci_acl_packet_types_for_buffer_size_and_local_features(uint16_t buffer_size, uint8_t * local_supported_features){
75065389bfcS[email protected]     // enable packet types based on size
7518f8108aaSmatthias.ringwald     uint16_t packet_types = 0;
752f16a69bbS[email protected]     unsigned int i;
7538f8108aaSmatthias.ringwald     for (i=0;i<16;i++){
7548f8108aaSmatthias.ringwald         if (packet_type_sizes[i] == 0) continue;
7558f8108aaSmatthias.ringwald         if (packet_type_sizes[i] <= buffer_size){
7568f8108aaSmatthias.ringwald             packet_types |= 1 << i;
7578f8108aaSmatthias.ringwald         }
7588f8108aaSmatthias.ringwald     }
75965389bfcS[email protected]     // disable packet types due to missing local supported features
76065389bfcS[email protected]     for (i=0;i<sizeof(packet_type_feature_requirement_bit);i++){
76165389bfcS[email protected]         int bit_idx = packet_type_feature_requirement_bit[i];
76265389bfcS[email protected]         int feature_set = (local_supported_features[bit_idx >> 3] & (1<<(bit_idx & 7))) != 0;
76365389bfcS[email protected]         if (feature_set) continue;
76465389bfcS[email protected]         log_info("Features bit %02u is not set, removing packet types 0x%04x", bit_idx, packet_type_feature_packet_mask[i]);
76565389bfcS[email protected]         packet_types &= ~packet_type_feature_packet_mask[i];
76665389bfcS[email protected]     }
7678f8108aaSmatthias.ringwald     // flip bits for "may not be used"
7688f8108aaSmatthias.ringwald     packet_types ^= 0x3306;
7698f8108aaSmatthias.ringwald     return packet_types;
7708f8108aaSmatthias.ringwald }
7718f8108aaSmatthias.ringwald 
7728f8108aaSmatthias.ringwald uint16_t hci_usable_acl_packet_types(void){
7733a9fb326S[email protected]     return hci_stack->packet_types;
7748f8108aaSmatthias.ringwald }
7758f8108aaSmatthias.ringwald 
776facf93fdS[email protected] uint8_t* hci_get_outgoing_packet_buffer(void){
7777dc17943Smatthias.ringwald     // hci packet buffer is >= acl data packet length
7783a9fb326S[email protected]     return hci_stack->hci_packet_buffer;
7797dc17943Smatthias.ringwald }
7807dc17943Smatthias.ringwald 
781f5d8d141S[email protected] uint16_t hci_max_acl_data_packet_length(void){
7823a9fb326S[email protected]     return hci_stack->acl_data_packet_length;
7837dc17943Smatthias.ringwald }
7847dc17943Smatthias.ringwald 
7856ac9a97eS[email protected] int hci_non_flushable_packet_boundary_flag_supported(void){
7866ac9a97eS[email protected]     // No. 54, byte 6, bit 6
7876ac9a97eS[email protected]     return (hci_stack->local_supported_features[6] & (1 << 6)) != 0;
7886ac9a97eS[email protected] }
7896ac9a97eS[email protected] 
7907f02f414SMatthias Ringwald static int hci_ssp_supported(void){
7916ac9a97eS[email protected]     // No. 51, byte 6, bit 3
7923a9fb326S[email protected]     return (hci_stack->local_supported_features[6] & (1 << 3)) != 0;
793f5d8d141S[email protected] }
794f5d8d141S[email protected] 
7957f02f414SMatthias Ringwald static int hci_classic_supported(void){
7966ac9a97eS[email protected]     // No. 37, byte 4, bit 5, = No BR/EDR Support
7973a9fb326S[email protected]     return (hci_stack->local_supported_features[4] & (1 << 5)) == 0;
798f5d8d141S[email protected] }
799f5d8d141S[email protected] 
8007f02f414SMatthias Ringwald static int hci_le_supported(void){
801f5d8d141S[email protected] #ifdef HAVE_BLE
8026ac9a97eS[email protected]     // No. 37, byte 4, bit 6 = LE Supported (Controller)
8033a9fb326S[email protected]     return (hci_stack->local_supported_features[4] & (1 << 6)) != 0;
804f5d8d141S[email protected] #else
805f5d8d141S[email protected]     return 0;
806f5d8d141S[email protected] #endif
807f5d8d141S[email protected] }
808f5d8d141S[email protected] 
80969a97523S[email protected] // get addr type and address used in advertisement packets
8102e77e513S[email protected] void hci_le_advertisement_address(uint8_t * addr_type, bd_addr_t  addr){
8113a9fb326S[email protected]     *addr_type = hci_stack->adv_addr_type;
8123a9fb326S[email protected]     if (hci_stack->adv_addr_type){
8133a9fb326S[email protected]         memcpy(addr, hci_stack->adv_address, 6);
81469a97523S[email protected]     } else {
8153a9fb326S[email protected]         memcpy(addr, hci_stack->local_bd_addr, 6);
81669a97523S[email protected]     }
81769a97523S[email protected] }
81869a97523S[email protected] 
819b2f949feS[email protected] #ifdef HAVE_BLE
82039677e66SMatthias Ringwald void le_handle_advertisement_report(uint8_t *packet, int size){
821d1dc057bS[email protected]     int offset = 3;
822d1dc057bS[email protected]     int num_reports = packet[offset];
823d1dc057bS[email protected]     offset += 1;
824d1dc057bS[email protected] 
82557c9da5bS[email protected]     int i;
8264f4b43f3S[email protected]     log_info("HCI: handle adv report with num reports: %d", num_reports);
82703fbe9c6S[email protected]     uint8_t event[12 + LE_ADVERTISING_DATA_SIZE]; // use upper bound to avoid var size automatic var
82857c9da5bS[email protected]     for (i=0; i<num_reports;i++){
829210c6774S[email protected]         uint8_t data_length = packet[offset + 8];
830a0aac9c4S[email protected]         uint8_t event_size = 10 + data_length;
831d1dc057bS[email protected]         int pos = 0;
8322b552b23S[email protected]         event[pos++] = GAP_LE_ADVERTISING_REPORT;
83357c9da5bS[email protected]         event[pos++] = event_size;
834210c6774S[email protected]         memcpy(&event[pos], &packet[offset], 1+1+6); // event type + address type + address
835d1dc057bS[email protected]         offset += 8;
836d1dc057bS[email protected]         pos += 8;
837d1dc057bS[email protected]         event[pos++] = packet[offset + 1 + data_length]; // rssi
838d1dc057bS[email protected]         event[pos++] = packet[offset++]; //data_length;
839d1dc057bS[email protected]         memcpy(&event[pos], &packet[offset], data_length);
84057c9da5bS[email protected]         pos += data_length;
841d1dc057bS[email protected]         offset += data_length + 1; // rssi
84203fbe9c6S[email protected]         hci_dump_packet( HCI_EVENT_PACKET, 0, event, pos);
84303fbe9c6S[email protected]         hci_stack->packet_handler(HCI_EVENT_PACKET, event, pos);
84457c9da5bS[email protected]     }
84557c9da5bS[email protected] }
846b2f949feS[email protected] #endif
84757c9da5bS[email protected] 
84896b53536SMatthias Ringwald static uint32_t hci_transport_uart_get_main_baud_rate(void){
84996b53536SMatthias Ringwald     if (!hci_stack->config) return 0;
8509796ebeaSMatthias Ringwald     uint32_t baud_rate = ((hci_transport_config_uart_t *)hci_stack->config)->baudrate_main;
85196b53536SMatthias Ringwald     // Limit baud rate for Broadcom chipsets to 3 mbps
852c6d1dbedSMatthias Ringwald     if (hci_stack->manufacturer == COMPANY_ID_BROADCOM_CORPORATION && baud_rate > 3000000){
85396b53536SMatthias Ringwald         baud_rate = 3000000;
85496b53536SMatthias Ringwald     }
85596b53536SMatthias Ringwald     return baud_rate;
85696b53536SMatthias Ringwald }
85796b53536SMatthias Ringwald 
8580305bdeaSMatthias Ringwald static void hci_initialization_timeout_handler(timer_source_t * ds){
8590305bdeaSMatthias Ringwald     switch (hci_stack->substate){
8600305bdeaSMatthias Ringwald         case HCI_INIT_W4_SEND_RESET:
8617b0d7667SMatthias Ringwald             log_info("Resend HCI Reset");
8620305bdeaSMatthias Ringwald             hci_stack->substate = HCI_INIT_SEND_RESET;
8637b0d7667SMatthias Ringwald             hci_stack->num_cmd_packets = 1;
8640305bdeaSMatthias Ringwald             hci_run();
8650305bdeaSMatthias Ringwald             break;
866e47e68c7SMatthias Ringwald         case HCI_INIT_W4_CUSTOM_INIT_CSR_WARM_BOOT:
867e47e68c7SMatthias Ringwald             log_info("Resend HCI Reset - CSR Warm Boot");
868e47e68c7SMatthias Ringwald             hci_stack->substate = HCI_INIT_SEND_RESET_CSR_WARM_BOOT;
869e47e68c7SMatthias Ringwald             hci_stack->num_cmd_packets = 1;
870e47e68c7SMatthias Ringwald             hci_run();
871688c2635SMatthias Ringwald             break;
8727dd9d0ecSMatthias Ringwald         case HCI_INIT_W4_SEND_BAUD_CHANGE: {
87396b53536SMatthias Ringwald 			uint32_t baud_rate = hci_transport_uart_get_main_baud_rate();
8747dd9d0ecSMatthias Ringwald             log_info("Local baud rate change to %"PRIu32, baud_rate);
8757dd9d0ecSMatthias Ringwald             hci_stack->hci_transport->set_baudrate(baud_rate);
876772a36d3SMatthias Ringwald             // For CSR, HCI Reset is sent on new baud rate
8772caefae9SMatthias Ringwald             if (hci_stack->manufacturer == COMPANY_ID_CAMBRIDGE_SILICON_RADIO){
878772a36d3SMatthias Ringwald                 hci_stack->substate = HCI_INIT_SEND_RESET_CSR_WARM_BOOT;
879772a36d3SMatthias Ringwald                 hci_run();
880772a36d3SMatthias Ringwald             }
8814696bddbSMatthias Ringwald             break;
8827dd9d0ecSMatthias Ringwald         }
8830305bdeaSMatthias Ringwald         default:
8840305bdeaSMatthias Ringwald             break;
8850305bdeaSMatthias Ringwald     }
8860305bdeaSMatthias Ringwald }
8870305bdeaSMatthias Ringwald 
88871de195eSMatthias Ringwald static void hci_initializing_next_state(void){
88974b323a9SMatthias Ringwald     hci_stack->substate = (hci_substate_t )( ((int) hci_stack->substate) + 1);
89074b323a9SMatthias Ringwald }
89174b323a9SMatthias Ringwald 
89274b323a9SMatthias Ringwald // assumption: hci_can_send_command_packet_now() == true
89371de195eSMatthias Ringwald static void hci_initializing_run(void){
894db8bc6ffSMatthias Ringwald     log_info("hci_initializing_run: substate %u", hci_stack->substate);
89574b323a9SMatthias Ringwald     switch (hci_stack->substate){
89674b323a9SMatthias Ringwald         case HCI_INIT_SEND_RESET:
89774b323a9SMatthias Ringwald             hci_state_reset();
898a0cf2f3fSMatthias Ringwald 
899a0cf2f3fSMatthias Ringwald #ifndef USE_BLUETOOL
9000305bdeaSMatthias Ringwald             // prepare reset if command complete not received in 100ms
9010305bdeaSMatthias Ringwald             run_loop_set_timer(&hci_stack->timeout, 100);
9020305bdeaSMatthias Ringwald             run_loop_set_timer_handler(&hci_stack->timeout, hci_initialization_timeout_handler);
9030305bdeaSMatthias Ringwald             run_loop_add_timer(&hci_stack->timeout);
904a0cf2f3fSMatthias Ringwald #endif
9050305bdeaSMatthias Ringwald             // send command
90674b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_SEND_RESET;
9070305bdeaSMatthias Ringwald             hci_send_cmd(&hci_reset);
90874b323a9SMatthias Ringwald             break;
90976fcb19bSMatthias Ringwald         case HCI_INIT_SEND_READ_LOCAL_VERSION_INFORMATION:
91076fcb19bSMatthias Ringwald             hci_send_cmd(&hci_read_local_version_information);
91176fcb19bSMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_SEND_READ_LOCAL_VERSION_INFORMATION;
91276fcb19bSMatthias Ringwald             break;
913e47e68c7SMatthias Ringwald         case HCI_INIT_SEND_RESET_CSR_WARM_BOOT:
914e47e68c7SMatthias Ringwald             hci_state_reset();
915e47e68c7SMatthias Ringwald             // prepare reset if command complete not received in 100ms
916e47e68c7SMatthias Ringwald             run_loop_set_timer(&hci_stack->timeout, 100);
917e47e68c7SMatthias Ringwald             run_loop_set_timer_handler(&hci_stack->timeout, hci_initialization_timeout_handler);
918e47e68c7SMatthias Ringwald             run_loop_add_timer(&hci_stack->timeout);
919e47e68c7SMatthias Ringwald             // send command
920e47e68c7SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_CUSTOM_INIT_CSR_WARM_BOOT;
921e47e68c7SMatthias Ringwald             hci_send_cmd(&hci_reset);
922e47e68c7SMatthias Ringwald             break;
9238d29070eSMatthias Ringwald         case HCI_INIT_SEND_RESET_ST_WARM_BOOT:
9248d29070eSMatthias Ringwald             hci_state_reset();
9258d29070eSMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_SEND_RESET_ST_WARM_BOOT;
9268d29070eSMatthias Ringwald             hci_send_cmd(&hci_reset);
9278d29070eSMatthias Ringwald             break;
928fab26ab3SMatthias Ringwald         case HCI_INIT_SEND_BAUD_CHANGE: {
92996b53536SMatthias Ringwald             uint32_t baud_rate = hci_transport_uart_get_main_baud_rate();
930fab26ab3SMatthias Ringwald             hci_stack->control->baudrate_cmd(hci_stack->config, baud_rate, hci_stack->hci_packet_buffer);
93174b323a9SMatthias Ringwald             hci_stack->last_cmd_opcode = READ_BT_16(hci_stack->hci_packet_buffer, 0);
93274b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_SEND_BAUD_CHANGE;
9330305bdeaSMatthias Ringwald             hci_send_cmd_packet(hci_stack->hci_packet_buffer, 3 + hci_stack->hci_packet_buffer[2]);
9344696bddbSMatthias Ringwald             // STLC25000D: baudrate change happens within 0.5 s after command was send,
9354696bddbSMatthias Ringwald             // use timer to update baud rate after 100 ms (knowing exactly, when command was sent is non-trivial)
936c6d1dbedSMatthias Ringwald             if (hci_stack->manufacturer == COMPANY_ID_ST_MICROELECTRONICS){
9374696bddbSMatthias Ringwald                 run_loop_set_timer(&hci_stack->timeout, 100);
9384696bddbSMatthias Ringwald                 run_loop_add_timer(&hci_stack->timeout);
9394696bddbSMatthias Ringwald             }
94074b323a9SMatthias Ringwald             break;
941fab26ab3SMatthias Ringwald         }
942fab26ab3SMatthias Ringwald         case HCI_INIT_SEND_BAUD_CHANGE_BCM: {
94396b53536SMatthias Ringwald             uint32_t baud_rate = hci_transport_uart_get_main_baud_rate();
944fab26ab3SMatthias Ringwald             hci_stack->control->baudrate_cmd(hci_stack->config, baud_rate, hci_stack->hci_packet_buffer);
945eb3a5314SMatthias Ringwald             hci_stack->last_cmd_opcode = READ_BT_16(hci_stack->hci_packet_buffer, 0);
946eb3a5314SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_SEND_BAUD_CHANGE_BCM;
947eb3a5314SMatthias Ringwald             hci_send_cmd_packet(hci_stack->hci_packet_buffer, 3 + hci_stack->hci_packet_buffer[2]);
948eb3a5314SMatthias Ringwald             break;
949fab26ab3SMatthias Ringwald         }
95074b323a9SMatthias Ringwald         case HCI_INIT_CUSTOM_INIT:
95174b323a9SMatthias Ringwald             log_info("Custom init");
95274b323a9SMatthias Ringwald             // Custom initialization
95374b323a9SMatthias Ringwald             if (hci_stack->control && hci_stack->control->next_cmd){
95474b323a9SMatthias Ringwald                 int valid_cmd = (*hci_stack->control->next_cmd)(hci_stack->config, hci_stack->hci_packet_buffer);
95574b323a9SMatthias Ringwald                 if (valid_cmd){
95674b323a9SMatthias Ringwald                     int size = 3 + hci_stack->hci_packet_buffer[2];
95774b323a9SMatthias Ringwald                     hci_stack->last_cmd_opcode = READ_BT_16(hci_stack->hci_packet_buffer, 0);
95874b323a9SMatthias Ringwald                     hci_dump_packet(HCI_COMMAND_DATA_PACKET, 0, hci_stack->hci_packet_buffer, size);
959e47e68c7SMatthias Ringwald                     switch (valid_cmd) {
960e47e68c7SMatthias Ringwald                         case 1:
961e47e68c7SMatthias Ringwald                         default:
962e47e68c7SMatthias Ringwald                             hci_stack->substate = HCI_INIT_W4_CUSTOM_INIT;
963e47e68c7SMatthias Ringwald                             break;
964e47e68c7SMatthias Ringwald                         case 2: // CSR Warm Boot: Wait a bit, then send HCI Reset until HCI Command Complete
965e47e68c7SMatthias Ringwald                             log_info("CSR Warm Boot");
966e47e68c7SMatthias Ringwald                             run_loop_set_timer(&hci_stack->timeout, 100);
967e47e68c7SMatthias Ringwald                             run_loop_set_timer_handler(&hci_stack->timeout, hci_initialization_timeout_handler);
968e47e68c7SMatthias Ringwald                             run_loop_add_timer(&hci_stack->timeout);
9692caefae9SMatthias Ringwald                             if (hci_stack->manufacturer == COMPANY_ID_CAMBRIDGE_SILICON_RADIO
970772a36d3SMatthias Ringwald                                 && hci_stack->config
971772a36d3SMatthias Ringwald                                 && hci_stack->control
972772a36d3SMatthias Ringwald                                 // && hci_stack->control->baudrate_cmd -- there's no such command
973772a36d3SMatthias Ringwald                                 && hci_stack->hci_transport->set_baudrate
9742caefae9SMatthias Ringwald                                 && hci_transport_uart_get_main_baud_rate()){
975772a36d3SMatthias Ringwald                                 hci_stack->substate = HCI_INIT_W4_SEND_BAUD_CHANGE;
976772a36d3SMatthias Ringwald                             } else {
977e47e68c7SMatthias Ringwald                                hci_stack->substate = HCI_INIT_W4_CUSTOM_INIT_CSR_WARM_BOOT;
978772a36d3SMatthias Ringwald                             }
979e47e68c7SMatthias Ringwald                             break;
980e47e68c7SMatthias Ringwald                     }
9810305bdeaSMatthias Ringwald                     hci_stack->hci_transport->send_packet(HCI_COMMAND_DATA_PACKET, hci_stack->hci_packet_buffer, size);
98274b323a9SMatthias Ringwald                     break;
98374b323a9SMatthias Ringwald                 }
98474b323a9SMatthias Ringwald                 log_info("hci_run: init script done");
98592a0d36dSMatthias Ringwald 
98692a0d36dSMatthias Ringwald                 // Init script download causes baud rate to reset on Broadcom chipsets, restore UART baud rate if needed
987c6d1dbedSMatthias Ringwald                 if (hci_stack->manufacturer == COMPANY_ID_BROADCOM_CORPORATION){
98892a0d36dSMatthias Ringwald                     int need_baud_change = hci_stack->config
98992a0d36dSMatthias Ringwald                         && hci_stack->control
99092a0d36dSMatthias Ringwald                         && hci_stack->control->baudrate_cmd
99192a0d36dSMatthias Ringwald                         && hci_stack->hci_transport->set_baudrate
9929796ebeaSMatthias Ringwald                         && ((hci_transport_config_uart_t *)hci_stack->config)->baudrate_main;
99392a0d36dSMatthias Ringwald                     if (need_baud_change) {
9949796ebeaSMatthias Ringwald                         uint32_t baud_rate = ((hci_transport_config_uart_t *)hci_stack->config)->baudrate_init;
99592a0d36dSMatthias Ringwald                         log_info("Local baud rate change to %"PRIu32" after init script", baud_rate);
99692a0d36dSMatthias Ringwald                         hci_stack->hci_transport->set_baudrate(baud_rate);
99792a0d36dSMatthias Ringwald                     }
99892a0d36dSMatthias Ringwald                 }
99974b323a9SMatthias Ringwald             }
100074b323a9SMatthias Ringwald             // otherwise continue
1001a828a756SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_READ_LOCAL_SUPPORTED_COMMANDS;
1002a828a756SMatthias Ringwald             hci_send_cmd(&hci_read_local_supported_commands);
1003a828a756SMatthias Ringwald             break;
100453860077SMatthias Ringwald         case HCI_INIT_SET_BD_ADDR:
100553860077SMatthias Ringwald             log_info("Set Public BD ADDR to %s", bd_addr_to_str(hci_stack->custom_bd_addr));
100653860077SMatthias Ringwald             hci_stack->control->set_bd_addr_cmd(hci_stack->config, hci_stack->custom_bd_addr, hci_stack->hci_packet_buffer);
100753860077SMatthias Ringwald             hci_stack->last_cmd_opcode = READ_BT_16(hci_stack->hci_packet_buffer, 0);
100853860077SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_SET_BD_ADDR;
100953860077SMatthias Ringwald             hci_send_cmd_packet(hci_stack->hci_packet_buffer, 3 + hci_stack->hci_packet_buffer[2]);
101053860077SMatthias Ringwald             break;
101153860077SMatthias Ringwald         case HCI_INIT_READ_BD_ADDR:
101253860077SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_READ_BD_ADDR;
101353860077SMatthias Ringwald             hci_send_cmd(&hci_read_bd_addr);
101453860077SMatthias Ringwald             break;
101574b323a9SMatthias Ringwald         case HCI_INIT_READ_BUFFER_SIZE:
101674b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_READ_BUFFER_SIZE;
10170305bdeaSMatthias Ringwald             hci_send_cmd(&hci_read_buffer_size);
101874b323a9SMatthias Ringwald             break;
101953860077SMatthias Ringwald         case HCI_INIT_READ_LOCAL_SUPPORTED_FEATURES:
102053860077SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_READ_LOCAL_SUPPORTED_FEATURES;
10210305bdeaSMatthias Ringwald             hci_send_cmd(&hci_read_local_supported_features);
102274b323a9SMatthias Ringwald             break;
102374b323a9SMatthias Ringwald         case HCI_INIT_SET_EVENT_MASK:
10240305bdeaSMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_SET_EVENT_MASK;
102574b323a9SMatthias Ringwald             if (hci_le_supported()){
102674b323a9SMatthias Ringwald                 hci_send_cmd(&hci_set_event_mask,0xffffffff, 0x3FFFFFFF);
102774b323a9SMatthias Ringwald             } else {
102874b323a9SMatthias Ringwald                 // Kensington Bluetooth 2.1 USB Dongle (CSR Chipset) returns an error for 0xffff...
102974b323a9SMatthias Ringwald                 hci_send_cmd(&hci_set_event_mask,0xffffffff, 0x1FFFFFFF);
103074b323a9SMatthias Ringwald             }
103174b323a9SMatthias Ringwald             break;
103274b323a9SMatthias Ringwald         case HCI_INIT_WRITE_SIMPLE_PAIRING_MODE:
103374b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_WRITE_SIMPLE_PAIRING_MODE;
10340305bdeaSMatthias Ringwald             hci_send_cmd(&hci_write_simple_pairing_mode, hci_stack->ssp_enable);
103574b323a9SMatthias Ringwald             break;
103674b323a9SMatthias Ringwald         case HCI_INIT_WRITE_PAGE_TIMEOUT:
103774b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_WRITE_PAGE_TIMEOUT;
10380305bdeaSMatthias Ringwald             hci_send_cmd(&hci_write_page_timeout, 0x6000);  // ca. 15 sec
103974b323a9SMatthias Ringwald             break;
104074b323a9SMatthias Ringwald         case HCI_INIT_WRITE_CLASS_OF_DEVICE:
104174b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_WRITE_CLASS_OF_DEVICE;
10420305bdeaSMatthias Ringwald             hci_send_cmd(&hci_write_class_of_device, hci_stack->class_of_device);
104374b323a9SMatthias Ringwald             break;
104474b323a9SMatthias Ringwald         case HCI_INIT_WRITE_LOCAL_NAME:
10450305bdeaSMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_WRITE_LOCAL_NAME;
104674b323a9SMatthias Ringwald             if (hci_stack->local_name){
104774b323a9SMatthias Ringwald                 hci_send_cmd(&hci_write_local_name, hci_stack->local_name);
104874b323a9SMatthias Ringwald             } else {
104974b323a9SMatthias Ringwald                 char hostname[30];
105074b323a9SMatthias Ringwald #ifdef EMBEDDED
105174b323a9SMatthias Ringwald                 // BTstack-11:22:33:44:55:66
105274b323a9SMatthias Ringwald                 strcpy(hostname, "BTstack ");
105374b323a9SMatthias Ringwald                 strcat(hostname, bd_addr_to_str(hci_stack->local_bd_addr));
105474b323a9SMatthias Ringwald                 log_info("---> Name %s", hostname);
105574b323a9SMatthias Ringwald #else
105674b323a9SMatthias Ringwald                 // hostname for POSIX systems
105774b323a9SMatthias Ringwald                 gethostname(hostname, 30);
105874b323a9SMatthias Ringwald                 hostname[29] = '\0';
105974b323a9SMatthias Ringwald #endif
106074b323a9SMatthias Ringwald                 hci_send_cmd(&hci_write_local_name, hostname);
106174b323a9SMatthias Ringwald             }
106274b323a9SMatthias Ringwald             break;
106374b323a9SMatthias Ringwald         case HCI_INIT_WRITE_SCAN_ENABLE:
106474b323a9SMatthias Ringwald             hci_send_cmd(&hci_write_scan_enable, (hci_stack->connectable << 1) | hci_stack->discoverable); // page scan
106574b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_WRITE_SCAN_ENABLE;
106674b323a9SMatthias Ringwald             break;
1067729ed62eSMatthias Ringwald         case HCI_INIT_WRITE_SYNCHRONOUS_FLOW_CONTROL_ENABLE:
1068729ed62eSMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_WRITE_SYNCHRONOUS_FLOW_CONTROL_ENABLE;
1069729ed62eSMatthias Ringwald             hci_send_cmd(&hci_write_synchronous_flow_control_enable, 1); // SCO tracking enabled
1070729ed62eSMatthias Ringwald             break;
107174b323a9SMatthias Ringwald #ifdef HAVE_BLE
107274b323a9SMatthias Ringwald         // LE INIT
107374b323a9SMatthias Ringwald         case HCI_INIT_LE_READ_BUFFER_SIZE:
107474b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_LE_READ_BUFFER_SIZE;
10750305bdeaSMatthias Ringwald             hci_send_cmd(&hci_le_read_buffer_size);
107674b323a9SMatthias Ringwald             break;
107774b323a9SMatthias Ringwald         case HCI_INIT_WRITE_LE_HOST_SUPPORTED:
107874b323a9SMatthias Ringwald             // LE Supported Host = 1, Simultaneous Host = 0
107974b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_WRITE_LE_HOST_SUPPORTED;
10800305bdeaSMatthias Ringwald             hci_send_cmd(&hci_write_le_host_supported, 1, 0);
108174b323a9SMatthias Ringwald             break;
10823b6d4121SMatthias Ringwald         case HCI_INIT_READ_WHITE_LIST_SIZE:
10833b6d4121SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_READ_WHITE_LIST_SIZE;
10843b6d4121SMatthias Ringwald             hci_send_cmd(&hci_le_read_white_list_size);
10853b6d4121SMatthias Ringwald             break;
108674b323a9SMatthias Ringwald         case HCI_INIT_LE_SET_SCAN_PARAMETERS:
108774b323a9SMatthias Ringwald             // LE Scan Parameters: active scanning, 300 ms interval, 30 ms window, public address, accept all advs
108874b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_LE_SET_SCAN_PARAMETERS;
10890305bdeaSMatthias Ringwald             hci_send_cmd(&hci_le_set_scan_parameters, 1, 0x1e0, 0x30, 0, 0);
109074b323a9SMatthias Ringwald             break;
109174b323a9SMatthias Ringwald #endif
109274b323a9SMatthias Ringwald         // DONE
109374b323a9SMatthias Ringwald         case HCI_INIT_DONE:
109474b323a9SMatthias Ringwald             // done.
109574b323a9SMatthias Ringwald             hci_stack->state = HCI_STATE_WORKING;
109674b323a9SMatthias Ringwald             hci_emit_state();
109774b323a9SMatthias Ringwald             return;
109874b323a9SMatthias Ringwald         default:
109974b323a9SMatthias Ringwald             return;
110074b323a9SMatthias Ringwald     }
110155975f88SMatthias Ringwald }
110255975f88SMatthias Ringwald 
11036155b3d3S[email protected] static void hci_initializing_event_handler(uint8_t * packet, uint16_t size){
1104a2481739S[email protected]     uint8_t command_completed = 0;
1105c4633093SMatthias Ringwald 
11066155b3d3S[email protected]     if (packet[0] == HCI_EVENT_COMMAND_COMPLETE){
11076155b3d3S[email protected]         uint16_t opcode = READ_BT_16(packet,3);
11086155b3d3S[email protected]         if (opcode == hci_stack->last_cmd_opcode){
1109a2481739S[email protected]             command_completed = 1;
111076fcb19bSMatthias Ringwald             log_info("Command complete for expected opcode %04x at substate %u", opcode, hci_stack->substate);
11116155b3d3S[email protected]         } else {
11126155b3d3S[email protected]             log_info("Command complete for opcode %04x, expected %04x", opcode, hci_stack->last_cmd_opcode);
11136155b3d3S[email protected]         }
11146155b3d3S[email protected]     }
11150f97eae7SMatthias Ringwald 
11166155b3d3S[email protected]     if (packet[0] == HCI_EVENT_COMMAND_STATUS){
11176155b3d3S[email protected]         uint8_t  status = packet[2];
11186155b3d3S[email protected]         uint16_t opcode = READ_BT_16(packet,4);
11196155b3d3S[email protected]         if (opcode == hci_stack->last_cmd_opcode){
11206155b3d3S[email protected]             if (status){
1121a2481739S[email protected]                 command_completed = 1;
112276fcb19bSMatthias Ringwald                 log_error("Command status error 0x%02x for expected opcode %04x at substate %u", status, opcode, hci_stack->substate);
11236155b3d3S[email protected]             } else {
11246155b3d3S[email protected]                 log_info("Command status OK for expected opcode %04x, waiting for command complete", opcode);
11256155b3d3S[email protected]             }
11266155b3d3S[email protected]         } else {
11276155b3d3S[email protected]             log_info("Command status for opcode %04x, expected %04x", opcode, hci_stack->last_cmd_opcode);
11286155b3d3S[email protected]         }
11296155b3d3S[email protected]     }
11300f97eae7SMatthias Ringwald 
1131e47e68c7SMatthias Ringwald     // Vendor == CSR
11320d3b00a2SMatthias Ringwald     if (hci_stack->substate == HCI_INIT_W4_CUSTOM_INIT && packet[0] == HCI_EVENT_VENDOR_SPECIFIC){
1133e47e68c7SMatthias Ringwald         // TODO: track actual command
1134e47e68c7SMatthias Ringwald         command_completed = 1;
1135e47e68c7SMatthias Ringwald     }
1136a2481739S[email protected] 
11374e9daa6fSMatthias Ringwald     // Vendor == Toshiba
11384e9daa6fSMatthias Ringwald     if (hci_stack->substate == HCI_INIT_W4_SEND_BAUD_CHANGE && packet[0] == HCI_EVENT_VENDOR_SPECIFIC){
11394e9daa6fSMatthias Ringwald         // TODO: track actual command
11404e9daa6fSMatthias Ringwald         command_completed = 1;
11414e9daa6fSMatthias Ringwald     }
11424e9daa6fSMatthias Ringwald 
11430f97eae7SMatthias Ringwald     // Late response (> 100 ms) for HCI Reset e.g. on Toshiba TC35661:
11440f97eae7SMatthias Ringwald     // Command complete for HCI Reset arrives after we've resent the HCI Reset command
11450f97eae7SMatthias Ringwald     //
11460f97eae7SMatthias Ringwald     // HCI Reset
11470f97eae7SMatthias Ringwald     // Timeout 100 ms
11480f97eae7SMatthias Ringwald     // HCI Reset
11490f97eae7SMatthias Ringwald     // Command Complete Reset
11500f97eae7SMatthias Ringwald     // HCI Read Local Version Information
11510f97eae7SMatthias Ringwald     // Command Complete Reset - but we expected Command Complete Read Local Version Information
11520f97eae7SMatthias Ringwald     // hang...
11530f97eae7SMatthias Ringwald     //
11540f97eae7SMatthias Ringwald     // Fix: Command Complete for HCI Reset in HCI_INIT_W4_SEND_READ_LOCAL_VERSION_INFORMATION trigger resend
11550f97eae7SMatthias Ringwald     if (!command_completed
11560f97eae7SMatthias Ringwald             && packet[0] == HCI_EVENT_COMMAND_COMPLETE
11570f97eae7SMatthias Ringwald             && hci_stack->substate == HCI_INIT_W4_SEND_READ_LOCAL_VERSION_INFORMATION){
11580f97eae7SMatthias Ringwald 
11590f97eae7SMatthias Ringwald         uint16_t opcode = READ_BT_16(packet,3);
11600f97eae7SMatthias Ringwald         if (opcode == hci_reset.opcode){
11610f97eae7SMatthias Ringwald             hci_stack->substate = HCI_INIT_SEND_READ_LOCAL_VERSION_INFORMATION;
11620f97eae7SMatthias Ringwald             return;
11630f97eae7SMatthias Ringwald         }
11640f97eae7SMatthias Ringwald     }
11650f97eae7SMatthias Ringwald 
11660f97eae7SMatthias Ringwald 
11670f97eae7SMatthias Ringwald 
1168a2481739S[email protected]     if (!command_completed) return;
1169a2481739S[email protected] 
1170db8bc6ffSMatthias Ringwald     int need_baud_change = hci_stack->config
1171db8bc6ffSMatthias Ringwald                         && hci_stack->control
1172db8bc6ffSMatthias Ringwald                         && hci_stack->control->baudrate_cmd
1173db8bc6ffSMatthias Ringwald                         && hci_stack->hci_transport->set_baudrate
11749796ebeaSMatthias Ringwald                         && ((hci_transport_config_uart_t *)hci_stack->config)->baudrate_main;
1175db8bc6ffSMatthias Ringwald 
1176db8bc6ffSMatthias Ringwald     int need_addr_change = hci_stack->custom_bd_addr_set
1177db8bc6ffSMatthias Ringwald                         && hci_stack->control
1178db8bc6ffSMatthias Ringwald                         && hci_stack->control->set_bd_addr_cmd;
1179a80162e9SMatthias Ringwald 
11805c363727SMatthias Ringwald     switch(hci_stack->substate){
118174b323a9SMatthias Ringwald         case HCI_INIT_W4_SEND_RESET:
11820305bdeaSMatthias Ringwald             run_loop_remove_timer(&hci_stack->timeout);
118376fcb19bSMatthias Ringwald             break;
118476fcb19bSMatthias Ringwald         case HCI_INIT_W4_SEND_READ_LOCAL_VERSION_INFORMATION:
11852f48d920SMatthias Ringwald             if (need_baud_change){
11862f48d920SMatthias Ringwald                 hci_stack->substate = HCI_INIT_SEND_BAUD_CHANGE;
11872f48d920SMatthias Ringwald                 return;
11882f48d920SMatthias Ringwald             }
118953860077SMatthias Ringwald             // skip baud change
119074b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_CUSTOM_INIT;
119174b323a9SMatthias Ringwald             return;
1192a80162e9SMatthias Ringwald         case HCI_INIT_W4_SEND_BAUD_CHANGE:
11934696bddbSMatthias Ringwald             // for STLC2500D, baud rate change already happened.
1194fab26ab3SMatthias Ringwald             // for others, baud rate gets changed now
1195c6d1dbedSMatthias Ringwald             if (hci_stack->manufacturer != COMPANY_ID_ST_MICROELECTRONICS){
119696b53536SMatthias Ringwald                 uint32_t baud_rate = hci_transport_uart_get_main_baud_rate();
1197fab26ab3SMatthias Ringwald                 log_info("Local baud rate change to %"PRIu32, baud_rate);
1198fab26ab3SMatthias Ringwald                 hci_stack->hci_transport->set_baudrate(baud_rate);
11994696bddbSMatthias Ringwald             }
120074b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_CUSTOM_INIT;
120174b323a9SMatthias Ringwald             return;
1202a80162e9SMatthias Ringwald         case HCI_INIT_W4_CUSTOM_INIT_CSR_WARM_BOOT:
1203a80162e9SMatthias Ringwald             run_loop_remove_timer(&hci_stack->timeout);
1204a80162e9SMatthias Ringwald             hci_stack->substate = HCI_INIT_CUSTOM_INIT;
1205a80162e9SMatthias Ringwald             return;
120674b323a9SMatthias Ringwald         case HCI_INIT_W4_CUSTOM_INIT:
120774b323a9SMatthias Ringwald             // repeat custom init
120874b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_CUSTOM_INIT;
120974b323a9SMatthias Ringwald             return;
1210a828a756SMatthias Ringwald         case HCI_INIT_W4_READ_LOCAL_SUPPORTED_COMMANDS:
1211c6d1dbedSMatthias Ringwald             if (need_baud_change && hci_stack->manufacturer == COMPANY_ID_BROADCOM_CORPORATION){
1212eb3a5314SMatthias Ringwald                 hci_stack->substate = HCI_INIT_SEND_BAUD_CHANGE_BCM;
1213eb3a5314SMatthias Ringwald                 return;
1214eb3a5314SMatthias Ringwald             }
121553860077SMatthias Ringwald             if (need_addr_change){
121653860077SMatthias Ringwald                 hci_stack->substate = HCI_INIT_SET_BD_ADDR;
121753860077SMatthias Ringwald                 return;
121853860077SMatthias Ringwald             }
121953860077SMatthias Ringwald             hci_stack->substate = HCI_INIT_READ_BD_ADDR;
122053860077SMatthias Ringwald             return;
1221eb3a5314SMatthias Ringwald         case HCI_INIT_W4_SEND_BAUD_CHANGE_BCM: {
122296b53536SMatthias Ringwald             uint32_t baud_rate = hci_transport_uart_get_main_baud_rate();
1223fab26ab3SMatthias Ringwald             log_info("Local baud rate change to %"PRIu32" after init script", baud_rate);
1224fab26ab3SMatthias Ringwald             hci_stack->hci_transport->set_baudrate(baud_rate);
1225eb3a5314SMatthias Ringwald             if (need_addr_change){
1226eb3a5314SMatthias Ringwald                 hci_stack->substate = HCI_INIT_SET_BD_ADDR;
1227eb3a5314SMatthias Ringwald                 return;
1228eb3a5314SMatthias Ringwald             }
1229eb3a5314SMatthias Ringwald             hci_stack->substate = HCI_INIT_READ_BD_ADDR;
1230eb3a5314SMatthias Ringwald             return;
1231eb3a5314SMatthias Ringwald         }
123253860077SMatthias Ringwald         case HCI_INIT_W4_SET_BD_ADDR:
123353860077SMatthias Ringwald             // for STLC2500D, bd addr change only gets active after sending reset command
1234c6d1dbedSMatthias Ringwald             if (hci_stack->manufacturer == COMPANY_ID_ST_MICROELECTRONICS){
123553860077SMatthias Ringwald                 hci_stack->substate = HCI_INIT_SEND_RESET_ST_WARM_BOOT;
123653860077SMatthias Ringwald                 return;
123753860077SMatthias Ringwald             }
123853860077SMatthias Ringwald             // skipping st warm boot
123953860077SMatthias Ringwald             hci_stack->substate = HCI_INIT_READ_BD_ADDR;
124053860077SMatthias Ringwald             return;
124153860077SMatthias Ringwald         case HCI_INIT_W4_SEND_RESET_ST_WARM_BOOT:
124253860077SMatthias Ringwald             hci_stack->substate = HCI_INIT_READ_BD_ADDR;
124353860077SMatthias Ringwald             return;
124453860077SMatthias Ringwald         case HCI_INIT_W4_READ_BD_ADDR:
124553860077SMatthias Ringwald             // only read buffer size if supported
124653860077SMatthias Ringwald             if (hci_stack->local_supported_commands[0] & 0x01) {
124753860077SMatthias Ringwald                 hci_stack->substate = HCI_INIT_READ_BUFFER_SIZE;
124853860077SMatthias Ringwald                 return;
124953860077SMatthias Ringwald             }
125053860077SMatthias Ringwald             // skipping read buffer size
125153860077SMatthias Ringwald             hci_stack->substate = HCI_INIT_READ_LOCAL_SUPPORTED_FEATURES;
1252a828a756SMatthias Ringwald             return;
125374b323a9SMatthias Ringwald         case HCI_INIT_W4_SET_EVENT_MASK:
12546155b3d3S[email protected]             // skip Classic init commands for LE only chipsets
12556155b3d3S[email protected]             if (!hci_classic_supported()){
12566155b3d3S[email protected]                 if (hci_le_supported()){
125774b323a9SMatthias Ringwald                     hci_stack->substate = HCI_INIT_LE_READ_BUFFER_SIZE; // skip all classic command
125874b323a9SMatthias Ringwald                     return;
12596155b3d3S[email protected]                 } else {
12606155b3d3S[email protected]                     log_error("Neither BR/EDR nor LE supported");
126174b323a9SMatthias Ringwald                     hci_stack->substate = HCI_INIT_DONE; // skip all
126274b323a9SMatthias Ringwald                     return;
12636155b3d3S[email protected]                 }
12646155b3d3S[email protected]             }
126574b323a9SMatthias Ringwald             if (!hci_ssp_supported()){
12665c363727SMatthias Ringwald                 hci_stack->substate = HCI_INIT_WRITE_PAGE_TIMEOUT;
126774b323a9SMatthias Ringwald                 return;
12686155b3d3S[email protected]             }
12696155b3d3S[email protected]             break;
1270729ed62eSMatthias Ringwald         case HCI_INIT_W4_WRITE_PAGE_TIMEOUT:
1271729ed62eSMatthias Ringwald             break;
1272a828a756SMatthias Ringwald         case HCI_INIT_W4_LE_READ_BUFFER_SIZE:
1273a828a756SMatthias Ringwald             // skip write le host if not supported (e.g. on LE only EM9301)
1274a828a756SMatthias Ringwald             if (hci_stack->local_supported_commands[0] & 0x02) break;
1275a828a756SMatthias Ringwald             hci_stack->substate = HCI_INIT_LE_SET_SCAN_PARAMETERS;
1276a828a756SMatthias Ringwald             return;
1277729ed62eSMatthias Ringwald 
1278729ed62eSMatthias Ringwald #ifdef HAVE_SCO_OVER_HCI
1279729ed62eSMatthias Ringwald         case HCI_INIT_W4_WRITE_SCAN_ENABLE:
1280729ed62eSMatthias Ringwald             // just go to next state
1281729ed62eSMatthias Ringwald             break;
1282729ed62eSMatthias Ringwald         case HCI_INIT_W4_WRITE_SYNCHRONOUS_FLOW_CONTROL_ENABLE:
1283729ed62eSMatthias Ringwald             if (!hci_le_supported()){
1284729ed62eSMatthias Ringwald                 // SKIP LE init for Classic only configuration
1285729ed62eSMatthias Ringwald                 hci_stack->substate = HCI_INIT_DONE;
1286729ed62eSMatthias Ringwald                 return;
1287729ed62eSMatthias Ringwald             }
1288729ed62eSMatthias Ringwald             break;
1289729ed62eSMatthias Ringwald #else
129074b323a9SMatthias Ringwald         case HCI_INIT_W4_WRITE_SCAN_ENABLE:
12916155b3d3S[email protected]             if (!hci_le_supported()){
12926155b3d3S[email protected]                 // SKIP LE init for Classic only configuration
129374b323a9SMatthias Ringwald                 hci_stack->substate = HCI_INIT_DONE;
129474b323a9SMatthias Ringwald                 return;
12956155b3d3S[email protected]             }
1296729ed62eSMatthias Ringwald #endif
1297729ed62eSMatthias Ringwald             break;
12986155b3d3S[email protected]         default:
129974b323a9SMatthias Ringwald             break;
13006155b3d3S[email protected]     }
130155975f88SMatthias Ringwald     hci_initializing_next_state();
13026155b3d3S[email protected] }
13036155b3d3S[email protected] 
130474b323a9SMatthias Ringwald 
130574ec757aSmatthias.ringwald // avoid huge local variables
1306223aafc1Smatthias.ringwald #ifndef EMBEDDED
130774ec757aSmatthias.ringwald static device_name_t device_name;
1308223aafc1Smatthias.ringwald #endif
130916833f0aSmatthias.ringwald static void event_handler(uint8_t *packet, int size){
1310e76a89eeS[email protected] 
1311e76a89eeS[email protected]     uint16_t event_length = packet[1];
1312e76a89eeS[email protected] 
1313e76a89eeS[email protected]     // assert packet is complete
1314e76a89eeS[email protected]     if (size != event_length + 2){
1315e76a89eeS[email protected]         log_error("hci.c: event_handler called with event packet of wrong size %u, expected %u => dropping packet", size, event_length + 2);
1316e76a89eeS[email protected]         return;
1317e76a89eeS[email protected]     }
1318e76a89eeS[email protected] 
13191281a47eSmatthias.ringwald     bd_addr_t addr;
132096a45072S[email protected]     bd_addr_type_t addr_type;
13212d00edd4Smatthias.ringwald     uint8_t link_type;
1322fe1ed1b8Smatthias.ringwald     hci_con_handle_t handle;
13231f7b95a1Smatthias.ringwald     hci_connection_t * conn;
132456cf178bSmatthias.ringwald     int i;
132522909952Smatthias.ringwald 
13269da54300S[email protected]     // log_info("HCI:EVENT:%02x", packet[0]);
13275909f7f2Smatthias.ringwald 
13286772a24cSmatthias.ringwald     switch (packet[0]) {
132922909952Smatthias.ringwald 
13306772a24cSmatthias.ringwald         case HCI_EVENT_COMMAND_COMPLETE:
13317ec5eeaaSmatthias.ringwald             // get num cmd packets
13329da54300S[email protected]             // log_info("HCI_EVENT_COMMAND_COMPLETE cmds old %u - new %u", hci_stack->num_cmd_packets, packet[2]);
13333a9fb326S[email protected]             hci_stack->num_cmd_packets = packet[2];
13347ec5eeaaSmatthias.ringwald 
1335e2edc0c3Smatthias.ringwald             if (COMMAND_COMPLETE_EVENT(packet, hci_read_buffer_size)){
1336e2edc0c3Smatthias.ringwald                 // from offset 5
1337e2edc0c3Smatthias.ringwald                 // status
13381d279b20Smatthias.ringwald                 // "The HC_ACL_Data_Packet_Length return parameter will be used to determine the size of the L2CAP segments contained in ACL Data Packets"
13393a9fb326S[email protected]                 hci_stack->acl_data_packet_length = READ_BT_16(packet, 6);
1340a8b12447S[email protected]                 hci_stack->sco_data_packet_length = packet[8];
13411a06f663S[email protected]                 hci_stack->acl_packets_total_num  = READ_BT_16(packet, 9);
13421a06f663S[email protected]                 hci_stack->sco_packets_total_num  = READ_BT_16(packet, 11);
1343a8b12447S[email protected] 
13443a9fb326S[email protected]                 if (hci_stack->state == HCI_STATE_INITIALIZING){
1345a7a04bd9Smatthias.ringwald                     // determine usable ACL payload size
13463a9fb326S[email protected]                     if (HCI_ACL_PAYLOAD_SIZE < hci_stack->acl_data_packet_length){
13473a9fb326S[email protected]                         hci_stack->acl_data_packet_length = HCI_ACL_PAYLOAD_SIZE;
13488f8108aaSmatthias.ringwald                     }
13491a06f663S[email protected]                     log_info("hci_read_buffer_size: acl used size %u, count %u / sco size %u, count %u",
13501a06f663S[email protected]                              hci_stack->acl_data_packet_length, hci_stack->acl_packets_total_num,
13511a06f663S[email protected]                              hci_stack->sco_data_packet_length, hci_stack->sco_packets_total_num);
1352e2edc0c3Smatthias.ringwald                 }
135356cf178bSmatthias.ringwald             }
135465a46ef3S[email protected] #ifdef HAVE_BLE
135565a46ef3S[email protected]             if (COMMAND_COMPLETE_EVENT(packet, hci_le_read_buffer_size)){
1356219eea5fS[email protected]                 hci_stack->le_data_packets_length = READ_BT_16(packet, 6);
1357ee303eddS[email protected]                 hci_stack->le_acl_packets_total_num  = packet[8];
13586c26b087S[email protected]                     // determine usable ACL payload size
13596c26b087S[email protected]                     if (HCI_ACL_PAYLOAD_SIZE < hci_stack->le_data_packets_length){
13606c26b087S[email protected]                         hci_stack->le_data_packets_length = HCI_ACL_PAYLOAD_SIZE;
13616c26b087S[email protected]                     }
13629da54300S[email protected]                 log_info("hci_le_read_buffer_size: size %u, count %u", hci_stack->le_data_packets_length, hci_stack->le_acl_packets_total_num);
136365a46ef3S[email protected]             }
13643b6d4121SMatthias Ringwald             if (COMMAND_COMPLETE_EVENT(packet, hci_le_read_white_list_size)){
136515d0a15bSMatthias Ringwald                 hci_stack->le_whitelist_capacity = READ_BT_16(packet, 6);
136615d0a15bSMatthias Ringwald                 log_info("hci_le_read_white_list_size: size %u", hci_stack->le_whitelist_capacity);
13673b6d4121SMatthias Ringwald             }
136865a46ef3S[email protected] #endif
1369188981d2Smatthias.ringwald             // Dump local address
1370188981d2Smatthias.ringwald             if (COMMAND_COMPLETE_EVENT(packet, hci_read_bd_addr)) {
13713a9fb326S[email protected]                 bt_flip_addr(hci_stack->local_bd_addr, &packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE + 1]);
13729da54300S[email protected]                 log_info("Local Address, Status: 0x%02x: Addr: %s",
13733a9fb326S[email protected]                     packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE], bd_addr_to_str(hci_stack->local_bd_addr));
1374188981d2Smatthias.ringwald             }
1375381fbed8Smatthias.ringwald             if (COMMAND_COMPLETE_EVENT(packet, hci_write_scan_enable)){
13763a9fb326S[email protected]                 hci_emit_discoverable_enabled(hci_stack->discoverable);
1377381fbed8Smatthias.ringwald             }
137865389bfcS[email protected]             // Note: HCI init checks
1379559e517eS[email protected]             if (COMMAND_COMPLETE_EVENT(packet, hci_read_local_supported_features)){
13803a9fb326S[email protected]                 memcpy(hci_stack->local_supported_features, &packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE+1], 8);
138165389bfcS[email protected] 
1382a5a23fc2S[email protected]                 // determine usable ACL packet types based on host buffer size and supported features
1383a5a23fc2S[email protected]                 hci_stack->packet_types = hci_acl_packet_types_for_buffer_size_and_local_features(HCI_ACL_PAYLOAD_SIZE, &hci_stack->local_supported_features[0]);
13843a9fb326S[email protected]                 log_info("packet types %04x", hci_stack->packet_types);
1385f5d8d141S[email protected] 
1386f5d8d141S[email protected]                 // Classic/LE
1387f5d8d141S[email protected]                 log_info("BR/EDR support %u, LE support %u", hci_classic_supported(), hci_le_supported());
1388559e517eS[email protected]             }
13894696bddbSMatthias Ringwald             if (COMMAND_COMPLETE_EVENT(packet, hci_read_local_version_information)){
13904696bddbSMatthias Ringwald                 // hci_stack->hci_version    = READ_BT_16(packet, 4);
13914696bddbSMatthias Ringwald                 // hci_stack->hci_revision   = READ_BT_16(packet, 6);
13924696bddbSMatthias Ringwald                 // hci_stack->lmp_version    = READ_BT_16(packet, 8);
13934696bddbSMatthias Ringwald                 hci_stack->manufacturer   = READ_BT_16(packet, 10);
13944696bddbSMatthias Ringwald                 // hci_stack->lmp_subversion = READ_BT_16(packet, 12);
13954696bddbSMatthias Ringwald                 log_info("Manufacturer: 0x%04x", hci_stack->manufacturer);
13964696bddbSMatthias Ringwald             }
1397a828a756SMatthias Ringwald             if (COMMAND_COMPLETE_EVENT(packet, hci_read_local_supported_commands)){
1398a828a756SMatthias Ringwald                 hci_stack->local_supported_commands[0] =
1399a828a756SMatthias Ringwald                     (packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE+1+14] & 0X80) >> 7 |  // Octet 14, bit 7
1400a828a756SMatthias Ringwald                     (packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE+1+24] & 0x40) >> 5;   // Octet 24, bit 6
1401a828a756SMatthias Ringwald             }
14025b9b590fSMatthias Ringwald             if (COMMAND_COMPLETE_EVENT(packet, hci_write_synchronous_flow_control_enable)){
14035b9b590fSMatthias Ringwald                 if (packet[5] == 0){
14045b9b590fSMatthias Ringwald                     hci_stack->synchronous_flow_control_enabled = 1;
14055b9b590fSMatthias Ringwald                 }
14065b9b590fSMatthias Ringwald             }
140756cf178bSmatthias.ringwald             break;
140856cf178bSmatthias.ringwald 
14097ec5eeaaSmatthias.ringwald         case HCI_EVENT_COMMAND_STATUS:
14107ec5eeaaSmatthias.ringwald             // get num cmd packets
14119da54300S[email protected]             // log_info("HCI_EVENT_COMMAND_STATUS cmds - old %u - new %u", hci_stack->num_cmd_packets, packet[3]);
14123a9fb326S[email protected]             hci_stack->num_cmd_packets = packet[3];
14137ec5eeaaSmatthias.ringwald             break;
14147ec5eeaaSmatthias.ringwald 
14152e440c8aS[email protected]         case HCI_EVENT_NUMBER_OF_COMPLETED_PACKETS:{
14162e440c8aS[email protected]             int offset = 3;
141756cf178bSmatthias.ringwald             for (i=0; i<packet[2];i++){
14182e440c8aS[email protected]                 handle = READ_BT_16(packet, offset);
14192e440c8aS[email protected]                 offset += 2;
14202e440c8aS[email protected]                 uint16_t num_packets = READ_BT_16(packet, offset);
14212e440c8aS[email protected]                 offset += 2;
14222e440c8aS[email protected] 
14235061f3afS[email protected]                 conn = hci_connection_for_handle(handle);
142456cf178bSmatthias.ringwald                 if (!conn){
14259da54300S[email protected]                     log_error("hci_number_completed_packet lists unused con handle %u", handle);
142656cf178bSmatthias.ringwald                     continue;
142756cf178bSmatthias.ringwald                 }
142823bed257S[email protected] 
1429e35edcc1S[email protected]                 if (conn->address_type == BD_ADDR_TYPE_SCO){
1430e35edcc1S[email protected]                     if (conn->num_sco_packets_sent >= num_packets){
1431e35edcc1S[email protected]                         conn->num_sco_packets_sent -= num_packets;
1432e35edcc1S[email protected]                     } else {
1433e35edcc1S[email protected]                         log_error("hci_number_completed_packets, more sco slots freed then sent.");
1434e35edcc1S[email protected]                         conn->num_sco_packets_sent = 0;
1435e35edcc1S[email protected]                     }
1436e35edcc1S[email protected] 
1437e35edcc1S[email protected]                 } else {
143823bed257S[email protected]                     if (conn->num_acl_packets_sent >= num_packets){
143956cf178bSmatthias.ringwald                         conn->num_acl_packets_sent -= num_packets;
144023bed257S[email protected]                     } else {
1441e35edcc1S[email protected]                         log_error("hci_number_completed_packets, more acl slots freed then sent.");
144223bed257S[email protected]                         conn->num_acl_packets_sent = 0;
144323bed257S[email protected]                     }
1444e35edcc1S[email protected]                 }
14459da54300S[email protected]                 // log_info("hci_number_completed_packet %u processed for handle %u, outstanding %u", num_packets, handle, conn->num_acl_packets_sent);
144656cf178bSmatthias.ringwald             }
14476772a24cSmatthias.ringwald             break;
14482e440c8aS[email protected]         }
14491f7b95a1Smatthias.ringwald         case HCI_EVENT_CONNECTION_REQUEST:
145037eaa4cfSmatthias.ringwald             bt_flip_addr(addr, &packet[2]);
145137eaa4cfSmatthias.ringwald             // TODO: eval COD 8-10
14522d00edd4Smatthias.ringwald             link_type = packet[11];
14539da54300S[email protected]             log_info("Connection_incoming: %s, type %u", bd_addr_to_str(addr), link_type);
1454e35edcc1S[email protected]             addr_type = link_type == 1 ? BD_ADDR_TYPE_CLASSIC : BD_ADDR_TYPE_SCO;
14552e77e513S[email protected]             conn = hci_connection_for_bd_addr_and_type(addr, addr_type);
14561f7b95a1Smatthias.ringwald             if (!conn) {
14575293c072S[email protected]                 conn = create_connection_for_bd_addr_and_type(addr, addr_type);
14581f7b95a1Smatthias.ringwald             }
1459ce4c8fabSmatthias.ringwald             if (!conn) {
1460ce4c8fabSmatthias.ringwald                 // CONNECTION REJECTED DUE TO LIMITED RESOURCES (0X0D)
14613a9fb326S[email protected]                 hci_stack->decline_reason = 0x0d;
14623a9fb326S[email protected]                 BD_ADDR_COPY(hci_stack->decline_addr, addr);
1463ce4c8fabSmatthias.ringwald                 break;
1464ce4c8fabSmatthias.ringwald             }
14655cf766e8SMatthias Ringwald             conn->role  = HCI_ROLE_SLAVE;
146632ab9390Smatthias.ringwald             conn->state = RECEIVED_CONNECTION_REQUEST;
1467f3a16b9aSMatthias Ringwald             // store info about eSCO
1468f3a16b9aSMatthias Ringwald             if (link_type == 0x02){
1469f3a16b9aSMatthias Ringwald                 conn->remote_supported_feature_eSCO = 1;
1470f3a16b9aSMatthias Ringwald             }
147132ab9390Smatthias.ringwald             hci_run();
14721f7b95a1Smatthias.ringwald             break;
14731f7b95a1Smatthias.ringwald 
14746772a24cSmatthias.ringwald         case HCI_EVENT_CONNECTION_COMPLETE:
1475fe1ed1b8Smatthias.ringwald             // Connection management
1476fe1ed1b8Smatthias.ringwald             bt_flip_addr(addr, &packet[5]);
14779da54300S[email protected]             log_info("Connection_complete (status=%u) %s", packet[2], bd_addr_to_str(addr));
147896a45072S[email protected]             addr_type = BD_ADDR_TYPE_CLASSIC;
14792e77e513S[email protected]             conn = hci_connection_for_bd_addr_and_type(addr, addr_type);
1480fe1ed1b8Smatthias.ringwald             if (conn) {
1481b448a0e7Smatthias.ringwald                 if (!packet[2]){
1482c8e4258aSmatthias.ringwald                     conn->state = OPEN;
1483fe1ed1b8Smatthias.ringwald                     conn->con_handle = READ_BT_16(packet, 3);
1484ad83dc6aS[email protected]                     conn->bonding_flags |= BONDING_REQUEST_REMOTE_FEATURES;
1485ee091cf1Smatthias.ringwald 
1486c785ef68Smatthias.ringwald                     // restart timer
1487c21e6239Smatthias.ringwald                     run_loop_set_timer(&conn->timeout, HCI_CONNECTION_TIMEOUT_MS);
1488ee091cf1Smatthias.ringwald                     run_loop_add_timer(&conn->timeout);
1489c785ef68Smatthias.ringwald 
14909da54300S[email protected]                     log_info("New connection: handle %u, %s", conn->con_handle, bd_addr_to_str(conn->address));
149143bfb1bdSmatthias.ringwald 
149243bfb1bdSmatthias.ringwald                     hci_emit_nr_connections_changed();
1493b448a0e7Smatthias.ringwald                 } else {
14941bd5283dS[email protected]                     int notify_dedicated_bonding_failed = conn->bonding_flags & BONDING_DEDICATED;
14951bd5283dS[email protected]                     uint8_t status = packet[2];
14961bd5283dS[email protected]                     bd_addr_t bd_address;
14971bd5283dS[email protected]                     memcpy(&bd_address, conn->address, 6);
1498ad83dc6aS[email protected] 
1499b448a0e7Smatthias.ringwald                     // connection failed, remove entry
1500665d90f2SMatthias Ringwald                     btstack_linked_list_remove(&hci_stack->connections, (btstack_linked_item_t *) conn);
1501a3b02b71Smatthias.ringwald                     btstack_memory_hci_connection_free( conn );
1502c12e46e7Smatthias.ringwald 
15031bd5283dS[email protected]                     // notify client if dedicated bonding
15041bd5283dS[email protected]                     if (notify_dedicated_bonding_failed){
15051bd5283dS[email protected]                         log_info("hci notify_dedicated_bonding_failed");
15061bd5283dS[email protected]                         hci_emit_dedicated_bonding_result(bd_address, status);
15071bd5283dS[email protected]                     }
15081bd5283dS[email protected] 
1509c12e46e7Smatthias.ringwald                     // if authentication error, also delete link key
1510c12e46e7Smatthias.ringwald                     if (packet[2] == 0x05) {
15112e77e513S[email protected]                         hci_drop_link_key_for_bd_addr(addr);
1512c12e46e7Smatthias.ringwald                     }
1513fe1ed1b8Smatthias.ringwald                 }
1514fe1ed1b8Smatthias.ringwald             }
15156772a24cSmatthias.ringwald             break;
1516fe1ed1b8Smatthias.ringwald 
151744d0e3d5S[email protected]         case HCI_EVENT_SYNCHRONOUS_CONNECTION_COMPLETE:
151844d0e3d5S[email protected]             bt_flip_addr(addr, &packet[5]);
151944d0e3d5S[email protected]             log_info("Synchronous Connection Complete (status=%u) %s", packet[2], bd_addr_to_str(addr));
15201a06f663S[email protected]             if (packet[2]){
152144d0e3d5S[email protected]                 // connection failed
152244d0e3d5S[email protected]                 break;
152344d0e3d5S[email protected]             }
15242e77e513S[email protected]             conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_SCO);
1525e35edcc1S[email protected]             if (!conn) {
1526e35edcc1S[email protected]                 conn = create_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_SCO);
1527e35edcc1S[email protected]             }
1528e35edcc1S[email protected]             if (!conn) {
1529e35edcc1S[email protected]                 break;
1530e35edcc1S[email protected]             }
15311a06f663S[email protected]             conn->state = OPEN;
15321a06f663S[email protected]             conn->con_handle = READ_BT_16(packet, 3);
153344d0e3d5S[email protected]             break;
153444d0e3d5S[email protected] 
1535afd4e962S[email protected]         case HCI_EVENT_READ_REMOTE_SUPPORTED_FEATURES_COMPLETE:
1536afd4e962S[email protected]             handle = READ_BT_16(packet, 3);
1537afd4e962S[email protected]             conn = hci_connection_for_handle(handle);
1538afd4e962S[email protected]             if (!conn) break;
1539afd4e962S[email protected]             if (!packet[2]){
1540afd4e962S[email protected]                 uint8_t * features = &packet[5];
1541afd4e962S[email protected]                 if (features[6] & (1 << 3)){
1542afd4e962S[email protected]                     conn->bonding_flags |= BONDING_REMOTE_SUPPORTS_SSP;
1543afd4e962S[email protected]                 }
154498a2fd1cSMatthias Ringwald                 if (features[3] & (1<<7)){
154598a2fd1cSMatthias Ringwald                     conn->remote_supported_feature_eSCO = 1;
154698a2fd1cSMatthias Ringwald                 }
1547afd4e962S[email protected]             }
1548afd4e962S[email protected]             conn->bonding_flags |= BONDING_RECEIVED_REMOTE_FEATURES;
154998a2fd1cSMatthias Ringwald             log_info("HCI_EVENT_READ_REMOTE_SUPPORTED_FEATURES_COMPLETE, bonding flags %x, eSCO %u", conn->bonding_flags, conn->remote_supported_feature_eSCO);
1550ad83dc6aS[email protected]             if (conn->bonding_flags & BONDING_DEDICATED){
1551ad83dc6aS[email protected]                 conn->bonding_flags |= BONDING_SEND_AUTHENTICATE_REQUEST;
1552ad83dc6aS[email protected]             }
1553afd4e962S[email protected]             break;
1554afd4e962S[email protected] 
15557fde4af9Smatthias.ringwald         case HCI_EVENT_LINK_KEY_REQUEST:
15569da54300S[email protected]             log_info("HCI_EVENT_LINK_KEY_REQUEST");
15577fde4af9Smatthias.ringwald             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], RECV_LINK_KEY_REQUEST);
155874d716b5S[email protected]             // non-bondable mode: link key negative reply will be sent by HANDLE_LINK_KEY_REQUEST
15593a9fb326S[email protected]             if (hci_stack->bondable && !hci_stack->remote_device_db) break;
156032ab9390Smatthias.ringwald             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], HANDLE_LINK_KEY_REQUEST);
156164472d52Smatthias.ringwald             hci_run();
1562d9a327f9Smatthias.ringwald             // request handled by hci_run() as HANDLE_LINK_KEY_REQUEST gets set
156329d53098Smatthias.ringwald             return;
15647fde4af9Smatthias.ringwald 
15659ab95c90S[email protected]         case HCI_EVENT_LINK_KEY_NOTIFICATION: {
156629d53098Smatthias.ringwald             bt_flip_addr(addr, &packet[2]);
15672e77e513S[email protected]             conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_CLASSIC);
15689ab95c90S[email protected]             if (!conn) break;
15699ab95c90S[email protected]             conn->authentication_flags |= RECV_LINK_KEY_NOTIFICATION;
15707bdc6798S[email protected]             link_key_type_t link_key_type = (link_key_type_t)packet[24];
15719ab95c90S[email protected]             // Change Connection Encryption keeps link key type
15729ab95c90S[email protected]             if (link_key_type != CHANGED_COMBINATION_KEY){
15739ab95c90S[email protected]                 conn->link_key_type = link_key_type;
15749ab95c90S[email protected]             }
15753a9fb326S[email protected]             if (!hci_stack->remote_device_db) break;
15762e77e513S[email protected]             hci_stack->remote_device_db->put_link_key(addr, &packet[8], conn->link_key_type);
157729d53098Smatthias.ringwald             // still forward event to allow dismiss of pairing dialog
15787fde4af9Smatthias.ringwald             break;
15799ab95c90S[email protected]         }
15807fde4af9Smatthias.ringwald 
15817fde4af9Smatthias.ringwald         case HCI_EVENT_PIN_CODE_REQUEST:
15826724cd9eS[email protected]             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], LEGACY_PAIRING_ACTIVE);
15834c57c146S[email protected]             // non-bondable mode: pin code negative reply will be sent
15843a9fb326S[email protected]             if (!hci_stack->bondable){
1585899283eaS[email protected]                 hci_add_connection_flags_for_flipped_bd_addr(&packet[2], DENY_PIN_CODE_REQUEST);
1586f8fb5f6eS[email protected]                 hci_run();
1587f8fb5f6eS[email protected]                 return;
15884c57c146S[email protected]             }
1589d9a327f9Smatthias.ringwald             // PIN CODE REQUEST means the link key request didn't succee -> delete stored link key
15903a9fb326S[email protected]             if (!hci_stack->remote_device_db) break;
1591d9a327f9Smatthias.ringwald             bt_flip_addr(addr, &packet[2]);
15922e77e513S[email protected]             hci_stack->remote_device_db->delete_link_key(addr);
15937fde4af9Smatthias.ringwald             break;
15947fde4af9Smatthias.ringwald 
15951d6b20aeS[email protected]         case HCI_EVENT_IO_CAPABILITY_REQUEST:
15961d6b20aeS[email protected]             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], RECV_IO_CAPABILITIES_REQUEST);
1597dbe1a790S[email protected]             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], SEND_IO_CAPABILITIES_REPLY);
1598dbe1a790S[email protected]             break;
1599dbe1a790S[email protected] 
1600dbe1a790S[email protected]         case HCI_EVENT_USER_CONFIRMATION_REQUEST:
16016724cd9eS[email protected]             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], SSP_PAIRING_ACTIVE);
16023a9fb326S[email protected]             if (!hci_stack->ssp_auto_accept) break;
1603dbe1a790S[email protected]             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], SEND_USER_CONFIRM_REPLY);
1604dbe1a790S[email protected]             break;
1605dbe1a790S[email protected] 
1606dbe1a790S[email protected]         case HCI_EVENT_USER_PASSKEY_REQUEST:
16076724cd9eS[email protected]             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], SSP_PAIRING_ACTIVE);
16083a9fb326S[email protected]             if (!hci_stack->ssp_auto_accept) break;
1609dbe1a790S[email protected]             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], SEND_USER_PASSKEY_REPLY);
16101d6b20aeS[email protected]             break;
16111d6b20aeS[email protected] 
1612f0944df2S[email protected]         case HCI_EVENT_ENCRYPTION_CHANGE:
1613f0944df2S[email protected]             handle = READ_BT_16(packet, 3);
1614f0944df2S[email protected]             conn = hci_connection_for_handle(handle);
1615f0944df2S[email protected]             if (!conn) break;
1616ad83dc6aS[email protected]             if (packet[2] == 0) {
1617f0944df2S[email protected]                 if (packet[5]){
1618f0944df2S[email protected]                     conn->authentication_flags |= CONNECTION_ENCRYPTED;
1619f0944df2S[email protected]                 } else {
1620536f9994S[email protected]                     conn->authentication_flags &= ~CONNECTION_ENCRYPTED;
1621f0944df2S[email protected]                 }
1622ad83dc6aS[email protected]             }
1623a00031e2S[email protected]             hci_emit_security_level(handle, gap_security_level_for_connection(conn));
1624f0944df2S[email protected]             break;
1625f0944df2S[email protected] 
16261eb2563eS[email protected]         case HCI_EVENT_AUTHENTICATION_COMPLETE_EVENT:
16271eb2563eS[email protected]             handle = READ_BT_16(packet, 3);
16281eb2563eS[email protected]             conn = hci_connection_for_handle(handle);
16291eb2563eS[email protected]             if (!conn) break;
1630ad83dc6aS[email protected] 
1631ad83dc6aS[email protected]             // dedicated bonding: send result and disconnect
1632ad83dc6aS[email protected]             if (conn->bonding_flags & BONDING_DEDICATED){
1633ad83dc6aS[email protected]                 conn->bonding_flags &= ~BONDING_DEDICATED;
1634ad83dc6aS[email protected]                 conn->bonding_flags |= BONDING_DISCONNECT_DEDICATED_DONE;
16351bd5283dS[email protected]                 conn->bonding_status = packet[2];
1636ad83dc6aS[email protected]                 break;
1637ad83dc6aS[email protected]             }
1638ad83dc6aS[email protected] 
1639b5cb6874S[email protected]             if (packet[2] == 0 && gap_security_level_for_link_key_type(conn->link_key_type) >= conn->requested_security_level){
16401eb2563eS[email protected]                 // link key sufficient for requested security
16411eb2563eS[email protected]                 conn->bonding_flags |= BONDING_SEND_ENCRYPTION_REQUEST;
1642ad83dc6aS[email protected]                 break;
1643ad83dc6aS[email protected]             }
16441eb2563eS[email protected]             // not enough
16451eb2563eS[email protected]             hci_emit_security_level(handle, gap_security_level_for_connection(conn));
16461eb2563eS[email protected]             break;
164734d2123cS[email protected] 
1648223aafc1Smatthias.ringwald #ifndef EMBEDDED
164974ec757aSmatthias.ringwald         case HCI_EVENT_REMOTE_NAME_REQUEST_COMPLETE:
16503a9fb326S[email protected]             if (!hci_stack->remote_device_db) break;
165174ec757aSmatthias.ringwald             if (packet[2]) break; // status not ok
165274ec757aSmatthias.ringwald             bt_flip_addr(addr, &packet[3]);
16535a06394aSmatthias.ringwald             // fix for invalid remote names - terminate on 0xff
16545a06394aSmatthias.ringwald             for (i=0; i<248;i++){
16555a06394aSmatthias.ringwald                 if (packet[9+i] == 0xff){
16565a06394aSmatthias.ringwald                     packet[9+i] = 0;
16575a06394aSmatthias.ringwald                     break;
1658cdc9101dSmatthias.ringwald                 }
16595a06394aSmatthias.ringwald             }
1660d2fe945cS[email protected]             memset(&device_name, 0, sizeof(device_name_t));
166174ec757aSmatthias.ringwald             strncpy((char*) device_name, (char*) &packet[9], 248);
16622e77e513S[email protected]             hci_stack->remote_device_db->put_name(addr, &device_name);
166374ec757aSmatthias.ringwald             break;
166474ec757aSmatthias.ringwald 
166574ec757aSmatthias.ringwald         case HCI_EVENT_INQUIRY_RESULT:
1666206a9031S[email protected]         case HCI_EVENT_INQUIRY_RESULT_WITH_RSSI:{
16673a9fb326S[email protected]             if (!hci_stack->remote_device_db) break;
166874ec757aSmatthias.ringwald             // first send inq result packet
16693a9fb326S[email protected]             hci_stack->packet_handler(HCI_EVENT_PACKET, packet, size);
167074ec757aSmatthias.ringwald             // then send cached remote names
1671206a9031S[email protected]             int offset = 3;
167274ec757aSmatthias.ringwald             for (i=0; i<packet[2];i++){
1673206a9031S[email protected]                 bt_flip_addr(addr, &packet[offset]);
1674206a9031S[email protected]                 offset += 14; // 6 + 1 + 1 + 1 + 3 + 2;
16752e77e513S[email protected]                 if (hci_stack->remote_device_db->get_name(addr, &device_name)){
16762e77e513S[email protected]                     hci_emit_remote_name_cached(addr, &device_name);
167774ec757aSmatthias.ringwald                 }
167874ec757aSmatthias.ringwald             }
167974ec757aSmatthias.ringwald             return;
1680206a9031S[email protected]         }
1681223aafc1Smatthias.ringwald #endif
168274ec757aSmatthias.ringwald 
168386805605S[email protected]         // HCI_EVENT_DISCONNECTION_COMPLETE
1684ccda6e14S[email protected]         // has been split, to first notify stack before shutting connection down
1685ccda6e14S[email protected]         // see end of function, too.
1686a4f30ec0S[email protected]         case HCI_EVENT_DISCONNECTION_COMPLETE:
1687a4f30ec0S[email protected]             if (packet[2]) break;   // status != 0
1688ccda6e14S[email protected]             handle = READ_BT_16(packet, 3);
16896da48142SSean Wilson             conn = hci_connection_for_handle(handle);
1690a4f30ec0S[email protected]             if (!conn) break;       // no conn struct anymore
16919a2e4658SMatthias Ringwald             // re-enable advertisements for le connections if active
16929a2e4658SMatthias Ringwald             if (hci_is_le_connection(conn) && hci_stack->le_advertisements_enabled){
16939a2e4658SMatthias Ringwald                 hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_ENABLE;
16949a2e4658SMatthias Ringwald             }
1695ccda6e14S[email protected]             conn->state = RECEIVED_DISCONNECTION_COMPLETE;
1696ccda6e14S[email protected]             break;
16976772a24cSmatthias.ringwald 
1698c68bdf90Smatthias.ringwald         case HCI_EVENT_HARDWARE_ERROR:
1699d23838ecSMatthias Ringwald             if (hci_stack->hardware_error_callback){
1700d23838ecSMatthias Ringwald                 (*hci_stack->hardware_error_callback)();
1701d23838ecSMatthias Ringwald             } else if(hci_stack->control && hci_stack->control->hw_error){
17023a9fb326S[email protected]                 (*hci_stack->control->hw_error)();
17037586ee35S[email protected]             } else {
17047586ee35S[email protected]                 // if no special requests, just reboot stack
17057586ee35S[email protected]                 hci_power_control_off();
17067586ee35S[email protected]                 hci_power_control_on();
1707c68bdf90Smatthias.ringwald             }
1708c68bdf90Smatthias.ringwald             break;
1709c68bdf90Smatthias.ringwald 
17105cf766e8SMatthias Ringwald         case HCI_EVENT_ROLE_CHANGE:
17115cf766e8SMatthias Ringwald             if (packet[2]) break;   // status != 0
17125cf766e8SMatthias Ringwald             handle = READ_BT_16(packet, 3);
17135cf766e8SMatthias Ringwald             conn = hci_connection_for_handle(handle);
17145cf766e8SMatthias Ringwald             if (!conn) break;       // no conn
17155cf766e8SMatthias Ringwald             conn->role = packet[9];
17165cf766e8SMatthias Ringwald             break;
17175cf766e8SMatthias Ringwald 
17186b4af23dS[email protected]         case DAEMON_EVENT_HCI_PACKET_SENT:
1719d051460cS[email protected]             // release packet buffer only for asynchronous transport and if there are not further fragements
17204fa24b5fS[email protected]             if (hci_transport_synchronous()) {
17214fa24b5fS[email protected]                 log_error("Synchronous HCI Transport shouldn't send DAEMON_EVENT_HCI_PACKET_SENT");
17224fa24b5fS[email protected]                 return; // instead of break: to avoid re-entering hci_run()
17234fa24b5fS[email protected]             }
1724d051460cS[email protected]             if (hci_stack->acl_fragmentation_total_size) break;
1725d051460cS[email protected]             hci_release_packet_buffer();
17266b4af23dS[email protected]             break;
17276b4af23dS[email protected] 
17285909f7f2Smatthias.ringwald #ifdef HAVE_BLE
17295909f7f2Smatthias.ringwald         case HCI_EVENT_LE_META:
17305909f7f2Smatthias.ringwald             switch (packet[2]){
173157c9da5bS[email protected]                 case HCI_SUBEVENT_LE_ADVERTISING_REPORT:
17329da54300S[email protected]                     log_info("advertising report received");
17337bdc6798S[email protected]                     if (hci_stack->le_scanning_state != LE_SCANNING) break;
173457c9da5bS[email protected]                     le_handle_advertisement_report(packet, size);
17357bdc6798S[email protected]                     break;
17365909f7f2Smatthias.ringwald                 case HCI_SUBEVENT_LE_CONNECTION_COMPLETE:
17375909f7f2Smatthias.ringwald                     // Connection management
17385909f7f2Smatthias.ringwald                     bt_flip_addr(addr, &packet[8]);
17397bdc6798S[email protected]                     addr_type = (bd_addr_type_t)packet[7];
17409da54300S[email protected]                     log_info("LE Connection_complete (status=%u) type %u, %s", packet[3], addr_type, bd_addr_to_str(addr));
17412e77e513S[email protected]                     conn = hci_connection_for_bd_addr_and_type(addr, addr_type);
174242ff5ba1SMatthias Ringwald                     // if auto-connect, remove from whitelist in both roles
174342ff5ba1SMatthias Ringwald                     if (hci_stack->le_connecting_state == LE_CONNECTING_WHITELIST){
174442ff5ba1SMatthias Ringwald                         hci_remove_from_whitelist(addr_type, addr);
174542ff5ba1SMatthias Ringwald                     }
174642ff5ba1SMatthias Ringwald                     // handle error: error is reported only to the initiator -> outgoing connection
17475909f7f2Smatthias.ringwald                     if (packet[3]){
174842ff5ba1SMatthias Ringwald                         // outgoing connection establishment is done
174942ff5ba1SMatthias Ringwald                         hci_stack->le_connecting_state = LE_CONNECTING_IDLE;
175042ff5ba1SMatthias Ringwald                         // remove entry
17515909f7f2Smatthias.ringwald                         if (conn){
1752665d90f2SMatthias Ringwald                             btstack_linked_list_remove(&hci_stack->connections, (btstack_linked_item_t *) conn);
17535909f7f2Smatthias.ringwald                             btstack_memory_hci_connection_free( conn );
17545909f7f2Smatthias.ringwald                         }
17555909f7f2Smatthias.ringwald                         break;
17565909f7f2Smatthias.ringwald                     }
175742ff5ba1SMatthias Ringwald                     // on success, both hosts receive connection complete event
17585cf766e8SMatthias Ringwald                     if (packet[6] == HCI_ROLE_MASTER){
175942ff5ba1SMatthias Ringwald                         // if we're master, it was an outgoing connection and we're done with it
176042ff5ba1SMatthias Ringwald                         hci_stack->le_connecting_state = LE_CONNECTING_IDLE;
176142ff5ba1SMatthias Ringwald                     } else {
176242ff5ba1SMatthias Ringwald                         // if we're slave, it was an incoming connection, advertisements have stopped
1763171293d3SMatthias Ringwald                         hci_stack->le_advertisements_active = 0;
176442ff5ba1SMatthias Ringwald                     }
1765171293d3SMatthias Ringwald                     // LE connections are auto-accepted, so just create a connection if there isn't one already
176642ff5ba1SMatthias Ringwald                     if (!conn){
176796a45072S[email protected]                         conn = create_connection_for_bd_addr_and_type(addr, addr_type);
17685909f7f2Smatthias.ringwald                     }
176942ff5ba1SMatthias Ringwald                     // no memory, sorry.
17705909f7f2Smatthias.ringwald                     if (!conn){
17715909f7f2Smatthias.ringwald                         break;
17725909f7f2Smatthias.ringwald                     }
17735909f7f2Smatthias.ringwald 
17745909f7f2Smatthias.ringwald                     conn->state = OPEN;
17755cf766e8SMatthias Ringwald                     conn->role  = packet[6];
17765909f7f2Smatthias.ringwald                     conn->con_handle = READ_BT_16(packet, 4);
17775909f7f2Smatthias.ringwald 
17785909f7f2Smatthias.ringwald                     // TODO: store - role, peer address type, conn_interval, conn_latency, supervision timeout, master clock
17795909f7f2Smatthias.ringwald 
17805909f7f2Smatthias.ringwald                     // restart timer
17815909f7f2Smatthias.ringwald                     // run_loop_set_timer(&conn->timeout, HCI_CONNECTION_TIMEOUT_MS);
17825909f7f2Smatthias.ringwald                     // run_loop_add_timer(&conn->timeout);
17835909f7f2Smatthias.ringwald 
17849da54300S[email protected]                     log_info("New connection: handle %u, %s", conn->con_handle, bd_addr_to_str(conn->address));
17855909f7f2Smatthias.ringwald 
17865909f7f2Smatthias.ringwald                     hci_emit_nr_connections_changed();
17875909f7f2Smatthias.ringwald                     break;
17885909f7f2Smatthias.ringwald 
17899da54300S[email protected]             // log_info("LE buffer size: %u, count %u", READ_BT_16(packet,6), packet[8]);
179065a46ef3S[email protected] 
17915909f7f2Smatthias.ringwald                 default:
17925909f7f2Smatthias.ringwald                     break;
17935909f7f2Smatthias.ringwald             }
17945909f7f2Smatthias.ringwald             break;
17955909f7f2Smatthias.ringwald #endif
17966772a24cSmatthias.ringwald         default:
17976772a24cSmatthias.ringwald             break;
1798fe1ed1b8Smatthias.ringwald     }
1799fe1ed1b8Smatthias.ringwald 
18003429f56bSmatthias.ringwald     // handle BT initialization
18013a9fb326S[email protected]     if (hci_stack->state == HCI_STATE_INITIALIZING){
18026155b3d3S[email protected]         hci_initializing_event_handler(packet, size);
1803c9af4d3fS[email protected]     }
180422909952Smatthias.ringwald 
180589db417bSmatthias.ringwald     // help with BT sleep
18063a9fb326S[email protected]     if (hci_stack->state == HCI_STATE_FALLING_ASLEEP
180774b323a9SMatthias Ringwald         && hci_stack->substate == HCI_FALLING_ASLEEP_W4_WRITE_SCAN_ENABLE
180889db417bSmatthias.ringwald         && COMMAND_COMPLETE_EVENT(packet, hci_write_scan_enable)){
180955975f88SMatthias Ringwald         hci_initializing_next_state();
181089db417bSmatthias.ringwald     }
181189db417bSmatthias.ringwald 
181286805605S[email protected]     // notify upper stack
18133a9fb326S[email protected]     hci_stack->packet_handler(HCI_EVENT_PACKET, packet, size);
181494ab26f8Smatthias.ringwald 
181586805605S[email protected]     // moved here to give upper stack a chance to close down everything with hci_connection_t intact
181686805605S[email protected]     if (packet[0] == HCI_EVENT_DISCONNECTION_COMPLETE){
181786805605S[email protected]         if (!packet[2]){
181886805605S[email protected]             handle = READ_BT_16(packet, 3);
181905ae8de3SMatthias Ringwald             hci_connection_t * aConn = hci_connection_for_handle(handle);
182005ae8de3SMatthias Ringwald             if (aConn) {
182105ae8de3SMatthias Ringwald                 uint8_t status = aConn->bonding_status;
182205ae8de3SMatthias Ringwald                 uint16_t flags = aConn->bonding_flags;
182386805605S[email protected]                 bd_addr_t bd_address;
182405ae8de3SMatthias Ringwald                 memcpy(&bd_address, aConn->address, 6);
182505ae8de3SMatthias Ringwald                 hci_shutdown_connection(aConn);
1826bb820044S[email protected]                 // connection struct is gone, don't access anymore
1827bb820044S[email protected]                 if (flags & BONDING_EMIT_COMPLETE_ON_DISCONNECT){
182886805605S[email protected]                     hci_emit_dedicated_bonding_result(bd_address, status);
182986805605S[email protected]                 }
183086805605S[email protected]             }
183186805605S[email protected]         }
183286805605S[email protected]     }
183386805605S[email protected] 
183494ab26f8Smatthias.ringwald 	// execute main loop
183594ab26f8Smatthias.ringwald 	hci_run();
183616833f0aSmatthias.ringwald }
183716833f0aSmatthias.ringwald 
1838c91d150bS[email protected] static void sco_handler(uint8_t * packet, uint16_t size){
18398abbe8b5SMatthias Ringwald     if (!hci_stack->sco_packet_handler) return;
18408abbe8b5SMatthias Ringwald     hci_stack->sco_packet_handler(HCI_SCO_DATA_PACKET, packet, size);
1841c91d150bS[email protected] }
1842c91d150bS[email protected] 
18430a57e69fSmatthias.ringwald static void packet_handler(uint8_t packet_type, uint8_t *packet, uint16_t size){
18445bb5bc3eS[email protected]     hci_dump_packet(packet_type, 1, packet, size);
184510e830c9Smatthias.ringwald     switch (packet_type) {
184610e830c9Smatthias.ringwald         case HCI_EVENT_PACKET:
184710e830c9Smatthias.ringwald             event_handler(packet, size);
184810e830c9Smatthias.ringwald             break;
184910e830c9Smatthias.ringwald         case HCI_ACL_DATA_PACKET:
185010e830c9Smatthias.ringwald             acl_handler(packet, size);
185110e830c9Smatthias.ringwald             break;
1852c91d150bS[email protected]         case HCI_SCO_DATA_PACKET:
1853c91d150bS[email protected]             sco_handler(packet, size);
185410e830c9Smatthias.ringwald         default:
185510e830c9Smatthias.ringwald             break;
185610e830c9Smatthias.ringwald     }
185710e830c9Smatthias.ringwald }
185810e830c9Smatthias.ringwald 
1859fcadd0caSmatthias.ringwald /** Register HCI packet handlers */
18602718e2e7Smatthias.ringwald void hci_register_packet_handler(void (*handler)(uint8_t packet_type, uint8_t *packet, uint16_t size)){
18613a9fb326S[email protected]     hci_stack->packet_handler = handler;
186216833f0aSmatthias.ringwald }
186316833f0aSmatthias.ringwald 
18648abbe8b5SMatthias Ringwald /**
18658abbe8b5SMatthias Ringwald  * @brief Registers a packet handler for SCO data. Used for HSP and HFP profiles.
18668abbe8b5SMatthias Ringwald  */
18678abbe8b5SMatthias Ringwald void hci_register_sco_packet_handler(void (*handler)(uint8_t packet_type, uint8_t *packet, uint16_t size)){
18688abbe8b5SMatthias Ringwald     hci_stack->sco_packet_handler = handler;
18698abbe8b5SMatthias Ringwald }
18708abbe8b5SMatthias Ringwald 
187171de195eSMatthias Ringwald static void hci_state_reset(void){
1872595bdbfbS[email protected]     // no connections yet
1873595bdbfbS[email protected]     hci_stack->connections = NULL;
187474308b23Smatthias.ringwald 
187574308b23Smatthias.ringwald     // keep discoverable/connectable as this has been requested by the client(s)
187674308b23Smatthias.ringwald     // hci_stack->discoverable = 0;
187774308b23Smatthias.ringwald     // hci_stack->connectable = 0;
187874308b23Smatthias.ringwald     // hci_stack->bondable = 1;
1879595bdbfbS[email protected] 
188044935e40S[email protected]     // buffer is free
188144935e40S[email protected]     hci_stack->hci_packet_buffer_reserved = 0;
188244935e40S[email protected] 
1883595bdbfbS[email protected]     // no pending cmds
1884595bdbfbS[email protected]     hci_stack->decline_reason = 0;
1885595bdbfbS[email protected]     hci_stack->new_scan_enable_value = 0xff;
1886595bdbfbS[email protected] 
1887595bdbfbS[email protected]     // LE
1888595bdbfbS[email protected]     hci_stack->adv_addr_type = 0;
1889595bdbfbS[email protected]     memset(hci_stack->adv_address, 0, 6);
1890595bdbfbS[email protected]     hci_stack->le_scanning_state = LE_SCAN_IDLE;
1891e2602ea2Smatthias.ringwald     hci_stack->le_scan_type = 0xff;
1892b04dfa37SMatthias Ringwald     hci_stack->le_connecting_state = LE_CONNECTING_IDLE;
1893e83201bcSMatthias Ringwald     hci_stack->le_whitelist = 0;
1894e83201bcSMatthias Ringwald     hci_stack->le_whitelist_capacity = 0;
1895e21192abSMatthias Ringwald     hci_stack->le_connection_parameter_range.le_conn_interval_min =          6;
1896e21192abSMatthias Ringwald     hci_stack->le_connection_parameter_range.le_conn_interval_max =       3200;
1897e21192abSMatthias Ringwald     hci_stack->le_connection_parameter_range.le_conn_latency_min =           0;
1898e21192abSMatthias Ringwald     hci_stack->le_connection_parameter_range.le_conn_latency_max =         500;
1899e21192abSMatthias Ringwald     hci_stack->le_connection_parameter_range.le_supervision_timeout_min =   10;
1900e21192abSMatthias Ringwald     hci_stack->le_connection_parameter_range.le_supervision_timeout_max = 3200;
1901595bdbfbS[email protected] }
1902595bdbfbS[email protected] 
19034f4fc1dfSmatthias.ringwald void hci_init(hci_transport_t *transport, void *config, bt_control_t *control, remote_device_db_t const* remote_device_db){
1904475c8125Smatthias.ringwald 
19053a9fb326S[email protected] #ifdef HAVE_MALLOC
19063a9fb326S[email protected]     if (!hci_stack) {
19073a9fb326S[email protected]         hci_stack = (hci_stack_t*) malloc(sizeof(hci_stack_t));
19083a9fb326S[email protected]     }
19093a9fb326S[email protected] #else
19103a9fb326S[email protected]     hci_stack = &hci_stack_static;
19113a9fb326S[email protected] #endif
191266fb9560S[email protected]     memset(hci_stack, 0, sizeof(hci_stack_t));
19133a9fb326S[email protected] 
1914475c8125Smatthias.ringwald     // reference to use transport layer implementation
19153a9fb326S[email protected]     hci_stack->hci_transport = transport;
1916475c8125Smatthias.ringwald 
191711e23e5fSmatthias.ringwald     // references to used control implementation
19183a9fb326S[email protected]     hci_stack->control = control;
191911e23e5fSmatthias.ringwald 
192011e23e5fSmatthias.ringwald     // reference to used config
19213a9fb326S[email protected]     hci_stack->config = config;
192211e23e5fSmatthias.ringwald 
192316833f0aSmatthias.ringwald     // higher level handler
19243a9fb326S[email protected]     hci_stack->packet_handler = dummy_handler;
192516833f0aSmatthias.ringwald 
1926404843c1Smatthias.ringwald     // store and open remote device db
19273a9fb326S[email protected]     hci_stack->remote_device_db = remote_device_db;
19283a9fb326S[email protected]     if (hci_stack->remote_device_db) {
19293a9fb326S[email protected]         hci_stack->remote_device_db->open();
1930404843c1Smatthias.ringwald     }
193129d53098Smatthias.ringwald 
19328fcba05dSmatthias.ringwald     // max acl payload size defined in config.h
19333a9fb326S[email protected]     hci_stack->acl_data_packet_length = HCI_ACL_PAYLOAD_SIZE;
19348fcba05dSmatthias.ringwald 
193516833f0aSmatthias.ringwald     // register packet handlers with transport
193610e830c9Smatthias.ringwald     transport->register_packet_handler(&packet_handler);
1937f5454fc6Smatthias.ringwald 
19383a9fb326S[email protected]     hci_stack->state = HCI_STATE_OFF;
1939e2386ba1S[email protected] 
1940e2386ba1S[email protected]     // class of device
19413a9fb326S[email protected]     hci_stack->class_of_device = 0x007a020c; // Smartphone
1942a45d6b9fS[email protected] 
1943f20168b8Smatthias.ringwald     // bondable by default
1944f20168b8Smatthias.ringwald     hci_stack->bondable = 1;
1945f20168b8Smatthias.ringwald 
194663048403S[email protected]     // Secure Simple Pairing default: enable, no I/O capabilities, general bonding, mitm not required, auto accept
19473a9fb326S[email protected]     hci_stack->ssp_enable = 1;
19483a9fb326S[email protected]     hci_stack->ssp_io_capability = SSP_IO_CAPABILITY_NO_INPUT_NO_OUTPUT;
19493a9fb326S[email protected]     hci_stack->ssp_authentication_requirement = SSP_IO_AUTHREQ_MITM_PROTECTION_NOT_REQUIRED_GENERAL_BONDING;
19503a9fb326S[email protected]     hci_stack->ssp_auto_accept = 1;
195169a97523S[email protected] 
1952d950d659SMatthias Ringwald     // voice setting - signed 8 bit pcm data with CVSD over the air
1953d950d659SMatthias Ringwald     hci_stack->sco_voice_setting = 0x40;
1954d950d659SMatthias Ringwald 
1955595bdbfbS[email protected]     hci_state_reset();
1956475c8125Smatthias.ringwald }
1957475c8125Smatthias.ringwald 
195871de195eSMatthias Ringwald void hci_close(void){
1959404843c1Smatthias.ringwald     // close remote device db
19603a9fb326S[email protected]     if (hci_stack->remote_device_db) {
19613a9fb326S[email protected]         hci_stack->remote_device_db->close();
1962404843c1Smatthias.ringwald     }
19633a9fb326S[email protected]     while (hci_stack->connections) {
1964bc68afe2S[email protected]         // cancel all l2cap connections
1965bc68afe2S[email protected]         hci_emit_disconnection_complete(((hci_connection_t *) hci_stack->connections)->con_handle, 0x16); // terminated by local host
19663a9fb326S[email protected]         hci_shutdown_connection((hci_connection_t *) hci_stack->connections);
1967f5454fc6Smatthias.ringwald     }
1968f5454fc6Smatthias.ringwald     hci_power_control(HCI_POWER_OFF);
19693a9fb326S[email protected] 
19703a9fb326S[email protected] #ifdef HAVE_MALLOC
19713a9fb326S[email protected]     free(hci_stack);
19723a9fb326S[email protected] #endif
19733a9fb326S[email protected]     hci_stack = NULL;
1974404843c1Smatthias.ringwald }
1975404843c1Smatthias.ringwald 
19769e61646fS[email protected] void hci_set_class_of_device(uint32_t class_of_device){
19779e61646fS[email protected]     hci_stack->class_of_device = class_of_device;
19789e61646fS[email protected] }
19799e61646fS[email protected] 
1980f456b2d0S[email protected] // Set Public BD ADDR - passed on to Bluetooth chipset if supported in bt_control_h
1981f456b2d0S[email protected] void hci_set_bd_addr(bd_addr_t addr){
1982f456b2d0S[email protected]     memcpy(hci_stack->custom_bd_addr, addr, 6);
1983f456b2d0S[email protected]     hci_stack->custom_bd_addr_set = 1;
1984f456b2d0S[email protected] }
1985f456b2d0S[email protected] 
198671de195eSMatthias Ringwald void hci_disable_l2cap_timeout_check(void){
198766fb9560S[email protected]     disable_l2cap_timeouts = 1;
198866fb9560S[email protected] }
19898d213e1aSmatthias.ringwald // State-Module-Driver overview
19908d213e1aSmatthias.ringwald // state                    module  low-level
19918d213e1aSmatthias.ringwald // HCI_STATE_OFF             off      close
19928d213e1aSmatthias.ringwald // HCI_STATE_INITIALIZING,   on       open
19938d213e1aSmatthias.ringwald // HCI_STATE_WORKING,        on       open
19948d213e1aSmatthias.ringwald // HCI_STATE_HALTING,        on       open
1995d661ed19Smatthias.ringwald // HCI_STATE_SLEEPING,    off/sleep   close
1996d661ed19Smatthias.ringwald // HCI_STATE_FALLING_ASLEEP  on       open
1997c7e0c5f6Smatthias.ringwald 
199840d1c7a4Smatthias.ringwald static int hci_power_control_on(void){
19997301ad89Smatthias.ringwald 
2000038bc64cSmatthias.ringwald     // power on
2001f9a30166Smatthias.ringwald     int err = 0;
20023a9fb326S[email protected]     if (hci_stack->control && hci_stack->control->on){
20033a9fb326S[email protected]         err = (*hci_stack->control->on)(hci_stack->config);
2004f9a30166Smatthias.ringwald     }
2005038bc64cSmatthias.ringwald     if (err){
20069da54300S[email protected]         log_error( "POWER_ON failed");
2007038bc64cSmatthias.ringwald         hci_emit_hci_open_failed();
2008038bc64cSmatthias.ringwald         return err;
2009038bc64cSmatthias.ringwald     }
2010038bc64cSmatthias.ringwald 
2011038bc64cSmatthias.ringwald     // open low-level device
20123a9fb326S[email protected]     err = hci_stack->hci_transport->open(hci_stack->config);
2013038bc64cSmatthias.ringwald     if (err){
20149da54300S[email protected]         log_error( "HCI_INIT failed, turning Bluetooth off again");
20153a9fb326S[email protected]         if (hci_stack->control && hci_stack->control->off){
20163a9fb326S[email protected]             (*hci_stack->control->off)(hci_stack->config);
2017f9a30166Smatthias.ringwald         }
2018038bc64cSmatthias.ringwald         hci_emit_hci_open_failed();
2019038bc64cSmatthias.ringwald         return err;
2020038bc64cSmatthias.ringwald     }
20218d213e1aSmatthias.ringwald     return 0;
20228d213e1aSmatthias.ringwald }
2023038bc64cSmatthias.ringwald 
202440d1c7a4Smatthias.ringwald static void hci_power_control_off(void){
20258d213e1aSmatthias.ringwald 
20269da54300S[email protected]     log_info("hci_power_control_off");
20279418f9c9Smatthias.ringwald 
20288d213e1aSmatthias.ringwald     // close low-level device
20293a9fb326S[email protected]     hci_stack->hci_transport->close(hci_stack->config);
20308d213e1aSmatthias.ringwald 
20319da54300S[email protected]     log_info("hci_power_control_off - hci_transport closed");
20329418f9c9Smatthias.ringwald 
20338d213e1aSmatthias.ringwald     // power off
20343a9fb326S[email protected]     if (hci_stack->control && hci_stack->control->off){
20353a9fb326S[email protected]         (*hci_stack->control->off)(hci_stack->config);
20368d213e1aSmatthias.ringwald     }
20379418f9c9Smatthias.ringwald 
20389da54300S[email protected]     log_info("hci_power_control_off - control closed");
20399418f9c9Smatthias.ringwald 
20403a9fb326S[email protected]     hci_stack->state = HCI_STATE_OFF;
204172ea5239Smatthias.ringwald }
204272ea5239Smatthias.ringwald 
204340d1c7a4Smatthias.ringwald static void hci_power_control_sleep(void){
204472ea5239Smatthias.ringwald 
20459da54300S[email protected]     log_info("hci_power_control_sleep");
20463144bce4Smatthias.ringwald 
2047b429b9b7Smatthias.ringwald #if 0
2048b429b9b7Smatthias.ringwald     // don't close serial port during sleep
2049b429b9b7Smatthias.ringwald 
205072ea5239Smatthias.ringwald     // close low-level device
20513a9fb326S[email protected]     hci_stack->hci_transport->close(hci_stack->config);
2052b429b9b7Smatthias.ringwald #endif
205372ea5239Smatthias.ringwald 
205472ea5239Smatthias.ringwald     // sleep mode
20553a9fb326S[email protected]     if (hci_stack->control && hci_stack->control->sleep){
20563a9fb326S[email protected]         (*hci_stack->control->sleep)(hci_stack->config);
205772ea5239Smatthias.ringwald     }
2058b429b9b7Smatthias.ringwald 
20593a9fb326S[email protected]     hci_stack->state = HCI_STATE_SLEEPING;
20608d213e1aSmatthias.ringwald }
20618d213e1aSmatthias.ringwald 
206240d1c7a4Smatthias.ringwald static int hci_power_control_wake(void){
2063b429b9b7Smatthias.ringwald 
20649da54300S[email protected]     log_info("hci_power_control_wake");
2065b429b9b7Smatthias.ringwald 
2066b429b9b7Smatthias.ringwald     // wake on
20673a9fb326S[email protected]     if (hci_stack->control && hci_stack->control->wake){
20683a9fb326S[email protected]         (*hci_stack->control->wake)(hci_stack->config);
2069b429b9b7Smatthias.ringwald     }
2070b429b9b7Smatthias.ringwald 
2071b429b9b7Smatthias.ringwald #if 0
2072b429b9b7Smatthias.ringwald     // open low-level device
20733a9fb326S[email protected]     int err = hci_stack->hci_transport->open(hci_stack->config);
2074b429b9b7Smatthias.ringwald     if (err){
20759da54300S[email protected]         log_error( "HCI_INIT failed, turning Bluetooth off again");
20763a9fb326S[email protected]         if (hci_stack->control && hci_stack->control->off){
20773a9fb326S[email protected]             (*hci_stack->control->off)(hci_stack->config);
2078b429b9b7Smatthias.ringwald         }
2079b429b9b7Smatthias.ringwald         hci_emit_hci_open_failed();
2080b429b9b7Smatthias.ringwald         return err;
2081b429b9b7Smatthias.ringwald     }
2082b429b9b7Smatthias.ringwald #endif
2083b429b9b7Smatthias.ringwald 
2084b429b9b7Smatthias.ringwald     return 0;
2085b429b9b7Smatthias.ringwald }
2086b429b9b7Smatthias.ringwald 
208744935e40S[email protected] static void hci_power_transition_to_initializing(void){
208844935e40S[email protected]     // set up state machine
208944935e40S[email protected]     hci_stack->num_cmd_packets = 1; // assume that one cmd can be sent
209044935e40S[email protected]     hci_stack->hci_packet_buffer_reserved = 0;
209144935e40S[email protected]     hci_stack->state = HCI_STATE_INITIALIZING;
20925c363727SMatthias Ringwald     hci_stack->substate = HCI_INIT_SEND_RESET;
209344935e40S[email protected] }
2094b429b9b7Smatthias.ringwald 
20958d213e1aSmatthias.ringwald int hci_power_control(HCI_POWER_MODE power_mode){
2096d661ed19Smatthias.ringwald 
20979da54300S[email protected]     log_info("hci_power_control: %u, current mode %u", power_mode, hci_stack->state);
2098d661ed19Smatthias.ringwald 
20998d213e1aSmatthias.ringwald     int err = 0;
21003a9fb326S[email protected]     switch (hci_stack->state){
21018d213e1aSmatthias.ringwald 
21028d213e1aSmatthias.ringwald         case HCI_STATE_OFF:
21038d213e1aSmatthias.ringwald             switch (power_mode){
21048d213e1aSmatthias.ringwald                 case HCI_POWER_ON:
21058d213e1aSmatthias.ringwald                     err = hci_power_control_on();
210697b61c7bS[email protected]                     if (err) {
210797b61c7bS[email protected]                         log_error("hci_power_control_on() error %u", err);
210897b61c7bS[email protected]                         return err;
210997b61c7bS[email protected]                     }
211044935e40S[email protected]                     hci_power_transition_to_initializing();
21118d213e1aSmatthias.ringwald                     break;
21128d213e1aSmatthias.ringwald                 case HCI_POWER_OFF:
21138d213e1aSmatthias.ringwald                     // do nothing
21148d213e1aSmatthias.ringwald                     break;
21158d213e1aSmatthias.ringwald                 case HCI_POWER_SLEEP:
2116b546ac54Smatthias.ringwald                     // do nothing (with SLEEP == OFF)
21178d213e1aSmatthias.ringwald                     break;
21188d213e1aSmatthias.ringwald             }
21198d213e1aSmatthias.ringwald             break;
21207301ad89Smatthias.ringwald 
21218d213e1aSmatthias.ringwald         case HCI_STATE_INITIALIZING:
21228d213e1aSmatthias.ringwald             switch (power_mode){
21238d213e1aSmatthias.ringwald                 case HCI_POWER_ON:
21248d213e1aSmatthias.ringwald                     // do nothing
21258d213e1aSmatthias.ringwald                     break;
21268d213e1aSmatthias.ringwald                 case HCI_POWER_OFF:
21278d213e1aSmatthias.ringwald                     // no connections yet, just turn it off
21288d213e1aSmatthias.ringwald                     hci_power_control_off();
21298d213e1aSmatthias.ringwald                     break;
21308d213e1aSmatthias.ringwald                 case HCI_POWER_SLEEP:
2131b546ac54Smatthias.ringwald                     // no connections yet, just turn it off
213272ea5239Smatthias.ringwald                     hci_power_control_sleep();
21338d213e1aSmatthias.ringwald                     break;
21348d213e1aSmatthias.ringwald             }
21358d213e1aSmatthias.ringwald             break;
21367301ad89Smatthias.ringwald 
21378d213e1aSmatthias.ringwald         case HCI_STATE_WORKING:
21388d213e1aSmatthias.ringwald             switch (power_mode){
21398d213e1aSmatthias.ringwald                 case HCI_POWER_ON:
21408d213e1aSmatthias.ringwald                     // do nothing
21418d213e1aSmatthias.ringwald                     break;
21428d213e1aSmatthias.ringwald                 case HCI_POWER_OFF:
2143c7e0c5f6Smatthias.ringwald                     // see hci_run
21443a9fb326S[email protected]                     hci_stack->state = HCI_STATE_HALTING;
21458d213e1aSmatthias.ringwald                     break;
21468d213e1aSmatthias.ringwald                 case HCI_POWER_SLEEP:
2147b546ac54Smatthias.ringwald                     // see hci_run
21483a9fb326S[email protected]                     hci_stack->state = HCI_STATE_FALLING_ASLEEP;
214974b323a9SMatthias Ringwald                     hci_stack->substate = HCI_FALLING_ASLEEP_DISCONNECT;
21508d213e1aSmatthias.ringwald                     break;
21518d213e1aSmatthias.ringwald             }
21528d213e1aSmatthias.ringwald             break;
21537301ad89Smatthias.ringwald 
21548d213e1aSmatthias.ringwald         case HCI_STATE_HALTING:
21558d213e1aSmatthias.ringwald             switch (power_mode){
21568d213e1aSmatthias.ringwald                 case HCI_POWER_ON:
215744935e40S[email protected]                     hci_power_transition_to_initializing();
21588d213e1aSmatthias.ringwald                     break;
21598d213e1aSmatthias.ringwald                 case HCI_POWER_OFF:
21608d213e1aSmatthias.ringwald                     // do nothing
21618d213e1aSmatthias.ringwald                     break;
21628d213e1aSmatthias.ringwald                 case HCI_POWER_SLEEP:
2163b546ac54Smatthias.ringwald                     // see hci_run
21643a9fb326S[email protected]                     hci_stack->state = HCI_STATE_FALLING_ASLEEP;
216574b323a9SMatthias Ringwald                     hci_stack->substate = HCI_FALLING_ASLEEP_DISCONNECT;
21668d213e1aSmatthias.ringwald                     break;
21678d213e1aSmatthias.ringwald             }
21688d213e1aSmatthias.ringwald             break;
21698d213e1aSmatthias.ringwald 
21708d213e1aSmatthias.ringwald         case HCI_STATE_FALLING_ASLEEP:
21718d213e1aSmatthias.ringwald             switch (power_mode){
21728d213e1aSmatthias.ringwald                 case HCI_POWER_ON:
217328171530Smatthias.ringwald 
217428171530Smatthias.ringwald #if defined(USE_POWERMANAGEMENT) && defined(USE_BLUETOOL)
217528171530Smatthias.ringwald                     // nothing to do, if H4 supports power management
217628171530Smatthias.ringwald                     if (bt_control_iphone_power_management_enabled()){
21773a9fb326S[email protected]                         hci_stack->state = HCI_STATE_INITIALIZING;
217874b323a9SMatthias Ringwald                         hci_stack->substate = HCI_INIT_WRITE_SCAN_ENABLE;   // init after sleep
217928171530Smatthias.ringwald                         break;
218028171530Smatthias.ringwald                     }
218128171530Smatthias.ringwald #endif
218244935e40S[email protected]                     hci_power_transition_to_initializing();
21838d213e1aSmatthias.ringwald                     break;
21848d213e1aSmatthias.ringwald                 case HCI_POWER_OFF:
2185b546ac54Smatthias.ringwald                     // see hci_run
21863a9fb326S[email protected]                     hci_stack->state = HCI_STATE_HALTING;
21878d213e1aSmatthias.ringwald                     break;
21888d213e1aSmatthias.ringwald                 case HCI_POWER_SLEEP:
2189b546ac54Smatthias.ringwald                     // do nothing
21908d213e1aSmatthias.ringwald                     break;
21918d213e1aSmatthias.ringwald             }
21928d213e1aSmatthias.ringwald             break;
21938d213e1aSmatthias.ringwald 
21948d213e1aSmatthias.ringwald         case HCI_STATE_SLEEPING:
21958d213e1aSmatthias.ringwald             switch (power_mode){
21968d213e1aSmatthias.ringwald                 case HCI_POWER_ON:
219728171530Smatthias.ringwald 
219828171530Smatthias.ringwald #if defined(USE_POWERMANAGEMENT) && defined(USE_BLUETOOL)
219928171530Smatthias.ringwald                     // nothing to do, if H4 supports power management
220028171530Smatthias.ringwald                     if (bt_control_iphone_power_management_enabled()){
22013a9fb326S[email protected]                         hci_stack->state = HCI_STATE_INITIALIZING;
22025c363727SMatthias Ringwald                         hci_stack->substate = HCI_INIT_AFTER_SLEEP;
2203758b46ceSmatthias.ringwald                         hci_update_scan_enable();
220428171530Smatthias.ringwald                         break;
220528171530Smatthias.ringwald                     }
220628171530Smatthias.ringwald #endif
22073144bce4Smatthias.ringwald                     err = hci_power_control_wake();
22083144bce4Smatthias.ringwald                     if (err) return err;
220944935e40S[email protected]                     hci_power_transition_to_initializing();
22108d213e1aSmatthias.ringwald                     break;
22118d213e1aSmatthias.ringwald                 case HCI_POWER_OFF:
22123a9fb326S[email protected]                     hci_stack->state = HCI_STATE_HALTING;
22138d213e1aSmatthias.ringwald                     break;
22148d213e1aSmatthias.ringwald                 case HCI_POWER_SLEEP:
2215b546ac54Smatthias.ringwald                     // do nothing
22168d213e1aSmatthias.ringwald                     break;
22178d213e1aSmatthias.ringwald             }
22188d213e1aSmatthias.ringwald             break;
221911e23e5fSmatthias.ringwald     }
222068d92d03Smatthias.ringwald 
2221038bc64cSmatthias.ringwald     // create internal event
2222ee8bf225Smatthias.ringwald 	hci_emit_state();
2223ee8bf225Smatthias.ringwald 
222468d92d03Smatthias.ringwald 	// trigger next/first action
222568d92d03Smatthias.ringwald 	hci_run();
222668d92d03Smatthias.ringwald 
2227475c8125Smatthias.ringwald     return 0;
2228475c8125Smatthias.ringwald }
2229475c8125Smatthias.ringwald 
2230758b46ceSmatthias.ringwald static void hci_update_scan_enable(void){
2231758b46ceSmatthias.ringwald     // 2 = page scan, 1 = inq scan
22323a9fb326S[email protected]     hci_stack->new_scan_enable_value  = hci_stack->connectable << 1 | hci_stack->discoverable;
2233758b46ceSmatthias.ringwald     hci_run();
2234758b46ceSmatthias.ringwald }
2235758b46ceSmatthias.ringwald 
2236381fbed8Smatthias.ringwald void hci_discoverable_control(uint8_t enable){
2237381fbed8Smatthias.ringwald     if (enable) enable = 1; // normalize argument
2238381fbed8Smatthias.ringwald 
22393a9fb326S[email protected]     if (hci_stack->discoverable == enable){
22403a9fb326S[email protected]         hci_emit_discoverable_enabled(hci_stack->discoverable);
2241381fbed8Smatthias.ringwald         return;
2242381fbed8Smatthias.ringwald     }
2243381fbed8Smatthias.ringwald 
22443a9fb326S[email protected]     hci_stack->discoverable = enable;
2245758b46ceSmatthias.ringwald     hci_update_scan_enable();
2246758b46ceSmatthias.ringwald }
2247b031bebbSmatthias.ringwald 
2248758b46ceSmatthias.ringwald void hci_connectable_control(uint8_t enable){
2249758b46ceSmatthias.ringwald     if (enable) enable = 1; // normalize argument
2250758b46ceSmatthias.ringwald 
2251758b46ceSmatthias.ringwald     // don't emit event
22523a9fb326S[email protected]     if (hci_stack->connectable == enable) return;
2253758b46ceSmatthias.ringwald 
22543a9fb326S[email protected]     hci_stack->connectable = enable;
2255758b46ceSmatthias.ringwald     hci_update_scan_enable();
2256381fbed8Smatthias.ringwald }
2257381fbed8Smatthias.ringwald 
2258690bd0baS[email protected] void hci_local_bd_addr(bd_addr_t address_buffer){
2259690bd0baS[email protected]     memcpy(address_buffer, hci_stack->local_bd_addr, 6);
22605061f3afS[email protected] }
22615061f3afS[email protected] 
226271de195eSMatthias Ringwald void hci_run(void){
22638a485f27Smatthias.ringwald 
2264db8bc6ffSMatthias Ringwald     // log_info("hci_run: entered");
2265665d90f2SMatthias Ringwald     btstack_linked_item_t * it;
226632ab9390Smatthias.ringwald 
2267b5d8b22bS[email protected]     // send continuation fragments first, as they block the prepared packet buffer
2268b5d8b22bS[email protected]     if (hci_stack->acl_fragmentation_total_size > 0) {
2269b5d8b22bS[email protected]         hci_con_handle_t con_handle = READ_ACL_CONNECTION_HANDLE(hci_stack->hci_packet_buffer);
2270b5d8b22bS[email protected]         if (hci_can_send_prepared_acl_packet_now(con_handle)){
2271b5d8b22bS[email protected]             hci_connection_t *connection = hci_connection_for_handle(con_handle);
2272b5d8b22bS[email protected]             if (connection) {
2273b5d8b22bS[email protected]                 hci_send_acl_packet_fragments(connection);
2274b5d8b22bS[email protected]                 return;
2275b5d8b22bS[email protected]             }
2276b5d8b22bS[email protected]             // connection gone -> discard further fragments
2277b5d8b22bS[email protected]             hci_stack->acl_fragmentation_total_size = 0;
2278b5d8b22bS[email protected]             hci_stack->acl_fragmentation_pos = 0;
2279b5d8b22bS[email protected]         }
2280b5d8b22bS[email protected]     }
2281b5d8b22bS[email protected] 
2282d94d3cafS[email protected]     if (!hci_can_send_command_packet_now()) return;
2283ce4c8fabSmatthias.ringwald 
2284b031bebbSmatthias.ringwald     // global/non-connection oriented commands
2285b031bebbSmatthias.ringwald 
2286b031bebbSmatthias.ringwald     // decline incoming connections
22873a9fb326S[email protected]     if (hci_stack->decline_reason){
22883a9fb326S[email protected]         uint8_t reason = hci_stack->decline_reason;
22893a9fb326S[email protected]         hci_stack->decline_reason = 0;
22903a9fb326S[email protected]         hci_send_cmd(&hci_reject_connection_request, hci_stack->decline_addr, reason);
2291dbe1a790S[email protected]         return;
2292ce4c8fabSmatthias.ringwald     }
2293ce4c8fabSmatthias.ringwald 
2294b031bebbSmatthias.ringwald     // send scan enable
22953a9fb326S[email protected]     if (hci_stack->state == HCI_STATE_WORKING && hci_stack->new_scan_enable_value != 0xff && hci_classic_supported()){
22963a9fb326S[email protected]         hci_send_cmd(&hci_write_scan_enable, hci_stack->new_scan_enable_value);
22973a9fb326S[email protected]         hci_stack->new_scan_enable_value = 0xff;
2298dbe1a790S[email protected]         return;
2299b031bebbSmatthias.ringwald     }
2300b031bebbSmatthias.ringwald 
2301b2f949feS[email protected] #ifdef HAVE_BLE
23027bdc6798S[email protected]     if (hci_stack->state == HCI_STATE_WORKING){
230345c102fdSMatthias Ringwald         // handle le scan
23047bdc6798S[email protected]         switch(hci_stack->le_scanning_state){
23057bdc6798S[email protected]             case LE_START_SCAN:
23067bdc6798S[email protected]                 hci_stack->le_scanning_state = LE_SCANNING;
23077bdc6798S[email protected]                 hci_send_cmd(&hci_le_set_scan_enable, 1, 0);
23087bdc6798S[email protected]                 return;
23097bdc6798S[email protected] 
23107bdc6798S[email protected]             case LE_STOP_SCAN:
23117bdc6798S[email protected]                 hci_stack->le_scanning_state = LE_SCAN_IDLE;
23127bdc6798S[email protected]                 hci_send_cmd(&hci_le_set_scan_enable, 0, 0);
23137bdc6798S[email protected]                 return;
23147bdc6798S[email protected]             default:
23157bdc6798S[email protected]                 break;
23167bdc6798S[email protected]         }
2317e2602ea2Smatthias.ringwald         if (hci_stack->le_scan_type != 0xff){
2318e2602ea2Smatthias.ringwald             // defaults: active scanning, accept all advertisement packets
2319e2602ea2Smatthias.ringwald             int scan_type = hci_stack->le_scan_type;
2320e2602ea2Smatthias.ringwald             hci_stack->le_scan_type = 0xff;
2321e2602ea2Smatthias.ringwald             hci_send_cmd(&hci_le_set_scan_parameters, scan_type, hci_stack->le_scan_interval, hci_stack->le_scan_window, hci_stack->adv_addr_type, 0);
2322e2602ea2Smatthias.ringwald             return;
2323e2602ea2Smatthias.ringwald         }
232445c102fdSMatthias Ringwald         // le advertisement control
23259a2e4658SMatthias Ringwald         if (hci_stack->le_advertisements_todo){
23269a2e4658SMatthias Ringwald             log_info("hci_run: gap_le: adv todo: %x", hci_stack->le_advertisements_todo );
23279a2e4658SMatthias Ringwald         }
232845c102fdSMatthias Ringwald         if (hci_stack->le_advertisements_todo & LE_ADVERTISEMENT_TASKS_DISABLE){
232945c102fdSMatthias Ringwald             hci_stack->le_advertisements_todo &= ~LE_ADVERTISEMENT_TASKS_DISABLE;
233045c102fdSMatthias Ringwald             hci_send_cmd(&hci_le_set_advertise_enable, 0);
233145c102fdSMatthias Ringwald             return;
233245c102fdSMatthias Ringwald         }
233345c102fdSMatthias Ringwald         if (hci_stack->le_advertisements_todo & LE_ADVERTISEMENT_TASKS_SET_PARAMS){
233445c102fdSMatthias Ringwald             hci_stack->le_advertisements_todo &= ~LE_ADVERTISEMENT_TASKS_SET_PARAMS;
233545c102fdSMatthias Ringwald             hci_send_cmd(&hci_le_set_advertising_parameters,
233645c102fdSMatthias Ringwald                  hci_stack->le_advertisements_interval_min,
233745c102fdSMatthias Ringwald                  hci_stack->le_advertisements_interval_max,
233845c102fdSMatthias Ringwald                  hci_stack->le_advertisements_type,
233945c102fdSMatthias Ringwald                  hci_stack->le_advertisements_own_address_type,
234045c102fdSMatthias Ringwald                  hci_stack->le_advertisements_direct_address_type,
234145c102fdSMatthias Ringwald                  hci_stack->le_advertisements_direct_address,
234245c102fdSMatthias Ringwald                  hci_stack->le_advertisements_channel_map,
234345c102fdSMatthias Ringwald                  hci_stack->le_advertisements_filter_policy);
234445c102fdSMatthias Ringwald             return;
234545c102fdSMatthias Ringwald         }
234645c102fdSMatthias Ringwald         if (hci_stack->le_advertisements_todo & LE_ADVERTISEMENT_TASKS_SET_DATA){
234745c102fdSMatthias Ringwald             hci_stack->le_advertisements_todo &= ~LE_ADVERTISEMENT_TASKS_SET_DATA;
234845c102fdSMatthias Ringwald             hci_send_cmd(&hci_le_set_advertising_data, hci_stack->le_advertisements_data_len,
234945c102fdSMatthias Ringwald                 hci_stack->le_advertisements_data);
235045c102fdSMatthias Ringwald             return;
235145c102fdSMatthias Ringwald         }
235245c102fdSMatthias Ringwald         if (hci_stack->le_advertisements_todo & LE_ADVERTISEMENT_TASKS_ENABLE){
235345c102fdSMatthias Ringwald             hci_stack->le_advertisements_todo &= ~LE_ADVERTISEMENT_TASKS_ENABLE;
235445c102fdSMatthias Ringwald             hci_send_cmd(&hci_le_set_advertise_enable, 1);
235545c102fdSMatthias Ringwald             return;
235645c102fdSMatthias Ringwald         }
23579956955bSMatthias Ringwald 
23589956955bSMatthias Ringwald         //
23599956955bSMatthias Ringwald         // LE Whitelist Management
23609956955bSMatthias Ringwald         //
23619956955bSMatthias Ringwald 
23629956955bSMatthias Ringwald         // check if whitelist needs modification
2363665d90f2SMatthias Ringwald         btstack_linked_list_iterator_t lit;
23649956955bSMatthias Ringwald         int modification_pending = 0;
2365665d90f2SMatthias Ringwald         btstack_linked_list_iterator_init(&lit, &hci_stack->le_whitelist);
2366665d90f2SMatthias Ringwald         while (btstack_linked_list_iterator_has_next(&lit)){
2367665d90f2SMatthias Ringwald             whitelist_entry_t * entry = (whitelist_entry_t*) btstack_linked_list_iterator_next(&lit);
23689956955bSMatthias Ringwald             if (entry->state & (LE_WHITELIST_REMOVE_FROM_CONTROLLER | LE_WHITELIST_ADD_TO_CONTROLLER)){
23699956955bSMatthias Ringwald                 modification_pending = 1;
23709956955bSMatthias Ringwald                 break;
23719956955bSMatthias Ringwald             }
23729956955bSMatthias Ringwald         }
237391915b0bSMatthias Ringwald 
23749956955bSMatthias Ringwald         if (modification_pending){
237591915b0bSMatthias Ringwald             // stop connnecting if modification pending
23769956955bSMatthias Ringwald             if (hci_stack->le_connecting_state != LE_CONNECTING_IDLE){
23779956955bSMatthias Ringwald                 hci_send_cmd(&hci_le_create_connection_cancel);
23789956955bSMatthias Ringwald                 return;
23799956955bSMatthias Ringwald             }
23809956955bSMatthias Ringwald 
23819956955bSMatthias Ringwald             // add/remove entries
2382665d90f2SMatthias Ringwald             btstack_linked_list_iterator_init(&lit, &hci_stack->le_whitelist);
2383665d90f2SMatthias Ringwald             while (btstack_linked_list_iterator_has_next(&lit)){
2384665d90f2SMatthias Ringwald                 whitelist_entry_t * entry = (whitelist_entry_t*) btstack_linked_list_iterator_next(&lit);
23859956955bSMatthias Ringwald                 if (entry->state & LE_WHITELIST_ADD_TO_CONTROLLER){
23869956955bSMatthias Ringwald                     entry->state = LE_WHITELIST_ON_CONTROLLER;
23879956955bSMatthias Ringwald                     hci_send_cmd(&hci_le_add_device_to_white_list, entry->address_type, entry->address);
23889956955bSMatthias Ringwald                     return;
23899956955bSMatthias Ringwald 
23909956955bSMatthias Ringwald                 }
23919956955bSMatthias Ringwald                 if (entry->state & LE_WHITELIST_REMOVE_FROM_CONTROLLER){
23929ecbe201SMatthias Ringwald                     bd_addr_t address;
23939ecbe201SMatthias Ringwald                     bd_addr_type_t address_type = entry->address_type;
23949ecbe201SMatthias Ringwald                     memcpy(address, entry->address, 6);
2395665d90f2SMatthias Ringwald                     btstack_linked_list_remove(&hci_stack->le_whitelist, (btstack_linked_item_t *) entry);
23969956955bSMatthias Ringwald                     btstack_memory_whitelist_entry_free(entry);
23979ecbe201SMatthias Ringwald                     hci_send_cmd(&hci_le_remove_device_from_white_list, address_type, address);
23989956955bSMatthias Ringwald                     return;
23999956955bSMatthias Ringwald                 }
24009956955bSMatthias Ringwald             }
240191915b0bSMatthias Ringwald         }
24029956955bSMatthias Ringwald 
24039956955bSMatthias Ringwald         // start connecting
240491915b0bSMatthias Ringwald         if ( hci_stack->le_connecting_state == LE_CONNECTING_IDLE &&
2405665d90f2SMatthias Ringwald             !btstack_linked_list_empty(&hci_stack->le_whitelist)){
24069956955bSMatthias Ringwald             bd_addr_t null_addr;
24079956955bSMatthias Ringwald             memset(null_addr, 0, 6);
24089956955bSMatthias Ringwald             hci_send_cmd(&hci_le_create_connection,
24099956955bSMatthias Ringwald                  0x0060,    // scan interval: 60 ms
24109956955bSMatthias Ringwald                  0x0030,    // scan interval: 30 ms
24119956955bSMatthias Ringwald                  1,         // use whitelist
24129956955bSMatthias Ringwald                  0,         // peer address type
24139956955bSMatthias Ringwald                  null_addr,      // peer bd addr
24149956955bSMatthias Ringwald                  hci_stack->adv_addr_type, // our addr type:
24159956955bSMatthias Ringwald                  0x0008,    // conn interval min
24169956955bSMatthias Ringwald                  0x0018,    // conn interval max
24179956955bSMatthias Ringwald                  0,         // conn latency
24189956955bSMatthias Ringwald                  0x0048,    // supervision timeout
24199956955bSMatthias Ringwald                  0x0001,    // min ce length
24209956955bSMatthias Ringwald                  0x0001     // max ce length
24219956955bSMatthias Ringwald                  );
24229956955bSMatthias Ringwald             return;
24239956955bSMatthias Ringwald         }
24247bdc6798S[email protected]     }
2425b2f949feS[email protected] #endif
24267bdc6798S[email protected] 
242732ab9390Smatthias.ringwald     // send pending HCI commands
2428665d90f2SMatthias Ringwald     for (it = (btstack_linked_item_t *) hci_stack->connections; it ; it = it->next){
242905ae8de3SMatthias Ringwald         hci_connection_t * connection = (hci_connection_t *) it;
243032ab9390Smatthias.ringwald 
24310bf6344aS[email protected]         switch(connection->state){
24320bf6344aS[email protected]             case SEND_CREATE_CONNECTION:
24334f3229d8S[email protected]                 switch(connection->address_type){
24344f3229d8S[email protected]                     case BD_ADDR_TYPE_CLASSIC:
24359da54300S[email protected]                         log_info("sending hci_create_connection");
2436ad83dc6aS[email protected]                         hci_send_cmd(&hci_create_connection, connection->address, hci_usable_acl_packet_types(), 0, 0, 0, 1);
24374f3229d8S[email protected]                         break;
24384f3229d8S[email protected]                     default:
2439b2f949feS[email protected] #ifdef HAVE_BLE
24409da54300S[email protected]                         log_info("sending hci_le_create_connection");
24414f3229d8S[email protected]                         hci_send_cmd(&hci_le_create_connection,
2442b2571179Smatthias.ringwald                                      0x0060,    // scan interval: 60 ms
2443b2571179Smatthias.ringwald                                      0x0030,    // scan interval: 30 ms
24444f3229d8S[email protected]                                      0,         // don't use whitelist
24454f3229d8S[email protected]                                      connection->address_type, // peer address type
24464f3229d8S[email protected]                                      connection->address,      // peer bd addr
2447b2571179Smatthias.ringwald                                      hci_stack->adv_addr_type, // our addr type:
2448b2571179Smatthias.ringwald                                      0x0008,    // conn interval min
2449b2571179Smatthias.ringwald                                      0x0018,    // conn interval max
24504f3229d8S[email protected]                                      0,         // conn latency
2451b2571179Smatthias.ringwald                                      0x0048,    // supervision timeout
2452b2571179Smatthias.ringwald                                      0x0001,    // min ce length
2453b2571179Smatthias.ringwald                                      0x0001     // max ce length
24544f3229d8S[email protected]                                      );
24554f3229d8S[email protected] 
24564f3229d8S[email protected]                         connection->state = SENT_CREATE_CONNECTION;
2457b2f949feS[email protected] #endif
24584f3229d8S[email protected]                         break;
24594f3229d8S[email protected]                 }
2460ad83dc6aS[email protected]                 return;
2461ad83dc6aS[email protected] 
24620bf6344aS[email protected]             case RECEIVED_CONNECTION_REQUEST:
246394e4aaa2SMatthias Ringwald                 log_info("sending hci_accept_connection_request, remote eSCO %u", connection->remote_supported_feature_eSCO);
246432ab9390Smatthias.ringwald                 connection->state = ACCEPTED_CONNECTION_REQUEST;
24655cf766e8SMatthias Ringwald                 connection->role  = HCI_ROLE_SLAVE;
2466e35edcc1S[email protected]                 if (connection->address_type == BD_ADDR_TYPE_CLASSIC){
246734d2123cS[email protected]                     hci_send_cmd(&hci_accept_connection_request, connection->address, 1);
2468e35edcc1S[email protected]                 } else {
2469f3a16b9aSMatthias Ringwald                     // remote supported feature eSCO is set if link type is eSCO
2470f36c2fcfSMatthias Ringwald                     uint16_t max_latency;
2471f36c2fcfSMatthias Ringwald                     uint8_t  retransmission_effort;
2472f36c2fcfSMatthias Ringwald                     uint16_t packet_types;
2473f36c2fcfSMatthias Ringwald                     // remote supported feature eSCO is set if link type is eSCO
2474f3a16b9aSMatthias Ringwald                     if (connection->remote_supported_feature_eSCO){
2475f3a16b9aSMatthias Ringwald                         // eSCO: S4 - max latency == transmission interval = 0x000c == 12 ms,
2476f36c2fcfSMatthias Ringwald                         max_latency = 0x000c;
2477f36c2fcfSMatthias Ringwald                         retransmission_effort = 0x02;
2478f36c2fcfSMatthias Ringwald                         packet_types = 0x388;
2479f3a16b9aSMatthias Ringwald                     } else {
2480f3a16b9aSMatthias Ringwald                         // SCO: max latency, retransmission interval: N/A. any packet type
2481f36c2fcfSMatthias Ringwald                         max_latency = 0xffff;
248236139edcSMatthias Ringwald                         retransmission_effort = 0xff;
2483f36c2fcfSMatthias Ringwald                         packet_types = 0x003f;
248498a2fd1cSMatthias Ringwald                     }
2485f36c2fcfSMatthias Ringwald                     hci_send_cmd(&hci_accept_synchronous_connection, connection->address, 8000, 8000, max_latency, hci_stack->sco_voice_setting, retransmission_effort, packet_types);
2486e35edcc1S[email protected]                 }
2487dbe1a790S[email protected]                 return;
24880bf6344aS[email protected] 
2489a6725849S[email protected] #ifdef HAVE_BLE
24900bf6344aS[email protected]             case SEND_CANCEL_CONNECTION:
24910bf6344aS[email protected]                 connection->state = SENT_CANCEL_CONNECTION;
24920bf6344aS[email protected]                 hci_send_cmd(&hci_le_create_connection_cancel);
24930bf6344aS[email protected]                 return;
2494a6725849S[email protected] #endif
24950bf6344aS[email protected]             case SEND_DISCONNECT:
24960bf6344aS[email protected]                 connection->state = SENT_DISCONNECT;
24977851196eSmatthias.ringwald                 hci_send_cmd(&hci_disconnect, connection->con_handle, 0x13); // remote closed connection
24980bf6344aS[email protected]                 return;
24990bf6344aS[email protected] 
25000bf6344aS[email protected]             default:
25010bf6344aS[email protected]                 break;
2502c7e0c5f6Smatthias.ringwald         }
2503c7e0c5f6Smatthias.ringwald 
250432ab9390Smatthias.ringwald         if (connection->authentication_flags & HANDLE_LINK_KEY_REQUEST){
25059da54300S[email protected]             log_info("responding to link key request");
250634d2123cS[email protected]             connectionClearAuthenticationFlags(connection, HANDLE_LINK_KEY_REQUEST);
250732ab9390Smatthias.ringwald             link_key_t link_key;
2508c77e8838S[email protected]             link_key_type_t link_key_type;
25093a9fb326S[email protected]             if ( hci_stack->remote_device_db
25102e77e513S[email protected]               && hci_stack->remote_device_db->get_link_key(connection->address, link_key, &link_key_type)
251134d2123cS[email protected]               && gap_security_level_for_link_key_type(link_key_type) >= connection->requested_security_level){
25129ab95c90S[email protected]                connection->link_key_type = link_key_type;
251332ab9390Smatthias.ringwald                hci_send_cmd(&hci_link_key_request_reply, connection->address, &link_key);
251432ab9390Smatthias.ringwald             } else {
251532ab9390Smatthias.ringwald                hci_send_cmd(&hci_link_key_request_negative_reply, connection->address);
251632ab9390Smatthias.ringwald             }
2517dbe1a790S[email protected]             return;
251832ab9390Smatthias.ringwald         }
25191d6b20aeS[email protected] 
2520899283eaS[email protected]         if (connection->authentication_flags & DENY_PIN_CODE_REQUEST){
25219da54300S[email protected]             log_info("denying to pin request");
2522899283eaS[email protected]             connectionClearAuthenticationFlags(connection, DENY_PIN_CODE_REQUEST);
252334d2123cS[email protected]             hci_send_cmd(&hci_pin_code_request_negative_reply, connection->address);
25244c57c146S[email protected]             return;
25254c57c146S[email protected]         }
25264c57c146S[email protected] 
2527dbe1a790S[email protected]         if (connection->authentication_flags & SEND_IO_CAPABILITIES_REPLY){
252834d2123cS[email protected]             connectionClearAuthenticationFlags(connection, SEND_IO_CAPABILITIES_REPLY);
252982d8f825S[email protected]             log_info("IO Capability Request received, stack bondable %u, io cap %u", hci_stack->bondable, hci_stack->ssp_io_capability);
253082d8f825S[email protected]             if (hci_stack->bondable && (hci_stack->ssp_io_capability != SSP_IO_CAPABILITY_UNKNOWN)){
2531106d6d11S[email protected]                 // tweak authentication requirements
25323a9fb326S[email protected]                 uint8_t authreq = hci_stack->ssp_authentication_requirement;
2533106d6d11S[email protected]                 if (connection->bonding_flags & BONDING_DEDICATED){
25349faad3abS[email protected]                     authreq = SSP_IO_AUTHREQ_MITM_PROTECTION_NOT_REQUIRED_DEDICATED_BONDING;
25359faad3abS[email protected]                 }
25369faad3abS[email protected]                 if (gap_mitm_protection_required_for_security_level(connection->requested_security_level)){
25379faad3abS[email protected]                     authreq |= 1;
2538106d6d11S[email protected]                 }
25393a9fb326S[email protected]                 hci_send_cmd(&hci_io_capability_request_reply, &connection->address, hci_stack->ssp_io_capability, NULL, authreq);
2540f8fb5f6eS[email protected]             } else {
2541f8fb5f6eS[email protected]                 hci_send_cmd(&hci_io_capability_request_negative_reply, &connection->address, ERROR_CODE_PAIRING_NOT_ALLOWED);
2542f8fb5f6eS[email protected]             }
2543dbe1a790S[email protected]             return;
254432ab9390Smatthias.ringwald         }
254532ab9390Smatthias.ringwald 
2546dbe1a790S[email protected]         if (connection->authentication_flags & SEND_USER_CONFIRM_REPLY){
2547dbe1a790S[email protected]             connectionClearAuthenticationFlags(connection, SEND_USER_CONFIRM_REPLY);
254834d2123cS[email protected]             hci_send_cmd(&hci_user_confirmation_request_reply, &connection->address);
2549dbe1a790S[email protected]             return;
2550dbe1a790S[email protected]         }
2551dbe1a790S[email protected] 
2552dbe1a790S[email protected]         if (connection->authentication_flags & SEND_USER_PASSKEY_REPLY){
2553dbe1a790S[email protected]             connectionClearAuthenticationFlags(connection, SEND_USER_PASSKEY_REPLY);
255434d2123cS[email protected]             hci_send_cmd(&hci_user_passkey_request_reply, &connection->address, 000000);
2555dbe1a790S[email protected]             return;
2556dbe1a790S[email protected]         }
2557afd4e962S[email protected] 
2558afd4e962S[email protected]         if (connection->bonding_flags & BONDING_REQUEST_REMOTE_FEATURES){
2559afd4e962S[email protected]             connection->bonding_flags &= ~BONDING_REQUEST_REMOTE_FEATURES;
256034d2123cS[email protected]             hci_send_cmd(&hci_read_remote_supported_features_command, connection->con_handle);
25612bd8b7e7S[email protected]             return;
25622bd8b7e7S[email protected]         }
25632bd8b7e7S[email protected] 
25642bd8b7e7S[email protected]         if (connection->bonding_flags & BONDING_DISCONNECT_SECURITY_BLOCK){
25652bd8b7e7S[email protected]             connection->bonding_flags &= ~BONDING_DISCONNECT_SECURITY_BLOCK;
256634d2123cS[email protected]             hci_send_cmd(&hci_disconnect, connection->con_handle, 0x0005);  // authentication failure
256734d2123cS[email protected]             return;
256834d2123cS[email protected]         }
2569ad83dc6aS[email protected]         if (connection->bonding_flags & BONDING_DISCONNECT_DEDICATED_DONE){
2570ad83dc6aS[email protected]             connection->bonding_flags &= ~BONDING_DISCONNECT_DEDICATED_DONE;
25711bd5283dS[email protected]             connection->bonding_flags |= BONDING_EMIT_COMPLETE_ON_DISCONNECT;
257252d34f98S[email protected]             hci_send_cmd(&hci_disconnect, connection->con_handle, 0x13);  // authentication done
2573ad83dc6aS[email protected]             return;
2574ad83dc6aS[email protected]         }
257534d2123cS[email protected]         if (connection->bonding_flags & BONDING_SEND_AUTHENTICATE_REQUEST){
257634d2123cS[email protected]             connection->bonding_flags &= ~BONDING_SEND_AUTHENTICATE_REQUEST;
257734d2123cS[email protected]             hci_send_cmd(&hci_authentication_requested, connection->con_handle);
25782bd8b7e7S[email protected]             return;
2579afd4e962S[email protected]         }
2580dce78009S[email protected]         if (connection->bonding_flags & BONDING_SEND_ENCRYPTION_REQUEST){
2581dce78009S[email protected]             connection->bonding_flags &= ~BONDING_SEND_ENCRYPTION_REQUEST;
2582dce78009S[email protected]             hci_send_cmd(&hci_set_connection_encryption, connection->con_handle, 1);
2583dce78009S[email protected]             return;
2584dce78009S[email protected]         }
2585da886c03S[email protected] 
2586c37a3166S[email protected] #ifdef HAVE_BLE
2587da886c03S[email protected]         if (connection->le_con_parameter_update_state == CON_PARAMETER_UPDATE_CHANGE_HCI_CON_PARAMETERS){
2588da886c03S[email protected]             connection->le_con_parameter_update_state = CON_PARAMETER_UPDATE_NONE;
2589da886c03S[email protected] 
2590c37a3166S[email protected]             uint16_t connection_interval_min = connection->le_conn_interval_min;
2591c37a3166S[email protected]             connection->le_conn_interval_min = 0;
2592c37a3166S[email protected]             hci_send_cmd(&hci_le_connection_update, connection->con_handle, connection_interval_min,
2593c37a3166S[email protected]                 connection->le_conn_interval_max, connection->le_conn_latency, connection->le_supervision_timeout,
2594c37a3166S[email protected]                 0x0000, 0xffff);
2595c37a3166S[email protected]         }
2596c37a3166S[email protected] #endif
2597dbe1a790S[email protected]     }
2598c7e0c5f6Smatthias.ringwald 
259905ae8de3SMatthias Ringwald     hci_connection_t * connection;
26003a9fb326S[email protected]     switch (hci_stack->state){
26013429f56bSmatthias.ringwald         case HCI_STATE_INITIALIZING:
260274b323a9SMatthias Ringwald             hci_initializing_run();
26033429f56bSmatthias.ringwald             break;
2604c7e0c5f6Smatthias.ringwald 
2605c7e0c5f6Smatthias.ringwald         case HCI_STATE_HALTING:
2606c7e0c5f6Smatthias.ringwald 
26079da54300S[email protected]             log_info("HCI_STATE_HALTING");
26089956955bSMatthias Ringwald 
26099956955bSMatthias Ringwald             // free whitelist entries
26109956955bSMatthias Ringwald #ifdef HAVE_BLE
26119956955bSMatthias Ringwald             {
2612665d90f2SMatthias Ringwald                 btstack_linked_list_iterator_t lit;
2613665d90f2SMatthias Ringwald                 btstack_linked_list_iterator_init(&lit, &hci_stack->le_whitelist);
2614665d90f2SMatthias Ringwald                 while (btstack_linked_list_iterator_has_next(&lit)){
2615665d90f2SMatthias Ringwald                     whitelist_entry_t * entry = (whitelist_entry_t*) btstack_linked_list_iterator_next(&lit);
2616665d90f2SMatthias Ringwald                     btstack_linked_list_remove(&hci_stack->le_whitelist, (btstack_linked_item_t *) entry);
26179956955bSMatthias Ringwald                     btstack_memory_whitelist_entry_free(entry);
26189956955bSMatthias Ringwald                 }
26199956955bSMatthias Ringwald             }
26209956955bSMatthias Ringwald #endif
2621c7e0c5f6Smatthias.ringwald             // close all open connections
26223a9fb326S[email protected]             connection =  (hci_connection_t *) hci_stack->connections;
2623c7e0c5f6Smatthias.ringwald             if (connection){
26248837e9efSMatthias Ringwald                 uint16_t con_handle = (uint16_t) connection->con_handle;
2625d94d3cafS[email protected]                 if (!hci_can_send_command_packet_now()) return;
262632ab9390Smatthias.ringwald 
26278837e9efSMatthias Ringwald                 log_info("HCI_STATE_HALTING, connection %p, handle %u", connection, con_handle);
2628c7e0c5f6Smatthias.ringwald 
26298837e9efSMatthias Ringwald                 // cancel all l2cap connections right away instead of waiting for disconnection complete event ...
26308837e9efSMatthias Ringwald                 hci_emit_disconnection_complete(con_handle, 0x16); // terminated by local host
26318837e9efSMatthias Ringwald 
26328837e9efSMatthias Ringwald                 // ... which would be ignored anyway as we shutdown (free) the connection now
2633c7e0c5f6Smatthias.ringwald                 hci_shutdown_connection(connection);
26348837e9efSMatthias Ringwald 
26358837e9efSMatthias Ringwald                 // finally, send the disconnect command
26368837e9efSMatthias Ringwald                 hci_send_cmd(&hci_disconnect, con_handle, 0x13);  // remote closed connection
2637c7e0c5f6Smatthias.ringwald                 return;
2638c7e0c5f6Smatthias.ringwald             }
26399da54300S[email protected]             log_info("HCI_STATE_HALTING, calling off");
2640c7e0c5f6Smatthias.ringwald 
264172ea5239Smatthias.ringwald             // switch mode
2642c7e0c5f6Smatthias.ringwald             hci_power_control_off();
26439418f9c9Smatthias.ringwald 
26449da54300S[email protected]             log_info("HCI_STATE_HALTING, emitting state");
264572ea5239Smatthias.ringwald             hci_emit_state();
26469da54300S[email protected]             log_info("HCI_STATE_HALTING, done");
264772ea5239Smatthias.ringwald             break;
2648c7e0c5f6Smatthias.ringwald 
264972ea5239Smatthias.ringwald         case HCI_STATE_FALLING_ASLEEP:
26503a9fb326S[email protected]             switch(hci_stack->substate) {
265174b323a9SMatthias Ringwald                 case HCI_FALLING_ASLEEP_DISCONNECT:
26529da54300S[email protected]                     log_info("HCI_STATE_FALLING_ASLEEP");
265372ea5239Smatthias.ringwald                     // close all open connections
26543a9fb326S[email protected]                     connection =  (hci_connection_t *) hci_stack->connections;
265566da7044Smatthias.ringwald 
265628171530Smatthias.ringwald #if defined(USE_POWERMANAGEMENT) && defined(USE_BLUETOOL)
265766da7044Smatthias.ringwald                     // don't close connections, if H4 supports power management
265866da7044Smatthias.ringwald                     if (bt_control_iphone_power_management_enabled()){
265966da7044Smatthias.ringwald                         connection = NULL;
266066da7044Smatthias.ringwald                     }
266166da7044Smatthias.ringwald #endif
266272ea5239Smatthias.ringwald                     if (connection){
266332ab9390Smatthias.ringwald 
266472ea5239Smatthias.ringwald                         // send disconnect
2665d94d3cafS[email protected]                         if (!hci_can_send_command_packet_now()) return;
266632ab9390Smatthias.ringwald 
26679da54300S[email protected]                         log_info("HCI_STATE_FALLING_ASLEEP, connection %p, handle %u", connection, (uint16_t)connection->con_handle);
26686ad890d3Smatthias.ringwald                         hci_send_cmd(&hci_disconnect, connection->con_handle, 0x13);  // remote closed connection
266972ea5239Smatthias.ringwald 
267072ea5239Smatthias.ringwald                         // send disconnected event right away - causes higher layer connections to get closed, too.
267172ea5239Smatthias.ringwald                         hci_shutdown_connection(connection);
267272ea5239Smatthias.ringwald                         return;
267372ea5239Smatthias.ringwald                     }
267472ea5239Smatthias.ringwald 
267592368cd3S[email protected]                     if (hci_classic_supported()){
267689db417bSmatthias.ringwald                         // disable page and inquiry scan
2677d94d3cafS[email protected]                         if (!hci_can_send_command_packet_now()) return;
267832ab9390Smatthias.ringwald 
26799da54300S[email protected]                         log_info("HCI_STATE_HALTING, disabling inq scans");
26803a9fb326S[email protected]                         hci_send_cmd(&hci_write_scan_enable, hci_stack->connectable << 1); // drop inquiry scan but keep page scan
268189db417bSmatthias.ringwald 
268289db417bSmatthias.ringwald                         // continue in next sub state
268374b323a9SMatthias Ringwald                         hci_stack->substate = HCI_FALLING_ASLEEP_W4_WRITE_SCAN_ENABLE;
268489db417bSmatthias.ringwald                         break;
268592368cd3S[email protected]                     }
268692368cd3S[email protected]                     // fall through for ble-only chips
268792368cd3S[email protected] 
268874b323a9SMatthias Ringwald                 case HCI_FALLING_ASLEEP_COMPLETE:
26899da54300S[email protected]                     log_info("HCI_STATE_HALTING, calling sleep");
269028171530Smatthias.ringwald #if defined(USE_POWERMANAGEMENT) && defined(USE_BLUETOOL)
269128171530Smatthias.ringwald                     // don't actually go to sleep, if H4 supports power management
269228171530Smatthias.ringwald                     if (bt_control_iphone_power_management_enabled()){
269328171530Smatthias.ringwald                         // SLEEP MODE reached
26943a9fb326S[email protected]                         hci_stack->state = HCI_STATE_SLEEPING;
269528171530Smatthias.ringwald                         hci_emit_state();
269628171530Smatthias.ringwald                         break;
269728171530Smatthias.ringwald                     }
269828171530Smatthias.ringwald #endif
269972ea5239Smatthias.ringwald                     // switch mode
27003a9fb326S[email protected]                     hci_power_control_sleep();  // changes hci_stack->state to SLEEP
2701c7e0c5f6Smatthias.ringwald                     hci_emit_state();
270228171530Smatthias.ringwald                     break;
270328171530Smatthias.ringwald 
270489db417bSmatthias.ringwald                 default:
270589db417bSmatthias.ringwald                     break;
270689db417bSmatthias.ringwald             }
2707c7e0c5f6Smatthias.ringwald             break;
2708c7e0c5f6Smatthias.ringwald 
27093429f56bSmatthias.ringwald         default:
27103429f56bSmatthias.ringwald             break;
27111f504dbdSmatthias.ringwald     }
27123429f56bSmatthias.ringwald }
271316833f0aSmatthias.ringwald 
271431452debSmatthias.ringwald int hci_send_cmd_packet(uint8_t *packet, int size){
2715c8e4258aSmatthias.ringwald     bd_addr_t addr;
2716c8e4258aSmatthias.ringwald     hci_connection_t * conn;
2717c8e4258aSmatthias.ringwald     // house-keeping
2718c8e4258aSmatthias.ringwald 
2719c8e4258aSmatthias.ringwald     // create_connection?
2720c8e4258aSmatthias.ringwald     if (IS_COMMAND(packet, hci_create_connection)){
2721c8e4258aSmatthias.ringwald         bt_flip_addr(addr, &packet[3]);
27229da54300S[email protected]         log_info("Create_connection to %s", bd_addr_to_str(addr));
2723c8e4258aSmatthias.ringwald 
27242e77e513S[email protected]         conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_CLASSIC);
2725ad83dc6aS[email protected]         if (!conn){
272696a45072S[email protected]             conn = create_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_CLASSIC);
272717f1ba2aSmatthias.ringwald             if (!conn){
272817f1ba2aSmatthias.ringwald                 // notify client that alloc failed
272917f1ba2aSmatthias.ringwald                 hci_emit_connection_complete(conn, BTSTACK_MEMORY_ALLOC_FAILED);
273017f1ba2aSmatthias.ringwald                 return 0; // don't sent packet to controller
273117f1ba2aSmatthias.ringwald             }
2732ad83dc6aS[email protected]             conn->state = SEND_CREATE_CONNECTION;
2733ad83dc6aS[email protected]         }
2734ad83dc6aS[email protected]         log_info("conn state %u", conn->state);
2735ad83dc6aS[email protected]         switch (conn->state){
2736ad83dc6aS[email protected]             // if connection active exists
2737ad83dc6aS[email protected]             case OPEN:
273862bda3fbS[email protected]                 // and OPEN, emit connection complete command, don't send to controller
2739ad83dc6aS[email protected]                 hci_emit_connection_complete(conn, 0);
274062bda3fbS[email protected]                 return 0;
2741ad83dc6aS[email protected]             case SEND_CREATE_CONNECTION:
2742ad83dc6aS[email protected]                 // connection created by hci, e.g. dedicated bonding
2743ad83dc6aS[email protected]                 break;
2744ad83dc6aS[email protected]             default:
2745ad83dc6aS[email protected]                 // otherwise, just ignore as it is already in the open process
2746ad83dc6aS[email protected]                 return 0;
2747ad83dc6aS[email protected]         }
2748c8e4258aSmatthias.ringwald         conn->state = SENT_CREATE_CONNECTION;
2749c8e4258aSmatthias.ringwald     }
27507fde4af9Smatthias.ringwald     if (IS_COMMAND(packet, hci_link_key_request_reply)){
27517fde4af9Smatthias.ringwald         hci_add_connection_flags_for_flipped_bd_addr(&packet[3], SENT_LINK_KEY_REPLY);
27527fde4af9Smatthias.ringwald     }
27537fde4af9Smatthias.ringwald     if (IS_COMMAND(packet, hci_link_key_request_negative_reply)){
27547fde4af9Smatthias.ringwald         hci_add_connection_flags_for_flipped_bd_addr(&packet[3], SENT_LINK_KEY_NEGATIVE_REQUEST);
27557fde4af9Smatthias.ringwald     }
27567fde4af9Smatthias.ringwald 
27578ef73945Smatthias.ringwald     if (IS_COMMAND(packet, hci_delete_stored_link_key)){
27583a9fb326S[email protected]         if (hci_stack->remote_device_db){
27598ef73945Smatthias.ringwald             bt_flip_addr(addr, &packet[3]);
27602e77e513S[email protected]             hci_stack->remote_device_db->delete_link_key(addr);
27618ef73945Smatthias.ringwald         }
27628ef73945Smatthias.ringwald     }
2763c8e4258aSmatthias.ringwald 
27646724cd9eS[email protected]     if (IS_COMMAND(packet, hci_pin_code_request_negative_reply)
27656724cd9eS[email protected]     ||  IS_COMMAND(packet, hci_pin_code_request_reply)){
27666724cd9eS[email protected]         bt_flip_addr(addr, &packet[3]);
27672e77e513S[email protected]         conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_CLASSIC);
27686724cd9eS[email protected]         if (conn){
27696724cd9eS[email protected]             connectionClearAuthenticationFlags(conn, LEGACY_PAIRING_ACTIVE);
27706724cd9eS[email protected]         }
27716724cd9eS[email protected]     }
27726724cd9eS[email protected] 
27736724cd9eS[email protected]     if (IS_COMMAND(packet, hci_user_confirmation_request_negative_reply)
27746724cd9eS[email protected]     ||  IS_COMMAND(packet, hci_user_confirmation_request_reply)
27756724cd9eS[email protected]     ||  IS_COMMAND(packet, hci_user_passkey_request_negative_reply)
27766724cd9eS[email protected]     ||  IS_COMMAND(packet, hci_user_passkey_request_reply)) {
27776724cd9eS[email protected]         bt_flip_addr(addr, &packet[3]);
27782e77e513S[email protected]         conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_CLASSIC);
27796724cd9eS[email protected]         if (conn){
27806724cd9eS[email protected]             connectionClearAuthenticationFlags(conn, SSP_PAIRING_ACTIVE);
27816724cd9eS[email protected]         }
27826724cd9eS[email protected]     }
27836724cd9eS[email protected] 
27844b3e1e19SMatthias Ringwald     if (IS_COMMAND(packet, hci_write_loopback_mode)){
27854b3e1e19SMatthias Ringwald         hci_stack->loopback_mode = packet[3];
27864b3e1e19SMatthias Ringwald     }
27874b3e1e19SMatthias Ringwald 
278869a97523S[email protected] #ifdef HAVE_BLE
278969a97523S[email protected]     if (IS_COMMAND(packet, hci_le_set_advertising_parameters)){
27903a9fb326S[email protected]         hci_stack->adv_addr_type = packet[8];
279169a97523S[email protected]     }
279269a97523S[email protected]     if (IS_COMMAND(packet, hci_le_set_random_address)){
27933a9fb326S[email protected]         bt_flip_addr(hci_stack->adv_address, &packet[3]);
279469a97523S[email protected]     }
2795171293d3SMatthias Ringwald     if (IS_COMMAND(packet, hci_le_set_advertise_enable)){
2796171293d3SMatthias Ringwald         hci_stack->le_advertisements_active = packet[3];
2797171293d3SMatthias Ringwald     }
2798b04dfa37SMatthias Ringwald     if (IS_COMMAND(packet, hci_le_create_connection)){
2799b04dfa37SMatthias Ringwald         // white list used?
2800b04dfa37SMatthias Ringwald         uint8_t initiator_filter_policy = packet[7];
2801b04dfa37SMatthias Ringwald         switch (initiator_filter_policy){
2802b04dfa37SMatthias Ringwald             case 0:
2803b04dfa37SMatthias Ringwald                 // whitelist not used
2804b04dfa37SMatthias Ringwald                 hci_stack->le_connecting_state = LE_CONNECTING_DIRECT;
2805b04dfa37SMatthias Ringwald                 break;
2806b04dfa37SMatthias Ringwald             case 1:
2807b04dfa37SMatthias Ringwald                 hci_stack->le_connecting_state = LE_CONNECTING_WHITELIST;
2808b04dfa37SMatthias Ringwald                 break;
2809b04dfa37SMatthias Ringwald             default:
2810b04dfa37SMatthias Ringwald                 log_error("Invalid initiator_filter_policy in LE Create Connection %u", initiator_filter_policy);
2811b04dfa37SMatthias Ringwald                 break;
2812b04dfa37SMatthias Ringwald         }
2813b04dfa37SMatthias Ringwald     }
2814b04dfa37SMatthias Ringwald     if (IS_COMMAND(packet, hci_le_create_connection_cancel)){
2815b04dfa37SMatthias Ringwald         hci_stack->le_connecting_state = LE_CONNECTING_IDLE;
2816b04dfa37SMatthias Ringwald     }
281769a97523S[email protected] #endif
281869a97523S[email protected] 
28193a9fb326S[email protected]     hci_stack->num_cmd_packets--;
28205bb5bc3eS[email protected] 
28215bb5bc3eS[email protected]     hci_dump_packet(HCI_COMMAND_DATA_PACKET, 0, packet, size);
28226b4af23dS[email protected]     int err = hci_stack->hci_transport->send_packet(HCI_COMMAND_DATA_PACKET, packet, size);
28236b4af23dS[email protected] 
2824d051460cS[email protected]     // release packet buffer for synchronous transport implementations
2825c8b9416aS[email protected]     if (hci_transport_synchronous() && (packet == hci_stack->hci_packet_buffer)){
28266b4af23dS[email protected]         hci_stack->hci_packet_buffer_reserved = 0;
28276b4af23dS[email protected]     }
28286b4af23dS[email protected] 
28296b4af23dS[email protected]     return err;
283031452debSmatthias.ringwald }
28318adf0ddaSmatthias.ringwald 
28322bd8b7e7S[email protected] // disconnect because of security block
28332bd8b7e7S[email protected] void hci_disconnect_security_block(hci_con_handle_t con_handle){
28342bd8b7e7S[email protected]     hci_connection_t * connection = hci_connection_for_handle(con_handle);
28352bd8b7e7S[email protected]     if (!connection) return;
28362bd8b7e7S[email protected]     connection->bonding_flags |= BONDING_DISCONNECT_SECURITY_BLOCK;
28372bd8b7e7S[email protected] }
28382bd8b7e7S[email protected] 
28392bd8b7e7S[email protected] 
2840dbe1a790S[email protected] // Configure Secure Simple Pairing
2841dbe1a790S[email protected] 
2842dbe1a790S[email protected] // enable will enable SSP during init
2843dbe1a790S[email protected] void hci_ssp_set_enable(int enable){
28443a9fb326S[email protected]     hci_stack->ssp_enable = enable;
2845dbe1a790S[email protected] }
2846dbe1a790S[email protected] 
284771de195eSMatthias Ringwald int hci_local_ssp_activated(void){
28483a9fb326S[email protected]     return hci_ssp_supported() && hci_stack->ssp_enable;
28492bd8b7e7S[email protected] }
28502bd8b7e7S[email protected] 
2851dbe1a790S[email protected] // if set, BTstack will respond to io capability request using authentication requirement
2852dbe1a790S[email protected] void hci_ssp_set_io_capability(int io_capability){
28533a9fb326S[email protected]     hci_stack->ssp_io_capability = io_capability;
2854dbe1a790S[email protected] }
2855dbe1a790S[email protected] void hci_ssp_set_authentication_requirement(int authentication_requirement){
28563a9fb326S[email protected]     hci_stack->ssp_authentication_requirement = authentication_requirement;
2857dbe1a790S[email protected] }
2858dbe1a790S[email protected] 
2859dbe1a790S[email protected] // if set, BTstack will confirm a numberic comparion and enter '000000' if requested
2860dbe1a790S[email protected] void hci_ssp_set_auto_accept(int auto_accept){
28613a9fb326S[email protected]     hci_stack->ssp_auto_accept = auto_accept;
2862dbe1a790S[email protected] }
2863dbe1a790S[email protected] 
28641cd208adSmatthias.ringwald /**
28651cd208adSmatthias.ringwald  * pre: numcmds >= 0 - it's allowed to send a command to the controller
28661cd208adSmatthias.ringwald  */
2867fe35119dSmatthias.ringwald int hci_send_cmd(const hci_cmd_t *cmd, ...){
28685127cc62S[email protected] 
2869d94d3cafS[email protected]     if (!hci_can_send_command_packet_now()){
28709d14b626S[email protected]         log_error("hci_send_cmd called but cannot send packet now");
28719d14b626S[email protected]         return 0;
28729d14b626S[email protected]     }
28739d14b626S[email protected] 
28745127cc62S[email protected]     // for HCI INITIALIZATION
28759da54300S[email protected]     // log_info("hci_send_cmd: opcode %04x", cmd->opcode);
28765127cc62S[email protected]     hci_stack->last_cmd_opcode = cmd->opcode;
28775127cc62S[email protected] 
28789d14b626S[email protected]     hci_reserve_packet_buffer();
28799d14b626S[email protected]     uint8_t * packet = hci_stack->hci_packet_buffer;
28809d14b626S[email protected] 
28811cd208adSmatthias.ringwald     va_list argptr;
28821cd208adSmatthias.ringwald     va_start(argptr, cmd);
28839d14b626S[email protected]     uint16_t size = hci_create_cmd_internal(packet, cmd, argptr);
28841cd208adSmatthias.ringwald     va_end(argptr);
28859d14b626S[email protected] 
28869d14b626S[email protected]     return hci_send_cmd_packet(packet, size);
288793b8dc03Smatthias.ringwald }
2888c8e4258aSmatthias.ringwald 
2889ee091cf1Smatthias.ringwald // Create various non-HCI events.
2890ee091cf1Smatthias.ringwald // TODO: generalize, use table similar to hci_create_command
2891ee091cf1Smatthias.ringwald 
289271de195eSMatthias Ringwald void hci_emit_state(void){
28933a9fb326S[email protected]     log_info("BTSTACK_EVENT_STATE %u", hci_stack->state);
2894425d1371Smatthias.ringwald     uint8_t event[3];
289580d52d6bSmatthias.ringwald     event[0] = BTSTACK_EVENT_STATE;
2896425d1371Smatthias.ringwald     event[1] = sizeof(event) - 2;
28973a9fb326S[email protected]     event[2] = hci_stack->state;
2898425d1371Smatthias.ringwald     hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
28993a9fb326S[email protected]     hci_stack->packet_handler(HCI_EVENT_PACKET, event, sizeof(event));
2900c8e4258aSmatthias.ringwald }
2901c8e4258aSmatthias.ringwald 
290217f1ba2aSmatthias.ringwald void hci_emit_connection_complete(hci_connection_t *conn, uint8_t status){
2903425d1371Smatthias.ringwald     uint8_t event[13];
2904c8e4258aSmatthias.ringwald     event[0] = HCI_EVENT_CONNECTION_COMPLETE;
2905425d1371Smatthias.ringwald     event[1] = sizeof(event) - 2;
290617f1ba2aSmatthias.ringwald     event[2] = status;
2907c8e4258aSmatthias.ringwald     bt_store_16(event, 3, conn->con_handle);
2908c8e4258aSmatthias.ringwald     bt_flip_addr(&event[5], conn->address);
2909c8e4258aSmatthias.ringwald     event[11] = 1; // ACL connection
2910c8e4258aSmatthias.ringwald     event[12] = 0; // encryption disabled
2911425d1371Smatthias.ringwald     hci_dump_packet(HCI_EVENT_PACKET, 0, event, sizeof(event));
29123a9fb326S[email protected]     hci_stack->packet_handler(HCI_EVENT_PACKET, event, sizeof(event));
2913c8e4258aSmatthias.ringwald }
2914c8e4258aSmatthias.ringwald 
29157f02f414SMatthias Ringwald static void hci_emit_le_connection_complete(uint8_t address_type, bd_addr_t address, uint16_t conn_handle, uint8_t status){
29164f3229d8S[email protected]     uint8_t event[21];
29174f3229d8S[email protected]     event[0] = HCI_EVENT_LE_META;
29184f3229d8S[email protected]     event[1] = sizeof(event) - 2;
29194f3229d8S[email protected]     event[2] = HCI_SUBEVENT_LE_CONNECTION_COMPLETE;
29204f3229d8S[email protected]     event[3] = status;
29216e2e9a6bS[email protected]     bt_store_16(event, 4, conn_handle);
29224f3229d8S[email protected]     event[6] = 0; // TODO: role
29236e2e9a6bS[email protected]     event[7] = address_type;
29242e77e513S[email protected]     bt_flip_addr(&event[8], address);
29254f3229d8S[email protected]     bt_store_16(event, 14, 0); // interval
29264f3229d8S[email protected]     bt_store_16(event, 16, 0); // latency
29274f3229d8S[email protected]     bt_store_16(event, 18, 0); // supervision timeout
29284f3229d8S[email protected]     event[20] = 0; // master clock accuracy
29294f3229d8S[email protected]     hci_dump_packet(HCI_EVENT_PACKET, 0, event, sizeof(event));
29304f3229d8S[email protected]     hci_stack->packet_handler(HCI_EVENT_PACKET, event, sizeof(event));
29314f3229d8S[email protected] }
29324f3229d8S[email protected] 
29333c4d4b90Smatthias.ringwald void hci_emit_disconnection_complete(uint16_t handle, uint8_t reason){
2934425d1371Smatthias.ringwald     uint8_t event[6];
29353c4d4b90Smatthias.ringwald     event[0] = HCI_EVENT_DISCONNECTION_COMPLETE;
2936e518c4b8Smatthias.ringwald     event[1] = sizeof(event) - 2;
29373c4d4b90Smatthias.ringwald     event[2] = 0; // status = OK
29383c4d4b90Smatthias.ringwald     bt_store_16(event, 3, handle);
29393c4d4b90Smatthias.ringwald     event[5] = reason;
2940425d1371Smatthias.ringwald     hci_dump_packet(HCI_EVENT_PACKET, 0, event, sizeof(event));
29413a9fb326S[email protected]     hci_stack->packet_handler(HCI_EVENT_PACKET, event, sizeof(event));
29423c4d4b90Smatthias.ringwald }
29433c4d4b90Smatthias.ringwald 
2944ee091cf1Smatthias.ringwald void hci_emit_l2cap_check_timeout(hci_connection_t *conn){
294566fb9560S[email protected]     if (disable_l2cap_timeouts) return;
2946e0abb8e7S[email protected]     log_info("L2CAP_EVENT_TIMEOUT_CHECK");
2947425d1371Smatthias.ringwald     uint8_t event[4];
294880d52d6bSmatthias.ringwald     event[0] = L2CAP_EVENT_TIMEOUT_CHECK;
2949425d1371Smatthias.ringwald     event[1] = sizeof(event) - 2;
2950ee091cf1Smatthias.ringwald     bt_store_16(event, 2, conn->con_handle);
2951425d1371Smatthias.ringwald     hci_dump_packet(HCI_EVENT_PACKET, 0, event, sizeof(event));
29523a9fb326S[email protected]     hci_stack->packet_handler(HCI_EVENT_PACKET, event, sizeof(event));
2953ee091cf1Smatthias.ringwald }
295443bfb1bdSmatthias.ringwald 
295571de195eSMatthias Ringwald void hci_emit_nr_connections_changed(void){
2956e0abb8e7S[email protected]     log_info("BTSTACK_EVENT_NR_CONNECTIONS_CHANGED %u", nr_hci_connections());
2957425d1371Smatthias.ringwald     uint8_t event[3];
295880d52d6bSmatthias.ringwald     event[0] = BTSTACK_EVENT_NR_CONNECTIONS_CHANGED;
2959425d1371Smatthias.ringwald     event[1] = sizeof(event) - 2;
296043bfb1bdSmatthias.ringwald     event[2] = nr_hci_connections();
2961425d1371Smatthias.ringwald     hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
29623a9fb326S[email protected]     hci_stack->packet_handler(HCI_EVENT_PACKET, event, sizeof(event));
296343bfb1bdSmatthias.ringwald }
2964038bc64cSmatthias.ringwald 
296571de195eSMatthias Ringwald void hci_emit_hci_open_failed(void){
2966e0abb8e7S[email protected]     log_info("BTSTACK_EVENT_POWERON_FAILED");
2967425d1371Smatthias.ringwald     uint8_t event[2];
296880d52d6bSmatthias.ringwald     event[0] = BTSTACK_EVENT_POWERON_FAILED;
2969425d1371Smatthias.ringwald     event[1] = sizeof(event) - 2;
2970425d1371Smatthias.ringwald     hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
29713a9fb326S[email protected]     hci_stack->packet_handler(HCI_EVENT_PACKET, event, sizeof(event));
2972038bc64cSmatthias.ringwald }
29731b0e3922Smatthias.ringwald 
297409ba8edeSmatthias.ringwald #ifndef EMBEDDED
297571de195eSMatthias Ringwald void hci_emit_btstack_version(void){
2976e0abb8e7S[email protected]     log_info("BTSTACK_EVENT_VERSION %u.%u", BTSTACK_MAJOR, BTSTACK_MINOR);
2977425d1371Smatthias.ringwald     uint8_t event[6];
29781b0e3922Smatthias.ringwald     event[0] = BTSTACK_EVENT_VERSION;
2979425d1371Smatthias.ringwald     event[1] = sizeof(event) - 2;
2980425d1371Smatthias.ringwald     event[2] = BTSTACK_MAJOR;
2981425d1371Smatthias.ringwald     event[3] = BTSTACK_MINOR;
29821ebf5f9cSMatthias Ringwald     bt_store_16(event, 4, 3257);    // last SVN commit on Google Code + 1
2983425d1371Smatthias.ringwald     hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
29843a9fb326S[email protected]     hci_stack->packet_handler(HCI_EVENT_PACKET, event, sizeof(event));
29851b0e3922Smatthias.ringwald }
298609ba8edeSmatthias.ringwald #endif
29871b0e3922Smatthias.ringwald 
29882ed6235cSmatthias.ringwald void hci_emit_system_bluetooth_enabled(uint8_t enabled){
2989e0abb8e7S[email protected]     log_info("BTSTACK_EVENT_SYSTEM_BLUETOOTH_ENABLED %u", enabled);
2990425d1371Smatthias.ringwald     uint8_t event[3];
29912ed6235cSmatthias.ringwald     event[0] = BTSTACK_EVENT_SYSTEM_BLUETOOTH_ENABLED;
2992425d1371Smatthias.ringwald     event[1] = sizeof(event) - 2;
29932ed6235cSmatthias.ringwald     event[2] = enabled;
2994425d1371Smatthias.ringwald     hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
29953a9fb326S[email protected]     hci_stack->packet_handler(HCI_EVENT_PACKET, event, sizeof(event));
29962ed6235cSmatthias.ringwald }
2997627c2f45Smatthias.ringwald 
29982e77e513S[email protected] void hci_emit_remote_name_cached(bd_addr_t addr, device_name_t *name){
2999e0abb8e7S[email protected]     uint8_t event[2+1+6+248+1]; // +1 for \0 in log_info
3000627c2f45Smatthias.ringwald     event[0] = BTSTACK_EVENT_REMOTE_NAME_CACHED;
3001e0abb8e7S[email protected]     event[1] = sizeof(event) - 2 - 1;
3002f653b6bdSmatthias.ringwald     event[2] = 0;   // just to be compatible with HCI_EVENT_REMOTE_NAME_REQUEST_COMPLETE
30032e77e513S[email protected]     bt_flip_addr(&event[3], addr);
3004f653b6bdSmatthias.ringwald     memcpy(&event[9], name, 248);
3005e0abb8e7S[email protected] 
3006e0abb8e7S[email protected]     event[9+248] = 0;   // assert \0 for log_info
30072e77e513S[email protected]     log_info("BTSTACK_EVENT_REMOTE_NAME_CACHED %s = '%s'", bd_addr_to_str(addr), &event[9]);
3008e0abb8e7S[email protected] 
3009e0abb8e7S[email protected]     hci_dump_packet(HCI_EVENT_PACKET, 0, event, sizeof(event)-1);
30103a9fb326S[email protected]     hci_stack->packet_handler(HCI_EVENT_PACKET, event, sizeof(event)-1);
3011627c2f45Smatthias.ringwald }
3012381fbed8Smatthias.ringwald 
3013381fbed8Smatthias.ringwald void hci_emit_discoverable_enabled(uint8_t enabled){
3014e0abb8e7S[email protected]     log_info("BTSTACK_EVENT_DISCOVERABLE_ENABLED %u", enabled);
3015425d1371Smatthias.ringwald     uint8_t event[3];
3016381fbed8Smatthias.ringwald     event[0] = BTSTACK_EVENT_DISCOVERABLE_ENABLED;
3017425d1371Smatthias.ringwald     event[1] = sizeof(event) - 2;
3018381fbed8Smatthias.ringwald     event[2] = enabled;
3019425d1371Smatthias.ringwald     hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
30203a9fb326S[email protected]     hci_stack->packet_handler(HCI_EVENT_PACKET, event, sizeof(event));
3021381fbed8Smatthias.ringwald }
3022458bf4e8S[email protected] 
3023a00031e2S[email protected] void hci_emit_security_level(hci_con_handle_t con_handle, gap_security_level_t level){
3024df3354fcS[email protected]     log_info("hci_emit_security_level %u for handle %x", level, con_handle);
3025a00031e2S[email protected]     uint8_t event[5];
3026e00caf9cS[email protected]     int pos = 0;
3027a00031e2S[email protected]     event[pos++] = GAP_SECURITY_LEVEL;
3028e00caf9cS[email protected]     event[pos++] = sizeof(event) - 2;
3029a00031e2S[email protected]     bt_store_16(event, 2, con_handle);
3030e00caf9cS[email protected]     pos += 2;
3031e00caf9cS[email protected]     event[pos++] = level;
3032e00caf9cS[email protected]     hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
30333a9fb326S[email protected]     hci_stack->packet_handler(HCI_EVENT_PACKET, event, sizeof(event));
3034e00caf9cS[email protected] }
3035e00caf9cS[email protected] 
30361bd5283dS[email protected] void hci_emit_dedicated_bonding_result(bd_addr_t address, uint8_t status){
3037ad83dc6aS[email protected]     log_info("hci_emit_dedicated_bonding_result %u ", status);
3038ad83dc6aS[email protected]     uint8_t event[9];
3039ad83dc6aS[email protected]     int pos = 0;
3040ad83dc6aS[email protected]     event[pos++] = GAP_DEDICATED_BONDING_COMPLETED;
3041ad83dc6aS[email protected]     event[pos++] = sizeof(event) - 2;
3042ad83dc6aS[email protected]     event[pos++] = status;
30432e77e513S[email protected]     bt_flip_addr( &event[pos], address);
3044ad83dc6aS[email protected]     pos += 6;
3045ad83dc6aS[email protected]     hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
30463a9fb326S[email protected]     hci_stack->packet_handler(HCI_EVENT_PACKET, event, sizeof(event));
3047ad83dc6aS[email protected] }
3048ad83dc6aS[email protected] 
304998a2fd1cSMatthias Ringwald // query if remote side supports eSCO
305098a2fd1cSMatthias Ringwald int hci_remote_eSCO_supported(hci_con_handle_t con_handle){
305198a2fd1cSMatthias Ringwald     hci_connection_t * connection = hci_connection_for_handle(con_handle);
305298a2fd1cSMatthias Ringwald     if (!connection) return 0;
305398a2fd1cSMatthias Ringwald     return connection->remote_supported_feature_eSCO;
305498a2fd1cSMatthias Ringwald }
305598a2fd1cSMatthias Ringwald 
30562bd8b7e7S[email protected] // query if remote side supports SSP
30572bd8b7e7S[email protected] int hci_remote_ssp_supported(hci_con_handle_t con_handle){
30582bd8b7e7S[email protected]     hci_connection_t * connection = hci_connection_for_handle(con_handle);
30592bd8b7e7S[email protected]     if (!connection) return 0;
30602bd8b7e7S[email protected]     return (connection->bonding_flags & BONDING_REMOTE_SUPPORTS_SSP) ? 1 : 0;
30612bd8b7e7S[email protected] }
30622bd8b7e7S[email protected] 
3063df3354fcS[email protected] int hci_ssp_supported_on_both_sides(hci_con_handle_t handle){
3064df3354fcS[email protected]     return hci_local_ssp_activated() && hci_remote_ssp_supported(handle);
3065df3354fcS[email protected] }
3066df3354fcS[email protected] 
3067458bf4e8S[email protected] // GAP API
3068458bf4e8S[email protected] /**
3069458bf4e8S[email protected]  * @bbrief enable/disable bonding. default is enabled
3070458bf4e8S[email protected]  * @praram enabled
3071458bf4e8S[email protected]  */
30724c57c146S[email protected] void gap_set_bondable_mode(int enable){
30733a9fb326S[email protected]     hci_stack->bondable = enable ? 1 : 0;
3074458bf4e8S[email protected] }
30754ef6443cSMatthias Ringwald /**
30764ef6443cSMatthias Ringwald  * @brief Get bondable mode.
30774ef6443cSMatthias Ringwald  * @return 1 if bondable
30784ef6443cSMatthias Ringwald  */
30794ef6443cSMatthias Ringwald int gap_get_bondable_mode(void){
30804ef6443cSMatthias Ringwald     return hci_stack->bondable;
30814ef6443cSMatthias Ringwald }
3082cb230b9dS[email protected] 
3083cb230b9dS[email protected] /**
308434d2123cS[email protected]  * @brief map link keys to security levels
3085cb230b9dS[email protected]  */
308634d2123cS[email protected] gap_security_level_t gap_security_level_for_link_key_type(link_key_type_t link_key_type){
308734d2123cS[email protected]     switch (link_key_type){
30883c68dfa9S[email protected]         case AUTHENTICATED_COMBINATION_KEY_GENERATED_FROM_P256:
30893c68dfa9S[email protected]             return LEVEL_4;
30903c68dfa9S[email protected]         case COMBINATION_KEY:
30913c68dfa9S[email protected]         case AUTHENTICATED_COMBINATION_KEY_GENERATED_FROM_P192:
30923c68dfa9S[email protected]             return LEVEL_3;
30933c68dfa9S[email protected]         default:
30943c68dfa9S[email protected]             return LEVEL_2;
30953c68dfa9S[email protected]     }
3096cb230b9dS[email protected] }
3097cb230b9dS[email protected] 
3098a00031e2S[email protected] static gap_security_level_t gap_security_level_for_connection(hci_connection_t * connection){
309934d2123cS[email protected]     if (!connection) return LEVEL_0;
310034d2123cS[email protected]     if ((connection->authentication_flags & CONNECTION_ENCRYPTED) == 0) return LEVEL_0;
310134d2123cS[email protected]     return gap_security_level_for_link_key_type(connection->link_key_type);
310234d2123cS[email protected] }
310334d2123cS[email protected] 
310434d2123cS[email protected] 
3105106d6d11S[email protected] int gap_mitm_protection_required_for_security_level(gap_security_level_t level){
31065127cc62S[email protected]     log_info("gap_mitm_protection_required_for_security_level %u", level);
3107106d6d11S[email protected]     return level > LEVEL_2;
3108106d6d11S[email protected] }
3109106d6d11S[email protected] 
311034d2123cS[email protected] /**
311134d2123cS[email protected]  * @brief get current security level
311234d2123cS[email protected]  */
311334d2123cS[email protected] gap_security_level_t gap_security_level(hci_con_handle_t con_handle){
311434d2123cS[email protected]     hci_connection_t * connection = hci_connection_for_handle(con_handle);
311534d2123cS[email protected]     if (!connection) return LEVEL_0;
311634d2123cS[email protected]     return gap_security_level_for_connection(connection);
311734d2123cS[email protected] }
311834d2123cS[email protected] 
3119cb230b9dS[email protected] /**
3120cb230b9dS[email protected]  * @brief request connection to device to
3121cb230b9dS[email protected]  * @result GAP_AUTHENTICATION_RESULT
3122cb230b9dS[email protected]  */
312334d2123cS[email protected] void gap_request_security_level(hci_con_handle_t con_handle, gap_security_level_t requested_level){
312434d2123cS[email protected]     hci_connection_t * connection = hci_connection_for_handle(con_handle);
312534d2123cS[email protected]     if (!connection){
3126a00031e2S[email protected]         hci_emit_security_level(con_handle, LEVEL_0);
312734d2123cS[email protected]         return;
312834d2123cS[email protected]     }
312934d2123cS[email protected]     gap_security_level_t current_level = gap_security_level(con_handle);
313034d2123cS[email protected]     log_info("gap_request_security_level %u, current level %u", requested_level, current_level);
313134d2123cS[email protected]     if (current_level >= requested_level){
3132a00031e2S[email protected]         hci_emit_security_level(con_handle, current_level);
313334d2123cS[email protected]         return;
313434d2123cS[email protected]     }
3135a00031e2S[email protected] 
313634d2123cS[email protected]     connection->requested_security_level = requested_level;
3137a00031e2S[email protected] 
313825bf5872S[email protected] #if 0
313925bf5872S[email protected]     // sending encryption request without a link key results in an error.
314025bf5872S[email protected]     // TODO: figure out how to use it properly
314125bf5872S[email protected] 
3142fb8ba0dbS[email protected]     // would enabling ecnryption suffice (>= LEVEL_2)?
31433a9fb326S[email protected]     if (hci_stack->remote_device_db){
3144a00031e2S[email protected]         link_key_type_t link_key_type;
3145a00031e2S[email protected]         link_key_t      link_key;
31463a9fb326S[email protected]         if (hci_stack->remote_device_db->get_link_key( &connection->address, &link_key, &link_key_type)){
3147a00031e2S[email protected]             if (gap_security_level_for_link_key_type(link_key_type) >= requested_level){
3148a00031e2S[email protected]                 connection->bonding_flags |= BONDING_SEND_ENCRYPTION_REQUEST;
3149a00031e2S[email protected]                 return;
3150a00031e2S[email protected]             }
3151a00031e2S[email protected]         }
3152a00031e2S[email protected]     }
315325bf5872S[email protected] #endif
3154a00031e2S[email protected] 
31551eb2563eS[email protected]     // try to authenticate connection
31561eb2563eS[email protected]     connection->bonding_flags |= BONDING_SEND_AUTHENTICATE_REQUEST;
3157e80b2cf9S[email protected]     hci_run();
3158e00caf9cS[email protected] }
3159ad83dc6aS[email protected] 
3160ad83dc6aS[email protected] /**
3161ad83dc6aS[email protected]  * @brief start dedicated bonding with device. disconnect after bonding
3162ad83dc6aS[email protected]  * @param device
3163ad83dc6aS[email protected]  * @param request MITM protection
3164ad83dc6aS[email protected]  * @result GAP_DEDICATED_BONDING_COMPLETE
3165ad83dc6aS[email protected]  */
3166ad83dc6aS[email protected] int gap_dedicated_bonding(bd_addr_t device, int mitm_protection_required){
3167ad83dc6aS[email protected] 
3168ad83dc6aS[email protected]     // create connection state machine
316996a45072S[email protected]     hci_connection_t * connection = create_connection_for_bd_addr_and_type(device, BD_ADDR_TYPE_CLASSIC);
3170ad83dc6aS[email protected] 
3171ad83dc6aS[email protected]     if (!connection){
3172ad83dc6aS[email protected]         return BTSTACK_MEMORY_ALLOC_FAILED;
3173ad83dc6aS[email protected]     }
3174ad83dc6aS[email protected] 
3175ad83dc6aS[email protected]     // delete linkn key
31762e77e513S[email protected]     hci_drop_link_key_for_bd_addr(device);
3177ad83dc6aS[email protected] 
3178ad83dc6aS[email protected]     // configure LEVEL_2/3, dedicated bonding
3179ad83dc6aS[email protected]     connection->state = SEND_CREATE_CONNECTION;
3180ad83dc6aS[email protected]     connection->requested_security_level = mitm_protection_required ? LEVEL_3 : LEVEL_2;
31815127cc62S[email protected]     log_info("gap_dedicated_bonding, mitm %u -> level %u", mitm_protection_required, connection->requested_security_level);
3182ad83dc6aS[email protected]     connection->bonding_flags = BONDING_DEDICATED;
3183ad83dc6aS[email protected] 
3184ad83dc6aS[email protected]     // wait for GAP Security Result and send GAP Dedicated Bonding complete
3185ad83dc6aS[email protected] 
3186ad83dc6aS[email protected]     // handle: connnection failure (connection complete != ok)
3187ad83dc6aS[email protected]     // handle: authentication failure
3188ad83dc6aS[email protected]     // handle: disconnect on done
3189ad83dc6aS[email protected] 
3190ad83dc6aS[email protected]     hci_run();
3191ad83dc6aS[email protected] 
3192ad83dc6aS[email protected]     return 0;
3193ad83dc6aS[email protected] }
31948e618f72S[email protected] 
31958e618f72S[email protected] void gap_set_local_name(const char * local_name){
31968e618f72S[email protected]     hci_stack->local_name = local_name;
31978e618f72S[email protected] }
31988e618f72S[email protected] 
3199616edd56SMatthias Ringwald uint8_t le_central_start_scan(void){
3200616edd56SMatthias Ringwald     if (hci_stack->le_scanning_state == LE_SCANNING) return 0;
32017bdc6798S[email protected]     hci_stack->le_scanning_state = LE_START_SCAN;
32027bdc6798S[email protected]     hci_run();
3203616edd56SMatthias Ringwald     return 0;
32047bdc6798S[email protected] }
32058e618f72S[email protected] 
3206616edd56SMatthias Ringwald uint8_t le_central_stop_scan(void){
3207616edd56SMatthias Ringwald     if ( hci_stack->le_scanning_state == LE_SCAN_IDLE) return 0;
32087bdc6798S[email protected]     hci_stack->le_scanning_state = LE_STOP_SCAN;
32097bdc6798S[email protected]     hci_run();
3210616edd56SMatthias Ringwald     return 0;
32117bdc6798S[email protected] }
32124f3229d8S[email protected] 
3213ef11999fSmatthias.ringwald void le_central_set_scan_parameters(uint8_t scan_type, uint16_t scan_interval, uint16_t scan_window){
3214ef11999fSmatthias.ringwald     hci_stack->le_scan_type     = scan_type;
3215ef11999fSmatthias.ringwald     hci_stack->le_scan_interval = scan_interval;
3216ef11999fSmatthias.ringwald     hci_stack->le_scan_window   = scan_window;
3217ef11999fSmatthias.ringwald     hci_run();
3218ef11999fSmatthias.ringwald }
32194f3229d8S[email protected] 
3220616edd56SMatthias Ringwald uint8_t le_central_connect(bd_addr_t addr, bd_addr_type_t addr_type){
32214f3229d8S[email protected]     hci_connection_t * conn = hci_connection_for_bd_addr_and_type(addr, addr_type);
32224f3229d8S[email protected]     if (!conn){
32231f479f8cS[email protected]         log_info("le_central_connect: no connection exists yet, creating context");
32242e77e513S[email protected]         conn = create_connection_for_bd_addr_and_type(addr, addr_type);
32254f3229d8S[email protected]         if (!conn){
32264f3229d8S[email protected]             // notify client that alloc failed
32276e2e9a6bS[email protected]             hci_emit_le_connection_complete(addr_type, addr, 0, BTSTACK_MEMORY_ALLOC_FAILED);
32286e2e9a6bS[email protected]             log_info("le_central_connect: failed to alloc hci_connection_t");
3229472a5742SMatthias Ringwald             return GATT_CLIENT_NOT_CONNECTED; // don't sent packet to controller
32304f3229d8S[email protected]         }
32314f3229d8S[email protected]         conn->state = SEND_CREATE_CONNECTION;
32321f479f8cS[email protected]         log_info("le_central_connect: send create connection next");
3233564fca32S[email protected]         hci_run();
3234616edd56SMatthias Ringwald         return 0;
32354f3229d8S[email protected]     }
32360bf6344aS[email protected] 
32370bf6344aS[email protected]     if (!hci_is_le_connection(conn) ||
32380bf6344aS[email protected]         conn->state == SEND_CREATE_CONNECTION ||
32390bf6344aS[email protected]         conn->state == SENT_CREATE_CONNECTION) {
32402e77e513S[email protected]         hci_emit_le_connection_complete(conn->address_type, conn->address, 0, ERROR_CODE_COMMAND_DISALLOWED);
32411f479f8cS[email protected]         log_error("le_central_connect: classic connection or connect is already being created");
3242616edd56SMatthias Ringwald         return GATT_CLIENT_IN_WRONG_STATE;
32430bf6344aS[email protected]     }
32440bf6344aS[email protected] 
32451f479f8cS[email protected]     log_info("le_central_connect: context exists with state %u", conn->state);
32462e77e513S[email protected]     hci_emit_le_connection_complete(conn->address_type, conn->address, conn->con_handle, 0);
32474f3229d8S[email protected]     hci_run();
3248616edd56SMatthias Ringwald     return 0;
32494f3229d8S[email protected] }
32504f3229d8S[email protected] 
32517851196eSmatthias.ringwald // @assumption: only a single outgoing LE Connection exists
325271de195eSMatthias Ringwald static hci_connection_t * le_central_get_outgoing_connection(void){
3253665d90f2SMatthias Ringwald     btstack_linked_item_t *it;
3254665d90f2SMatthias Ringwald     for (it = (btstack_linked_item_t *) hci_stack->connections; it ; it = it->next){
32550bf6344aS[email protected]         hci_connection_t * conn = (hci_connection_t *) it;
32560bf6344aS[email protected]         if (!hci_is_le_connection(conn)) continue;
32570bf6344aS[email protected]         switch (conn->state){
3258a6725849S[email protected]             case SEND_CREATE_CONNECTION:
32597851196eSmatthias.ringwald             case SENT_CREATE_CONNECTION:
32607851196eSmatthias.ringwald                 return conn;
32617851196eSmatthias.ringwald             default:
32627851196eSmatthias.ringwald                 break;
32637851196eSmatthias.ringwald         };
32647851196eSmatthias.ringwald     }
32657851196eSmatthias.ringwald     return NULL;
32667851196eSmatthias.ringwald }
32677851196eSmatthias.ringwald 
3268616edd56SMatthias Ringwald uint8_t le_central_connect_cancel(void){
32697851196eSmatthias.ringwald     hci_connection_t * conn = le_central_get_outgoing_connection();
3270616edd56SMatthias Ringwald     if (!conn) return 0;
32717851196eSmatthias.ringwald     switch (conn->state){
32727851196eSmatthias.ringwald         case SEND_CREATE_CONNECTION:
32737851196eSmatthias.ringwald             // skip sending create connection and emit event instead
32742e77e513S[email protected]             hci_emit_le_connection_complete(conn->address_type, conn->address, 0, ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER);
3275665d90f2SMatthias Ringwald             btstack_linked_list_remove(&hci_stack->connections, (btstack_linked_item_t *) conn);
32767851196eSmatthias.ringwald             btstack_memory_hci_connection_free( conn );
32770bf6344aS[email protected]             break;
3278a6725849S[email protected]         case SENT_CREATE_CONNECTION:
32797851196eSmatthias.ringwald             // request to send cancel connection
32800bf6344aS[email protected]             conn->state = SEND_CANCEL_CONNECTION;
32810bf6344aS[email protected]             hci_run();
32820bf6344aS[email protected]             break;
32830bf6344aS[email protected]         default:
32840bf6344aS[email protected]             break;
32850bf6344aS[email protected]     }
3286616edd56SMatthias Ringwald     return 0;
3287e31f89a7S[email protected] }
32884f3229d8S[email protected] 
3289c37a3166S[email protected] /**
3290c37a3166S[email protected]  * @brief Updates the connection parameters for a given LE connection
3291c37a3166S[email protected]  * @param handle
3292c37a3166S[email protected]  * @param conn_interval_min (unit: 1.25ms)
3293c37a3166S[email protected]  * @param conn_interval_max (unit: 1.25ms)
3294c37a3166S[email protected]  * @param conn_latency
3295c37a3166S[email protected]  * @param supervision_timeout (unit: 10ms)
3296c37a3166S[email protected]  * @returns 0 if ok
3297c37a3166S[email protected]  */
3298c37a3166S[email protected] int gap_update_connection_parameters(hci_con_handle_t con_handle, uint16_t conn_interval_min,
3299c37a3166S[email protected]     uint16_t conn_interval_max, uint16_t conn_latency, uint16_t supervision_timeout){
3300c37a3166S[email protected]     hci_connection_t * connection = hci_connection_for_handle(con_handle);
3301c37a3166S[email protected]     if (!connection) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
3302c37a3166S[email protected]     connection->le_conn_interval_min = conn_interval_min;
3303c37a3166S[email protected]     connection->le_conn_interval_max = conn_interval_max;
3304c37a3166S[email protected]     connection->le_conn_latency = conn_latency;
3305c37a3166S[email protected]     connection->le_supervision_timeout = supervision_timeout;
330684cf6d83SMatthias Ringwald     connection->le_con_parameter_update_state = CON_PARAMETER_UPDATE_CHANGE_HCI_CON_PARAMETERS;
3307cfc59f1bSMatthias Ringwald     hci_run();
3308c37a3166S[email protected]     return 0;
3309c37a3166S[email protected] }
3310c37a3166S[email protected] 
331145c102fdSMatthias Ringwald /**
3312b68d7bc3SMatthias Ringwald  * @brief Request an update of the connection parameter for a given LE connection
3313b68d7bc3SMatthias Ringwald  * @param handle
3314b68d7bc3SMatthias Ringwald  * @param conn_interval_min (unit: 1.25ms)
3315b68d7bc3SMatthias Ringwald  * @param conn_interval_max (unit: 1.25ms)
3316b68d7bc3SMatthias Ringwald  * @param conn_latency
3317b68d7bc3SMatthias Ringwald  * @param supervision_timeout (unit: 10ms)
3318b68d7bc3SMatthias Ringwald  * @returns 0 if ok
3319b68d7bc3SMatthias Ringwald  */
3320b68d7bc3SMatthias Ringwald int gap_request_connection_parameter_update(hci_con_handle_t con_handle, uint16_t conn_interval_min,
3321b68d7bc3SMatthias Ringwald     uint16_t conn_interval_max, uint16_t conn_latency, uint16_t supervision_timeout){
3322b68d7bc3SMatthias Ringwald     hci_connection_t * connection = hci_connection_for_handle(con_handle);
3323b68d7bc3SMatthias Ringwald     if (!connection) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
3324b68d7bc3SMatthias Ringwald     connection->le_conn_interval_min = conn_interval_min;
3325b68d7bc3SMatthias Ringwald     connection->le_conn_interval_max = conn_interval_max;
3326b68d7bc3SMatthias Ringwald     connection->le_conn_latency = conn_latency;
3327b68d7bc3SMatthias Ringwald     connection->le_supervision_timeout = supervision_timeout;
3328b68d7bc3SMatthias Ringwald     connection->le_con_parameter_update_state = CON_PARAMETER_UPDATE_SEND_REQUEST;
3329b68d7bc3SMatthias Ringwald     hci_run();
3330b68d7bc3SMatthias Ringwald     return 0;
3331b68d7bc3SMatthias Ringwald }
3332b68d7bc3SMatthias Ringwald 
3333b68d7bc3SMatthias Ringwald /**
333445c102fdSMatthias Ringwald  * @brief Set Advertisement Data
333545c102fdSMatthias Ringwald  * @param advertising_data_length
333645c102fdSMatthias Ringwald  * @param advertising_data (max 31 octets)
333745c102fdSMatthias Ringwald  * @note data is not copied, pointer has to stay valid
333845c102fdSMatthias Ringwald  */
333945c102fdSMatthias Ringwald void gap_advertisements_set_data(uint8_t advertising_data_length, uint8_t * advertising_data){
334045c102fdSMatthias Ringwald     hci_stack->le_advertisements_data_len = advertising_data_length;
334145c102fdSMatthias Ringwald     hci_stack->le_advertisements_data = advertising_data;
334245c102fdSMatthias Ringwald     hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_SET_DATA;
334345c102fdSMatthias Ringwald     // disable advertisements before setting data
3344a4fe4ae8SMatthias Ringwald     if (hci_stack->le_advertisements_active){
334545c102fdSMatthias Ringwald         hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_DISABLE | LE_ADVERTISEMENT_TASKS_ENABLE;
334645c102fdSMatthias Ringwald     }
3347cfc59f1bSMatthias Ringwald     hci_run();
334845c102fdSMatthias Ringwald }
334945c102fdSMatthias Ringwald 
335045c102fdSMatthias Ringwald /**
335145c102fdSMatthias Ringwald  * @brief Set Advertisement Parameters
335245c102fdSMatthias Ringwald  * @param adv_int_min
335345c102fdSMatthias Ringwald  * @param adv_int_max
335445c102fdSMatthias Ringwald  * @param adv_type
335545c102fdSMatthias Ringwald  * @param own_address_type
335645c102fdSMatthias Ringwald  * @param direct_address_type
335745c102fdSMatthias Ringwald  * @param direct_address
335845c102fdSMatthias Ringwald  * @param channel_map
335945c102fdSMatthias Ringwald  * @param filter_policy
336045c102fdSMatthias Ringwald  *
336145c102fdSMatthias Ringwald  * @note internal use. use gap_advertisements_set_params from gap_le.h instead.
336245c102fdSMatthias Ringwald  */
336345c102fdSMatthias Ringwald  void hci_le_advertisements_set_params(uint16_t adv_int_min, uint16_t adv_int_max, uint8_t adv_type,
336445c102fdSMatthias Ringwald     uint8_t own_address_type, uint8_t direct_address_typ, bd_addr_t direct_address,
336545c102fdSMatthias Ringwald     uint8_t channel_map, uint8_t filter_policy) {
336645c102fdSMatthias Ringwald 
336745c102fdSMatthias Ringwald     hci_stack->le_advertisements_interval_min = adv_int_min;
336845c102fdSMatthias Ringwald     hci_stack->le_advertisements_interval_max = adv_int_max;
336945c102fdSMatthias Ringwald     hci_stack->le_advertisements_type = adv_type;
337045c102fdSMatthias Ringwald     hci_stack->le_advertisements_own_address_type = own_address_type;
337145c102fdSMatthias Ringwald     hci_stack->le_advertisements_direct_address_type = direct_address_typ;
337245c102fdSMatthias Ringwald     hci_stack->le_advertisements_channel_map = channel_map;
337345c102fdSMatthias Ringwald     hci_stack->le_advertisements_filter_policy = filter_policy;
337445c102fdSMatthias Ringwald     memcpy(hci_stack->le_advertisements_direct_address, direct_address, 6);
337545c102fdSMatthias Ringwald 
337645c102fdSMatthias Ringwald     hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_SET_PARAMS;
337745c102fdSMatthias Ringwald     // disable advertisements before changing params
3378a4fe4ae8SMatthias Ringwald     if (hci_stack->le_advertisements_active){
337945c102fdSMatthias Ringwald         hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_DISABLE | LE_ADVERTISEMENT_TASKS_ENABLE;
338045c102fdSMatthias Ringwald     }
3381cfc59f1bSMatthias Ringwald     hci_run();
338245c102fdSMatthias Ringwald  }
338345c102fdSMatthias Ringwald 
338445c102fdSMatthias Ringwald /**
338545c102fdSMatthias Ringwald  * @brief Enable/Disable Advertisements
338645c102fdSMatthias Ringwald  * @param enabled
338745c102fdSMatthias Ringwald  */
338845c102fdSMatthias Ringwald void gap_advertisements_enable(int enabled){
338945c102fdSMatthias Ringwald     hci_stack->le_advertisements_enabled = enabled;
339045c102fdSMatthias Ringwald     if (enabled && !hci_stack->le_advertisements_active){
339145c102fdSMatthias Ringwald         hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_ENABLE;
339245c102fdSMatthias Ringwald     }
339345c102fdSMatthias Ringwald     if (!enabled && hci_stack->le_advertisements_active){
339445c102fdSMatthias Ringwald         hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_DISABLE;
339545c102fdSMatthias Ringwald     }
3396cfc59f1bSMatthias Ringwald     hci_run();
339745c102fdSMatthias Ringwald }
339845c102fdSMatthias Ringwald 
339945c102fdSMatthias Ringwald 
3400616edd56SMatthias Ringwald uint8_t gap_disconnect(hci_con_handle_t handle){
34015917a5c5S[email protected]     hci_connection_t * conn = hci_connection_for_handle(handle);
34025917a5c5S[email protected]     if (!conn){
34037851196eSmatthias.ringwald         hci_emit_disconnection_complete(handle, 0);
3404616edd56SMatthias Ringwald         return 0;
34055917a5c5S[email protected]     }
34065917a5c5S[email protected]     conn->state = SEND_DISCONNECT;
34075917a5c5S[email protected]     hci_run();
3408616edd56SMatthias Ringwald     return 0;
34094f3229d8S[email protected] }
341004a6ef8cSmatthias.ringwald 
3411a1bf5ae7SMatthias Ringwald /**
3412a1bf5ae7SMatthias Ringwald  * @brief Get connection type
3413a1bf5ae7SMatthias Ringwald  * @param con_handle
3414a1bf5ae7SMatthias Ringwald  * @result connection_type
3415a1bf5ae7SMatthias Ringwald  */
3416a1bf5ae7SMatthias Ringwald gap_connection_type_t gap_get_connection_type(hci_con_handle_t connection_handle){
3417a1bf5ae7SMatthias Ringwald     hci_connection_t * conn = hci_connection_for_handle(connection_handle);
3418a1bf5ae7SMatthias Ringwald     if (!conn) return GAP_CONNECTION_INVALID;
3419a1bf5ae7SMatthias Ringwald     switch (conn->address_type){
3420a1bf5ae7SMatthias Ringwald         case BD_ADDR_TYPE_LE_PUBLIC:
3421a1bf5ae7SMatthias Ringwald         case BD_ADDR_TYPE_LE_RANDOM:
3422a1bf5ae7SMatthias Ringwald             return GAP_CONNECTION_LE;
3423a1bf5ae7SMatthias Ringwald         case BD_ADDR_TYPE_SCO:
3424a1bf5ae7SMatthias Ringwald             return GAP_CONNECTION_SCO;
3425a1bf5ae7SMatthias Ringwald         case BD_ADDR_TYPE_CLASSIC:
3426a1bf5ae7SMatthias Ringwald             return GAP_CONNECTION_ACL;
3427a1bf5ae7SMatthias Ringwald         default:
3428a1bf5ae7SMatthias Ringwald             return GAP_CONNECTION_INVALID;
3429a1bf5ae7SMatthias Ringwald     }
3430a1bf5ae7SMatthias Ringwald }
3431a1bf5ae7SMatthias Ringwald 
34324f551432SMatthias Ringwald #ifdef HAVE_BLE
34334f551432SMatthias Ringwald 
3434d23838ecSMatthias Ringwald /**
3435ac9c45e0SMatthias Ringwald  * @brief Auto Connection Establishment - Start Connecting to device
3436ac9c45e0SMatthias Ringwald  * @param address_typ
3437ac9c45e0SMatthias Ringwald  * @param address
3438ac9c45e0SMatthias Ringwald  * @returns 0 if ok
3439ac9c45e0SMatthias Ringwald  */
34404f551432SMatthias Ringwald int gap_auto_connection_start(bd_addr_type_t address_type, bd_addr_t address){
3441e83201bcSMatthias Ringwald     // check capacity
3442665d90f2SMatthias Ringwald     int num_entries = btstack_linked_list_count(&hci_stack->le_whitelist);
344391915b0bSMatthias Ringwald     if (num_entries >= hci_stack->le_whitelist_capacity) return ERROR_CODE_MEMORY_CAPACITY_EXCEEDED;
3444e83201bcSMatthias Ringwald     whitelist_entry_t * entry = btstack_memory_whitelist_entry_get();
3445e83201bcSMatthias Ringwald     if (!entry) return BTSTACK_MEMORY_ALLOC_FAILED;
3446e83201bcSMatthias Ringwald     entry->address_type = address_type;
3447e83201bcSMatthias Ringwald     memcpy(entry->address, address, 6);
3448e83201bcSMatthias Ringwald     entry->state = LE_WHITELIST_ADD_TO_CONTROLLER;
3449665d90f2SMatthias Ringwald     btstack_linked_list_add(&hci_stack->le_whitelist, (btstack_linked_item_t*) entry);
3450e83201bcSMatthias Ringwald     hci_run();
3451e83201bcSMatthias Ringwald     return 0;
3452ac9c45e0SMatthias Ringwald }
3453ac9c45e0SMatthias Ringwald 
345442ff5ba1SMatthias Ringwald static void hci_remove_from_whitelist(bd_addr_type_t address_type, bd_addr_t address){
3455665d90f2SMatthias Ringwald     btstack_linked_list_iterator_t it;
3456665d90f2SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->le_whitelist);
3457665d90f2SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
3458665d90f2SMatthias Ringwald         whitelist_entry_t * entry = (whitelist_entry_t*) btstack_linked_list_iterator_next(&it);
3459e83201bcSMatthias Ringwald         if (entry->address_type != address_type) continue;
3460e83201bcSMatthias Ringwald         if (memcmp(entry->address, address, 6) != 0) continue;
3461e83201bcSMatthias Ringwald         if (entry->state & LE_WHITELIST_ON_CONTROLLER){
3462e83201bcSMatthias Ringwald             // remove from controller if already present
3463e83201bcSMatthias Ringwald             entry->state |= LE_WHITELIST_REMOVE_FROM_CONTROLLER;
3464e83201bcSMatthias Ringwald             continue;
3465e83201bcSMatthias Ringwald         }
3466e83201bcSMatthias Ringwald         // direclty remove entry from whitelist
3467665d90f2SMatthias Ringwald         btstack_linked_list_iterator_remove(&it);
3468e83201bcSMatthias Ringwald         btstack_memory_whitelist_entry_free(entry);
3469e83201bcSMatthias Ringwald     }
347042ff5ba1SMatthias Ringwald }
347142ff5ba1SMatthias Ringwald 
347242ff5ba1SMatthias Ringwald /**
347342ff5ba1SMatthias Ringwald  * @brief Auto Connection Establishment - Stop Connecting to device
347442ff5ba1SMatthias Ringwald  * @param address_typ
347542ff5ba1SMatthias Ringwald  * @param address
347642ff5ba1SMatthias Ringwald  * @returns 0 if ok
347742ff5ba1SMatthias Ringwald  */
347842ff5ba1SMatthias Ringwald int gap_auto_connection_stop(bd_addr_type_t address_type, bd_addr_t address){
347942ff5ba1SMatthias Ringwald     hci_remove_from_whitelist(address_type, address);
3480e83201bcSMatthias Ringwald     hci_run();
3481e83201bcSMatthias Ringwald     return 0;
3482ac9c45e0SMatthias Ringwald }
3483ac9c45e0SMatthias Ringwald 
3484ac9c45e0SMatthias Ringwald /**
3485ac9c45e0SMatthias Ringwald  * @brief Auto Connection Establishment - Stop everything
3486ac9c45e0SMatthias Ringwald  * @note  Convenience function to stop all active auto connection attempts
3487ac9c45e0SMatthias Ringwald  */
3488ac9c45e0SMatthias Ringwald void gap_auto_connection_stop_all(void){
3489665d90f2SMatthias Ringwald     btstack_linked_list_iterator_t it;
3490665d90f2SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->le_whitelist);
3491665d90f2SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
3492665d90f2SMatthias Ringwald         whitelist_entry_t * entry = (whitelist_entry_t*) btstack_linked_list_iterator_next(&it);
3493e83201bcSMatthias Ringwald         if (entry->state & LE_WHITELIST_ON_CONTROLLER){
3494e83201bcSMatthias Ringwald             // remove from controller if already present
3495e83201bcSMatthias Ringwald             entry->state |= LE_WHITELIST_REMOVE_FROM_CONTROLLER;
3496e83201bcSMatthias Ringwald             continue;
3497e83201bcSMatthias Ringwald         }
349891915b0bSMatthias Ringwald         // directly remove entry from whitelist
3499665d90f2SMatthias Ringwald         btstack_linked_list_iterator_remove(&it);
3500e83201bcSMatthias Ringwald         btstack_memory_whitelist_entry_free(entry);
3501e83201bcSMatthias Ringwald     }
3502e83201bcSMatthias Ringwald     hci_run();
3503ac9c45e0SMatthias Ringwald }
3504ac9c45e0SMatthias Ringwald 
35054f551432SMatthias Ringwald #endif
35064f551432SMatthias Ringwald 
3507ac9c45e0SMatthias Ringwald /**
3508d950d659SMatthias Ringwald  * @brief Configure Voice Setting for use with SCO data in HSP/HFP
3509d950d659SMatthias Ringwald  */
3510d950d659SMatthias Ringwald void hci_set_sco_voice_setting(uint16_t voice_setting){
3511d950d659SMatthias Ringwald     hci_stack->sco_voice_setting = voice_setting;
3512d950d659SMatthias Ringwald }
3513d950d659SMatthias Ringwald 
3514d950d659SMatthias Ringwald /**
3515d950d659SMatthias Ringwald  * @brief Get SCO Voice Setting
3516d950d659SMatthias Ringwald  * @return current voice setting
3517d950d659SMatthias Ringwald  */
3518d950d659SMatthias Ringwald uint16_t hci_get_sco_voice_setting(){
3519d950d659SMatthias Ringwald     return hci_stack->sco_voice_setting;
3520d950d659SMatthias Ringwald }
3521d950d659SMatthias Ringwald 
3522b3aad8daSMatthias Ringwald /** @brief Get SCO packet length for current SCO Voice setting
3523b3aad8daSMatthias Ringwald  *  @note  Using SCO packets of the exact length is required for USB transfer
3524b3aad8daSMatthias Ringwald  *  @return Length of SCO packets in bytes (not audio frames)
3525b3aad8daSMatthias Ringwald  */
3526b3aad8daSMatthias Ringwald int hci_get_sco_packet_length(void){
3527b3aad8daSMatthias Ringwald     // see Core Spec for H2 USB Transfer.
3528b3aad8daSMatthias Ringwald     if (hci_stack->sco_voice_setting & 0x0020) return 51;
3529b3aad8daSMatthias Ringwald     return 27;
3530b3aad8daSMatthias Ringwald }
3531b3aad8daSMatthias Ringwald 
3532d950d659SMatthias Ringwald /**
3533d23838ecSMatthias Ringwald  * @brief Set callback for Bluetooth Hardware Error
3534d23838ecSMatthias Ringwald  */
3535d23838ecSMatthias Ringwald void hci_set_hardware_error_callback(void (*fn)(void)){
3536d23838ecSMatthias Ringwald     hci_stack->hardware_error_callback = fn;
3537d23838ecSMatthias Ringwald }
3538d23838ecSMatthias Ringwald 
3539d23838ecSMatthias Ringwald 
354071de195eSMatthias Ringwald void hci_disconnect_all(void){
3541665d90f2SMatthias Ringwald     btstack_linked_list_iterator_t it;
3542665d90f2SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->connections);
3543665d90f2SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
3544665d90f2SMatthias Ringwald         hci_connection_t * con = (hci_connection_t*) btstack_linked_list_iterator_next(&it);
354504a6ef8cSmatthias.ringwald         if (con->state == SENT_DISCONNECT) continue;
354604a6ef8cSmatthias.ringwald         con->state = SEND_DISCONNECT;
354704a6ef8cSmatthias.ringwald     }
3548d31fba26S[email protected]     hci_run();
354904a6ef8cSmatthias.ringwald }
3550