xref: /btstack/src/hci.c (revision 729710c06902135c687d979c1a75f07905a100f1)
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 
38ab2c6ae4SMatthias Ringwald #define __BTSTACK_FILE__ "hci.c"
39ab2c6ae4SMatthias Ringwald 
401713bceaSmatthias.ringwald /*
411f504dbdSmatthias.ringwald  *  hci.c
421f504dbdSmatthias.ringwald  *
431f504dbdSmatthias.ringwald  *  Created by Matthias Ringwald on 4/29/09.
441f504dbdSmatthias.ringwald  *
451f504dbdSmatthias.ringwald  */
461f504dbdSmatthias.ringwald 
477907f069SMatthias Ringwald #include "btstack_config.h"
4828171530Smatthias.ringwald 
497f2435e6Smatthias.ringwald 
5006b9e820SMatthias Ringwald #ifdef ENABLE_CLASSIC
51aec7654dSMatthias Ringwald #ifdef HAVE_EMBEDDED_TICK
528f2a52f4SMatthias Ringwald #include "btstack_run_loop_embedded.h"
53a484130cSMatthias Ringwald #endif
5406b9e820SMatthias Ringwald #endif
55a484130cSMatthias Ringwald 
564a3574a1SMatthias Ringwald #ifdef HAVE_PLATFORM_IPHONE_OS
57d0b87befSMatthias Ringwald #include "../port/ios/src/btstack_control_iphone.h"
584a3574a1SMatthias Ringwald #endif
594a3574a1SMatthias Ringwald 
60a9a4c409SMatthias Ringwald #ifdef ENABLE_BLE
61472a5742SMatthias Ringwald #include "gap.h"
6245c102fdSMatthias Ringwald #endif
6345c102fdSMatthias Ringwald 
6493b8dc03Smatthias.ringwald #include <stdarg.h>
6593b8dc03Smatthias.ringwald #include <string.h>
6656fe0872Smatthias.ringwald #include <stdio.h>
675838a2edSMatthias Ringwald #include <inttypes.h>
687f2435e6Smatthias.ringwald 
6916ece135SMatthias Ringwald #include "btstack_debug.h"
700e2df43fSMatthias Ringwald #include "btstack_event.h"
714a3574a1SMatthias Ringwald #include "btstack_linked_list.h"
724a3574a1SMatthias Ringwald #include "btstack_memory.h"
7361f37892SMatthias Ringwald #include "bluetooth_company_id.h"
741cfb383eSMatthias Ringwald #include "bluetooth_data_types.h"
754a3574a1SMatthias Ringwald #include "gap.h"
764a3574a1SMatthias Ringwald #include "hci.h"
774a3574a1SMatthias Ringwald #include "hci_cmd.h"
78d8905019Smatthias.ringwald #include "hci_dump.h"
791cfb383eSMatthias Ringwald #include "ad_parser.h"
8093b8dc03Smatthias.ringwald 
812b838201SMatthias Ringwald #ifdef ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL
822b838201SMatthias Ringwald #ifndef HCI_HOST_ACL_PACKET_NUM
832b838201SMatthias Ringwald #error "ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL requires to define HCI_HOST_ACL_PACKET_NUM"
842b838201SMatthias Ringwald #endif
852b838201SMatthias Ringwald #ifndef HCI_HOST_ACL_PACKET_LEN
862b838201SMatthias Ringwald #error "ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL requires to define HCI_HOST_ACL_PACKET_LEN"
872b838201SMatthias Ringwald #endif
882b838201SMatthias Ringwald #ifndef HCI_HOST_SCO_PACKET_NUM
892b838201SMatthias Ringwald #error "ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL requires to define HCI_HOST_SCO_PACKET_NUM"
902b838201SMatthias Ringwald #endif
912b838201SMatthias Ringwald #ifndef HCI_HOST_SCO_PACKET_LEN
922b838201SMatthias Ringwald #error "ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL requires to define HCI_HOST_SCO_PACKET_LEN"
932b838201SMatthias Ringwald #endif
942b838201SMatthias Ringwald #endif
951b0e3922Smatthias.ringwald 
96169f8b28Smatthias.ringwald #define HCI_CONNECTION_TIMEOUT_MS 10000
97659d758cSMatthias Ringwald #define HCI_RESET_RESEND_TIMEOUT_MS 200
98ee091cf1Smatthias.ringwald 
991cfb383eSMatthias Ringwald // Names are arbitrarily shortened to 32 bytes if not requested otherwise
1001cfb383eSMatthias Ringwald #ifndef GAP_INQUIRY_MAX_NAME_LEN
1011cfb383eSMatthias Ringwald #define GAP_INQUIRY_MAX_NAME_LEN 32
1021cfb383eSMatthias Ringwald #endif
1031cfb383eSMatthias Ringwald 
104f5875de5SMatthias Ringwald // GAP inquiry state: 0 = off, 0x01 - 0x30 = requested duration, 0xfe = active, 0xff = stop requested
105f5875de5SMatthias Ringwald #define GAP_INQUIRY_DURATION_MIN 0x01
106f5875de5SMatthias Ringwald #define GAP_INQUIRY_DURATION_MAX 0x30
107f5875de5SMatthias Ringwald #define GAP_INQUIRY_STATE_ACTIVE 0x80
108f5875de5SMatthias Ringwald #define GAP_INQUIRY_STATE_IDLE 0
109f5875de5SMatthias Ringwald #define GAP_INQUIRY_STATE_W2_CANCEL 0x81
110f5875de5SMatthias Ringwald #define GAP_INQUIRY_STATE_W4_CANCELLED 0x82
111f5875de5SMatthias Ringwald 
112b7f1ee76SMatthias Ringwald // GAP Remote Name Request
113b7f1ee76SMatthias Ringwald #define GAP_REMOTE_NAME_STATE_IDLE 0
114b7f1ee76SMatthias Ringwald #define GAP_REMOTE_NAME_STATE_W2_SEND 1
115b7f1ee76SMatthias Ringwald #define GAP_REMOTE_NAME_STATE_W4_COMPLETE 2
116b7f1ee76SMatthias Ringwald 
1170a51f88bSMatthias Ringwald // GAP Pairing
1180a51f88bSMatthias Ringwald #define GAP_PAIRING_STATE_IDLE                       0
1190a51f88bSMatthias Ringwald #define GAP_PAIRING_STATE_SEND_PIN                   1
1200a51f88bSMatthias Ringwald #define GAP_PAIRING_STATE_SEND_PIN_NEGATIVE          2
1210a51f88bSMatthias Ringwald #define GAP_PAIRING_STATE_SEND_PASSKEY               3
1220a51f88bSMatthias Ringwald #define GAP_PAIRING_STATE_SEND_PASSKEY_NEGATIVE      4
1230a51f88bSMatthias Ringwald #define GAP_PAIRING_STATE_SEND_CONFIRMATION          5
1240a51f88bSMatthias Ringwald #define GAP_PAIRING_STATE_SEND_CONFIRMATION_NEGATIVE 6
1250a51f88bSMatthias Ringwald 
1260a51f88bSMatthias Ringwald 
127b83d5eabSMatthias Ringwald // prototypes
12835454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
129758b46ceSmatthias.ringwald static void hci_update_scan_enable(void);
13035454696SMatthias Ringwald static void hci_emit_discoverable_enabled(uint8_t enabled);
13135454696SMatthias Ringwald static int  hci_local_ssp_activated(void);
13235454696SMatthias Ringwald static int  hci_remote_ssp_supported(hci_con_handle_t con_handle);
13335454696SMatthias Ringwald static void hci_notify_if_sco_can_send_now(void);
13435454696SMatthias Ringwald static void hci_emit_connection_complete(bd_addr_t address, hci_con_handle_t con_handle, uint8_t status);
135a00031e2S[email protected] static gap_security_level_t gap_security_level_for_connection(hci_connection_t * connection);
13635454696SMatthias Ringwald static void hci_emit_security_level(hci_con_handle_t con_handle, gap_security_level_t level);
137ec820d77SMatthias Ringwald static void hci_connection_timeout_handler(btstack_timer_source_t *timer);
13896a45072S[email protected] static void hci_connection_timestamp(hci_connection_t *connection);
13952db98b2SMatthias Ringwald static void hci_emit_l2cap_check_timeout(hci_connection_t *conn);
1401cfb383eSMatthias Ringwald static void gap_inquiry_explode(uint8_t * packet);
14152db98b2SMatthias Ringwald #endif
1421cfb383eSMatthias Ringwald 
1437586ee35S[email protected] static int  hci_power_control_on(void);
1447586ee35S[email protected] static void hci_power_control_off(void);
1456da48142SSean Wilson static void hci_state_reset(void);
146fd43c0e0SMatthias Ringwald static void hci_emit_transport_packet_sent(void);
147fc64f94aSMatthias Ringwald static void hci_emit_disconnection_complete(hci_con_handle_t con_handle, uint8_t reason);
148b83d5eabSMatthias Ringwald static void hci_emit_nr_connections_changed(void);
149b83d5eabSMatthias Ringwald static void hci_emit_hci_open_failed(void);
150b83d5eabSMatthias Ringwald static void hci_emit_dedicated_bonding_result(bd_addr_t address, uint8_t status);
151b83d5eabSMatthias Ringwald static void hci_emit_event(uint8_t * event, uint16_t size, int dump);
152b83d5eabSMatthias Ringwald static void hci_emit_acl_packet(uint8_t * packet, uint16_t size);
15395d71764SMatthias Ringwald static void hci_run(void);
15495d71764SMatthias Ringwald static int  hci_is_le_connection(hci_connection_t * connection);
15595d71764SMatthias Ringwald static int  hci_number_free_acl_slots_for_connection_type( bd_addr_type_t address_type);
1565d509858SMatthias Ringwald 
157a9a4c409SMatthias Ringwald #ifdef ENABLE_BLE
158e8c8828eSMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
15939677e66SMatthias Ringwald // called from test/ble_client/advertising_data_parser.c
160384b59deSMatthias Ringwald void le_handle_advertisement_report(uint8_t *packet, uint16_t size);
16142ff5ba1SMatthias Ringwald static void hci_remove_from_whitelist(bd_addr_type_t address_type, bd_addr_t address);
1629c77c9dbSMatthias Ringwald static hci_connection_t * gap_get_outgoing_connection(void);
1635d509858SMatthias Ringwald #endif
164d70217a2SMatthias Ringwald #endif
165758b46ceSmatthias.ringwald 
16606b35ec0Smatthias.ringwald // the STACK is here
1673a9fb326S[email protected] #ifndef HAVE_MALLOC
1683a9fb326S[email protected] static hci_stack_t   hci_stack_static;
1693a9fb326S[email protected] #endif
1703a9fb326S[email protected] static hci_stack_t * hci_stack = NULL;
17116833f0aSmatthias.ringwald 
1721c9e5e9dSMatthias Ringwald #ifdef ENABLE_CLASSIC
17363168530SMatthias Ringwald // default name
17463168530SMatthias Ringwald static const char * default_classic_name = "BTstack 00:00:00:00:00:00";
17563168530SMatthias Ringwald 
17666fb9560S[email protected] // test helper
17766fb9560S[email protected] static uint8_t disable_l2cap_timeouts = 0;
1781c9e5e9dSMatthias Ringwald #endif
17966fb9560S[email protected] 
18096a45072S[email protected] /**
18196a45072S[email protected]  * create connection for given address
18296a45072S[email protected]  *
18396a45072S[email protected]  * @return connection OR NULL, if no memory left
18496a45072S[email protected]  */
18596a45072S[email protected] static hci_connection_t * create_connection_for_bd_addr_and_type(bd_addr_t addr, bd_addr_type_t addr_type){
1861a06f663S[email protected]     log_info("create_connection_for_addr %s, type %x", bd_addr_to_str(addr), addr_type);
187bb69aaaeS[email protected]     hci_connection_t * conn = btstack_memory_hci_connection_get();
18896a45072S[email protected]     if (!conn) return NULL;
189058e3d6bSMatthias Ringwald     bd_addr_copy(conn->address, addr);
19096a45072S[email protected]     conn->address_type = addr_type;
19196a45072S[email protected]     conn->con_handle = 0xffff;
19296a45072S[email protected]     conn->authentication_flags = AUTH_FLAGS_NONE;
19396a45072S[email protected]     conn->bonding_flags = 0;
19496a45072S[email protected]     conn->requested_security_level = LEVEL_0;
19552db98b2SMatthias Ringwald #ifdef ENABLE_CLASSIC
19691a977e8SMatthias Ringwald     btstack_run_loop_set_timer_handler(&conn->timeout, hci_connection_timeout_handler);
19791a977e8SMatthias Ringwald     btstack_run_loop_set_timer_context(&conn->timeout, conn);
19896a45072S[email protected]     hci_connection_timestamp(conn);
19952db98b2SMatthias Ringwald #endif
20096a45072S[email protected]     conn->acl_recombination_length = 0;
20196a45072S[email protected]     conn->acl_recombination_pos = 0;
20296a45072S[email protected]     conn->num_acl_packets_sent = 0;
2031a06f663S[email protected]     conn->num_sco_packets_sent = 0;
204da886c03S[email protected]     conn->le_con_parameter_update_state = CON_PARAMETER_UPDATE_NONE;
205b90f6e0aSMatthias Ringwald #ifdef ENABLE_BLE
206b90f6e0aSMatthias Ringwald     conn->le_phy_update_all_phys = 0xff;
207b90f6e0aSMatthias Ringwald #endif
208665d90f2SMatthias Ringwald     btstack_linked_list_add(&hci_stack->connections, (btstack_linked_item_t *) conn);
20996a45072S[email protected]     return conn;
21096a45072S[email protected] }
21166fb9560S[email protected] 
212da886c03S[email protected] 
213da886c03S[email protected] /**
214da886c03S[email protected]  * get le connection parameter range
215da886c03S[email protected] *
216da886c03S[email protected]  * @return le connection parameter range struct
217da886c03S[email protected]  */
2184ced4e8cSMatthias Ringwald void gap_get_connection_parameter_range(le_connection_parameter_range_t * range){
2194ced4e8cSMatthias Ringwald     *range = hci_stack->le_connection_parameter_range;
220da886c03S[email protected] }
221da886c03S[email protected] 
222da886c03S[email protected] /**
223da886c03S[email protected]  * set le connection parameter range
224da886c03S[email protected]  *
225da886c03S[email protected]  */
226da886c03S[email protected] 
2274ced4e8cSMatthias Ringwald void gap_set_connection_parameter_range(le_connection_parameter_range_t *range){
2284ced4e8cSMatthias Ringwald     hci_stack->le_connection_parameter_range = *range;
229da886c03S[email protected] }
230da886c03S[email protected] 
231da886c03S[email protected] /**
23273cd8a2aSMatthias Ringwald  * @brief Test if connection parameters are inside in existing rage
23373cd8a2aSMatthias Ringwald  * @param conn_interval_min (unit: 1.25ms)
23473cd8a2aSMatthias Ringwald  * @param conn_interval_max (unit: 1.25ms)
23573cd8a2aSMatthias Ringwald  * @param conn_latency
23673cd8a2aSMatthias Ringwald  * @param supervision_timeout (unit: 10ms)
23773cd8a2aSMatthias Ringwald  * @returns 1 if included
23873cd8a2aSMatthias Ringwald  */
23973cd8a2aSMatthias Ringwald int gap_connection_parameter_range_included(le_connection_parameter_range_t * existing_range, uint16_t le_conn_interval_min, uint16_t le_conn_interval_max, uint16_t le_conn_latency, uint16_t le_supervision_timeout){
24073cd8a2aSMatthias Ringwald     if (le_conn_interval_min < existing_range->le_conn_interval_min) return 0;
24173cd8a2aSMatthias Ringwald     if (le_conn_interval_max > existing_range->le_conn_interval_max) return 0;
24273cd8a2aSMatthias Ringwald 
24373cd8a2aSMatthias Ringwald     if (le_conn_latency < existing_range->le_conn_latency_min) return 0;
24473cd8a2aSMatthias Ringwald     if (le_conn_latency > existing_range->le_conn_latency_max) return 0;
24573cd8a2aSMatthias Ringwald 
24673cd8a2aSMatthias Ringwald     if (le_supervision_timeout < existing_range->le_supervision_timeout_min) return 0;
24773cd8a2aSMatthias Ringwald     if (le_supervision_timeout > existing_range->le_supervision_timeout_max) return 0;
24873cd8a2aSMatthias Ringwald 
24973cd8a2aSMatthias Ringwald     return 1;
25073cd8a2aSMatthias Ringwald }
25173cd8a2aSMatthias Ringwald 
25273cd8a2aSMatthias Ringwald /**
2532b6ab3e6SMatthias Ringwald  * @brief Set max number of connections in LE Peripheral role (if Bluetooth Controller supports it)
2542b6ab3e6SMatthias Ringwald  * @note: default: 1
2552b6ab3e6SMatthias Ringwald  * @param max_peripheral_connections
2562b6ab3e6SMatthias Ringwald  */
257d4e4907bSMatthias Ringwald #ifdef ENABLE_LE_PERIPHERAL
2582b6ab3e6SMatthias Ringwald void gap_set_max_number_peripheral_connections(int max_peripheral_connections){
2592b6ab3e6SMatthias Ringwald     hci_stack->le_max_number_peripheral_connections = max_peripheral_connections;
2602b6ab3e6SMatthias Ringwald }
261d4e4907bSMatthias Ringwald #endif
2622b6ab3e6SMatthias Ringwald 
2632b6ab3e6SMatthias Ringwald /**
264da886c03S[email protected]  * get hci connections iterator
265da886c03S[email protected]  *
266da886c03S[email protected]  * @return hci connections iterator
267da886c03S[email protected]  */
268da886c03S[email protected] 
269665d90f2SMatthias Ringwald void hci_connections_get_iterator(btstack_linked_list_iterator_t *it){
270665d90f2SMatthias Ringwald     btstack_linked_list_iterator_init(it, &hci_stack->connections);
271da886c03S[email protected] }
272da886c03S[email protected] 
27397addcc5Smatthias.ringwald /**
274ee091cf1Smatthias.ringwald  * get connection for a given handle
275ee091cf1Smatthias.ringwald  *
276ee091cf1Smatthias.ringwald  * @return connection OR NULL, if not found
277ee091cf1Smatthias.ringwald  */
2785061f3afS[email protected] hci_connection_t * hci_connection_for_handle(hci_con_handle_t con_handle){
279665d90f2SMatthias Ringwald     btstack_linked_list_iterator_t it;
280665d90f2SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->connections);
281665d90f2SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
282665d90f2SMatthias Ringwald         hci_connection_t * item = (hci_connection_t *) btstack_linked_list_iterator_next(&it);
2833ac2fe56S[email protected]         if ( item->con_handle == con_handle ) {
284da886c03S[email protected]             return item;
285ee091cf1Smatthias.ringwald         }
286ee091cf1Smatthias.ringwald     }
287ee091cf1Smatthias.ringwald     return NULL;
288ee091cf1Smatthias.ringwald }
289ee091cf1Smatthias.ringwald 
29096a45072S[email protected] /**
29196a45072S[email protected]  * get connection for given address
29296a45072S[email protected]  *
29396a45072S[email protected]  * @return connection OR NULL, if not found
29496a45072S[email protected]  */
2952e77e513S[email protected] hci_connection_t * hci_connection_for_bd_addr_and_type(bd_addr_t  addr, bd_addr_type_t addr_type){
296665d90f2SMatthias Ringwald     btstack_linked_list_iterator_t it;
297665d90f2SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->connections);
298665d90f2SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
299665d90f2SMatthias Ringwald         hci_connection_t * connection = (hci_connection_t *) btstack_linked_list_iterator_next(&it);
30096a45072S[email protected]         if (connection->address_type != addr_type)  continue;
30196a45072S[email protected]         if (memcmp(addr, connection->address, 6) != 0) continue;
30262bda3fbS[email protected]         return connection;
30362bda3fbS[email protected]     }
30462bda3fbS[email protected]     return NULL;
30562bda3fbS[email protected] }
30662bda3fbS[email protected] 
30752db98b2SMatthias Ringwald 
30852db98b2SMatthias Ringwald #ifdef ENABLE_CLASSIC
30952db98b2SMatthias Ringwald 
310ee752bb8SMatthias Ringwald #ifdef ENABLE_SCO_OVER_HCI
311ee752bb8SMatthias Ringwald static int hci_number_sco_connections(void){
312ee752bb8SMatthias Ringwald     int connections = 0;
313ee752bb8SMatthias Ringwald     btstack_linked_list_iterator_t it;
314ee752bb8SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->connections);
315ee752bb8SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
316ee752bb8SMatthias Ringwald         hci_connection_t * connection = (hci_connection_t *) btstack_linked_list_iterator_next(&it);
317ee752bb8SMatthias Ringwald         if (connection->address_type != BD_ADDR_TYPE_SCO) continue;
318ee752bb8SMatthias Ringwald         connections++;
319ee752bb8SMatthias Ringwald     }
320ee752bb8SMatthias Ringwald     return connections;
321ee752bb8SMatthias Ringwald }
322ee752bb8SMatthias Ringwald #endif
323ee752bb8SMatthias Ringwald 
324ec820d77SMatthias Ringwald static void hci_connection_timeout_handler(btstack_timer_source_t *timer){
32591a977e8SMatthias Ringwald     hci_connection_t * connection = (hci_connection_t *) btstack_run_loop_get_timer_context(timer);
326aec7654dSMatthias Ringwald #ifdef HAVE_EMBEDDED_TICK
327528a4a3bSMatthias Ringwald     if (btstack_run_loop_embedded_get_ticks() > connection->timestamp + btstack_run_loop_embedded_ticks_for_ms(HCI_CONNECTION_TIMEOUT_MS)){
328c785ef68Smatthias.ringwald         // connections might be timed out
329c785ef68Smatthias.ringwald         hci_emit_l2cap_check_timeout(connection);
330c785ef68Smatthias.ringwald     }
331f316a845SMatthias Ringwald #else
332528a4a3bSMatthias Ringwald     if (btstack_run_loop_get_time_ms() > connection->timestamp + HCI_CONNECTION_TIMEOUT_MS){
3335f26aadcSMatthias Ringwald         // connections might be timed out
3345f26aadcSMatthias Ringwald         hci_emit_l2cap_check_timeout(connection);
3355f26aadcSMatthias Ringwald     }
3365f26aadcSMatthias Ringwald #endif
337c785ef68Smatthias.ringwald }
338ee091cf1Smatthias.ringwald 
339ee091cf1Smatthias.ringwald static void hci_connection_timestamp(hci_connection_t *connection){
340aec7654dSMatthias Ringwald #ifdef HAVE_EMBEDDED_TICK
341528a4a3bSMatthias Ringwald     connection->timestamp = btstack_run_loop_embedded_get_ticks();
342f316a845SMatthias Ringwald #else
343528a4a3bSMatthias Ringwald     connection->timestamp = btstack_run_loop_get_time_ms();
3445f26aadcSMatthias Ringwald #endif
345ee091cf1Smatthias.ringwald }
346ee091cf1Smatthias.ringwald 
34728ca2b46S[email protected] inline static void connectionSetAuthenticationFlags(hci_connection_t * conn, hci_authentication_flags_t flags){
34828ca2b46S[email protected]     conn->authentication_flags = (hci_authentication_flags_t)(conn->authentication_flags | flags);
34928ca2b46S[email protected] }
35028ca2b46S[email protected] 
35135454696SMatthias Ringwald 
35228ca2b46S[email protected] inline static void connectionClearAuthenticationFlags(hci_connection_t * conn, hci_authentication_flags_t flags){
35328ca2b46S[email protected]     conn->authentication_flags = (hci_authentication_flags_t)(conn->authentication_flags & ~flags);
35428ca2b46S[email protected] }
35528ca2b46S[email protected] 
35643bfb1bdSmatthias.ringwald /**
35780ca58a0Smatthias.ringwald  * add authentication flags and reset timer
35896a45072S[email protected]  * @note: assumes classic connection
3592e77e513S[email protected]  * @note: bd_addr is passed in as litle endian uint8_t * as it is called from parsing packets
3607fde4af9Smatthias.ringwald  */
3617fde4af9Smatthias.ringwald static void hci_add_connection_flags_for_flipped_bd_addr(uint8_t *bd_addr, hci_authentication_flags_t flags){
3627fde4af9Smatthias.ringwald     bd_addr_t addr;
363724d70a2SMatthias Ringwald     reverse_bd_addr(bd_addr, addr);
3642e77e513S[email protected]     hci_connection_t * conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_CLASSIC);
3657fde4af9Smatthias.ringwald     if (conn) {
36628ca2b46S[email protected]         connectionSetAuthenticationFlags(conn, flags);
36780ca58a0Smatthias.ringwald         hci_connection_timestamp(conn);
3687fde4af9Smatthias.ringwald     }
3697fde4af9Smatthias.ringwald }
3707fde4af9Smatthias.ringwald 
37180ca58a0Smatthias.ringwald int  hci_authentication_active_for_handle(hci_con_handle_t handle){
3725061f3afS[email protected]     hci_connection_t * conn = hci_connection_for_handle(handle);
37380ca58a0Smatthias.ringwald     if (!conn) return 0;
3746724cd9eS[email protected]     if (conn->authentication_flags & LEGACY_PAIRING_ACTIVE) return 1;
3756724cd9eS[email protected]     if (conn->authentication_flags & SSP_PAIRING_ACTIVE) return 1;
3766724cd9eS[email protected]     return 0;
37780ca58a0Smatthias.ringwald }
37880ca58a0Smatthias.ringwald 
37915a95bd5SMatthias Ringwald void gap_drop_link_key_for_bd_addr(bd_addr_t addr){
38055597469SMatthias Ringwald     if (!hci_stack->link_key_db) return;
3812bacf595SMatthias Ringwald     log_info("gap_drop_link_key_for_bd_addr: %s", bd_addr_to_str(addr));
382a98592bcSMatthias Ringwald     hci_stack->link_key_db->delete_link_key(addr);
383c12e46e7Smatthias.ringwald }
38455597469SMatthias Ringwald 
38555597469SMatthias Ringwald void gap_store_link_key_for_bd_addr(bd_addr_t addr, link_key_t link_key, link_key_type_t type){
38655597469SMatthias Ringwald     if (!hci_stack->link_key_db) return;
3872bacf595SMatthias Ringwald     log_info("gap_store_link_key_for_bd_addr: %s, type %u", bd_addr_to_str(addr), type);
38855597469SMatthias Ringwald     hci_stack->link_key_db->put_link_key(addr, link_key, type);
389c12e46e7Smatthias.ringwald }
3901b6fb31bSMatthias Ringwald 
391ceecb9d9SMatthias Ringwald void gap_delete_all_link_keys(void){
392ceecb9d9SMatthias Ringwald     bd_addr_t  addr;
393ceecb9d9SMatthias Ringwald     link_key_t link_key;
394ceecb9d9SMatthias Ringwald     link_key_type_t type;
395ceecb9d9SMatthias Ringwald     btstack_link_key_iterator_t it;
396ceecb9d9SMatthias Ringwald     int ok = gap_link_key_iterator_init(&it);
397ceecb9d9SMatthias Ringwald     if (!ok) {
398ceecb9d9SMatthias Ringwald         log_error("could not initialize iterator");
399ceecb9d9SMatthias Ringwald         return;
400ceecb9d9SMatthias Ringwald     }
401ceecb9d9SMatthias Ringwald     while (gap_link_key_iterator_get_next(&it, addr, link_key, &type)){
402ceecb9d9SMatthias Ringwald         gap_drop_link_key_for_bd_addr(addr);
403ceecb9d9SMatthias Ringwald     }
404ceecb9d9SMatthias Ringwald     gap_link_key_iterator_done(&it);
405ceecb9d9SMatthias Ringwald }
406ceecb9d9SMatthias Ringwald 
4071b6fb31bSMatthias Ringwald int gap_link_key_iterator_init(btstack_link_key_iterator_t * it){
4081b6fb31bSMatthias Ringwald     if (!hci_stack->link_key_db) return 0;
4091b6fb31bSMatthias Ringwald     if (!hci_stack->link_key_db->iterator_init) return 0;
4101b6fb31bSMatthias Ringwald     return hci_stack->link_key_db->iterator_init(it);
4111b6fb31bSMatthias Ringwald }
4121b6fb31bSMatthias Ringwald int gap_link_key_iterator_get_next(btstack_link_key_iterator_t * it, bd_addr_t bd_addr, link_key_t link_key, link_key_type_t * type){
4131b6fb31bSMatthias Ringwald     if (!hci_stack->link_key_db) return 0;
4141b6fb31bSMatthias Ringwald     return hci_stack->link_key_db->iterator_get_next(it, bd_addr, link_key, type);
4151b6fb31bSMatthias Ringwald }
4161b6fb31bSMatthias Ringwald void gap_link_key_iterator_done(btstack_link_key_iterator_t * it){
4171b6fb31bSMatthias Ringwald     if (!hci_stack->link_key_db) return;
4181b6fb31bSMatthias Ringwald     hci_stack->link_key_db->iterator_done(it);
4191b6fb31bSMatthias Ringwald }
42035454696SMatthias Ringwald #endif
421c12e46e7Smatthias.ringwald 
42295d71764SMatthias Ringwald static int hci_is_le_connection(hci_connection_t * connection){
4230bf6344aS[email protected]     return  connection->address_type == BD_ADDR_TYPE_LE_PUBLIC ||
4240bf6344aS[email protected]     connection->address_type == BD_ADDR_TYPE_LE_RANDOM;
4250bf6344aS[email protected] }
4260bf6344aS[email protected] 
4277fde4af9Smatthias.ringwald /**
42843bfb1bdSmatthias.ringwald  * count connections
42943bfb1bdSmatthias.ringwald  */
43040d1c7a4Smatthias.ringwald static int nr_hci_connections(void){
43156c253c9Smatthias.ringwald     int count = 0;
432665d90f2SMatthias Ringwald     btstack_linked_item_t *it;
433665d90f2SMatthias Ringwald     for (it = (btstack_linked_item_t *) hci_stack->connections; it ; it = it->next, count++);
43443bfb1bdSmatthias.ringwald     return count;
43543bfb1bdSmatthias.ringwald }
436c8e4258aSmatthias.ringwald 
43795d71764SMatthias Ringwald static int hci_number_free_acl_slots_for_connection_type(bd_addr_type_t address_type){
438ee303eddS[email protected] 
439f04a0c31SMatthias Ringwald     unsigned int num_packets_sent_classic = 0;
440f04a0c31SMatthias Ringwald     unsigned int num_packets_sent_le = 0;
441ee303eddS[email protected] 
442665d90f2SMatthias Ringwald     btstack_linked_item_t *it;
443665d90f2SMatthias Ringwald     for (it = (btstack_linked_item_t *) hci_stack->connections; it ; it = it->next){
444998906cdSmatthias.ringwald         hci_connection_t * connection = (hci_connection_t *) it;
445ee303eddS[email protected]         if (connection->address_type == BD_ADDR_TYPE_CLASSIC){
446ee303eddS[email protected]             num_packets_sent_classic += connection->num_acl_packets_sent;
447ee303eddS[email protected]         } else {
448ee303eddS[email protected]             num_packets_sent_le += connection->num_acl_packets_sent;
449ee303eddS[email protected]         }
450ee303eddS[email protected]     }
451d999b54eSMatthias Ringwald     log_debug("ACL classic buffers: %u used of %u", num_packets_sent_classic, hci_stack->acl_packets_total_num);
452ee303eddS[email protected]     int free_slots_classic = hci_stack->acl_packets_total_num - num_packets_sent_classic;
453ee303eddS[email protected]     int free_slots_le = 0;
454ee303eddS[email protected] 
455ee303eddS[email protected]     if (free_slots_classic < 0){
4569da54300S[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);
457998906cdSmatthias.ringwald         return 0;
458998906cdSmatthias.ringwald     }
459ee303eddS[email protected] 
460ee303eddS[email protected]     if (hci_stack->le_acl_packets_total_num){
461ee303eddS[email protected]         // if we have LE slots, they are used
462ee303eddS[email protected]         free_slots_le = hci_stack->le_acl_packets_total_num - num_packets_sent_le;
463ee303eddS[email protected]         if (free_slots_le < 0){
4649da54300S[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);
465ee303eddS[email protected]             return 0;
466998906cdSmatthias.ringwald         }
467ee303eddS[email protected]     } else {
468ee303eddS[email protected]         // otherwise, classic slots are used for LE, too
469ee303eddS[email protected]         free_slots_classic -= num_packets_sent_le;
470ee303eddS[email protected]         if (free_slots_classic < 0){
4719da54300S[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);
472ee303eddS[email protected]             return 0;
473ee303eddS[email protected]         }
474ee303eddS[email protected]     }
475ee303eddS[email protected] 
476ee303eddS[email protected]     switch (address_type){
477ee303eddS[email protected]         case BD_ADDR_TYPE_UNKNOWN:
4782125de09SMatthias Ringwald             log_error("hci_number_free_acl_slots: unknown address type");
479ee303eddS[email protected]             return 0;
480ee303eddS[email protected] 
481ee303eddS[email protected]         case BD_ADDR_TYPE_CLASSIC:
482ee303eddS[email protected]             return free_slots_classic;
483ee303eddS[email protected] 
484ee303eddS[email protected]         default:
485cb00d3aaS[email protected]            if (hci_stack->le_acl_packets_total_num){
486ee303eddS[email protected]                return free_slots_le;
487ee303eddS[email protected]            }
488cb00d3aaS[email protected]            return free_slots_classic;
489cb00d3aaS[email protected]     }
490998906cdSmatthias.ringwald }
491998906cdSmatthias.ringwald 
4922125de09SMatthias Ringwald int hci_number_free_acl_slots_for_handle(hci_con_handle_t con_handle){
4932125de09SMatthias Ringwald     // get connection type
4942125de09SMatthias Ringwald     hci_connection_t * connection = hci_connection_for_handle(con_handle);
4952125de09SMatthias Ringwald     if (!connection){
4962125de09SMatthias Ringwald         log_error("hci_number_free_acl_slots: handle 0x%04x not in connection list", con_handle);
4972125de09SMatthias Ringwald         return 0;
4982125de09SMatthias Ringwald     }
4992125de09SMatthias Ringwald     return hci_number_free_acl_slots_for_connection_type(connection->address_type);
5002125de09SMatthias Ringwald }
5012125de09SMatthias Ringwald 
50235454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
503701e3307SMatthias Ringwald static int hci_number_free_sco_slots(void){
504f04a0c31SMatthias Ringwald     unsigned int num_sco_packets_sent  = 0;
505665d90f2SMatthias Ringwald     btstack_linked_item_t *it;
506665d90f2SMatthias Ringwald     for (it = (btstack_linked_item_t *) hci_stack->connections; it ; it = it->next){
507e35edcc1S[email protected]         hci_connection_t * connection = (hci_connection_t *) it;
508e35edcc1S[email protected]         num_sco_packets_sent += connection->num_sco_packets_sent;
509e35edcc1S[email protected]     }
510e35edcc1S[email protected]     if (num_sco_packets_sent > hci_stack->sco_packets_total_num){
511701e3307SMatthias Ringwald         log_info("hci_number_free_sco_slots:packets (%u) > total packets (%u)", num_sco_packets_sent, hci_stack->sco_packets_total_num);
51244d0e3d5S[email protected]         return 0;
51344d0e3d5S[email protected]     }
514701e3307SMatthias Ringwald     // log_info("hci_number_free_sco_slots u", handle, num_sco_packets_sent);
515e35edcc1S[email protected]     return hci_stack->sco_packets_total_num - num_sco_packets_sent;
516e35edcc1S[email protected] }
51735454696SMatthias Ringwald #endif
51844d0e3d5S[email protected] 
5192b838201SMatthias Ringwald // only used to send HCI Host Number Completed Packets
5202b838201SMatthias Ringwald static int hci_can_send_comand_packet_transport(void){
521ac928cc2S[email protected]     if (hci_stack->hci_packet_buffer_reserved) return 0;
522ac928cc2S[email protected] 
523ac928cc2S[email protected]     // check for async hci transport implementations
524ac928cc2S[email protected]     if (hci_stack->hci_transport->can_send_packet_now){
525ac928cc2S[email protected]         if (!hci_stack->hci_transport->can_send_packet_now(HCI_COMMAND_DATA_PACKET)){
526ac928cc2S[email protected]             return 0;
527ac928cc2S[email protected]         }
528ac928cc2S[email protected]     }
5292b838201SMatthias Ringwald     return 1;
5302b838201SMatthias Ringwald }
531ac928cc2S[email protected] 
5322b838201SMatthias Ringwald // new functions replacing hci_can_send_packet_now[_using_packet_buffer]
5332b838201SMatthias Ringwald int hci_can_send_command_packet_now(void){
5342b838201SMatthias Ringwald     if (hci_can_send_comand_packet_transport() == 0) return 0;
535ac928cc2S[email protected]     return hci_stack->num_cmd_packets > 0;
536ac928cc2S[email protected] }
537ac928cc2S[email protected] 
5389d04d3a7SMatthias Ringwald static int hci_transport_can_send_prepared_packet_now(uint8_t packet_type){
539ac928cc2S[email protected]     // check for async hci transport implementations
5409d04d3a7SMatthias Ringwald     if (!hci_stack->hci_transport->can_send_packet_now) return 1;
5419d04d3a7SMatthias Ringwald     return hci_stack->hci_transport->can_send_packet_now(packet_type);
542ac928cc2S[email protected] }
5439d04d3a7SMatthias Ringwald 
5449d04d3a7SMatthias Ringwald static int hci_can_send_prepared_acl_packet_for_address_type(bd_addr_type_t address_type){
5459d04d3a7SMatthias Ringwald     if (!hci_transport_can_send_prepared_packet_now(HCI_ACL_DATA_PACKET)) return 0;
5469d04d3a7SMatthias Ringwald     return hci_number_free_acl_slots_for_connection_type(address_type) > 0;
547ac928cc2S[email protected] }
5489d04d3a7SMatthias Ringwald 
5499d04d3a7SMatthias Ringwald int hci_can_send_acl_le_packet_now(void){
5509d04d3a7SMatthias Ringwald     if (hci_stack->hci_packet_buffer_reserved) return 0;
5519d04d3a7SMatthias Ringwald     return hci_can_send_prepared_acl_packet_for_address_type(BD_ADDR_TYPE_LE_PUBLIC);
5529d04d3a7SMatthias Ringwald }
5539d04d3a7SMatthias Ringwald 
5549d04d3a7SMatthias Ringwald int hci_can_send_prepared_acl_packet_now(hci_con_handle_t con_handle) {
5559d04d3a7SMatthias Ringwald     if (!hci_transport_can_send_prepared_packet_now(HCI_ACL_DATA_PACKET)) return 0;
556e79abdd6S[email protected]     return hci_number_free_acl_slots_for_handle(con_handle) > 0;
557ac928cc2S[email protected] }
558ac928cc2S[email protected] 
559ac928cc2S[email protected] int hci_can_send_acl_packet_now(hci_con_handle_t con_handle){
560ac928cc2S[email protected]     if (hci_stack->hci_packet_buffer_reserved) return 0;
561ac928cc2S[email protected]     return hci_can_send_prepared_acl_packet_now(con_handle);
5626b4af23dS[email protected] }
5636b4af23dS[email protected] 
56435454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
56535454696SMatthias Ringwald int hci_can_send_acl_classic_packet_now(void){
56635454696SMatthias Ringwald     if (hci_stack->hci_packet_buffer_reserved) return 0;
56735454696SMatthias Ringwald     return hci_can_send_prepared_acl_packet_for_address_type(BD_ADDR_TYPE_CLASSIC);
56835454696SMatthias Ringwald }
56935454696SMatthias Ringwald 
570701e3307SMatthias Ringwald int hci_can_send_prepared_sco_packet_now(void){
571d057580eSMatthias Ringwald     if (!hci_transport_can_send_prepared_packet_now(HCI_SCO_DATA_PACKET)) return 0;
572ed361f5fSMatthias Ringwald     if (!hci_stack->synchronous_flow_control_enabled) return 1;
573701e3307SMatthias Ringwald     return hci_number_free_sco_slots() > 0;
57444d0e3d5S[email protected] }
57544d0e3d5S[email protected] 
576701e3307SMatthias Ringwald int hci_can_send_sco_packet_now(void){
577d057580eSMatthias Ringwald     if (hci_stack->hci_packet_buffer_reserved) return 0;
578701e3307SMatthias Ringwald     return hci_can_send_prepared_sco_packet_now();
57944d0e3d5S[email protected] }
58044d0e3d5S[email protected] 
581d057580eSMatthias Ringwald void hci_request_sco_can_send_now_event(void){
582d057580eSMatthias Ringwald     hci_stack->sco_waiting_for_can_send_now = 1;
583d057580eSMatthias Ringwald     hci_notify_if_sco_can_send_now();
584d057580eSMatthias Ringwald }
58535454696SMatthias Ringwald #endif
586d057580eSMatthias Ringwald 
58795d71764SMatthias Ringwald // used for internal checks in l2cap.c
588c8b9416aS[email protected] int hci_is_packet_buffer_reserved(void){
589c8b9416aS[email protected]     return hci_stack->hci_packet_buffer_reserved;
590c8b9416aS[email protected] }
591c8b9416aS[email protected] 
5926b4af23dS[email protected] // reserves outgoing packet buffer. @returns 1 if successful
5936b4af23dS[email protected] int hci_reserve_packet_buffer(void){
5949d14b626S[email protected]     if (hci_stack->hci_packet_buffer_reserved) {
5959d14b626S[email protected]         log_error("hci_reserve_packet_buffer called but buffer already reserved");
5969d14b626S[email protected]         return 0;
5979d14b626S[email protected]     }
5986b4af23dS[email protected]     hci_stack->hci_packet_buffer_reserved = 1;
5996b4af23dS[email protected]     return 1;
6006b4af23dS[email protected] }
6016b4af23dS[email protected] 
60268a0fcf7S[email protected] void hci_release_packet_buffer(void){
60368a0fcf7S[email protected]     hci_stack->hci_packet_buffer_reserved = 0;
60468a0fcf7S[email protected] }
60568a0fcf7S[email protected] 
6066b4af23dS[email protected] // assumption: synchronous implementations don't provide can_send_packet_now as they don't keep the buffer after the call
6077f02f414SMatthias Ringwald static int hci_transport_synchronous(void){
6086b4af23dS[email protected]     return hci_stack->hci_transport->can_send_packet_now == NULL;
6096b4af23dS[email protected] }
6106b4af23dS[email protected] 
611452cf3bbS[email protected] static int hci_send_acl_packet_fragments(hci_connection_t *connection){
612452cf3bbS[email protected] 
613452cf3bbS[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);
614452cf3bbS[email protected] 
615452cf3bbS[email protected]     // max ACL data packet length depends on connection type (LE vs. Classic) and available buffers
616452cf3bbS[email protected]     uint16_t max_acl_data_packet_length = hci_stack->acl_data_packet_length;
617452cf3bbS[email protected]     if (hci_is_le_connection(connection) && hci_stack->le_data_packets_length > 0){
618452cf3bbS[email protected]         max_acl_data_packet_length = hci_stack->le_data_packets_length;
619452cf3bbS[email protected]     }
620452cf3bbS[email protected] 
621452cf3bbS[email protected]     // testing: reduce buffer to minimum
622452cf3bbS[email protected]     // max_acl_data_packet_length = 52;
623452cf3bbS[email protected] 
624d999b54eSMatthias Ringwald     log_debug("hci_send_acl_packet_fragments entered");
625d999b54eSMatthias Ringwald 
626452cf3bbS[email protected]     int err;
627452cf3bbS[email protected]     // multiple packets could be send on a synchronous HCI transport
628452cf3bbS[email protected]     while (1){
629452cf3bbS[email protected] 
630d999b54eSMatthias Ringwald         log_debug("hci_send_acl_packet_fragments loop entered");
631d999b54eSMatthias Ringwald 
632452cf3bbS[email protected]         // get current data
633452cf3bbS[email protected]         const uint16_t acl_header_pos = hci_stack->acl_fragmentation_pos - 4;
634452cf3bbS[email protected]         int current_acl_data_packet_length = hci_stack->acl_fragmentation_total_size - hci_stack->acl_fragmentation_pos;
635452cf3bbS[email protected]         int more_fragments = 0;
636452cf3bbS[email protected] 
637452cf3bbS[email protected]         // if ACL packet is larger than Bluetooth packet buffer, only send max_acl_data_packet_length
638452cf3bbS[email protected]         if (current_acl_data_packet_length > max_acl_data_packet_length){
639452cf3bbS[email protected]             more_fragments = 1;
640452cf3bbS[email protected]             current_acl_data_packet_length = max_acl_data_packet_length;
641452cf3bbS[email protected]         }
642452cf3bbS[email protected] 
643452cf3bbS[email protected]         // copy handle_and_flags if not first fragment and update packet boundary flags to be 01 (continuing fragmnent)
644452cf3bbS[email protected]         if (acl_header_pos > 0){
645f8fbdce0SMatthias Ringwald             uint16_t handle_and_flags = little_endian_read_16(hci_stack->hci_packet_buffer, 0);
646452cf3bbS[email protected]             handle_and_flags = (handle_and_flags & 0xcfff) | (1 << 12);
647f8fbdce0SMatthias Ringwald             little_endian_store_16(hci_stack->hci_packet_buffer, acl_header_pos, handle_and_flags);
648452cf3bbS[email protected]         }
649452cf3bbS[email protected] 
650452cf3bbS[email protected]         // update header len
651f8fbdce0SMatthias Ringwald         little_endian_store_16(hci_stack->hci_packet_buffer, acl_header_pos + 2, current_acl_data_packet_length);
652452cf3bbS[email protected] 
653452cf3bbS[email protected]         // count packet
654452cf3bbS[email protected]         connection->num_acl_packets_sent++;
655f04a0c31SMatthias Ringwald         log_debug("hci_send_acl_packet_fragments loop before send (more fragments %d)", more_fragments);
656d999b54eSMatthias Ringwald 
657d999b54eSMatthias Ringwald         // update state for next fragment (if any) as "transport done" might be sent during send_packet already
658d999b54eSMatthias Ringwald         if (more_fragments){
659d999b54eSMatthias Ringwald             // update start of next fragment to send
660d999b54eSMatthias Ringwald             hci_stack->acl_fragmentation_pos += current_acl_data_packet_length;
661d999b54eSMatthias Ringwald         } else {
662d999b54eSMatthias Ringwald             // done
663d999b54eSMatthias Ringwald             hci_stack->acl_fragmentation_pos = 0;
664d999b54eSMatthias Ringwald             hci_stack->acl_fragmentation_total_size = 0;
665d999b54eSMatthias Ringwald         }
666452cf3bbS[email protected] 
667452cf3bbS[email protected]         // send packet
668452cf3bbS[email protected]         uint8_t * packet = &hci_stack->hci_packet_buffer[acl_header_pos];
669452cf3bbS[email protected]         const int size = current_acl_data_packet_length + 4;
6705bb5bc3eS[email protected]         hci_dump_packet(HCI_ACL_DATA_PACKET, 0, packet, size);
671452cf3bbS[email protected]         err = hci_stack->hci_transport->send_packet(HCI_ACL_DATA_PACKET, packet, size);
672452cf3bbS[email protected] 
673f04a0c31SMatthias Ringwald         log_debug("hci_send_acl_packet_fragments loop after send (more fragments %d)", more_fragments);
674d999b54eSMatthias Ringwald 
675452cf3bbS[email protected]         // done yet?
676452cf3bbS[email protected]         if (!more_fragments) break;
677452cf3bbS[email protected] 
678452cf3bbS[email protected]         // can send more?
679452cf3bbS[email protected]         if (!hci_can_send_prepared_acl_packet_now(connection->con_handle)) return err;
680452cf3bbS[email protected]     }
681452cf3bbS[email protected] 
682d999b54eSMatthias Ringwald     log_debug("hci_send_acl_packet_fragments loop over");
683452cf3bbS[email protected] 
684d051460cS[email protected]     // release buffer now for synchronous transport
685203bace6S[email protected]     if (hci_transport_synchronous()){
686452cf3bbS[email protected]         hci_release_packet_buffer();
687fd43c0e0SMatthias Ringwald         hci_emit_transport_packet_sent();
688452cf3bbS[email protected]     }
689452cf3bbS[email protected] 
690452cf3bbS[email protected]     return err;
691452cf3bbS[email protected] }
692452cf3bbS[email protected] 
693826f7347S[email protected] // pre: caller has reserved the packet buffer
694826f7347S[email protected] int hci_send_acl_packet_buffer(int size){
6957856c818Smatthias.ringwald 
696452cf3bbS[email protected]     // log_info("hci_send_acl_packet_buffer size %u", size);
697452cf3bbS[email protected] 
698826f7347S[email protected]     if (!hci_stack->hci_packet_buffer_reserved) {
699826f7347S[email protected]         log_error("hci_send_acl_packet_buffer called without reserving packet buffer");
700826f7347S[email protected]         return 0;
701826f7347S[email protected]     }
702826f7347S[email protected] 
703d713a683S[email protected]     uint8_t * packet = hci_stack->hci_packet_buffer;
704d713a683S[email protected]     hci_con_handle_t con_handle = READ_ACL_CONNECTION_HANDLE(packet);
705d713a683S[email protected] 
706826f7347S[email protected]     // check for free places on Bluetooth module
707d713a683S[email protected]     if (!hci_can_send_prepared_acl_packet_now(con_handle)) {
708826f7347S[email protected]         log_error("hci_send_acl_packet_buffer called but no free ACL buffers on controller");
70997b61c7bS[email protected]         hci_release_packet_buffer();
710068b8592SMatthias Ringwald         hci_emit_transport_packet_sent();
71197b61c7bS[email protected]         return BTSTACK_ACL_BUFFERS_FULL;
71297b61c7bS[email protected]     }
7136218e6f1Smatthias.ringwald 
7145061f3afS[email protected]     hci_connection_t *connection = hci_connection_for_handle( con_handle);
71597b61c7bS[email protected]     if (!connection) {
7165fa0b7cfS[email protected]         log_error("hci_send_acl_packet_buffer called but no connection for handle 0x%04x", con_handle);
71797b61c7bS[email protected]         hci_release_packet_buffer();
718068b8592SMatthias Ringwald         hci_emit_transport_packet_sent();
71997b61c7bS[email protected]         return 0;
72097b61c7bS[email protected]     }
72152db98b2SMatthias Ringwald 
72252db98b2SMatthias Ringwald #ifdef ENABLE_CLASSIC
72356cf178bSmatthias.ringwald     hci_connection_timestamp(connection);
72452db98b2SMatthias Ringwald #endif
72556cf178bSmatthias.ringwald 
726452cf3bbS[email protected]     // hci_dump_packet( HCI_ACL_DATA_PACKET, 0, packet, size);
7277856c818Smatthias.ringwald 
728452cf3bbS[email protected]     // setup data
729452cf3bbS[email protected]     hci_stack->acl_fragmentation_total_size = size;
730452cf3bbS[email protected]     hci_stack->acl_fragmentation_pos = 4;   // start of L2CAP packet
7316218e6f1Smatthias.ringwald 
732452cf3bbS[email protected]     return hci_send_acl_packet_fragments(connection);
733ee091cf1Smatthias.ringwald }
734ee091cf1Smatthias.ringwald 
73535454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
73644d0e3d5S[email protected] // pre: caller has reserved the packet buffer
73744d0e3d5S[email protected] int hci_send_sco_packet_buffer(int size){
73844d0e3d5S[email protected] 
73944d0e3d5S[email protected]     // log_info("hci_send_acl_packet_buffer size %u", size);
74044d0e3d5S[email protected] 
74144d0e3d5S[email protected]     if (!hci_stack->hci_packet_buffer_reserved) {
74244d0e3d5S[email protected]         log_error("hci_send_acl_packet_buffer called without reserving packet buffer");
74344d0e3d5S[email protected]         return 0;
74444d0e3d5S[email protected]     }
74544d0e3d5S[email protected] 
74644d0e3d5S[email protected]     uint8_t * packet = hci_stack->hci_packet_buffer;
7474b3e1e19SMatthias Ringwald 
7484b3e1e19SMatthias Ringwald     // skip checks in loopback mode
7494b3e1e19SMatthias Ringwald     if (!hci_stack->loopback_mode){
75044d0e3d5S[email protected]         hci_con_handle_t con_handle = READ_ACL_CONNECTION_HANDLE(packet);   // same for ACL and SCO
75144d0e3d5S[email protected] 
75244d0e3d5S[email protected]         // check for free places on Bluetooth module
753701e3307SMatthias Ringwald         if (!hci_can_send_prepared_sco_packet_now()) {
75444d0e3d5S[email protected]             log_error("hci_send_sco_packet_buffer called but no free ACL buffers on controller");
75544d0e3d5S[email protected]             hci_release_packet_buffer();
756068b8592SMatthias Ringwald             hci_emit_transport_packet_sent();
75744d0e3d5S[email protected]             return BTSTACK_ACL_BUFFERS_FULL;
75844d0e3d5S[email protected]         }
75944d0e3d5S[email protected] 
760e35edcc1S[email protected]         // track send packet in connection struct
761e35edcc1S[email protected]         hci_connection_t *connection = hci_connection_for_handle( con_handle);
762e35edcc1S[email protected]         if (!connection) {
763e35edcc1S[email protected]             log_error("hci_send_sco_packet_buffer called but no connection for handle 0x%04x", con_handle);
764e35edcc1S[email protected]             hci_release_packet_buffer();
765068b8592SMatthias Ringwald             hci_emit_transport_packet_sent();
766e35edcc1S[email protected]             return 0;
767e35edcc1S[email protected]         }
768e35edcc1S[email protected]         connection->num_sco_packets_sent++;
7694b3e1e19SMatthias Ringwald     }
77044d0e3d5S[email protected] 
77144d0e3d5S[email protected]     hci_dump_packet( HCI_SCO_DATA_PACKET, 0, packet, size);
772543e835cSMatthias Ringwald     int err = hci_stack->hci_transport->send_packet(HCI_SCO_DATA_PACKET, packet, size);
773543e835cSMatthias Ringwald 
774543e835cSMatthias Ringwald     if (hci_transport_synchronous()){
775543e835cSMatthias Ringwald         hci_release_packet_buffer();
776fd43c0e0SMatthias Ringwald         hci_emit_transport_packet_sent();
777543e835cSMatthias Ringwald     }
778543e835cSMatthias Ringwald 
779543e835cSMatthias Ringwald     return err;
78044d0e3d5S[email protected] }
78135454696SMatthias Ringwald #endif
78244d0e3d5S[email protected] 
78316833f0aSmatthias.ringwald static void acl_handler(uint8_t *packet, int size){
7847856c818Smatthias.ringwald 
785e76a89eeS[email protected]     // log_info("acl_handler: size %u", size);
786e76a89eeS[email protected] 
7877856c818Smatthias.ringwald     // get info
7887856c818Smatthias.ringwald     hci_con_handle_t con_handle = READ_ACL_CONNECTION_HANDLE(packet);
7895061f3afS[email protected]     hci_connection_t *conn      = hci_connection_for_handle(con_handle);
7907856c818Smatthias.ringwald     uint8_t  acl_flags          = READ_ACL_FLAGS(packet);
7917856c818Smatthias.ringwald     uint16_t acl_length         = READ_ACL_LENGTH(packet);
7927856c818Smatthias.ringwald 
7937856c818Smatthias.ringwald     // ignore non-registered handle
7947856c818Smatthias.ringwald     if (!conn){
7959da54300S[email protected]         log_error( "hci.c: acl_handler called with non-registered handle %u!" , con_handle);
7967856c818Smatthias.ringwald         return;
7977856c818Smatthias.ringwald     }
7987856c818Smatthias.ringwald 
799e76a89eeS[email protected]     // assert packet is complete
8009ecc3e17S[email protected]     if (acl_length + 4 != size){
801f04a0c31SMatthias Ringwald         log_error("hci.c: acl_handler called with ACL packet of wrong size %d, expected %u => dropping packet", size, acl_length + 4);
802e76a89eeS[email protected]         return;
803e76a89eeS[email protected]     }
804e76a89eeS[email protected] 
80552db98b2SMatthias Ringwald #ifdef ENABLE_CLASSIC
8067856c818Smatthias.ringwald     // update idle timestamp
8077856c818Smatthias.ringwald     hci_connection_timestamp(conn);
80852db98b2SMatthias Ringwald #endif
8097856c818Smatthias.ringwald 
8102b838201SMatthias Ringwald #ifdef ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL
8112b838201SMatthias Ringwald     hci_stack->host_completed_packets = 1;
8122b838201SMatthias Ringwald     conn->num_packets_completed++;
8132b838201SMatthias Ringwald #endif
8142b838201SMatthias Ringwald 
8157856c818Smatthias.ringwald     // handle different packet types
8167856c818Smatthias.ringwald     switch (acl_flags & 0x03) {
8177856c818Smatthias.ringwald 
8187856c818Smatthias.ringwald         case 0x01: // continuation fragment
8197856c818Smatthias.ringwald 
8200ca847afS[email protected]             // sanity checks
8217856c818Smatthias.ringwald             if (conn->acl_recombination_pos == 0) {
8229da54300S[email protected]                 log_error( "ACL Cont Fragment but no first fragment for handle 0x%02x", con_handle);
8237856c818Smatthias.ringwald                 return;
8247856c818Smatthias.ringwald             }
8250ca847afS[email protected]             if (conn->acl_recombination_pos + acl_length > 4 + HCI_ACL_BUFFER_SIZE){
8260ca847afS[email protected]                 log_error( "ACL Cont Fragment to large: combined packet %u > buffer size %u for handle 0x%02x",
8270ca847afS[email protected]                     conn->acl_recombination_pos + acl_length, 4 + HCI_ACL_BUFFER_SIZE, con_handle);
8280ca847afS[email protected]                 conn->acl_recombination_pos = 0;
8290ca847afS[email protected]                 return;
8300ca847afS[email protected]             }
8317856c818Smatthias.ringwald 
8327856c818Smatthias.ringwald             // append fragment payload (header already stored)
833ec6321eeS[email protected]             memcpy(&conn->acl_recombination_buffer[HCI_INCOMING_PRE_BUFFER_SIZE + conn->acl_recombination_pos], &packet[4], acl_length );
8347856c818Smatthias.ringwald             conn->acl_recombination_pos += acl_length;
8357856c818Smatthias.ringwald 
8369da54300S[email protected]             // log_error( "ACL Cont Fragment: acl_len %u, combined_len %u, l2cap_len %u", acl_length,
837decc01a8Smatthias.ringwald             //        conn->acl_recombination_pos, conn->acl_recombination_length);
8387856c818Smatthias.ringwald 
8397856c818Smatthias.ringwald             // forward complete L2CAP packet if complete.
8407856c818Smatthias.ringwald             if (conn->acl_recombination_pos >= conn->acl_recombination_length + 4 + 4){ // pos already incl. ACL header
841d6b06661SMatthias Ringwald                 hci_emit_acl_packet(&conn->acl_recombination_buffer[HCI_INCOMING_PRE_BUFFER_SIZE], conn->acl_recombination_pos);
8427856c818Smatthias.ringwald                 // reset recombination buffer
8437856c818Smatthias.ringwald                 conn->acl_recombination_length = 0;
8447856c818Smatthias.ringwald                 conn->acl_recombination_pos = 0;
8457856c818Smatthias.ringwald             }
8467856c818Smatthias.ringwald             break;
8477856c818Smatthias.ringwald 
8487856c818Smatthias.ringwald         case 0x02: { // first fragment
8497856c818Smatthias.ringwald 
85023a77e1aS[email protected]             // sanity check
85123a77e1aS[email protected]             if (conn->acl_recombination_pos) {
85223a77e1aS[email protected]                 log_error( "ACL First Fragment but data in buffer for handle 0x%02x, dropping stale fragments", con_handle);
85323a77e1aS[email protected]                 conn->acl_recombination_pos = 0;
85423a77e1aS[email protected]             }
85523a77e1aS[email protected] 
8567856c818Smatthias.ringwald             // peek into L2CAP packet!
8577856c818Smatthias.ringwald             uint16_t l2cap_length = READ_L2CAP_LENGTH( packet );
8587856c818Smatthias.ringwald 
8599da54300S[email protected]             // log_info( "ACL First Fragment: acl_len %u, l2cap_len %u", acl_length, l2cap_length);
860decc01a8Smatthias.ringwald 
8617856c818Smatthias.ringwald             // compare fragment size to L2CAP packet size
8627856c818Smatthias.ringwald             if (acl_length >= l2cap_length + 4){
8637856c818Smatthias.ringwald                 // forward fragment as L2CAP packet
864d6b06661SMatthias Ringwald                 hci_emit_acl_packet(packet, acl_length + 4);
8657856c818Smatthias.ringwald             } else {
8660ca847afS[email protected] 
8670ca847afS[email protected]                 if (acl_length > HCI_ACL_BUFFER_SIZE){
8680ca847afS[email protected]                     log_error( "ACL First Fragment to large: fragment %u > buffer size %u for handle 0x%02x",
8690ca847afS[email protected]                         4 + acl_length, 4 + HCI_ACL_BUFFER_SIZE, con_handle);
8700ca847afS[email protected]                     return;
8710ca847afS[email protected]                 }
8720ca847afS[email protected] 
8737856c818Smatthias.ringwald                 // store first fragment and tweak acl length for complete package
874ec6321eeS[email protected]                 memcpy(&conn->acl_recombination_buffer[HCI_INCOMING_PRE_BUFFER_SIZE], packet, acl_length + 4);
8757856c818Smatthias.ringwald                 conn->acl_recombination_pos    = acl_length + 4;
8767856c818Smatthias.ringwald                 conn->acl_recombination_length = l2cap_length;
877f8fbdce0SMatthias Ringwald                 little_endian_store_16(conn->acl_recombination_buffer, HCI_INCOMING_PRE_BUFFER_SIZE + 2, l2cap_length +4);
8787856c818Smatthias.ringwald             }
8797856c818Smatthias.ringwald             break;
8807856c818Smatthias.ringwald 
8817856c818Smatthias.ringwald         }
8827856c818Smatthias.ringwald         default:
8839da54300S[email protected]             log_error( "hci.c: acl_handler called with invalid packet boundary flags %u", acl_flags & 0x03);
8847856c818Smatthias.ringwald             return;
8857856c818Smatthias.ringwald     }
88694ab26f8Smatthias.ringwald 
88794ab26f8Smatthias.ringwald     // execute main loop
88894ab26f8Smatthias.ringwald     hci_run();
88916833f0aSmatthias.ringwald }
89022909952Smatthias.ringwald 
89167a3e8ecSmatthias.ringwald static void hci_shutdown_connection(hci_connection_t *conn){
8929da54300S[email protected]     log_info("Connection closed: handle 0x%x, %s", conn->con_handle, bd_addr_to_str(conn->address));
8933c4d4b90Smatthias.ringwald 
894b3264428SMatthias Ringwald #ifdef ENABLE_CLASSIC
895ee752bb8SMatthias Ringwald #ifdef ENABLE_SCO_OVER_HCI
896ee752bb8SMatthias Ringwald     int addr_type = conn->address_type;
897ee752bb8SMatthias Ringwald #endif
898b3264428SMatthias Ringwald #endif
899ee752bb8SMatthias Ringwald 
900528a4a3bSMatthias Ringwald     btstack_run_loop_remove_timer(&conn->timeout);
901c785ef68Smatthias.ringwald 
902665d90f2SMatthias Ringwald     btstack_linked_list_remove(&hci_stack->connections, (btstack_linked_item_t *) conn);
903a3b02b71Smatthias.ringwald     btstack_memory_hci_connection_free( conn );
9043c4d4b90Smatthias.ringwald 
9053c4d4b90Smatthias.ringwald     // now it's gone
906c7e0c5f6Smatthias.ringwald     hci_emit_nr_connections_changed();
907ee752bb8SMatthias Ringwald 
908b3264428SMatthias Ringwald #ifdef ENABLE_CLASSIC
909034e9b53SMatthias Ringwald #ifdef ENABLE_SCO_OVER_HCI
910ee752bb8SMatthias Ringwald     // update SCO
911ee752bb8SMatthias Ringwald     if (addr_type == BD_ADDR_TYPE_SCO && hci_stack->hci_transport && hci_stack->hci_transport->set_sco_config){
912ee752bb8SMatthias Ringwald         hci_stack->hci_transport->set_sco_config(hci_stack->sco_voice_setting_active, hci_number_sco_connections());
913ee752bb8SMatthias Ringwald     }
914034e9b53SMatthias Ringwald #endif
915b3264428SMatthias Ringwald #endif
916c7e0c5f6Smatthias.ringwald }
917c7e0c5f6Smatthias.ringwald 
91835454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
91935454696SMatthias Ringwald 
9200c042179S[email protected] static const uint16_t packet_type_sizes[] = {
9218f8108aaSmatthias.ringwald     0, HCI_ACL_2DH1_SIZE, HCI_ACL_3DH1_SIZE, HCI_ACL_DM1_SIZE,
9228f8108aaSmatthias.ringwald     HCI_ACL_DH1_SIZE, 0, 0, 0,
9238f8108aaSmatthias.ringwald     HCI_ACL_2DH3_SIZE, HCI_ACL_3DH3_SIZE, HCI_ACL_DM3_SIZE, HCI_ACL_DH3_SIZE,
9248f8108aaSmatthias.ringwald     HCI_ACL_2DH5_SIZE, HCI_ACL_3DH5_SIZE, HCI_ACL_DM5_SIZE, HCI_ACL_DH5_SIZE
9258f8108aaSmatthias.ringwald };
92665389bfcS[email protected] static const uint8_t  packet_type_feature_requirement_bit[] = {
92765389bfcS[email protected]      0, // 3 slot packets
92865389bfcS[email protected]      1, // 5 slot packets
92965389bfcS[email protected]     25, // EDR 2 mpbs
93065389bfcS[email protected]     26, // EDR 3 mbps
93165389bfcS[email protected]     39, // 3 slot EDR packts
93265389bfcS[email protected]     40, // 5 slot EDR packet
93365389bfcS[email protected] };
93465389bfcS[email protected] static const uint16_t packet_type_feature_packet_mask[] = {
93565389bfcS[email protected]     0x0f00, // 3 slot packets
93665389bfcS[email protected]     0xf000, // 5 slot packets
93765389bfcS[email protected]     0x1102, // EDR 2 mpbs
93865389bfcS[email protected]     0x2204, // EDR 3 mbps
93965389bfcS[email protected]     0x0300, // 3 slot EDR packts
94065389bfcS[email protected]     0x3000, // 5 slot EDR packet
94165389bfcS[email protected] };
9428f8108aaSmatthias.ringwald 
94365389bfcS[email protected] static uint16_t hci_acl_packet_types_for_buffer_size_and_local_features(uint16_t buffer_size, uint8_t * local_supported_features){
94465389bfcS[email protected]     // enable packet types based on size
9458f8108aaSmatthias.ringwald     uint16_t packet_types = 0;
946f16a69bbS[email protected]     unsigned int i;
9478f8108aaSmatthias.ringwald     for (i=0;i<16;i++){
9488f8108aaSmatthias.ringwald         if (packet_type_sizes[i] == 0) continue;
9498f8108aaSmatthias.ringwald         if (packet_type_sizes[i] <= buffer_size){
9508f8108aaSmatthias.ringwald             packet_types |= 1 << i;
9518f8108aaSmatthias.ringwald         }
9528f8108aaSmatthias.ringwald     }
95365389bfcS[email protected]     // disable packet types due to missing local supported features
95465389bfcS[email protected]     for (i=0;i<sizeof(packet_type_feature_requirement_bit);i++){
955f04a0c31SMatthias Ringwald         unsigned int bit_idx = packet_type_feature_requirement_bit[i];
95665389bfcS[email protected]         int feature_set = (local_supported_features[bit_idx >> 3] & (1<<(bit_idx & 7))) != 0;
95765389bfcS[email protected]         if (feature_set) continue;
95865389bfcS[email protected]         log_info("Features bit %02u is not set, removing packet types 0x%04x", bit_idx, packet_type_feature_packet_mask[i]);
95965389bfcS[email protected]         packet_types &= ~packet_type_feature_packet_mask[i];
96065389bfcS[email protected]     }
9618f8108aaSmatthias.ringwald     // flip bits for "may not be used"
9628f8108aaSmatthias.ringwald     packet_types ^= 0x3306;
9638f8108aaSmatthias.ringwald     return packet_types;
9648f8108aaSmatthias.ringwald }
9658f8108aaSmatthias.ringwald 
9668f8108aaSmatthias.ringwald uint16_t hci_usable_acl_packet_types(void){
9673a9fb326S[email protected]     return hci_stack->packet_types;
9688f8108aaSmatthias.ringwald }
96935454696SMatthias Ringwald #endif
9708f8108aaSmatthias.ringwald 
971facf93fdS[email protected] uint8_t* hci_get_outgoing_packet_buffer(void){
9727dc17943Smatthias.ringwald     // hci packet buffer is >= acl data packet length
9733a9fb326S[email protected]     return hci_stack->hci_packet_buffer;
9747dc17943Smatthias.ringwald }
9757dc17943Smatthias.ringwald 
976f5d8d141S[email protected] uint16_t hci_max_acl_data_packet_length(void){
9773a9fb326S[email protected]     return hci_stack->acl_data_packet_length;
9787dc17943Smatthias.ringwald }
9797dc17943Smatthias.ringwald 
98006b9e820SMatthias Ringwald #ifdef ENABLE_CLASSIC
9813e68d23dSMatthias Ringwald int hci_extended_sco_link_supported(void){
9823e68d23dSMatthias Ringwald     // No. 31, byte 3, bit 7
9833e68d23dSMatthias Ringwald     return (hci_stack->local_supported_features[3] & (1 << 7)) != 0;
9843e68d23dSMatthias Ringwald }
98506b9e820SMatthias Ringwald #endif
9863e68d23dSMatthias Ringwald 
9876ac9a97eS[email protected] int hci_non_flushable_packet_boundary_flag_supported(void){
9886ac9a97eS[email protected]     // No. 54, byte 6, bit 6
9896ac9a97eS[email protected]     return (hci_stack->local_supported_features[6] & (1 << 6)) != 0;
9906ac9a97eS[email protected] }
9916ac9a97eS[email protected] 
99215a95bd5SMatthias Ringwald static int gap_ssp_supported(void){
9936ac9a97eS[email protected]     // No. 51, byte 6, bit 3
9943a9fb326S[email protected]     return (hci_stack->local_supported_features[6] & (1 << 3)) != 0;
995f5d8d141S[email protected] }
996f5d8d141S[email protected] 
9977f02f414SMatthias Ringwald static int hci_classic_supported(void){
99835454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
9996ac9a97eS[email protected]     // No. 37, byte 4, bit 5, = No BR/EDR Support
10003a9fb326S[email protected]     return (hci_stack->local_supported_features[4] & (1 << 5)) == 0;
100135454696SMatthias Ringwald #else
100235454696SMatthias Ringwald     return 0;
100335454696SMatthias Ringwald #endif
1004f5d8d141S[email protected] }
1005f5d8d141S[email protected] 
10067f02f414SMatthias Ringwald static int hci_le_supported(void){
1007a9a4c409SMatthias Ringwald #ifdef ENABLE_BLE
10086ac9a97eS[email protected]     // No. 37, byte 4, bit 6 = LE Supported (Controller)
10093a9fb326S[email protected]     return (hci_stack->local_supported_features[4] & (1 << 6)) != 0;
1010f5d8d141S[email protected] #else
1011f5d8d141S[email protected]     return 0;
1012f5d8d141S[email protected] #endif
1013f5d8d141S[email protected] }
1014f5d8d141S[email protected] 
1015b95a5a35SMatthias Ringwald #ifdef ENABLE_BLE
1016b95a5a35SMatthias Ringwald 
1017b95a5a35SMatthias Ringwald /**
1018b95a5a35SMatthias Ringwald  * @brief Get addr type and address used for LE in Advertisements, Scan Responses,
1019b95a5a35SMatthias Ringwald  */
1020b95a5a35SMatthias Ringwald void gap_le_get_own_address(uint8_t * addr_type, bd_addr_t addr){
1021b95a5a35SMatthias Ringwald     *addr_type = hci_stack->le_own_addr_type;
1022b95a5a35SMatthias Ringwald     if (hci_stack->le_own_addr_type){
1023b95a5a35SMatthias Ringwald         memcpy(addr, hci_stack->le_random_address, 6);
102469a97523S[email protected]     } else {
10253a9fb326S[email protected]         memcpy(addr, hci_stack->local_bd_addr, 6);
102669a97523S[email protected]     }
102769a97523S[email protected] }
102869a97523S[email protected] 
1029e8c8828eSMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
1030384b59deSMatthias Ringwald void le_handle_advertisement_report(uint8_t *packet, uint16_t size){
10319ec2630cSMatthias Ringwald 
1032d1dc057bS[email protected]     int offset = 3;
1033d1dc057bS[email protected]     int num_reports = packet[offset];
1034d1dc057bS[email protected]     offset += 1;
1035d1dc057bS[email protected] 
103657c9da5bS[email protected]     int i;
10374f4e0224SMatthias Ringwald     // log_info("HCI: handle adv report with num reports: %d", num_reports);
103803fbe9c6S[email protected]     uint8_t event[12 + LE_ADVERTISING_DATA_SIZE]; // use upper bound to avoid var size automatic var
1039384b59deSMatthias Ringwald     for (i=0; i<num_reports && offset < size;i++){
1040384b59deSMatthias Ringwald         uint8_t data_length = btstack_min( packet[offset + 8], LE_ADVERTISING_DATA_SIZE);
1041a0aac9c4S[email protected]         uint8_t event_size = 10 + data_length;
1042d1dc057bS[email protected]         int pos = 0;
1043045013feSMatthias Ringwald         event[pos++] = GAP_EVENT_ADVERTISING_REPORT;
104457c9da5bS[email protected]         event[pos++] = event_size;
1045210c6774S[email protected]         memcpy(&event[pos], &packet[offset], 1+1+6); // event type + address type + address
1046d1dc057bS[email protected]         offset += 8;
1047d1dc057bS[email protected]         pos += 8;
1048d1dc057bS[email protected]         event[pos++] = packet[offset + 1 + data_length]; // rssi
1049d1dc057bS[email protected]         event[pos++] = packet[offset++]; //data_length;
1050d1dc057bS[email protected]         memcpy(&event[pos], &packet[offset], data_length);
105157c9da5bS[email protected]         pos += data_length;
1052d1dc057bS[email protected]         offset += data_length + 1; // rssi
1053d6b06661SMatthias Ringwald         hci_emit_event(event, pos, 1);
105457c9da5bS[email protected]     }
105557c9da5bS[email protected] }
1056b2f949feS[email protected] #endif
1057e8c8828eSMatthias Ringwald #endif
105857c9da5bS[email protected] 
10592b6ab3e6SMatthias Ringwald #ifdef ENABLE_BLE
10602b6ab3e6SMatthias Ringwald #ifdef ENABLE_LE_PERIPHERAL
10612b6ab3e6SMatthias Ringwald static void hci_reenable_advertisements_if_needed(void){
10622b6ab3e6SMatthias Ringwald     if (!hci_stack->le_advertisements_active && hci_stack->le_advertisements_enabled){
10632b6ab3e6SMatthias Ringwald         // get number of active le slave connections
10642b6ab3e6SMatthias Ringwald         int num_slave_connections = 0;
10652b6ab3e6SMatthias Ringwald         btstack_linked_list_iterator_t it;
10662b6ab3e6SMatthias Ringwald         btstack_linked_list_iterator_init(&it, &hci_stack->connections);
10672b6ab3e6SMatthias Ringwald         while (btstack_linked_list_iterator_has_next(&it)){
10682b6ab3e6SMatthias Ringwald             hci_connection_t * con = (hci_connection_t*) btstack_linked_list_iterator_next(&it);
10692b6ab3e6SMatthias Ringwald             log_info("state %u, role %u, le_con %u", con->state, con->role, hci_is_le_connection(con));
10702b6ab3e6SMatthias Ringwald             if (con->state != OPEN) continue;
10712b6ab3e6SMatthias Ringwald             if (con->role  != HCI_ROLE_SLAVE) continue;
10722b6ab3e6SMatthias Ringwald             if (!hci_is_le_connection(con)) continue;
10732b6ab3e6SMatthias Ringwald             num_slave_connections++;
10742b6ab3e6SMatthias Ringwald         }
10752b6ab3e6SMatthias Ringwald         log_info("Num LE Peripheral roles: %u of %u", num_slave_connections, hci_stack->le_max_number_peripheral_connections);
10762b6ab3e6SMatthias Ringwald         if (num_slave_connections < hci_stack->le_max_number_peripheral_connections){
10772b6ab3e6SMatthias Ringwald             hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_ENABLE;
10782b6ab3e6SMatthias Ringwald         }
10792b6ab3e6SMatthias Ringwald     }
10802b6ab3e6SMatthias Ringwald }
10812b6ab3e6SMatthias Ringwald #endif
10822b6ab3e6SMatthias Ringwald #endif
10832b6ab3e6SMatthias Ringwald 
1084cd77dd38SMatthias Ringwald #if !defined(HAVE_PLATFORM_IPHONE_OS) && !defined (HAVE_HOST_CONTROLLER_API)
108506b9e820SMatthias Ringwald 
108696b53536SMatthias Ringwald static uint32_t hci_transport_uart_get_main_baud_rate(void){
108796b53536SMatthias Ringwald     if (!hci_stack->config) return 0;
10889796ebeaSMatthias Ringwald     uint32_t baud_rate = ((hci_transport_config_uart_t *)hci_stack->config)->baudrate_main;
108996b53536SMatthias Ringwald     // Limit baud rate for Broadcom chipsets to 3 mbps
109061f37892SMatthias Ringwald     if (hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_BROADCOM_CORPORATION && baud_rate > 3000000){
109196b53536SMatthias Ringwald         baud_rate = 3000000;
109296b53536SMatthias Ringwald     }
109396b53536SMatthias Ringwald     return baud_rate;
109496b53536SMatthias Ringwald }
109596b53536SMatthias Ringwald 
1096ec820d77SMatthias Ringwald static void hci_initialization_timeout_handler(btstack_timer_source_t * ds){
10979ec2630cSMatthias Ringwald     UNUSED(ds);
10989ec2630cSMatthias Ringwald 
10990305bdeaSMatthias Ringwald     switch (hci_stack->substate){
11000305bdeaSMatthias Ringwald         case HCI_INIT_W4_SEND_RESET:
11017b0d7667SMatthias Ringwald             log_info("Resend HCI Reset");
11020305bdeaSMatthias Ringwald             hci_stack->substate = HCI_INIT_SEND_RESET;
11037b0d7667SMatthias Ringwald             hci_stack->num_cmd_packets = 1;
11040305bdeaSMatthias Ringwald             hci_run();
11050305bdeaSMatthias Ringwald             break;
11069f007422SMatthias Ringwald         case HCI_INIT_W4_CUSTOM_INIT_CSR_WARM_BOOT_LINK_RESET:
11079f007422SMatthias Ringwald             log_info("Resend HCI Reset - CSR Warm Boot with Link Reset");
11089f007422SMatthias Ringwald             if (hci_stack->hci_transport->reset_link){
11099f007422SMatthias Ringwald                 hci_stack->hci_transport->reset_link();
11109f007422SMatthias Ringwald             }
1111202c8a4cSMatthias Ringwald             // no break - explicit fallthrough to HCI_INIT_W4_CUSTOM_INIT_CSR_WARM_BOOT
1112e47e68c7SMatthias Ringwald         case HCI_INIT_W4_CUSTOM_INIT_CSR_WARM_BOOT:
1113e47e68c7SMatthias Ringwald             log_info("Resend HCI Reset - CSR Warm Boot");
1114e47e68c7SMatthias Ringwald             hci_stack->substate = HCI_INIT_SEND_RESET_CSR_WARM_BOOT;
1115e47e68c7SMatthias Ringwald             hci_stack->num_cmd_packets = 1;
1116e47e68c7SMatthias Ringwald             hci_run();
1117688c2635SMatthias Ringwald             break;
11187224be7eSMatthias Ringwald         case HCI_INIT_W4_SEND_BAUD_CHANGE:
11197224be7eSMatthias Ringwald             if (hci_stack->hci_transport->set_baudrate){
112096b53536SMatthias Ringwald                 uint32_t baud_rate = hci_transport_uart_get_main_baud_rate();
1121cd724cb7SMatthias Ringwald                 log_info("Local baud rate change to %"PRIu32"(timeout handler)", baud_rate);
11227dd9d0ecSMatthias Ringwald                 hci_stack->hci_transport->set_baudrate(baud_rate);
11237224be7eSMatthias Ringwald             }
1124834bce8cSMatthias Ringwald             // For CSR, HCI Reset is sent on new baud rate. Don't forget to reset link for H5/BCSP
112561f37892SMatthias Ringwald             if (hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_CAMBRIDGE_SILICON_RADIO){
1126834bce8cSMatthias Ringwald                 if (hci_stack->hci_transport->reset_link){
1127834bce8cSMatthias Ringwald                     log_info("Link Reset");
1128834bce8cSMatthias Ringwald                     hci_stack->hci_transport->reset_link();
1129834bce8cSMatthias Ringwald                 }
1130772a36d3SMatthias Ringwald                 hci_stack->substate = HCI_INIT_SEND_RESET_CSR_WARM_BOOT;
1131772a36d3SMatthias Ringwald                 hci_run();
1132772a36d3SMatthias Ringwald             }
11334696bddbSMatthias Ringwald             break;
1134559961d0SMatthias Ringwald         case HCI_INIT_W4_CUSTOM_INIT_BCM_DELAY:
1135559961d0SMatthias Ringwald             // otherwise continue
1136559961d0SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_READ_LOCAL_SUPPORTED_COMMANDS;
1137559961d0SMatthias Ringwald             hci_send_cmd(&hci_read_local_supported_commands);
1138559961d0SMatthias Ringwald             break;
11390305bdeaSMatthias Ringwald         default:
11400305bdeaSMatthias Ringwald             break;
11410305bdeaSMatthias Ringwald     }
11420305bdeaSMatthias Ringwald }
114306b9e820SMatthias Ringwald #endif
11440305bdeaSMatthias Ringwald 
114571de195eSMatthias Ringwald static void hci_initializing_next_state(void){
114674b323a9SMatthias Ringwald     hci_stack->substate = (hci_substate_t )( ((int) hci_stack->substate) + 1);
114774b323a9SMatthias Ringwald }
114874b323a9SMatthias Ringwald 
1149e9f343c8SMatthias Ringwald #if defined(ENABLE_CLASSIC) || defined(ENABLE_LE_PERIPHERAL)
11501c2a62f5SMatthias Ringwald static void hci_replace_bd_addr_placeholder(uint8_t * data, uint16_t size){
11511c2a62f5SMatthias Ringwald     const int bd_addr_string_len = 17;
11521c2a62f5SMatthias Ringwald     int i = 0;
11531c2a62f5SMatthias Ringwald     while (i < size - bd_addr_string_len){
11541c2a62f5SMatthias Ringwald         if (memcmp(&data[i], "00:00:00:00:00:00", bd_addr_string_len)) {
11551c2a62f5SMatthias Ringwald             i++;
11561c2a62f5SMatthias Ringwald             continue;
11571c2a62f5SMatthias Ringwald         }
11581c2a62f5SMatthias Ringwald         // set real address
11591c2a62f5SMatthias Ringwald         memcpy(&data[i], bd_addr_to_str(hci_stack->local_bd_addr), bd_addr_string_len);
11601c2a62f5SMatthias Ringwald         i += bd_addr_string_len;
11611c2a62f5SMatthias Ringwald     }
11621c2a62f5SMatthias Ringwald }
11631c2a62f5SMatthias Ringwald #endif
11641c2a62f5SMatthias Ringwald 
116574b323a9SMatthias Ringwald // assumption: hci_can_send_command_packet_now() == true
116671de195eSMatthias Ringwald static void hci_initializing_run(void){
1167148ca237SMatthias Ringwald     log_debug("hci_initializing_run: substate %u, can send %u", hci_stack->substate, hci_can_send_command_packet_now());
116874b323a9SMatthias Ringwald     switch (hci_stack->substate){
116974b323a9SMatthias Ringwald         case HCI_INIT_SEND_RESET:
117074b323a9SMatthias Ringwald             hci_state_reset();
1171a0cf2f3fSMatthias Ringwald 
117206b9e820SMatthias Ringwald #if !defined(HAVE_PLATFORM_IPHONE_OS) && !defined (HAVE_HOST_CONTROLLER_API)
11730305bdeaSMatthias Ringwald             // prepare reset if command complete not received in 100ms
1174659d758cSMatthias Ringwald             btstack_run_loop_set_timer(&hci_stack->timeout, HCI_RESET_RESEND_TIMEOUT_MS);
1175528a4a3bSMatthias Ringwald             btstack_run_loop_set_timer_handler(&hci_stack->timeout, hci_initialization_timeout_handler);
1176528a4a3bSMatthias Ringwald             btstack_run_loop_add_timer(&hci_stack->timeout);
1177a0cf2f3fSMatthias Ringwald #endif
11780305bdeaSMatthias Ringwald             // send command
117974b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_SEND_RESET;
11800305bdeaSMatthias Ringwald             hci_send_cmd(&hci_reset);
118174b323a9SMatthias Ringwald             break;
118276fcb19bSMatthias Ringwald         case HCI_INIT_SEND_READ_LOCAL_VERSION_INFORMATION:
118376fcb19bSMatthias Ringwald             hci_send_cmd(&hci_read_local_version_information);
118476fcb19bSMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_SEND_READ_LOCAL_VERSION_INFORMATION;
118576fcb19bSMatthias Ringwald             break;
1186e90bae01SMatthias Ringwald         case HCI_INIT_SEND_READ_LOCAL_NAME:
1187e90bae01SMatthias Ringwald             hci_send_cmd(&hci_read_local_name);
1188e90bae01SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_SEND_READ_LOCAL_NAME;
1189e90bae01SMatthias Ringwald             break;
119006b9e820SMatthias Ringwald 
119106b9e820SMatthias Ringwald #if !defined(HAVE_PLATFORM_IPHONE_OS) && !defined (HAVE_HOST_CONTROLLER_API)
1192e47e68c7SMatthias Ringwald         case HCI_INIT_SEND_RESET_CSR_WARM_BOOT:
1193e47e68c7SMatthias Ringwald             hci_state_reset();
1194e47e68c7SMatthias Ringwald             // prepare reset if command complete not received in 100ms
1195659d758cSMatthias Ringwald             btstack_run_loop_set_timer(&hci_stack->timeout, HCI_RESET_RESEND_TIMEOUT_MS);
1196528a4a3bSMatthias Ringwald             btstack_run_loop_set_timer_handler(&hci_stack->timeout, hci_initialization_timeout_handler);
1197528a4a3bSMatthias Ringwald             btstack_run_loop_add_timer(&hci_stack->timeout);
1198e47e68c7SMatthias Ringwald             // send command
1199e47e68c7SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_CUSTOM_INIT_CSR_WARM_BOOT;
1200e47e68c7SMatthias Ringwald             hci_send_cmd(&hci_reset);
1201e47e68c7SMatthias Ringwald             break;
12028d29070eSMatthias Ringwald         case HCI_INIT_SEND_RESET_ST_WARM_BOOT:
12038d29070eSMatthias Ringwald             hci_state_reset();
12048d29070eSMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_SEND_RESET_ST_WARM_BOOT;
12058d29070eSMatthias Ringwald             hci_send_cmd(&hci_reset);
12068d29070eSMatthias Ringwald             break;
1207fab26ab3SMatthias Ringwald         case HCI_INIT_SEND_BAUD_CHANGE: {
120896b53536SMatthias Ringwald             uint32_t baud_rate = hci_transport_uart_get_main_baud_rate();
12093fb36a29SMatthias Ringwald             hci_stack->chipset->set_baudrate_command(baud_rate, hci_stack->hci_packet_buffer);
1210f8fbdce0SMatthias Ringwald             hci_stack->last_cmd_opcode = little_endian_read_16(hci_stack->hci_packet_buffer, 0);
121174b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_SEND_BAUD_CHANGE;
12120305bdeaSMatthias Ringwald             hci_send_cmd_packet(hci_stack->hci_packet_buffer, 3 + hci_stack->hci_packet_buffer[2]);
12134696bddbSMatthias Ringwald             // STLC25000D: baudrate change happens within 0.5 s after command was send,
12144696bddbSMatthias Ringwald             // use timer to update baud rate after 100 ms (knowing exactly, when command was sent is non-trivial)
121561f37892SMatthias Ringwald             if (hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_ST_MICROELECTRONICS){
1216659d758cSMatthias Ringwald                 btstack_run_loop_set_timer(&hci_stack->timeout, HCI_RESET_RESEND_TIMEOUT_MS);
1217528a4a3bSMatthias Ringwald                 btstack_run_loop_add_timer(&hci_stack->timeout);
12184696bddbSMatthias Ringwald             }
121974b323a9SMatthias Ringwald             break;
1220fab26ab3SMatthias Ringwald         }
1221fab26ab3SMatthias Ringwald         case HCI_INIT_SEND_BAUD_CHANGE_BCM: {
122296b53536SMatthias Ringwald             uint32_t baud_rate = hci_transport_uart_get_main_baud_rate();
12233fb36a29SMatthias Ringwald             hci_stack->chipset->set_baudrate_command(baud_rate, hci_stack->hci_packet_buffer);
1224f8fbdce0SMatthias Ringwald             hci_stack->last_cmd_opcode = little_endian_read_16(hci_stack->hci_packet_buffer, 0);
1225eb3a5314SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_SEND_BAUD_CHANGE_BCM;
1226eb3a5314SMatthias Ringwald             hci_send_cmd_packet(hci_stack->hci_packet_buffer, 3 + hci_stack->hci_packet_buffer[2]);
1227eb3a5314SMatthias Ringwald             break;
1228fab26ab3SMatthias Ringwald         }
122974b323a9SMatthias Ringwald         case HCI_INIT_CUSTOM_INIT:
123074b323a9SMatthias Ringwald             // Custom initialization
12313fb36a29SMatthias Ringwald             if (hci_stack->chipset && hci_stack->chipset->next_command){
12323fb36a29SMatthias Ringwald                 int valid_cmd = (*hci_stack->chipset->next_command)(hci_stack->hci_packet_buffer);
123374b323a9SMatthias Ringwald                 if (valid_cmd){
123474b323a9SMatthias Ringwald                     int size = 3 + hci_stack->hci_packet_buffer[2];
1235f8fbdce0SMatthias Ringwald                     hci_stack->last_cmd_opcode = little_endian_read_16(hci_stack->hci_packet_buffer, 0);
123674b323a9SMatthias Ringwald                     hci_dump_packet(HCI_COMMAND_DATA_PACKET, 0, hci_stack->hci_packet_buffer, size);
1237e47e68c7SMatthias Ringwald                     switch (valid_cmd) {
1238f41911edSMatthias Ringwald                         case BTSTACK_CHIPSET_VALID_COMMAND:
1239e47e68c7SMatthias Ringwald                             hci_stack->substate = HCI_INIT_W4_CUSTOM_INIT;
1240e47e68c7SMatthias Ringwald                             break;
1241f41911edSMatthias Ringwald                         case BTSTACK_CHIPSET_WARMSTART_REQUIRED:
1242f41911edSMatthias Ringwald                             // CSR Warm Boot: Wait a bit, then send HCI Reset until HCI Command Complete
1243e47e68c7SMatthias Ringwald                             log_info("CSR Warm Boot");
1244659d758cSMatthias Ringwald                             btstack_run_loop_set_timer(&hci_stack->timeout, HCI_RESET_RESEND_TIMEOUT_MS);
1245528a4a3bSMatthias Ringwald                             btstack_run_loop_set_timer_handler(&hci_stack->timeout, hci_initialization_timeout_handler);
1246528a4a3bSMatthias Ringwald                             btstack_run_loop_add_timer(&hci_stack->timeout);
124761f37892SMatthias Ringwald                             if (hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_CAMBRIDGE_SILICON_RADIO
1248772a36d3SMatthias Ringwald                                 && hci_stack->config
12493fb36a29SMatthias Ringwald                                 && hci_stack->chipset
12503fb36a29SMatthias Ringwald                                 // && hci_stack->chipset->set_baudrate_command -- there's no such command
1251772a36d3SMatthias Ringwald                                 && hci_stack->hci_transport->set_baudrate
12522caefae9SMatthias Ringwald                                 && hci_transport_uart_get_main_baud_rate()){
1253772a36d3SMatthias Ringwald                                 hci_stack->substate = HCI_INIT_W4_SEND_BAUD_CHANGE;
1254772a36d3SMatthias Ringwald                             } else {
12559f007422SMatthias Ringwald                                hci_stack->substate = HCI_INIT_W4_CUSTOM_INIT_CSR_WARM_BOOT_LINK_RESET;
1256772a36d3SMatthias Ringwald                             }
1257e47e68c7SMatthias Ringwald                             break;
1258f41911edSMatthias Ringwald                         default:
1259f41911edSMatthias Ringwald                             // should not get here
1260f41911edSMatthias Ringwald                             break;
1261e47e68c7SMatthias Ringwald                     }
12620305bdeaSMatthias Ringwald                     hci_stack->hci_transport->send_packet(HCI_COMMAND_DATA_PACKET, hci_stack->hci_packet_buffer, size);
126374b323a9SMatthias Ringwald                     break;
126474b323a9SMatthias Ringwald                 }
1265148ca237SMatthias Ringwald                 log_info("Init script done");
126692a0d36dSMatthias Ringwald 
1267559961d0SMatthias Ringwald                 // Init script download on Broadcom chipsets causes:
1268e021ff1eSMatthias Ringwald                 if (hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_BROADCOM_CORPORATION
1269e021ff1eSMatthias Ringwald                 ||  hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_EM_MICROELECTRONIC_MARIN_SA){
1270e021ff1eSMatthias Ringwald 
1271559961d0SMatthias Ringwald                     // - baud rate to reset, restore UART baud rate if needed
127292a0d36dSMatthias Ringwald                     int need_baud_change = hci_stack->config
12733fb36a29SMatthias Ringwald                         && hci_stack->chipset
12743fb36a29SMatthias Ringwald                         && hci_stack->chipset->set_baudrate_command
127592a0d36dSMatthias Ringwald                         && hci_stack->hci_transport->set_baudrate
12769796ebeaSMatthias Ringwald                         && ((hci_transport_config_uart_t *)hci_stack->config)->baudrate_main;
127792a0d36dSMatthias Ringwald                     if (need_baud_change) {
12789796ebeaSMatthias Ringwald                         uint32_t baud_rate = ((hci_transport_config_uart_t *)hci_stack->config)->baudrate_init;
1279cd724cb7SMatthias Ringwald                         log_info("Local baud rate change to %"PRIu32" after init script (bcm)", baud_rate);
128092a0d36dSMatthias Ringwald                         hci_stack->hci_transport->set_baudrate(baud_rate);
128192a0d36dSMatthias Ringwald                     }
1282559961d0SMatthias Ringwald 
1283559961d0SMatthias Ringwald                     // - RTS will raise during update, but manual RTS/CTS in WICED port on RedBear Duo cannot handle this
1284559961d0SMatthias Ringwald                     //   -> Work around: wait a few milliseconds here.
1285559961d0SMatthias Ringwald                     log_info("BCM delay after init script");
1286559961d0SMatthias Ringwald                     hci_stack->substate = HCI_INIT_W4_CUSTOM_INIT_BCM_DELAY;
1287559961d0SMatthias Ringwald                     btstack_run_loop_set_timer(&hci_stack->timeout, 10);
1288559961d0SMatthias Ringwald                     btstack_run_loop_set_timer_handler(&hci_stack->timeout, hci_initialization_timeout_handler);
1289559961d0SMatthias Ringwald                     btstack_run_loop_add_timer(&hci_stack->timeout);
1290559961d0SMatthias Ringwald                     break;
129192a0d36dSMatthias Ringwald                 }
129274b323a9SMatthias Ringwald             }
129374b323a9SMatthias Ringwald             // otherwise continue
1294a828a756SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_READ_LOCAL_SUPPORTED_COMMANDS;
1295a828a756SMatthias Ringwald             hci_send_cmd(&hci_read_local_supported_commands);
1296a828a756SMatthias Ringwald             break;
129753860077SMatthias Ringwald         case HCI_INIT_SET_BD_ADDR:
129853860077SMatthias Ringwald             log_info("Set Public BD ADDR to %s", bd_addr_to_str(hci_stack->custom_bd_addr));
12993fb36a29SMatthias Ringwald             hci_stack->chipset->set_bd_addr_command(hci_stack->custom_bd_addr, hci_stack->hci_packet_buffer);
1300f8fbdce0SMatthias Ringwald             hci_stack->last_cmd_opcode = little_endian_read_16(hci_stack->hci_packet_buffer, 0);
130153860077SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_SET_BD_ADDR;
130253860077SMatthias Ringwald             hci_send_cmd_packet(hci_stack->hci_packet_buffer, 3 + hci_stack->hci_packet_buffer[2]);
130353860077SMatthias Ringwald             break;
130406b9e820SMatthias Ringwald #endif
130506b9e820SMatthias Ringwald 
130606b9e820SMatthias Ringwald         case HCI_INIT_READ_LOCAL_SUPPORTED_COMMANDS:
130706b9e820SMatthias Ringwald             log_info("Resend hci_read_local_supported_commands after CSR Warm Boot double reset");
130806b9e820SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_READ_LOCAL_SUPPORTED_COMMANDS;
130906b9e820SMatthias Ringwald             hci_send_cmd(&hci_read_local_supported_commands);
131006b9e820SMatthias Ringwald             break;
131153860077SMatthias Ringwald         case HCI_INIT_READ_BD_ADDR:
131253860077SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_READ_BD_ADDR;
131353860077SMatthias Ringwald             hci_send_cmd(&hci_read_bd_addr);
131453860077SMatthias Ringwald             break;
131574b323a9SMatthias Ringwald         case HCI_INIT_READ_BUFFER_SIZE:
131674b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_READ_BUFFER_SIZE;
13170305bdeaSMatthias Ringwald             hci_send_cmd(&hci_read_buffer_size);
131874b323a9SMatthias Ringwald             break;
131953860077SMatthias Ringwald         case HCI_INIT_READ_LOCAL_SUPPORTED_FEATURES:
132053860077SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_READ_LOCAL_SUPPORTED_FEATURES;
13210305bdeaSMatthias Ringwald             hci_send_cmd(&hci_read_local_supported_features);
132274b323a9SMatthias Ringwald             break;
13232b838201SMatthias Ringwald 
13242b838201SMatthias Ringwald #ifdef ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL
13252b838201SMatthias Ringwald         case HCI_INIT_SET_CONTROLLER_TO_HOST_FLOW_CONTROL:
13262b838201SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_SET_CONTROLLER_TO_HOST_FLOW_CONTROL;
13272b838201SMatthias Ringwald             hci_send_cmd(&hci_set_controller_to_host_flow_control, 3);  // ACL + SCO Flow Control
13282b838201SMatthias Ringwald             break;
13292b838201SMatthias Ringwald         case HCI_INIT_HOST_BUFFER_SIZE:
13302b838201SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_HOST_BUFFER_SIZE;
13312b838201SMatthias Ringwald             hci_send_cmd(&hci_host_buffer_size, HCI_HOST_ACL_PACKET_LEN, HCI_HOST_SCO_PACKET_LEN,
13322b838201SMatthias Ringwald                                                 HCI_HOST_ACL_PACKET_NUM, HCI_HOST_SCO_PACKET_NUM);
13332b838201SMatthias Ringwald             break;
13342b838201SMatthias Ringwald #endif
13352b838201SMatthias Ringwald 
133674b323a9SMatthias Ringwald         case HCI_INIT_SET_EVENT_MASK:
13370305bdeaSMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_SET_EVENT_MASK;
133874b323a9SMatthias Ringwald             if (hci_le_supported()){
133974b323a9SMatthias Ringwald                 hci_send_cmd(&hci_set_event_mask,0xffffffff, 0x3FFFFFFF);
134074b323a9SMatthias Ringwald             } else {
134174b323a9SMatthias Ringwald                 // Kensington Bluetooth 2.1 USB Dongle (CSR Chipset) returns an error for 0xffff...
134274b323a9SMatthias Ringwald                 hci_send_cmd(&hci_set_event_mask,0xffffffff, 0x1FFFFFFF);
134374b323a9SMatthias Ringwald             }
134474b323a9SMatthias Ringwald             break;
13452b838201SMatthias Ringwald 
134635454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
134774b323a9SMatthias Ringwald         case HCI_INIT_WRITE_SIMPLE_PAIRING_MODE:
134874b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_WRITE_SIMPLE_PAIRING_MODE;
13490305bdeaSMatthias Ringwald             hci_send_cmd(&hci_write_simple_pairing_mode, hci_stack->ssp_enable);
135074b323a9SMatthias Ringwald             break;
135174b323a9SMatthias Ringwald         case HCI_INIT_WRITE_PAGE_TIMEOUT:
135274b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_WRITE_PAGE_TIMEOUT;
13530305bdeaSMatthias Ringwald             hci_send_cmd(&hci_write_page_timeout, 0x6000);  // ca. 15 sec
135474b323a9SMatthias Ringwald             break;
1355c33e56d3SMatthias Ringwald         case HCI_INIT_WRITE_DEFAULT_LINK_POLICY_SETTING:
1356c33e56d3SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_WRITE_DEFAULT_LINK_POLICY_SETTING;
1357c33e56d3SMatthias Ringwald             hci_send_cmd(&hci_write_default_link_policy_setting, hci_stack->default_link_policy_settings);
1358c33e56d3SMatthias Ringwald             break;
135974b323a9SMatthias Ringwald         case HCI_INIT_WRITE_CLASS_OF_DEVICE:
136074b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_WRITE_CLASS_OF_DEVICE;
13610305bdeaSMatthias Ringwald             hci_send_cmd(&hci_write_class_of_device, hci_stack->class_of_device);
136274b323a9SMatthias Ringwald             break;
13631c2a62f5SMatthias Ringwald         case HCI_INIT_WRITE_LOCAL_NAME: {
13640305bdeaSMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_WRITE_LOCAL_NAME;
13651c2a62f5SMatthias Ringwald             hci_reserve_packet_buffer();
13661c2a62f5SMatthias Ringwald             uint8_t * packet = hci_stack->hci_packet_buffer;
13671c2a62f5SMatthias Ringwald             // construct HCI Command and send
13681c2a62f5SMatthias Ringwald             uint16_t opcode = hci_write_local_name.opcode;
13691c2a62f5SMatthias Ringwald             hci_stack->last_cmd_opcode = opcode;
13701c2a62f5SMatthias Ringwald             packet[0] = opcode & 0xff;
13711c2a62f5SMatthias Ringwald             packet[1] = opcode >> 8;
13721c2a62f5SMatthias Ringwald             packet[2] = DEVICE_NAME_LEN;
13731c2a62f5SMatthias Ringwald             memset(&packet[3], 0, DEVICE_NAME_LEN);
137463168530SMatthias Ringwald             memcpy(&packet[3], hci_stack->local_name, strlen(hci_stack->local_name));
13751c2a62f5SMatthias Ringwald             // expand '00:00:00:00:00:00' in name with bd_addr
13761c2a62f5SMatthias Ringwald             hci_replace_bd_addr_placeholder(&packet[3], DEVICE_NAME_LEN);
13771c2a62f5SMatthias Ringwald             hci_send_cmd_packet(packet, HCI_CMD_HEADER_SIZE + DEVICE_NAME_LEN);
137874b323a9SMatthias Ringwald             break;
13791c2a62f5SMatthias Ringwald         }
138029af07f3SMatthias Ringwald         case HCI_INIT_WRITE_EIR_DATA: {
13818a114470SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_WRITE_EIR_DATA;
138229af07f3SMatthias Ringwald             hci_reserve_packet_buffer();
138329af07f3SMatthias Ringwald             uint8_t * packet = hci_stack->hci_packet_buffer;
138429af07f3SMatthias Ringwald             // construct HCI Command and send
138529af07f3SMatthias Ringwald             uint16_t opcode = hci_write_extended_inquiry_response.opcode;
138629af07f3SMatthias Ringwald             hci_stack->last_cmd_opcode = opcode;
138729af07f3SMatthias Ringwald             packet[0] = opcode & 0xff;
138829af07f3SMatthias Ringwald             packet[1] = opcode >> 8;
138929af07f3SMatthias Ringwald             packet[2] = 1 + 240;
139029af07f3SMatthias Ringwald             packet[3] = 0;  // FEC not required
1391ad0d1108SMatthias Ringwald             if (hci_stack->eir_data){
139229af07f3SMatthias Ringwald                 memcpy(&packet[4], hci_stack->eir_data, 240);
1393ad0d1108SMatthias Ringwald             } else {
1394ad0d1108SMatthias Ringwald                 memset(&packet[4], 0, 240);
1395ad0d1108SMatthias Ringwald                 int name_len = strlen(hci_stack->local_name);
1396ad0d1108SMatthias Ringwald                 packet[4] = name_len + 1;
1397ad0d1108SMatthias Ringwald                 packet[5] = BLUETOOTH_DATA_TYPE_COMPLETE_LOCAL_NAME;
1398ad0d1108SMatthias Ringwald                 memcpy(&packet[6], hci_stack->local_name, name_len);
1399ad0d1108SMatthias Ringwald             }
140029af07f3SMatthias Ringwald             // expand '00:00:00:00:00:00' in name with bd_addr
140129af07f3SMatthias Ringwald             hci_replace_bd_addr_placeholder(&packet[4], 240);
1402c439e296SMatthias Ringwald             hci_send_cmd_packet(packet, HCI_CMD_HEADER_SIZE + 1 + 240);
1403ff00ed1cSMatthias Ringwald             break;
140429af07f3SMatthias Ringwald         }
1405f6858d14SMatthias Ringwald         case HCI_INIT_WRITE_INQUIRY_MODE:
1406f6858d14SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_WRITE_INQUIRY_MODE;
14078a114470SMatthias Ringwald             hci_send_cmd(&hci_write_inquiry_mode, (int) hci_stack->inquiry_mode);
1408f6858d14SMatthias Ringwald             break;
140974b323a9SMatthias Ringwald         case HCI_INIT_WRITE_SCAN_ENABLE:
141074b323a9SMatthias Ringwald             hci_send_cmd(&hci_write_scan_enable, (hci_stack->connectable << 1) | hci_stack->discoverable); // page scan
141174b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_WRITE_SCAN_ENABLE;
141274b323a9SMatthias Ringwald             break;
1413483c5078SMatthias Ringwald         // only sent if ENABLE_SCO_OVER_HCI is defined
1414729ed62eSMatthias Ringwald         case HCI_INIT_WRITE_SYNCHRONOUS_FLOW_CONTROL_ENABLE:
1415729ed62eSMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_WRITE_SYNCHRONOUS_FLOW_CONTROL_ENABLE;
1416729ed62eSMatthias Ringwald             hci_send_cmd(&hci_write_synchronous_flow_control_enable, 1); // SCO tracking enabled
1417729ed62eSMatthias Ringwald             break;
1418483c5078SMatthias Ringwald         case HCI_INIT_WRITE_DEFAULT_ERRONEOUS_DATA_REPORTING:
1419483c5078SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_WRITE_DEFAULT_ERRONEOUS_DATA_REPORTING;
1420483c5078SMatthias Ringwald             hci_send_cmd(&hci_write_default_erroneous_data_reporting, 1);
1421483c5078SMatthias Ringwald             break;
1422a42798c3SMatthias Ringwald         // only sent if ENABLE_SCO_OVER_HCI and manufacturer is Broadcom
1423a42798c3SMatthias Ringwald         case HCI_INIT_BCM_WRITE_SCO_PCM_INT:
1424a42798c3SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_BCM_WRITE_SCO_PCM_INT;
1425a42798c3SMatthias Ringwald             log_info("BCM: Route SCO data via HCI transport");
1426a42798c3SMatthias Ringwald             hci_send_cmd(&hci_bcm_write_sco_pcm_int, 1, 0, 0, 0, 0);
1427a42798c3SMatthias Ringwald             break;
1428a42798c3SMatthias Ringwald 
142935454696SMatthias Ringwald #endif
1430a9a4c409SMatthias Ringwald #ifdef ENABLE_BLE
143174b323a9SMatthias Ringwald         // LE INIT
143274b323a9SMatthias Ringwald         case HCI_INIT_LE_READ_BUFFER_SIZE:
143374b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_LE_READ_BUFFER_SIZE;
14340305bdeaSMatthias Ringwald             hci_send_cmd(&hci_le_read_buffer_size);
143574b323a9SMatthias Ringwald             break;
1436daabb8b8SMatthias Ringwald         case HCI_INIT_LE_SET_EVENT_MASK:
1437daabb8b8SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_LE_SET_EVENT_MASK;
1438*729710c0SMatthias Ringwald             hci_send_cmd(&hci_le_set_event_mask, 0x809FF, 0x0); // bits 0-8, 11, 19
1439daabb8b8SMatthias Ringwald             break;
144074b323a9SMatthias Ringwald         case HCI_INIT_WRITE_LE_HOST_SUPPORTED:
144174b323a9SMatthias Ringwald             // LE Supported Host = 1, Simultaneous Host = 0
144274b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_WRITE_LE_HOST_SUPPORTED;
14430305bdeaSMatthias Ringwald             hci_send_cmd(&hci_write_le_host_supported, 1, 0);
144474b323a9SMatthias Ringwald             break;
1445b435e062SMatthias Ringwald #endif
1446b435e062SMatthias Ringwald 
1447b435e062SMatthias Ringwald #ifdef ENABLE_LE_DATA_LENGTH_EXTENSION
1448dcd678baSMatthias Ringwald         case HCI_INIT_LE_READ_MAX_DATA_LENGTH:
1449dcd678baSMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_LE_READ_MAX_DATA_LENGTH;
1450dcd678baSMatthias Ringwald             hci_send_cmd(&hci_le_read_maximum_data_length);
1451dcd678baSMatthias Ringwald             break;
1452dcd678baSMatthias Ringwald         case HCI_INIT_LE_WRITE_SUGGESTED_DATA_LENGTH:
1453dcd678baSMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_LE_WRITE_SUGGESTED_DATA_LENGTH;
1454b435e062SMatthias Ringwald             hci_send_cmd(&hci_le_write_suggested_default_data_length, hci_stack->le_supported_max_tx_octets, hci_stack->le_supported_max_tx_time);
1455dcd678baSMatthias Ringwald             break;
1456b435e062SMatthias Ringwald #endif
1457b435e062SMatthias Ringwald 
1458b95a5a35SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
14593b6d4121SMatthias Ringwald         case HCI_INIT_READ_WHITE_LIST_SIZE:
14603b6d4121SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_READ_WHITE_LIST_SIZE;
14613b6d4121SMatthias Ringwald             hci_send_cmd(&hci_le_read_white_list_size);
14623b6d4121SMatthias Ringwald             break;
146374b323a9SMatthias Ringwald         case HCI_INIT_LE_SET_SCAN_PARAMETERS:
1464b95a5a35SMatthias Ringwald             // LE Scan Parameters: active scanning, 300 ms interval, 30 ms window, own address type, accept all advs
146574b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_LE_SET_SCAN_PARAMETERS;
1466b95a5a35SMatthias Ringwald             hci_send_cmd(&hci_le_set_scan_parameters, 1, 0x1e0, 0x30, hci_stack->le_own_addr_type, 0);
146774b323a9SMatthias Ringwald             break;
146874b323a9SMatthias Ringwald #endif
146974b323a9SMatthias Ringwald         default:
147074b323a9SMatthias Ringwald             return;
147174b323a9SMatthias Ringwald     }
147255975f88SMatthias Ringwald }
147355975f88SMatthias Ringwald 
1474a650ba4dSMatthias Ringwald static void hci_init_done(void){
1475a650ba4dSMatthias Ringwald     // done. tell the app
1476a650ba4dSMatthias Ringwald     log_info("hci_init_done -> HCI_STATE_WORKING");
1477a650ba4dSMatthias Ringwald     hci_stack->state = HCI_STATE_WORKING;
1478a650ba4dSMatthias Ringwald     hci_emit_state();
1479a650ba4dSMatthias Ringwald     hci_run();
1480a650ba4dSMatthias Ringwald }
1481a650ba4dSMatthias Ringwald 
14826155b3d3S[email protected] static void hci_initializing_event_handler(uint8_t * packet, uint16_t size){
1483384b59deSMatthias Ringwald 
1484384b59deSMatthias Ringwald     UNUSED(size);   // ok: less than 6 bytes are read from our buffer
14859ec2630cSMatthias Ringwald 
1486a2481739S[email protected]     uint8_t command_completed = 0;
1487c4633093SMatthias Ringwald 
14880e2df43fSMatthias Ringwald     if (hci_event_packet_get_type(packet) == HCI_EVENT_COMMAND_COMPLETE){
1489f8fbdce0SMatthias Ringwald         uint16_t opcode = little_endian_read_16(packet,3);
14906155b3d3S[email protected]         if (opcode == hci_stack->last_cmd_opcode){
1491a2481739S[email protected]             command_completed = 1;
1492148ca237SMatthias Ringwald             log_debug("Command complete for expected opcode %04x at substate %u", opcode, hci_stack->substate);
14936155b3d3S[email protected]         } else {
1494d58dd308SMatthias Ringwald             log_info("Command complete for different opcode %04x, expected %04x, at substate %u", opcode, hci_stack->last_cmd_opcode, hci_stack->substate);
14956155b3d3S[email protected]         }
14966155b3d3S[email protected]     }
14970f97eae7SMatthias Ringwald 
14980e2df43fSMatthias Ringwald     if (hci_event_packet_get_type(packet) == HCI_EVENT_COMMAND_STATUS){
14996155b3d3S[email protected]         uint8_t  status = packet[2];
1500f8fbdce0SMatthias Ringwald         uint16_t opcode = little_endian_read_16(packet,4);
15016155b3d3S[email protected]         if (opcode == hci_stack->last_cmd_opcode){
15026155b3d3S[email protected]             if (status){
1503a2481739S[email protected]                 command_completed = 1;
1504148ca237SMatthias Ringwald                 log_debug("Command status error 0x%02x for expected opcode %04x at substate %u", status, opcode, hci_stack->substate);
15056155b3d3S[email protected]             } else {
15066155b3d3S[email protected]                 log_info("Command status OK for expected opcode %04x, waiting for command complete", opcode);
15076155b3d3S[email protected]             }
15086155b3d3S[email protected]         } else {
1509148ca237SMatthias Ringwald             log_debug("Command status for opcode %04x, expected %04x", opcode, hci_stack->last_cmd_opcode);
15106155b3d3S[email protected]         }
15116155b3d3S[email protected]     }
15120f97eae7SMatthias Ringwald 
151306b9e820SMatthias Ringwald #if !defined(HAVE_PLATFORM_IPHONE_OS) && !defined (HAVE_HOST_CONTROLLER_API)
151406b9e820SMatthias Ringwald 
1515e47e68c7SMatthias Ringwald     // Vendor == CSR
15160e2df43fSMatthias Ringwald     if (hci_stack->substate == HCI_INIT_W4_CUSTOM_INIT && hci_event_packet_get_type(packet) == HCI_EVENT_VENDOR_SPECIFIC){
1517e47e68c7SMatthias Ringwald         // TODO: track actual command
1518e47e68c7SMatthias Ringwald         command_completed = 1;
1519e47e68c7SMatthias Ringwald     }
1520a2481739S[email protected] 
15214e9daa6fSMatthias Ringwald     // Vendor == Toshiba
15220e2df43fSMatthias Ringwald     if (hci_stack->substate == HCI_INIT_W4_SEND_BAUD_CHANGE && hci_event_packet_get_type(packet) == HCI_EVENT_VENDOR_SPECIFIC){
15234e9daa6fSMatthias Ringwald         // TODO: track actual command
15244e9daa6fSMatthias Ringwald         command_completed = 1;
1525004902f1SMatthias Ringwald         // Fix: no HCI Command Complete received, so num_cmd_packets not reset
1526004902f1SMatthias Ringwald         hci_stack->num_cmd_packets = 1;
15274e9daa6fSMatthias Ringwald     }
15284e9daa6fSMatthias Ringwald 
15290f97eae7SMatthias Ringwald     // Late response (> 100 ms) for HCI Reset e.g. on Toshiba TC35661:
15300f97eae7SMatthias Ringwald     // Command complete for HCI Reset arrives after we've resent the HCI Reset command
15310f97eae7SMatthias Ringwald     //
15320f97eae7SMatthias Ringwald     // HCI Reset
15330f97eae7SMatthias Ringwald     // Timeout 100 ms
15340f97eae7SMatthias Ringwald     // HCI Reset
15350f97eae7SMatthias Ringwald     // Command Complete Reset
15360f97eae7SMatthias Ringwald     // HCI Read Local Version Information
15370f97eae7SMatthias Ringwald     // Command Complete Reset - but we expected Command Complete Read Local Version Information
15380f97eae7SMatthias Ringwald     // hang...
15390f97eae7SMatthias Ringwald     //
15400f97eae7SMatthias Ringwald     // Fix: Command Complete for HCI Reset in HCI_INIT_W4_SEND_READ_LOCAL_VERSION_INFORMATION trigger resend
15410f97eae7SMatthias Ringwald     if (!command_completed
15420e2df43fSMatthias Ringwald             && hci_event_packet_get_type(packet) == HCI_EVENT_COMMAND_COMPLETE
15430f97eae7SMatthias Ringwald             && hci_stack->substate == HCI_INIT_W4_SEND_READ_LOCAL_VERSION_INFORMATION){
15440f97eae7SMatthias Ringwald 
1545f8fbdce0SMatthias Ringwald         uint16_t opcode = little_endian_read_16(packet,3);
15460f97eae7SMatthias Ringwald         if (opcode == hci_reset.opcode){
15470f97eae7SMatthias Ringwald             hci_stack->substate = HCI_INIT_SEND_READ_LOCAL_VERSION_INFORMATION;
15480f97eae7SMatthias Ringwald             return;
15490f97eae7SMatthias Ringwald         }
15500f97eae7SMatthias Ringwald     }
15510f97eae7SMatthias Ringwald 
15529f007422SMatthias Ringwald     // CSR & H5
15539f007422SMatthias Ringwald     // Fix: Command Complete for HCI Reset in HCI_INIT_W4_SEND_READ_LOCAL_VERSION_INFORMATION trigger resend
15549f007422SMatthias Ringwald     if (!command_completed
15559f007422SMatthias Ringwald             && hci_event_packet_get_type(packet) == HCI_EVENT_COMMAND_COMPLETE
15569f007422SMatthias Ringwald             && hci_stack->substate == HCI_INIT_W4_READ_LOCAL_SUPPORTED_COMMANDS){
15579f007422SMatthias Ringwald 
15589f007422SMatthias Ringwald         uint16_t opcode = little_endian_read_16(packet,3);
15599f007422SMatthias Ringwald         if (opcode == hci_reset.opcode){
15609f007422SMatthias Ringwald             hci_stack->substate = HCI_INIT_READ_LOCAL_SUPPORTED_COMMANDS;
15619f007422SMatthias Ringwald             return;
15629f007422SMatthias Ringwald         }
15639f007422SMatthias Ringwald     }
15649f007422SMatthias Ringwald 
15659f007422SMatthias Ringwald     // on CSR with BCSP/H5, the reset resend timeout leads to substate == HCI_INIT_SEND_RESET or HCI_INIT_SEND_RESET_CSR_WARM_BOOT
15669f007422SMatthias Ringwald     // fix: Correct substate and behave as command below
15679f007422SMatthias Ringwald     if (command_completed){
15689f007422SMatthias Ringwald         switch (hci_stack->substate){
15699f007422SMatthias Ringwald             case HCI_INIT_SEND_RESET:
15709f007422SMatthias Ringwald                 hci_stack->substate = HCI_INIT_W4_SEND_RESET;
15719f007422SMatthias Ringwald                 break;
15729f007422SMatthias Ringwald             case HCI_INIT_SEND_RESET_CSR_WARM_BOOT:
15739f007422SMatthias Ringwald                 hci_stack->substate = HCI_INIT_W4_CUSTOM_INIT_CSR_WARM_BOOT;
15749f007422SMatthias Ringwald                 break;
15759f007422SMatthias Ringwald             default:
15769f007422SMatthias Ringwald                 break;
15779f007422SMatthias Ringwald         }
15789f007422SMatthias Ringwald     }
15790f97eae7SMatthias Ringwald 
158006b9e820SMatthias Ringwald #endif
15810f97eae7SMatthias Ringwald 
1582a2481739S[email protected]     if (!command_completed) return;
1583a2481739S[email protected] 
158406b9e820SMatthias Ringwald     int need_baud_change = 0;
158506b9e820SMatthias Ringwald     int need_addr_change = 0;
158606b9e820SMatthias Ringwald 
158706b9e820SMatthias Ringwald #if !defined(HAVE_PLATFORM_IPHONE_OS) && !defined (HAVE_HOST_CONTROLLER_API)
158806b9e820SMatthias Ringwald     need_baud_change = hci_stack->config
15893fb36a29SMatthias Ringwald                         && hci_stack->chipset
15903fb36a29SMatthias Ringwald                         && hci_stack->chipset->set_baudrate_command
1591db8bc6ffSMatthias Ringwald                         && hci_stack->hci_transport->set_baudrate
15929796ebeaSMatthias Ringwald                         && ((hci_transport_config_uart_t *)hci_stack->config)->baudrate_main;
1593db8bc6ffSMatthias Ringwald 
159406b9e820SMatthias Ringwald     need_addr_change = hci_stack->custom_bd_addr_set
15953fb36a29SMatthias Ringwald                         && hci_stack->chipset
15963fb36a29SMatthias Ringwald                         && hci_stack->chipset->set_bd_addr_command;
159706b9e820SMatthias Ringwald #endif
1598a80162e9SMatthias Ringwald 
15995c363727SMatthias Ringwald     switch(hci_stack->substate){
160006b9e820SMatthias Ringwald 
160106b9e820SMatthias Ringwald #if !defined(HAVE_PLATFORM_IPHONE_OS) && !defined (HAVE_HOST_CONTROLLER_API)
16029f007422SMatthias Ringwald         case HCI_INIT_SEND_RESET:
1603d58dd308SMatthias Ringwald             // on CSR with BCSP/H5, resend triggers resend of HCI Reset and leads to substate == HCI_INIT_SEND_RESET
16049f007422SMatthias Ringwald             // fix: just correct substate and behave as command below
16059f007422SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_SEND_RESET;
16069f007422SMatthias Ringwald             btstack_run_loop_remove_timer(&hci_stack->timeout);
16079f007422SMatthias Ringwald             break;
160874b323a9SMatthias Ringwald         case HCI_INIT_W4_SEND_RESET:
1609528a4a3bSMatthias Ringwald             btstack_run_loop_remove_timer(&hci_stack->timeout);
161076fcb19bSMatthias Ringwald             break;
1611e90bae01SMatthias Ringwald         case HCI_INIT_W4_SEND_READ_LOCAL_NAME:
1612e90bae01SMatthias Ringwald             log_info("Received local name, need baud change %d", need_baud_change);
16132f48d920SMatthias Ringwald             if (need_baud_change){
16142f48d920SMatthias Ringwald                 hci_stack->substate = HCI_INIT_SEND_BAUD_CHANGE;
16152f48d920SMatthias Ringwald                 return;
16162f48d920SMatthias Ringwald             }
161753860077SMatthias Ringwald             // skip baud change
161874b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_CUSTOM_INIT;
161974b323a9SMatthias Ringwald             return;
1620a80162e9SMatthias Ringwald         case HCI_INIT_W4_SEND_BAUD_CHANGE:
16214696bddbSMatthias Ringwald             // for STLC2500D, baud rate change already happened.
1622fab26ab3SMatthias Ringwald             // for others, baud rate gets changed now
162361f37892SMatthias Ringwald             if ((hci_stack->manufacturer != BLUETOOTH_COMPANY_ID_ST_MICROELECTRONICS) && need_baud_change){
162496b53536SMatthias Ringwald                 uint32_t baud_rate = hci_transport_uart_get_main_baud_rate();
1625cd724cb7SMatthias Ringwald                 log_info("Local baud rate change to %"PRIu32"(w4_send_baud_change)", baud_rate);
1626fab26ab3SMatthias Ringwald                 hci_stack->hci_transport->set_baudrate(baud_rate);
16274696bddbSMatthias Ringwald             }
162874b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_CUSTOM_INIT;
162974b323a9SMatthias Ringwald             return;
1630a80162e9SMatthias Ringwald         case HCI_INIT_W4_CUSTOM_INIT_CSR_WARM_BOOT:
1631528a4a3bSMatthias Ringwald             btstack_run_loop_remove_timer(&hci_stack->timeout);
1632a80162e9SMatthias Ringwald             hci_stack->substate = HCI_INIT_CUSTOM_INIT;
1633a80162e9SMatthias Ringwald             return;
163474b323a9SMatthias Ringwald         case HCI_INIT_W4_CUSTOM_INIT:
163574b323a9SMatthias Ringwald             // repeat custom init
163674b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_CUSTOM_INIT;
163774b323a9SMatthias Ringwald             return;
163806b9e820SMatthias Ringwald #else
163906b9e820SMatthias Ringwald         case HCI_INIT_W4_SEND_RESET:
164006b9e820SMatthias Ringwald             hci_stack->substate = HCI_INIT_READ_LOCAL_SUPPORTED_COMMANDS;
164106b9e820SMatthias Ringwald             return ;
164206b9e820SMatthias Ringwald #endif
164306b9e820SMatthias Ringwald 
1644a828a756SMatthias Ringwald         case HCI_INIT_W4_READ_LOCAL_SUPPORTED_COMMANDS:
1645efd3b327SMatthias Ringwald             if (need_baud_change &&
1646efd3b327SMatthias Ringwald               ((hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_BROADCOM_CORPORATION) ||
1647efd3b327SMatthias Ringwald                (hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_EM_MICROELECTRONIC_MARIN_SA))) {
1648eb3a5314SMatthias Ringwald                 hci_stack->substate = HCI_INIT_SEND_BAUD_CHANGE_BCM;
1649eb3a5314SMatthias Ringwald                 return;
1650eb3a5314SMatthias Ringwald             }
165153860077SMatthias Ringwald             if (need_addr_change){
165253860077SMatthias Ringwald                 hci_stack->substate = HCI_INIT_SET_BD_ADDR;
165353860077SMatthias Ringwald                 return;
165453860077SMatthias Ringwald             }
165553860077SMatthias Ringwald             hci_stack->substate = HCI_INIT_READ_BD_ADDR;
165653860077SMatthias Ringwald             return;
165706b9e820SMatthias Ringwald #if !defined(HAVE_PLATFORM_IPHONE_OS) && !defined (HAVE_HOST_CONTROLLER_API)
16587224be7eSMatthias Ringwald         case HCI_INIT_W4_SEND_BAUD_CHANGE_BCM:
16597224be7eSMatthias Ringwald             if (need_baud_change){
166096b53536SMatthias Ringwald                 uint32_t baud_rate = hci_transport_uart_get_main_baud_rate();
1661cd724cb7SMatthias Ringwald                 log_info("Local baud rate change to %"PRIu32"(w4_send_baud_change_bcm))", baud_rate);
1662fab26ab3SMatthias Ringwald                 hci_stack->hci_transport->set_baudrate(baud_rate);
16637224be7eSMatthias Ringwald             }
1664eb3a5314SMatthias Ringwald             if (need_addr_change){
1665eb3a5314SMatthias Ringwald                 hci_stack->substate = HCI_INIT_SET_BD_ADDR;
1666eb3a5314SMatthias Ringwald                 return;
1667eb3a5314SMatthias Ringwald             }
1668eb3a5314SMatthias Ringwald             hci_stack->substate = HCI_INIT_READ_BD_ADDR;
1669eb3a5314SMatthias Ringwald             return;
167053860077SMatthias Ringwald         case HCI_INIT_W4_SET_BD_ADDR:
16716ca9a99aSMatthias Ringwald             // for STLC2500D + ATWILC3000, bd addr change only gets active after sending reset command
16726ca9a99aSMatthias Ringwald             if ((hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_ST_MICROELECTRONICS)
16736ca9a99aSMatthias Ringwald             ||  (hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_ATMEL_CORPORATION)){
167453860077SMatthias Ringwald                 hci_stack->substate = HCI_INIT_SEND_RESET_ST_WARM_BOOT;
167553860077SMatthias Ringwald                 return;
167653860077SMatthias Ringwald             }
167753860077SMatthias Ringwald             // skipping st warm boot
167853860077SMatthias Ringwald             hci_stack->substate = HCI_INIT_READ_BD_ADDR;
167953860077SMatthias Ringwald             return;
168053860077SMatthias Ringwald         case HCI_INIT_W4_SEND_RESET_ST_WARM_BOOT:
168153860077SMatthias Ringwald             hci_stack->substate = HCI_INIT_READ_BD_ADDR;
168253860077SMatthias Ringwald             return;
168306b9e820SMatthias Ringwald #endif
168453860077SMatthias Ringwald         case HCI_INIT_W4_READ_BD_ADDR:
168553860077SMatthias Ringwald             // only read buffer size if supported
168653860077SMatthias Ringwald             if (hci_stack->local_supported_commands[0] & 0x01) {
168753860077SMatthias Ringwald                 hci_stack->substate = HCI_INIT_READ_BUFFER_SIZE;
168853860077SMatthias Ringwald                 return;
168953860077SMatthias Ringwald             }
169053860077SMatthias Ringwald             // skipping read buffer size
169153860077SMatthias Ringwald             hci_stack->substate = HCI_INIT_READ_LOCAL_SUPPORTED_FEATURES;
1692a828a756SMatthias Ringwald             return;
169374b323a9SMatthias Ringwald         case HCI_INIT_W4_SET_EVENT_MASK:
16946155b3d3S[email protected]             // skip Classic init commands for LE only chipsets
16956155b3d3S[email protected]             if (!hci_classic_supported()){
16962c68f164SMatthias Ringwald #ifdef ENABLE_BLE
16976155b3d3S[email protected]                 if (hci_le_supported()){
169874b323a9SMatthias Ringwald                     hci_stack->substate = HCI_INIT_LE_READ_BUFFER_SIZE; // skip all classic command
169974b323a9SMatthias Ringwald                     return;
17002c68f164SMatthias Ringwald                 }
17012c68f164SMatthias Ringwald #endif
17026155b3d3S[email protected]                 log_error("Neither BR/EDR nor LE supported");
1703a650ba4dSMatthias Ringwald                 hci_init_done();
170474b323a9SMatthias Ringwald                 return;
17056155b3d3S[email protected]             }
170615a95bd5SMatthias Ringwald             if (!gap_ssp_supported()){
17075c363727SMatthias Ringwald                 hci_stack->substate = HCI_INIT_WRITE_PAGE_TIMEOUT;
170874b323a9SMatthias Ringwald                 return;
17096155b3d3S[email protected]             }
17106155b3d3S[email protected]             break;
1711903ea03aSMatthias Ringwald #ifdef ENABLE_BLE
1712a828a756SMatthias Ringwald         case HCI_INIT_W4_LE_READ_BUFFER_SIZE:
1713a828a756SMatthias Ringwald             // skip write le host if not supported (e.g. on LE only EM9301)
1714a828a756SMatthias Ringwald             if (hci_stack->local_supported_commands[0] & 0x02) break;
1715daabb8b8SMatthias Ringwald             hci_stack->substate = HCI_INIT_LE_SET_EVENT_MASK;
1716daabb8b8SMatthias Ringwald             return;
1717daabb8b8SMatthias Ringwald 
1718b435e062SMatthias Ringwald #ifdef ENABLE_LE_DATA_LENGTH_EXTENSION
1719b435e062SMatthias Ringwald         case HCI_INIT_W4_WRITE_LE_HOST_SUPPORTED:
17206fab74dbSMatthias Ringwald             log_info("Supported commands %x", hci_stack->local_supported_commands[0] & 0x30);
1721b435e062SMatthias Ringwald             if ((hci_stack->local_supported_commands[0] & 0x30) == 0x30){
172280d7d618SMatthias Ringwald                 hci_stack->substate = HCI_INIT_LE_SET_EVENT_MASK;
1723b435e062SMatthias Ringwald                 return;
1724b435e062SMatthias Ringwald             }
1725b435e062SMatthias Ringwald             // explicit fall through to reduce repetitions
1726b435e062SMatthias Ringwald 
1727b435e062SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
1728b435e062SMatthias Ringwald             hci_stack->substate = HCI_INIT_READ_WHITE_LIST_SIZE;
1729903ea03aSMatthias Ringwald #else
1730903ea03aSMatthias Ringwald             hci_init_done();
1731903ea03aSMatthias Ringwald #endif
1732a828a756SMatthias Ringwald             return;
173306337f4fSMatthias Ringwald #endif  /* ENABLE_LE_DATA_LENGTH_EXTENSION */
173406337f4fSMatthias Ringwald 
173506337f4fSMatthias Ringwald #endif  /* ENABLE_BLE */
1736b435e062SMatthias Ringwald 
173771c4de7aSMatthias Ringwald #ifdef ENABLE_SCO_OVER_HCI
1738729ed62eSMatthias Ringwald         case HCI_INIT_W4_WRITE_SCAN_ENABLE:
17393905afbfSMatthias Ringwald             // skip write synchronous flow control if not supported
17403905afbfSMatthias Ringwald             if (hci_stack->local_supported_commands[0] & 0x04) break;
17413905afbfSMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_WRITE_SYNCHRONOUS_FLOW_CONTROL_ENABLE;
17423905afbfSMatthias Ringwald             // explicit fall through to reduce repetitions
17433905afbfSMatthias Ringwald 
1744729ed62eSMatthias Ringwald         case HCI_INIT_W4_WRITE_SYNCHRONOUS_FLOW_CONTROL_ENABLE:
17453905afbfSMatthias Ringwald             // skip write default erroneous data reporting if not supported
17463905afbfSMatthias Ringwald             if (hci_stack->local_supported_commands[0] & 0x08) break;
17473905afbfSMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_WRITE_DEFAULT_ERRONEOUS_DATA_REPORTING;
17483905afbfSMatthias Ringwald             // explicit fall through to reduce repetitions
17493905afbfSMatthias Ringwald 
1750f064e0bbSMatthias Ringwald         case HCI_INIT_W4_WRITE_DEFAULT_ERRONEOUS_DATA_REPORTING:
1751a42798c3SMatthias Ringwald             // skip bcm set sco pcm config on non-Broadcom chipsets
175261f37892SMatthias Ringwald             if (hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_BROADCOM_CORPORATION) break;
1753a42798c3SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_BCM_WRITE_SCO_PCM_INT;
1754a42798c3SMatthias Ringwald             // explicit fall through to reduce repetitions
1755a42798c3SMatthias Ringwald 
1756a42798c3SMatthias Ringwald         case HCI_INIT_W4_BCM_WRITE_SCO_PCM_INT:
1757729ed62eSMatthias Ringwald             if (!hci_le_supported()){
1758729ed62eSMatthias Ringwald                 // SKIP LE init for Classic only configuration
1759a650ba4dSMatthias Ringwald                 hci_init_done();
1760729ed62eSMatthias Ringwald                 return;
1761729ed62eSMatthias Ringwald             }
1762729ed62eSMatthias Ringwald             break;
1763f3b012f9SMatthias Ringwald 
1764f3b012f9SMatthias Ringwald #else /* !ENABLE_SCO_OVER_HCI */
1765f3b012f9SMatthias Ringwald 
176674b323a9SMatthias Ringwald         case HCI_INIT_W4_WRITE_SCAN_ENABLE:
1767f3b012f9SMatthias Ringwald #ifdef ENABLE_BLE
1768f3b012f9SMatthias Ringwald             if (hci_le_supported()){
1769f3b012f9SMatthias Ringwald                 hci_stack->substate = HCI_INIT_LE_READ_BUFFER_SIZE;
177074b323a9SMatthias Ringwald                 return;
17716155b3d3S[email protected]             }
1772729ed62eSMatthias Ringwald #endif
1773f3b012f9SMatthias Ringwald             // SKIP LE init for Classic only configuration
1774f3b012f9SMatthias Ringwald             hci_init_done();
1775f3b012f9SMatthias Ringwald             return;
1776f3b012f9SMatthias Ringwald #endif /* ENABLE_SCO_OVER_HCI */
1777f3b012f9SMatthias Ringwald 
1778a4e96e78SMatthias Ringwald // avoid compile error due to duplicate cases: HCI_INIT_W4_BCM_WRITE_SCO_PCM_INT == HCI_INIT_DONE-1
1779a4e96e78SMatthias Ringwald #if defined(ENABLE_BLE) || defined(ENABLE_LE_DATA_LENGTH_EXTENSION) || defined(ENABLE_LE_CENTRAL)
1780a650ba4dSMatthias Ringwald         // Response to command before init done state -> init done
1781a650ba4dSMatthias Ringwald         case (HCI_INIT_DONE-1):
1782a650ba4dSMatthias Ringwald             hci_init_done();
1783a650ba4dSMatthias Ringwald             return;
1784a4e96e78SMatthias Ringwald #endif
1785a650ba4dSMatthias Ringwald 
17866155b3d3S[email protected]         default:
178774b323a9SMatthias Ringwald             break;
17886155b3d3S[email protected]     }
178955975f88SMatthias Ringwald     hci_initializing_next_state();
17906155b3d3S[email protected] }
17916155b3d3S[email protected] 
17920bbba85bSMatthias Ringwald static void hci_handle_connection_failed(hci_connection_t * conn, uint8_t status){
1793229331c6SMatthias Ringwald     log_info("Outgoing connection to %s failed", bd_addr_to_str(conn->address));
17940bbba85bSMatthias Ringwald     bd_addr_t bd_address;
17950bbba85bSMatthias Ringwald     memcpy(&bd_address, conn->address, 6);
17960bbba85bSMatthias Ringwald 
17976bc9fa5eSMatthias Ringwald #ifdef ENABLE_CLASSIC
17986bc9fa5eSMatthias Ringwald     // cache needed data
17996bc9fa5eSMatthias Ringwald     int notify_dedicated_bonding_failed = conn->bonding_flags & BONDING_DEDICATED;
18006bc9fa5eSMatthias Ringwald #endif
18016bc9fa5eSMatthias Ringwald 
18020bbba85bSMatthias Ringwald     // connection failed, remove entry
18030bbba85bSMatthias Ringwald     btstack_linked_list_remove(&hci_stack->connections, (btstack_linked_item_t *) conn);
18040bbba85bSMatthias Ringwald     btstack_memory_hci_connection_free( conn );
18050bbba85bSMatthias Ringwald 
18066bc9fa5eSMatthias Ringwald #ifdef ENABLE_CLASSIC
18070bbba85bSMatthias Ringwald     // notify client if dedicated bonding
18080bbba85bSMatthias Ringwald     if (notify_dedicated_bonding_failed){
18090bbba85bSMatthias Ringwald         log_info("hci notify_dedicated_bonding_failed");
18100bbba85bSMatthias Ringwald         hci_emit_dedicated_bonding_result(bd_address, status);
18110bbba85bSMatthias Ringwald     }
18120bbba85bSMatthias Ringwald 
18130bbba85bSMatthias Ringwald     // if authentication error, also delete link key
18140bbba85bSMatthias Ringwald     if (status == ERROR_CODE_AUTHENTICATION_FAILURE) {
18150bbba85bSMatthias Ringwald         gap_drop_link_key_for_bd_addr(bd_address);
18160bbba85bSMatthias Ringwald     }
18176bc9fa5eSMatthias Ringwald #endif
18180bbba85bSMatthias Ringwald }
18190bbba85bSMatthias Ringwald 
182016833f0aSmatthias.ringwald static void event_handler(uint8_t *packet, int size){
1821e76a89eeS[email protected] 
1822e76a89eeS[email protected]     uint16_t event_length = packet[1];
1823e76a89eeS[email protected] 
1824e76a89eeS[email protected]     // assert packet is complete
1825e76a89eeS[email protected]     if (size != event_length + 2){
18263dce6128SMatthias Ringwald         log_error("event_handler called with packet of wrong size %d, expected %u => dropping packet", size, event_length + 2);
1827e76a89eeS[email protected]         return;
1828e76a89eeS[email protected]     }
1829e76a89eeS[email protected] 
18301281a47eSmatthias.ringwald     bd_addr_t addr;
183196a45072S[email protected]     bd_addr_type_t addr_type;
1832fe1ed1b8Smatthias.ringwald     hci_con_handle_t handle;
18331f7b95a1Smatthias.ringwald     hci_connection_t * conn;
183456cf178bSmatthias.ringwald     int i;
1835c57fa566SMatthias Ringwald     int create_connection_cmd;
1836c57fa566SMatthias Ringwald 
18370014e02cSMatthias Ringwald #ifdef ENABLE_CLASSIC
18380014e02cSMatthias Ringwald     uint8_t link_type;
18390014e02cSMatthias Ringwald #endif
184035454696SMatthias Ringwald 
18410e2df43fSMatthias Ringwald     // log_info("HCI:EVENT:%02x", hci_event_packet_get_type(packet));
18425909f7f2Smatthias.ringwald 
18430e2df43fSMatthias Ringwald     switch (hci_event_packet_get_type(packet)) {
184422909952Smatthias.ringwald 
18456772a24cSmatthias.ringwald         case HCI_EVENT_COMMAND_COMPLETE:
18466bef4003SMatthias Ringwald             // get num cmd packets - limit to 1 to reduce complexity
18476bef4003SMatthias Ringwald             hci_stack->num_cmd_packets = packet[2] ? 1 : 0;
18487ec5eeaaSmatthias.ringwald 
18499e263bd7SMatthias Ringwald             if (HCI_EVENT_IS_COMMAND_COMPLETE(packet, hci_read_local_name)){
185006b9e820SMatthias Ringwald                 if (packet[5]) break;
18519e263bd7SMatthias Ringwald                 // terminate, name 248 chars
18529e263bd7SMatthias Ringwald                 packet[6+248] = 0;
18539e263bd7SMatthias Ringwald                 log_info("local name: %s", &packet[6]);
18549e263bd7SMatthias Ringwald             }
1855073bd0faSMatthias Ringwald             if (HCI_EVENT_IS_COMMAND_COMPLETE(packet, hci_read_buffer_size)){
18561d279b20Smatthias.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"
1857429122ccSMatthias Ringwald                 if (hci_stack->state == HCI_STATE_INITIALIZING){
1858429122ccSMatthias Ringwald                     uint16_t acl_len = little_endian_read_16(packet, 6);
1859429122ccSMatthias Ringwald                     uint16_t sco_len = packet[8];
1860429122ccSMatthias Ringwald 
1861429122ccSMatthias Ringwald                     // determine usable ACL/SCO payload size
1862429122ccSMatthias Ringwald                     hci_stack->acl_data_packet_length = btstack_min(acl_len, HCI_ACL_PAYLOAD_SIZE);
1863429122ccSMatthias Ringwald                     hci_stack->sco_data_packet_length = btstack_min(sco_len, HCI_ACL_PAYLOAD_SIZE);
1864429122ccSMatthias Ringwald 
1865f8fbdce0SMatthias Ringwald                     hci_stack->acl_packets_total_num  = little_endian_read_16(packet, 9);
1866f8fbdce0SMatthias Ringwald                     hci_stack->sco_packets_total_num  = little_endian_read_16(packet, 11);
1867a8b12447S[email protected] 
1868429122ccSMatthias Ringwald                     log_info("hci_read_buffer_size: ACL size module %u -> used %u, count %u / SCO size %u, count %u",
1869429122ccSMatthias Ringwald                              acl_len, hci_stack->acl_data_packet_length, hci_stack->acl_packets_total_num,
18701a06f663S[email protected]                              hci_stack->sco_data_packet_length, hci_stack->sco_packets_total_num);
1871e2edc0c3Smatthias.ringwald                 }
187256cf178bSmatthias.ringwald             }
1873a9a4c409SMatthias Ringwald #ifdef ENABLE_BLE
1874073bd0faSMatthias Ringwald             if (HCI_EVENT_IS_COMMAND_COMPLETE(packet, hci_le_read_buffer_size)){
1875f8fbdce0SMatthias Ringwald                 hci_stack->le_data_packets_length = little_endian_read_16(packet, 6);
1876ee303eddS[email protected]                 hci_stack->le_acl_packets_total_num  = packet[8];
18776c26b087S[email protected]                 // determine usable ACL payload size
18786c26b087S[email protected]                 if (HCI_ACL_PAYLOAD_SIZE < hci_stack->le_data_packets_length){
18796c26b087S[email protected]                     hci_stack->le_data_packets_length = HCI_ACL_PAYLOAD_SIZE;
18806c26b087S[email protected]                 }
18819da54300S[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);
188265a46ef3S[email protected]             }
1883b435e062SMatthias Ringwald #endif
1884b435e062SMatthias Ringwald #ifdef ENABLE_LE_DATA_LENGTH_EXTENSION
1885dcd678baSMatthias Ringwald             if (HCI_EVENT_IS_COMMAND_COMPLETE(packet, hci_le_read_maximum_data_length)){
1886dcd678baSMatthias Ringwald                 hci_stack->le_supported_max_tx_octets = little_endian_read_16(packet, 6);
1887dcd678baSMatthias Ringwald                 hci_stack->le_supported_max_tx_time = little_endian_read_16(packet, 8);
1888dcd678baSMatthias Ringwald                 log_info("hci_le_read_maximum_data_length: tx octets %u, tx time %u us", hci_stack->le_supported_max_tx_octets, hci_stack->le_supported_max_tx_time);
1889dcd678baSMatthias Ringwald             }
1890b435e062SMatthias Ringwald #endif
1891d70217a2SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
1892073bd0faSMatthias Ringwald             if (HCI_EVENT_IS_COMMAND_COMPLETE(packet, hci_le_read_white_list_size)){
1893e691bb38SMatthias Ringwald                 hci_stack->le_whitelist_capacity = packet[6];
189415d0a15bSMatthias Ringwald                 log_info("hci_le_read_white_list_size: size %u", hci_stack->le_whitelist_capacity);
18953b6d4121SMatthias Ringwald             }
189665a46ef3S[email protected] #endif
1897073bd0faSMatthias Ringwald             if (HCI_EVENT_IS_COMMAND_COMPLETE(packet, hci_read_bd_addr)) {
1898724d70a2SMatthias Ringwald                 reverse_bd_addr(&packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE + 1],
1899724d70a2SMatthias Ringwald 				hci_stack->local_bd_addr);
19009da54300S[email protected]                 log_info("Local Address, Status: 0x%02x: Addr: %s",
19013a9fb326S[email protected]                     packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE], bd_addr_to_str(hci_stack->local_bd_addr));
190233373e40SMatthias Ringwald #ifdef ENABLE_CLASSIC
19031624665aSMatthias Ringwald                 if (hci_stack->link_key_db){
19041624665aSMatthias Ringwald                     hci_stack->link_key_db->set_local_bd_addr(hci_stack->local_bd_addr);
19051624665aSMatthias Ringwald                 }
190633373e40SMatthias Ringwald #endif
1907188981d2Smatthias.ringwald             }
190835454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
1909073bd0faSMatthias Ringwald             if (HCI_EVENT_IS_COMMAND_COMPLETE(packet, hci_write_scan_enable)){
19103a9fb326S[email protected]                 hci_emit_discoverable_enabled(hci_stack->discoverable);
1911381fbed8Smatthias.ringwald             }
1912f5875de5SMatthias Ringwald             if (HCI_EVENT_IS_COMMAND_COMPLETE(packet, hci_inquiry_cancel)){
1913f5875de5SMatthias Ringwald                 if (hci_stack->inquiry_state == GAP_INQUIRY_STATE_W4_CANCELLED){
1914f5875de5SMatthias Ringwald                     hci_stack->inquiry_state = GAP_INQUIRY_STATE_IDLE;
1915f5875de5SMatthias Ringwald                     uint8_t event[] = { GAP_EVENT_INQUIRY_COMPLETE, 1, 0};
1916f5875de5SMatthias Ringwald                     hci_emit_event(event, sizeof(event), 1);
1917f5875de5SMatthias Ringwald                 }
1918f5875de5SMatthias Ringwald             }
191935454696SMatthias Ringwald #endif
192035454696SMatthias Ringwald 
192165389bfcS[email protected]             // Note: HCI init checks
1922073bd0faSMatthias Ringwald             if (HCI_EVENT_IS_COMMAND_COMPLETE(packet, hci_read_local_supported_features)){
19233a9fb326S[email protected]                 memcpy(hci_stack->local_supported_features, &packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE+1], 8);
192465389bfcS[email protected] 
192535454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
1926a5a23fc2S[email protected]                 // determine usable ACL packet types based on host buffer size and supported features
1927a5a23fc2S[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]);
19288b96126aSMatthias Ringwald                 log_info("Packet types %04x, eSCO %u", hci_stack->packet_types, hci_extended_sco_link_supported());
192935454696SMatthias Ringwald #endif
1930f5d8d141S[email protected]                 // Classic/LE
1931f5d8d141S[email protected]                 log_info("BR/EDR support %u, LE support %u", hci_classic_supported(), hci_le_supported());
1932559e517eS[email protected]             }
1933073bd0faSMatthias Ringwald             if (HCI_EVENT_IS_COMMAND_COMPLETE(packet, hci_read_local_version_information)){
1934f8fbdce0SMatthias Ringwald                 // hci_stack->hci_version    = little_endian_read_16(packet, 4);
1935f8fbdce0SMatthias Ringwald                 // hci_stack->hci_revision   = little_endian_read_16(packet, 6);
1936f8fbdce0SMatthias Ringwald                 // hci_stack->lmp_version    = little_endian_read_16(packet, 8);
1937f8fbdce0SMatthias Ringwald                 hci_stack->manufacturer   = little_endian_read_16(packet, 10);
1938f8fbdce0SMatthias Ringwald                 // hci_stack->lmp_subversion = little_endian_read_16(packet, 12);
19394696bddbSMatthias Ringwald                 log_info("Manufacturer: 0x%04x", hci_stack->manufacturer);
19404696bddbSMatthias Ringwald             }
1941073bd0faSMatthias Ringwald             if (HCI_EVENT_IS_COMMAND_COMPLETE(packet, hci_read_local_supported_commands)){
1942a828a756SMatthias Ringwald                 hci_stack->local_supported_commands[0] =
1943cd542ed6SMatthias Ringwald                     (packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE+1+14] & 0x80) >> 7 |  // bit 0 = Octet 14, bit 7 / Read Buffer Size
1944cd542ed6SMatthias Ringwald                     (packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE+1+24] & 0x40) >> 5 |  // bit 1 = Octet 24, bit 6 / Write Le Host Supported
1945cd542ed6SMatthias Ringwald                     (packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE+1+10] & 0x10) >> 2 |  // bit 2 = Octet 10, bit 4 / Write Synchronous Flow Control Enable
1946cd542ed6SMatthias Ringwald                     (packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE+1+18] & 0x08)      |  // bit 3 = Octet 18, bit 3 / Write Default Erroneous Data Reporting
1947cd542ed6SMatthias Ringwald                     (packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE+1+34] & 0x01) << 4 |  // bit 4 = Octet 34, bit 0 / LE Write Suggested Default Data Length
1948cd542ed6SMatthias Ringwald                     (packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE+1+35] & 0x08) << 2 |  // bit 5 = Octet 35, bit 3 / LE Read Maximum Data Length
1949cd542ed6SMatthias Ringwald                     (packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE+1+35] & 0x20) << 1;   // bit 6 = Octet 35, bit 5 / LE Set Default PHY
19503905afbfSMatthias Ringwald                     log_info("Local supported commands summary 0x%02x", hci_stack->local_supported_commands[0]);
1951a828a756SMatthias Ringwald             }
1952e8c8828eSMatthias Ringwald #ifdef ENABLE_CLASSIC
1953073bd0faSMatthias Ringwald             if (HCI_EVENT_IS_COMMAND_COMPLETE(packet, hci_write_synchronous_flow_control_enable)){
19545b9b590fSMatthias Ringwald                 if (packet[5] == 0){
19555b9b590fSMatthias Ringwald                     hci_stack->synchronous_flow_control_enabled = 1;
19565b9b590fSMatthias Ringwald                 }
19575b9b590fSMatthias Ringwald             }
1958e8c8828eSMatthias Ringwald #endif
195956cf178bSmatthias.ringwald             break;
196056cf178bSmatthias.ringwald 
19617ec5eeaaSmatthias.ringwald         case HCI_EVENT_COMMAND_STATUS:
19626bef4003SMatthias Ringwald             // get num cmd packets - limit to 1 to reduce complexity
19636bef4003SMatthias Ringwald             hci_stack->num_cmd_packets = packet[3] ? 1 : 0;
1964229331c6SMatthias Ringwald 
1965229331c6SMatthias Ringwald             // check command status to detected failed outgoing connections
1966c57fa566SMatthias Ringwald             create_connection_cmd = 0;
1967c57fa566SMatthias Ringwald #ifdef ENABLE_CLASSIC
1968c57fa566SMatthias Ringwald             if (HCI_EVENT_IS_COMMAND_STATUS(packet, hci_create_connection)){
1969c57fa566SMatthias Ringwald                 create_connection_cmd = 1;
1970c57fa566SMatthias Ringwald             }
1971c57fa566SMatthias Ringwald #endif
1972c57fa566SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
1973c57fa566SMatthias Ringwald             if (HCI_EVENT_IS_COMMAND_STATUS(packet, hci_le_create_connection)){
1974c57fa566SMatthias Ringwald                 create_connection_cmd = 1;
1975c57fa566SMatthias Ringwald             }
1976c57fa566SMatthias Ringwald #endif
1977c57fa566SMatthias Ringwald             if (create_connection_cmd) {
1978229331c6SMatthias Ringwald                 uint8_t status = hci_event_command_status_get_status(packet);
1979229331c6SMatthias Ringwald                 conn = hci_connection_for_bd_addr_and_type(hci_stack->outgoing_addr, hci_stack->outgoing_addr_type);
1980229331c6SMatthias Ringwald                 log_info("command status (create connection), status %x, connection %p, addr %s, type %x", status, conn, bd_addr_to_str(hci_stack->outgoing_addr), hci_stack->outgoing_addr_type);
1981229331c6SMatthias Ringwald 
1982229331c6SMatthias Ringwald                 // reset outgoing address info
1983229331c6SMatthias Ringwald                 memset(hci_stack->outgoing_addr, 0, 6);
1984229331c6SMatthias Ringwald                 hci_stack->outgoing_addr_type = BD_ADDR_TYPE_UNKNOWN;
1985229331c6SMatthias Ringwald 
1986229331c6SMatthias Ringwald                 // error => outgoing connection failed
1987229331c6SMatthias Ringwald                 if ((conn != NULL) && (status != 0)){
1988229331c6SMatthias Ringwald                     hci_handle_connection_failed(conn, status);
1989229331c6SMatthias Ringwald                 }
1990229331c6SMatthias Ringwald             }
19917ec5eeaaSmatthias.ringwald             break;
19927ec5eeaaSmatthias.ringwald 
19932e440c8aS[email protected]         case HCI_EVENT_NUMBER_OF_COMPLETED_PACKETS:{
19942e440c8aS[email protected]             int offset = 3;
199556cf178bSmatthias.ringwald             for (i=0; i<packet[2];i++){
199680117cebSMatthias Ringwald                 handle = little_endian_read_16(packet, offset) & 0x0fff;
19972e440c8aS[email protected]                 offset += 2;
1998f8fbdce0SMatthias Ringwald                 uint16_t num_packets = little_endian_read_16(packet, offset);
19992e440c8aS[email protected]                 offset += 2;
20002e440c8aS[email protected] 
20015061f3afS[email protected]                 conn = hci_connection_for_handle(handle);
200256cf178bSmatthias.ringwald                 if (!conn){
20039da54300S[email protected]                     log_error("hci_number_completed_packet lists unused con handle %u", handle);
200456cf178bSmatthias.ringwald                     continue;
200556cf178bSmatthias.ringwald                 }
200623bed257S[email protected] 
2007e35edcc1S[email protected]                 if (conn->address_type == BD_ADDR_TYPE_SCO){
200835454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
2009e35edcc1S[email protected]                     if (conn->num_sco_packets_sent >= num_packets){
2010e35edcc1S[email protected]                         conn->num_sco_packets_sent -= num_packets;
2011e35edcc1S[email protected]                     } else {
2012e35edcc1S[email protected]                         log_error("hci_number_completed_packets, more sco slots freed then sent.");
2013e35edcc1S[email protected]                         conn->num_sco_packets_sent = 0;
2014e35edcc1S[email protected]                     }
2015701e3307SMatthias Ringwald                     hci_notify_if_sco_can_send_now();
201635454696SMatthias Ringwald #endif
2017e35edcc1S[email protected]                 } else {
201823bed257S[email protected]                     if (conn->num_acl_packets_sent >= num_packets){
201956cf178bSmatthias.ringwald                         conn->num_acl_packets_sent -= num_packets;
202023bed257S[email protected]                     } else {
2021e35edcc1S[email protected]                         log_error("hci_number_completed_packets, more acl slots freed then sent.");
202223bed257S[email protected]                         conn->num_acl_packets_sent = 0;
202323bed257S[email protected]                     }
2024e35edcc1S[email protected]                 }
20259da54300S[email protected]                 // log_info("hci_number_completed_packet %u processed for handle %u, outstanding %u", num_packets, handle, conn->num_acl_packets_sent);
202656cf178bSmatthias.ringwald             }
20276772a24cSmatthias.ringwald             break;
20282e440c8aS[email protected]         }
202935454696SMatthias Ringwald 
203035454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
2031f5875de5SMatthias Ringwald         case HCI_EVENT_INQUIRY_COMPLETE:
2032f5875de5SMatthias Ringwald             if (hci_stack->inquiry_state == GAP_INQUIRY_STATE_ACTIVE){
2033f5875de5SMatthias Ringwald                 hci_stack->inquiry_state = GAP_INQUIRY_STATE_IDLE;
2034f5875de5SMatthias Ringwald                 uint8_t event[] = { GAP_EVENT_INQUIRY_COMPLETE, 1, 0};
2035f5875de5SMatthias Ringwald                 hci_emit_event(event, sizeof(event), 1);
2036f5875de5SMatthias Ringwald             }
2037f5875de5SMatthias Ringwald             break;
2038b7f1ee76SMatthias Ringwald         case HCI_EVENT_REMOTE_NAME_REQUEST_COMPLETE:
2039b7f1ee76SMatthias Ringwald             if (hci_stack->remote_name_state == GAP_REMOTE_NAME_STATE_W4_COMPLETE){
2040b7f1ee76SMatthias Ringwald                 hci_stack->remote_name_state = GAP_REMOTE_NAME_STATE_IDLE;
2041b7f1ee76SMatthias Ringwald             }
2042b7f1ee76SMatthias Ringwald             break;
20431f7b95a1Smatthias.ringwald         case HCI_EVENT_CONNECTION_REQUEST:
2044724d70a2SMatthias Ringwald             reverse_bd_addr(&packet[2], addr);
204537eaa4cfSmatthias.ringwald             // TODO: eval COD 8-10
20462d00edd4Smatthias.ringwald             link_type = packet[11];
20479da54300S[email protected]             log_info("Connection_incoming: %s, type %u", bd_addr_to_str(addr), link_type);
2048e35edcc1S[email protected]             addr_type = link_type == 1 ? BD_ADDR_TYPE_CLASSIC : BD_ADDR_TYPE_SCO;
20492e77e513S[email protected]             conn = hci_connection_for_bd_addr_and_type(addr, addr_type);
20501f7b95a1Smatthias.ringwald             if (!conn) {
20515293c072S[email protected]                 conn = create_connection_for_bd_addr_and_type(addr, addr_type);
20521f7b95a1Smatthias.ringwald             }
2053ce4c8fabSmatthias.ringwald             if (!conn) {
2054ce4c8fabSmatthias.ringwald                 // CONNECTION REJECTED DUE TO LIMITED RESOURCES (0X0D)
20553a9fb326S[email protected]                 hci_stack->decline_reason = 0x0d;
2056058e3d6bSMatthias Ringwald                 bd_addr_copy(hci_stack->decline_addr, addr);
2057ce4c8fabSmatthias.ringwald                 break;
2058ce4c8fabSmatthias.ringwald             }
20595cf766e8SMatthias Ringwald             conn->role  = HCI_ROLE_SLAVE;
206032ab9390Smatthias.ringwald             conn->state = RECEIVED_CONNECTION_REQUEST;
2061f3a16b9aSMatthias Ringwald             // store info about eSCO
2062f3a16b9aSMatthias Ringwald             if (link_type == 0x02){
2063f3a16b9aSMatthias Ringwald                 conn->remote_supported_feature_eSCO = 1;
2064f3a16b9aSMatthias Ringwald             }
206532ab9390Smatthias.ringwald             hci_run();
20661f7b95a1Smatthias.ringwald             break;
20671f7b95a1Smatthias.ringwald 
20686772a24cSmatthias.ringwald         case HCI_EVENT_CONNECTION_COMPLETE:
2069fe1ed1b8Smatthias.ringwald             // Connection management
2070724d70a2SMatthias Ringwald             reverse_bd_addr(&packet[5], addr);
20719da54300S[email protected]             log_info("Connection_complete (status=%u) %s", packet[2], bd_addr_to_str(addr));
207296a45072S[email protected]             addr_type = BD_ADDR_TYPE_CLASSIC;
20732e77e513S[email protected]             conn = hci_connection_for_bd_addr_and_type(addr, addr_type);
2074fe1ed1b8Smatthias.ringwald             if (conn) {
2075b448a0e7Smatthias.ringwald                 if (!packet[2]){
2076c8e4258aSmatthias.ringwald                     conn->state = OPEN;
2077f8fbdce0SMatthias Ringwald                     conn->con_handle = little_endian_read_16(packet, 3);
2078ad83dc6aS[email protected]                     conn->bonding_flags |= BONDING_REQUEST_REMOTE_FEATURES;
2079ee091cf1Smatthias.ringwald 
2080c785ef68Smatthias.ringwald                     // restart timer
2081528a4a3bSMatthias Ringwald                     btstack_run_loop_set_timer(&conn->timeout, HCI_CONNECTION_TIMEOUT_MS);
2082528a4a3bSMatthias Ringwald                     btstack_run_loop_add_timer(&conn->timeout);
2083c785ef68Smatthias.ringwald 
20849da54300S[email protected]                     log_info("New connection: handle %u, %s", conn->con_handle, bd_addr_to_str(conn->address));
208543bfb1bdSmatthias.ringwald 
208643bfb1bdSmatthias.ringwald                     hci_emit_nr_connections_changed();
2087b448a0e7Smatthias.ringwald                 } else {
20880bbba85bSMatthias Ringwald                     // connection failed
20890bbba85bSMatthias Ringwald                     hci_handle_connection_failed(conn, packet[2]);
2090fe1ed1b8Smatthias.ringwald                 }
2091fe1ed1b8Smatthias.ringwald             }
20926772a24cSmatthias.ringwald             break;
2093fe1ed1b8Smatthias.ringwald 
209444d0e3d5S[email protected]         case HCI_EVENT_SYNCHRONOUS_CONNECTION_COMPLETE:
2095724d70a2SMatthias Ringwald             reverse_bd_addr(&packet[5], addr);
209644d0e3d5S[email protected]             log_info("Synchronous Connection Complete (status=%u) %s", packet[2], bd_addr_to_str(addr));
20971a06f663S[email protected]             if (packet[2]){
209844d0e3d5S[email protected]                 // connection failed
209944d0e3d5S[email protected]                 break;
210044d0e3d5S[email protected]             }
21012e77e513S[email protected]             conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_SCO);
2102e35edcc1S[email protected]             if (!conn) {
2103e35edcc1S[email protected]                 conn = create_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_SCO);
2104e35edcc1S[email protected]             }
2105e35edcc1S[email protected]             if (!conn) {
2106e35edcc1S[email protected]                 break;
2107e35edcc1S[email protected]             }
21081a06f663S[email protected]             conn->state = OPEN;
2109f8fbdce0SMatthias Ringwald             conn->con_handle = little_endian_read_16(packet, 3);
2110ee752bb8SMatthias Ringwald 
2111ee752bb8SMatthias Ringwald #ifdef ENABLE_SCO_OVER_HCI
2112ee752bb8SMatthias Ringwald             // update SCO
2113ee752bb8SMatthias Ringwald             if (conn->address_type == BD_ADDR_TYPE_SCO && hci_stack->hci_transport && hci_stack->hci_transport->set_sco_config){
2114ee752bb8SMatthias Ringwald                 hci_stack->hci_transport->set_sco_config(hci_stack->sco_voice_setting_active, hci_number_sco_connections());
2115ee752bb8SMatthias Ringwald             }
2116ee752bb8SMatthias Ringwald #endif
211744d0e3d5S[email protected]             break;
211844d0e3d5S[email protected] 
2119afd4e962S[email protected]         case HCI_EVENT_READ_REMOTE_SUPPORTED_FEATURES_COMPLETE:
2120f8fbdce0SMatthias Ringwald             handle = little_endian_read_16(packet, 3);
2121afd4e962S[email protected]             conn = hci_connection_for_handle(handle);
2122afd4e962S[email protected]             if (!conn) break;
2123afd4e962S[email protected]             if (!packet[2]){
2124afd4e962S[email protected]                 uint8_t * features = &packet[5];
2125afd4e962S[email protected]                 if (features[6] & (1 << 3)){
2126afd4e962S[email protected]                     conn->bonding_flags |= BONDING_REMOTE_SUPPORTS_SSP;
2127afd4e962S[email protected]                 }
212898a2fd1cSMatthias Ringwald                 if (features[3] & (1<<7)){
212998a2fd1cSMatthias Ringwald                     conn->remote_supported_feature_eSCO = 1;
213098a2fd1cSMatthias Ringwald                 }
2131afd4e962S[email protected]             }
2132afd4e962S[email protected]             conn->bonding_flags |= BONDING_RECEIVED_REMOTE_FEATURES;
213398a2fd1cSMatthias Ringwald             log_info("HCI_EVENT_READ_REMOTE_SUPPORTED_FEATURES_COMPLETE, bonding flags %x, eSCO %u", conn->bonding_flags, conn->remote_supported_feature_eSCO);
2134ad83dc6aS[email protected]             if (conn->bonding_flags & BONDING_DEDICATED){
2135ad83dc6aS[email protected]                 conn->bonding_flags |= BONDING_SEND_AUTHENTICATE_REQUEST;
2136ad83dc6aS[email protected]             }
2137afd4e962S[email protected]             break;
2138afd4e962S[email protected] 
21397fde4af9Smatthias.ringwald         case HCI_EVENT_LINK_KEY_REQUEST:
21409da54300S[email protected]             log_info("HCI_EVENT_LINK_KEY_REQUEST");
21417fde4af9Smatthias.ringwald             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], RECV_LINK_KEY_REQUEST);
214274d716b5S[email protected]             // non-bondable mode: link key negative reply will be sent by HANDLE_LINK_KEY_REQUEST
2143a98592bcSMatthias Ringwald             if (hci_stack->bondable && !hci_stack->link_key_db) break;
214432ab9390Smatthias.ringwald             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], HANDLE_LINK_KEY_REQUEST);
214564472d52Smatthias.ringwald             hci_run();
2146d9a327f9Smatthias.ringwald             // request handled by hci_run() as HANDLE_LINK_KEY_REQUEST gets set
214729d53098Smatthias.ringwald             return;
21487fde4af9Smatthias.ringwald 
21499ab95c90S[email protected]         case HCI_EVENT_LINK_KEY_NOTIFICATION: {
2150724d70a2SMatthias Ringwald             reverse_bd_addr(&packet[2], addr);
21512e77e513S[email protected]             conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_CLASSIC);
21529ab95c90S[email protected]             if (!conn) break;
21539ab95c90S[email protected]             conn->authentication_flags |= RECV_LINK_KEY_NOTIFICATION;
21547bdc6798S[email protected]             link_key_type_t link_key_type = (link_key_type_t)packet[24];
21559ab95c90S[email protected]             // Change Connection Encryption keeps link key type
21569ab95c90S[email protected]             if (link_key_type != CHANGED_COMBINATION_KEY){
21579ab95c90S[email protected]                 conn->link_key_type = link_key_type;
21589ab95c90S[email protected]             }
215955597469SMatthias Ringwald             gap_store_link_key_for_bd_addr(addr, &packet[8], conn->link_key_type);
216029d53098Smatthias.ringwald             // still forward event to allow dismiss of pairing dialog
21617fde4af9Smatthias.ringwald             break;
21629ab95c90S[email protected]         }
21637fde4af9Smatthias.ringwald 
21647fde4af9Smatthias.ringwald         case HCI_EVENT_PIN_CODE_REQUEST:
21656724cd9eS[email protected]             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], LEGACY_PAIRING_ACTIVE);
21664c57c146S[email protected]             // non-bondable mode: pin code negative reply will be sent
21673a9fb326S[email protected]             if (!hci_stack->bondable){
2168899283eaS[email protected]                 hci_add_connection_flags_for_flipped_bd_addr(&packet[2], DENY_PIN_CODE_REQUEST);
2169f8fb5f6eS[email protected]                 hci_run();
2170f8fb5f6eS[email protected]                 return;
21714c57c146S[email protected]             }
2172d9a327f9Smatthias.ringwald             // PIN CODE REQUEST means the link key request didn't succee -> delete stored link key
2173a98592bcSMatthias Ringwald             if (!hci_stack->link_key_db) break;
2174a6ef64baSMilanka Ringwald             hci_event_pin_code_request_get_bd_addr(packet, addr);
2175a98592bcSMatthias Ringwald             hci_stack->link_key_db->delete_link_key(addr);
21767fde4af9Smatthias.ringwald             break;
21777fde4af9Smatthias.ringwald 
21781d6b20aeS[email protected]         case HCI_EVENT_IO_CAPABILITY_REQUEST:
21791d6b20aeS[email protected]             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], RECV_IO_CAPABILITIES_REQUEST);
2180dbe1a790S[email protected]             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], SEND_IO_CAPABILITIES_REPLY);
2181dbe1a790S[email protected]             break;
2182dbe1a790S[email protected] 
2183dbe1a790S[email protected]         case HCI_EVENT_USER_CONFIRMATION_REQUEST:
21846724cd9eS[email protected]             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], SSP_PAIRING_ACTIVE);
21853a9fb326S[email protected]             if (!hci_stack->ssp_auto_accept) break;
2186dbe1a790S[email protected]             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], SEND_USER_CONFIRM_REPLY);
2187dbe1a790S[email protected]             break;
2188dbe1a790S[email protected] 
2189dbe1a790S[email protected]         case HCI_EVENT_USER_PASSKEY_REQUEST:
21906724cd9eS[email protected]             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], SSP_PAIRING_ACTIVE);
21913a9fb326S[email protected]             if (!hci_stack->ssp_auto_accept) break;
2192dbe1a790S[email protected]             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], SEND_USER_PASSKEY_REPLY);
21931d6b20aeS[email protected]             break;
21943dce6128SMatthias Ringwald         case HCI_EVENT_MODE_CHANGE:
21953dce6128SMatthias Ringwald             handle = hci_event_mode_change_get_handle(packet);
21963dce6128SMatthias Ringwald             conn = hci_connection_for_handle(handle);
21973dce6128SMatthias Ringwald             if (!conn) break;
21983dce6128SMatthias Ringwald             conn->connection_mode = hci_event_mode_change_get_mode(packet);
21993dce6128SMatthias Ringwald             log_info("HCI_EVENT_MODE_CHANGE, handle 0x%04x, mode %u", handle, conn->connection_mode);
22003dce6128SMatthias Ringwald             break;
220135454696SMatthias Ringwald #endif
22021d6b20aeS[email protected] 
2203f0944df2S[email protected]         case HCI_EVENT_ENCRYPTION_CHANGE:
2204f8fbdce0SMatthias Ringwald             handle = little_endian_read_16(packet, 3);
2205f0944df2S[email protected]             conn = hci_connection_for_handle(handle);
2206f0944df2S[email protected]             if (!conn) break;
2207ad83dc6aS[email protected]             if (packet[2] == 0) {
2208f0944df2S[email protected]                 if (packet[5]){
2209f0944df2S[email protected]                     conn->authentication_flags |= CONNECTION_ENCRYPTED;
2210f0944df2S[email protected]                 } else {
2211536f9994S[email protected]                     conn->authentication_flags &= ~CONNECTION_ENCRYPTED;
2212f0944df2S[email protected]                 }
2213ad83dc6aS[email protected]             }
221435454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
2215a00031e2S[email protected]             hci_emit_security_level(handle, gap_security_level_for_connection(conn));
221635454696SMatthias Ringwald #endif
2217f0944df2S[email protected]             break;
2218f0944df2S[email protected] 
221935454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
22201eb2563eS[email protected]         case HCI_EVENT_AUTHENTICATION_COMPLETE_EVENT:
2221f8fbdce0SMatthias Ringwald             handle = little_endian_read_16(packet, 3);
22221eb2563eS[email protected]             conn = hci_connection_for_handle(handle);
22231eb2563eS[email protected]             if (!conn) break;
2224ad83dc6aS[email protected] 
2225ad83dc6aS[email protected]             // dedicated bonding: send result and disconnect
2226ad83dc6aS[email protected]             if (conn->bonding_flags & BONDING_DEDICATED){
2227ad83dc6aS[email protected]                 conn->bonding_flags &= ~BONDING_DEDICATED;
2228ad83dc6aS[email protected]                 conn->bonding_flags |= BONDING_DISCONNECT_DEDICATED_DONE;
22291bd5283dS[email protected]                 conn->bonding_status = packet[2];
2230ad83dc6aS[email protected]                 break;
2231ad83dc6aS[email protected]             }
2232ad83dc6aS[email protected] 
2233b5cb6874S[email protected]             if (packet[2] == 0 && gap_security_level_for_link_key_type(conn->link_key_type) >= conn->requested_security_level){
22341eb2563eS[email protected]                 // link key sufficient for requested security
22351eb2563eS[email protected]                 conn->bonding_flags |= BONDING_SEND_ENCRYPTION_REQUEST;
2236ad83dc6aS[email protected]                 break;
2237ad83dc6aS[email protected]             }
22381eb2563eS[email protected]             // not enough
22391eb2563eS[email protected]             hci_emit_security_level(handle, gap_security_level_for_connection(conn));
22401eb2563eS[email protected]             break;
224135454696SMatthias Ringwald #endif
224234d2123cS[email protected] 
224386805605S[email protected]         // HCI_EVENT_DISCONNECTION_COMPLETE
2244ccda6e14S[email protected]         // has been split, to first notify stack before shutting connection down
2245ccda6e14S[email protected]         // see end of function, too.
2246a4f30ec0S[email protected]         case HCI_EVENT_DISCONNECTION_COMPLETE:
2247a4f30ec0S[email protected]             if (packet[2]) break;   // status != 0
2248f8fbdce0SMatthias Ringwald             handle = little_endian_read_16(packet, 3);
2249c6a37cfdSMatthias Ringwald             // drop outgoing ACL fragments if it is for closed connection
2250c6a37cfdSMatthias Ringwald             if (hci_stack->acl_fragmentation_total_size > 0) {
2251c6a37cfdSMatthias Ringwald                 if (handle == READ_ACL_CONNECTION_HANDLE(hci_stack->hci_packet_buffer)){
2252c6a37cfdSMatthias Ringwald                     log_info("hci: drop fragmented ACL data for closed connection");
2253c6a37cfdSMatthias Ringwald                      hci_stack->acl_fragmentation_total_size = 0;
2254c6a37cfdSMatthias Ringwald                      hci_stack->acl_fragmentation_pos = 0;
2255c6a37cfdSMatthias Ringwald                 }
2256c6a37cfdSMatthias Ringwald             }
225735454696SMatthias Ringwald 
22589a2e4658SMatthias Ringwald             // re-enable advertisements for le connections if active
2259c6a37cfdSMatthias Ringwald             conn = hci_connection_for_handle(handle);
2260c6a37cfdSMatthias Ringwald             if (!conn) break;
2261a70e17d4SMatthias Ringwald             conn->state = RECEIVED_DISCONNECTION_COMPLETE;
226235454696SMatthias Ringwald #ifdef ENABLE_BLE
2263d70217a2SMatthias Ringwald #ifdef ENABLE_LE_PERIPHERAL
22642b6ab3e6SMatthias Ringwald             if (hci_is_le_connection(conn)){
22652b6ab3e6SMatthias Ringwald                 hci_reenable_advertisements_if_needed();
22669a2e4658SMatthias Ringwald             }
226735454696SMatthias Ringwald #endif
2268d70217a2SMatthias Ringwald #endif
2269ccda6e14S[email protected]             break;
22706772a24cSmatthias.ringwald 
2271c68bdf90Smatthias.ringwald         case HCI_EVENT_HARDWARE_ERROR:
2272313e5f9cSMatthias Ringwald             log_error("Hardware Error: 0x%02x", packet[2]);
2273d23838ecSMatthias Ringwald             if (hci_stack->hardware_error_callback){
2274c2e1fa60SMatthias Ringwald                 (*hci_stack->hardware_error_callback)(packet[2]);
22757586ee35S[email protected]             } else {
22767586ee35S[email protected]                 // if no special requests, just reboot stack
22777586ee35S[email protected]                 hci_power_control_off();
22787586ee35S[email protected]                 hci_power_control_on();
2279c68bdf90Smatthias.ringwald             }
2280c68bdf90Smatthias.ringwald             break;
2281c68bdf90Smatthias.ringwald 
22820e6f3837SMatthias Ringwald #ifdef ENABLE_CLASSIC
22835cf766e8SMatthias Ringwald         case HCI_EVENT_ROLE_CHANGE:
22845cf766e8SMatthias Ringwald             if (packet[2]) break;   // status != 0
2285c4c88f1bSJakob Krantz             reverse_bd_addr(&packet[3], addr);
2286c4c88f1bSJakob Krantz             addr_type = BD_ADDR_TYPE_CLASSIC;
2287c4c88f1bSJakob Krantz             conn = hci_connection_for_bd_addr_and_type(addr, addr_type);
2288c4c88f1bSJakob Krantz             if (!conn) break;
22895cf766e8SMatthias Ringwald             conn->role = packet[9];
22905cf766e8SMatthias Ringwald             break;
22910e6f3837SMatthias Ringwald #endif
22925cf766e8SMatthias Ringwald 
229363fa3374SMatthias Ringwald         case HCI_EVENT_TRANSPORT_PACKET_SENT:
2294d051460cS[email protected]             // release packet buffer only for asynchronous transport and if there are not further fragements
22954fa24b5fS[email protected]             if (hci_transport_synchronous()) {
229663fa3374SMatthias Ringwald                 log_error("Synchronous HCI Transport shouldn't send HCI_EVENT_TRANSPORT_PACKET_SENT");
22974fa24b5fS[email protected]                 return; // instead of break: to avoid re-entering hci_run()
22984fa24b5fS[email protected]             }
2299d051460cS[email protected]             if (hci_stack->acl_fragmentation_total_size) break;
2300d051460cS[email protected]             hci_release_packet_buffer();
2301701e3307SMatthias Ringwald 
230263fa3374SMatthias Ringwald             // L2CAP receives this event via the hci_emit_event below
230363fa3374SMatthias Ringwald 
230435454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
230563fa3374SMatthias Ringwald             // For SCO, we do the can_send_now_check here
2306701e3307SMatthias Ringwald             hci_notify_if_sco_can_send_now();
230735454696SMatthias Ringwald #endif
23086b4af23dS[email protected]             break;
23096b4af23dS[email protected] 
231035454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
231163fa3374SMatthias Ringwald         case HCI_EVENT_SCO_CAN_SEND_NOW:
231263fa3374SMatthias Ringwald             // For SCO, we do the can_send_now_check here
231363fa3374SMatthias Ringwald             hci_notify_if_sco_can_send_now();
231463fa3374SMatthias Ringwald             return;
23151cfb383eSMatthias Ringwald 
23161cfb383eSMatthias Ringwald         // explode inquriy results for easier consumption
23171cfb383eSMatthias Ringwald         case HCI_EVENT_INQUIRY_RESULT:
23181cfb383eSMatthias Ringwald         case HCI_EVENT_INQUIRY_RESULT_WITH_RSSI:
23191cfb383eSMatthias Ringwald         case HCI_EVENT_EXTENDED_INQUIRY_RESPONSE:
23201cfb383eSMatthias Ringwald             gap_inquiry_explode(packet);
23211cfb383eSMatthias Ringwald             break;
232235454696SMatthias Ringwald #endif
232363fa3374SMatthias Ringwald 
2324a9a4c409SMatthias Ringwald #ifdef ENABLE_BLE
23255909f7f2Smatthias.ringwald         case HCI_EVENT_LE_META:
23265909f7f2Smatthias.ringwald             switch (packet[2]){
2327d70217a2SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
232857c9da5bS[email protected]                 case HCI_SUBEVENT_LE_ADVERTISING_REPORT:
23294f4e0224SMatthias Ringwald                     // log_info("advertising report received");
23306fab74dbSMatthias Ringwald                     if (!hci_stack->le_scanning_enabled) break;
233157c9da5bS[email protected]                     le_handle_advertisement_report(packet, size);
23327bdc6798S[email protected]                     break;
2333d70217a2SMatthias Ringwald #endif
23345909f7f2Smatthias.ringwald                 case HCI_SUBEVENT_LE_CONNECTION_COMPLETE:
23355909f7f2Smatthias.ringwald                     // Connection management
2336724d70a2SMatthias Ringwald                     reverse_bd_addr(&packet[8], addr);
23377bdc6798S[email protected]                     addr_type = (bd_addr_type_t)packet[7];
23389da54300S[email protected]                     log_info("LE Connection_complete (status=%u) type %u, %s", packet[3], addr_type, bd_addr_to_str(addr));
23392e77e513S[email protected]                     conn = hci_connection_for_bd_addr_and_type(addr, addr_type);
23409c77c9dbSMatthias Ringwald 
2341d70217a2SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
234242ff5ba1SMatthias Ringwald                     // if auto-connect, remove from whitelist in both roles
234342ff5ba1SMatthias Ringwald                     if (hci_stack->le_connecting_state == LE_CONNECTING_WHITELIST){
234442ff5ba1SMatthias Ringwald                         hci_remove_from_whitelist(addr_type, addr);
234542ff5ba1SMatthias Ringwald                     }
234642ff5ba1SMatthias Ringwald                     // handle error: error is reported only to the initiator -> outgoing connection
23475909f7f2Smatthias.ringwald                     if (packet[3]){
23489c77c9dbSMatthias Ringwald 
23499c77c9dbSMatthias Ringwald                         // handle cancelled outgoing connection
23509c77c9dbSMatthias Ringwald                         // "If the cancellation was successful then, after the Command Complete event for the LE_Create_Connection_Cancel command,
23519c77c9dbSMatthias Ringwald                         //  either an LE Connection Complete or an LE Enhanced Connection Complete event shall be generated.
23529c77c9dbSMatthias Ringwald                         //  In either case, the event shall be sent with the error code Unknown Connection Identifier (0x02)."
23539c77c9dbSMatthias Ringwald                         if (packet[3] == ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER){
23549c77c9dbSMatthias Ringwald                             conn = gap_get_outgoing_connection();
23559c77c9dbSMatthias Ringwald                         }
23569c77c9dbSMatthias Ringwald 
235742ff5ba1SMatthias Ringwald                         // outgoing connection establishment is done
235842ff5ba1SMatthias Ringwald                         hci_stack->le_connecting_state = LE_CONNECTING_IDLE;
235942ff5ba1SMatthias Ringwald                         // remove entry
23605909f7f2Smatthias.ringwald                         if (conn){
2361665d90f2SMatthias Ringwald                             btstack_linked_list_remove(&hci_stack->connections, (btstack_linked_item_t *) conn);
23625909f7f2Smatthias.ringwald                             btstack_memory_hci_connection_free( conn );
23635909f7f2Smatthias.ringwald                         }
23645909f7f2Smatthias.ringwald                         break;
23655909f7f2Smatthias.ringwald                     }
2366d70217a2SMatthias Ringwald #endif
236742ff5ba1SMatthias Ringwald                     // on success, both hosts receive connection complete event
23685cf766e8SMatthias Ringwald                     if (packet[6] == HCI_ROLE_MASTER){
2369d70217a2SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
237042ff5ba1SMatthias Ringwald                         // if we're master, it was an outgoing connection and we're done with it
237142ff5ba1SMatthias Ringwald                         hci_stack->le_connecting_state = LE_CONNECTING_IDLE;
2372d70217a2SMatthias Ringwald #endif
237342ff5ba1SMatthias Ringwald                     } else {
2374d70217a2SMatthias Ringwald #ifdef ENABLE_LE_PERIPHERAL
237542ff5ba1SMatthias Ringwald                         // if we're slave, it was an incoming connection, advertisements have stopped
2376171293d3SMatthias Ringwald                         hci_stack->le_advertisements_active = 0;
2377d70217a2SMatthias Ringwald #endif
237842ff5ba1SMatthias Ringwald                     }
2379171293d3SMatthias Ringwald                     // LE connections are auto-accepted, so just create a connection if there isn't one already
238042ff5ba1SMatthias Ringwald                     if (!conn){
238196a45072S[email protected]                         conn = create_connection_for_bd_addr_and_type(addr, addr_type);
23825909f7f2Smatthias.ringwald                     }
238342ff5ba1SMatthias Ringwald                     // no memory, sorry.
23845909f7f2Smatthias.ringwald                     if (!conn){
23855909f7f2Smatthias.ringwald                         break;
23865909f7f2Smatthias.ringwald                     }
23875909f7f2Smatthias.ringwald 
23885909f7f2Smatthias.ringwald                     conn->state = OPEN;
23895cf766e8SMatthias Ringwald                     conn->role  = packet[6];
2390c9db5c21SMilanka Ringwald                     conn->con_handle             = hci_subevent_le_connection_complete_get_connection_handle(packet);
2391c9db5c21SMilanka Ringwald                     conn->le_connection_interval = hci_subevent_le_connection_complete_get_conn_interval(packet);
23925909f7f2Smatthias.ringwald 
23932b6ab3e6SMatthias Ringwald #ifdef ENABLE_LE_PERIPHERAL
23942b6ab3e6SMatthias Ringwald                     if (packet[6] == HCI_ROLE_SLAVE){
23952b6ab3e6SMatthias Ringwald                         hci_reenable_advertisements_if_needed();
23962b6ab3e6SMatthias Ringwald                     }
23972b6ab3e6SMatthias Ringwald #endif
23982b6ab3e6SMatthias Ringwald 
23995909f7f2Smatthias.ringwald                     // TODO: store - role, peer address type, conn_interval, conn_latency, supervision timeout, master clock
24005909f7f2Smatthias.ringwald 
24015909f7f2Smatthias.ringwald                     // restart timer
2402528a4a3bSMatthias Ringwald                     // btstack_run_loop_set_timer(&conn->timeout, HCI_CONNECTION_TIMEOUT_MS);
2403528a4a3bSMatthias Ringwald                     // btstack_run_loop_add_timer(&conn->timeout);
24045909f7f2Smatthias.ringwald 
24059da54300S[email protected]                     log_info("New connection: handle %u, %s", conn->con_handle, bd_addr_to_str(conn->address));
24065909f7f2Smatthias.ringwald 
24075909f7f2Smatthias.ringwald                     hci_emit_nr_connections_changed();
24085909f7f2Smatthias.ringwald                     break;
24095909f7f2Smatthias.ringwald 
2410f8fbdce0SMatthias Ringwald                 // log_info("LE buffer size: %u, count %u", little_endian_read_16(packet,6), packet[8]);
2411c9db5c21SMilanka Ringwald                 case HCI_SUBEVENT_LE_CONNECTION_UPDATE_COMPLETE:
2412c9db5c21SMilanka Ringwald                     handle = hci_subevent_le_connection_update_complete_get_connection_handle(packet);
2413c9db5c21SMilanka Ringwald                     conn = hci_connection_for_handle(handle);
2414c9db5c21SMilanka Ringwald                     if (!conn) break;
2415c9db5c21SMilanka Ringwald                     conn->le_connection_interval = hci_subevent_le_connection_update_complete_get_conn_interval(packet);
2416c9db5c21SMilanka Ringwald                     break;
241765a46ef3S[email protected] 
241873cd8a2aSMatthias Ringwald                 case HCI_SUBEVENT_LE_REMOTE_CONNECTION_PARAMETER_REQUEST:
241973cd8a2aSMatthias Ringwald                     // connection
242073cd8a2aSMatthias Ringwald                     handle = hci_subevent_le_remote_connection_parameter_request_get_connection_handle(packet);
242173cd8a2aSMatthias Ringwald                     conn = hci_connection_for_handle(handle);
242273cd8a2aSMatthias Ringwald                     if (conn) {
242373cd8a2aSMatthias Ringwald                         // read arguments
242473cd8a2aSMatthias Ringwald                         uint16_t le_conn_interval_min   = hci_subevent_le_remote_connection_parameter_request_get_interval_min(packet);
242573cd8a2aSMatthias Ringwald                         uint16_t le_conn_interval_max   = hci_subevent_le_remote_connection_parameter_request_get_interval_max(packet);
242673cd8a2aSMatthias Ringwald                         uint16_t le_conn_latency        = hci_subevent_le_remote_connection_parameter_request_get_latency(packet);
242773cd8a2aSMatthias Ringwald                         uint16_t le_supervision_timeout = hci_subevent_le_remote_connection_parameter_request_get_timeout(packet);
242873cd8a2aSMatthias Ringwald 
242973cd8a2aSMatthias Ringwald                         // validate against current connection parameter range
243073cd8a2aSMatthias Ringwald                         le_connection_parameter_range_t existing_range;
243173cd8a2aSMatthias Ringwald                         gap_get_connection_parameter_range(&existing_range);
243273cd8a2aSMatthias Ringwald                         int update_parameter = gap_connection_parameter_range_included(&existing_range, le_conn_interval_min, le_conn_interval_max, le_conn_latency, le_supervision_timeout);
243373cd8a2aSMatthias Ringwald                         if (update_parameter){
243473cd8a2aSMatthias Ringwald                             conn->le_con_parameter_update_state = CON_PARAMETER_UPDATE_REPLY;
243573cd8a2aSMatthias Ringwald                             conn->le_conn_interval_min = le_conn_interval_min;
243673cd8a2aSMatthias Ringwald                             conn->le_conn_interval_max = le_conn_interval_max;
243773cd8a2aSMatthias Ringwald                             conn->le_conn_latency = le_conn_latency;
243873cd8a2aSMatthias Ringwald                             conn->le_supervision_timeout = le_supervision_timeout;
243973cd8a2aSMatthias Ringwald                         } else {
244073cd8a2aSMatthias Ringwald                             conn->le_con_parameter_update_state = CON_PARAMETER_UPDATE_DENY;
244173cd8a2aSMatthias Ringwald                         }
244273cd8a2aSMatthias Ringwald                     }
244373cd8a2aSMatthias Ringwald                     break;
24445909f7f2Smatthias.ringwald                 default:
24455909f7f2Smatthias.ringwald                     break;
24465909f7f2Smatthias.ringwald             }
24475909f7f2Smatthias.ringwald             break;
24485909f7f2Smatthias.ringwald #endif
24490b36101dSMatthias Ringwald         case HCI_EVENT_VENDOR_SPECIFIC:
24500b36101dSMatthias Ringwald             // Vendor specific commands often create vendor specific event instead of num completed packets
24510b36101dSMatthias Ringwald             // To avoid getting stuck as num_cmds_packets is zero, reset it to 1 for controllers with this behaviour
24520b36101dSMatthias Ringwald             switch (hci_stack->manufacturer){
24530b36101dSMatthias Ringwald                 case BLUETOOTH_COMPANY_ID_CAMBRIDGE_SILICON_RADIO:
24540b36101dSMatthias Ringwald                     hci_stack->num_cmd_packets = 1;
24550b36101dSMatthias Ringwald                     break;
24560b36101dSMatthias Ringwald                 default:
24570b36101dSMatthias Ringwald                     break;
24580b36101dSMatthias Ringwald             }
24590b36101dSMatthias Ringwald             break;
24606772a24cSmatthias.ringwald         default:
24616772a24cSmatthias.ringwald             break;
2462fe1ed1b8Smatthias.ringwald     }
2463fe1ed1b8Smatthias.ringwald 
24643429f56bSmatthias.ringwald     // handle BT initialization
24653a9fb326S[email protected]     if (hci_stack->state == HCI_STATE_INITIALIZING){
24666155b3d3S[email protected]         hci_initializing_event_handler(packet, size);
2467c9af4d3fS[email protected]     }
246822909952Smatthias.ringwald 
246989db417bSmatthias.ringwald     // help with BT sleep
24703a9fb326S[email protected]     if (hci_stack->state == HCI_STATE_FALLING_ASLEEP
247174b323a9SMatthias Ringwald         && hci_stack->substate == HCI_FALLING_ASLEEP_W4_WRITE_SCAN_ENABLE
2472073bd0faSMatthias Ringwald         && HCI_EVENT_IS_COMMAND_COMPLETE(packet, hci_write_scan_enable)){
247355975f88SMatthias Ringwald         hci_initializing_next_state();
247489db417bSmatthias.ringwald     }
247589db417bSmatthias.ringwald 
247686805605S[email protected]     // notify upper stack
2477d6b06661SMatthias Ringwald 	hci_emit_event(packet, size, 0);   // don't dump, already happened in packet handler
247894ab26f8Smatthias.ringwald 
247986805605S[email protected]     // moved here to give upper stack a chance to close down everything with hci_connection_t intact
24800e2df43fSMatthias Ringwald     if (hci_event_packet_get_type(packet) == HCI_EVENT_DISCONNECTION_COMPLETE){
248186805605S[email protected]         if (!packet[2]){
2482f8fbdce0SMatthias Ringwald             handle = little_endian_read_16(packet, 3);
248305ae8de3SMatthias Ringwald             hci_connection_t * aConn = hci_connection_for_handle(handle);
248405ae8de3SMatthias Ringwald             if (aConn) {
248505ae8de3SMatthias Ringwald                 uint8_t status = aConn->bonding_status;
248605ae8de3SMatthias Ringwald                 uint16_t flags = aConn->bonding_flags;
248786805605S[email protected]                 bd_addr_t bd_address;
248805ae8de3SMatthias Ringwald                 memcpy(&bd_address, aConn->address, 6);
248905ae8de3SMatthias Ringwald                 hci_shutdown_connection(aConn);
2490bb820044S[email protected]                 // connection struct is gone, don't access anymore
2491bb820044S[email protected]                 if (flags & BONDING_EMIT_COMPLETE_ON_DISCONNECT){
249286805605S[email protected]                     hci_emit_dedicated_bonding_result(bd_address, status);
249386805605S[email protected]                 }
249486805605S[email protected]             }
249586805605S[email protected]         }
249686805605S[email protected]     }
249786805605S[email protected] 
249894ab26f8Smatthias.ringwald 	// execute main loop
249994ab26f8Smatthias.ringwald 	hci_run();
250016833f0aSmatthias.ringwald }
250116833f0aSmatthias.ringwald 
250235454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
2503c91d150bS[email protected] static void sco_handler(uint8_t * packet, uint16_t size){
25048abbe8b5SMatthias Ringwald     if (!hci_stack->sco_packet_handler) return;
25053d50b4baSMatthias Ringwald     hci_stack->sco_packet_handler(HCI_SCO_DATA_PACKET, 0, packet, size);
25062b838201SMatthias Ringwald #ifdef ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL
25072b838201SMatthias Ringwald     hci_con_handle_t con_handle = READ_SCO_CONNECTION_HANDLE(packet);
25082b838201SMatthias Ringwald     hci_connection_t *conn      = hci_connection_for_handle(con_handle);
25092b838201SMatthias Ringwald     if (conn){
25102b838201SMatthias Ringwald         conn->num_packets_completed++;
25112b838201SMatthias Ringwald         hci_stack->host_completed_packets = 1;
25122b838201SMatthias Ringwald         hci_run();
25132b838201SMatthias Ringwald     }
25142b838201SMatthias Ringwald #endif
2515c91d150bS[email protected] }
251635454696SMatthias Ringwald #endif
2517c91d150bS[email protected] 
25180a57e69fSmatthias.ringwald static void packet_handler(uint8_t packet_type, uint8_t *packet, uint16_t size){
25195bb5bc3eS[email protected]     hci_dump_packet(packet_type, 1, packet, size);
252010e830c9Smatthias.ringwald     switch (packet_type) {
252110e830c9Smatthias.ringwald         case HCI_EVENT_PACKET:
252210e830c9Smatthias.ringwald             event_handler(packet, size);
252310e830c9Smatthias.ringwald             break;
252410e830c9Smatthias.ringwald         case HCI_ACL_DATA_PACKET:
252510e830c9Smatthias.ringwald             acl_handler(packet, size);
252610e830c9Smatthias.ringwald             break;
252735454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
2528c91d150bS[email protected]         case HCI_SCO_DATA_PACKET:
2529c91d150bS[email protected]             sco_handler(packet, size);
2530202c8a4cSMatthias Ringwald             break;
253135454696SMatthias Ringwald #endif
253210e830c9Smatthias.ringwald         default:
253310e830c9Smatthias.ringwald             break;
253410e830c9Smatthias.ringwald     }
253510e830c9Smatthias.ringwald }
253610e830c9Smatthias.ringwald 
2537d6b06661SMatthias Ringwald /**
2538d6b06661SMatthias Ringwald  * @brief Add event packet handler.
2539d6b06661SMatthias Ringwald  */
2540d6b06661SMatthias Ringwald void hci_add_event_handler(btstack_packet_callback_registration_t * callback_handler){
2541d6b06661SMatthias Ringwald     btstack_linked_list_add_tail(&hci_stack->event_handlers, (btstack_linked_item_t*) callback_handler);
2542d6b06661SMatthias Ringwald }
2543d6b06661SMatthias Ringwald 
2544d6b06661SMatthias Ringwald 
2545fcadd0caSmatthias.ringwald /** Register HCI packet handlers */
25463d50b4baSMatthias Ringwald void hci_register_acl_packet_handler(btstack_packet_handler_t handler){
2547fb37a842SMatthias Ringwald     hci_stack->acl_packet_handler = handler;
254816833f0aSmatthias.ringwald }
254916833f0aSmatthias.ringwald 
255035454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
25518abbe8b5SMatthias Ringwald /**
25528abbe8b5SMatthias Ringwald  * @brief Registers a packet handler for SCO data. Used for HSP and HFP profiles.
25538abbe8b5SMatthias Ringwald  */
25543d50b4baSMatthias Ringwald void hci_register_sco_packet_handler(btstack_packet_handler_t handler){
25558abbe8b5SMatthias Ringwald     hci_stack->sco_packet_handler = handler;
25568abbe8b5SMatthias Ringwald }
255735454696SMatthias Ringwald #endif
25588abbe8b5SMatthias Ringwald 
255971de195eSMatthias Ringwald static void hci_state_reset(void){
2560595bdbfbS[email protected]     // no connections yet
2561595bdbfbS[email protected]     hci_stack->connections = NULL;
256274308b23Smatthias.ringwald 
256374308b23Smatthias.ringwald     // keep discoverable/connectable as this has been requested by the client(s)
256474308b23Smatthias.ringwald     // hci_stack->discoverable = 0;
256574308b23Smatthias.ringwald     // hci_stack->connectable = 0;
256674308b23Smatthias.ringwald     // hci_stack->bondable = 1;
2567b95a5a35SMatthias Ringwald     // hci_stack->own_addr_type = 0;
2568595bdbfbS[email protected] 
256944935e40S[email protected]     // buffer is free
257044935e40S[email protected]     hci_stack->hci_packet_buffer_reserved = 0;
257144935e40S[email protected] 
2572595bdbfbS[email protected]     // no pending cmds
2573595bdbfbS[email protected]     hci_stack->decline_reason = 0;
2574595bdbfbS[email protected]     hci_stack->new_scan_enable_value = 0xff;
2575595bdbfbS[email protected] 
2576595bdbfbS[email protected]     // LE
2577b95a5a35SMatthias Ringwald #ifdef ENABLE_BLE
2578b95a5a35SMatthias Ringwald     memset(hci_stack->le_random_address, 0, 6);
2579b95a5a35SMatthias Ringwald     hci_stack->le_random_address_set = 0;
2580d70217a2SMatthias Ringwald #endif
2581d70217a2SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
25826fab74dbSMatthias Ringwald     hci_stack->le_scanning_active  = 0;
2583e2602ea2Smatthias.ringwald     hci_stack->le_scan_type = 0xff;
2584b04dfa37SMatthias Ringwald     hci_stack->le_connecting_state = LE_CONNECTING_IDLE;
2585e83201bcSMatthias Ringwald     hci_stack->le_whitelist = 0;
2586e83201bcSMatthias Ringwald     hci_stack->le_whitelist_capacity = 0;
2587d70217a2SMatthias Ringwald #endif
2588595bdbfbS[email protected] }
2589595bdbfbS[email protected] 
259035454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
25912d5e09d6SMatthias Ringwald /**
25922d5e09d6SMatthias Ringwald  * @brief Configure Bluetooth hardware control. Has to be called before power on.
25932d5e09d6SMatthias Ringwald  */
25942d5e09d6SMatthias Ringwald void hci_set_link_key_db(btstack_link_key_db_t const * link_key_db){
25952d5e09d6SMatthias Ringwald     // store and open remote device db
25962d5e09d6SMatthias Ringwald     hci_stack->link_key_db = link_key_db;
25972d5e09d6SMatthias Ringwald     if (hci_stack->link_key_db) {
25982d5e09d6SMatthias Ringwald         hci_stack->link_key_db->open();
25992d5e09d6SMatthias Ringwald     }
26002d5e09d6SMatthias Ringwald }
260135454696SMatthias Ringwald #endif
26022d5e09d6SMatthias Ringwald 
26032d5e09d6SMatthias Ringwald void hci_init(const hci_transport_t *transport, const void *config){
2604475c8125Smatthias.ringwald 
26053a9fb326S[email protected] #ifdef HAVE_MALLOC
26063a9fb326S[email protected]     if (!hci_stack) {
26073a9fb326S[email protected]         hci_stack = (hci_stack_t*) malloc(sizeof(hci_stack_t));
26083a9fb326S[email protected]     }
26093a9fb326S[email protected] #else
26103a9fb326S[email protected]     hci_stack = &hci_stack_static;
26113a9fb326S[email protected] #endif
261266fb9560S[email protected]     memset(hci_stack, 0, sizeof(hci_stack_t));
26133a9fb326S[email protected] 
2614475c8125Smatthias.ringwald     // reference to use transport layer implementation
26153a9fb326S[email protected]     hci_stack->hci_transport = transport;
2616475c8125Smatthias.ringwald 
261711e23e5fSmatthias.ringwald     // reference to used config
26183a9fb326S[email protected]     hci_stack->config = config;
261911e23e5fSmatthias.ringwald 
262026a9b6daSMatthias Ringwald     // setup pointer for outgoing packet buffer
262126a9b6daSMatthias Ringwald     hci_stack->hci_packet_buffer = &hci_stack->hci_packet_buffer_data[HCI_OUTGOING_PRE_BUFFER_SIZE];
262226a9b6daSMatthias Ringwald 
26238fcba05dSmatthias.ringwald     // max acl payload size defined in config.h
26243a9fb326S[email protected]     hci_stack->acl_data_packet_length = HCI_ACL_PAYLOAD_SIZE;
26258fcba05dSmatthias.ringwald 
262616833f0aSmatthias.ringwald     // register packet handlers with transport
262710e830c9Smatthias.ringwald     transport->register_packet_handler(&packet_handler);
2628f5454fc6Smatthias.ringwald 
26293a9fb326S[email protected]     hci_stack->state = HCI_STATE_OFF;
2630e2386ba1S[email protected] 
2631e2386ba1S[email protected]     // class of device
26323a9fb326S[email protected]     hci_stack->class_of_device = 0x007a020c; // Smartphone
2633a45d6b9fS[email protected] 
2634f20168b8Smatthias.ringwald     // bondable by default
2635f20168b8Smatthias.ringwald     hci_stack->bondable = 1;
2636f20168b8Smatthias.ringwald 
2637e9f343c8SMatthias Ringwald #ifdef ENABLE_CLASSIC
263863168530SMatthias Ringwald     // classic name
263963168530SMatthias Ringwald     hci_stack->local_name = default_classic_name;
2640c4c88f1bSJakob Krantz 
2641c4c88f1bSJakob Krantz     // Master slave policy
2642c4c88f1bSJakob Krantz     hci_stack->master_slave_policy = 1;
2643e9f343c8SMatthias Ringwald #endif
264463168530SMatthias Ringwald 
264563048403S[email protected]     // Secure Simple Pairing default: enable, no I/O capabilities, general bonding, mitm not required, auto accept
26463a9fb326S[email protected]     hci_stack->ssp_enable = 1;
26473a9fb326S[email protected]     hci_stack->ssp_io_capability = SSP_IO_CAPABILITY_NO_INPUT_NO_OUTPUT;
26483a9fb326S[email protected]     hci_stack->ssp_authentication_requirement = SSP_IO_AUTHREQ_MITM_PROTECTION_NOT_REQUIRED_GENERAL_BONDING;
26493a9fb326S[email protected]     hci_stack->ssp_auto_accept = 1;
265069a97523S[email protected] 
2651fac2e2feSMatthias Ringwald     // voice setting - signed 16 bit pcm data with CVSD over the air
2652fac2e2feSMatthias Ringwald     hci_stack->sco_voice_setting = 0x60;
2653d950d659SMatthias Ringwald 
2654831711daSMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
2655831711daSMatthias Ringwald     // connection parameter to use for outgoing connections
2656cbe54ab2SJakob Krantz     hci_stack->le_connection_scan_interval = 0x0060;   // 60ms
2657cbe54ab2SJakob Krantz     hci_stack->le_connection_scan_window  = 0x0030;    // 30ms
2658831711daSMatthias Ringwald     hci_stack->le_connection_interval_min = 0x0008;    // 10 ms
2659831711daSMatthias Ringwald     hci_stack->le_connection_interval_max = 0x0018;    // 30 ms
2660831711daSMatthias Ringwald     hci_stack->le_connection_latency      = 4;         // 4
2661831711daSMatthias Ringwald     hci_stack->le_supervision_timeout     = 0x0048;    // 720 ms
2662831711daSMatthias Ringwald     hci_stack->le_minimum_ce_length       = 2;         // 1.25 ms
2663831711daSMatthias Ringwald     hci_stack->le_maximum_ce_length       = 0x0030;    // 30 ms
2664831711daSMatthias Ringwald #endif
2665831711daSMatthias Ringwald 
26662b6ab3e6SMatthias Ringwald #ifdef ENABLE_LE_PERIPHERAL
26672b6ab3e6SMatthias Ringwald     hci_stack->le_max_number_peripheral_connections = 1; // only single connection as peripheral
26682b6ab3e6SMatthias Ringwald #endif
26692b6ab3e6SMatthias Ringwald 
2670831711daSMatthias Ringwald     // connection parameter range used to answer connection parameter update requests in l2cap
2671831711daSMatthias Ringwald     hci_stack->le_connection_parameter_range.le_conn_interval_min =          6;
2672831711daSMatthias Ringwald     hci_stack->le_connection_parameter_range.le_conn_interval_max =       3200;
2673831711daSMatthias Ringwald     hci_stack->le_connection_parameter_range.le_conn_latency_min =           0;
2674831711daSMatthias Ringwald     hci_stack->le_connection_parameter_range.le_conn_latency_max =         500;
2675831711daSMatthias Ringwald     hci_stack->le_connection_parameter_range.le_supervision_timeout_min =   10;
2676831711daSMatthias Ringwald     hci_stack->le_connection_parameter_range.le_supervision_timeout_max = 3200;
2677831711daSMatthias Ringwald 
2678595bdbfbS[email protected]     hci_state_reset();
2679475c8125Smatthias.ringwald }
2680475c8125Smatthias.ringwald 
26813fb36a29SMatthias Ringwald /**
26823fb36a29SMatthias Ringwald  * @brief Configure Bluetooth chipset driver. Has to be called before power on, or right after receiving the local version information
26833fb36a29SMatthias Ringwald  */
26843fb36a29SMatthias Ringwald void hci_set_chipset(const btstack_chipset_t *chipset_driver){
26853fb36a29SMatthias Ringwald     hci_stack->chipset = chipset_driver;
26863fb36a29SMatthias Ringwald 
26873fb36a29SMatthias Ringwald     // reset chipset driver - init is also called on power_up
26883fb36a29SMatthias Ringwald     if (hci_stack->chipset && hci_stack->chipset->init){
26893fb36a29SMatthias Ringwald         hci_stack->chipset->init(hci_stack->config);
26903fb36a29SMatthias Ringwald     }
26913fb36a29SMatthias Ringwald }
26923fb36a29SMatthias Ringwald 
2693fb55bd0aSMatthias Ringwald /**
2694d0b87befSMatthias Ringwald  * @brief Configure Bluetooth hardware control. Has to be called after hci_init() but before power on.
2695fb55bd0aSMatthias Ringwald  */
2696fb55bd0aSMatthias Ringwald void hci_set_control(const btstack_control_t *hardware_control){
2697fb55bd0aSMatthias Ringwald     // references to used control implementation
2698fb55bd0aSMatthias Ringwald     hci_stack->control = hardware_control;
2699d0b87befSMatthias Ringwald     // init with transport config
2700d0b87befSMatthias Ringwald     hardware_control->init(hci_stack->config);
2701fb55bd0aSMatthias Ringwald }
2702fb55bd0aSMatthias Ringwald 
270371de195eSMatthias Ringwald void hci_close(void){
2704404843c1Smatthias.ringwald     // close remote device db
2705a98592bcSMatthias Ringwald     if (hci_stack->link_key_db) {
2706a98592bcSMatthias Ringwald         hci_stack->link_key_db->close();
2707404843c1Smatthias.ringwald     }
27087224be7eSMatthias Ringwald 
27097224be7eSMatthias Ringwald     btstack_linked_list_iterator_t lit;
27107224be7eSMatthias Ringwald     btstack_linked_list_iterator_init(&lit, &hci_stack->connections);
27117224be7eSMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&lit)){
27127224be7eSMatthias Ringwald         // cancel all l2cap connections by emitting dicsconnection complete before shutdown (free) connection
27137224be7eSMatthias Ringwald         hci_connection_t * connection = (hci_connection_t*) btstack_linked_list_iterator_next(&lit);
27147224be7eSMatthias Ringwald         hci_emit_disconnection_complete(connection->con_handle, 0x16); // terminated by local host
27157224be7eSMatthias Ringwald         hci_shutdown_connection(connection);
2716f5454fc6Smatthias.ringwald     }
27177224be7eSMatthias Ringwald 
2718f5454fc6Smatthias.ringwald     hci_power_control(HCI_POWER_OFF);
27193a9fb326S[email protected] 
27203a9fb326S[email protected] #ifdef HAVE_MALLOC
27213a9fb326S[email protected]     free(hci_stack);
27223a9fb326S[email protected] #endif
27233a9fb326S[email protected]     hci_stack = NULL;
2724404843c1Smatthias.ringwald }
2725404843c1Smatthias.ringwald 
272635454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
272760b9e82fSMatthias Ringwald void gap_set_class_of_device(uint32_t class_of_device){
27289e61646fS[email protected]     hci_stack->class_of_device = class_of_device;
27299e61646fS[email protected] }
273076f27cffSMatthias Ringwald 
2731c33e56d3SMatthias Ringwald void gap_set_default_link_policy_settings(uint16_t default_link_policy_settings){
2732c33e56d3SMatthias Ringwald     hci_stack->default_link_policy_settings = default_link_policy_settings;
2733c33e56d3SMatthias Ringwald }
2734c33e56d3SMatthias Ringwald 
273576f27cffSMatthias Ringwald void hci_disable_l2cap_timeout_check(void){
273676f27cffSMatthias Ringwald     disable_l2cap_timeouts = 1;
273776f27cffSMatthias Ringwald }
273835454696SMatthias Ringwald #endif
27399e61646fS[email protected] 
274076f27cffSMatthias Ringwald #if !defined(HAVE_PLATFORM_IPHONE_OS) && !defined (HAVE_HOST_CONTROLLER_API)
2741f456b2d0S[email protected] // Set Public BD ADDR - passed on to Bluetooth chipset if supported in bt_control_h
2742f456b2d0S[email protected] void hci_set_bd_addr(bd_addr_t addr){
2743f456b2d0S[email protected]     memcpy(hci_stack->custom_bd_addr, addr, 6);
2744f456b2d0S[email protected]     hci_stack->custom_bd_addr_set = 1;
2745f456b2d0S[email protected] }
274676f27cffSMatthias Ringwald #endif
2747f456b2d0S[email protected] 
27488d213e1aSmatthias.ringwald // State-Module-Driver overview
27498d213e1aSmatthias.ringwald // state                    module  low-level
27508d213e1aSmatthias.ringwald // HCI_STATE_OFF             off      close
27518d213e1aSmatthias.ringwald // HCI_STATE_INITIALIZING,   on       open
27528d213e1aSmatthias.ringwald // HCI_STATE_WORKING,        on       open
27538d213e1aSmatthias.ringwald // HCI_STATE_HALTING,        on       open
2754d661ed19Smatthias.ringwald // HCI_STATE_SLEEPING,    off/sleep   close
2755d661ed19Smatthias.ringwald // HCI_STATE_FALLING_ASLEEP  on       open
2756c7e0c5f6Smatthias.ringwald 
275740d1c7a4Smatthias.ringwald static int hci_power_control_on(void){
27587301ad89Smatthias.ringwald 
2759038bc64cSmatthias.ringwald     // power on
2760f9a30166Smatthias.ringwald     int err = 0;
27613a9fb326S[email protected]     if (hci_stack->control && hci_stack->control->on){
2762d0b87befSMatthias Ringwald         err = (*hci_stack->control->on)();
2763f9a30166Smatthias.ringwald     }
2764038bc64cSmatthias.ringwald     if (err){
27659da54300S[email protected]         log_error( "POWER_ON failed");
2766038bc64cSmatthias.ringwald         hci_emit_hci_open_failed();
2767038bc64cSmatthias.ringwald         return err;
2768038bc64cSmatthias.ringwald     }
2769038bc64cSmatthias.ringwald 
277024b3c629SMatthias Ringwald     // int chipset driver
27713fb36a29SMatthias Ringwald     if (hci_stack->chipset && hci_stack->chipset->init){
27723fb36a29SMatthias Ringwald         hci_stack->chipset->init(hci_stack->config);
27733fb36a29SMatthias Ringwald     }
27743fb36a29SMatthias Ringwald 
277524b3c629SMatthias Ringwald     // init transport
277624b3c629SMatthias Ringwald     if (hci_stack->hci_transport->init){
277724b3c629SMatthias Ringwald         hci_stack->hci_transport->init(hci_stack->config);
277824b3c629SMatthias Ringwald     }
277924b3c629SMatthias Ringwald 
278024b3c629SMatthias Ringwald     // open transport
278124b3c629SMatthias Ringwald     err = hci_stack->hci_transport->open();
2782038bc64cSmatthias.ringwald     if (err){
27839da54300S[email protected]         log_error( "HCI_INIT failed, turning Bluetooth off again");
27843a9fb326S[email protected]         if (hci_stack->control && hci_stack->control->off){
2785d0b87befSMatthias Ringwald             (*hci_stack->control->off)();
2786f9a30166Smatthias.ringwald         }
2787038bc64cSmatthias.ringwald         hci_emit_hci_open_failed();
2788038bc64cSmatthias.ringwald         return err;
2789038bc64cSmatthias.ringwald     }
27908d213e1aSmatthias.ringwald     return 0;
27918d213e1aSmatthias.ringwald }
2792038bc64cSmatthias.ringwald 
279340d1c7a4Smatthias.ringwald static void hci_power_control_off(void){
27948d213e1aSmatthias.ringwald 
27959da54300S[email protected]     log_info("hci_power_control_off");
27969418f9c9Smatthias.ringwald 
27978d213e1aSmatthias.ringwald     // close low-level device
279824b3c629SMatthias Ringwald     hci_stack->hci_transport->close();
27998d213e1aSmatthias.ringwald 
28009da54300S[email protected]     log_info("hci_power_control_off - hci_transport closed");
28019418f9c9Smatthias.ringwald 
28028d213e1aSmatthias.ringwald     // power off
28033a9fb326S[email protected]     if (hci_stack->control && hci_stack->control->off){
2804d0b87befSMatthias Ringwald         (*hci_stack->control->off)();
28058d213e1aSmatthias.ringwald     }
28069418f9c9Smatthias.ringwald 
28079da54300S[email protected]     log_info("hci_power_control_off - control closed");
28089418f9c9Smatthias.ringwald 
28093a9fb326S[email protected]     hci_stack->state = HCI_STATE_OFF;
281072ea5239Smatthias.ringwald }
281172ea5239Smatthias.ringwald 
281240d1c7a4Smatthias.ringwald static void hci_power_control_sleep(void){
281372ea5239Smatthias.ringwald 
28149da54300S[email protected]     log_info("hci_power_control_sleep");
28153144bce4Smatthias.ringwald 
2816b429b9b7Smatthias.ringwald #if 0
2817b429b9b7Smatthias.ringwald     // don't close serial port during sleep
2818b429b9b7Smatthias.ringwald 
281972ea5239Smatthias.ringwald     // close low-level device
28203a9fb326S[email protected]     hci_stack->hci_transport->close(hci_stack->config);
2821b429b9b7Smatthias.ringwald #endif
282272ea5239Smatthias.ringwald 
282372ea5239Smatthias.ringwald     // sleep mode
28243a9fb326S[email protected]     if (hci_stack->control && hci_stack->control->sleep){
2825d0b87befSMatthias Ringwald         (*hci_stack->control->sleep)();
282672ea5239Smatthias.ringwald     }
2827b429b9b7Smatthias.ringwald 
28283a9fb326S[email protected]     hci_stack->state = HCI_STATE_SLEEPING;
28298d213e1aSmatthias.ringwald }
28308d213e1aSmatthias.ringwald 
283140d1c7a4Smatthias.ringwald static int hci_power_control_wake(void){
2832b429b9b7Smatthias.ringwald 
28339da54300S[email protected]     log_info("hci_power_control_wake");
2834b429b9b7Smatthias.ringwald 
2835b429b9b7Smatthias.ringwald     // wake on
28363a9fb326S[email protected]     if (hci_stack->control && hci_stack->control->wake){
2837d0b87befSMatthias Ringwald         (*hci_stack->control->wake)();
2838b429b9b7Smatthias.ringwald     }
2839b429b9b7Smatthias.ringwald 
2840b429b9b7Smatthias.ringwald #if 0
2841b429b9b7Smatthias.ringwald     // open low-level device
28423a9fb326S[email protected]     int err = hci_stack->hci_transport->open(hci_stack->config);
2843b429b9b7Smatthias.ringwald     if (err){
28449da54300S[email protected]         log_error( "HCI_INIT failed, turning Bluetooth off again");
28453a9fb326S[email protected]         if (hci_stack->control && hci_stack->control->off){
2846d0b87befSMatthias Ringwald             (*hci_stack->control->off)();
2847b429b9b7Smatthias.ringwald         }
2848b429b9b7Smatthias.ringwald         hci_emit_hci_open_failed();
2849b429b9b7Smatthias.ringwald         return err;
2850b429b9b7Smatthias.ringwald     }
2851b429b9b7Smatthias.ringwald #endif
2852b429b9b7Smatthias.ringwald 
2853b429b9b7Smatthias.ringwald     return 0;
2854b429b9b7Smatthias.ringwald }
2855b429b9b7Smatthias.ringwald 
285644935e40S[email protected] static void hci_power_transition_to_initializing(void){
285744935e40S[email protected]     // set up state machine
285844935e40S[email protected]     hci_stack->num_cmd_packets = 1; // assume that one cmd can be sent
285944935e40S[email protected]     hci_stack->hci_packet_buffer_reserved = 0;
286044935e40S[email protected]     hci_stack->state = HCI_STATE_INITIALIZING;
28615c363727SMatthias Ringwald     hci_stack->substate = HCI_INIT_SEND_RESET;
286244935e40S[email protected] }
2863b429b9b7Smatthias.ringwald 
28648d213e1aSmatthias.ringwald int hci_power_control(HCI_POWER_MODE power_mode){
2865d661ed19Smatthias.ringwald 
2866f04a0c31SMatthias Ringwald     log_info("hci_power_control: %d, current mode %u", power_mode, hci_stack->state);
2867d661ed19Smatthias.ringwald 
28688d213e1aSmatthias.ringwald     int err = 0;
28693a9fb326S[email protected]     switch (hci_stack->state){
28708d213e1aSmatthias.ringwald 
28718d213e1aSmatthias.ringwald         case HCI_STATE_OFF:
28728d213e1aSmatthias.ringwald             switch (power_mode){
28738d213e1aSmatthias.ringwald                 case HCI_POWER_ON:
28748d213e1aSmatthias.ringwald                     err = hci_power_control_on();
287597b61c7bS[email protected]                     if (err) {
2876f04a0c31SMatthias Ringwald                         log_error("hci_power_control_on() error %d", err);
287797b61c7bS[email protected]                         return err;
287897b61c7bS[email protected]                     }
287944935e40S[email protected]                     hci_power_transition_to_initializing();
28808d213e1aSmatthias.ringwald                     break;
28818d213e1aSmatthias.ringwald                 case HCI_POWER_OFF:
28828d213e1aSmatthias.ringwald                     // do nothing
28838d213e1aSmatthias.ringwald                     break;
28848d213e1aSmatthias.ringwald                 case HCI_POWER_SLEEP:
2885b546ac54Smatthias.ringwald                     // do nothing (with SLEEP == OFF)
28868d213e1aSmatthias.ringwald                     break;
28878d213e1aSmatthias.ringwald             }
28888d213e1aSmatthias.ringwald             break;
28897301ad89Smatthias.ringwald 
28908d213e1aSmatthias.ringwald         case HCI_STATE_INITIALIZING:
28918d213e1aSmatthias.ringwald             switch (power_mode){
28928d213e1aSmatthias.ringwald                 case HCI_POWER_ON:
28938d213e1aSmatthias.ringwald                     // do nothing
28948d213e1aSmatthias.ringwald                     break;
28958d213e1aSmatthias.ringwald                 case HCI_POWER_OFF:
28968d213e1aSmatthias.ringwald                     // no connections yet, just turn it off
28978d213e1aSmatthias.ringwald                     hci_power_control_off();
28988d213e1aSmatthias.ringwald                     break;
28998d213e1aSmatthias.ringwald                 case HCI_POWER_SLEEP:
2900b546ac54Smatthias.ringwald                     // no connections yet, just turn it off
290172ea5239Smatthias.ringwald                     hci_power_control_sleep();
29028d213e1aSmatthias.ringwald                     break;
29038d213e1aSmatthias.ringwald             }
29048d213e1aSmatthias.ringwald             break;
29057301ad89Smatthias.ringwald 
29068d213e1aSmatthias.ringwald         case HCI_STATE_WORKING:
29078d213e1aSmatthias.ringwald             switch (power_mode){
29088d213e1aSmatthias.ringwald                 case HCI_POWER_ON:
29098d213e1aSmatthias.ringwald                     // do nothing
29108d213e1aSmatthias.ringwald                     break;
29118d213e1aSmatthias.ringwald                 case HCI_POWER_OFF:
2912c7e0c5f6Smatthias.ringwald                     // see hci_run
29133a9fb326S[email protected]                     hci_stack->state = HCI_STATE_HALTING;
29148d213e1aSmatthias.ringwald                     break;
29158d213e1aSmatthias.ringwald                 case HCI_POWER_SLEEP:
2916b546ac54Smatthias.ringwald                     // see hci_run
29173a9fb326S[email protected]                     hci_stack->state = HCI_STATE_FALLING_ASLEEP;
291874b323a9SMatthias Ringwald                     hci_stack->substate = HCI_FALLING_ASLEEP_DISCONNECT;
29198d213e1aSmatthias.ringwald                     break;
29208d213e1aSmatthias.ringwald             }
29218d213e1aSmatthias.ringwald             break;
29227301ad89Smatthias.ringwald 
29238d213e1aSmatthias.ringwald         case HCI_STATE_HALTING:
29248d213e1aSmatthias.ringwald             switch (power_mode){
29258d213e1aSmatthias.ringwald                 case HCI_POWER_ON:
292644935e40S[email protected]                     hci_power_transition_to_initializing();
29278d213e1aSmatthias.ringwald                     break;
29288d213e1aSmatthias.ringwald                 case HCI_POWER_OFF:
29298d213e1aSmatthias.ringwald                     // do nothing
29308d213e1aSmatthias.ringwald                     break;
29318d213e1aSmatthias.ringwald                 case HCI_POWER_SLEEP:
2932b546ac54Smatthias.ringwald                     // see hci_run
29333a9fb326S[email protected]                     hci_stack->state = HCI_STATE_FALLING_ASLEEP;
293474b323a9SMatthias Ringwald                     hci_stack->substate = HCI_FALLING_ASLEEP_DISCONNECT;
29358d213e1aSmatthias.ringwald                     break;
29368d213e1aSmatthias.ringwald             }
29378d213e1aSmatthias.ringwald             break;
29388d213e1aSmatthias.ringwald 
29398d213e1aSmatthias.ringwald         case HCI_STATE_FALLING_ASLEEP:
29408d213e1aSmatthias.ringwald             switch (power_mode){
29418d213e1aSmatthias.ringwald                 case HCI_POWER_ON:
294228171530Smatthias.ringwald 
2943423a3e49SMatthias Ringwald #ifdef HAVE_PLATFORM_IPHONE_OS
294428171530Smatthias.ringwald                     // nothing to do, if H4 supports power management
2945d0b87befSMatthias Ringwald                     if (btstack_control_iphone_power_management_enabled()){
29463a9fb326S[email protected]                         hci_stack->state = HCI_STATE_INITIALIZING;
294774b323a9SMatthias Ringwald                         hci_stack->substate = HCI_INIT_WRITE_SCAN_ENABLE;   // init after sleep
294828171530Smatthias.ringwald                         break;
294928171530Smatthias.ringwald                     }
295028171530Smatthias.ringwald #endif
295144935e40S[email protected]                     hci_power_transition_to_initializing();
29528d213e1aSmatthias.ringwald                     break;
29538d213e1aSmatthias.ringwald                 case HCI_POWER_OFF:
2954b546ac54Smatthias.ringwald                     // see hci_run
29553a9fb326S[email protected]                     hci_stack->state = HCI_STATE_HALTING;
29568d213e1aSmatthias.ringwald                     break;
29578d213e1aSmatthias.ringwald                 case HCI_POWER_SLEEP:
2958b546ac54Smatthias.ringwald                     // do nothing
29598d213e1aSmatthias.ringwald                     break;
29608d213e1aSmatthias.ringwald             }
29618d213e1aSmatthias.ringwald             break;
29628d213e1aSmatthias.ringwald 
29638d213e1aSmatthias.ringwald         case HCI_STATE_SLEEPING:
29648d213e1aSmatthias.ringwald             switch (power_mode){
29658d213e1aSmatthias.ringwald                 case HCI_POWER_ON:
296628171530Smatthias.ringwald 
2967423a3e49SMatthias Ringwald #ifdef HAVE_PLATFORM_IPHONE_OS
296828171530Smatthias.ringwald                     // nothing to do, if H4 supports power management
2969d0b87befSMatthias Ringwald                     if (btstack_control_iphone_power_management_enabled()){
29703a9fb326S[email protected]                         hci_stack->state = HCI_STATE_INITIALIZING;
29715c363727SMatthias Ringwald                         hci_stack->substate = HCI_INIT_AFTER_SLEEP;
2972758b46ceSmatthias.ringwald                         hci_update_scan_enable();
297328171530Smatthias.ringwald                         break;
297428171530Smatthias.ringwald                     }
297528171530Smatthias.ringwald #endif
29763144bce4Smatthias.ringwald                     err = hci_power_control_wake();
29773144bce4Smatthias.ringwald                     if (err) return err;
297844935e40S[email protected]                     hci_power_transition_to_initializing();
29798d213e1aSmatthias.ringwald                     break;
29808d213e1aSmatthias.ringwald                 case HCI_POWER_OFF:
29813a9fb326S[email protected]                     hci_stack->state = HCI_STATE_HALTING;
29828d213e1aSmatthias.ringwald                     break;
29838d213e1aSmatthias.ringwald                 case HCI_POWER_SLEEP:
2984b546ac54Smatthias.ringwald                     // do nothing
29858d213e1aSmatthias.ringwald                     break;
29868d213e1aSmatthias.ringwald             }
29878d213e1aSmatthias.ringwald             break;
298811e23e5fSmatthias.ringwald     }
298968d92d03Smatthias.ringwald 
2990038bc64cSmatthias.ringwald     // create internal event
2991ee8bf225Smatthias.ringwald 	hci_emit_state();
2992ee8bf225Smatthias.ringwald 
299368d92d03Smatthias.ringwald 	// trigger next/first action
299468d92d03Smatthias.ringwald 	hci_run();
299568d92d03Smatthias.ringwald 
2996475c8125Smatthias.ringwald     return 0;
2997475c8125Smatthias.ringwald }
2998475c8125Smatthias.ringwald 
299935454696SMatthias Ringwald 
300035454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
300135454696SMatthias Ringwald 
3002758b46ceSmatthias.ringwald static void hci_update_scan_enable(void){
3003758b46ceSmatthias.ringwald     // 2 = page scan, 1 = inq scan
30043a9fb326S[email protected]     hci_stack->new_scan_enable_value  = hci_stack->connectable << 1 | hci_stack->discoverable;
3005758b46ceSmatthias.ringwald     hci_run();
3006758b46ceSmatthias.ringwald }
3007758b46ceSmatthias.ringwald 
300815a95bd5SMatthias Ringwald void gap_discoverable_control(uint8_t enable){
3009381fbed8Smatthias.ringwald     if (enable) enable = 1; // normalize argument
3010381fbed8Smatthias.ringwald 
30113a9fb326S[email protected]     if (hci_stack->discoverable == enable){
30123a9fb326S[email protected]         hci_emit_discoverable_enabled(hci_stack->discoverable);
3013381fbed8Smatthias.ringwald         return;
3014381fbed8Smatthias.ringwald     }
3015381fbed8Smatthias.ringwald 
30163a9fb326S[email protected]     hci_stack->discoverable = enable;
3017758b46ceSmatthias.ringwald     hci_update_scan_enable();
3018758b46ceSmatthias.ringwald }
3019b031bebbSmatthias.ringwald 
302015a95bd5SMatthias Ringwald void gap_connectable_control(uint8_t enable){
3021758b46ceSmatthias.ringwald     if (enable) enable = 1; // normalize argument
3022758b46ceSmatthias.ringwald 
3023758b46ceSmatthias.ringwald     // don't emit event
30243a9fb326S[email protected]     if (hci_stack->connectable == enable) return;
3025758b46ceSmatthias.ringwald 
30263a9fb326S[email protected]     hci_stack->connectable = enable;
3027758b46ceSmatthias.ringwald     hci_update_scan_enable();
3028381fbed8Smatthias.ringwald }
302935454696SMatthias Ringwald #endif
3030381fbed8Smatthias.ringwald 
303115a95bd5SMatthias Ringwald void gap_local_bd_addr(bd_addr_t address_buffer){
3032690bd0baS[email protected]     memcpy(address_buffer, hci_stack->local_bd_addr, 6);
30335061f3afS[email protected] }
30345061f3afS[email protected] 
30352b838201SMatthias Ringwald #ifdef ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL
30362b838201SMatthias Ringwald static void hci_host_num_completed_packets(void){
30372b838201SMatthias Ringwald 
30382b838201SMatthias Ringwald     // create packet manually as arrays are not supported and num_commands should not get reduced
30392b838201SMatthias Ringwald     hci_reserve_packet_buffer();
30402b838201SMatthias Ringwald     uint8_t * packet = hci_get_outgoing_packet_buffer();
30412b838201SMatthias Ringwald 
30422b838201SMatthias Ringwald     uint16_t size = 0;
30432b838201SMatthias Ringwald     uint16_t num_handles = 0;
30442b838201SMatthias Ringwald     packet[size++] = 0x35;
30452b838201SMatthias Ringwald     packet[size++] = 0x0c;
30462b838201SMatthias Ringwald     size++;  // skip param len
30472b838201SMatthias Ringwald     size++;  // skip num handles
30482b838201SMatthias Ringwald 
30492b838201SMatthias Ringwald     // add { handle, packets } entries
30502b838201SMatthias Ringwald     btstack_linked_item_t * it;
30512b838201SMatthias Ringwald     for (it = (btstack_linked_item_t *) hci_stack->connections; it ; it = it->next){
30522b838201SMatthias Ringwald         hci_connection_t * connection = (hci_connection_t *) it;
30532b838201SMatthias Ringwald         if (connection->num_packets_completed){
30542b838201SMatthias Ringwald             little_endian_store_16(packet, size, connection->con_handle);
30552b838201SMatthias Ringwald             size += 2;
30562b838201SMatthias Ringwald             little_endian_store_16(packet, size, connection->num_packets_completed);
30572b838201SMatthias Ringwald             size += 2;
30582b838201SMatthias Ringwald             //
30592b838201SMatthias Ringwald             num_handles++;
30602b838201SMatthias Ringwald             connection->num_packets_completed = 0;
30612b838201SMatthias Ringwald         }
30622b838201SMatthias Ringwald     }
30632b838201SMatthias Ringwald 
30642b838201SMatthias Ringwald     packet[2] = size - 3;
30652b838201SMatthias Ringwald     packet[3] = num_handles;
30662b838201SMatthias Ringwald 
30672b838201SMatthias Ringwald     hci_stack->host_completed_packets = 0;
30682b838201SMatthias Ringwald 
30692b838201SMatthias Ringwald     hci_dump_packet(HCI_COMMAND_DATA_PACKET, 0, packet, size);
30702b838201SMatthias Ringwald     hci_stack->hci_transport->send_packet(HCI_COMMAND_DATA_PACKET, packet, size);
30712b838201SMatthias Ringwald 
30722b838201SMatthias Ringwald     // release packet buffer for synchronous transport implementations
30732b838201SMatthias Ringwald     if (hci_transport_synchronous()){
3074e2d22487SMatthias Ringwald         hci_release_packet_buffer();
3075068b8592SMatthias Ringwald         hci_emit_transport_packet_sent();
30762b838201SMatthias Ringwald     }
30772b838201SMatthias Ringwald }
30782b838201SMatthias Ringwald #endif
30792b838201SMatthias Ringwald 
308095d71764SMatthias Ringwald static void hci_run(void){
30818a485f27Smatthias.ringwald 
3082db8bc6ffSMatthias Ringwald     // log_info("hci_run: entered");
3083665d90f2SMatthias Ringwald     btstack_linked_item_t * it;
308432ab9390Smatthias.ringwald 
3085b5d8b22bS[email protected]     // send continuation fragments first, as they block the prepared packet buffer
3086b5d8b22bS[email protected]     if (hci_stack->acl_fragmentation_total_size > 0) {
3087b5d8b22bS[email protected]         hci_con_handle_t con_handle = READ_ACL_CONNECTION_HANDLE(hci_stack->hci_packet_buffer);
3088b5d8b22bS[email protected]         hci_connection_t *connection = hci_connection_for_handle(con_handle);
3089b5d8b22bS[email protected]         if (connection) {
309028a0332dSMatthias Ringwald             if (hci_can_send_prepared_acl_packet_now(con_handle)){
3091b5d8b22bS[email protected]                 hci_send_acl_packet_fragments(connection);
3092b5d8b22bS[email protected]                 return;
3093b5d8b22bS[email protected]             }
309428a0332dSMatthias Ringwald         } else {
3095b5d8b22bS[email protected]             // connection gone -> discard further fragments
309628a0332dSMatthias Ringwald             log_info("hci_run: fragmented ACL packet no connection -> discard fragment");
3097b5d8b22bS[email protected]             hci_stack->acl_fragmentation_total_size = 0;
3098b5d8b22bS[email protected]             hci_stack->acl_fragmentation_pos = 0;
3099b5d8b22bS[email protected]         }
3100b5d8b22bS[email protected]     }
3101b5d8b22bS[email protected] 
31022b838201SMatthias Ringwald #ifdef ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL
31032b838201SMatthias Ringwald     // send host num completed packets next as they don't require num_cmd_packets > 0
31042b838201SMatthias Ringwald     if (!hci_can_send_comand_packet_transport()) return;
31052b838201SMatthias Ringwald     if (hci_stack->host_completed_packets){
31062b838201SMatthias Ringwald         hci_host_num_completed_packets();
31072b838201SMatthias Ringwald         return;
31082b838201SMatthias Ringwald     }
31092b838201SMatthias Ringwald #endif
31102b838201SMatthias Ringwald 
3111d94d3cafS[email protected]     if (!hci_can_send_command_packet_now()) return;
3112ce4c8fabSmatthias.ringwald 
3113b031bebbSmatthias.ringwald     // global/non-connection oriented commands
3114b031bebbSmatthias.ringwald 
311535454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
3116b031bebbSmatthias.ringwald     // decline incoming connections
31173a9fb326S[email protected]     if (hci_stack->decline_reason){
31183a9fb326S[email protected]         uint8_t reason = hci_stack->decline_reason;
31193a9fb326S[email protected]         hci_stack->decline_reason = 0;
31203a9fb326S[email protected]         hci_send_cmd(&hci_reject_connection_request, hci_stack->decline_addr, reason);
3121dbe1a790S[email protected]         return;
3122ce4c8fabSmatthias.ringwald     }
3123b031bebbSmatthias.ringwald     // send scan enable
31243a9fb326S[email protected]     if (hci_stack->state == HCI_STATE_WORKING && hci_stack->new_scan_enable_value != 0xff && hci_classic_supported()){
31253a9fb326S[email protected]         hci_send_cmd(&hci_write_scan_enable, hci_stack->new_scan_enable_value);
31263a9fb326S[email protected]         hci_stack->new_scan_enable_value = 0xff;
3127dbe1a790S[email protected]         return;
3128b031bebbSmatthias.ringwald     }
3129f5875de5SMatthias Ringwald     // start/stop inquiry
3130f5875de5SMatthias Ringwald     if (hci_stack->inquiry_state >= GAP_INQUIRY_DURATION_MIN && hci_stack->inquiry_state <= GAP_INQUIRY_DURATION_MAX){
3131f5875de5SMatthias Ringwald         uint8_t duration = hci_stack->inquiry_state;
3132f5875de5SMatthias Ringwald         hci_stack->inquiry_state = GAP_INQUIRY_STATE_ACTIVE;
31338aee7be2SMilanka Ringwald         hci_send_cmd(&hci_inquiry, GAP_IAC_GENERAL_INQUIRY, duration, 0);
3134f5875de5SMatthias Ringwald         return;
3135f5875de5SMatthias Ringwald     }
3136f5875de5SMatthias Ringwald     if (hci_stack->inquiry_state == GAP_INQUIRY_STATE_W2_CANCEL){
3137f5875de5SMatthias Ringwald         hci_stack->inquiry_state = GAP_INQUIRY_STATE_W4_CANCELLED;
3138f5875de5SMatthias Ringwald         hci_send_cmd(&hci_inquiry_cancel);
3139f5875de5SMatthias Ringwald         return;
3140f5875de5SMatthias Ringwald     }
3141b7f1ee76SMatthias Ringwald     // remote name request
3142b7f1ee76SMatthias Ringwald     if (hci_stack->remote_name_state == GAP_REMOTE_NAME_STATE_W2_SEND){
3143b7f1ee76SMatthias Ringwald         hci_stack->remote_name_state = GAP_REMOTE_NAME_STATE_W4_COMPLETE;
3144b7f1ee76SMatthias Ringwald         hci_send_cmd(&hci_remote_name_request, hci_stack->remote_name_addr,
3145ee8a36c8SMatthias Ringwald             hci_stack->remote_name_page_scan_repetition_mode, 0, hci_stack->remote_name_clock_offset);
31460e55bd69SMatthias Ringwald         return;
3147b7f1ee76SMatthias Ringwald     }
31480a51f88bSMatthias Ringwald     // pairing
31490a51f88bSMatthias Ringwald     if (hci_stack->gap_pairing_state != GAP_PAIRING_STATE_IDLE){
31500a51f88bSMatthias Ringwald         uint8_t state = hci_stack->gap_pairing_state;
31510a51f88bSMatthias Ringwald         hci_stack->gap_pairing_state = GAP_PAIRING_STATE_IDLE;
31520a51f88bSMatthias Ringwald         switch (state){
31530a51f88bSMatthias Ringwald             case GAP_PAIRING_STATE_SEND_PIN:
3154d504181aSMatthias Ringwald                 hci_send_cmd(&hci_pin_code_request_reply, hci_stack->gap_pairing_addr, strlen(hci_stack->gap_pairing_input.gap_pairing_pin), hci_stack->gap_pairing_input.gap_pairing_pin);
31550a51f88bSMatthias Ringwald                 break;
31560a51f88bSMatthias Ringwald             case GAP_PAIRING_STATE_SEND_PIN_NEGATIVE:
31570a51f88bSMatthias Ringwald                 hci_send_cmd(&hci_pin_code_request_negative_reply, hci_stack->gap_pairing_addr);
31580a51f88bSMatthias Ringwald                 break;
31590a51f88bSMatthias Ringwald             case GAP_PAIRING_STATE_SEND_PASSKEY:
3160d504181aSMatthias Ringwald                 hci_send_cmd(&hci_user_passkey_request_reply, hci_stack->gap_pairing_addr, hci_stack->gap_pairing_input.gap_pairing_passkey);
31610a51f88bSMatthias Ringwald                 break;
31620a51f88bSMatthias Ringwald             case GAP_PAIRING_STATE_SEND_PASSKEY_NEGATIVE:
31630a51f88bSMatthias Ringwald                 hci_send_cmd(&hci_user_passkey_request_negative_reply, hci_stack->gap_pairing_addr);
31640a51f88bSMatthias Ringwald                 break;
31650a51f88bSMatthias Ringwald             case GAP_PAIRING_STATE_SEND_CONFIRMATION:
31660a51f88bSMatthias Ringwald                 hci_send_cmd(&hci_user_confirmation_request_reply, hci_stack->gap_pairing_addr);
31670a51f88bSMatthias Ringwald                 break;
31680a51f88bSMatthias Ringwald             case GAP_PAIRING_STATE_SEND_CONFIRMATION_NEGATIVE:
31690a51f88bSMatthias Ringwald                 hci_send_cmd(&hci_user_confirmation_request_negative_reply, hci_stack->gap_pairing_addr);
31700a51f88bSMatthias Ringwald                 break;
31710a51f88bSMatthias Ringwald             default:
31720a51f88bSMatthias Ringwald                 break;
31730a51f88bSMatthias Ringwald         }
31740a51f88bSMatthias Ringwald         return;
31750a51f88bSMatthias Ringwald     }
317635454696SMatthias Ringwald #endif
3177b031bebbSmatthias.ringwald 
3178a9a4c409SMatthias Ringwald #ifdef ENABLE_BLE
3179b95a5a35SMatthias Ringwald     // advertisements, active scanning, and creating connections requires randaom address to be set if using private address
3180b95a5a35SMatthias Ringwald     if ((hci_stack->state == HCI_STATE_WORKING)
3181b95a5a35SMatthias Ringwald     && (hci_stack->le_own_addr_type == BD_ADDR_TYPE_LE_PUBLIC || hci_stack->le_random_address_set)){
3182d70217a2SMatthias Ringwald 
3183d70217a2SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
318445c102fdSMatthias Ringwald         // handle le scan
31856fab74dbSMatthias Ringwald         if ((hci_stack->le_scanning_enabled != hci_stack->le_scanning_active)){
31866fab74dbSMatthias Ringwald             hci_stack->le_scanning_active = hci_stack->le_scanning_enabled;
31876fab74dbSMatthias Ringwald             hci_send_cmd(&hci_le_set_scan_enable, hci_stack->le_scanning_enabled, 0);
31887bdc6798S[email protected]             return;
31897bdc6798S[email protected]         }
3190e2602ea2Smatthias.ringwald         if (hci_stack->le_scan_type != 0xff){
3191e2602ea2Smatthias.ringwald             // defaults: active scanning, accept all advertisement packets
3192e2602ea2Smatthias.ringwald             int scan_type = hci_stack->le_scan_type;
3193e2602ea2Smatthias.ringwald             hci_stack->le_scan_type = 0xff;
3194b95a5a35SMatthias Ringwald             hci_send_cmd(&hci_le_set_scan_parameters, scan_type, hci_stack->le_scan_interval, hci_stack->le_scan_window, hci_stack->le_own_addr_type, 0);
3195e2602ea2Smatthias.ringwald             return;
3196e2602ea2Smatthias.ringwald         }
3197d70217a2SMatthias Ringwald #endif
3198d70217a2SMatthias Ringwald #ifdef ENABLE_LE_PERIPHERAL
319945c102fdSMatthias Ringwald         // le advertisement control
32009a2e4658SMatthias Ringwald         if (hci_stack->le_advertisements_todo){
32019a2e4658SMatthias Ringwald             log_info("hci_run: gap_le: adv todo: %x", hci_stack->le_advertisements_todo );
32029a2e4658SMatthias Ringwald         }
320345c102fdSMatthias Ringwald         if (hci_stack->le_advertisements_todo & LE_ADVERTISEMENT_TASKS_DISABLE){
320445c102fdSMatthias Ringwald             hci_stack->le_advertisements_todo &= ~LE_ADVERTISEMENT_TASKS_DISABLE;
320545c102fdSMatthias Ringwald             hci_send_cmd(&hci_le_set_advertise_enable, 0);
320645c102fdSMatthias Ringwald             return;
320745c102fdSMatthias Ringwald         }
320845c102fdSMatthias Ringwald         if (hci_stack->le_advertisements_todo & LE_ADVERTISEMENT_TASKS_SET_PARAMS){
320945c102fdSMatthias Ringwald             hci_stack->le_advertisements_todo &= ~LE_ADVERTISEMENT_TASKS_SET_PARAMS;
321045c102fdSMatthias Ringwald             hci_send_cmd(&hci_le_set_advertising_parameters,
321145c102fdSMatthias Ringwald                  hci_stack->le_advertisements_interval_min,
321245c102fdSMatthias Ringwald                  hci_stack->le_advertisements_interval_max,
321345c102fdSMatthias Ringwald                  hci_stack->le_advertisements_type,
3214b95a5a35SMatthias Ringwald                  hci_stack->le_own_addr_type,
321545c102fdSMatthias Ringwald                  hci_stack->le_advertisements_direct_address_type,
321645c102fdSMatthias Ringwald                  hci_stack->le_advertisements_direct_address,
321745c102fdSMatthias Ringwald                  hci_stack->le_advertisements_channel_map,
321845c102fdSMatthias Ringwald                  hci_stack->le_advertisements_filter_policy);
321945c102fdSMatthias Ringwald             return;
322045c102fdSMatthias Ringwald         }
3221501f56b3SMatthias Ringwald         if (hci_stack->le_advertisements_todo & LE_ADVERTISEMENT_TASKS_SET_ADV_DATA){
3222501f56b3SMatthias Ringwald             hci_stack->le_advertisements_todo &= ~LE_ADVERTISEMENT_TASKS_SET_ADV_DATA;
32237a85e4f5SMatthias Ringwald             uint8_t adv_data_clean[31];
32247a85e4f5SMatthias Ringwald             memset(adv_data_clean, 0, sizeof(adv_data_clean));
32257a85e4f5SMatthias Ringwald             memcpy(adv_data_clean, hci_stack->le_advertisements_data, hci_stack->le_advertisements_data_len);
3226f868b059SMatthias Ringwald             hci_replace_bd_addr_placeholder(adv_data_clean, hci_stack->le_advertisements_data_len);
32277a85e4f5SMatthias Ringwald             hci_send_cmd(&hci_le_set_advertising_data, hci_stack->le_advertisements_data_len, adv_data_clean);
322845c102fdSMatthias Ringwald             return;
322945c102fdSMatthias Ringwald         }
3230501f56b3SMatthias Ringwald         if (hci_stack->le_advertisements_todo & LE_ADVERTISEMENT_TASKS_SET_SCAN_DATA){
3231501f56b3SMatthias Ringwald             hci_stack->le_advertisements_todo &= ~LE_ADVERTISEMENT_TASKS_SET_SCAN_DATA;
3232f868b059SMatthias Ringwald             uint8_t scan_data_clean[31];
3233f868b059SMatthias Ringwald             memset(scan_data_clean, 0, sizeof(scan_data_clean));
32348cdc9940SMatthias Ringwald             memcpy(scan_data_clean, hci_stack->le_scan_response_data, hci_stack->le_scan_response_data_len);
3235f868b059SMatthias Ringwald             hci_replace_bd_addr_placeholder(scan_data_clean, hci_stack->le_scan_response_data_len);
3236f868b059SMatthias Ringwald             hci_send_cmd(&hci_le_set_scan_response_data, hci_stack->le_scan_response_data_len, hci_stack->le_scan_response_data);
3237501f56b3SMatthias Ringwald             return;
3238501f56b3SMatthias Ringwald         }
3239b95a5a35SMatthias Ringwald         if (hci_stack->le_advertisements_todo & LE_ADVERTISEMENT_TASKS_ENABLE){
324045c102fdSMatthias Ringwald             hci_stack->le_advertisements_todo &= ~LE_ADVERTISEMENT_TASKS_ENABLE;
324145c102fdSMatthias Ringwald             hci_send_cmd(&hci_le_set_advertise_enable, 1);
324245c102fdSMatthias Ringwald             return;
324345c102fdSMatthias Ringwald         }
3244d70217a2SMatthias Ringwald #endif
32459956955bSMatthias Ringwald 
3246d70217a2SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
32479956955bSMatthias Ringwald         //
32489956955bSMatthias Ringwald         // LE Whitelist Management
32499956955bSMatthias Ringwald         //
32509956955bSMatthias Ringwald 
32519956955bSMatthias Ringwald         // check if whitelist needs modification
3252665d90f2SMatthias Ringwald         btstack_linked_list_iterator_t lit;
32539956955bSMatthias Ringwald         int modification_pending = 0;
3254665d90f2SMatthias Ringwald         btstack_linked_list_iterator_init(&lit, &hci_stack->le_whitelist);
3255665d90f2SMatthias Ringwald         while (btstack_linked_list_iterator_has_next(&lit)){
3256665d90f2SMatthias Ringwald             whitelist_entry_t * entry = (whitelist_entry_t*) btstack_linked_list_iterator_next(&lit);
32579956955bSMatthias Ringwald             if (entry->state & (LE_WHITELIST_REMOVE_FROM_CONTROLLER | LE_WHITELIST_ADD_TO_CONTROLLER)){
32589956955bSMatthias Ringwald                 modification_pending = 1;
32599956955bSMatthias Ringwald                 break;
32609956955bSMatthias Ringwald             }
32619956955bSMatthias Ringwald         }
326291915b0bSMatthias Ringwald 
32639956955bSMatthias Ringwald         if (modification_pending){
326491915b0bSMatthias Ringwald             // stop connnecting if modification pending
32659956955bSMatthias Ringwald             if (hci_stack->le_connecting_state != LE_CONNECTING_IDLE){
32669956955bSMatthias Ringwald                 hci_send_cmd(&hci_le_create_connection_cancel);
32679956955bSMatthias Ringwald                 return;
32689956955bSMatthias Ringwald             }
32699956955bSMatthias Ringwald 
32709956955bSMatthias Ringwald             // add/remove entries
3271665d90f2SMatthias Ringwald             btstack_linked_list_iterator_init(&lit, &hci_stack->le_whitelist);
3272665d90f2SMatthias Ringwald             while (btstack_linked_list_iterator_has_next(&lit)){
3273665d90f2SMatthias Ringwald                 whitelist_entry_t * entry = (whitelist_entry_t*) btstack_linked_list_iterator_next(&lit);
32749956955bSMatthias Ringwald                 if (entry->state & LE_WHITELIST_ADD_TO_CONTROLLER){
32759956955bSMatthias Ringwald                     entry->state = LE_WHITELIST_ON_CONTROLLER;
32769956955bSMatthias Ringwald                     hci_send_cmd(&hci_le_add_device_to_white_list, entry->address_type, entry->address);
32779956955bSMatthias Ringwald                     return;
32789956955bSMatthias Ringwald 
32799956955bSMatthias Ringwald                 }
32809956955bSMatthias Ringwald                 if (entry->state & LE_WHITELIST_REMOVE_FROM_CONTROLLER){
32819ecbe201SMatthias Ringwald                     bd_addr_t address;
32829ecbe201SMatthias Ringwald                     bd_addr_type_t address_type = entry->address_type;
32839ecbe201SMatthias Ringwald                     memcpy(address, entry->address, 6);
3284665d90f2SMatthias Ringwald                     btstack_linked_list_remove(&hci_stack->le_whitelist, (btstack_linked_item_t *) entry);
32859956955bSMatthias Ringwald                     btstack_memory_whitelist_entry_free(entry);
32869ecbe201SMatthias Ringwald                     hci_send_cmd(&hci_le_remove_device_from_white_list, address_type, address);
32879956955bSMatthias Ringwald                     return;
32889956955bSMatthias Ringwald                 }
32899956955bSMatthias Ringwald             }
329091915b0bSMatthias Ringwald         }
32919956955bSMatthias Ringwald 
32929956955bSMatthias Ringwald         // start connecting
329391915b0bSMatthias Ringwald         if ( hci_stack->le_connecting_state == LE_CONNECTING_IDLE &&
3294665d90f2SMatthias Ringwald             !btstack_linked_list_empty(&hci_stack->le_whitelist)){
32959956955bSMatthias Ringwald             bd_addr_t null_addr;
32969956955bSMatthias Ringwald             memset(null_addr, 0, 6);
32979956955bSMatthias Ringwald             hci_send_cmd(&hci_le_create_connection,
3298cbe54ab2SJakob Krantz                 hci_stack->le_connection_scan_interval,    // scan interval: 60 ms
3299cbe54ab2SJakob Krantz                 hci_stack->le_connection_scan_window,    // scan interval: 30 ms
33009956955bSMatthias Ringwald                  1,         // use whitelist
33019956955bSMatthias Ringwald                  0,         // peer address type
33029956955bSMatthias Ringwald                  null_addr, // peer bd addr
3303b95a5a35SMatthias Ringwald                  hci_stack->le_own_addr_type, // our addr type:
330473044eb2SMatthias Ringwald                  hci_stack->le_connection_interval_min,    // conn interval min
330573044eb2SMatthias Ringwald                  hci_stack->le_connection_interval_max,    // conn interval max
330673044eb2SMatthias Ringwald                  hci_stack->le_connection_latency,         // conn latency
330773044eb2SMatthias Ringwald                  hci_stack->le_supervision_timeout,        // conn latency
330873044eb2SMatthias Ringwald                  hci_stack->le_minimum_ce_length,          // min ce length
330973044eb2SMatthias Ringwald                  hci_stack->le_maximum_ce_length           // max ce length
33109956955bSMatthias Ringwald                 );
33119956955bSMatthias Ringwald             return;
33129956955bSMatthias Ringwald         }
3313d70217a2SMatthias Ringwald #endif
33147bdc6798S[email protected]     }
3315b2f949feS[email protected] #endif
33167bdc6798S[email protected] 
331732ab9390Smatthias.ringwald     // send pending HCI commands
3318665d90f2SMatthias Ringwald     for (it = (btstack_linked_item_t *) hci_stack->connections; it ; it = it->next){
331905ae8de3SMatthias Ringwald         hci_connection_t * connection = (hci_connection_t *) it;
332032ab9390Smatthias.ringwald 
33210bf6344aS[email protected]         switch(connection->state){
33220bf6344aS[email protected]             case SEND_CREATE_CONNECTION:
33234f3229d8S[email protected]                 switch(connection->address_type){
332435454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
33254f3229d8S[email protected]                     case BD_ADDR_TYPE_CLASSIC:
33269da54300S[email protected]                         log_info("sending hci_create_connection");
3327ad83dc6aS[email protected]                         hci_send_cmd(&hci_create_connection, connection->address, hci_usable_acl_packet_types(), 0, 0, 0, 1);
33284f3229d8S[email protected]                         break;
332935454696SMatthias Ringwald #endif
33304f3229d8S[email protected]                     default:
3331a9a4c409SMatthias Ringwald #ifdef ENABLE_BLE
3332d70217a2SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
3333229331c6SMatthias Ringwald                         // track outgoing connection
3334229331c6SMatthias Ringwald                         hci_stack->outgoing_addr_type = connection->address_type;
3335229331c6SMatthias Ringwald                         memcpy(hci_stack->outgoing_addr, connection->address, 6);
33369da54300S[email protected]                         log_info("sending hci_le_create_connection");
33374f3229d8S[email protected]                         hci_send_cmd(&hci_le_create_connection,
3338cbe54ab2SJakob Krantz                              hci_stack->le_connection_scan_interval,    // conn scan interval
3339cbe54ab2SJakob Krantz                              hci_stack->le_connection_scan_window,      // conn scan windows
33404f3229d8S[email protected]                              0,         // don't use whitelist
33414f3229d8S[email protected]                              connection->address_type, // peer address type
33424f3229d8S[email protected]                              connection->address,      // peer bd addr
3343b95a5a35SMatthias Ringwald                              hci_stack->le_own_addr_type, // our addr type:
334473044eb2SMatthias Ringwald                              hci_stack->le_connection_interval_min,    // conn interval min
334573044eb2SMatthias Ringwald                              hci_stack->le_connection_interval_max,    // conn interval max
334673044eb2SMatthias Ringwald                              hci_stack->le_connection_latency,         // conn latency
334773044eb2SMatthias Ringwald                              hci_stack->le_supervision_timeout,        // conn latency
334873044eb2SMatthias Ringwald                              hci_stack->le_minimum_ce_length,          // min ce length
334973044eb2SMatthias Ringwald                              hci_stack->le_maximum_ce_length          // max ce length
33504f3229d8S[email protected]                              );
33514f3229d8S[email protected]                         connection->state = SENT_CREATE_CONNECTION;
3352b2f949feS[email protected] #endif
3353d70217a2SMatthias Ringwald #endif
33544f3229d8S[email protected]                         break;
33554f3229d8S[email protected]                 }
3356ad83dc6aS[email protected]                 return;
3357ad83dc6aS[email protected] 
335835454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
33590bf6344aS[email protected]             case RECEIVED_CONNECTION_REQUEST:
33605cf766e8SMatthias Ringwald                 connection->role  = HCI_ROLE_SLAVE;
3361e35edcc1S[email protected]                 if (connection->address_type == BD_ADDR_TYPE_CLASSIC){
3362895f6685SMilanka Ringwald                     log_info("sending hci_accept_connection_request, remote eSCO %u", connection->remote_supported_feature_eSCO);
3363895f6685SMilanka Ringwald                     connection->state = ACCEPTED_CONNECTION_REQUEST;
3364c4c88f1bSJakob Krantz                     hci_send_cmd(&hci_accept_connection_request, connection->address, hci_stack->master_slave_policy);
3365e35edcc1S[email protected]                 }
3366dbe1a790S[email protected]                 return;
336735454696SMatthias Ringwald #endif
33680bf6344aS[email protected] 
3369a9a4c409SMatthias Ringwald #ifdef ENABLE_BLE
3370d70217a2SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
33710bf6344aS[email protected]             case SEND_CANCEL_CONNECTION:
33720bf6344aS[email protected]                 connection->state = SENT_CANCEL_CONNECTION;
33730bf6344aS[email protected]                 hci_send_cmd(&hci_le_create_connection_cancel);
33740bf6344aS[email protected]                 return;
3375a6725849S[email protected] #endif
3376d70217a2SMatthias Ringwald #endif
33770bf6344aS[email protected]             case SEND_DISCONNECT:
33780bf6344aS[email protected]                 connection->state = SENT_DISCONNECT;
33797851196eSmatthias.ringwald                 hci_send_cmd(&hci_disconnect, connection->con_handle, 0x13); // remote closed connection
33800bf6344aS[email protected]                 return;
33810bf6344aS[email protected] 
33820bf6344aS[email protected]             default:
33830bf6344aS[email protected]                 break;
3384c7e0c5f6Smatthias.ringwald         }
3385c7e0c5f6Smatthias.ringwald 
3386cabf004eSMatthias Ringwald         // no further commands if connection is about to get shut down
3387cabf004eSMatthias Ringwald         if (connection->state == SENT_DISCONNECT) continue;
3388cabf004eSMatthias Ringwald 
338935454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
339032ab9390Smatthias.ringwald         if (connection->authentication_flags & HANDLE_LINK_KEY_REQUEST){
33919da54300S[email protected]             log_info("responding to link key request");
339234d2123cS[email protected]             connectionClearAuthenticationFlags(connection, HANDLE_LINK_KEY_REQUEST);
339332ab9390Smatthias.ringwald             link_key_t link_key;
3394c77e8838S[email protected]             link_key_type_t link_key_type;
3395a98592bcSMatthias Ringwald             if ( hci_stack->link_key_db
3396a98592bcSMatthias Ringwald               && hci_stack->link_key_db->get_link_key(connection->address, link_key, &link_key_type)
339734d2123cS[email protected]               && gap_security_level_for_link_key_type(link_key_type) >= connection->requested_security_level){
33989ab95c90S[email protected]                connection->link_key_type = link_key_type;
339932ab9390Smatthias.ringwald                hci_send_cmd(&hci_link_key_request_reply, connection->address, &link_key);
340032ab9390Smatthias.ringwald             } else {
340132ab9390Smatthias.ringwald                hci_send_cmd(&hci_link_key_request_negative_reply, connection->address);
340232ab9390Smatthias.ringwald             }
3403dbe1a790S[email protected]             return;
340432ab9390Smatthias.ringwald         }
34051d6b20aeS[email protected] 
3406899283eaS[email protected]         if (connection->authentication_flags & DENY_PIN_CODE_REQUEST){
34079da54300S[email protected]             log_info("denying to pin request");
3408899283eaS[email protected]             connectionClearAuthenticationFlags(connection, DENY_PIN_CODE_REQUEST);
340934d2123cS[email protected]             hci_send_cmd(&hci_pin_code_request_negative_reply, connection->address);
34104c57c146S[email protected]             return;
34114c57c146S[email protected]         }
34124c57c146S[email protected] 
3413dbe1a790S[email protected]         if (connection->authentication_flags & SEND_IO_CAPABILITIES_REPLY){
341434d2123cS[email protected]             connectionClearAuthenticationFlags(connection, SEND_IO_CAPABILITIES_REPLY);
341582d8f825S[email protected]             log_info("IO Capability Request received, stack bondable %u, io cap %u", hci_stack->bondable, hci_stack->ssp_io_capability);
341682d8f825S[email protected]             if (hci_stack->bondable && (hci_stack->ssp_io_capability != SSP_IO_CAPABILITY_UNKNOWN)){
3417106d6d11S[email protected]                 // tweak authentication requirements
34183a9fb326S[email protected]                 uint8_t authreq = hci_stack->ssp_authentication_requirement;
3419106d6d11S[email protected]                 if (connection->bonding_flags & BONDING_DEDICATED){
34209faad3abS[email protected]                     authreq = SSP_IO_AUTHREQ_MITM_PROTECTION_NOT_REQUIRED_DEDICATED_BONDING;
34219faad3abS[email protected]                 }
34229faad3abS[email protected]                 if (gap_mitm_protection_required_for_security_level(connection->requested_security_level)){
34239faad3abS[email protected]                     authreq |= 1;
3424106d6d11S[email protected]                 }
34253a9fb326S[email protected]                 hci_send_cmd(&hci_io_capability_request_reply, &connection->address, hci_stack->ssp_io_capability, NULL, authreq);
3426f8fb5f6eS[email protected]             } else {
3427f8fb5f6eS[email protected]                 hci_send_cmd(&hci_io_capability_request_negative_reply, &connection->address, ERROR_CODE_PAIRING_NOT_ALLOWED);
3428f8fb5f6eS[email protected]             }
3429dbe1a790S[email protected]             return;
343032ab9390Smatthias.ringwald         }
343132ab9390Smatthias.ringwald 
3432dbe1a790S[email protected]         if (connection->authentication_flags & SEND_USER_CONFIRM_REPLY){
3433dbe1a790S[email protected]             connectionClearAuthenticationFlags(connection, SEND_USER_CONFIRM_REPLY);
343434d2123cS[email protected]             hci_send_cmd(&hci_user_confirmation_request_reply, &connection->address);
3435dbe1a790S[email protected]             return;
3436dbe1a790S[email protected]         }
3437dbe1a790S[email protected] 
3438dbe1a790S[email protected]         if (connection->authentication_flags & SEND_USER_PASSKEY_REPLY){
3439dbe1a790S[email protected]             connectionClearAuthenticationFlags(connection, SEND_USER_PASSKEY_REPLY);
344034d2123cS[email protected]             hci_send_cmd(&hci_user_passkey_request_reply, &connection->address, 000000);
3441dbe1a790S[email protected]             return;
3442dbe1a790S[email protected]         }
3443afd4e962S[email protected] 
3444afd4e962S[email protected]         if (connection->bonding_flags & BONDING_REQUEST_REMOTE_FEATURES){
3445afd4e962S[email protected]             connection->bonding_flags &= ~BONDING_REQUEST_REMOTE_FEATURES;
344634d2123cS[email protected]             hci_send_cmd(&hci_read_remote_supported_features_command, connection->con_handle);
34472bd8b7e7S[email protected]             return;
34482bd8b7e7S[email protected]         }
34492bd8b7e7S[email protected] 
3450ad83dc6aS[email protected]         if (connection->bonding_flags & BONDING_DISCONNECT_DEDICATED_DONE){
3451ad83dc6aS[email protected]             connection->bonding_flags &= ~BONDING_DISCONNECT_DEDICATED_DONE;
34521bd5283dS[email protected]             connection->bonding_flags |= BONDING_EMIT_COMPLETE_ON_DISCONNECT;
345352d34f98S[email protected]             hci_send_cmd(&hci_disconnect, connection->con_handle, 0x13);  // authentication done
3454ad83dc6aS[email protected]             return;
3455ad83dc6aS[email protected]         }
345676f27cffSMatthias Ringwald 
345734d2123cS[email protected]         if (connection->bonding_flags & BONDING_SEND_AUTHENTICATE_REQUEST){
345834d2123cS[email protected]             connection->bonding_flags &= ~BONDING_SEND_AUTHENTICATE_REQUEST;
345934d2123cS[email protected]             hci_send_cmd(&hci_authentication_requested, connection->con_handle);
34602bd8b7e7S[email protected]             return;
3461afd4e962S[email protected]         }
346276f27cffSMatthias Ringwald 
3463dce78009S[email protected]         if (connection->bonding_flags & BONDING_SEND_ENCRYPTION_REQUEST){
3464dce78009S[email protected]             connection->bonding_flags &= ~BONDING_SEND_ENCRYPTION_REQUEST;
3465dce78009S[email protected]             hci_send_cmd(&hci_set_connection_encryption, connection->con_handle, 1);
3466dce78009S[email protected]             return;
3467dce78009S[email protected]         }
346876f27cffSMatthias Ringwald #endif
346976f27cffSMatthias Ringwald 
347076f27cffSMatthias Ringwald         if (connection->bonding_flags & BONDING_DISCONNECT_SECURITY_BLOCK){
347176f27cffSMatthias Ringwald             connection->bonding_flags &= ~BONDING_DISCONNECT_SECURITY_BLOCK;
347276f27cffSMatthias Ringwald             hci_send_cmd(&hci_disconnect, connection->con_handle, 0x0005);  // authentication failure
347376f27cffSMatthias Ringwald             return;
347476f27cffSMatthias Ringwald         }
3475da886c03S[email protected] 
34766cdc2862SMatthias Ringwald #ifdef ENABLE_CLASSIC
3477f8ee3071SMatthias Ringwald         uint16_t sniff_min_interval;
3478f8ee3071SMatthias Ringwald         switch (connection->sniff_min_interval){
3479f8ee3071SMatthias Ringwald             case 0:
3480f8ee3071SMatthias Ringwald                 break;
3481f8ee3071SMatthias Ringwald             case 0xffff:
3482f8ee3071SMatthias Ringwald                 connection->sniff_min_interval = 0;
3483f8ee3071SMatthias Ringwald                 hci_send_cmd(&hci_exit_sniff_mode, connection->con_handle);
3484f8ee3071SMatthias Ringwald                 return;
3485f8ee3071SMatthias Ringwald             default:
3486f8ee3071SMatthias Ringwald                 sniff_min_interval = connection->sniff_min_interval;
3487f8ee3071SMatthias Ringwald                 connection->sniff_min_interval = 0;
3488f8ee3071SMatthias Ringwald                 hci_send_cmd(&hci_sniff_mode, connection->con_handle, connection->sniff_max_interval, sniff_min_interval, connection->sniff_attempt, connection->sniff_timeout);
3489e705510cSMatthias Ringwald                 return;
3490f8ee3071SMatthias Ringwald         }
34916cdc2862SMatthias Ringwald #endif
3492f8ee3071SMatthias Ringwald 
3493a9a4c409SMatthias Ringwald #ifdef ENABLE_BLE
349473cd8a2aSMatthias Ringwald         switch (connection->le_con_parameter_update_state){
349573cd8a2aSMatthias Ringwald             // response to L2CAP CON PARAMETER UPDATE REQUEST
349673cd8a2aSMatthias Ringwald             case CON_PARAMETER_UPDATE_CHANGE_HCI_CON_PARAMETERS:
3497da886c03S[email protected]                 connection->le_con_parameter_update_state = CON_PARAMETER_UPDATE_NONE;
349873cd8a2aSMatthias Ringwald                 hci_send_cmd(&hci_le_connection_update, connection->con_handle, connection->le_conn_interval_min,
3499c37a3166S[email protected]                     connection->le_conn_interval_max, connection->le_conn_latency, connection->le_supervision_timeout,
3500c37a3166S[email protected]                     0x0000, 0xffff);
3501e705510cSMatthias Ringwald                 return;
350273cd8a2aSMatthias Ringwald             case CON_PARAMETER_UPDATE_REPLY:
350373cd8a2aSMatthias Ringwald                 connection->le_con_parameter_update_state = CON_PARAMETER_UPDATE_NONE;
350473cd8a2aSMatthias Ringwald                 hci_send_cmd(&hci_le_remote_connection_parameter_request_reply, connection->con_handle, connection->le_conn_interval_min,
350573cd8a2aSMatthias Ringwald                     connection->le_conn_interval_max, connection->le_conn_latency, connection->le_supervision_timeout,
350673cd8a2aSMatthias Ringwald                     0x0000, 0xffff);
3507e705510cSMatthias Ringwald                 return;
350873cd8a2aSMatthias Ringwald             case CON_PARAMETER_UPDATE_NEGATIVE_REPLY:
350973cd8a2aSMatthias Ringwald                 connection->le_con_parameter_update_state = CON_PARAMETER_UPDATE_NONE;
351073cd8a2aSMatthias Ringwald                 hci_send_cmd(&hci_le_remote_connection_parameter_request_negative_reply, ERROR_CODE_UNSUPPORTED_LMP_PARAMETER_VALUE_UNSUPPORTED_LL_PARAMETER_VALUE);
3511e705510cSMatthias Ringwald                 return;
351273cd8a2aSMatthias Ringwald             default:
351373cd8a2aSMatthias Ringwald                 break;
3514c37a3166S[email protected]         }
3515b90f6e0aSMatthias Ringwald         if (connection->le_phy_update_all_phys != 0xff){
3516b90f6e0aSMatthias Ringwald             uint8_t all_phys = connection->le_phy_update_all_phys;
3517b90f6e0aSMatthias Ringwald             connection->le_phy_update_all_phys = 0xff;
3518b90f6e0aSMatthias Ringwald             hci_send_cmd(&hci_le_set_phy, connection->con_handle, all_phys, connection->le_phy_update_tx_phys, connection->le_phy_update_rx_phys, connection->le_phy_update_phy_options);
3519b90f6e0aSMatthias Ringwald             return;
3520b90f6e0aSMatthias Ringwald         }
3521c37a3166S[email protected] #endif
3522dbe1a790S[email protected]     }
3523c7e0c5f6Smatthias.ringwald 
352405ae8de3SMatthias Ringwald     hci_connection_t * connection;
35253a9fb326S[email protected]     switch (hci_stack->state){
35263429f56bSmatthias.ringwald         case HCI_STATE_INITIALIZING:
352774b323a9SMatthias Ringwald             hci_initializing_run();
35283429f56bSmatthias.ringwald             break;
3529c7e0c5f6Smatthias.ringwald 
3530c7e0c5f6Smatthias.ringwald         case HCI_STATE_HALTING:
3531c7e0c5f6Smatthias.ringwald 
35329da54300S[email protected]             log_info("HCI_STATE_HALTING");
35339956955bSMatthias Ringwald 
35349956955bSMatthias Ringwald             // free whitelist entries
3535a9a4c409SMatthias Ringwald #ifdef ENABLE_BLE
3536d70217a2SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
35379956955bSMatthias Ringwald             {
3538665d90f2SMatthias Ringwald                 btstack_linked_list_iterator_t lit;
3539665d90f2SMatthias Ringwald                 btstack_linked_list_iterator_init(&lit, &hci_stack->le_whitelist);
3540665d90f2SMatthias Ringwald                 while (btstack_linked_list_iterator_has_next(&lit)){
3541665d90f2SMatthias Ringwald                     whitelist_entry_t * entry = (whitelist_entry_t*) btstack_linked_list_iterator_next(&lit);
3542665d90f2SMatthias Ringwald                     btstack_linked_list_remove(&hci_stack->le_whitelist, (btstack_linked_item_t *) entry);
35439956955bSMatthias Ringwald                     btstack_memory_whitelist_entry_free(entry);
35449956955bSMatthias Ringwald                 }
35459956955bSMatthias Ringwald             }
35469956955bSMatthias Ringwald #endif
3547d70217a2SMatthias Ringwald #endif
3548c7e0c5f6Smatthias.ringwald             // close all open connections
35493a9fb326S[email protected]             connection =  (hci_connection_t *) hci_stack->connections;
3550c7e0c5f6Smatthias.ringwald             if (connection){
3551711e6c80SMatthias Ringwald                 hci_con_handle_t con_handle = (uint16_t) connection->con_handle;
3552d94d3cafS[email protected]                 if (!hci_can_send_command_packet_now()) return;
355332ab9390Smatthias.ringwald 
35548fca890eSMatthias Ringwald                 // check state
35558fca890eSMatthias Ringwald                 if (connection->state == SENT_DISCONNECT) return;
35568fca890eSMatthias Ringwald                 connection->state = SENT_DISCONNECT;
35578fca890eSMatthias Ringwald 
35588837e9efSMatthias Ringwald                 log_info("HCI_STATE_HALTING, connection %p, handle %u", connection, con_handle);
3559c7e0c5f6Smatthias.ringwald 
35608837e9efSMatthias Ringwald                 // cancel all l2cap connections right away instead of waiting for disconnection complete event ...
35618837e9efSMatthias Ringwald                 hci_emit_disconnection_complete(con_handle, 0x16); // terminated by local host
35628837e9efSMatthias Ringwald 
35638837e9efSMatthias Ringwald                 // ... which would be ignored anyway as we shutdown (free) the connection now
3564c7e0c5f6Smatthias.ringwald                 hci_shutdown_connection(connection);
35658837e9efSMatthias Ringwald 
35668837e9efSMatthias Ringwald                 // finally, send the disconnect command
35678837e9efSMatthias Ringwald                 hci_send_cmd(&hci_disconnect, con_handle, 0x13);  // remote closed connection
3568c7e0c5f6Smatthias.ringwald                 return;
3569c7e0c5f6Smatthias.ringwald             }
35709da54300S[email protected]             log_info("HCI_STATE_HALTING, calling off");
3571c7e0c5f6Smatthias.ringwald 
357272ea5239Smatthias.ringwald             // switch mode
3573c7e0c5f6Smatthias.ringwald             hci_power_control_off();
35749418f9c9Smatthias.ringwald 
35759da54300S[email protected]             log_info("HCI_STATE_HALTING, emitting state");
357672ea5239Smatthias.ringwald             hci_emit_state();
35779da54300S[email protected]             log_info("HCI_STATE_HALTING, done");
357872ea5239Smatthias.ringwald             break;
3579c7e0c5f6Smatthias.ringwald 
358072ea5239Smatthias.ringwald         case HCI_STATE_FALLING_ASLEEP:
35813a9fb326S[email protected]             switch(hci_stack->substate) {
358274b323a9SMatthias Ringwald                 case HCI_FALLING_ASLEEP_DISCONNECT:
35839da54300S[email protected]                     log_info("HCI_STATE_FALLING_ASLEEP");
358472ea5239Smatthias.ringwald                     // close all open connections
35853a9fb326S[email protected]                     connection =  (hci_connection_t *) hci_stack->connections;
358666da7044Smatthias.ringwald 
3587423a3e49SMatthias Ringwald #ifdef HAVE_PLATFORM_IPHONE_OS
358866da7044Smatthias.ringwald                     // don't close connections, if H4 supports power management
3589d0b87befSMatthias Ringwald                     if (btstack_control_iphone_power_management_enabled()){
359066da7044Smatthias.ringwald                         connection = NULL;
359166da7044Smatthias.ringwald                     }
359266da7044Smatthias.ringwald #endif
359372ea5239Smatthias.ringwald                     if (connection){
359432ab9390Smatthias.ringwald 
359572ea5239Smatthias.ringwald                         // send disconnect
3596d94d3cafS[email protected]                         if (!hci_can_send_command_packet_now()) return;
359732ab9390Smatthias.ringwald 
35989da54300S[email protected]                         log_info("HCI_STATE_FALLING_ASLEEP, connection %p, handle %u", connection, (uint16_t)connection->con_handle);
35996ad890d3Smatthias.ringwald                         hci_send_cmd(&hci_disconnect, connection->con_handle, 0x13);  // remote closed connection
360072ea5239Smatthias.ringwald 
360172ea5239Smatthias.ringwald                         // send disconnected event right away - causes higher layer connections to get closed, too.
360272ea5239Smatthias.ringwald                         hci_shutdown_connection(connection);
360372ea5239Smatthias.ringwald                         return;
360472ea5239Smatthias.ringwald                     }
360572ea5239Smatthias.ringwald 
360692368cd3S[email protected]                     if (hci_classic_supported()){
360789db417bSmatthias.ringwald                         // disable page and inquiry scan
3608d94d3cafS[email protected]                         if (!hci_can_send_command_packet_now()) return;
360932ab9390Smatthias.ringwald 
36109da54300S[email protected]                         log_info("HCI_STATE_HALTING, disabling inq scans");
36113a9fb326S[email protected]                         hci_send_cmd(&hci_write_scan_enable, hci_stack->connectable << 1); // drop inquiry scan but keep page scan
361289db417bSmatthias.ringwald 
361389db417bSmatthias.ringwald                         // continue in next sub state
361474b323a9SMatthias Ringwald                         hci_stack->substate = HCI_FALLING_ASLEEP_W4_WRITE_SCAN_ENABLE;
361589db417bSmatthias.ringwald                         break;
361692368cd3S[email protected]                     }
3617202c8a4cSMatthias Ringwald                     // no break - fall through for ble-only chips
361892368cd3S[email protected] 
361974b323a9SMatthias Ringwald                 case HCI_FALLING_ASLEEP_COMPLETE:
36209da54300S[email protected]                     log_info("HCI_STATE_HALTING, calling sleep");
3621423a3e49SMatthias Ringwald #ifdef HAVE_PLATFORM_IPHONE_OS
362228171530Smatthias.ringwald                     // don't actually go to sleep, if H4 supports power management
3623d0b87befSMatthias Ringwald                     if (btstack_control_iphone_power_management_enabled()){
362428171530Smatthias.ringwald                         // SLEEP MODE reached
36253a9fb326S[email protected]                         hci_stack->state = HCI_STATE_SLEEPING;
362628171530Smatthias.ringwald                         hci_emit_state();
362728171530Smatthias.ringwald                         break;
362828171530Smatthias.ringwald                     }
362928171530Smatthias.ringwald #endif
363072ea5239Smatthias.ringwald                     // switch mode
36313a9fb326S[email protected]                     hci_power_control_sleep();  // changes hci_stack->state to SLEEP
3632c7e0c5f6Smatthias.ringwald                     hci_emit_state();
363328171530Smatthias.ringwald                     break;
363428171530Smatthias.ringwald 
363589db417bSmatthias.ringwald                 default:
363689db417bSmatthias.ringwald                     break;
363789db417bSmatthias.ringwald             }
3638c7e0c5f6Smatthias.ringwald             break;
3639c7e0c5f6Smatthias.ringwald 
36403429f56bSmatthias.ringwald         default:
36413429f56bSmatthias.ringwald             break;
36421f504dbdSmatthias.ringwald     }
36433429f56bSmatthias.ringwald }
364416833f0aSmatthias.ringwald 
364531452debSmatthias.ringwald int hci_send_cmd_packet(uint8_t *packet, int size){
364635454696SMatthias Ringwald     // house-keeping
364735454696SMatthias Ringwald 
364835454696SMatthias Ringwald     if (IS_COMMAND(packet, hci_write_loopback_mode)){
364935454696SMatthias Ringwald         hci_stack->loopback_mode = packet[3];
365035454696SMatthias Ringwald     }
365135454696SMatthias Ringwald 
365235454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
3653c8e4258aSmatthias.ringwald     bd_addr_t addr;
3654c8e4258aSmatthias.ringwald     hci_connection_t * conn;
3655c8e4258aSmatthias.ringwald 
3656c8e4258aSmatthias.ringwald     // create_connection?
3657c8e4258aSmatthias.ringwald     if (IS_COMMAND(packet, hci_create_connection)){
3658724d70a2SMatthias Ringwald         reverse_bd_addr(&packet[3], addr);
36599da54300S[email protected]         log_info("Create_connection to %s", bd_addr_to_str(addr));
3660c8e4258aSmatthias.ringwald 
36612e77e513S[email protected]         conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_CLASSIC);
3662ad83dc6aS[email protected]         if (!conn){
366396a45072S[email protected]             conn = create_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_CLASSIC);
366417f1ba2aSmatthias.ringwald             if (!conn){
366517f1ba2aSmatthias.ringwald                 // notify client that alloc failed
36662deddeceSMatthias Ringwald                 hci_emit_connection_complete(addr, 0, BTSTACK_MEMORY_ALLOC_FAILED);
3667f5e5741dSMatthias Ringwald                 return -1; // packet not sent to controller
366817f1ba2aSmatthias.ringwald             }
3669ad83dc6aS[email protected]             conn->state = SEND_CREATE_CONNECTION;
3670ad83dc6aS[email protected]         }
3671ad83dc6aS[email protected]         log_info("conn state %u", conn->state);
3672ad83dc6aS[email protected]         switch (conn->state){
3673ad83dc6aS[email protected]             // if connection active exists
3674ad83dc6aS[email protected]             case OPEN:
3675f5e5741dSMatthias Ringwald                 // and OPEN, emit connection complete command
3676274dad91SMatthias Ringwald                 hci_emit_connection_complete(addr, conn->con_handle, 0);
3677f5e5741dSMatthias Ringwald                 return -1; // packet not sent to controller
3678ad83dc6aS[email protected]             case SEND_CREATE_CONNECTION:
3679532f91a5SMatthias Ringwald                 // connection created by hci, e.g. dedicated bonding, but not executed yet, let's do it now
3680532f91a5SMatthias Ringwald                 break;
3681ad83dc6aS[email protected]             default:
3682ad83dc6aS[email protected]                 // otherwise, just ignore as it is already in the open process
3683f5e5741dSMatthias Ringwald                 return -1; // packet not sent to controller
3684ad83dc6aS[email protected]         }
3685c8e4258aSmatthias.ringwald         conn->state = SENT_CREATE_CONNECTION;
3686229331c6SMatthias Ringwald 
3687229331c6SMatthias Ringwald         // track outgoing connection
3688229331c6SMatthias Ringwald         hci_stack->outgoing_addr_type = BD_ADDR_TYPE_CLASSIC;
3689229331c6SMatthias Ringwald         memcpy(hci_stack->outgoing_addr, addr, 6);
3690c8e4258aSmatthias.ringwald     }
369135454696SMatthias Ringwald 
36927fde4af9Smatthias.ringwald     if (IS_COMMAND(packet, hci_link_key_request_reply)){
36937fde4af9Smatthias.ringwald         hci_add_connection_flags_for_flipped_bd_addr(&packet[3], SENT_LINK_KEY_REPLY);
36947fde4af9Smatthias.ringwald     }
36957fde4af9Smatthias.ringwald     if (IS_COMMAND(packet, hci_link_key_request_negative_reply)){
36967fde4af9Smatthias.ringwald         hci_add_connection_flags_for_flipped_bd_addr(&packet[3], SENT_LINK_KEY_NEGATIVE_REQUEST);
36977fde4af9Smatthias.ringwald     }
36987fde4af9Smatthias.ringwald 
36998ef73945Smatthias.ringwald     if (IS_COMMAND(packet, hci_delete_stored_link_key)){
3700a98592bcSMatthias Ringwald         if (hci_stack->link_key_db){
3701724d70a2SMatthias Ringwald             reverse_bd_addr(&packet[3], addr);
3702a98592bcSMatthias Ringwald             hci_stack->link_key_db->delete_link_key(addr);
37038ef73945Smatthias.ringwald         }
37048ef73945Smatthias.ringwald     }
3705c8e4258aSmatthias.ringwald 
37066724cd9eS[email protected]     if (IS_COMMAND(packet, hci_pin_code_request_negative_reply)
37076724cd9eS[email protected]     ||  IS_COMMAND(packet, hci_pin_code_request_reply)){
3708724d70a2SMatthias Ringwald         reverse_bd_addr(&packet[3], addr);
37092e77e513S[email protected]         conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_CLASSIC);
37106724cd9eS[email protected]         if (conn){
37116724cd9eS[email protected]             connectionClearAuthenticationFlags(conn, LEGACY_PAIRING_ACTIVE);
37126724cd9eS[email protected]         }
37136724cd9eS[email protected]     }
37146724cd9eS[email protected] 
37156724cd9eS[email protected]     if (IS_COMMAND(packet, hci_user_confirmation_request_negative_reply)
37166724cd9eS[email protected]     ||  IS_COMMAND(packet, hci_user_confirmation_request_reply)
37176724cd9eS[email protected]     ||  IS_COMMAND(packet, hci_user_passkey_request_negative_reply)
37186724cd9eS[email protected]     ||  IS_COMMAND(packet, hci_user_passkey_request_reply)) {
3719724d70a2SMatthias Ringwald         reverse_bd_addr(&packet[3], addr);
37202e77e513S[email protected]         conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_CLASSIC);
37216724cd9eS[email protected]         if (conn){
37226724cd9eS[email protected]             connectionClearAuthenticationFlags(conn, SSP_PAIRING_ACTIVE);
37236724cd9eS[email protected]         }
37246724cd9eS[email protected]     }
3725ee752bb8SMatthias Ringwald 
3726ee752bb8SMatthias Ringwald #ifdef ENABLE_SCO_OVER_HCI
3727ee752bb8SMatthias Ringwald     // setup_synchronous_connection? Voice setting at offset 22
3728ee752bb8SMatthias Ringwald     if (IS_COMMAND(packet, hci_setup_synchronous_connection)){
3729ee752bb8SMatthias Ringwald         // TODO: compare to current setting if sco connection already active
3730ee752bb8SMatthias Ringwald         hci_stack->sco_voice_setting_active = little_endian_read_16(packet, 15);
3731ee752bb8SMatthias Ringwald     }
3732ee752bb8SMatthias Ringwald     // accept_synchronus_connection? Voice setting at offset 18
3733ee752bb8SMatthias Ringwald     if (IS_COMMAND(packet, hci_accept_synchronous_connection)){
3734ee752bb8SMatthias Ringwald         // TODO: compare to current setting if sco connection already active
3735ee752bb8SMatthias Ringwald         hci_stack->sco_voice_setting_active = little_endian_read_16(packet, 19);
3736ee752bb8SMatthias Ringwald     }
3737ee752bb8SMatthias Ringwald #endif
373835454696SMatthias Ringwald #endif
37394b3e1e19SMatthias Ringwald 
3740a9a4c409SMatthias Ringwald #ifdef ENABLE_BLE
3741d70217a2SMatthias Ringwald #ifdef ENABLE_LE_PERIPHERAL
374269a97523S[email protected]     if (IS_COMMAND(packet, hci_le_set_random_address)){
3743b95a5a35SMatthias Ringwald         hci_stack->le_random_address_set = 1;
3744b95a5a35SMatthias Ringwald         reverse_bd_addr(&packet[3], hci_stack->le_random_address);
3745d70217a2SMatthias Ringwald     }
3746171293d3SMatthias Ringwald     if (IS_COMMAND(packet, hci_le_set_advertise_enable)){
3747171293d3SMatthias Ringwald         hci_stack->le_advertisements_active = packet[3];
3748171293d3SMatthias Ringwald     }
3749d70217a2SMatthias Ringwald #endif
3750d70217a2SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
3751b04dfa37SMatthias Ringwald     if (IS_COMMAND(packet, hci_le_create_connection)){
3752b04dfa37SMatthias Ringwald         // white list used?
3753b04dfa37SMatthias Ringwald         uint8_t initiator_filter_policy = packet[7];
3754b04dfa37SMatthias Ringwald         switch (initiator_filter_policy){
3755b04dfa37SMatthias Ringwald             case 0:
3756b04dfa37SMatthias Ringwald                 // whitelist not used
3757b04dfa37SMatthias Ringwald                 hci_stack->le_connecting_state = LE_CONNECTING_DIRECT;
3758b04dfa37SMatthias Ringwald                 break;
3759b04dfa37SMatthias Ringwald             case 1:
3760b04dfa37SMatthias Ringwald                 hci_stack->le_connecting_state = LE_CONNECTING_WHITELIST;
3761b04dfa37SMatthias Ringwald                 break;
3762b04dfa37SMatthias Ringwald             default:
3763b04dfa37SMatthias Ringwald                 log_error("Invalid initiator_filter_policy in LE Create Connection %u", initiator_filter_policy);
3764b04dfa37SMatthias Ringwald                 break;
3765b04dfa37SMatthias Ringwald         }
3766b04dfa37SMatthias Ringwald     }
3767b04dfa37SMatthias Ringwald     if (IS_COMMAND(packet, hci_le_create_connection_cancel)){
3768b04dfa37SMatthias Ringwald         hci_stack->le_connecting_state = LE_CONNECTING_IDLE;
3769b04dfa37SMatthias Ringwald     }
377069a97523S[email protected] #endif
3771d70217a2SMatthias Ringwald #endif
377269a97523S[email protected] 
37733a9fb326S[email protected]     hci_stack->num_cmd_packets--;
37745bb5bc3eS[email protected] 
37755bb5bc3eS[email protected]     hci_dump_packet(HCI_COMMAND_DATA_PACKET, 0, packet, size);
3776bfea0222SMatthias Ringwald     return hci_stack->hci_transport->send_packet(HCI_COMMAND_DATA_PACKET, packet, size);
377731452debSmatthias.ringwald }
37788adf0ddaSmatthias.ringwald 
37792bd8b7e7S[email protected] // disconnect because of security block
37802bd8b7e7S[email protected] void hci_disconnect_security_block(hci_con_handle_t con_handle){
37812bd8b7e7S[email protected]     hci_connection_t * connection = hci_connection_for_handle(con_handle);
37822bd8b7e7S[email protected]     if (!connection) return;
37832bd8b7e7S[email protected]     connection->bonding_flags |= BONDING_DISCONNECT_SECURITY_BLOCK;
37842bd8b7e7S[email protected] }
37852bd8b7e7S[email protected] 
37862bd8b7e7S[email protected] 
3787dbe1a790S[email protected] // Configure Secure Simple Pairing
3788dbe1a790S[email protected] 
378935454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
379035454696SMatthias Ringwald 
3791dbe1a790S[email protected] // enable will enable SSP during init
379215a95bd5SMatthias Ringwald void gap_ssp_set_enable(int enable){
37933a9fb326S[email protected]     hci_stack->ssp_enable = enable;
3794dbe1a790S[email protected] }
3795dbe1a790S[email protected] 
379695d71764SMatthias Ringwald static int hci_local_ssp_activated(void){
379715a95bd5SMatthias Ringwald     return gap_ssp_supported() && hci_stack->ssp_enable;
37982bd8b7e7S[email protected] }
37992bd8b7e7S[email protected] 
3800dbe1a790S[email protected] // if set, BTstack will respond to io capability request using authentication requirement
380115a95bd5SMatthias Ringwald void gap_ssp_set_io_capability(int io_capability){
38023a9fb326S[email protected]     hci_stack->ssp_io_capability = io_capability;
3803dbe1a790S[email protected] }
380415a95bd5SMatthias Ringwald void gap_ssp_set_authentication_requirement(int authentication_requirement){
38053a9fb326S[email protected]     hci_stack->ssp_authentication_requirement = authentication_requirement;
3806dbe1a790S[email protected] }
3807dbe1a790S[email protected] 
3808dbe1a790S[email protected] // if set, BTstack will confirm a numberic comparion and enter '000000' if requested
380915a95bd5SMatthias Ringwald void gap_ssp_set_auto_accept(int auto_accept){
38103a9fb326S[email protected]     hci_stack->ssp_auto_accept = auto_accept;
3811dbe1a790S[email protected] }
381235454696SMatthias Ringwald #endif
3813dbe1a790S[email protected] 
381494be1a66SMatthias Ringwald // va_list part of hci_send_cmd
381594be1a66SMatthias Ringwald int hci_send_cmd_va_arg(const hci_cmd_t *cmd, va_list argptr){
3816d94d3cafS[email protected]     if (!hci_can_send_command_packet_now()){
38179d14b626S[email protected]         log_error("hci_send_cmd called but cannot send packet now");
38189d14b626S[email protected]         return 0;
38199d14b626S[email protected]     }
38209d14b626S[email protected] 
38215127cc62S[email protected]     // for HCI INITIALIZATION
38229da54300S[email protected]     // log_info("hci_send_cmd: opcode %04x", cmd->opcode);
38235127cc62S[email protected]     hci_stack->last_cmd_opcode = cmd->opcode;
38245127cc62S[email protected] 
38259d14b626S[email protected]     hci_reserve_packet_buffer();
38269d14b626S[email protected]     uint8_t * packet = hci_stack->hci_packet_buffer;
382794be1a66SMatthias Ringwald     uint16_t size = hci_cmd_create_from_template(packet, cmd, argptr);
3828bfea0222SMatthias Ringwald     int err = hci_send_cmd_packet(packet, size);
3829bfea0222SMatthias Ringwald 
3830bfea0222SMatthias Ringwald     // release packet buffer for synchronous transport implementations
3831bfea0222SMatthias Ringwald     if (hci_transport_synchronous()){
3832e2d22487SMatthias Ringwald         hci_release_packet_buffer();
3833068b8592SMatthias Ringwald         hci_emit_transport_packet_sent();
3834bfea0222SMatthias Ringwald     }
3835bfea0222SMatthias Ringwald 
3836bfea0222SMatthias Ringwald     return err;
383794be1a66SMatthias Ringwald }
38389d14b626S[email protected] 
383994be1a66SMatthias Ringwald /**
384094be1a66SMatthias Ringwald  * pre: numcmds >= 0 - it's allowed to send a command to the controller
384194be1a66SMatthias Ringwald  */
384294be1a66SMatthias Ringwald int hci_send_cmd(const hci_cmd_t *cmd, ...){
38431cd208adSmatthias.ringwald     va_list argptr;
38441cd208adSmatthias.ringwald     va_start(argptr, cmd);
384594be1a66SMatthias Ringwald     int res = hci_send_cmd_va_arg(cmd, argptr);
38461cd208adSmatthias.ringwald     va_end(argptr);
384794be1a66SMatthias Ringwald     return res;
384893b8dc03Smatthias.ringwald }
3849c8e4258aSmatthias.ringwald 
3850ee091cf1Smatthias.ringwald // Create various non-HCI events.
3851ee091cf1Smatthias.ringwald // TODO: generalize, use table similar to hci_create_command
3852ee091cf1Smatthias.ringwald 
3853d6b06661SMatthias Ringwald static void hci_emit_event(uint8_t * event, uint16_t size, int dump){
3854fb37a842SMatthias Ringwald     // dump packet
3855d6b06661SMatthias Ringwald     if (dump) {
3856300c1ba4SMatthias Ringwald         hci_dump_packet( HCI_EVENT_PACKET, 0, event, size);
3857d6b06661SMatthias Ringwald     }
38581ef6bb52SMatthias Ringwald 
3859fb37a842SMatthias Ringwald     // dispatch to all event handlers
38601ef6bb52SMatthias Ringwald     btstack_linked_list_iterator_t it;
38611ef6bb52SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->event_handlers);
38621ef6bb52SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
38631ef6bb52SMatthias Ringwald         btstack_packet_callback_registration_t * entry = (btstack_packet_callback_registration_t*) btstack_linked_list_iterator_next(&it);
3864d9a7306aSMatthias Ringwald         entry->callback(HCI_EVENT_PACKET, 0, event, size);
38651ef6bb52SMatthias Ringwald     }
3866d6b06661SMatthias Ringwald }
3867d6b06661SMatthias Ringwald 
3868d6b06661SMatthias Ringwald static void hci_emit_acl_packet(uint8_t * packet, uint16_t size){
3869fb37a842SMatthias Ringwald     if (!hci_stack->acl_packet_handler) return;
38703d50b4baSMatthias Ringwald     hci_stack->acl_packet_handler(HCI_ACL_DATA_PACKET, 0, packet, size);
3871d6b06661SMatthias Ringwald }
3872d6b06661SMatthias Ringwald 
387335454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
3874701e3307SMatthias Ringwald static void hci_notify_if_sco_can_send_now(void){
38753bc639ceSMatthias Ringwald     // notify SCO sender if waiting
3876701e3307SMatthias Ringwald     if (!hci_stack->sco_waiting_for_can_send_now) return;
3877701e3307SMatthias Ringwald     if (hci_can_send_sco_packet_now()){
38783bc639ceSMatthias Ringwald         hci_stack->sco_waiting_for_can_send_now = 0;
3879701e3307SMatthias Ringwald         uint8_t event[2] = { HCI_EVENT_SCO_CAN_SEND_NOW, 0 };
3880701e3307SMatthias Ringwald         hci_dump_packet(HCI_EVENT_PACKET, 1, event, sizeof(event));
38813d50b4baSMatthias Ringwald         hci_stack->sco_packet_handler(HCI_EVENT_PACKET, 0, event, sizeof(event));
38823bc639ceSMatthias Ringwald     }
38833bc639ceSMatthias Ringwald }
38841cfb383eSMatthias Ringwald 
38851cfb383eSMatthias Ringwald // parsing end emitting has been merged to reduce code size
38861cfb383eSMatthias Ringwald static void gap_inquiry_explode(uint8_t * packet){
3887e4f5dd75SMatthias Ringwald     uint8_t event[19+GAP_INQUIRY_MAX_NAME_LEN];
38881cfb383eSMatthias Ringwald 
38891cfb383eSMatthias Ringwald     uint8_t * eir_data;
38901cfb383eSMatthias Ringwald     ad_context_t context;
38911cfb383eSMatthias Ringwald     const uint8_t * name;
38921cfb383eSMatthias Ringwald     uint8_t         name_len;
38931cfb383eSMatthias Ringwald 
38941cfb383eSMatthias Ringwald     int event_type = hci_event_packet_get_type(packet);
38951cfb383eSMatthias Ringwald     int num_reserved_fields = event_type == HCI_EVENT_INQUIRY_RESULT ? 2 : 1;    // 2 for old event, 1 otherwise
38961cfb383eSMatthias Ringwald     int num_responses       = hci_event_inquiry_result_get_num_responses(packet);
38971cfb383eSMatthias Ringwald 
38981cfb383eSMatthias Ringwald     // event[1] is set at the end
38991cfb383eSMatthias Ringwald     int i;
39001cfb383eSMatthias Ringwald     for (i=0; i<num_responses;i++){
39011cfb383eSMatthias Ringwald         memset(event, 0, sizeof(event));
39021cfb383eSMatthias Ringwald         event[0] = GAP_EVENT_INQUIRY_RESULT;
39031cfb383eSMatthias Ringwald         uint8_t event_size = 18;    // if name is not set by EIR
39041cfb383eSMatthias Ringwald 
39051cfb383eSMatthias Ringwald         memcpy(&event[2],  &packet[3 +                                             i*6], 6); // bd_addr
39061cfb383eSMatthias Ringwald         event[8] =          packet[3 + num_responses*(6)                         + i*1];     // page_scan_repetition_mode
39071cfb383eSMatthias Ringwald         memcpy(&event[9],  &packet[3 + num_responses*(6+1+num_reserved_fields)   + i*3], 3); // class of device
39081cfb383eSMatthias Ringwald         memcpy(&event[12], &packet[3 + num_responses*(6+1+num_reserved_fields+3) + i*2], 2); // clock offset
39091cfb383eSMatthias Ringwald 
39101cfb383eSMatthias Ringwald         switch (event_type){
39111cfb383eSMatthias Ringwald             case HCI_EVENT_INQUIRY_RESULT:
39121cfb383eSMatthias Ringwald                 // 14,15,16,17 = 0, size 18
39131cfb383eSMatthias Ringwald                 break;
39141cfb383eSMatthias Ringwald             case HCI_EVENT_INQUIRY_RESULT_WITH_RSSI:
39151cfb383eSMatthias Ringwald                 event[14] = 1;
39161cfb383eSMatthias Ringwald                 event[15] = packet [3 + num_responses*(6+1+num_reserved_fields+3+2) + i*1]; // rssi
39171cfb383eSMatthias Ringwald                 // 16,17 = 0, size 18
39181cfb383eSMatthias Ringwald                 break;
39191cfb383eSMatthias Ringwald             case HCI_EVENT_EXTENDED_INQUIRY_RESPONSE:
39201cfb383eSMatthias Ringwald                 event[14] = 1;
39211cfb383eSMatthias Ringwald                 event[15] = packet [3 + num_responses*(6+1+num_reserved_fields+3+2) + i*1]; // rssi
39221cfb383eSMatthias Ringwald                 // for EIR packets, there is only one reponse in it
39231cfb383eSMatthias Ringwald                 eir_data = &packet[3 + (6+1+num_reserved_fields+3+2+1)];
39241cfb383eSMatthias Ringwald                 name = NULL;
39251cfb383eSMatthias Ringwald                 // EIR data is 240 bytes in EIR event
39261cfb383eSMatthias Ringwald                 for (ad_iterator_init(&context, 240, eir_data) ; ad_iterator_has_more(&context) ; ad_iterator_next(&context)){
39271cfb383eSMatthias Ringwald                     uint8_t data_type    = ad_iterator_get_data_type(&context);
39281cfb383eSMatthias Ringwald                     uint8_t data_size    = ad_iterator_get_data_len(&context);
39291cfb383eSMatthias Ringwald                     const uint8_t * data = ad_iterator_get_data(&context);
39301cfb383eSMatthias Ringwald                     // Prefer Complete Local Name over Shortend Local Name
39311cfb383eSMatthias Ringwald                     switch (data_type){
39321cfb383eSMatthias Ringwald                         case BLUETOOTH_DATA_TYPE_SHORTENED_LOCAL_NAME:
39331cfb383eSMatthias Ringwald                             if (name) continue;
39341cfb383eSMatthias Ringwald                             /* explicit fall-through */
39351cfb383eSMatthias Ringwald                         case BLUETOOTH_DATA_TYPE_COMPLETE_LOCAL_NAME:
39361cfb383eSMatthias Ringwald                             name = data;
39371cfb383eSMatthias Ringwald                             name_len = data_size;
39381cfb383eSMatthias Ringwald                             break;
39391cfb383eSMatthias Ringwald                         default:
39401cfb383eSMatthias Ringwald                             break;
39411cfb383eSMatthias Ringwald                     }
39421cfb383eSMatthias Ringwald                 }
39431cfb383eSMatthias Ringwald                 if (name){
39441cfb383eSMatthias Ringwald                     event[16] = 1;
39451cfb383eSMatthias Ringwald                     // truncate name if needed
39461cfb383eSMatthias Ringwald                     int len = btstack_min(name_len, GAP_INQUIRY_MAX_NAME_LEN);
39471cfb383eSMatthias Ringwald                     event[17] = len;
39481cfb383eSMatthias Ringwald                     memcpy(&event[18], name, len);
39491cfb383eSMatthias Ringwald                     event_size += len;
39501cfb383eSMatthias Ringwald                 }
39511cfb383eSMatthias Ringwald                 break;
39521cfb383eSMatthias Ringwald         }
39531cfb383eSMatthias Ringwald         event[1] = event_size - 2;
39541cfb383eSMatthias Ringwald         hci_emit_event(event, event_size, 1);
39551cfb383eSMatthias Ringwald     }
39561cfb383eSMatthias Ringwald }
395735454696SMatthias Ringwald #endif
39583bc639ceSMatthias Ringwald 
395971de195eSMatthias Ringwald void hci_emit_state(void){
39603a9fb326S[email protected]     log_info("BTSTACK_EVENT_STATE %u", hci_stack->state);
3961425d1371Smatthias.ringwald     uint8_t event[3];
396280d52d6bSmatthias.ringwald     event[0] = BTSTACK_EVENT_STATE;
3963425d1371Smatthias.ringwald     event[1] = sizeof(event) - 2;
39643a9fb326S[email protected]     event[2] = hci_stack->state;
3965d6b06661SMatthias Ringwald     hci_emit_event(event, sizeof(event), 1);
3966c8e4258aSmatthias.ringwald }
3967c8e4258aSmatthias.ringwald 
396835454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
39692deddeceSMatthias Ringwald static void hci_emit_connection_complete(bd_addr_t address, hci_con_handle_t con_handle, uint8_t status){
3970425d1371Smatthias.ringwald     uint8_t event[13];
3971c8e4258aSmatthias.ringwald     event[0] = HCI_EVENT_CONNECTION_COMPLETE;
3972425d1371Smatthias.ringwald     event[1] = sizeof(event) - 2;
397317f1ba2aSmatthias.ringwald     event[2] = status;
39742deddeceSMatthias Ringwald     little_endian_store_16(event, 3, con_handle);
39752deddeceSMatthias Ringwald     reverse_bd_addr(address, &event[5]);
3976c8e4258aSmatthias.ringwald     event[11] = 1; // ACL connection
3977c8e4258aSmatthias.ringwald     event[12] = 0; // encryption disabled
3978d6b06661SMatthias Ringwald     hci_emit_event(event, sizeof(event), 1);
3979c8e4258aSmatthias.ringwald }
398052db98b2SMatthias Ringwald static void hci_emit_l2cap_check_timeout(hci_connection_t *conn){
398152db98b2SMatthias Ringwald     if (disable_l2cap_timeouts) return;
398252db98b2SMatthias Ringwald     log_info("L2CAP_EVENT_TIMEOUT_CHECK");
398352db98b2SMatthias Ringwald     uint8_t event[4];
398452db98b2SMatthias Ringwald     event[0] = L2CAP_EVENT_TIMEOUT_CHECK;
398552db98b2SMatthias Ringwald     event[1] = sizeof(event) - 2;
398652db98b2SMatthias Ringwald     little_endian_store_16(event, 2, conn->con_handle);
398752db98b2SMatthias Ringwald     hci_emit_event(event, sizeof(event), 1);
398852db98b2SMatthias Ringwald }
398935454696SMatthias Ringwald #endif
3990c8e4258aSmatthias.ringwald 
399135454696SMatthias Ringwald #ifdef ENABLE_BLE
3992d70217a2SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
3993fc64f94aSMatthias Ringwald static void hci_emit_le_connection_complete(uint8_t address_type, bd_addr_t address, hci_con_handle_t con_handle, uint8_t status){
39944f3229d8S[email protected]     uint8_t event[21];
39954f3229d8S[email protected]     event[0] = HCI_EVENT_LE_META;
39964f3229d8S[email protected]     event[1] = sizeof(event) - 2;
39974f3229d8S[email protected]     event[2] = HCI_SUBEVENT_LE_CONNECTION_COMPLETE;
39984f3229d8S[email protected]     event[3] = status;
3999fc64f94aSMatthias Ringwald     little_endian_store_16(event, 4, con_handle);
40004f3229d8S[email protected]     event[6] = 0; // TODO: role
40016e2e9a6bS[email protected]     event[7] = address_type;
4002724d70a2SMatthias Ringwald     reverse_bd_addr(address, &event[8]);
4003f8fbdce0SMatthias Ringwald     little_endian_store_16(event, 14, 0); // interval
4004f8fbdce0SMatthias Ringwald     little_endian_store_16(event, 16, 0); // latency
4005f8fbdce0SMatthias Ringwald     little_endian_store_16(event, 18, 0); // supervision timeout
40064f3229d8S[email protected]     event[20] = 0; // master clock accuracy
4007d6b06661SMatthias Ringwald     hci_emit_event(event, sizeof(event), 1);
40084f3229d8S[email protected] }
400935454696SMatthias Ringwald #endif
4010d70217a2SMatthias Ringwald #endif
40114f3229d8S[email protected] 
4012fd43c0e0SMatthias Ringwald static void hci_emit_transport_packet_sent(void){
4013fd43c0e0SMatthias Ringwald     // notify upper stack that it might be possible to send again
4014fd43c0e0SMatthias Ringwald     uint8_t event[] = { HCI_EVENT_TRANSPORT_PACKET_SENT, 0};
4015fd43c0e0SMatthias Ringwald     hci_emit_event(&event[0], sizeof(event), 0);  // don't dump
4016fd43c0e0SMatthias Ringwald }
4017fd43c0e0SMatthias Ringwald 
4018fc64f94aSMatthias Ringwald static void hci_emit_disconnection_complete(hci_con_handle_t con_handle, uint8_t reason){
4019425d1371Smatthias.ringwald     uint8_t event[6];
40203c4d4b90Smatthias.ringwald     event[0] = HCI_EVENT_DISCONNECTION_COMPLETE;
4021e518c4b8Smatthias.ringwald     event[1] = sizeof(event) - 2;
40223c4d4b90Smatthias.ringwald     event[2] = 0; // status = OK
4023fc64f94aSMatthias Ringwald     little_endian_store_16(event, 3, con_handle);
40243c4d4b90Smatthias.ringwald     event[5] = reason;
4025d6b06661SMatthias Ringwald     hci_emit_event(event, sizeof(event), 1);
40263c4d4b90Smatthias.ringwald }
40273c4d4b90Smatthias.ringwald 
4028b83d5eabSMatthias Ringwald static void hci_emit_nr_connections_changed(void){
4029e0abb8e7S[email protected]     log_info("BTSTACK_EVENT_NR_CONNECTIONS_CHANGED %u", nr_hci_connections());
4030425d1371Smatthias.ringwald     uint8_t event[3];
403180d52d6bSmatthias.ringwald     event[0] = BTSTACK_EVENT_NR_CONNECTIONS_CHANGED;
4032425d1371Smatthias.ringwald     event[1] = sizeof(event) - 2;
403343bfb1bdSmatthias.ringwald     event[2] = nr_hci_connections();
4034d6b06661SMatthias Ringwald     hci_emit_event(event, sizeof(event), 1);
403543bfb1bdSmatthias.ringwald }
4036038bc64cSmatthias.ringwald 
4037b83d5eabSMatthias Ringwald static void hci_emit_hci_open_failed(void){
4038e0abb8e7S[email protected]     log_info("BTSTACK_EVENT_POWERON_FAILED");
4039425d1371Smatthias.ringwald     uint8_t event[2];
404080d52d6bSmatthias.ringwald     event[0] = BTSTACK_EVENT_POWERON_FAILED;
4041425d1371Smatthias.ringwald     event[1] = sizeof(event) - 2;
4042d6b06661SMatthias Ringwald     hci_emit_event(event, sizeof(event), 1);
4043038bc64cSmatthias.ringwald }
40441b0e3922Smatthias.ringwald 
404535454696SMatthias Ringwald static void hci_emit_dedicated_bonding_result(bd_addr_t address, uint8_t status){
404635454696SMatthias Ringwald     log_info("hci_emit_dedicated_bonding_result %u ", status);
404735454696SMatthias Ringwald     uint8_t event[9];
404835454696SMatthias Ringwald     int pos = 0;
404935454696SMatthias Ringwald     event[pos++] = GAP_EVENT_DEDICATED_BONDING_COMPLETED;
405035454696SMatthias Ringwald     event[pos++] = sizeof(event) - 2;
405135454696SMatthias Ringwald     event[pos++] = status;
405235454696SMatthias Ringwald     reverse_bd_addr(address, &event[pos]);
4053d6b06661SMatthias Ringwald     hci_emit_event(event, sizeof(event), 1);
4054381fbed8Smatthias.ringwald }
4055458bf4e8S[email protected] 
405635454696SMatthias Ringwald 
405735454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
405835454696SMatthias Ringwald 
4059b83d5eabSMatthias Ringwald static void hci_emit_security_level(hci_con_handle_t con_handle, gap_security_level_t level){
4060df3354fcS[email protected]     log_info("hci_emit_security_level %u for handle %x", level, con_handle);
4061a00031e2S[email protected]     uint8_t event[5];
4062e00caf9cS[email protected]     int pos = 0;
40635611a760SMatthias Ringwald     event[pos++] = GAP_EVENT_SECURITY_LEVEL;
4064e00caf9cS[email protected]     event[pos++] = sizeof(event) - 2;
4065f8fbdce0SMatthias Ringwald     little_endian_store_16(event, 2, con_handle);
4066e00caf9cS[email protected]     pos += 2;
4067e00caf9cS[email protected]     event[pos++] = level;
4068d6b06661SMatthias Ringwald     hci_emit_event(event, sizeof(event), 1);
4069e00caf9cS[email protected] }
4070e00caf9cS[email protected] 
407135454696SMatthias Ringwald static gap_security_level_t gap_security_level_for_connection(hci_connection_t * connection){
407235454696SMatthias Ringwald     if (!connection) return LEVEL_0;
407335454696SMatthias Ringwald     if ((connection->authentication_flags & CONNECTION_ENCRYPTED) == 0) return LEVEL_0;
407435454696SMatthias Ringwald     return gap_security_level_for_link_key_type(connection->link_key_type);
407535454696SMatthias Ringwald }
407635454696SMatthias Ringwald 
407735454696SMatthias Ringwald static void hci_emit_discoverable_enabled(uint8_t enabled){
407835454696SMatthias Ringwald     log_info("BTSTACK_EVENT_DISCOVERABLE_ENABLED %u", enabled);
407935454696SMatthias Ringwald     uint8_t event[3];
408035454696SMatthias Ringwald     event[0] = BTSTACK_EVENT_DISCOVERABLE_ENABLED;
408135454696SMatthias Ringwald     event[1] = sizeof(event) - 2;
408235454696SMatthias Ringwald     event[2] = enabled;
4083d6b06661SMatthias Ringwald     hci_emit_event(event, sizeof(event), 1);
4084ad83dc6aS[email protected] }
4085ad83dc6aS[email protected] 
408606b9e820SMatthias Ringwald #ifdef ENABLE_CLASSIC
408798a2fd1cSMatthias Ringwald // query if remote side supports eSCO
4088073bd0faSMatthias Ringwald int hci_remote_esco_supported(hci_con_handle_t con_handle){
408998a2fd1cSMatthias Ringwald     hci_connection_t * connection = hci_connection_for_handle(con_handle);
409098a2fd1cSMatthias Ringwald     if (!connection) return 0;
409198a2fd1cSMatthias Ringwald     return connection->remote_supported_feature_eSCO;
409298a2fd1cSMatthias Ringwald }
409398a2fd1cSMatthias Ringwald 
40942bd8b7e7S[email protected] // query if remote side supports SSP
40952bd8b7e7S[email protected] int hci_remote_ssp_supported(hci_con_handle_t con_handle){
40962bd8b7e7S[email protected]     hci_connection_t * connection = hci_connection_for_handle(con_handle);
40972bd8b7e7S[email protected]     if (!connection) return 0;
40982bd8b7e7S[email protected]     return (connection->bonding_flags & BONDING_REMOTE_SUPPORTS_SSP) ? 1 : 0;
40992bd8b7e7S[email protected] }
41002bd8b7e7S[email protected] 
410115a95bd5SMatthias Ringwald int gap_ssp_supported_on_both_sides(hci_con_handle_t handle){
4102df3354fcS[email protected]     return hci_local_ssp_activated() && hci_remote_ssp_supported(handle);
4103df3354fcS[email protected] }
410406b9e820SMatthias Ringwald #endif
4105df3354fcS[email protected] 
4106458bf4e8S[email protected] // GAP API
4107458bf4e8S[email protected] /**
4108458bf4e8S[email protected]  * @bbrief enable/disable bonding. default is enabled
4109458bf4e8S[email protected]  * @praram enabled
4110458bf4e8S[email protected]  */
41114c57c146S[email protected] void gap_set_bondable_mode(int enable){
41123a9fb326S[email protected]     hci_stack->bondable = enable ? 1 : 0;
4113458bf4e8S[email protected] }
41144ef6443cSMatthias Ringwald /**
41154ef6443cSMatthias Ringwald  * @brief Get bondable mode.
41164ef6443cSMatthias Ringwald  * @return 1 if bondable
41174ef6443cSMatthias Ringwald  */
41184ef6443cSMatthias Ringwald int gap_get_bondable_mode(void){
41194ef6443cSMatthias Ringwald     return hci_stack->bondable;
41204ef6443cSMatthias Ringwald }
4121cb230b9dS[email protected] 
4122cb230b9dS[email protected] /**
412334d2123cS[email protected]  * @brief map link keys to security levels
4124cb230b9dS[email protected]  */
412534d2123cS[email protected] gap_security_level_t gap_security_level_for_link_key_type(link_key_type_t link_key_type){
412634d2123cS[email protected]     switch (link_key_type){
41273c68dfa9S[email protected]         case AUTHENTICATED_COMBINATION_KEY_GENERATED_FROM_P256:
41283c68dfa9S[email protected]             return LEVEL_4;
41293c68dfa9S[email protected]         case COMBINATION_KEY:
41303c68dfa9S[email protected]         case AUTHENTICATED_COMBINATION_KEY_GENERATED_FROM_P192:
41313c68dfa9S[email protected]             return LEVEL_3;
41323c68dfa9S[email protected]         default:
41333c68dfa9S[email protected]             return LEVEL_2;
41343c68dfa9S[email protected]     }
4135cb230b9dS[email protected] }
4136cb230b9dS[email protected] 
4137106d6d11S[email protected] int gap_mitm_protection_required_for_security_level(gap_security_level_t level){
41385127cc62S[email protected]     log_info("gap_mitm_protection_required_for_security_level %u", level);
4139106d6d11S[email protected]     return level > LEVEL_2;
4140106d6d11S[email protected] }
4141106d6d11S[email protected] 
414234d2123cS[email protected] /**
414334d2123cS[email protected]  * @brief get current security level
414434d2123cS[email protected]  */
414534d2123cS[email protected] gap_security_level_t gap_security_level(hci_con_handle_t con_handle){
414634d2123cS[email protected]     hci_connection_t * connection = hci_connection_for_handle(con_handle);
414734d2123cS[email protected]     if (!connection) return LEVEL_0;
414834d2123cS[email protected]     return gap_security_level_for_connection(connection);
414934d2123cS[email protected] }
415034d2123cS[email protected] 
4151cb230b9dS[email protected] /**
4152cb230b9dS[email protected]  * @brief request connection to device to
4153cb230b9dS[email protected]  * @result GAP_AUTHENTICATION_RESULT
4154cb230b9dS[email protected]  */
415534d2123cS[email protected] void gap_request_security_level(hci_con_handle_t con_handle, gap_security_level_t requested_level){
415634d2123cS[email protected]     hci_connection_t * connection = hci_connection_for_handle(con_handle);
415734d2123cS[email protected]     if (!connection){
4158a00031e2S[email protected]         hci_emit_security_level(con_handle, LEVEL_0);
415934d2123cS[email protected]         return;
416034d2123cS[email protected]     }
416134d2123cS[email protected]     gap_security_level_t current_level = gap_security_level(con_handle);
416283d08d7cSMatthias Ringwald     log_info("gap_request_security_level requested level %u, planned level %u, current level %u",
416383d08d7cSMatthias Ringwald         requested_level, connection->requested_security_level, current_level);
416483d08d7cSMatthias Ringwald 
416583d08d7cSMatthias Ringwald     // assumption: earlier requested security higher than current level => security request is active
416683d08d7cSMatthias Ringwald     if (current_level < connection->requested_security_level){
416783d08d7cSMatthias Ringwald         if (connection->requested_security_level < requested_level){
416883d08d7cSMatthias Ringwald             // increase requested level as new level is higher
416983d08d7cSMatthias Ringwald 
417083d08d7cSMatthias Ringwald             // TODO: handle re-authentication when done
417183d08d7cSMatthias Ringwald 
417283d08d7cSMatthias Ringwald             connection->requested_security_level = requested_level;
417383d08d7cSMatthias Ringwald         }
417483d08d7cSMatthias Ringwald         return;
417583d08d7cSMatthias Ringwald     }
417683d08d7cSMatthias Ringwald 
417783d08d7cSMatthias Ringwald     // no request active, notify if security sufficient
417883d08d7cSMatthias Ringwald     if (requested_level <= current_level){
4179a00031e2S[email protected]         hci_emit_security_level(con_handle, current_level);
418034d2123cS[email protected]         return;
418134d2123cS[email protected]     }
4182a00031e2S[email protected] 
418383d08d7cSMatthias Ringwald     // start pairing to increase security level
418434d2123cS[email protected]     connection->requested_security_level = requested_level;
4185a00031e2S[email protected] 
418625bf5872S[email protected] #if 0
418725bf5872S[email protected]     // sending encryption request without a link key results in an error.
418825bf5872S[email protected]     // TODO: figure out how to use it properly
418925bf5872S[email protected] 
4190fb8ba0dbS[email protected]     // would enabling ecnryption suffice (>= LEVEL_2)?
4191a98592bcSMatthias Ringwald     if (hci_stack->link_key_db){
4192a00031e2S[email protected]         link_key_type_t link_key_type;
4193a00031e2S[email protected]         link_key_t      link_key;
4194a98592bcSMatthias Ringwald         if (hci_stack->link_key_db->get_link_key( &connection->address, &link_key, &link_key_type)){
4195a00031e2S[email protected]             if (gap_security_level_for_link_key_type(link_key_type) >= requested_level){
4196a00031e2S[email protected]                 connection->bonding_flags |= BONDING_SEND_ENCRYPTION_REQUEST;
4197a00031e2S[email protected]                 return;
4198a00031e2S[email protected]             }
4199a00031e2S[email protected]         }
4200a00031e2S[email protected]     }
420125bf5872S[email protected] #endif
4202a00031e2S[email protected] 
420383d08d7cSMatthias Ringwald     // start to authenticate connection
42041eb2563eS[email protected]     connection->bonding_flags |= BONDING_SEND_AUTHENTICATE_REQUEST;
4205e80b2cf9S[email protected]     hci_run();
4206e00caf9cS[email protected] }
4207ad83dc6aS[email protected] 
4208ad83dc6aS[email protected] /**
4209ad83dc6aS[email protected]  * @brief start dedicated bonding with device. disconnect after bonding
4210ad83dc6aS[email protected]  * @param device
4211ad83dc6aS[email protected]  * @param request MITM protection
4212ad83dc6aS[email protected]  * @result GAP_DEDICATED_BONDING_COMPLETE
4213ad83dc6aS[email protected]  */
4214ad83dc6aS[email protected] int gap_dedicated_bonding(bd_addr_t device, int mitm_protection_required){
4215ad83dc6aS[email protected] 
4216ad83dc6aS[email protected]     // create connection state machine
421796a45072S[email protected]     hci_connection_t * connection = create_connection_for_bd_addr_and_type(device, BD_ADDR_TYPE_CLASSIC);
4218ad83dc6aS[email protected] 
4219ad83dc6aS[email protected]     if (!connection){
4220ad83dc6aS[email protected]         return BTSTACK_MEMORY_ALLOC_FAILED;
4221ad83dc6aS[email protected]     }
4222ad83dc6aS[email protected] 
4223ad83dc6aS[email protected]     // delete linkn key
422415a95bd5SMatthias Ringwald     gap_drop_link_key_for_bd_addr(device);
4225ad83dc6aS[email protected] 
4226ad83dc6aS[email protected]     // configure LEVEL_2/3, dedicated bonding
4227ad83dc6aS[email protected]     connection->state = SEND_CREATE_CONNECTION;
4228ad83dc6aS[email protected]     connection->requested_security_level = mitm_protection_required ? LEVEL_3 : LEVEL_2;
4229f04a0c31SMatthias Ringwald     log_info("gap_dedicated_bonding, mitm %d -> level %u", mitm_protection_required, connection->requested_security_level);
4230ad83dc6aS[email protected]     connection->bonding_flags = BONDING_DEDICATED;
4231ad83dc6aS[email protected] 
4232ad83dc6aS[email protected]     // wait for GAP Security Result and send GAP Dedicated Bonding complete
4233ad83dc6aS[email protected] 
4234ad83dc6aS[email protected]     // handle: connnection failure (connection complete != ok)
4235ad83dc6aS[email protected]     // handle: authentication failure
4236ad83dc6aS[email protected]     // handle: disconnect on done
4237ad83dc6aS[email protected] 
4238ad83dc6aS[email protected]     hci_run();
4239ad83dc6aS[email protected] 
4240ad83dc6aS[email protected]     return 0;
4241ad83dc6aS[email protected] }
424235454696SMatthias Ringwald #endif
42438e618f72S[email protected] 
42448e618f72S[email protected] void gap_set_local_name(const char * local_name){
42458e618f72S[email protected]     hci_stack->local_name = local_name;
42468e618f72S[email protected] }
42478e618f72S[email protected] 
424835454696SMatthias Ringwald 
424935454696SMatthias Ringwald #ifdef ENABLE_BLE
425035454696SMatthias Ringwald 
4251d70217a2SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
4252d8e8f12aSMatthias Ringwald void gap_start_scan(void){
42536fab74dbSMatthias Ringwald     hci_stack->le_scanning_enabled = 1;
42547bdc6798S[email protected]     hci_run();
42557bdc6798S[email protected] }
42568e618f72S[email protected] 
4257d8e8f12aSMatthias Ringwald void gap_stop_scan(void){
42586fab74dbSMatthias Ringwald     hci_stack->le_scanning_enabled = 0;
42597bdc6798S[email protected]     hci_run();
42607bdc6798S[email protected] }
42614f3229d8S[email protected] 
4262d8e8f12aSMatthias Ringwald void gap_set_scan_parameters(uint8_t scan_type, uint16_t scan_interval, uint16_t scan_window){
4263ef11999fSmatthias.ringwald     hci_stack->le_scan_type     = scan_type;
4264ef11999fSmatthias.ringwald     hci_stack->le_scan_interval = scan_interval;
4265ef11999fSmatthias.ringwald     hci_stack->le_scan_window   = scan_window;
4266ef11999fSmatthias.ringwald     hci_run();
4267ef11999fSmatthias.ringwald }
42684f3229d8S[email protected] 
4269d8e8f12aSMatthias Ringwald uint8_t gap_connect(bd_addr_t addr, bd_addr_type_t addr_type){
42704f3229d8S[email protected]     hci_connection_t * conn = hci_connection_for_bd_addr_and_type(addr, addr_type);
42714f3229d8S[email protected]     if (!conn){
4272d8e8f12aSMatthias Ringwald         log_info("gap_connect: no connection exists yet, creating context");
42732e77e513S[email protected]         conn = create_connection_for_bd_addr_and_type(addr, addr_type);
42744f3229d8S[email protected]         if (!conn){
42754f3229d8S[email protected]             // notify client that alloc failed
42766e2e9a6bS[email protected]             hci_emit_le_connection_complete(addr_type, addr, 0, BTSTACK_MEMORY_ALLOC_FAILED);
4277d8e8f12aSMatthias Ringwald             log_info("gap_connect: failed to alloc hci_connection_t");
4278472a5742SMatthias Ringwald             return GATT_CLIENT_NOT_CONNECTED; // don't sent packet to controller
42794f3229d8S[email protected]         }
42804f3229d8S[email protected]         conn->state = SEND_CREATE_CONNECTION;
4281d8e8f12aSMatthias Ringwald         log_info("gap_connect: send create connection next");
4282564fca32S[email protected]         hci_run();
4283616edd56SMatthias Ringwald         return 0;
42844f3229d8S[email protected]     }
42850bf6344aS[email protected] 
42860bf6344aS[email protected]     if (!hci_is_le_connection(conn) ||
42870bf6344aS[email protected]         conn->state == SEND_CREATE_CONNECTION ||
42880bf6344aS[email protected]         conn->state == SENT_CREATE_CONNECTION) {
42892e77e513S[email protected]         hci_emit_le_connection_complete(conn->address_type, conn->address, 0, ERROR_CODE_COMMAND_DISALLOWED);
4290d8e8f12aSMatthias Ringwald         log_error("gap_connect: classic connection or connect is already being created");
4291616edd56SMatthias Ringwald         return GATT_CLIENT_IN_WRONG_STATE;
42920bf6344aS[email protected]     }
42930bf6344aS[email protected] 
4294d8e8f12aSMatthias Ringwald     log_info("gap_connect: context exists with state %u", conn->state);
42952e77e513S[email protected]     hci_emit_le_connection_complete(conn->address_type, conn->address, conn->con_handle, 0);
42964f3229d8S[email protected]     hci_run();
4297616edd56SMatthias Ringwald     return 0;
42984f3229d8S[email protected] }
42994f3229d8S[email protected] 
43007851196eSmatthias.ringwald // @assumption: only a single outgoing LE Connection exists
4301d8e8f12aSMatthias Ringwald static hci_connection_t * gap_get_outgoing_connection(void){
4302665d90f2SMatthias Ringwald     btstack_linked_item_t *it;
4303665d90f2SMatthias Ringwald     for (it = (btstack_linked_item_t *) hci_stack->connections; it ; it = it->next){
43040bf6344aS[email protected]         hci_connection_t * conn = (hci_connection_t *) it;
43050bf6344aS[email protected]         if (!hci_is_le_connection(conn)) continue;
43060bf6344aS[email protected]         switch (conn->state){
4307a6725849S[email protected]             case SEND_CREATE_CONNECTION:
43087851196eSmatthias.ringwald             case SENT_CREATE_CONNECTION:
43099c77c9dbSMatthias Ringwald             case SENT_CANCEL_CONNECTION:
43107851196eSmatthias.ringwald                 return conn;
43117851196eSmatthias.ringwald             default:
43127851196eSmatthias.ringwald                 break;
43137851196eSmatthias.ringwald         };
43147851196eSmatthias.ringwald     }
43157851196eSmatthias.ringwald     return NULL;
43167851196eSmatthias.ringwald }
43177851196eSmatthias.ringwald 
4318d8e8f12aSMatthias Ringwald uint8_t gap_connect_cancel(void){
4319d8e8f12aSMatthias Ringwald     hci_connection_t * conn = gap_get_outgoing_connection();
4320616edd56SMatthias Ringwald     if (!conn) return 0;
43217851196eSmatthias.ringwald     switch (conn->state){
43227851196eSmatthias.ringwald         case SEND_CREATE_CONNECTION:
43237851196eSmatthias.ringwald             // skip sending create connection and emit event instead
43242e77e513S[email protected]             hci_emit_le_connection_complete(conn->address_type, conn->address, 0, ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER);
4325665d90f2SMatthias Ringwald             btstack_linked_list_remove(&hci_stack->connections, (btstack_linked_item_t *) conn);
43267851196eSmatthias.ringwald             btstack_memory_hci_connection_free( conn );
43270bf6344aS[email protected]             break;
4328a6725849S[email protected]         case SENT_CREATE_CONNECTION:
43297851196eSmatthias.ringwald             // request to send cancel connection
43300bf6344aS[email protected]             conn->state = SEND_CANCEL_CONNECTION;
43310bf6344aS[email protected]             hci_run();
43320bf6344aS[email protected]             break;
43330bf6344aS[email protected]         default:
43340bf6344aS[email protected]             break;
43350bf6344aS[email protected]     }
4336616edd56SMatthias Ringwald     return 0;
4337e31f89a7S[email protected] }
4338d70217a2SMatthias Ringwald #endif
43394f3229d8S[email protected] 
434013e645d2SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
4341c37a3166S[email protected] /**
43426012052bSMatthias Ringwald  * @brief Set connection parameters for outgoing connections
4343cbe54ab2SJakob Krantz  * @param conn_scan_interval (unit: 0.625 msec), default: 60 ms
4344cbe54ab2SJakob Krantz  * @param conn_scan_window (unit: 0.625 msec), default: 30 ms
43456012052bSMatthias Ringwald  * @param conn_interval_min (unit: 1.25ms), default: 10 ms
43466012052bSMatthias Ringwald  * @param conn_interval_max (unit: 1.25ms), default: 30 ms
43476012052bSMatthias Ringwald  * @param conn_latency, default: 4
43486012052bSMatthias Ringwald  * @param supervision_timeout (unit: 10ms), default: 720 ms
43496012052bSMatthias Ringwald  * @param min_ce_length (unit: 0.625ms), default: 10 ms
43506012052bSMatthias Ringwald  * @param max_ce_length (unit: 0.625ms), default: 30 ms
43516012052bSMatthias Ringwald  */
43526012052bSMatthias Ringwald 
4353cbe54ab2SJakob Krantz void gap_set_connection_parameters(uint16_t conn_scan_interval, uint16_t conn_scan_window,
4354cbe54ab2SJakob Krantz     uint16_t conn_interval_min, uint16_t conn_interval_max, uint16_t conn_latency,
4355cbe54ab2SJakob Krantz     uint16_t supervision_timeout, uint16_t min_ce_length, uint16_t max_ce_length){
4356cbe54ab2SJakob Krantz     hci_stack->le_connection_scan_interval = conn_scan_interval;
4357cbe54ab2SJakob Krantz     hci_stack->le_connection_scan_window = conn_scan_window;
43586012052bSMatthias Ringwald     hci_stack->le_connection_interval_min = conn_interval_min;
43596012052bSMatthias Ringwald     hci_stack->le_connection_interval_max = conn_interval_max;
43606012052bSMatthias Ringwald     hci_stack->le_connection_latency = conn_latency;
43616012052bSMatthias Ringwald     hci_stack->le_supervision_timeout = supervision_timeout;
43626012052bSMatthias Ringwald     hci_stack->le_minimum_ce_length = min_ce_length;
43636012052bSMatthias Ringwald     hci_stack->le_maximum_ce_length = max_ce_length;
43646012052bSMatthias Ringwald }
436513e645d2SMatthias Ringwald #endif
43666012052bSMatthias Ringwald 
43676012052bSMatthias Ringwald /**
4368c37a3166S[email protected]  * @brief Updates the connection parameters for a given LE connection
4369c37a3166S[email protected]  * @param handle
4370c37a3166S[email protected]  * @param conn_interval_min (unit: 1.25ms)
4371c37a3166S[email protected]  * @param conn_interval_max (unit: 1.25ms)
4372c37a3166S[email protected]  * @param conn_latency
4373c37a3166S[email protected]  * @param supervision_timeout (unit: 10ms)
4374c37a3166S[email protected]  * @returns 0 if ok
4375c37a3166S[email protected]  */
4376c37a3166S[email protected] int gap_update_connection_parameters(hci_con_handle_t con_handle, uint16_t conn_interval_min,
4377c37a3166S[email protected]     uint16_t conn_interval_max, uint16_t conn_latency, uint16_t supervision_timeout){
4378c37a3166S[email protected]     hci_connection_t * connection = hci_connection_for_handle(con_handle);
4379c37a3166S[email protected]     if (!connection) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
4380c37a3166S[email protected]     connection->le_conn_interval_min = conn_interval_min;
4381c37a3166S[email protected]     connection->le_conn_interval_max = conn_interval_max;
4382c37a3166S[email protected]     connection->le_conn_latency = conn_latency;
4383c37a3166S[email protected]     connection->le_supervision_timeout = supervision_timeout;
438484cf6d83SMatthias Ringwald     connection->le_con_parameter_update_state = CON_PARAMETER_UPDATE_CHANGE_HCI_CON_PARAMETERS;
4385cfc59f1bSMatthias Ringwald     hci_run();
4386c37a3166S[email protected]     return 0;
4387c37a3166S[email protected] }
4388c37a3166S[email protected] 
438945c102fdSMatthias Ringwald /**
4390b68d7bc3SMatthias Ringwald  * @brief Request an update of the connection parameter for a given LE connection
4391b68d7bc3SMatthias Ringwald  * @param handle
4392b68d7bc3SMatthias Ringwald  * @param conn_interval_min (unit: 1.25ms)
4393b68d7bc3SMatthias Ringwald  * @param conn_interval_max (unit: 1.25ms)
4394b68d7bc3SMatthias Ringwald  * @param conn_latency
4395b68d7bc3SMatthias Ringwald  * @param supervision_timeout (unit: 10ms)
4396b68d7bc3SMatthias Ringwald  * @returns 0 if ok
4397b68d7bc3SMatthias Ringwald  */
4398b68d7bc3SMatthias Ringwald int gap_request_connection_parameter_update(hci_con_handle_t con_handle, uint16_t conn_interval_min,
4399b68d7bc3SMatthias Ringwald     uint16_t conn_interval_max, uint16_t conn_latency, uint16_t supervision_timeout){
4400b68d7bc3SMatthias Ringwald     hci_connection_t * connection = hci_connection_for_handle(con_handle);
4401b68d7bc3SMatthias Ringwald     if (!connection) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
4402b68d7bc3SMatthias Ringwald     connection->le_conn_interval_min = conn_interval_min;
4403b68d7bc3SMatthias Ringwald     connection->le_conn_interval_max = conn_interval_max;
4404b68d7bc3SMatthias Ringwald     connection->le_conn_latency = conn_latency;
4405b68d7bc3SMatthias Ringwald     connection->le_supervision_timeout = supervision_timeout;
4406b68d7bc3SMatthias Ringwald     connection->le_con_parameter_update_state = CON_PARAMETER_UPDATE_SEND_REQUEST;
4407b68d7bc3SMatthias Ringwald     hci_run();
4408b68d7bc3SMatthias Ringwald     return 0;
4409b68d7bc3SMatthias Ringwald }
4410b68d7bc3SMatthias Ringwald 
4411d70217a2SMatthias Ringwald #ifdef ENABLE_LE_PERIPHERAL
4412d70217a2SMatthias Ringwald 
4413501f56b3SMatthias Ringwald static void gap_advertisments_changed(void){
4414501f56b3SMatthias Ringwald     // disable advertisements before updating adv, scan data, or adv params
4415501f56b3SMatthias Ringwald     if (hci_stack->le_advertisements_active){
4416501f56b3SMatthias Ringwald         hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_DISABLE | LE_ADVERTISEMENT_TASKS_ENABLE;
4417501f56b3SMatthias Ringwald     }
4418501f56b3SMatthias Ringwald     hci_run();
4419501f56b3SMatthias Ringwald }
4420501f56b3SMatthias Ringwald 
4421b68d7bc3SMatthias Ringwald /**
442245c102fdSMatthias Ringwald  * @brief Set Advertisement Data
442345c102fdSMatthias Ringwald  * @param advertising_data_length
442445c102fdSMatthias Ringwald  * @param advertising_data (max 31 octets)
442545c102fdSMatthias Ringwald  * @note data is not copied, pointer has to stay valid
442645c102fdSMatthias Ringwald  */
442745c102fdSMatthias Ringwald void gap_advertisements_set_data(uint8_t advertising_data_length, uint8_t * advertising_data){
442845c102fdSMatthias Ringwald     hci_stack->le_advertisements_data_len = advertising_data_length;
442945c102fdSMatthias Ringwald     hci_stack->le_advertisements_data = advertising_data;
4430501f56b3SMatthias Ringwald     hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_SET_ADV_DATA;
4431501f56b3SMatthias Ringwald     gap_advertisments_changed();
443245c102fdSMatthias Ringwald }
4433501f56b3SMatthias Ringwald 
4434501f56b3SMatthias Ringwald /**
4435501f56b3SMatthias Ringwald  * @brief Set Scan Response Data
4436501f56b3SMatthias Ringwald  * @param advertising_data_length
4437501f56b3SMatthias Ringwald  * @param advertising_data (max 31 octets)
4438501f56b3SMatthias Ringwald  * @note data is not copied, pointer has to stay valid
4439501f56b3SMatthias Ringwald  */
4440501f56b3SMatthias Ringwald void gap_scan_response_set_data(uint8_t scan_response_data_length, uint8_t * scan_response_data){
4441501f56b3SMatthias Ringwald     hci_stack->le_scan_response_data_len = scan_response_data_length;
4442501f56b3SMatthias Ringwald     hci_stack->le_scan_response_data = scan_response_data;
4443501f56b3SMatthias Ringwald     hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_SET_SCAN_DATA;
4444501f56b3SMatthias Ringwald     gap_advertisments_changed();
444545c102fdSMatthias Ringwald }
444645c102fdSMatthias Ringwald 
444745c102fdSMatthias Ringwald /**
444845c102fdSMatthias Ringwald  * @brief Set Advertisement Parameters
444945c102fdSMatthias Ringwald  * @param adv_int_min
445045c102fdSMatthias Ringwald  * @param adv_int_max
445145c102fdSMatthias Ringwald  * @param adv_type
445245c102fdSMatthias Ringwald  * @param direct_address_type
445345c102fdSMatthias Ringwald  * @param direct_address
445445c102fdSMatthias Ringwald  * @param channel_map
445545c102fdSMatthias Ringwald  * @param filter_policy
445645c102fdSMatthias Ringwald  *
445745c102fdSMatthias Ringwald  * @note internal use. use gap_advertisements_set_params from gap_le.h instead.
445845c102fdSMatthias Ringwald  */
445945c102fdSMatthias Ringwald  void hci_le_advertisements_set_params(uint16_t adv_int_min, uint16_t adv_int_max, uint8_t adv_type,
4460b95a5a35SMatthias Ringwald     uint8_t direct_address_typ, bd_addr_t direct_address,
446145c102fdSMatthias Ringwald     uint8_t channel_map, uint8_t filter_policy) {
446245c102fdSMatthias Ringwald 
446345c102fdSMatthias Ringwald     hci_stack->le_advertisements_interval_min = adv_int_min;
446445c102fdSMatthias Ringwald     hci_stack->le_advertisements_interval_max = adv_int_max;
446545c102fdSMatthias Ringwald     hci_stack->le_advertisements_type = adv_type;
446645c102fdSMatthias Ringwald     hci_stack->le_advertisements_direct_address_type = direct_address_typ;
446745c102fdSMatthias Ringwald     hci_stack->le_advertisements_channel_map = channel_map;
446845c102fdSMatthias Ringwald     hci_stack->le_advertisements_filter_policy = filter_policy;
446945c102fdSMatthias Ringwald     memcpy(hci_stack->le_advertisements_direct_address, direct_address, 6);
447045c102fdSMatthias Ringwald 
447145c102fdSMatthias Ringwald     hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_SET_PARAMS;
4472501f56b3SMatthias Ringwald     gap_advertisments_changed();
447345c102fdSMatthias Ringwald  }
447445c102fdSMatthias Ringwald 
447545c102fdSMatthias Ringwald /**
447645c102fdSMatthias Ringwald  * @brief Enable/Disable Advertisements
447745c102fdSMatthias Ringwald  * @param enabled
447845c102fdSMatthias Ringwald  */
447945c102fdSMatthias Ringwald void gap_advertisements_enable(int enabled){
448045c102fdSMatthias Ringwald     hci_stack->le_advertisements_enabled = enabled;
448145c102fdSMatthias Ringwald     if (enabled && !hci_stack->le_advertisements_active){
448245c102fdSMatthias Ringwald         hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_ENABLE;
448345c102fdSMatthias Ringwald     }
448445c102fdSMatthias Ringwald     if (!enabled && hci_stack->le_advertisements_active){
448545c102fdSMatthias Ringwald         hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_DISABLE;
448645c102fdSMatthias Ringwald     }
4487cfc59f1bSMatthias Ringwald     hci_run();
448845c102fdSMatthias Ringwald }
448945c102fdSMatthias Ringwald 
449035454696SMatthias Ringwald #endif
449106e5cf96SMatthias Ringwald 
449206e5cf96SMatthias Ringwald void hci_le_set_own_address_type(uint8_t own_address_type){
449306e5cf96SMatthias Ringwald     log_info("hci_le_set_own_address_type: old %u, new %u", hci_stack->le_own_addr_type, own_address_type);
449406e5cf96SMatthias Ringwald     if (own_address_type == hci_stack->le_own_addr_type) return;
449506e5cf96SMatthias Ringwald     hci_stack->le_own_addr_type = own_address_type;
449606e5cf96SMatthias Ringwald 
449764068776SMatthias Ringwald #ifdef ENABLE_LE_PERIPHERAL
449806e5cf96SMatthias Ringwald     // update advertisement parameters, too
449906e5cf96SMatthias Ringwald     hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_SET_PARAMS;
450006e5cf96SMatthias Ringwald     gap_advertisments_changed();
450164068776SMatthias Ringwald #endif
450264068776SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
450306e5cf96SMatthias Ringwald     // note: we don't update scan parameters or modify ongoing connection attempts
450464068776SMatthias Ringwald #endif
450506e5cf96SMatthias Ringwald }
450606e5cf96SMatthias Ringwald 
4507d70217a2SMatthias Ringwald #endif
450845c102fdSMatthias Ringwald 
4509616edd56SMatthias Ringwald uint8_t gap_disconnect(hci_con_handle_t handle){
45105917a5c5S[email protected]     hci_connection_t * conn = hci_connection_for_handle(handle);
45115917a5c5S[email protected]     if (!conn){
45127851196eSmatthias.ringwald         hci_emit_disconnection_complete(handle, 0);
4513616edd56SMatthias Ringwald         return 0;
45145917a5c5S[email protected]     }
45157fd7aa6fSMatthias Ringwald     // ignore if already disconnected
45167fd7aa6fSMatthias Ringwald     if (conn->state == RECEIVED_DISCONNECTION_COMPLETE){
45177fd7aa6fSMatthias Ringwald         return 0;
45187fd7aa6fSMatthias Ringwald     }
45195917a5c5S[email protected]     conn->state = SEND_DISCONNECT;
45205917a5c5S[email protected]     hci_run();
4521616edd56SMatthias Ringwald     return 0;
45224f3229d8S[email protected] }
452304a6ef8cSmatthias.ringwald 
4524a1bf5ae7SMatthias Ringwald /**
4525a1bf5ae7SMatthias Ringwald  * @brief Get connection type
4526a1bf5ae7SMatthias Ringwald  * @param con_handle
4527a1bf5ae7SMatthias Ringwald  * @result connection_type
4528a1bf5ae7SMatthias Ringwald  */
4529a1bf5ae7SMatthias Ringwald gap_connection_type_t gap_get_connection_type(hci_con_handle_t connection_handle){
4530a1bf5ae7SMatthias Ringwald     hci_connection_t * conn = hci_connection_for_handle(connection_handle);
4531a1bf5ae7SMatthias Ringwald     if (!conn) return GAP_CONNECTION_INVALID;
4532a1bf5ae7SMatthias Ringwald     switch (conn->address_type){
4533a1bf5ae7SMatthias Ringwald         case BD_ADDR_TYPE_LE_PUBLIC:
4534a1bf5ae7SMatthias Ringwald         case BD_ADDR_TYPE_LE_RANDOM:
4535a1bf5ae7SMatthias Ringwald             return GAP_CONNECTION_LE;
4536a1bf5ae7SMatthias Ringwald         case BD_ADDR_TYPE_SCO:
4537a1bf5ae7SMatthias Ringwald             return GAP_CONNECTION_SCO;
4538a1bf5ae7SMatthias Ringwald         case BD_ADDR_TYPE_CLASSIC:
4539a1bf5ae7SMatthias Ringwald             return GAP_CONNECTION_ACL;
4540a1bf5ae7SMatthias Ringwald         default:
4541a1bf5ae7SMatthias Ringwald             return GAP_CONNECTION_INVALID;
4542a1bf5ae7SMatthias Ringwald     }
4543a1bf5ae7SMatthias Ringwald }
4544a1bf5ae7SMatthias Ringwald 
4545a9a4c409SMatthias Ringwald #ifdef ENABLE_BLE
45464f551432SMatthias Ringwald 
4547b90f6e0aSMatthias Ringwald uint8_t gap_le_set_phy(hci_con_handle_t connection_handle, uint8_t all_phys, uint8_t tx_phys, uint8_t rx_phys, uint8_t phy_options){
4548b90f6e0aSMatthias Ringwald     hci_connection_t * conn = hci_connection_for_handle(connection_handle);
4549b90f6e0aSMatthias Ringwald     if (!conn) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
4550b90f6e0aSMatthias Ringwald 
4551b90f6e0aSMatthias Ringwald     conn->le_phy_update_all_phys    = all_phys;
4552b90f6e0aSMatthias Ringwald     conn->le_phy_update_tx_phys     = tx_phys;
4553b90f6e0aSMatthias Ringwald     conn->le_phy_update_rx_phys     = rx_phys;
4554b90f6e0aSMatthias Ringwald     conn->le_phy_update_phy_options = phy_options;
4555b90f6e0aSMatthias Ringwald 
4556b90f6e0aSMatthias Ringwald     hci_run();
4557b90f6e0aSMatthias Ringwald 
4558b90f6e0aSMatthias Ringwald     return 0;
4559b90f6e0aSMatthias Ringwald }
4560b90f6e0aSMatthias Ringwald 
4561d70217a2SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
4562d23838ecSMatthias Ringwald /**
4563ac9c45e0SMatthias Ringwald  * @brief Auto Connection Establishment - Start Connecting to device
4564ac9c45e0SMatthias Ringwald  * @param address_typ
4565ac9c45e0SMatthias Ringwald  * @param address
4566ac9c45e0SMatthias Ringwald  * @returns 0 if ok
4567ac9c45e0SMatthias Ringwald  */
45684f551432SMatthias Ringwald int gap_auto_connection_start(bd_addr_type_t address_type, bd_addr_t address){
4569e83201bcSMatthias Ringwald     // check capacity
4570665d90f2SMatthias Ringwald     int num_entries = btstack_linked_list_count(&hci_stack->le_whitelist);
457191915b0bSMatthias Ringwald     if (num_entries >= hci_stack->le_whitelist_capacity) return ERROR_CODE_MEMORY_CAPACITY_EXCEEDED;
4572e83201bcSMatthias Ringwald     whitelist_entry_t * entry = btstack_memory_whitelist_entry_get();
4573e83201bcSMatthias Ringwald     if (!entry) return BTSTACK_MEMORY_ALLOC_FAILED;
4574e83201bcSMatthias Ringwald     entry->address_type = address_type;
4575e83201bcSMatthias Ringwald     memcpy(entry->address, address, 6);
4576e83201bcSMatthias Ringwald     entry->state = LE_WHITELIST_ADD_TO_CONTROLLER;
4577665d90f2SMatthias Ringwald     btstack_linked_list_add(&hci_stack->le_whitelist, (btstack_linked_item_t*) entry);
4578e83201bcSMatthias Ringwald     hci_run();
4579e83201bcSMatthias Ringwald     return 0;
4580ac9c45e0SMatthias Ringwald }
4581ac9c45e0SMatthias Ringwald 
458242ff5ba1SMatthias Ringwald static void hci_remove_from_whitelist(bd_addr_type_t address_type, bd_addr_t address){
4583665d90f2SMatthias Ringwald     btstack_linked_list_iterator_t it;
4584665d90f2SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->le_whitelist);
4585665d90f2SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
4586665d90f2SMatthias Ringwald         whitelist_entry_t * entry = (whitelist_entry_t*) btstack_linked_list_iterator_next(&it);
4587e83201bcSMatthias Ringwald         if (entry->address_type != address_type) continue;
4588e83201bcSMatthias Ringwald         if (memcmp(entry->address, address, 6) != 0) continue;
4589e83201bcSMatthias Ringwald         if (entry->state & LE_WHITELIST_ON_CONTROLLER){
4590e83201bcSMatthias Ringwald             // remove from controller if already present
4591e83201bcSMatthias Ringwald             entry->state |= LE_WHITELIST_REMOVE_FROM_CONTROLLER;
4592e83201bcSMatthias Ringwald             continue;
4593e83201bcSMatthias Ringwald         }
4594e83201bcSMatthias Ringwald         // direclty remove entry from whitelist
4595665d90f2SMatthias Ringwald         btstack_linked_list_iterator_remove(&it);
4596e83201bcSMatthias Ringwald         btstack_memory_whitelist_entry_free(entry);
4597e83201bcSMatthias Ringwald     }
459842ff5ba1SMatthias Ringwald }
459942ff5ba1SMatthias Ringwald 
460042ff5ba1SMatthias Ringwald /**
460142ff5ba1SMatthias Ringwald  * @brief Auto Connection Establishment - Stop Connecting to device
460242ff5ba1SMatthias Ringwald  * @param address_typ
460342ff5ba1SMatthias Ringwald  * @param address
460442ff5ba1SMatthias Ringwald  * @returns 0 if ok
460542ff5ba1SMatthias Ringwald  */
460642ff5ba1SMatthias Ringwald int gap_auto_connection_stop(bd_addr_type_t address_type, bd_addr_t address){
460742ff5ba1SMatthias Ringwald     hci_remove_from_whitelist(address_type, address);
4608e83201bcSMatthias Ringwald     hci_run();
4609e83201bcSMatthias Ringwald     return 0;
4610ac9c45e0SMatthias Ringwald }
4611ac9c45e0SMatthias Ringwald 
4612ac9c45e0SMatthias Ringwald /**
4613ac9c45e0SMatthias Ringwald  * @brief Auto Connection Establishment - Stop everything
4614ac9c45e0SMatthias Ringwald  * @note  Convenience function to stop all active auto connection attempts
4615ac9c45e0SMatthias Ringwald  */
4616ac9c45e0SMatthias Ringwald void gap_auto_connection_stop_all(void){
4617665d90f2SMatthias Ringwald     btstack_linked_list_iterator_t it;
4618665d90f2SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->le_whitelist);
4619665d90f2SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
4620665d90f2SMatthias Ringwald         whitelist_entry_t * entry = (whitelist_entry_t*) btstack_linked_list_iterator_next(&it);
4621e83201bcSMatthias Ringwald         if (entry->state & LE_WHITELIST_ON_CONTROLLER){
4622e83201bcSMatthias Ringwald             // remove from controller if already present
4623e83201bcSMatthias Ringwald             entry->state |= LE_WHITELIST_REMOVE_FROM_CONTROLLER;
4624e83201bcSMatthias Ringwald             continue;
4625e83201bcSMatthias Ringwald         }
462691915b0bSMatthias Ringwald         // directly remove entry from whitelist
4627665d90f2SMatthias Ringwald         btstack_linked_list_iterator_remove(&it);
4628e83201bcSMatthias Ringwald         btstack_memory_whitelist_entry_free(entry);
4629e83201bcSMatthias Ringwald     }
4630e83201bcSMatthias Ringwald     hci_run();
4631ac9c45e0SMatthias Ringwald }
4632c9db5c21SMilanka Ringwald 
4633c9db5c21SMilanka Ringwald uint16_t gap_le_connection_interval(hci_con_handle_t connection_handle){
4634c9db5c21SMilanka Ringwald     hci_connection_t * conn = hci_connection_for_handle(connection_handle);
4635c9db5c21SMilanka Ringwald     if (!conn) return 0;
4636c9db5c21SMilanka Ringwald     return conn->le_connection_interval;
4637c9db5c21SMilanka Ringwald }
4638d70217a2SMatthias Ringwald #endif
46394f551432SMatthias Ringwald #endif
46404f551432SMatthias Ringwald 
464135454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
4642ac9c45e0SMatthias Ringwald /**
4643ff00ed1cSMatthias Ringwald  * @brief Set Extended Inquiry Response data
4644ff00ed1cSMatthias Ringwald  * @param eir_data size 240 bytes, is not copied make sure memory is accessible during stack startup
4645ff00ed1cSMatthias Ringwald  * @note has to be done before stack starts up
4646ff00ed1cSMatthias Ringwald  */
4647ff00ed1cSMatthias Ringwald void gap_set_extended_inquiry_response(const uint8_t * data){
4648ff00ed1cSMatthias Ringwald     hci_stack->eir_data = data;
4649ff00ed1cSMatthias Ringwald }
4650ff00ed1cSMatthias Ringwald 
4651ff00ed1cSMatthias Ringwald /**
4652f5875de5SMatthias Ringwald  * @brief Start GAP Classic Inquiry
4653f5875de5SMatthias Ringwald  * @param duration in 1.28s units
4654f5875de5SMatthias Ringwald  * @return 0 if ok
4655f5875de5SMatthias Ringwald  * @events: GAP_EVENT_INQUIRY_RESULT, GAP_EVENT_INQUIRY_COMPLETE
4656f5875de5SMatthias Ringwald  */
4657f5875de5SMatthias Ringwald int gap_inquiry_start(uint8_t duration_in_1280ms_units){
465899449554SMatthias Ringwald     if (hci_stack->state != HCI_STATE_WORKING) return ERROR_CODE_COMMAND_DISALLOWED;
4659f5875de5SMatthias Ringwald     if (hci_stack->inquiry_state != GAP_INQUIRY_STATE_IDLE) return ERROR_CODE_COMMAND_DISALLOWED;
4660f5875de5SMatthias Ringwald     if (duration_in_1280ms_units < GAP_INQUIRY_DURATION_MIN || duration_in_1280ms_units > GAP_INQUIRY_DURATION_MAX){
4661f5875de5SMatthias Ringwald         return ERROR_CODE_INVALID_HCI_COMMAND_PARAMETERS;
4662f5875de5SMatthias Ringwald     }
4663f5875de5SMatthias Ringwald     hci_stack->inquiry_state = duration_in_1280ms_units;
4664f5875de5SMatthias Ringwald     hci_run();
4665f5875de5SMatthias Ringwald     return 0;
4666f5875de5SMatthias Ringwald }
4667f5875de5SMatthias Ringwald 
4668f5875de5SMatthias Ringwald /**
4669f5875de5SMatthias Ringwald  * @brief Stop GAP Classic Inquiry
4670f5875de5SMatthias Ringwald  * @returns 0 if ok
4671f5875de5SMatthias Ringwald  */
4672f5875de5SMatthias Ringwald int gap_inquiry_stop(void){
46732c123282SMatthias Ringwald     if (hci_stack->inquiry_state >= GAP_INQUIRY_DURATION_MIN && hci_stack->inquiry_state <= GAP_INQUIRY_DURATION_MAX) {
4674f5875de5SMatthias Ringwald         // emit inquiry complete event, before it even started
4675f5875de5SMatthias Ringwald         uint8_t event[] = { GAP_EVENT_INQUIRY_COMPLETE, 1, 0};
4676f5875de5SMatthias Ringwald         hci_emit_event(event, sizeof(event), 1);
4677f5875de5SMatthias Ringwald         return 0;
4678f5875de5SMatthias Ringwald     }
4679f5875de5SMatthias Ringwald     if (hci_stack->inquiry_state != GAP_INQUIRY_STATE_ACTIVE) return ERROR_CODE_COMMAND_DISALLOWED;
4680f5875de5SMatthias Ringwald     hci_stack->inquiry_state = GAP_INQUIRY_STATE_W2_CANCEL;
4681f5875de5SMatthias Ringwald     hci_run();
4682f5875de5SMatthias Ringwald     return 0;
4683f5875de5SMatthias Ringwald }
4684f5875de5SMatthias Ringwald 
4685b7f1ee76SMatthias Ringwald 
4686b7f1ee76SMatthias Ringwald /**
4687b7f1ee76SMatthias Ringwald  * @brief Remote Name Request
4688b7f1ee76SMatthias Ringwald  * @param addr
4689b7f1ee76SMatthias Ringwald  * @param page_scan_repetition_mode
4690b7f1ee76SMatthias Ringwald  * @param clock_offset only used when bit 15 is set
4691b7f1ee76SMatthias Ringwald  * @events: HCI_EVENT_REMOTE_NAME_REQUEST_COMPLETE
4692b7f1ee76SMatthias Ringwald  */
4693b7f1ee76SMatthias Ringwald int gap_remote_name_request(bd_addr_t addr, uint8_t page_scan_repetition_mode, uint16_t clock_offset){
4694b7f1ee76SMatthias Ringwald     if (hci_stack->remote_name_state != GAP_REMOTE_NAME_STATE_IDLE) return ERROR_CODE_COMMAND_DISALLOWED;
4695b7f1ee76SMatthias Ringwald     memcpy(hci_stack->remote_name_addr, addr, 6);
4696b7f1ee76SMatthias Ringwald     hci_stack->remote_name_page_scan_repetition_mode = page_scan_repetition_mode;
4697b7f1ee76SMatthias Ringwald     hci_stack->remote_name_clock_offset = clock_offset;
4698b7f1ee76SMatthias Ringwald     hci_stack->remote_name_state = GAP_REMOTE_NAME_STATE_W2_SEND;
4699b7f1ee76SMatthias Ringwald     hci_run();
4700b7f1ee76SMatthias Ringwald     return 0;
4701b7f1ee76SMatthias Ringwald }
4702b7f1ee76SMatthias Ringwald 
47030a51f88bSMatthias Ringwald static int gap_pairing_set_state_and_run(bd_addr_t addr, uint8_t state){
47040a51f88bSMatthias Ringwald     hci_stack->gap_pairing_state = state;
47050a51f88bSMatthias Ringwald     memcpy(hci_stack->gap_pairing_addr, addr, 6);
47060a51f88bSMatthias Ringwald     hci_run();
47070a51f88bSMatthias Ringwald     return 0;
47080a51f88bSMatthias Ringwald }
47090a51f88bSMatthias Ringwald 
47100a51f88bSMatthias Ringwald /**
47110a51f88bSMatthias Ringwald  * @brief Legacy Pairing Pin Code Response
47120a51f88bSMatthias Ringwald  * @param addr
47130a51f88bSMatthias Ringwald  * @param pin
47140a51f88bSMatthias Ringwald  * @return 0 if ok
47150a51f88bSMatthias Ringwald  */
47160a51f88bSMatthias Ringwald int gap_pin_code_response(bd_addr_t addr, const char * pin){
4717cd74063aSMatthias Ringwald     if (hci_stack->gap_pairing_state != GAP_PAIRING_STATE_IDLE) return ERROR_CODE_COMMAND_DISALLOWED;
4718d504181aSMatthias Ringwald     hci_stack->gap_pairing_input.gap_pairing_pin = pin;
47190a51f88bSMatthias Ringwald     return gap_pairing_set_state_and_run(addr, GAP_PAIRING_STATE_SEND_PIN);
47200a51f88bSMatthias Ringwald }
47210a51f88bSMatthias Ringwald 
47220a51f88bSMatthias Ringwald /**
47230a51f88bSMatthias Ringwald  * @brief Abort Legacy Pairing
47240a51f88bSMatthias Ringwald  * @param addr
47250a51f88bSMatthias Ringwald  * @param pin
47260a51f88bSMatthias Ringwald  * @return 0 if ok
47270a51f88bSMatthias Ringwald  */
47280a51f88bSMatthias Ringwald int gap_pin_code_negative(bd_addr_t addr){
4729cd74063aSMatthias Ringwald     if (hci_stack->gap_pairing_state != GAP_PAIRING_STATE_IDLE) return ERROR_CODE_COMMAND_DISALLOWED;
47300a51f88bSMatthias Ringwald     return gap_pairing_set_state_and_run(addr, GAP_PAIRING_STATE_SEND_PIN_NEGATIVE);
47310a51f88bSMatthias Ringwald }
47320a51f88bSMatthias Ringwald 
47330a51f88bSMatthias Ringwald /**
47340a51f88bSMatthias Ringwald  * @brief SSP Passkey Response
47350a51f88bSMatthias Ringwald  * @param addr
47360a51f88bSMatthias Ringwald  * @param passkey
47370a51f88bSMatthias Ringwald  * @return 0 if ok
47380a51f88bSMatthias Ringwald  */
47390a51f88bSMatthias Ringwald int gap_ssp_passkey_response(bd_addr_t addr, uint32_t passkey){
4740cd74063aSMatthias Ringwald     if (hci_stack->gap_pairing_state != GAP_PAIRING_STATE_IDLE) return ERROR_CODE_COMMAND_DISALLOWED;
4741d504181aSMatthias Ringwald     hci_stack->gap_pairing_input.gap_pairing_passkey = passkey;
47420a51f88bSMatthias Ringwald     return gap_pairing_set_state_and_run(addr, GAP_PAIRING_STATE_SEND_PASSKEY);
47430a51f88bSMatthias Ringwald }
47440a51f88bSMatthias Ringwald 
47450a51f88bSMatthias Ringwald /**
47460a51f88bSMatthias Ringwald  * @brief Abort SSP Passkey Entry/Pairing
47470a51f88bSMatthias Ringwald  * @param addr
47480a51f88bSMatthias Ringwald  * @param pin
47490a51f88bSMatthias Ringwald  * @return 0 if ok
47500a51f88bSMatthias Ringwald  */
47510a51f88bSMatthias Ringwald int gap_ssp_passkey_negative(bd_addr_t addr){
4752cd74063aSMatthias Ringwald     if (hci_stack->gap_pairing_state != GAP_PAIRING_STATE_IDLE) return ERROR_CODE_COMMAND_DISALLOWED;
47530a51f88bSMatthias Ringwald     return gap_pairing_set_state_and_run(addr, GAP_PAIRING_STATE_SEND_PASSKEY_NEGATIVE);
47540a51f88bSMatthias Ringwald }
47550a51f88bSMatthias Ringwald 
47560a51f88bSMatthias Ringwald /**
47570a51f88bSMatthias Ringwald  * @brief Accept SSP Numeric Comparison
47580a51f88bSMatthias Ringwald  * @param addr
47590a51f88bSMatthias Ringwald  * @param passkey
47600a51f88bSMatthias Ringwald  * @return 0 if ok
47610a51f88bSMatthias Ringwald  */
47620a51f88bSMatthias Ringwald int gap_ssp_confirmation_response(bd_addr_t addr){
4763cd74063aSMatthias Ringwald     if (hci_stack->gap_pairing_state != GAP_PAIRING_STATE_IDLE) return ERROR_CODE_COMMAND_DISALLOWED;
47640a51f88bSMatthias Ringwald     return gap_pairing_set_state_and_run(addr, GAP_PAIRING_STATE_SEND_CONFIRMATION);
47650a51f88bSMatthias Ringwald }
47660a51f88bSMatthias Ringwald 
47670a51f88bSMatthias Ringwald /**
47680a51f88bSMatthias Ringwald  * @brief Abort SSP Numeric Comparison/Pairing
47690a51f88bSMatthias Ringwald  * @param addr
47700a51f88bSMatthias Ringwald  * @param pin
47710a51f88bSMatthias Ringwald  * @return 0 if ok
47720a51f88bSMatthias Ringwald  */
47730a51f88bSMatthias Ringwald int gap_ssp_confirmation_negative(bd_addr_t addr){
4774cd74063aSMatthias Ringwald     if (hci_stack->gap_pairing_state != GAP_PAIRING_STATE_IDLE) return ERROR_CODE_COMMAND_DISALLOWED;
47750a51f88bSMatthias Ringwald     return gap_pairing_set_state_and_run(addr, GAP_PAIRING_STATE_SEND_CONFIRMATION_NEGATIVE);
47760a51f88bSMatthias Ringwald }
47770a51f88bSMatthias Ringwald 
4778f5875de5SMatthias Ringwald /**
4779f6858d14SMatthias Ringwald  * @brief Set inquiry mode: standard, with RSSI, with RSSI + Extended Inquiry Results. Has to be called before power on.
4780f5875de5SMatthias Ringwald  * @param inquiry_mode see bluetooth_defines.h
4781f6858d14SMatthias Ringwald  */
4782f6858d14SMatthias Ringwald void hci_set_inquiry_mode(inquiry_mode_t mode){
4783f6858d14SMatthias Ringwald     hci_stack->inquiry_mode = mode;
4784f6858d14SMatthias Ringwald }
4785f6858d14SMatthias Ringwald 
4786f6858d14SMatthias Ringwald /**
4787d950d659SMatthias Ringwald  * @brief Configure Voice Setting for use with SCO data in HSP/HFP
4788d950d659SMatthias Ringwald  */
4789d950d659SMatthias Ringwald void hci_set_sco_voice_setting(uint16_t voice_setting){
4790d950d659SMatthias Ringwald     hci_stack->sco_voice_setting = voice_setting;
4791d950d659SMatthias Ringwald }
4792d950d659SMatthias Ringwald 
4793d950d659SMatthias Ringwald /**
4794d950d659SMatthias Ringwald  * @brief Get SCO Voice Setting
4795d950d659SMatthias Ringwald  * @return current voice setting
4796d950d659SMatthias Ringwald  */
47970cb5b971SMatthias Ringwald uint16_t hci_get_sco_voice_setting(void){
4798d950d659SMatthias Ringwald     return hci_stack->sco_voice_setting;
4799d950d659SMatthias Ringwald }
4800d950d659SMatthias Ringwald 
4801b3aad8daSMatthias Ringwald /** @brief Get SCO packet length for current SCO Voice setting
4802b3aad8daSMatthias Ringwald  *  @note  Using SCO packets of the exact length is required for USB transfer
4803b3aad8daSMatthias Ringwald  *  @return Length of SCO packets in bytes (not audio frames)
4804b3aad8daSMatthias Ringwald  */
4805b3aad8daSMatthias Ringwald int hci_get_sco_packet_length(void){
4806a3069afeSMatthias Ringwald     int sco_packet_length = 0;
4807a3069afeSMatthias Ringwald 
4808a3069afeSMatthias Ringwald #ifdef ENABLE_CLASSIC
4809a3069afeSMatthias Ringwald #ifdef ENABLE_SCO_OVER_HCI
4810b3aad8daSMatthias Ringwald     // see Core Spec for H2 USB Transfer.
4811cf119f3bSMatthias Ringwald 
4812cf119f3bSMatthias Ringwald     // CVSD requires twice as much bytes
4813cf119f3bSMatthias Ringwald     int multiplier = hci_stack->sco_voice_setting & 0x0020 ? 2 : 1;
4814cf119f3bSMatthias Ringwald 
4815cf119f3bSMatthias Ringwald     // 3 byte SCO header + 24 bytes per connection
4816a3069afeSMatthias Ringwald     sco_packet_length = 3 + 24 * hci_number_sco_connections() * multiplier;
4817a3069afeSMatthias Ringwald #endif
4818a3069afeSMatthias Ringwald #endif
4819a3069afeSMatthias Ringwald     return sco_packet_length;
4820b3aad8daSMatthias Ringwald }
4821b3aad8daSMatthias Ringwald 
4822c4c88f1bSJakob Krantz /**
4823c4c88f1bSJakob Krantz * @brief Sets the master/slave policy
4824c4c88f1bSJakob Krantz * @param policy (0: attempt to become master, 1: let connecting device decide)
4825c4c88f1bSJakob Krantz */
4826c4c88f1bSJakob Krantz void hci_set_master_slave_policy(uint8_t policy){
4827c4c88f1bSJakob Krantz     hci_stack->master_slave_policy = policy;
4828c4c88f1bSJakob Krantz }
4829c4c88f1bSJakob Krantz 
4830c4c88f1bSJakob Krantz #endif
4831ec111c8bSMatthias Ringwald 
4832ec111c8bSMatthias Ringwald HCI_STATE hci_get_state(void){
4833ec111c8bSMatthias Ringwald     return hci_stack->state;
4834ec111c8bSMatthias Ringwald }
4835ec111c8bSMatthias Ringwald 
4836ec111c8bSMatthias Ringwald 
4837d950d659SMatthias Ringwald /**
4838d23838ecSMatthias Ringwald  * @brief Set callback for Bluetooth Hardware Error
4839d23838ecSMatthias Ringwald  */
4840c2e1fa60SMatthias Ringwald void hci_set_hardware_error_callback(void (*fn)(uint8_t error)){
4841d23838ecSMatthias Ringwald     hci_stack->hardware_error_callback = fn;
4842d23838ecSMatthias Ringwald }
4843d23838ecSMatthias Ringwald 
484471de195eSMatthias Ringwald void hci_disconnect_all(void){
4845665d90f2SMatthias Ringwald     btstack_linked_list_iterator_t it;
4846665d90f2SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->connections);
4847665d90f2SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
4848665d90f2SMatthias Ringwald         hci_connection_t * con = (hci_connection_t*) btstack_linked_list_iterator_next(&it);
484904a6ef8cSmatthias.ringwald         if (con->state == SENT_DISCONNECT) continue;
485004a6ef8cSmatthias.ringwald         con->state = SEND_DISCONNECT;
485104a6ef8cSmatthias.ringwald     }
4852d31fba26S[email protected]     hci_run();
485304a6ef8cSmatthias.ringwald }
485433373e40SMatthias Ringwald 
485533373e40SMatthias Ringwald uint16_t hci_get_manufacturer(void){
485633373e40SMatthias Ringwald     return hci_stack->manufacturer;
485733373e40SMatthias Ringwald }
48589c6e867eSMatthias Ringwald 
48593e329ddfSandryblack #ifdef ENABLE_BLE
48603e329ddfSandryblack 
48619c6e867eSMatthias Ringwald static sm_connection_t * sm_get_connection_for_handle(hci_con_handle_t con_handle){
48629c6e867eSMatthias Ringwald     hci_connection_t * hci_con = hci_connection_for_handle(con_handle);
48639c6e867eSMatthias Ringwald     if (!hci_con) return NULL;
48649c6e867eSMatthias Ringwald     return &hci_con->sm_connection;
48659c6e867eSMatthias Ringwald }
48669c6e867eSMatthias Ringwald 
48679c6e867eSMatthias Ringwald // extracted from sm.c to allow enabling of l2cap le data channels without adding sm.c to the build
48689c6e867eSMatthias Ringwald // without sm.c default values from create_connection_for_bd_addr_and_type() resulg in non-encrypted, not-authenticated
48699c6e867eSMatthias Ringwald 
48709c6e867eSMatthias Ringwald int gap_encryption_key_size(hci_con_handle_t con_handle){
48719c6e867eSMatthias Ringwald     sm_connection_t * sm_conn = sm_get_connection_for_handle(con_handle);
48729c6e867eSMatthias Ringwald     if (!sm_conn) return 0;     // wrong connection
48739c6e867eSMatthias Ringwald     if (!sm_conn->sm_connection_encrypted) return 0;
48749c6e867eSMatthias Ringwald     return sm_conn->sm_actual_encryption_key_size;
48759c6e867eSMatthias Ringwald }
48769c6e867eSMatthias Ringwald 
48779c6e867eSMatthias Ringwald int gap_authenticated(hci_con_handle_t con_handle){
48789c6e867eSMatthias Ringwald     sm_connection_t * sm_conn = sm_get_connection_for_handle(con_handle);
48799c6e867eSMatthias Ringwald     if (!sm_conn) return 0;     // wrong connection
48809c6e867eSMatthias Ringwald     if (!sm_conn->sm_connection_encrypted) return 0; // unencrypted connection cannot be authenticated
48819c6e867eSMatthias Ringwald     return sm_conn->sm_connection_authenticated;
48829c6e867eSMatthias Ringwald }
48839c6e867eSMatthias Ringwald 
48849c6e867eSMatthias Ringwald authorization_state_t gap_authorization_state(hci_con_handle_t con_handle){
48859c6e867eSMatthias Ringwald     sm_connection_t * sm_conn = sm_get_connection_for_handle(con_handle);
48869c6e867eSMatthias Ringwald     if (!sm_conn) return AUTHORIZATION_UNKNOWN;     // wrong connection
48879c6e867eSMatthias Ringwald     if (!sm_conn->sm_connection_encrypted)               return AUTHORIZATION_UNKNOWN; // unencrypted connection cannot be authorized
48889c6e867eSMatthias Ringwald     if (!sm_conn->sm_connection_authenticated)           return AUTHORIZATION_UNKNOWN; // unauthenticatd connection cannot be authorized
48899c6e867eSMatthias Ringwald     return sm_conn->sm_connection_authorization_state;
48909c6e867eSMatthias Ringwald }
48919c6e867eSMatthias Ringwald #endif
4892f8ee3071SMatthias Ringwald 
4893f8ee3071SMatthias Ringwald #ifdef ENABLE_CLASSIC
4894f8ee3071SMatthias Ringwald uint8_t gap_sniff_mode_enter(hci_con_handle_t con_handle, uint16_t sniff_min_interval, uint16_t sniff_max_interval, uint16_t sniff_attempt, uint16_t sniff_timeout){
4895f8ee3071SMatthias Ringwald     hci_connection_t * conn = hci_connection_for_handle(con_handle);
4896f8ee3071SMatthias Ringwald     if (!conn) return GAP_CONNECTION_INVALID;
4897f8ee3071SMatthias Ringwald     conn->sniff_min_interval = sniff_min_interval;
4898f8ee3071SMatthias Ringwald     conn->sniff_max_interval = sniff_max_interval;
4899f8ee3071SMatthias Ringwald     conn->sniff_attempt = sniff_attempt;
4900f8ee3071SMatthias Ringwald     conn->sniff_timeout = sniff_timeout;
4901f8ee3071SMatthias Ringwald     hci_run();
4902f8ee3071SMatthias Ringwald     return 0;
4903f8ee3071SMatthias Ringwald }
4904f8ee3071SMatthias Ringwald 
4905f8ee3071SMatthias Ringwald /**
4906f8ee3071SMatthias Ringwald  * @brief Exit Sniff mode
4907f8ee3071SMatthias Ringwald  * @param con_handle
4908f8ee3071SMatthias Ringwald  @ @return 0 if ok
4909f8ee3071SMatthias Ringwald  */
4910f8ee3071SMatthias Ringwald uint8_t gap_sniff_mode_exit(hci_con_handle_t con_handle){
4911f8ee3071SMatthias Ringwald     hci_connection_t * conn = hci_connection_for_handle(con_handle);
4912f8ee3071SMatthias Ringwald     if (!conn) return GAP_CONNECTION_INVALID;
4913f8ee3071SMatthias Ringwald     conn->sniff_min_interval = 0xffff;
4914f8ee3071SMatthias Ringwald     hci_run();
4915f8ee3071SMatthias Ringwald     return 0;
4916f8ee3071SMatthias Ringwald }
4917f8ee3071SMatthias Ringwald #endif
4918