xref: /btstack/src/hci.c (revision 91d9e5d0d4e73cf5ec11d3ad1bdc806a9c2028df)
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
232fca4dadSMilanka Ringwald  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BLUEKITCHEN
242fca4dadSMilanka Ringwald  * GMBH 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 
38e501bae0SMatthias 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 
56a9a4c409SMatthias Ringwald #ifdef ENABLE_BLE
57472a5742SMatthias Ringwald #include "gap.h"
5821debf25SMatthias Ringwald #include "ble/le_device_db.h"
5945c102fdSMatthias Ringwald #endif
6045c102fdSMatthias Ringwald 
6193b8dc03Smatthias.ringwald #include <stdarg.h>
6293b8dc03Smatthias.ringwald #include <string.h>
635838a2edSMatthias Ringwald #include <inttypes.h>
647f2435e6Smatthias.ringwald 
6516ece135SMatthias Ringwald #include "btstack_debug.h"
660e2df43fSMatthias Ringwald #include "btstack_event.h"
674a3574a1SMatthias Ringwald #include "btstack_linked_list.h"
684a3574a1SMatthias Ringwald #include "btstack_memory.h"
6961f37892SMatthias Ringwald #include "bluetooth_company_id.h"
701cfb383eSMatthias Ringwald #include "bluetooth_data_types.h"
714a3574a1SMatthias Ringwald #include "gap.h"
724a3574a1SMatthias Ringwald #include "hci.h"
734a3574a1SMatthias Ringwald #include "hci_cmd.h"
74d8905019Smatthias.ringwald #include "hci_dump.h"
751cfb383eSMatthias Ringwald #include "ad_parser.h"
7693b8dc03Smatthias.ringwald 
772b838201SMatthias Ringwald #ifdef ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL
782b838201SMatthias Ringwald #ifndef HCI_HOST_ACL_PACKET_NUM
792b838201SMatthias Ringwald #error "ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL requires to define HCI_HOST_ACL_PACKET_NUM"
802b838201SMatthias Ringwald #endif
812b838201SMatthias Ringwald #ifndef HCI_HOST_ACL_PACKET_LEN
822b838201SMatthias Ringwald #error "ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL requires to define HCI_HOST_ACL_PACKET_LEN"
832b838201SMatthias Ringwald #endif
842b838201SMatthias Ringwald #ifndef HCI_HOST_SCO_PACKET_NUM
852b838201SMatthias Ringwald #error "ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL requires to define HCI_HOST_SCO_PACKET_NUM"
862b838201SMatthias Ringwald #endif
872b838201SMatthias Ringwald #ifndef HCI_HOST_SCO_PACKET_LEN
882b838201SMatthias Ringwald #error "ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL requires to define HCI_HOST_SCO_PACKET_LEN"
892b838201SMatthias Ringwald #endif
902b838201SMatthias Ringwald #endif
911b0e3922Smatthias.ringwald 
92aa81e641SMatthias Ringwald #if defined(ENABLE_SCO_OVER_HCI) && defined(ENABLE_SCO_OVER_PCM)
93aa81e641SMatthias Ringwald #error "SCO data can either be routed over HCI or over PCM, but not over both. Please only enable ENABLE_SCO_OVER_HCI or ENABLE_SCO_OVER_PCM."
94aa81e641SMatthias Ringwald #endif
95aa81e641SMatthias Ringwald 
961e20a53eSMatthias Ringwald #if defined(ENABLE_SCO_OVER_HCI) && defined(HAVE_SCO_TRANSPORT)
971e20a53eSMatthias Ringwald #error "SCO data can either be routed over HCI or over PCM, but not over both. Please only enable ENABLE_SCO_OVER_HCI or HAVE_SCO_TRANSPORT."
981e20a53eSMatthias Ringwald #endif
991e20a53eSMatthias Ringwald 
100169f8b28Smatthias.ringwald #define HCI_CONNECTION_TIMEOUT_MS 10000
10162473419SMatthias Ringwald 
10262473419SMatthias Ringwald #ifndef HCI_RESET_RESEND_TIMEOUT_MS
103659d758cSMatthias Ringwald #define HCI_RESET_RESEND_TIMEOUT_MS 200
10462473419SMatthias Ringwald #endif
105ee091cf1Smatthias.ringwald 
1061cfb383eSMatthias Ringwald // Names are arbitrarily shortened to 32 bytes if not requested otherwise
1071cfb383eSMatthias Ringwald #ifndef GAP_INQUIRY_MAX_NAME_LEN
1081cfb383eSMatthias Ringwald #define GAP_INQUIRY_MAX_NAME_LEN 32
1091cfb383eSMatthias Ringwald #endif
1101cfb383eSMatthias Ringwald 
111f5875de5SMatthias Ringwald // GAP inquiry state: 0 = off, 0x01 - 0x30 = requested duration, 0xfe = active, 0xff = stop requested
112f5875de5SMatthias Ringwald #define GAP_INQUIRY_DURATION_MIN       0x01
113f5875de5SMatthias Ringwald #define GAP_INQUIRY_DURATION_MAX       0x30
114beb3c81dSMatthias Ringwald #define GAP_INQUIRY_STATE_IDLE         0x00
115beb3c81dSMatthias Ringwald #define GAP_INQUIRY_STATE_W4_ACTIVE    0x80
116beb3c81dSMatthias Ringwald #define GAP_INQUIRY_STATE_ACTIVE       0x81
117beb3c81dSMatthias Ringwald #define GAP_INQUIRY_STATE_W2_CANCEL    0x82
118beb3c81dSMatthias Ringwald #define GAP_INQUIRY_STATE_W4_CANCELLED 0x83
119f5875de5SMatthias Ringwald 
120b7f1ee76SMatthias Ringwald // GAP Remote Name Request
121b7f1ee76SMatthias Ringwald #define GAP_REMOTE_NAME_STATE_IDLE 0
122b7f1ee76SMatthias Ringwald #define GAP_REMOTE_NAME_STATE_W2_SEND 1
123b7f1ee76SMatthias Ringwald #define GAP_REMOTE_NAME_STATE_W4_COMPLETE 2
124b7f1ee76SMatthias Ringwald 
1250a51f88bSMatthias Ringwald // GAP Pairing
1260a51f88bSMatthias Ringwald #define GAP_PAIRING_STATE_IDLE                       0
1270a51f88bSMatthias Ringwald #define GAP_PAIRING_STATE_SEND_PIN                   1
1280a51f88bSMatthias Ringwald #define GAP_PAIRING_STATE_SEND_PIN_NEGATIVE          2
1290a51f88bSMatthias Ringwald #define GAP_PAIRING_STATE_SEND_PASSKEY               3
1300a51f88bSMatthias Ringwald #define GAP_PAIRING_STATE_SEND_PASSKEY_NEGATIVE      4
1310a51f88bSMatthias Ringwald #define GAP_PAIRING_STATE_SEND_CONFIRMATION          5
1320a51f88bSMatthias Ringwald #define GAP_PAIRING_STATE_SEND_CONFIRMATION_NEGATIVE 6
133cc15bb2cSMatthias Ringwald #define GAP_PAIRING_STATE_WAIT_FOR_COMMAND_COMPLETE  7
1340a51f88bSMatthias Ringwald 
13525e46151SMatthias Ringwald //
1369ce37759SMatthias Ringwald // compact storage of relevant supported HCI Commands.
1379ce37759SMatthias Ringwald // X-Macro below provides enumeration and mapping table into the supported
13825e46151SMatthias Ringwald // commands bitmap (64 bytes) from HCI Read Local Supported Commands
13925e46151SMatthias Ringwald //
14025e46151SMatthias Ringwald 
14125e46151SMatthias Ringwald // format: command name, byte offset, bit nr in 64-byte supported commands
14225e46151SMatthias Ringwald #define SUPPORTED_HCI_COMMANDS \
1439ce37759SMatthias Ringwald     X( SUPPORTED_HCI_COMMAND_READ_REMOTE_EXTENDED_FEATURES         ,  2, 5) \
14425e46151SMatthias Ringwald     X( SUPPORTED_HCI_COMMAND_WRITE_SYNCHRONOUS_FLOW_CONTROL_ENABLE , 10, 4) \
1459ce37759SMatthias Ringwald     X( SUPPORTED_HCI_COMMAND_READ_BUFFER_SIZE                      , 14, 7) \
14625e46151SMatthias Ringwald     X( SUPPORTED_HCI_COMMAND_WRITE_DEFAULT_ERRONEOUS_DATA_REPORTING, 18, 3) \
1479ce37759SMatthias Ringwald     X( SUPPORTED_HCI_COMMAND_READ_ENCRYPTION_KEY_SIZE              , 20, 4) \
1489ce37759SMatthias Ringwald     X( SUPPORTED_HCI_COMMAND_WRITE_LE_HOST_SUPPORTED               , 24, 6) \
1499ce37759SMatthias Ringwald     X( SUPPORTED_HCI_COMMAND_REMOTE_OOB_EXTENDED_DATA_REQUEST_REPLY, 32, 1) \
1509ce37759SMatthias Ringwald     X( SUPPORTED_HCI_COMMAND_WRITE_SECURE_CONNECTIONS_HOST         , 32, 3) \
1519ce37759SMatthias Ringwald     X( SUPPORTED_HCI_COMMAND_READ_LOCAL_OOB_EXTENDED_DATA_COMMAND  , 32, 6) \
15225e46151SMatthias Ringwald     X( SUPPORTED_HCI_COMMAND_LE_WRITE_SUGGESTED_DEFAULT_DATA_LENGTH, 34, 0) \
15325e46151SMatthias Ringwald     X( SUPPORTED_HCI_COMMAND_LE_READ_MAXIMUM_DATA_LENGTH           , 35, 3) \
15425e46151SMatthias Ringwald     X( SUPPORTED_HCI_COMMAND_LE_SET_ADDRESS_RESOLUTION_ENABLE      , 35, 1) \
1559ce37759SMatthias Ringwald     X( SUPPORTED_HCI_COMMAND_LE_SET_DEFAULT_PHY                    , 35, 5) \
15625e46151SMatthias Ringwald 
15725e46151SMatthias Ringwald // enumerate supported commands
15825e46151SMatthias Ringwald #define X(name, offset, bit) name,
15925e46151SMatthias Ringwald enum {
16025e46151SMatthias Ringwald     SUPPORTED_HCI_COMMANDS
16125e46151SMatthias Ringwald     SUPPORTED_HCI_COMMANDS_COUNT
16225e46151SMatthias Ringwald };
16325e46151SMatthias Ringwald #undef X
16425e46151SMatthias Ringwald 
16525e46151SMatthias Ringwald // assert supported hci commands bitmap fits into provided storage
16625e46151SMatthias Ringwald #if SUPPORTED_HCI_COMMANDS_COUNT > 16
16725e46151SMatthias Ringwald #error "Storage for supported HCI commands too small"
16825e46151SMatthias Ringwald #endif
16925e46151SMatthias Ringwald 
170b83d5eabSMatthias Ringwald // prototypes
17135454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
172758b46ceSmatthias.ringwald static void hci_update_scan_enable(void);
17335454696SMatthias Ringwald static void hci_emit_discoverable_enabled(uint8_t enabled);
17435454696SMatthias Ringwald static int  hci_local_ssp_activated(void);
17520dcdd22SMatthias Ringwald static bool hci_remote_ssp_supported(hci_con_handle_t con_handle);
17667aae551SMatthias Ringwald static bool hci_ssp_supported(hci_connection_t * connection);
17735454696SMatthias Ringwald static void hci_notify_if_sco_can_send_now(void);
17835454696SMatthias Ringwald static void hci_emit_connection_complete(bd_addr_t address, hci_con_handle_t con_handle, uint8_t status);
179a00031e2S[email protected] static gap_security_level_t gap_security_level_for_connection(hci_connection_t * connection);
18035454696SMatthias Ringwald static void hci_emit_security_level(hci_con_handle_t con_handle, gap_security_level_t level);
181ec820d77SMatthias Ringwald static void hci_connection_timeout_handler(btstack_timer_source_t *timer);
18296a45072S[email protected] static void hci_connection_timestamp(hci_connection_t *connection);
18352db98b2SMatthias Ringwald static void hci_emit_l2cap_check_timeout(hci_connection_t *conn);
1849784dac1SMatthias Ringwald static void gap_inquiry_explode(uint8_t *packet, uint16_t size);
18552db98b2SMatthias Ringwald #endif
1861cfb383eSMatthias Ringwald 
1877586ee35S[email protected] static int  hci_power_control_on(void);
1887586ee35S[email protected] static void hci_power_control_off(void);
1896da48142SSean Wilson static void hci_state_reset(void);
190685ec254SMatthias Ringwald static void hci_halting_timeout_handler(btstack_timer_source_t * ds);
191fd43c0e0SMatthias Ringwald static void hci_emit_transport_packet_sent(void);
192fc64f94aSMatthias Ringwald static void hci_emit_disconnection_complete(hci_con_handle_t con_handle, uint8_t reason);
193b83d5eabSMatthias Ringwald static void hci_emit_nr_connections_changed(void);
194b83d5eabSMatthias Ringwald static void hci_emit_hci_open_failed(void);
195b83d5eabSMatthias Ringwald static void hci_emit_dedicated_bonding_result(bd_addr_t address, uint8_t status);
196b83d5eabSMatthias Ringwald static void hci_emit_event(uint8_t * event, uint16_t size, int dump);
197b83d5eabSMatthias Ringwald static void hci_emit_acl_packet(uint8_t * packet, uint16_t size);
19895d71764SMatthias Ringwald static void hci_run(void);
19995d71764SMatthias Ringwald static int  hci_is_le_connection(hci_connection_t * connection);
2006a5ffed8SMatthias Ringwald 
2016a5ffed8SMatthias Ringwald #ifdef ENABLE_CLASSIC
202f234b250SMatthias Ringwald static int hci_have_usb_transport(void);
203dbe0d85cSMatthias Ringwald static void hci_trigger_remote_features_for_connection(hci_connection_t * connection);
2046a5ffed8SMatthias Ringwald #endif
2055d509858SMatthias Ringwald 
206a9a4c409SMatthias Ringwald #ifdef ENABLE_BLE
207e8c8828eSMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
20839677e66SMatthias Ringwald // called from test/ble_client/advertising_data_parser.c
209384b59deSMatthias Ringwald void le_handle_advertisement_report(uint8_t *packet, uint16_t size);
210667ba9d1SMatthias Ringwald static uint8_t hci_whitelist_remove(bd_addr_type_t address_type, const bd_addr_t address);
21183dc1a98SMatthias Ringwald static void hci_whitelist_free(void);
2129c77c9dbSMatthias Ringwald static hci_connection_t * gap_get_outgoing_connection(void);
21373799937SMatthias Ringwald static bool hci_run_general_gap_le(void);
2145d509858SMatthias Ringwald #endif
215d70217a2SMatthias Ringwald #endif
216758b46ceSmatthias.ringwald 
21706b35ec0Smatthias.ringwald // the STACK is here
2183a9fb326S[email protected] #ifndef HAVE_MALLOC
2193a9fb326S[email protected] static hci_stack_t   hci_stack_static;
2203a9fb326S[email protected] #endif
2213a9fb326S[email protected] static hci_stack_t * hci_stack = NULL;
22216833f0aSmatthias.ringwald 
2231c9e5e9dSMatthias Ringwald #ifdef ENABLE_CLASSIC
22463168530SMatthias Ringwald // default name
22563168530SMatthias Ringwald static const char * default_classic_name = "BTstack 00:00:00:00:00:00";
22663168530SMatthias Ringwald 
22766fb9560S[email protected] // test helper
22866fb9560S[email protected] static uint8_t disable_l2cap_timeouts = 0;
2291c9e5e9dSMatthias Ringwald #endif
23066fb9560S[email protected] 
231aee5d5c1SMatthias Ringwald // reset connection state on create and on reconnect
232aee5d5c1SMatthias Ringwald // don't overwrite addr, con handle, role
233aee5d5c1SMatthias Ringwald static void hci_connection_init(hci_connection_t * conn){
2348daf94bcSMatthias Ringwald     conn->authentication_flags = AUTH_FLAG_NONE;
23596a45072S[email protected]     conn->bonding_flags = 0;
23696a45072S[email protected]     conn->requested_security_level = LEVEL_0;
23752db98b2SMatthias Ringwald #ifdef ENABLE_CLASSIC
23888a03c8dSMatthias Ringwald     conn->request_role = HCI_ROLE_INVALID;
239140c0557SMatthias Ringwald     conn->sniff_subrating_max_latency = 0xffff;
240965a4ccfSMatthias Ringwald     conn->qos_service_type = HCI_SERVICE_TYPE_INVALID;
241e9f98c4aSMatthias Ringwald     conn->link_key_type = INVALID_LINK_KEY;
24291a977e8SMatthias Ringwald     btstack_run_loop_set_timer_handler(&conn->timeout, hci_connection_timeout_handler);
24391a977e8SMatthias Ringwald     btstack_run_loop_set_timer_context(&conn->timeout, conn);
24496a45072S[email protected]     hci_connection_timestamp(conn);
24552db98b2SMatthias Ringwald #endif
24696a45072S[email protected]     conn->acl_recombination_length = 0;
24796a45072S[email protected]     conn->acl_recombination_pos = 0;
248ce41473eSMatthias Ringwald     conn->num_packets_sent = 0;
249760b20efSMatthias Ringwald 
250da886c03S[email protected]     conn->le_con_parameter_update_state = CON_PARAMETER_UPDATE_NONE;
251b90f6e0aSMatthias Ringwald #ifdef ENABLE_BLE
252b90f6e0aSMatthias Ringwald     conn->le_phy_update_all_phys = 0xff;
253b90f6e0aSMatthias Ringwald #endif
2540f3b27c5SMatthias Ringwald #ifdef ENABLE_LE_LIMIT_ACL_FRAGMENT_BY_MAX_OCTETS
2550f3b27c5SMatthias Ringwald     conn->le_max_tx_octets = 27;
2560f3b27c5SMatthias Ringwald #endif
257cb439cf1SMatthias Ringwald #ifdef ENABLE_CLASSIC_PAIRING_OOB
258cb439cf1SMatthias Ringwald     conn->classic_oob_c_192 = NULL;
259cb439cf1SMatthias Ringwald     conn->classic_oob_r_192 = NULL;
260cb439cf1SMatthias Ringwald     conn->classic_oob_c_256 = NULL;
261cb439cf1SMatthias Ringwald     conn->classic_oob_r_256 = NULL;
262cb439cf1SMatthias Ringwald #endif
263aee5d5c1SMatthias Ringwald }
264aee5d5c1SMatthias Ringwald 
265aee5d5c1SMatthias Ringwald /**
266aee5d5c1SMatthias Ringwald  * create connection for given address
267aee5d5c1SMatthias Ringwald  *
268aee5d5c1SMatthias Ringwald  * @return connection OR NULL, if no memory left
269aee5d5c1SMatthias Ringwald  */
270aee5d5c1SMatthias Ringwald static hci_connection_t * create_connection_for_bd_addr_and_type(const bd_addr_t addr, bd_addr_type_t addr_type){
271aee5d5c1SMatthias Ringwald     log_info("create_connection_for_addr %s, type %x", bd_addr_to_str(addr), addr_type);
272aee5d5c1SMatthias Ringwald 
273aee5d5c1SMatthias Ringwald     hci_connection_t * conn = btstack_memory_hci_connection_get();
274aee5d5c1SMatthias Ringwald     if (!conn) return NULL;
275aee5d5c1SMatthias Ringwald     hci_connection_init(conn);
276aee5d5c1SMatthias Ringwald 
277aee5d5c1SMatthias Ringwald     bd_addr_copy(conn->address, addr);
278aee5d5c1SMatthias Ringwald     conn->address_type = addr_type;
279aee5d5c1SMatthias Ringwald     conn->con_handle = HCI_CON_HANDLE_INVALID;
280aee5d5c1SMatthias Ringwald     conn->role = HCI_ROLE_INVALID;
281aee5d5c1SMatthias Ringwald 
282665d90f2SMatthias Ringwald     btstack_linked_list_add(&hci_stack->connections, (btstack_linked_item_t *) conn);
283aee5d5c1SMatthias Ringwald 
28496a45072S[email protected]     return conn;
28596a45072S[email protected] }
28666fb9560S[email protected] 
287da886c03S[email protected] 
288da886c03S[email protected] /**
289da886c03S[email protected]  * get le connection parameter range
290da886c03S[email protected] *
291da886c03S[email protected]  * @return le connection parameter range struct
292da886c03S[email protected]  */
2934ced4e8cSMatthias Ringwald void gap_get_connection_parameter_range(le_connection_parameter_range_t * range){
2944ced4e8cSMatthias Ringwald     *range = hci_stack->le_connection_parameter_range;
295da886c03S[email protected] }
296da886c03S[email protected] 
297da886c03S[email protected] /**
298da886c03S[email protected]  * set le connection parameter range
299da886c03S[email protected]  *
300da886c03S[email protected]  */
301da886c03S[email protected] 
3024ced4e8cSMatthias Ringwald void gap_set_connection_parameter_range(le_connection_parameter_range_t *range){
3034ced4e8cSMatthias Ringwald     hci_stack->le_connection_parameter_range = *range;
304da886c03S[email protected] }
305da886c03S[email protected] 
306da886c03S[email protected] /**
30773cd8a2aSMatthias Ringwald  * @brief Test if connection parameters are inside in existing rage
30873cd8a2aSMatthias Ringwald  * @param conn_interval_min (unit: 1.25ms)
30973cd8a2aSMatthias Ringwald  * @param conn_interval_max (unit: 1.25ms)
31073cd8a2aSMatthias Ringwald  * @param conn_latency
31173cd8a2aSMatthias Ringwald  * @param supervision_timeout (unit: 10ms)
3126b65794dSMilanka Ringwald  * @return 1 if included
31373cd8a2aSMatthias Ringwald  */
31473cd8a2aSMatthias 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){
31573cd8a2aSMatthias Ringwald     if (le_conn_interval_min < existing_range->le_conn_interval_min) return 0;
31673cd8a2aSMatthias Ringwald     if (le_conn_interval_max > existing_range->le_conn_interval_max) return 0;
31773cd8a2aSMatthias Ringwald 
31873cd8a2aSMatthias Ringwald     if (le_conn_latency < existing_range->le_conn_latency_min) return 0;
31973cd8a2aSMatthias Ringwald     if (le_conn_latency > existing_range->le_conn_latency_max) return 0;
32073cd8a2aSMatthias Ringwald 
32173cd8a2aSMatthias Ringwald     if (le_supervision_timeout < existing_range->le_supervision_timeout_min) return 0;
32273cd8a2aSMatthias Ringwald     if (le_supervision_timeout > existing_range->le_supervision_timeout_max) return 0;
32373cd8a2aSMatthias Ringwald 
32473cd8a2aSMatthias Ringwald     return 1;
32573cd8a2aSMatthias Ringwald }
32673cd8a2aSMatthias Ringwald 
32773cd8a2aSMatthias Ringwald /**
3282b6ab3e6SMatthias Ringwald  * @brief Set max number of connections in LE Peripheral role (if Bluetooth Controller supports it)
3292b6ab3e6SMatthias Ringwald  * @note: default: 1
3302b6ab3e6SMatthias Ringwald  * @param max_peripheral_connections
3312b6ab3e6SMatthias Ringwald  */
332d4e4907bSMatthias Ringwald #ifdef ENABLE_LE_PERIPHERAL
3332b6ab3e6SMatthias Ringwald void gap_set_max_number_peripheral_connections(int max_peripheral_connections){
3342b6ab3e6SMatthias Ringwald     hci_stack->le_max_number_peripheral_connections = max_peripheral_connections;
3352b6ab3e6SMatthias Ringwald }
336d4e4907bSMatthias Ringwald #endif
3372b6ab3e6SMatthias Ringwald 
3382b6ab3e6SMatthias Ringwald /**
339da886c03S[email protected]  * get hci connections iterator
340da886c03S[email protected]  *
341da886c03S[email protected]  * @return hci connections iterator
342da886c03S[email protected]  */
343da886c03S[email protected] 
344665d90f2SMatthias Ringwald void hci_connections_get_iterator(btstack_linked_list_iterator_t *it){
345665d90f2SMatthias Ringwald     btstack_linked_list_iterator_init(it, &hci_stack->connections);
346da886c03S[email protected] }
347da886c03S[email protected] 
34897addcc5Smatthias.ringwald /**
349ee091cf1Smatthias.ringwald  * get connection for a given handle
350ee091cf1Smatthias.ringwald  *
351ee091cf1Smatthias.ringwald  * @return connection OR NULL, if not found
352ee091cf1Smatthias.ringwald  */
3535061f3afS[email protected] hci_connection_t * hci_connection_for_handle(hci_con_handle_t con_handle){
354665d90f2SMatthias Ringwald     btstack_linked_list_iterator_t it;
355665d90f2SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->connections);
356665d90f2SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
357665d90f2SMatthias Ringwald         hci_connection_t * item = (hci_connection_t *) btstack_linked_list_iterator_next(&it);
3583ac2fe56S[email protected]         if ( item->con_handle == con_handle ) {
359da886c03S[email protected]             return item;
360ee091cf1Smatthias.ringwald         }
361ee091cf1Smatthias.ringwald     }
362ee091cf1Smatthias.ringwald     return NULL;
363ee091cf1Smatthias.ringwald }
364ee091cf1Smatthias.ringwald 
36596a45072S[email protected] /**
36696a45072S[email protected]  * get connection for given address
36796a45072S[email protected]  *
36896a45072S[email protected]  * @return connection OR NULL, if not found
36996a45072S[email protected]  */
370667ba9d1SMatthias Ringwald hci_connection_t * hci_connection_for_bd_addr_and_type(const bd_addr_t  addr, bd_addr_type_t addr_type){
371665d90f2SMatthias Ringwald     btstack_linked_list_iterator_t it;
372665d90f2SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->connections);
373665d90f2SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
374665d90f2SMatthias Ringwald         hci_connection_t * connection = (hci_connection_t *) btstack_linked_list_iterator_next(&it);
37596a45072S[email protected]         if (connection->address_type != addr_type)  continue;
37696a45072S[email protected]         if (memcmp(addr, connection->address, 6) != 0) continue;
37762bda3fbS[email protected]         return connection;
37862bda3fbS[email protected]     }
37962bda3fbS[email protected]     return NULL;
38062bda3fbS[email protected] }
38162bda3fbS[email protected] 
3823e5e0926SMatthias Ringwald inline static void connectionClearAuthenticationFlags(hci_connection_t * conn, hci_authentication_flags_t flags){
3833e5e0926SMatthias Ringwald     conn->authentication_flags = (hci_authentication_flags_t)(conn->authentication_flags & ~flags);
3843e5e0926SMatthias Ringwald }
38552db98b2SMatthias Ringwald 
386228e430cSMatthias Ringwald inline static void connectionSetAuthenticationFlags(hci_connection_t * conn, hci_authentication_flags_t flags){
387228e430cSMatthias Ringwald     conn->authentication_flags = (hci_authentication_flags_t)(conn->authentication_flags | flags);
388228e430cSMatthias Ringwald }
389228e430cSMatthias Ringwald 
39052db98b2SMatthias Ringwald #ifdef ENABLE_CLASSIC
39152db98b2SMatthias Ringwald 
392ee752bb8SMatthias Ringwald #ifdef ENABLE_SCO_OVER_HCI
393ee752bb8SMatthias Ringwald static int hci_number_sco_connections(void){
394ee752bb8SMatthias Ringwald     int connections = 0;
395ee752bb8SMatthias Ringwald     btstack_linked_list_iterator_t it;
396ee752bb8SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->connections);
397ee752bb8SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
398ee752bb8SMatthias Ringwald         hci_connection_t * connection = (hci_connection_t *) btstack_linked_list_iterator_next(&it);
399ee752bb8SMatthias Ringwald         if (connection->address_type != BD_ADDR_TYPE_SCO) continue;
400ee752bb8SMatthias Ringwald         connections++;
401ee752bb8SMatthias Ringwald     }
402ee752bb8SMatthias Ringwald     return connections;
403ee752bb8SMatthias Ringwald }
404ee752bb8SMatthias Ringwald #endif
405ee752bb8SMatthias Ringwald 
406ec820d77SMatthias Ringwald static void hci_connection_timeout_handler(btstack_timer_source_t *timer){
40791a977e8SMatthias Ringwald     hci_connection_t * connection = (hci_connection_t *) btstack_run_loop_get_timer_context(timer);
408aec7654dSMatthias Ringwald #ifdef HAVE_EMBEDDED_TICK
409528a4a3bSMatthias Ringwald     if (btstack_run_loop_embedded_get_ticks() > connection->timestamp + btstack_run_loop_embedded_ticks_for_ms(HCI_CONNECTION_TIMEOUT_MS)){
410c785ef68Smatthias.ringwald         // connections might be timed out
411c785ef68Smatthias.ringwald         hci_emit_l2cap_check_timeout(connection);
412c785ef68Smatthias.ringwald     }
413f316a845SMatthias Ringwald #else
414c1ab6cc1SMatthias Ringwald     if (btstack_run_loop_get_time_ms() > (connection->timestamp + HCI_CONNECTION_TIMEOUT_MS)){
4155f26aadcSMatthias Ringwald         // connections might be timed out
4165f26aadcSMatthias Ringwald         hci_emit_l2cap_check_timeout(connection);
4175f26aadcSMatthias Ringwald     }
4185f26aadcSMatthias Ringwald #endif
419c785ef68Smatthias.ringwald }
420ee091cf1Smatthias.ringwald 
421ee091cf1Smatthias.ringwald static void hci_connection_timestamp(hci_connection_t *connection){
422aec7654dSMatthias Ringwald #ifdef HAVE_EMBEDDED_TICK
423528a4a3bSMatthias Ringwald     connection->timestamp = btstack_run_loop_embedded_get_ticks();
424f316a845SMatthias Ringwald #else
425528a4a3bSMatthias Ringwald     connection->timestamp = btstack_run_loop_get_time_ms();
4265f26aadcSMatthias Ringwald #endif
427ee091cf1Smatthias.ringwald }
428ee091cf1Smatthias.ringwald 
42943bfb1bdSmatthias.ringwald /**
43080ca58a0Smatthias.ringwald  * add authentication flags and reset timer
43196a45072S[email protected]  * @note: assumes classic connection
4322e77e513S[email protected]  * @note: bd_addr is passed in as litle endian uint8_t * as it is called from parsing packets
4337fde4af9Smatthias.ringwald  */
4347fde4af9Smatthias.ringwald static void hci_add_connection_flags_for_flipped_bd_addr(uint8_t *bd_addr, hci_authentication_flags_t flags){
4357fde4af9Smatthias.ringwald     bd_addr_t addr;
436724d70a2SMatthias Ringwald     reverse_bd_addr(bd_addr, addr);
437f16129ceSMatthias Ringwald     hci_connection_t * conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
4387fde4af9Smatthias.ringwald     if (conn) {
43928ca2b46S[email protected]         connectionSetAuthenticationFlags(conn, flags);
44080ca58a0Smatthias.ringwald         hci_connection_timestamp(conn);
4417fde4af9Smatthias.ringwald     }
4427fde4af9Smatthias.ringwald }
4437fde4af9Smatthias.ringwald 
4441714cbbdSMatthias Ringwald static bool hci_pairing_active(hci_connection_t * hci_connection){
4458daf94bcSMatthias Ringwald     return (hci_connection->authentication_flags & AUTH_FLAG_PAIRING_ACTIVE_MASK) != 0;
4461714cbbdSMatthias Ringwald }
4471714cbbdSMatthias Ringwald 
4481714cbbdSMatthias Ringwald static void hci_pairing_started(hci_connection_t * hci_connection, bool ssp){
4491714cbbdSMatthias Ringwald     if (hci_pairing_active(hci_connection)) return;
4501714cbbdSMatthias Ringwald     if (ssp){
4518daf94bcSMatthias Ringwald         hci_connection->authentication_flags |= AUTH_FLAG_SSP_PAIRING_ACTIVE;
4521714cbbdSMatthias Ringwald     } else {
4538daf94bcSMatthias Ringwald         hci_connection->authentication_flags |= AUTH_FLAG_LEGACY_PAIRING_ACTIVE;
4541714cbbdSMatthias Ringwald     }
4551714cbbdSMatthias Ringwald     // if we are initiator, we have sent an HCI Authenticate Request
4561714cbbdSMatthias Ringwald     bool initiator = (hci_connection->bonding_flags & BONDING_SENT_AUTHENTICATE_REQUEST) != 0;
4571714cbbdSMatthias Ringwald 
4585a561920SMatthias Ringwald     // if we are responder, use minimal service security level as required level
4595a561920SMatthias Ringwald     if (!initiator){
460acadfdd0SMatthias Ringwald         hci_connection->requested_security_level = (gap_security_level_t) btstack_max((uint32_t) hci_connection->requested_security_level, (uint32_t) hci_stack->gap_minimal_service_security_level);
4615a561920SMatthias Ringwald     }
4625a561920SMatthias Ringwald 
4635a561920SMatthias Ringwald     log_info("pairing started, ssp %u, initiator %u, requested level %u", (int) ssp, (int) initiator, hci_connection->requested_security_level);
46477208d90SMatthias Ringwald 
46577208d90SMatthias Ringwald     uint8_t event[12];
46677208d90SMatthias Ringwald     event[0] = GAP_EVENT_PAIRING_STARTED;
46777208d90SMatthias Ringwald     event[1] = 10;
468bfaf6993SMatthias Ringwald     little_endian_store_16(event, 2, (uint16_t) hci_connection->con_handle);
4694159a80bSMatthias Ringwald     reverse_bd_addr(hci_connection->address, &event[4]);
47077208d90SMatthias Ringwald     event[10] = (uint8_t) ssp;
47177208d90SMatthias Ringwald     event[11] = (uint8_t) initiator;
47277208d90SMatthias Ringwald     hci_emit_event(event, sizeof(event), 1);
4731714cbbdSMatthias Ringwald }
4741714cbbdSMatthias Ringwald 
4751714cbbdSMatthias Ringwald static void hci_pairing_complete(hci_connection_t * hci_connection, uint8_t status){
4763c439ac4SMatthias Ringwald     hci_connection->requested_security_level = LEVEL_0;
4771714cbbdSMatthias Ringwald     if (!hci_pairing_active(hci_connection)) return;
4788daf94bcSMatthias Ringwald     hci_connection->authentication_flags &= ~AUTH_FLAG_PAIRING_ACTIVE_MASK;
4791e7371deSMatthias Ringwald #ifdef ENABLE_CLASSIC_PAIRING_OOB
480cb439cf1SMatthias Ringwald     hci_connection->classic_oob_c_192 = NULL;
481cb439cf1SMatthias Ringwald     hci_connection->classic_oob_r_192 = NULL;
482cb439cf1SMatthias Ringwald     hci_connection->classic_oob_c_256 = NULL;
483cb439cf1SMatthias Ringwald     hci_connection->classic_oob_r_256 = NULL;
4841e7371deSMatthias Ringwald #endif
4851714cbbdSMatthias Ringwald     log_info("pairing complete, status %02x", status);
48677208d90SMatthias Ringwald 
4873176c896SMatthias Ringwald     uint8_t event[11];
48877208d90SMatthias Ringwald     event[0] = GAP_EVENT_PAIRING_COMPLETE;
48977208d90SMatthias Ringwald     event[1] = 9;
490bfaf6993SMatthias Ringwald     little_endian_store_16(event, 2, (uint16_t) hci_connection->con_handle);
4914159a80bSMatthias Ringwald     reverse_bd_addr(hci_connection->address, &event[4]);
49277208d90SMatthias Ringwald     event[10] = status;
49377208d90SMatthias Ringwald     hci_emit_event(event, sizeof(event), 1);
4941714cbbdSMatthias Ringwald }
4951714cbbdSMatthias Ringwald 
49620dcdd22SMatthias Ringwald bool hci_authentication_active_for_handle(hci_con_handle_t handle){
4975061f3afS[email protected]     hci_connection_t * conn = hci_connection_for_handle(handle);
49820dcdd22SMatthias Ringwald     if (!conn) return false;
49920dcdd22SMatthias Ringwald     return hci_pairing_active(conn);
50080ca58a0Smatthias.ringwald }
50180ca58a0Smatthias.ringwald 
50215a95bd5SMatthias Ringwald void gap_drop_link_key_for_bd_addr(bd_addr_t addr){
50355597469SMatthias Ringwald     if (!hci_stack->link_key_db) return;
5042bacf595SMatthias Ringwald     log_info("gap_drop_link_key_for_bd_addr: %s", bd_addr_to_str(addr));
505a98592bcSMatthias Ringwald     hci_stack->link_key_db->delete_link_key(addr);
506c12e46e7Smatthias.ringwald }
50755597469SMatthias Ringwald 
50855597469SMatthias Ringwald void gap_store_link_key_for_bd_addr(bd_addr_t addr, link_key_t link_key, link_key_type_t type){
50955597469SMatthias Ringwald     if (!hci_stack->link_key_db) return;
5102bacf595SMatthias Ringwald     log_info("gap_store_link_key_for_bd_addr: %s, type %u", bd_addr_to_str(addr), type);
51155597469SMatthias Ringwald     hci_stack->link_key_db->put_link_key(addr, link_key, type);
512c12e46e7Smatthias.ringwald }
5131b6fb31bSMatthias Ringwald 
514e8ad470fSMatthias Ringwald bool gap_get_link_key_for_bd_addr(bd_addr_t addr, link_key_t link_key, link_key_type_t * type){
515e8ad470fSMatthias Ringwald 	if (!hci_stack->link_key_db) return false;
51676b0318eSMatthias Ringwald 	int result = hci_stack->link_key_db->get_link_key(addr, link_key, type) != 0;
51776b0318eSMatthias Ringwald 	log_info("link key for %s available %u, type %u", bd_addr_to_str(addr), result, (int) *type);
51876b0318eSMatthias Ringwald 	return result;
519e8ad470fSMatthias Ringwald }
520e8ad470fSMatthias Ringwald 
521ceecb9d9SMatthias Ringwald void gap_delete_all_link_keys(void){
522ceecb9d9SMatthias Ringwald     bd_addr_t  addr;
523ceecb9d9SMatthias Ringwald     link_key_t link_key;
524ceecb9d9SMatthias Ringwald     link_key_type_t type;
525ceecb9d9SMatthias Ringwald     btstack_link_key_iterator_t it;
526ceecb9d9SMatthias Ringwald     int ok = gap_link_key_iterator_init(&it);
527ceecb9d9SMatthias Ringwald     if (!ok) {
528ceecb9d9SMatthias Ringwald         log_error("could not initialize iterator");
529ceecb9d9SMatthias Ringwald         return;
530ceecb9d9SMatthias Ringwald     }
531ceecb9d9SMatthias Ringwald     while (gap_link_key_iterator_get_next(&it, addr, link_key, &type)){
532ceecb9d9SMatthias Ringwald         gap_drop_link_key_for_bd_addr(addr);
533ceecb9d9SMatthias Ringwald     }
534ceecb9d9SMatthias Ringwald     gap_link_key_iterator_done(&it);
535ceecb9d9SMatthias Ringwald }
536ceecb9d9SMatthias Ringwald 
5371b6fb31bSMatthias Ringwald int gap_link_key_iterator_init(btstack_link_key_iterator_t * it){
5381b6fb31bSMatthias Ringwald     if (!hci_stack->link_key_db) return 0;
5391b6fb31bSMatthias Ringwald     if (!hci_stack->link_key_db->iterator_init) return 0;
5401b6fb31bSMatthias Ringwald     return hci_stack->link_key_db->iterator_init(it);
5411b6fb31bSMatthias Ringwald }
5421b6fb31bSMatthias 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){
5431b6fb31bSMatthias Ringwald     if (!hci_stack->link_key_db) return 0;
5441b6fb31bSMatthias Ringwald     return hci_stack->link_key_db->iterator_get_next(it, bd_addr, link_key, type);
5451b6fb31bSMatthias Ringwald }
5461b6fb31bSMatthias Ringwald void gap_link_key_iterator_done(btstack_link_key_iterator_t * it){
5471b6fb31bSMatthias Ringwald     if (!hci_stack->link_key_db) return;
5481b6fb31bSMatthias Ringwald     hci_stack->link_key_db->iterator_done(it);
5491b6fb31bSMatthias Ringwald }
55035454696SMatthias Ringwald #endif
551c12e46e7Smatthias.ringwald 
552eb8076ddSMatthias Ringwald static bool hci_is_le_connection_type(bd_addr_type_t address_type){
553eb8076ddSMatthias Ringwald     switch (address_type){
554ce41473eSMatthias Ringwald         case BD_ADDR_TYPE_LE_PUBLIC:
555ce41473eSMatthias Ringwald         case BD_ADDR_TYPE_LE_RANDOM:
556ce41473eSMatthias Ringwald         case BD_ADDR_TYPE_LE_PRIVAT_FALLBACK_PUBLIC:
557ce41473eSMatthias Ringwald         case BD_ADDR_TYPE_LE_PRIVAT_FALLBACK_RANDOM:
558eb8076ddSMatthias Ringwald             return true;
559ce41473eSMatthias Ringwald         default:
560eb8076ddSMatthias Ringwald             return false;
561ce41473eSMatthias Ringwald     }
5620bf6344aS[email protected] }
5630bf6344aS[email protected] 
564eb8076ddSMatthias Ringwald static int hci_is_le_connection(hci_connection_t * connection){
565eb8076ddSMatthias Ringwald     return hci_is_le_connection_type(connection->address_type);
566eb8076ddSMatthias Ringwald }
567eb8076ddSMatthias Ringwald 
5687fde4af9Smatthias.ringwald /**
56943bfb1bdSmatthias.ringwald  * count connections
57043bfb1bdSmatthias.ringwald  */
57140d1c7a4Smatthias.ringwald static int nr_hci_connections(void){
57256c253c9Smatthias.ringwald     int count = 0;
573665d90f2SMatthias Ringwald     btstack_linked_item_t *it;
574a0da043fSMatthias Ringwald     for (it = (btstack_linked_item_t *) hci_stack->connections; it != NULL ; it = it->next){
57515a27967SMatthias Ringwald         count++;
57615a27967SMatthias Ringwald     }
57743bfb1bdSmatthias.ringwald     return count;
57843bfb1bdSmatthias.ringwald }
579c8e4258aSmatthias.ringwald 
5808f733c6fSMatthias Ringwald uint16_t hci_number_free_acl_slots_for_connection_type(bd_addr_type_t address_type){
581ee303eddS[email protected] 
582f04a0c31SMatthias Ringwald     unsigned int num_packets_sent_classic = 0;
583f04a0c31SMatthias Ringwald     unsigned int num_packets_sent_le = 0;
584ee303eddS[email protected] 
585665d90f2SMatthias Ringwald     btstack_linked_item_t *it;
586a0da043fSMatthias Ringwald     for (it = (btstack_linked_item_t *) hci_stack->connections; it != NULL; it = it->next){
587998906cdSmatthias.ringwald         hci_connection_t * connection = (hci_connection_t *) it;
588ce41473eSMatthias Ringwald         if (hci_is_le_connection(connection)){
589ce41473eSMatthias Ringwald             num_packets_sent_le += connection->num_packets_sent;
590ce41473eSMatthias Ringwald         }
591f16129ceSMatthias Ringwald         if (connection->address_type == BD_ADDR_TYPE_ACL){
592ce41473eSMatthias Ringwald             num_packets_sent_classic += connection->num_packets_sent;
593ee303eddS[email protected]         }
594ee303eddS[email protected]     }
595d999b54eSMatthias Ringwald     log_debug("ACL classic buffers: %u used of %u", num_packets_sent_classic, hci_stack->acl_packets_total_num);
596ee303eddS[email protected]     int free_slots_classic = hci_stack->acl_packets_total_num - num_packets_sent_classic;
597ee303eddS[email protected]     int free_slots_le = 0;
598ee303eddS[email protected] 
599ee303eddS[email protected]     if (free_slots_classic < 0){
6009da54300S[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);
601998906cdSmatthias.ringwald         return 0;
602998906cdSmatthias.ringwald     }
603ee303eddS[email protected] 
604ee303eddS[email protected]     if (hci_stack->le_acl_packets_total_num){
605ee303eddS[email protected]         // if we have LE slots, they are used
606ee303eddS[email protected]         free_slots_le = hci_stack->le_acl_packets_total_num - num_packets_sent_le;
607ee303eddS[email protected]         if (free_slots_le < 0){
6089da54300S[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);
609ee303eddS[email protected]             return 0;
610998906cdSmatthias.ringwald         }
611ee303eddS[email protected]     } else {
612ee303eddS[email protected]         // otherwise, classic slots are used for LE, too
613ee303eddS[email protected]         free_slots_classic -= num_packets_sent_le;
614ee303eddS[email protected]         if (free_slots_classic < 0){
6159da54300S[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);
616ee303eddS[email protected]             return 0;
617ee303eddS[email protected]         }
618ee303eddS[email protected]     }
619ee303eddS[email protected] 
620ee303eddS[email protected]     switch (address_type){
621ee303eddS[email protected]         case BD_ADDR_TYPE_UNKNOWN:
6222125de09SMatthias Ringwald             log_error("hci_number_free_acl_slots: unknown address type");
623ee303eddS[email protected]             return 0;
624ee303eddS[email protected] 
625f16129ceSMatthias Ringwald         case BD_ADDR_TYPE_ACL:
6268f733c6fSMatthias Ringwald             return (uint16_t) free_slots_classic;
627ee303eddS[email protected] 
628ee303eddS[email protected]         default:
6298f733c6fSMatthias Ringwald            if (hci_stack->le_acl_packets_total_num > 0){
6308f733c6fSMatthias Ringwald                return (uint16_t) free_slots_le;
631ee303eddS[email protected]            }
6328f733c6fSMatthias Ringwald            return (uint16_t) free_slots_classic;
633cb00d3aaS[email protected]     }
634998906cdSmatthias.ringwald }
635998906cdSmatthias.ringwald 
6362125de09SMatthias Ringwald int hci_number_free_acl_slots_for_handle(hci_con_handle_t con_handle){
6372125de09SMatthias Ringwald     // get connection type
6382125de09SMatthias Ringwald     hci_connection_t * connection = hci_connection_for_handle(con_handle);
6392125de09SMatthias Ringwald     if (!connection){
6402125de09SMatthias Ringwald         log_error("hci_number_free_acl_slots: handle 0x%04x not in connection list", con_handle);
6412125de09SMatthias Ringwald         return 0;
6422125de09SMatthias Ringwald     }
6432125de09SMatthias Ringwald     return hci_number_free_acl_slots_for_connection_type(connection->address_type);
6442125de09SMatthias Ringwald }
6452125de09SMatthias Ringwald 
64635454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
647701e3307SMatthias Ringwald static int hci_number_free_sco_slots(void){
648f04a0c31SMatthias Ringwald     unsigned int num_sco_packets_sent  = 0;
649665d90f2SMatthias Ringwald     btstack_linked_item_t *it;
650760b20efSMatthias Ringwald     if (hci_stack->synchronous_flow_control_enabled){
651760b20efSMatthias Ringwald         // explicit flow control
652665d90f2SMatthias Ringwald         for (it = (btstack_linked_item_t *) hci_stack->connections; it ; it = it->next){
653e35edcc1S[email protected]             hci_connection_t * connection = (hci_connection_t *) it;
654ce41473eSMatthias Ringwald             if (connection->address_type != BD_ADDR_TYPE_SCO) continue;
655ce41473eSMatthias Ringwald             num_sco_packets_sent += connection->num_packets_sent;
656e35edcc1S[email protected]         }
657e35edcc1S[email protected]         if (num_sco_packets_sent > hci_stack->sco_packets_total_num){
658701e3307SMatthias Ringwald             log_info("hci_number_free_sco_slots:packets (%u) > total packets (%u)", num_sco_packets_sent, hci_stack->sco_packets_total_num);
65944d0e3d5S[email protected]             return 0;
66044d0e3d5S[email protected]         }
661e35edcc1S[email protected]         return hci_stack->sco_packets_total_num - num_sco_packets_sent;
66249205f5dSMatthias Ringwald     } else {
66349205f5dSMatthias Ringwald         // implicit flow control -- TODO
6646f28d2eeSMatthias Ringwald         int num_ready = 0;
6656f28d2eeSMatthias Ringwald         for (it = (btstack_linked_item_t *) hci_stack->connections; it ; it = it->next){
6666f28d2eeSMatthias Ringwald             hci_connection_t * connection = (hci_connection_t *) it;
6676f28d2eeSMatthias Ringwald             if (connection->address_type != BD_ADDR_TYPE_SCO) continue;
6686f28d2eeSMatthias Ringwald             if (connection->sco_tx_ready == 0) continue;
6696f28d2eeSMatthias Ringwald             num_ready++;
67049205f5dSMatthias Ringwald         }
6716f28d2eeSMatthias Ringwald         return num_ready;
6726f28d2eeSMatthias Ringwald     }
673e35edcc1S[email protected] }
67435454696SMatthias Ringwald #endif
67544d0e3d5S[email protected] 
6762b838201SMatthias Ringwald // only used to send HCI Host Number Completed Packets
6772b838201SMatthias Ringwald static int hci_can_send_comand_packet_transport(void){
678ac928cc2S[email protected]     if (hci_stack->hci_packet_buffer_reserved) return 0;
679ac928cc2S[email protected] 
680ac928cc2S[email protected]     // check for async hci transport implementations
681ac928cc2S[email protected]     if (hci_stack->hci_transport->can_send_packet_now){
682ac928cc2S[email protected]         if (!hci_stack->hci_transport->can_send_packet_now(HCI_COMMAND_DATA_PACKET)){
683ac928cc2S[email protected]             return 0;
684ac928cc2S[email protected]         }
685ac928cc2S[email protected]     }
6862b838201SMatthias Ringwald     return 1;
6872b838201SMatthias Ringwald }
688ac928cc2S[email protected] 
6892b838201SMatthias Ringwald // new functions replacing hci_can_send_packet_now[_using_packet_buffer]
6901972f31fSMatthias Ringwald bool hci_can_send_command_packet_now(void){
6911972f31fSMatthias Ringwald     if (hci_can_send_comand_packet_transport() == 0) return false;
6924ea43905SMatthias Ringwald     return hci_stack->num_cmd_packets > 0u;
693ac928cc2S[email protected] }
694ac928cc2S[email protected] 
6959d04d3a7SMatthias Ringwald static int hci_transport_can_send_prepared_packet_now(uint8_t packet_type){
696ac928cc2S[email protected]     // check for async hci transport implementations
6971972f31fSMatthias Ringwald     if (!hci_stack->hci_transport->can_send_packet_now) return true;
6989d04d3a7SMatthias Ringwald     return hci_stack->hci_transport->can_send_packet_now(packet_type);
699ac928cc2S[email protected] }
7009d04d3a7SMatthias Ringwald 
7011972f31fSMatthias Ringwald static bool hci_can_send_prepared_acl_packet_for_address_type(bd_addr_type_t address_type){
7021972f31fSMatthias Ringwald     if (!hci_transport_can_send_prepared_packet_now(HCI_ACL_DATA_PACKET)) return false;
7039d04d3a7SMatthias Ringwald     return hci_number_free_acl_slots_for_connection_type(address_type) > 0;
704ac928cc2S[email protected] }
7059d04d3a7SMatthias Ringwald 
7061972f31fSMatthias Ringwald bool hci_can_send_acl_le_packet_now(void){
7071972f31fSMatthias Ringwald     if (hci_stack->hci_packet_buffer_reserved) return false;
7089d04d3a7SMatthias Ringwald     return hci_can_send_prepared_acl_packet_for_address_type(BD_ADDR_TYPE_LE_PUBLIC);
7099d04d3a7SMatthias Ringwald }
7109d04d3a7SMatthias Ringwald 
7111972f31fSMatthias Ringwald bool hci_can_send_prepared_acl_packet_now(hci_con_handle_t con_handle) {
7121972f31fSMatthias Ringwald     if (!hci_transport_can_send_prepared_packet_now(HCI_ACL_DATA_PACKET)) return false;
713e79abdd6S[email protected]     return hci_number_free_acl_slots_for_handle(con_handle) > 0;
714ac928cc2S[email protected] }
715ac928cc2S[email protected] 
7161972f31fSMatthias Ringwald bool hci_can_send_acl_packet_now(hci_con_handle_t con_handle){
7171972f31fSMatthias Ringwald     if (hci_stack->hci_packet_buffer_reserved) return false;
718ac928cc2S[email protected]     return hci_can_send_prepared_acl_packet_now(con_handle);
7196b4af23dS[email protected] }
7206b4af23dS[email protected] 
72135454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
7221972f31fSMatthias Ringwald bool hci_can_send_acl_classic_packet_now(void){
7231972f31fSMatthias Ringwald     if (hci_stack->hci_packet_buffer_reserved) return false;
724f16129ceSMatthias Ringwald     return hci_can_send_prepared_acl_packet_for_address_type(BD_ADDR_TYPE_ACL);
72535454696SMatthias Ringwald }
72635454696SMatthias Ringwald 
7271972f31fSMatthias Ringwald bool hci_can_send_prepared_sco_packet_now(void){
7281972f31fSMatthias Ringwald     if (!hci_transport_can_send_prepared_packet_now(HCI_SCO_DATA_PACKET)) return false;
729f234b250SMatthias Ringwald     if (hci_have_usb_transport()){
730f234b250SMatthias Ringwald         return hci_stack->sco_can_send_now;
731f234b250SMatthias Ringwald     } else {
732701e3307SMatthias Ringwald         return hci_number_free_sco_slots() > 0;
73344d0e3d5S[email protected]     }
734f234b250SMatthias Ringwald }
73544d0e3d5S[email protected] 
7361972f31fSMatthias Ringwald bool hci_can_send_sco_packet_now(void){
7371972f31fSMatthias Ringwald     if (hci_stack->hci_packet_buffer_reserved) return false;
738701e3307SMatthias Ringwald     return hci_can_send_prepared_sco_packet_now();
73944d0e3d5S[email protected] }
74044d0e3d5S[email protected] 
741d057580eSMatthias Ringwald void hci_request_sco_can_send_now_event(void){
742d057580eSMatthias Ringwald     hci_stack->sco_waiting_for_can_send_now = 1;
743d057580eSMatthias Ringwald     hci_notify_if_sco_can_send_now();
744d057580eSMatthias Ringwald }
74535454696SMatthias Ringwald #endif
746d057580eSMatthias Ringwald 
74795d71764SMatthias Ringwald // used for internal checks in l2cap.c
74802c7fc01SMatthias Ringwald bool hci_is_packet_buffer_reserved(void){
749c8b9416aS[email protected]     return hci_stack->hci_packet_buffer_reserved;
750c8b9416aS[email protected] }
751c8b9416aS[email protected] 
7526b65794dSMilanka Ringwald // reserves outgoing packet buffer.
7536b65794dSMilanka Ringwald // @return 1 if successful
754cafc12e8SMatthias Ringwald bool hci_reserve_packet_buffer(void){
7559d14b626S[email protected]     if (hci_stack->hci_packet_buffer_reserved) {
7569d14b626S[email protected]         log_error("hci_reserve_packet_buffer called but buffer already reserved");
757cafc12e8SMatthias Ringwald         return false;
7589d14b626S[email protected]     }
75902c7fc01SMatthias Ringwald     hci_stack->hci_packet_buffer_reserved = true;
760cafc12e8SMatthias Ringwald     return true;
7616b4af23dS[email protected] }
7626b4af23dS[email protected] 
76368a0fcf7S[email protected] void hci_release_packet_buffer(void){
76402c7fc01SMatthias Ringwald     hci_stack->hci_packet_buffer_reserved = false;
76568a0fcf7S[email protected] }
76668a0fcf7S[email protected] 
7676b4af23dS[email protected] // assumption: synchronous implementations don't provide can_send_packet_now as they don't keep the buffer after the call
7687f02f414SMatthias Ringwald static int hci_transport_synchronous(void){
7696b4af23dS[email protected]     return hci_stack->hci_transport->can_send_packet_now == NULL;
7706b4af23dS[email protected] }
7716b4af23dS[email protected] 
7723e2050f7SMatthias Ringwald static uint8_t hci_send_acl_packet_fragments(hci_connection_t *connection){
773452cf3bbS[email protected] 
774452cf3bbS[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);
775452cf3bbS[email protected] 
776452cf3bbS[email protected]     // max ACL data packet length depends on connection type (LE vs. Classic) and available buffers
777452cf3bbS[email protected]     uint16_t max_acl_data_packet_length = hci_stack->acl_data_packet_length;
7784ea43905SMatthias Ringwald     if (hci_is_le_connection(connection) && (hci_stack->le_data_packets_length > 0u)){
779452cf3bbS[email protected]         max_acl_data_packet_length = hci_stack->le_data_packets_length;
780452cf3bbS[email protected]     }
781452cf3bbS[email protected] 
7820f3b27c5SMatthias Ringwald #ifdef ENABLE_LE_LIMIT_ACL_FRAGMENT_BY_MAX_OCTETS
783fcf88f47SMatthias Ringwald     if (hci_is_le_connection(connection) && (connection->le_max_tx_octets < max_acl_data_packet_length)){
7840f3b27c5SMatthias Ringwald         max_acl_data_packet_length = connection->le_max_tx_octets;
7850f3b27c5SMatthias Ringwald     }
7860f3b27c5SMatthias Ringwald #endif
787452cf3bbS[email protected] 
788d999b54eSMatthias Ringwald     log_debug("hci_send_acl_packet_fragments entered");
789d999b54eSMatthias Ringwald 
7903e2050f7SMatthias Ringwald     uint8_t status = ERROR_CODE_SUCCESS;
791452cf3bbS[email protected]     // multiple packets could be send on a synchronous HCI transport
792ff3cc4a5SMatthias Ringwald     while (true){
793452cf3bbS[email protected] 
794d999b54eSMatthias Ringwald         log_debug("hci_send_acl_packet_fragments loop entered");
795d999b54eSMatthias Ringwald 
796452cf3bbS[email protected]         // get current data
7974ea43905SMatthias Ringwald         const uint16_t acl_header_pos = hci_stack->acl_fragmentation_pos - 4u;
798452cf3bbS[email protected]         int current_acl_data_packet_length = hci_stack->acl_fragmentation_total_size - hci_stack->acl_fragmentation_pos;
7991979f09cSMatthias Ringwald         bool more_fragments = false;
800452cf3bbS[email protected] 
801452cf3bbS[email protected]         // if ACL packet is larger than Bluetooth packet buffer, only send max_acl_data_packet_length
802452cf3bbS[email protected]         if (current_acl_data_packet_length > max_acl_data_packet_length){
8031979f09cSMatthias Ringwald             more_fragments = true;
804452cf3bbS[email protected]             current_acl_data_packet_length = max_acl_data_packet_length;
805452cf3bbS[email protected]         }
806452cf3bbS[email protected] 
807452cf3bbS[email protected]         // copy handle_and_flags if not first fragment and update packet boundary flags to be 01 (continuing fragmnent)
8084ea43905SMatthias Ringwald         if (acl_header_pos > 0u){
809f8fbdce0SMatthias Ringwald             uint16_t handle_and_flags = little_endian_read_16(hci_stack->hci_packet_buffer, 0);
8104ea43905SMatthias Ringwald             handle_and_flags = (handle_and_flags & 0xcfffu) | (1u << 12u);
811f8fbdce0SMatthias Ringwald             little_endian_store_16(hci_stack->hci_packet_buffer, acl_header_pos, handle_and_flags);
812452cf3bbS[email protected]         }
813452cf3bbS[email protected] 
814452cf3bbS[email protected]         // update header len
8154ea43905SMatthias Ringwald         little_endian_store_16(hci_stack->hci_packet_buffer, acl_header_pos + 2u, current_acl_data_packet_length);
816452cf3bbS[email protected] 
817452cf3bbS[email protected]         // count packet
818ce41473eSMatthias Ringwald         connection->num_packets_sent++;
8191979f09cSMatthias Ringwald         log_debug("hci_send_acl_packet_fragments loop before send (more fragments %d)", (int) more_fragments);
820d999b54eSMatthias Ringwald 
821d999b54eSMatthias Ringwald         // update state for next fragment (if any) as "transport done" might be sent during send_packet already
822d999b54eSMatthias Ringwald         if (more_fragments){
823d999b54eSMatthias Ringwald             // update start of next fragment to send
824d999b54eSMatthias Ringwald             hci_stack->acl_fragmentation_pos += current_acl_data_packet_length;
825d999b54eSMatthias Ringwald         } else {
826d999b54eSMatthias Ringwald             // done
827d999b54eSMatthias Ringwald             hci_stack->acl_fragmentation_pos = 0;
828d999b54eSMatthias Ringwald             hci_stack->acl_fragmentation_total_size = 0;
829d999b54eSMatthias Ringwald         }
830452cf3bbS[email protected] 
831452cf3bbS[email protected]         // send packet
832452cf3bbS[email protected]         uint8_t * packet = &hci_stack->hci_packet_buffer[acl_header_pos];
833452cf3bbS[email protected]         const int size = current_acl_data_packet_length + 4;
8345bb5bc3eS[email protected]         hci_dump_packet(HCI_ACL_DATA_PACKET, 0, packet, size);
83581d2bdb2SMatthias Ringwald         hci_stack->acl_fragmentation_tx_active = 1;
8363e2050f7SMatthias Ringwald         int err = hci_stack->hci_transport->send_packet(HCI_ACL_DATA_PACKET, packet, size);
8373e2050f7SMatthias Ringwald         if (err != 0){
8383e2050f7SMatthias Ringwald             // no error from HCI Transport expected
8393e2050f7SMatthias Ringwald             status = ERROR_CODE_HARDWARE_FAILURE;
8403e2050f7SMatthias Ringwald         }
841452cf3bbS[email protected] 
8421979f09cSMatthias Ringwald         log_debug("hci_send_acl_packet_fragments loop after send (more fragments %d)", (int) more_fragments);
843d999b54eSMatthias Ringwald 
844452cf3bbS[email protected]         // done yet?
845452cf3bbS[email protected]         if (!more_fragments) break;
846452cf3bbS[email protected] 
847452cf3bbS[email protected]         // can send more?
8483e2050f7SMatthias Ringwald         if (!hci_can_send_prepared_acl_packet_now(connection->con_handle)) return status;
849452cf3bbS[email protected]     }
850452cf3bbS[email protected] 
851d999b54eSMatthias Ringwald     log_debug("hci_send_acl_packet_fragments loop over");
852452cf3bbS[email protected] 
853d051460cS[email protected]     // release buffer now for synchronous transport
854203bace6S[email protected]     if (hci_transport_synchronous()){
85581d2bdb2SMatthias Ringwald         hci_stack->acl_fragmentation_tx_active = 0;
856452cf3bbS[email protected]         hci_release_packet_buffer();
857fd43c0e0SMatthias Ringwald         hci_emit_transport_packet_sent();
858452cf3bbS[email protected]     }
859452cf3bbS[email protected] 
8603e2050f7SMatthias Ringwald     return status;
861452cf3bbS[email protected] }
862452cf3bbS[email protected] 
863826f7347S[email protected] // pre: caller has reserved the packet buffer
8643e2050f7SMatthias Ringwald uint8_t hci_send_acl_packet_buffer(int size){
8653e2050f7SMatthias Ringwald     btstack_assert(hci_stack->hci_packet_buffer_reserved);
866826f7347S[email protected] 
867d713a683S[email protected]     uint8_t * packet = hci_stack->hci_packet_buffer;
868d713a683S[email protected]     hci_con_handle_t con_handle = READ_ACL_CONNECTION_HANDLE(packet);
869d713a683S[email protected] 
870826f7347S[email protected]     // check for free places on Bluetooth module
871d713a683S[email protected]     if (!hci_can_send_prepared_acl_packet_now(con_handle)) {
872826f7347S[email protected]         log_error("hci_send_acl_packet_buffer called but no free ACL buffers on controller");
87397b61c7bS[email protected]         hci_release_packet_buffer();
874068b8592SMatthias Ringwald         hci_emit_transport_packet_sent();
87597b61c7bS[email protected]         return BTSTACK_ACL_BUFFERS_FULL;
87697b61c7bS[email protected]     }
8776218e6f1Smatthias.ringwald 
8785061f3afS[email protected]     hci_connection_t *connection = hci_connection_for_handle( con_handle);
87997b61c7bS[email protected]     if (!connection) {
8805fa0b7cfS[email protected]         log_error("hci_send_acl_packet_buffer called but no connection for handle 0x%04x", con_handle);
88197b61c7bS[email protected]         hci_release_packet_buffer();
882068b8592SMatthias Ringwald         hci_emit_transport_packet_sent();
8833e2050f7SMatthias Ringwald         return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
88497b61c7bS[email protected]     }
88552db98b2SMatthias Ringwald 
88652db98b2SMatthias Ringwald #ifdef ENABLE_CLASSIC
88756cf178bSmatthias.ringwald     hci_connection_timestamp(connection);
88852db98b2SMatthias Ringwald #endif
88956cf178bSmatthias.ringwald 
890452cf3bbS[email protected]     // hci_dump_packet( HCI_ACL_DATA_PACKET, 0, packet, size);
8917856c818Smatthias.ringwald 
892452cf3bbS[email protected]     // setup data
893452cf3bbS[email protected]     hci_stack->acl_fragmentation_total_size = size;
894452cf3bbS[email protected]     hci_stack->acl_fragmentation_pos = 4;   // start of L2CAP packet
8956218e6f1Smatthias.ringwald 
896452cf3bbS[email protected]     return hci_send_acl_packet_fragments(connection);
897ee091cf1Smatthias.ringwald }
898ee091cf1Smatthias.ringwald 
89935454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
90044d0e3d5S[email protected] // pre: caller has reserved the packet buffer
9013e2050f7SMatthias Ringwald uint8_t hci_send_sco_packet_buffer(int size){
9023e2050f7SMatthias Ringwald     btstack_assert(hci_stack->hci_packet_buffer_reserved);
90344d0e3d5S[email protected] 
90444d0e3d5S[email protected]     uint8_t * packet = hci_stack->hci_packet_buffer;
9054b3e1e19SMatthias Ringwald 
9064b3e1e19SMatthias Ringwald     // skip checks in loopback mode
9074b3e1e19SMatthias Ringwald     if (!hci_stack->loopback_mode){
90844d0e3d5S[email protected]         hci_con_handle_t con_handle = READ_ACL_CONNECTION_HANDLE(packet);   // same for ACL and SCO
90944d0e3d5S[email protected] 
91044d0e3d5S[email protected]         // check for free places on Bluetooth module
911701e3307SMatthias Ringwald         if (!hci_can_send_prepared_sco_packet_now()) {
912cbf638a9SMatthias Ringwald             log_error("hci_send_sco_packet_buffer called but no free SCO buffers on controller");
91344d0e3d5S[email protected]             hci_release_packet_buffer();
914068b8592SMatthias Ringwald             hci_emit_transport_packet_sent();
91544d0e3d5S[email protected]             return BTSTACK_ACL_BUFFERS_FULL;
91644d0e3d5S[email protected]         }
91744d0e3d5S[email protected] 
918e35edcc1S[email protected]         // track send packet in connection struct
919e35edcc1S[email protected]         hci_connection_t *connection = hci_connection_for_handle( con_handle);
920e35edcc1S[email protected]         if (!connection) {
921e35edcc1S[email protected]             log_error("hci_send_sco_packet_buffer called but no connection for handle 0x%04x", con_handle);
922e35edcc1S[email protected]             hci_release_packet_buffer();
923068b8592SMatthias Ringwald             hci_emit_transport_packet_sent();
9243e2050f7SMatthias Ringwald             return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
925e35edcc1S[email protected]         }
926f234b250SMatthias Ringwald 
927f234b250SMatthias Ringwald         if (hci_have_usb_transport()){
928f234b250SMatthias Ringwald             // token used
9291972f31fSMatthias Ringwald             hci_stack->sco_can_send_now = false;
930f234b250SMatthias Ringwald         } else {
931760b20efSMatthias Ringwald             if (hci_stack->synchronous_flow_control_enabled){
932ce41473eSMatthias Ringwald                 connection->num_packets_sent++;
9336f28d2eeSMatthias Ringwald             } else {
934e4157653SMatthias Ringwald                 connection->sco_tx_ready--;
935760b20efSMatthias Ringwald             }
9364b3e1e19SMatthias Ringwald         }
937f234b250SMatthias Ringwald     }
93844d0e3d5S[email protected] 
93944d0e3d5S[email protected]     hci_dump_packet( HCI_SCO_DATA_PACKET, 0, packet, size);
940543e835cSMatthias Ringwald 
94143149fc9SMatthias Ringwald #ifdef HAVE_SCO_TRANSPORT
94243149fc9SMatthias Ringwald     hci_stack->sco_transport->send_packet(packet, size);
94343149fc9SMatthias Ringwald     hci_release_packet_buffer();
94443149fc9SMatthias Ringwald     hci_emit_transport_packet_sent();
94543149fc9SMatthias Ringwald 
94643149fc9SMatthias Ringwald     return 0;
94743149fc9SMatthias Ringwald #else
94843149fc9SMatthias Ringwald     int err = hci_stack->hci_transport->send_packet(HCI_SCO_DATA_PACKET, packet, size);
949543e835cSMatthias Ringwald     if (hci_transport_synchronous()){
950543e835cSMatthias Ringwald         hci_release_packet_buffer();
951fd43c0e0SMatthias Ringwald         hci_emit_transport_packet_sent();
952543e835cSMatthias Ringwald     }
953543e835cSMatthias Ringwald 
9543e2050f7SMatthias Ringwald     if (err != 0){
9553e2050f7SMatthias Ringwald         return ERROR_CODE_HARDWARE_FAILURE;
9563e2050f7SMatthias Ringwald     }
9573e2050f7SMatthias Ringwald     return ERROR_CODE_SUCCESS;
95843149fc9SMatthias Ringwald #endif
95944d0e3d5S[email protected] }
96035454696SMatthias Ringwald #endif
96144d0e3d5S[email protected] 
962c3b46f5aSMatthias Ringwald static void acl_handler(uint8_t *packet, uint16_t size){
963e76a89eeS[email protected] 
9647856c818Smatthias.ringwald     // get info
9657856c818Smatthias.ringwald     hci_con_handle_t con_handle = READ_ACL_CONNECTION_HANDLE(packet);
9665061f3afS[email protected]     hci_connection_t *conn      = hci_connection_for_handle(con_handle);
9677856c818Smatthias.ringwald     uint8_t  acl_flags          = READ_ACL_FLAGS(packet);
9687856c818Smatthias.ringwald     uint16_t acl_length         = READ_ACL_LENGTH(packet);
9697856c818Smatthias.ringwald 
9707856c818Smatthias.ringwald     // ignore non-registered handle
9717856c818Smatthias.ringwald     if (!conn){
972c3b46f5aSMatthias Ringwald         log_error("acl_handler called with non-registered handle %u!" , con_handle);
9737856c818Smatthias.ringwald         return;
9747856c818Smatthias.ringwald     }
9757856c818Smatthias.ringwald 
976e76a89eeS[email protected]     // assert packet is complete
9774ea43905SMatthias Ringwald     if ((acl_length + 4u) != size){
978c3b46f5aSMatthias Ringwald         log_error("acl_handler called with ACL packet of wrong size %d, expected %u => dropping packet", size, acl_length + 4);
979e76a89eeS[email protected]         return;
980e76a89eeS[email protected]     }
981e76a89eeS[email protected] 
98252db98b2SMatthias Ringwald #ifdef ENABLE_CLASSIC
9837856c818Smatthias.ringwald     // update idle timestamp
9847856c818Smatthias.ringwald     hci_connection_timestamp(conn);
98552db98b2SMatthias Ringwald #endif
9867856c818Smatthias.ringwald 
9872b838201SMatthias Ringwald #ifdef ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL
9882b838201SMatthias Ringwald     hci_stack->host_completed_packets = 1;
9892b838201SMatthias Ringwald     conn->num_packets_completed++;
9902b838201SMatthias Ringwald #endif
9912b838201SMatthias Ringwald 
9927856c818Smatthias.ringwald     // handle different packet types
9934ea43905SMatthias Ringwald     switch (acl_flags & 0x03u) {
9947856c818Smatthias.ringwald 
9957856c818Smatthias.ringwald         case 0x01: // continuation fragment
9967856c818Smatthias.ringwald 
9970ca847afS[email protected]             // sanity checks
9984ea43905SMatthias Ringwald             if (conn->acl_recombination_pos == 0u) {
9999da54300S[email protected]                 log_error( "ACL Cont Fragment but no first fragment for handle 0x%02x", con_handle);
10007856c818Smatthias.ringwald                 return;
10017856c818Smatthias.ringwald             }
10024ea43905SMatthias Ringwald             if ((conn->acl_recombination_pos + acl_length) > (4u + HCI_ACL_BUFFER_SIZE)){
10030ca847afS[email protected]                 log_error( "ACL Cont Fragment to large: combined packet %u > buffer size %u for handle 0x%02x",
10040ca847afS[email protected]                     conn->acl_recombination_pos + acl_length, 4 + HCI_ACL_BUFFER_SIZE, con_handle);
10050ca847afS[email protected]                 conn->acl_recombination_pos = 0;
10060ca847afS[email protected]                 return;
10070ca847afS[email protected]             }
10087856c818Smatthias.ringwald 
10097856c818Smatthias.ringwald             // append fragment payload (header already stored)
10106535961aSMatthias Ringwald             (void)memcpy(&conn->acl_recombination_buffer[HCI_INCOMING_PRE_BUFFER_SIZE + conn->acl_recombination_pos],
10116535961aSMatthias Ringwald                          &packet[4], acl_length);
10127856c818Smatthias.ringwald             conn->acl_recombination_pos += acl_length;
10137856c818Smatthias.ringwald 
10147856c818Smatthias.ringwald             // forward complete L2CAP packet if complete.
10154ea43905SMatthias Ringwald             if (conn->acl_recombination_pos >= (conn->acl_recombination_length + 4u + 4u)){ // pos already incl. ACL header
1016d6b06661SMatthias Ringwald                 hci_emit_acl_packet(&conn->acl_recombination_buffer[HCI_INCOMING_PRE_BUFFER_SIZE], conn->acl_recombination_pos);
10177856c818Smatthias.ringwald                 // reset recombination buffer
10187856c818Smatthias.ringwald                 conn->acl_recombination_length = 0;
10197856c818Smatthias.ringwald                 conn->acl_recombination_pos = 0;
10207856c818Smatthias.ringwald             }
10217856c818Smatthias.ringwald             break;
10227856c818Smatthias.ringwald 
10237856c818Smatthias.ringwald         case 0x02: { // first fragment
10247856c818Smatthias.ringwald 
102523a77e1aS[email protected]             // sanity check
102623a77e1aS[email protected]             if (conn->acl_recombination_pos) {
102723a77e1aS[email protected]                 log_error( "ACL First Fragment but data in buffer for handle 0x%02x, dropping stale fragments", con_handle);
102823a77e1aS[email protected]                 conn->acl_recombination_pos = 0;
102923a77e1aS[email protected]             }
103023a77e1aS[email protected] 
10317856c818Smatthias.ringwald             // peek into L2CAP packet!
10327856c818Smatthias.ringwald             uint16_t l2cap_length = READ_L2CAP_LENGTH( packet );
10337856c818Smatthias.ringwald 
10347856c818Smatthias.ringwald             // compare fragment size to L2CAP packet size
10354ea43905SMatthias Ringwald             if (acl_length >= (l2cap_length + 4u)){
10367856c818Smatthias.ringwald                 // forward fragment as L2CAP packet
10374ea43905SMatthias Ringwald                 hci_emit_acl_packet(packet, acl_length + 4u);
10387856c818Smatthias.ringwald             } else {
10390ca847afS[email protected] 
10400ca847afS[email protected]                 if (acl_length > HCI_ACL_BUFFER_SIZE){
10410ca847afS[email protected]                     log_error( "ACL First Fragment to large: fragment %u > buffer size %u for handle 0x%02x",
10420ca847afS[email protected]                         4 + acl_length, 4 + HCI_ACL_BUFFER_SIZE, con_handle);
10430ca847afS[email protected]                     return;
10440ca847afS[email protected]                 }
10450ca847afS[email protected] 
10467856c818Smatthias.ringwald                 // store first fragment and tweak acl length for complete package
10476535961aSMatthias Ringwald                 (void)memcpy(&conn->acl_recombination_buffer[HCI_INCOMING_PRE_BUFFER_SIZE],
10484ea43905SMatthias Ringwald                              packet, acl_length + 4u);
10494ea43905SMatthias Ringwald                 conn->acl_recombination_pos    = acl_length + 4u;
10507856c818Smatthias.ringwald                 conn->acl_recombination_length = l2cap_length;
10514ea43905SMatthias Ringwald                 little_endian_store_16(conn->acl_recombination_buffer, HCI_INCOMING_PRE_BUFFER_SIZE + 2u, l2cap_length +4u);
10527856c818Smatthias.ringwald             }
10537856c818Smatthias.ringwald             break;
10547856c818Smatthias.ringwald 
10557856c818Smatthias.ringwald         }
10567856c818Smatthias.ringwald         default:
1057c3b46f5aSMatthias Ringwald             log_error( "acl_handler called with invalid packet boundary flags %u", acl_flags & 0x03);
10587856c818Smatthias.ringwald             return;
10597856c818Smatthias.ringwald     }
106094ab26f8Smatthias.ringwald 
106194ab26f8Smatthias.ringwald     // execute main loop
106294ab26f8Smatthias.ringwald     hci_run();
106316833f0aSmatthias.ringwald }
106422909952Smatthias.ringwald 
10651ab2dc58SMatthias Ringwald static void hci_connection_stop_timer(hci_connection_t * conn){
10661ab2dc58SMatthias Ringwald     btstack_run_loop_remove_timer(&conn->timeout);
10671ab2dc58SMatthias Ringwald #ifdef ENABLE_CLASSIC
10681ab2dc58SMatthias Ringwald     btstack_run_loop_remove_timer(&conn->timeout_sco);
10691ab2dc58SMatthias Ringwald #endif
10701ab2dc58SMatthias Ringwald }
10711ab2dc58SMatthias Ringwald 
107267a3e8ecSmatthias.ringwald static void hci_shutdown_connection(hci_connection_t *conn){
10739da54300S[email protected]     log_info("Connection closed: handle 0x%x, %s", conn->con_handle, bd_addr_to_str(conn->address));
10743c4d4b90Smatthias.ringwald 
1075b3264428SMatthias Ringwald #ifdef ENABLE_CLASSIC
1076cb70c5abSMatthias Ringwald #if defined(ENABLE_SCO_OVER_HCI) || defined(HAVE_SCO_TRANSPORT)
1077cb70c5abSMatthias Ringwald     bd_addr_type_t addr_type = conn->address_type;
1078cb70c5abSMatthias Ringwald #endif
1079cb70c5abSMatthias Ringwald #ifdef HAVE_SCO_TRANSPORT
1080cb70c5abSMatthias Ringwald     hci_con_handle_t con_handle = conn->con_handle;
1081ee752bb8SMatthias Ringwald #endif
1082b3264428SMatthias Ringwald #endif
1083ee752bb8SMatthias Ringwald 
10841ab2dc58SMatthias Ringwald     hci_connection_stop_timer(conn);
1085c785ef68Smatthias.ringwald 
1086665d90f2SMatthias Ringwald     btstack_linked_list_remove(&hci_stack->connections, (btstack_linked_item_t *) conn);
1087a3b02b71Smatthias.ringwald     btstack_memory_hci_connection_free( conn );
10883c4d4b90Smatthias.ringwald 
10893c4d4b90Smatthias.ringwald     // now it's gone
1090c7e0c5f6Smatthias.ringwald     hci_emit_nr_connections_changed();
1091ee752bb8SMatthias Ringwald 
1092b3264428SMatthias Ringwald #ifdef ENABLE_CLASSIC
1093034e9b53SMatthias Ringwald #ifdef ENABLE_SCO_OVER_HCI
1094ee752bb8SMatthias Ringwald     // update SCO
1095cb70c5abSMatthias Ringwald     if ((addr_type == BD_ADDR_TYPE_SCO) && (hci_stack->hci_transport != NULL) && (hci_stack->hci_transport->set_sco_config != NULL)){
1096ee752bb8SMatthias Ringwald         hci_stack->hci_transport->set_sco_config(hci_stack->sco_voice_setting_active, hci_number_sco_connections());
1097ee752bb8SMatthias Ringwald     }
1098034e9b53SMatthias Ringwald #endif
1099cb70c5abSMatthias Ringwald #ifdef HAVE_SCO_TRANSPORT
1100cb70c5abSMatthias Ringwald     if ((addr_type == BD_ADDR_TYPE_SCO) && (hci_stack->sco_transport != NULL)){
1101cb70c5abSMatthias Ringwald         hci_stack->sco_transport->close(con_handle);
1102cb70c5abSMatthias Ringwald     }
1103cb70c5abSMatthias Ringwald #endif
1104b3264428SMatthias Ringwald #endif
1105c7e0c5f6Smatthias.ringwald }
1106c7e0c5f6Smatthias.ringwald 
110735454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
110835454696SMatthias Ringwald 
11090c042179S[email protected] static const uint16_t packet_type_sizes[] = {
11108f8108aaSmatthias.ringwald     0, HCI_ACL_2DH1_SIZE, HCI_ACL_3DH1_SIZE, HCI_ACL_DM1_SIZE,
11118f8108aaSmatthias.ringwald     HCI_ACL_DH1_SIZE, 0, 0, 0,
11128f8108aaSmatthias.ringwald     HCI_ACL_2DH3_SIZE, HCI_ACL_3DH3_SIZE, HCI_ACL_DM3_SIZE, HCI_ACL_DH3_SIZE,
11138f8108aaSmatthias.ringwald     HCI_ACL_2DH5_SIZE, HCI_ACL_3DH5_SIZE, HCI_ACL_DM5_SIZE, HCI_ACL_DH5_SIZE
11148f8108aaSmatthias.ringwald };
111565389bfcS[email protected] static const uint8_t  packet_type_feature_requirement_bit[] = {
111665389bfcS[email protected]      0, // 3 slot packets
111765389bfcS[email protected]      1, // 5 slot packets
111865389bfcS[email protected]     25, // EDR 2 mpbs
111965389bfcS[email protected]     26, // EDR 3 mbps
112065389bfcS[email protected]     39, // 3 slot EDR packts
112165389bfcS[email protected]     40, // 5 slot EDR packet
112265389bfcS[email protected] };
112365389bfcS[email protected] static const uint16_t packet_type_feature_packet_mask[] = {
112465389bfcS[email protected]     0x0f00, // 3 slot packets
112565389bfcS[email protected]     0xf000, // 5 slot packets
112665389bfcS[email protected]     0x1102, // EDR 2 mpbs
112765389bfcS[email protected]     0x2204, // EDR 3 mbps
112865389bfcS[email protected]     0x0300, // 3 slot EDR packts
112965389bfcS[email protected]     0x3000, // 5 slot EDR packet
113065389bfcS[email protected] };
11318f8108aaSmatthias.ringwald 
113265389bfcS[email protected] static uint16_t hci_acl_packet_types_for_buffer_size_and_local_features(uint16_t buffer_size, uint8_t * local_supported_features){
113365389bfcS[email protected]     // enable packet types based on size
11348f8108aaSmatthias.ringwald     uint16_t packet_types = 0;
1135f16a69bbS[email protected]     unsigned int i;
11368f8108aaSmatthias.ringwald     for (i=0;i<16;i++){
11378f8108aaSmatthias.ringwald         if (packet_type_sizes[i] == 0) continue;
11388f8108aaSmatthias.ringwald         if (packet_type_sizes[i] <= buffer_size){
11398f8108aaSmatthias.ringwald             packet_types |= 1 << i;
11408f8108aaSmatthias.ringwald         }
11418f8108aaSmatthias.ringwald     }
114265389bfcS[email protected]     // disable packet types due to missing local supported features
114365389bfcS[email protected]     for (i=0;i<sizeof(packet_type_feature_requirement_bit);i++){
1144f04a0c31SMatthias Ringwald         unsigned int bit_idx = packet_type_feature_requirement_bit[i];
114565389bfcS[email protected]         int feature_set = (local_supported_features[bit_idx >> 3] & (1<<(bit_idx & 7))) != 0;
114665389bfcS[email protected]         if (feature_set) continue;
114765389bfcS[email protected]         log_info("Features bit %02u is not set, removing packet types 0x%04x", bit_idx, packet_type_feature_packet_mask[i]);
114865389bfcS[email protected]         packet_types &= ~packet_type_feature_packet_mask[i];
114965389bfcS[email protected]     }
11508f8108aaSmatthias.ringwald     // flip bits for "may not be used"
11518f8108aaSmatthias.ringwald     packet_types ^= 0x3306;
11528f8108aaSmatthias.ringwald     return packet_types;
11538f8108aaSmatthias.ringwald }
11548f8108aaSmatthias.ringwald 
11558f8108aaSmatthias.ringwald uint16_t hci_usable_acl_packet_types(void){
11563a9fb326S[email protected]     return hci_stack->packet_types;
11578f8108aaSmatthias.ringwald }
115835454696SMatthias Ringwald #endif
11598f8108aaSmatthias.ringwald 
1160facf93fdS[email protected] uint8_t* hci_get_outgoing_packet_buffer(void){
11617dc17943Smatthias.ringwald     // hci packet buffer is >= acl data packet length
11623a9fb326S[email protected]     return hci_stack->hci_packet_buffer;
11637dc17943Smatthias.ringwald }
11647dc17943Smatthias.ringwald 
1165f5d8d141S[email protected] uint16_t hci_max_acl_data_packet_length(void){
11663a9fb326S[email protected]     return hci_stack->acl_data_packet_length;
11677dc17943Smatthias.ringwald }
11687dc17943Smatthias.ringwald 
116906b9e820SMatthias Ringwald #ifdef ENABLE_CLASSIC
117020dcdd22SMatthias Ringwald bool hci_extended_sco_link_supported(void){
11713e68d23dSMatthias Ringwald     // No. 31, byte 3, bit 7
11723e68d23dSMatthias Ringwald     return (hci_stack->local_supported_features[3] & (1 << 7)) != 0;
11733e68d23dSMatthias Ringwald }
117406b9e820SMatthias Ringwald #endif
11753e68d23dSMatthias Ringwald 
117620dcdd22SMatthias Ringwald bool hci_non_flushable_packet_boundary_flag_supported(void){
11776ac9a97eS[email protected]     // No. 54, byte 6, bit 6
11784ea43905SMatthias Ringwald     return (hci_stack->local_supported_features[6u] & (1u << 6u)) != 0u;
11796ac9a97eS[email protected] }
11806ac9a97eS[email protected] 
11819885fb2dSMatthias Ringwald #ifdef ENABLE_CLASSIC
118215a95bd5SMatthias Ringwald static int gap_ssp_supported(void){
11836ac9a97eS[email protected]     // No. 51, byte 6, bit 3
11844ea43905SMatthias Ringwald     return (hci_stack->local_supported_features[6u] & (1u << 3u)) != 0u;
1185f5d8d141S[email protected] }
11869885fb2dSMatthias Ringwald #endif
1187f5d8d141S[email protected] 
11887f02f414SMatthias Ringwald static int hci_classic_supported(void){
118935454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
11906ac9a97eS[email protected]     // No. 37, byte 4, bit 5, = No BR/EDR Support
11913a9fb326S[email protected]     return (hci_stack->local_supported_features[4] & (1 << 5)) == 0;
119235454696SMatthias Ringwald #else
119335454696SMatthias Ringwald     return 0;
119435454696SMatthias Ringwald #endif
1195f5d8d141S[email protected] }
1196f5d8d141S[email protected] 
11977f02f414SMatthias Ringwald static int hci_le_supported(void){
1198a9a4c409SMatthias Ringwald #ifdef ENABLE_BLE
11996ac9a97eS[email protected]     // No. 37, byte 4, bit 6 = LE Supported (Controller)
12004ea43905SMatthias Ringwald     return (hci_stack->local_supported_features[4u] & (1u << 6u)) != 0u;
1201f5d8d141S[email protected] #else
1202f5d8d141S[email protected]     return 0;
1203f5d8d141S[email protected] #endif
1204f5d8d141S[email protected] }
1205f5d8d141S[email protected] 
12061ffa425cSMatthias Ringwald static bool hci_command_supported(uint8_t command_index){
12071ffa425cSMatthias Ringwald     return (hci_stack->local_supported_commands & (1LU << command_index)) != 0;
12081ffa425cSMatthias Ringwald }
12091ffa425cSMatthias Ringwald 
1210b95a5a35SMatthias Ringwald #ifdef ENABLE_BLE
1211b95a5a35SMatthias Ringwald 
1212f5873674SMatthias Ringwald static void hci_get_own_address_for_addr_type(uint8_t own_addr_type, bd_addr_t own_addr){
12136bcfa632SMatthias Ringwald     if (own_addr_type == BD_ADDR_TYPE_LE_PUBLIC){
12146bcfa632SMatthias Ringwald         (void)memcpy(own_addr, hci_stack->local_bd_addr, 6);
121569a97523S[email protected]     } else {
12166bcfa632SMatthias Ringwald         (void)memcpy(own_addr, hci_stack->le_random_address, 6);
121769a97523S[email protected]     }
121869a97523S[email protected] }
121969a97523S[email protected] 
12206bcfa632SMatthias Ringwald void gap_le_get_own_address(uint8_t * addr_type, bd_addr_t addr){
12216bcfa632SMatthias Ringwald     *addr_type = hci_stack->le_own_addr_type;
12226bcfa632SMatthias Ringwald     hci_get_own_address_for_addr_type(hci_stack->le_own_addr_type, addr);
12236bcfa632SMatthias Ringwald }
12246bcfa632SMatthias Ringwald 
12256bcfa632SMatthias Ringwald #ifdef ENABLE_LE_PERIPHERAL
12266bcfa632SMatthias Ringwald void gap_le_get_own_advertisements_address(uint8_t * addr_type, bd_addr_t addr){
12276bcfa632SMatthias Ringwald     *addr_type = hci_stack->le_advertisements_own_addr_type;
12286bcfa632SMatthias Ringwald     hci_get_own_address_for_addr_type(hci_stack->le_advertisements_own_addr_type, addr);
12296bcfa632SMatthias Ringwald };
12306bcfa632SMatthias Ringwald #endif
12316bcfa632SMatthias Ringwald 
1232e8c8828eSMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
12336bcfa632SMatthias Ringwald 
12346bcfa632SMatthias Ringwald /**
12356bcfa632SMatthias Ringwald  * @brief Get own addr type and address used for LE connections (Central)
12366bcfa632SMatthias Ringwald  */
12376bcfa632SMatthias Ringwald void gap_le_get_own_connection_address(uint8_t * addr_type, bd_addr_t addr){
12386bcfa632SMatthias Ringwald     *addr_type = hci_stack->le_connection_own_addr_type;
12396bcfa632SMatthias Ringwald     hci_get_own_address_for_addr_type(hci_stack->le_connection_own_addr_type, addr);
12406bcfa632SMatthias Ringwald }
12416bcfa632SMatthias Ringwald 
1242384b59deSMatthias Ringwald void le_handle_advertisement_report(uint8_t *packet, uint16_t size){
12439ec2630cSMatthias Ringwald 
1244d1dc057bS[email protected]     int offset = 3;
1245d1dc057bS[email protected]     int num_reports = packet[offset];
1246d1dc057bS[email protected]     offset += 1;
1247d1dc057bS[email protected] 
124857c9da5bS[email protected]     int i;
12494f4e0224SMatthias Ringwald     // log_info("HCI: handle adv report with num reports: %d", num_reports);
125003fbe9c6S[email protected]     uint8_t event[12 + LE_ADVERTISING_DATA_SIZE]; // use upper bound to avoid var size automatic var
1251a1df452eSMatthias Ringwald     for (i=0; (i<num_reports) && (offset < size);i++){
125233e6948bSMatthias Ringwald         // sanity checks on data_length:
125333e6948bSMatthias Ringwald         uint8_t data_length = packet[offset + 8];
125433e6948bSMatthias Ringwald         if (data_length > LE_ADVERTISING_DATA_SIZE) return;
12554ea43905SMatthias Ringwald         if ((offset + 9u + data_length + 1u) > size)    return;
125633e6948bSMatthias Ringwald         // setup event
12574ea43905SMatthias Ringwald         uint8_t event_size = 10u + data_length;
1258d1dc057bS[email protected]         int pos = 0;
1259045013feSMatthias Ringwald         event[pos++] = GAP_EVENT_ADVERTISING_REPORT;
126057c9da5bS[email protected]         event[pos++] = event_size;
12616535961aSMatthias Ringwald         (void)memcpy(&event[pos], &packet[offset], 1 + 1 + 6); // event type + address type + address
1262d1dc057bS[email protected]         offset += 8;
1263d1dc057bS[email protected]         pos += 8;
1264d1dc057bS[email protected]         event[pos++] = packet[offset + 1 + data_length]; // rssi
126533e6948bSMatthias Ringwald         event[pos++] = data_length;
126633e6948bSMatthias Ringwald         offset++;
12676535961aSMatthias Ringwald         (void)memcpy(&event[pos], &packet[offset], data_length);
126857c9da5bS[email protected]         pos +=    data_length;
12694ea43905SMatthias Ringwald         offset += data_length + 1u; // rssi
1270d6b06661SMatthias Ringwald         hci_emit_event(event, pos, 1);
127157c9da5bS[email protected]     }
127257c9da5bS[email protected] }
1273b2f949feS[email protected] #endif
1274e8c8828eSMatthias Ringwald #endif
127557c9da5bS[email protected] 
12762b6ab3e6SMatthias Ringwald #ifdef ENABLE_BLE
12772b6ab3e6SMatthias Ringwald #ifdef ENABLE_LE_PERIPHERAL
1278bbc366e6SMatthias Ringwald static void hci_update_advertisements_enabled_for_current_roles(void){
1279bbc366e6SMatthias Ringwald     if (hci_stack->le_advertisements_enabled){
12802b6ab3e6SMatthias Ringwald         // get number of active le slave connections
12812b6ab3e6SMatthias Ringwald         int num_slave_connections = 0;
12822b6ab3e6SMatthias Ringwald         btstack_linked_list_iterator_t it;
12832b6ab3e6SMatthias Ringwald         btstack_linked_list_iterator_init(&it, &hci_stack->connections);
12842b6ab3e6SMatthias Ringwald         while (btstack_linked_list_iterator_has_next(&it)){
12852b6ab3e6SMatthias Ringwald             hci_connection_t * con = (hci_connection_t*) btstack_linked_list_iterator_next(&it);
12862b6ab3e6SMatthias Ringwald             log_info("state %u, role %u, le_con %u", con->state, con->role, hci_is_le_connection(con));
12872b6ab3e6SMatthias Ringwald             if (con->state != OPEN) continue;
12882b6ab3e6SMatthias Ringwald             if (con->role  != HCI_ROLE_SLAVE) continue;
12892b6ab3e6SMatthias Ringwald             if (!hci_is_le_connection(con)) continue;
12902b6ab3e6SMatthias Ringwald             num_slave_connections++;
12912b6ab3e6SMatthias Ringwald         }
12922b6ab3e6SMatthias Ringwald         log_info("Num LE Peripheral roles: %u of %u", num_slave_connections, hci_stack->le_max_number_peripheral_connections);
1293bbc366e6SMatthias Ringwald         hci_stack->le_advertisements_enabled_for_current_roles = num_slave_connections < hci_stack->le_max_number_peripheral_connections;
1294bbc366e6SMatthias Ringwald     } else {
1295bbc366e6SMatthias Ringwald         hci_stack->le_advertisements_enabled_for_current_roles = false;
12962b6ab3e6SMatthias Ringwald     }
12972b6ab3e6SMatthias Ringwald }
12982b6ab3e6SMatthias Ringwald #endif
12992b6ab3e6SMatthias Ringwald #endif
13002b6ab3e6SMatthias Ringwald 
130159d59ecfSMatthias Ringwald #ifdef ENABLE_CLASSIC
130259d59ecfSMatthias Ringwald static void gap_run_set_local_name(void){
130359d59ecfSMatthias Ringwald     hci_reserve_packet_buffer();
130459d59ecfSMatthias Ringwald     uint8_t * packet = hci_stack->hci_packet_buffer;
130559d59ecfSMatthias Ringwald     // construct HCI Command and send
130659d59ecfSMatthias Ringwald     uint16_t opcode = hci_write_local_name.opcode;
130759d59ecfSMatthias Ringwald     hci_stack->last_cmd_opcode = opcode;
130859d59ecfSMatthias Ringwald     packet[0] = opcode & 0xff;
130959d59ecfSMatthias Ringwald     packet[1] = opcode >> 8;
131059d59ecfSMatthias Ringwald     packet[2] = DEVICE_NAME_LEN;
131159d59ecfSMatthias Ringwald     memset(&packet[3], 0, DEVICE_NAME_LEN);
131259d59ecfSMatthias Ringwald     uint16_t name_len = (uint16_t) strlen(hci_stack->local_name);
131359d59ecfSMatthias Ringwald     uint16_t bytes_to_copy = btstack_min(name_len, DEVICE_NAME_LEN);
131459d59ecfSMatthias Ringwald     // if shorter than DEVICE_NAME_LEN, it's implicitly NULL-terminated by memset call
131559d59ecfSMatthias Ringwald     (void)memcpy(&packet[3], hci_stack->local_name, bytes_to_copy);
131659d59ecfSMatthias Ringwald     // expand '00:00:00:00:00:00' in name with bd_addr
131759d59ecfSMatthias Ringwald     btstack_replace_bd_addr_placeholder(&packet[3], bytes_to_copy, hci_stack->local_bd_addr);
131859d59ecfSMatthias Ringwald     hci_send_cmd_packet(packet, HCI_CMD_HEADER_SIZE + DEVICE_NAME_LEN);
131959d59ecfSMatthias Ringwald }
132059d59ecfSMatthias Ringwald 
132159d59ecfSMatthias Ringwald static void gap_run_set_eir_data(void){
132259d59ecfSMatthias Ringwald     hci_reserve_packet_buffer();
132359d59ecfSMatthias Ringwald     uint8_t * packet = hci_stack->hci_packet_buffer;
132459d59ecfSMatthias Ringwald     // construct HCI Command in-place and send
132559d59ecfSMatthias Ringwald     uint16_t opcode = hci_write_extended_inquiry_response.opcode;
132659d59ecfSMatthias Ringwald     hci_stack->last_cmd_opcode = opcode;
132759d59ecfSMatthias Ringwald     uint16_t offset = 0;
132859d59ecfSMatthias Ringwald     packet[offset++] = opcode & 0xff;
132959d59ecfSMatthias Ringwald     packet[offset++] = opcode >> 8;
133059d59ecfSMatthias Ringwald     packet[offset++] = 1 + EXTENDED_INQUIRY_RESPONSE_DATA_LEN;
133159d59ecfSMatthias Ringwald     packet[offset++] = 0;  // FEC not required
133259d59ecfSMatthias Ringwald     memset(&packet[offset], 0, EXTENDED_INQUIRY_RESPONSE_DATA_LEN);
133359d59ecfSMatthias Ringwald     if (hci_stack->eir_data){
133459d59ecfSMatthias Ringwald         // copy items and expand '00:00:00:00:00:00' in name with bd_addr
133559d59ecfSMatthias Ringwald         ad_context_t context;
133659d59ecfSMatthias Ringwald         for (ad_iterator_init(&context, EXTENDED_INQUIRY_RESPONSE_DATA_LEN, hci_stack->eir_data) ; ad_iterator_has_more(&context) ; ad_iterator_next(&context)) {
133759d59ecfSMatthias Ringwald             uint8_t data_type   = ad_iterator_get_data_type(&context);
133859d59ecfSMatthias Ringwald             uint8_t size        = ad_iterator_get_data_len(&context);
133959d59ecfSMatthias Ringwald             const uint8_t *data = ad_iterator_get_data(&context);
134059d59ecfSMatthias Ringwald             // copy item
134159d59ecfSMatthias Ringwald             packet[offset++] = size + 1;
134259d59ecfSMatthias Ringwald             packet[offset++] = data_type;
134359d59ecfSMatthias Ringwald             memcpy(&packet[offset], data, size);
134459d59ecfSMatthias Ringwald             // update name item
134559d59ecfSMatthias Ringwald             if ((data_type == BLUETOOTH_DATA_TYPE_SHORTENED_LOCAL_NAME) || (data_type == BLUETOOTH_DATA_TYPE_COMPLETE_LOCAL_NAME)){
134659d59ecfSMatthias Ringwald                 btstack_replace_bd_addr_placeholder(&packet[offset], size, hci_stack->local_bd_addr);
134759d59ecfSMatthias Ringwald             }
134859d59ecfSMatthias Ringwald             offset += size;
134959d59ecfSMatthias Ringwald         }
135059d59ecfSMatthias Ringwald     } else {
135159d59ecfSMatthias Ringwald         uint16_t name_len = (uint16_t) strlen(hci_stack->local_name);
135259d59ecfSMatthias Ringwald         uint16_t bytes_to_copy = btstack_min(name_len, EXTENDED_INQUIRY_RESPONSE_DATA_LEN - 2);
135359d59ecfSMatthias Ringwald         packet[offset++] = bytes_to_copy + 1;
135459d59ecfSMatthias Ringwald         packet[offset++] = BLUETOOTH_DATA_TYPE_COMPLETE_LOCAL_NAME;
135559d59ecfSMatthias Ringwald         (void)memcpy(&packet[6], hci_stack->local_name, bytes_to_copy);
135659d59ecfSMatthias Ringwald         // expand '00:00:00:00:00:00' in name with bd_addr
135759d59ecfSMatthias Ringwald         btstack_replace_bd_addr_placeholder(&packet[offset], bytes_to_copy, hci_stack->local_bd_addr);
135859d59ecfSMatthias Ringwald     }
135959d59ecfSMatthias Ringwald     hci_send_cmd_packet(packet, HCI_CMD_HEADER_SIZE + 1 + EXTENDED_INQUIRY_RESPONSE_DATA_LEN);
136059d59ecfSMatthias Ringwald }
1361ab4831a3SMatthias Ringwald 
1362ab4831a3SMatthias Ringwald static void hci_run_gap_tasks_classic(void){
1363baa4881eSMatthias Ringwald     if ((hci_stack->gap_tasks_classic & GAP_TASK_SET_CLASS_OF_DEVICE) != 0) {
1364baa4881eSMatthias Ringwald         hci_stack->gap_tasks_classic &= ~GAP_TASK_SET_CLASS_OF_DEVICE;
1365ab4831a3SMatthias Ringwald         hci_send_cmd(&hci_write_class_of_device, hci_stack->class_of_device);
1366ab4831a3SMatthias Ringwald         return;
1367ab4831a3SMatthias Ringwald     }
1368baa4881eSMatthias Ringwald     if ((hci_stack->gap_tasks_classic & GAP_TASK_SET_LOCAL_NAME) != 0) {
1369baa4881eSMatthias Ringwald         hci_stack->gap_tasks_classic &= ~GAP_TASK_SET_LOCAL_NAME;
1370ab4831a3SMatthias Ringwald         gap_run_set_local_name();
1371ab4831a3SMatthias Ringwald         return;
1372ab4831a3SMatthias Ringwald     }
1373baa4881eSMatthias Ringwald     if ((hci_stack->gap_tasks_classic & GAP_TASK_SET_EIR_DATA) != 0) {
1374baa4881eSMatthias Ringwald         hci_stack->gap_tasks_classic &= ~GAP_TASK_SET_EIR_DATA;
1375ab4831a3SMatthias Ringwald         gap_run_set_eir_data();
1376ab4831a3SMatthias Ringwald         return;
1377ab4831a3SMatthias Ringwald     }
1378baa4881eSMatthias Ringwald     if ((hci_stack->gap_tasks_classic & GAP_TASK_SET_DEFAULT_LINK_POLICY) != 0) {
1379baa4881eSMatthias Ringwald         hci_stack->gap_tasks_classic &= ~GAP_TASK_SET_DEFAULT_LINK_POLICY;
1380ab4831a3SMatthias Ringwald         hci_send_cmd(&hci_write_default_link_policy_setting, hci_stack->default_link_policy_settings);
1381ab4831a3SMatthias Ringwald         return;
1382ab4831a3SMatthias Ringwald     }
1383ab4831a3SMatthias Ringwald     // write page scan activity
1384baa4881eSMatthias Ringwald     if ((hci_stack->gap_tasks_classic & GAP_TASK_WRITE_PAGE_SCAN_ACTIVITY) != 0) {
1385baa4881eSMatthias Ringwald         hci_stack->gap_tasks_classic &= ~GAP_TASK_WRITE_PAGE_SCAN_ACTIVITY;
1386ab4831a3SMatthias Ringwald         hci_send_cmd(&hci_write_page_scan_activity, hci_stack->new_page_scan_interval, hci_stack->new_page_scan_window);
1387ab4831a3SMatthias Ringwald         return;
1388ab4831a3SMatthias Ringwald     }
1389ab4831a3SMatthias Ringwald     // write page scan type
1390baa4881eSMatthias Ringwald     if ((hci_stack->gap_tasks_classic & GAP_TASK_WRITE_PAGE_SCAN_TYPE) != 0) {
1391baa4881eSMatthias Ringwald         hci_stack->gap_tasks_classic &= ~GAP_TASK_WRITE_PAGE_SCAN_TYPE;
1392ab4831a3SMatthias Ringwald         hci_send_cmd(&hci_write_page_scan_type, hci_stack->new_page_scan_type);
1393ab4831a3SMatthias Ringwald         return;
1394ab4831a3SMatthias Ringwald     }
139532a12730SMatthias Ringwald     // write page timeout
1396baa4881eSMatthias Ringwald     if ((hci_stack->gap_tasks_classic & GAP_TASK_WRITE_PAGE_TIMEOUT) != 0) {
1397baa4881eSMatthias Ringwald         hci_stack->gap_tasks_classic &= ~GAP_TASK_WRITE_PAGE_TIMEOUT;
139832a12730SMatthias Ringwald         hci_send_cmd(&hci_write_page_timeout, hci_stack->page_timeout);
139932a12730SMatthias Ringwald         return;
140032a12730SMatthias Ringwald     }
1401ab4831a3SMatthias Ringwald     // send scan enable
1402baa4881eSMatthias Ringwald     if ((hci_stack->gap_tasks_classic & GAP_TASK_WRITE_SCAN_ENABLE) != 0) {
1403baa4881eSMatthias Ringwald         hci_stack->gap_tasks_classic &= ~GAP_TASK_WRITE_SCAN_ENABLE;
1404ab4831a3SMatthias Ringwald         hci_send_cmd(&hci_write_scan_enable, hci_stack->new_scan_enable_value);
1405ab4831a3SMatthias Ringwald         return;
1406ab4831a3SMatthias Ringwald     }
1407c0c8a829SMatthias Ringwald     // send write scan activity
1408baa4881eSMatthias Ringwald     if ((hci_stack->gap_tasks_classic & GAP_TASK_WRITE_INQUIRY_SCAN_ACTIVITY) != 0) {
1409baa4881eSMatthias Ringwald         hci_stack->gap_tasks_classic &= ~GAP_TASK_WRITE_INQUIRY_SCAN_ACTIVITY;
1410c0c8a829SMatthias Ringwald         hci_send_cmd(&hci_write_inquiry_scan_activity, hci_stack->inquiry_scan_interval, hci_stack->inquiry_scan_window);
1411c0c8a829SMatthias Ringwald         return;
1412c0c8a829SMatthias Ringwald     }
1413ab4831a3SMatthias Ringwald }
141459d59ecfSMatthias Ringwald #endif
141559d59ecfSMatthias Ringwald 
14166fad2c37SMatthias Ringwald #ifndef HAVE_HOST_CONTROLLER_API
141706b9e820SMatthias Ringwald 
141896b53536SMatthias Ringwald static uint32_t hci_transport_uart_get_main_baud_rate(void){
141996b53536SMatthias Ringwald     if (!hci_stack->config) return 0;
14209796ebeaSMatthias Ringwald     uint32_t baud_rate = ((hci_transport_config_uart_t *)hci_stack->config)->baudrate_main;
142196b53536SMatthias Ringwald     // Limit baud rate for Broadcom chipsets to 3 mbps
1422a1df452eSMatthias Ringwald     if ((hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_BROADCOM_CORPORATION) && (baud_rate > 3000000)){
142396b53536SMatthias Ringwald         baud_rate = 3000000;
142496b53536SMatthias Ringwald     }
142596b53536SMatthias Ringwald     return baud_rate;
142696b53536SMatthias Ringwald }
142796b53536SMatthias Ringwald 
1428ec820d77SMatthias Ringwald static void hci_initialization_timeout_handler(btstack_timer_source_t * ds){
14299ec2630cSMatthias Ringwald     UNUSED(ds);
14309ec2630cSMatthias Ringwald 
14310305bdeaSMatthias Ringwald     switch (hci_stack->substate){
14320305bdeaSMatthias Ringwald         case HCI_INIT_W4_SEND_RESET:
14337b0d7667SMatthias Ringwald             log_info("Resend HCI Reset");
14340305bdeaSMatthias Ringwald             hci_stack->substate = HCI_INIT_SEND_RESET;
14357b0d7667SMatthias Ringwald             hci_stack->num_cmd_packets = 1;
14360305bdeaSMatthias Ringwald             hci_run();
14370305bdeaSMatthias Ringwald             break;
14389f007422SMatthias Ringwald         case HCI_INIT_W4_CUSTOM_INIT_CSR_WARM_BOOT_LINK_RESET:
14399f007422SMatthias Ringwald             log_info("Resend HCI Reset - CSR Warm Boot with Link Reset");
14409f007422SMatthias Ringwald             if (hci_stack->hci_transport->reset_link){
14419f007422SMatthias Ringwald                 hci_stack->hci_transport->reset_link();
14429f007422SMatthias Ringwald             }
1443cf373d3aSMatthias Ringwald 
1444cf373d3aSMatthias Ringwald             /* fall through */
1445cf373d3aSMatthias Ringwald 
1446e47e68c7SMatthias Ringwald         case HCI_INIT_W4_CUSTOM_INIT_CSR_WARM_BOOT:
1447e47e68c7SMatthias Ringwald             log_info("Resend HCI Reset - CSR Warm Boot");
1448e47e68c7SMatthias Ringwald             hci_stack->substate = HCI_INIT_SEND_RESET_CSR_WARM_BOOT;
1449e47e68c7SMatthias Ringwald             hci_stack->num_cmd_packets = 1;
1450e47e68c7SMatthias Ringwald             hci_run();
1451688c2635SMatthias Ringwald             break;
14527224be7eSMatthias Ringwald         case HCI_INIT_W4_SEND_BAUD_CHANGE:
14537224be7eSMatthias Ringwald             if (hci_stack->hci_transport->set_baudrate){
145496b53536SMatthias Ringwald                 uint32_t baud_rate = hci_transport_uart_get_main_baud_rate();
1455cd724cb7SMatthias Ringwald                 log_info("Local baud rate change to %" PRIu32 "(timeout handler)", baud_rate);
14567dd9d0ecSMatthias Ringwald                 hci_stack->hci_transport->set_baudrate(baud_rate);
14577224be7eSMatthias Ringwald             }
1458834bce8cSMatthias Ringwald             // For CSR, HCI Reset is sent on new baud rate. Don't forget to reset link for H5/BCSP
145961f37892SMatthias Ringwald             if (hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_CAMBRIDGE_SILICON_RADIO){
1460834bce8cSMatthias Ringwald                 if (hci_stack->hci_transport->reset_link){
1461834bce8cSMatthias Ringwald                     log_info("Link Reset");
1462834bce8cSMatthias Ringwald                     hci_stack->hci_transport->reset_link();
1463834bce8cSMatthias Ringwald                 }
1464772a36d3SMatthias Ringwald                 hci_stack->substate = HCI_INIT_SEND_RESET_CSR_WARM_BOOT;
1465772a36d3SMatthias Ringwald                 hci_run();
1466772a36d3SMatthias Ringwald             }
14674696bddbSMatthias Ringwald             break;
1468559961d0SMatthias Ringwald         case HCI_INIT_W4_CUSTOM_INIT_BCM_DELAY:
1469559961d0SMatthias Ringwald             // otherwise continue
1470559961d0SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_READ_LOCAL_SUPPORTED_COMMANDS;
1471559961d0SMatthias Ringwald             hci_send_cmd(&hci_read_local_supported_commands);
1472559961d0SMatthias Ringwald             break;
14730305bdeaSMatthias Ringwald         default:
14740305bdeaSMatthias Ringwald             break;
14750305bdeaSMatthias Ringwald     }
14760305bdeaSMatthias Ringwald }
147706b9e820SMatthias Ringwald #endif
14780305bdeaSMatthias Ringwald 
147971de195eSMatthias Ringwald static void hci_initializing_next_state(void){
148074b323a9SMatthias Ringwald     hci_stack->substate = (hci_substate_t )( ((int) hci_stack->substate) + 1);
148174b323a9SMatthias Ringwald }
148274b323a9SMatthias Ringwald 
1483f795c86eSMatthias Ringwald static void hci_init_done(void){
1484f795c86eSMatthias Ringwald     // done. tell the app
1485f795c86eSMatthias Ringwald     log_info("hci_init_done -> HCI_STATE_WORKING");
1486f795c86eSMatthias Ringwald     hci_stack->state = HCI_STATE_WORKING;
1487f795c86eSMatthias Ringwald     hci_emit_state();
1488f795c86eSMatthias Ringwald }
1489f795c86eSMatthias Ringwald 
149074b323a9SMatthias Ringwald // assumption: hci_can_send_command_packet_now() == true
149171de195eSMatthias Ringwald static void hci_initializing_run(void){
1492148ca237SMatthias Ringwald     log_debug("hci_initializing_run: substate %u, can send %u", hci_stack->substate, hci_can_send_command_packet_now());
1493f4c579d4SMatthias Ringwald 
14940d37aff3SMatthias Ringwald     if (!hci_can_send_command_packet_now()) return;
14950d37aff3SMatthias Ringwald 
1496f4c579d4SMatthias Ringwald #ifndef HAVE_HOST_CONTROLLER_API
1497f9fd20c2SMatthias Ringwald     bool need_baud_change = hci_stack->config
1498f4c579d4SMatthias Ringwald             && hci_stack->chipset
1499f4c579d4SMatthias Ringwald             && hci_stack->chipset->set_baudrate_command
1500f4c579d4SMatthias Ringwald             && hci_stack->hci_transport->set_baudrate
1501f4c579d4SMatthias Ringwald             && ((hci_transport_config_uart_t *)hci_stack->config)->baudrate_main;
1502f4c579d4SMatthias Ringwald #endif
1503f4c579d4SMatthias Ringwald 
150474b323a9SMatthias Ringwald     switch (hci_stack->substate){
150574b323a9SMatthias Ringwald         case HCI_INIT_SEND_RESET:
150674b323a9SMatthias Ringwald             hci_state_reset();
1507a0cf2f3fSMatthias Ringwald 
15086fad2c37SMatthias Ringwald #ifndef HAVE_HOST_CONTROLLER_API
15090305bdeaSMatthias Ringwald             // prepare reset if command complete not received in 100ms
1510659d758cSMatthias Ringwald             btstack_run_loop_set_timer(&hci_stack->timeout, HCI_RESET_RESEND_TIMEOUT_MS);
1511528a4a3bSMatthias Ringwald             btstack_run_loop_set_timer_handler(&hci_stack->timeout, hci_initialization_timeout_handler);
1512528a4a3bSMatthias Ringwald             btstack_run_loop_add_timer(&hci_stack->timeout);
1513a0cf2f3fSMatthias Ringwald #endif
15140305bdeaSMatthias Ringwald             // send command
151574b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_SEND_RESET;
15160305bdeaSMatthias Ringwald             hci_send_cmd(&hci_reset);
151774b323a9SMatthias Ringwald             break;
151876fcb19bSMatthias Ringwald         case HCI_INIT_SEND_READ_LOCAL_VERSION_INFORMATION:
151976fcb19bSMatthias Ringwald             hci_send_cmd(&hci_read_local_version_information);
152076fcb19bSMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_SEND_READ_LOCAL_VERSION_INFORMATION;
152176fcb19bSMatthias Ringwald             break;
1522e28e41c0SMatthias Ringwald 
1523e28e41c0SMatthias Ringwald #ifndef HAVE_HOST_CONTROLLER_API
1524e90bae01SMatthias Ringwald         case HCI_INIT_SEND_READ_LOCAL_NAME:
1525e90bae01SMatthias Ringwald             hci_send_cmd(&hci_read_local_name);
1526e90bae01SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_SEND_READ_LOCAL_NAME;
1527e90bae01SMatthias Ringwald             break;
1528e47e68c7SMatthias Ringwald         case HCI_INIT_SEND_RESET_CSR_WARM_BOOT:
1529e47e68c7SMatthias Ringwald             hci_state_reset();
1530e47e68c7SMatthias Ringwald             // prepare reset if command complete not received in 100ms
1531659d758cSMatthias Ringwald             btstack_run_loop_set_timer(&hci_stack->timeout, HCI_RESET_RESEND_TIMEOUT_MS);
1532528a4a3bSMatthias Ringwald             btstack_run_loop_set_timer_handler(&hci_stack->timeout, hci_initialization_timeout_handler);
1533528a4a3bSMatthias Ringwald             btstack_run_loop_add_timer(&hci_stack->timeout);
1534e47e68c7SMatthias Ringwald             // send command
1535e47e68c7SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_CUSTOM_INIT_CSR_WARM_BOOT;
1536e47e68c7SMatthias Ringwald             hci_send_cmd(&hci_reset);
1537e47e68c7SMatthias Ringwald             break;
15388d29070eSMatthias Ringwald         case HCI_INIT_SEND_RESET_ST_WARM_BOOT:
15398d29070eSMatthias Ringwald             hci_state_reset();
15408d29070eSMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_SEND_RESET_ST_WARM_BOOT;
15418d29070eSMatthias Ringwald             hci_send_cmd(&hci_reset);
15428d29070eSMatthias Ringwald             break;
1543f4c579d4SMatthias Ringwald         case HCI_INIT_SEND_BAUD_CHANGE_BCM: {
1544f4c579d4SMatthias Ringwald             uint32_t baud_rate = hci_transport_uart_get_main_baud_rate();
1545f4c579d4SMatthias Ringwald             hci_stack->chipset->set_baudrate_command(baud_rate, hci_stack->hci_packet_buffer);
1546f4c579d4SMatthias Ringwald             hci_stack->last_cmd_opcode = little_endian_read_16(hci_stack->hci_packet_buffer, 0);
1547f4c579d4SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_SEND_BAUD_CHANGE_BCM;
1548f4c579d4SMatthias Ringwald             hci_send_cmd_packet(hci_stack->hci_packet_buffer, 3u + hci_stack->hci_packet_buffer[2u]);
1549f4c579d4SMatthias Ringwald             break;
1550f4c579d4SMatthias Ringwald         }
1551c97af506SMatthias Ringwald         case HCI_INIT_SET_BD_ADDR:
1552c97af506SMatthias Ringwald             log_info("Set Public BD ADDR to %s", bd_addr_to_str(hci_stack->custom_bd_addr));
1553c97af506SMatthias Ringwald             hci_stack->chipset->set_bd_addr_command(hci_stack->custom_bd_addr, hci_stack->hci_packet_buffer);
1554c97af506SMatthias Ringwald             hci_stack->last_cmd_opcode = little_endian_read_16(hci_stack->hci_packet_buffer, 0);
1555c97af506SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_SET_BD_ADDR;
1556c97af506SMatthias Ringwald             hci_send_cmd_packet(hci_stack->hci_packet_buffer, 3u + hci_stack->hci_packet_buffer[2u]);
1557c97af506SMatthias Ringwald             break;
1558f4c579d4SMatthias Ringwald         case HCI_INIT_SEND_BAUD_CHANGE:
1559f4c579d4SMatthias Ringwald             if (need_baud_change) {
156096b53536SMatthias Ringwald                 uint32_t baud_rate = hci_transport_uart_get_main_baud_rate();
15613fb36a29SMatthias Ringwald                 hci_stack->chipset->set_baudrate_command(baud_rate, hci_stack->hci_packet_buffer);
1562f8fbdce0SMatthias Ringwald                 hci_stack->last_cmd_opcode = little_endian_read_16(hci_stack->hci_packet_buffer, 0);
156374b323a9SMatthias Ringwald                 hci_stack->substate = HCI_INIT_W4_SEND_BAUD_CHANGE;
15644ea43905SMatthias Ringwald                 hci_send_cmd_packet(hci_stack->hci_packet_buffer, 3u + hci_stack->hci_packet_buffer[2u]);
15654696bddbSMatthias Ringwald                 // STLC25000D: baudrate change happens within 0.5 s after command was send,
15664696bddbSMatthias Ringwald                 // use timer to update baud rate after 100 ms (knowing exactly, when command was sent is non-trivial)
156761f37892SMatthias Ringwald                 if (hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_ST_MICROELECTRONICS){
1568659d758cSMatthias Ringwald                     btstack_run_loop_set_timer(&hci_stack->timeout, HCI_RESET_RESEND_TIMEOUT_MS);
1569528a4a3bSMatthias Ringwald                     btstack_run_loop_add_timer(&hci_stack->timeout);
15704696bddbSMatthias Ringwald                }
157174b323a9SMatthias Ringwald                break;
1572fab26ab3SMatthias Ringwald             }
1573f4c579d4SMatthias Ringwald 
1574f4c579d4SMatthias Ringwald             /* fall through */
1575f4c579d4SMatthias Ringwald 
157674b323a9SMatthias Ringwald         case HCI_INIT_CUSTOM_INIT:
157774b323a9SMatthias Ringwald             // Custom initialization
15783fb36a29SMatthias Ringwald             if (hci_stack->chipset && hci_stack->chipset->next_command){
1579ae334e9eSMatthias Ringwald                 hci_stack->chipset_result = (*hci_stack->chipset->next_command)(hci_stack->hci_packet_buffer);
15801979f09cSMatthias Ringwald                 bool send_cmd = false;
1581ae334e9eSMatthias Ringwald                 switch (hci_stack->chipset_result){
1582f41911edSMatthias Ringwald                     case BTSTACK_CHIPSET_VALID_COMMAND:
15831979f09cSMatthias Ringwald                         send_cmd = true;
1584e47e68c7SMatthias Ringwald                         hci_stack->substate = HCI_INIT_W4_CUSTOM_INIT;
1585e47e68c7SMatthias Ringwald                         break;
1586f41911edSMatthias Ringwald                     case BTSTACK_CHIPSET_WARMSTART_REQUIRED:
15871979f09cSMatthias Ringwald                         send_cmd = true;
1588f41911edSMatthias Ringwald                         // CSR Warm Boot: Wait a bit, then send HCI Reset until HCI Command Complete
1589e47e68c7SMatthias Ringwald                         log_info("CSR Warm Boot");
1590659d758cSMatthias Ringwald                         btstack_run_loop_set_timer(&hci_stack->timeout, HCI_RESET_RESEND_TIMEOUT_MS);
1591528a4a3bSMatthias Ringwald                         btstack_run_loop_set_timer_handler(&hci_stack->timeout, hci_initialization_timeout_handler);
1592528a4a3bSMatthias Ringwald                         btstack_run_loop_add_timer(&hci_stack->timeout);
1593a1df452eSMatthias Ringwald                         if ((hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_CAMBRIDGE_SILICON_RADIO)
1594772a36d3SMatthias Ringwald                             && hci_stack->config
15953fb36a29SMatthias Ringwald                             && hci_stack->chipset
15963fb36a29SMatthias Ringwald                             // && hci_stack->chipset->set_baudrate_command -- there's no such command
1597772a36d3SMatthias Ringwald                             && hci_stack->hci_transport->set_baudrate
15982caefae9SMatthias Ringwald                             && hci_transport_uart_get_main_baud_rate()){
1599772a36d3SMatthias Ringwald                             hci_stack->substate = HCI_INIT_W4_SEND_BAUD_CHANGE;
1600772a36d3SMatthias Ringwald                         } else {
16019f007422SMatthias Ringwald                            hci_stack->substate = HCI_INIT_W4_CUSTOM_INIT_CSR_WARM_BOOT_LINK_RESET;
1602772a36d3SMatthias Ringwald                         }
1603e47e68c7SMatthias Ringwald                         break;
1604f41911edSMatthias Ringwald                     default:
1605f41911edSMatthias Ringwald                         break;
1606e47e68c7SMatthias Ringwald                 }
1607ee720f3aSMatthias Ringwald 
1608ee720f3aSMatthias Ringwald                 if (send_cmd){
16094ea43905SMatthias Ringwald                     int size = 3u + hci_stack->hci_packet_buffer[2u];
1610ee720f3aSMatthias Ringwald                     hci_stack->last_cmd_opcode = little_endian_read_16(hci_stack->hci_packet_buffer, 0);
1611ee720f3aSMatthias Ringwald                     hci_dump_packet(HCI_COMMAND_DATA_PACKET, 0, hci_stack->hci_packet_buffer, size);
16120305bdeaSMatthias Ringwald                     hci_stack->hci_transport->send_packet(HCI_COMMAND_DATA_PACKET, hci_stack->hci_packet_buffer, size);
161374b323a9SMatthias Ringwald                     break;
161474b323a9SMatthias Ringwald                 }
1615148ca237SMatthias Ringwald                 log_info("Init script done");
161692a0d36dSMatthias Ringwald 
1617559961d0SMatthias Ringwald                 // Init script download on Broadcom chipsets causes:
1618ae334e9eSMatthias Ringwald                 if ( (hci_stack->chipset_result != BTSTACK_CHIPSET_NO_INIT_SCRIPT) &&
1619a1df452eSMatthias Ringwald                    (  (hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_BROADCOM_CORPORATION)
1620a1df452eSMatthias Ringwald                 ||    (hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_EM_MICROELECTRONIC_MARIN_SA)) ){
1621e021ff1eSMatthias Ringwald 
1622559961d0SMatthias Ringwald                     // - baud rate to reset, restore UART baud rate if needed
162392a0d36dSMatthias Ringwald                     if (need_baud_change) {
16249796ebeaSMatthias Ringwald                         uint32_t baud_rate = ((hci_transport_config_uart_t *)hci_stack->config)->baudrate_init;
1625cd724cb7SMatthias Ringwald                         log_info("Local baud rate change to %" PRIu32 " after init script (bcm)", baud_rate);
162692a0d36dSMatthias Ringwald                         hci_stack->hci_transport->set_baudrate(baud_rate);
162792a0d36dSMatthias Ringwald                     }
1628559961d0SMatthias Ringwald 
1629f19b3c9eSMatthias Ringwald                     uint16_t bcm_delay_ms = 300;
1630f19b3c9eSMatthias Ringwald                     // - UART may or may not be disabled during update and Controller RTS may or may not be high during this time
1631f19b3c9eSMatthias Ringwald                     //   -> Work around: wait here.
1632f19b3c9eSMatthias Ringwald                     log_info("BCM delay (%u ms) after init script", bcm_delay_ms);
1633559961d0SMatthias Ringwald                     hci_stack->substate = HCI_INIT_W4_CUSTOM_INIT_BCM_DELAY;
1634f19b3c9eSMatthias Ringwald                     btstack_run_loop_set_timer(&hci_stack->timeout, bcm_delay_ms);
1635559961d0SMatthias Ringwald                     btstack_run_loop_set_timer_handler(&hci_stack->timeout, hci_initialization_timeout_handler);
1636559961d0SMatthias Ringwald                     btstack_run_loop_add_timer(&hci_stack->timeout);
1637559961d0SMatthias Ringwald                     break;
163892a0d36dSMatthias Ringwald                 }
163974b323a9SMatthias Ringwald             }
164006b9e820SMatthias Ringwald #endif
1641521bd5ffSMatthias Ringwald             /* fall through */
164206b9e820SMatthias Ringwald 
164306b9e820SMatthias Ringwald         case HCI_INIT_READ_LOCAL_SUPPORTED_COMMANDS:
164406b9e820SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_READ_LOCAL_SUPPORTED_COMMANDS;
164506b9e820SMatthias Ringwald             hci_send_cmd(&hci_read_local_supported_commands);
164606b9e820SMatthias Ringwald             break;
164753860077SMatthias Ringwald         case HCI_INIT_READ_BD_ADDR:
164853860077SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_READ_BD_ADDR;
164953860077SMatthias Ringwald             hci_send_cmd(&hci_read_bd_addr);
165053860077SMatthias Ringwald             break;
165174b323a9SMatthias Ringwald         case HCI_INIT_READ_BUFFER_SIZE:
16525ffe9d0bSMatthias Ringwald             // only read buffer size if supported
16531ffa425cSMatthias Ringwald             if (hci_command_supported(SUPPORTED_HCI_COMMAND_READ_BUFFER_SIZE)){
165474b323a9SMatthias Ringwald                 hci_stack->substate = HCI_INIT_W4_READ_BUFFER_SIZE;
16550305bdeaSMatthias Ringwald                 hci_send_cmd(&hci_read_buffer_size);
165674b323a9SMatthias Ringwald                 break;
16575ffe9d0bSMatthias Ringwald             }
1658521bd5ffSMatthias Ringwald 
16595ffe9d0bSMatthias Ringwald             /* fall through */
16605ffe9d0bSMatthias Ringwald 
166153860077SMatthias Ringwald         case HCI_INIT_READ_LOCAL_SUPPORTED_FEATURES:
166253860077SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_READ_LOCAL_SUPPORTED_FEATURES;
16630305bdeaSMatthias Ringwald             hci_send_cmd(&hci_read_local_supported_features);
166474b323a9SMatthias Ringwald             break;
16652b838201SMatthias Ringwald 
16662b838201SMatthias Ringwald #ifdef ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL
16672b838201SMatthias Ringwald         case HCI_INIT_SET_CONTROLLER_TO_HOST_FLOW_CONTROL:
16682b838201SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_SET_CONTROLLER_TO_HOST_FLOW_CONTROL;
16692b838201SMatthias Ringwald             hci_send_cmd(&hci_set_controller_to_host_flow_control, 3);  // ACL + SCO Flow Control
16702b838201SMatthias Ringwald             break;
16712b838201SMatthias Ringwald         case HCI_INIT_HOST_BUFFER_SIZE:
16722b838201SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_HOST_BUFFER_SIZE;
16732b838201SMatthias Ringwald             hci_send_cmd(&hci_host_buffer_size, HCI_HOST_ACL_PACKET_LEN, HCI_HOST_SCO_PACKET_LEN,
16742b838201SMatthias Ringwald                                                 HCI_HOST_ACL_PACKET_NUM, HCI_HOST_SCO_PACKET_NUM);
16752b838201SMatthias Ringwald             break;
16762b838201SMatthias Ringwald #endif
16772b838201SMatthias Ringwald 
167874b323a9SMatthias Ringwald         case HCI_INIT_SET_EVENT_MASK:
16790305bdeaSMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_SET_EVENT_MASK;
168074b323a9SMatthias Ringwald             if (hci_le_supported()){
16815ce1359eSMatthias Ringwald                 hci_send_cmd(&hci_set_event_mask,0xFFFFFFFFU, 0x3FFFFFFFU);
168274b323a9SMatthias Ringwald             } else {
168374b323a9SMatthias Ringwald                 // Kensington Bluetooth 2.1 USB Dongle (CSR Chipset) returns an error for 0xffff...
16845ce1359eSMatthias Ringwald                 hci_send_cmd(&hci_set_event_mask,0xFFFFFFFFU, 0x1FFFFFFFU);
168574b323a9SMatthias Ringwald             }
168674b323a9SMatthias Ringwald             break;
16872b838201SMatthias Ringwald 
168835454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
168974b323a9SMatthias Ringwald         case HCI_INIT_WRITE_SIMPLE_PAIRING_MODE:
1690f795c86eSMatthias Ringwald             if (hci_classic_supported() && gap_ssp_supported()){
169174b323a9SMatthias Ringwald                 hci_stack->substate = HCI_INIT_W4_WRITE_SIMPLE_PAIRING_MODE;
16920305bdeaSMatthias Ringwald                 hci_send_cmd(&hci_write_simple_pairing_mode, hci_stack->ssp_enable);
169374b323a9SMatthias Ringwald                 break;
1694e7c662faSMatthias Ringwald             }
1695521bd5ffSMatthias Ringwald 
1696e7c662faSMatthias Ringwald             /* fall through */
1697e7c662faSMatthias Ringwald 
1698f6858d14SMatthias Ringwald         case HCI_INIT_WRITE_INQUIRY_MODE:
1699f795c86eSMatthias Ringwald             if (hci_classic_supported()){
1700f6858d14SMatthias Ringwald                 hci_stack->substate = HCI_INIT_W4_WRITE_INQUIRY_MODE;
17018a114470SMatthias Ringwald                 hci_send_cmd(&hci_write_inquiry_mode, (int) hci_stack->inquiry_mode);
1702f6858d14SMatthias Ringwald                 break;
1703f795c86eSMatthias Ringwald             }
1704521bd5ffSMatthias Ringwald 
1705f795c86eSMatthias Ringwald             /* fall through */
1706f795c86eSMatthias Ringwald 
17075d23aae8SMatthias Ringwald         case HCI_INIT_WRITE_SECURE_CONNECTIONS_HOST_ENABLE:
1708f3052906SMatthias Ringwald             // skip write secure connections host support if not supported or disabled
17091ffa425cSMatthias Ringwald             if (hci_classic_supported() && hci_stack->secure_connections_enable
17101ffa425cSMatthias Ringwald             && hci_command_supported(SUPPORTED_HCI_COMMAND_WRITE_SECURE_CONNECTIONS_HOST)) {
1711c214d65bSMatthias Ringwald                 hci_stack->secure_connections_active = true;
17125d23aae8SMatthias Ringwald                 hci_stack->substate = HCI_INIT_W4_WRITE_SECURE_CONNECTIONS_HOST_ENABLE;
17131ffa425cSMatthias Ringwald                 hci_send_cmd(&hci_write_secure_connections_host_support, 1);
17145d23aae8SMatthias Ringwald                 break;
1715f3052906SMatthias Ringwald             }
1716521bd5ffSMatthias Ringwald 
1717e4c6114dSMatthias Ringwald #ifdef ENABLE_SCO_OVER_HCI
1718521bd5ffSMatthias Ringwald             /* fall through */
1719521bd5ffSMatthias Ringwald 
1720483c5078SMatthias Ringwald         // only sent if ENABLE_SCO_OVER_HCI is defined
1721729ed62eSMatthias Ringwald         case HCI_INIT_WRITE_SYNCHRONOUS_FLOW_CONTROL_ENABLE:
1722e4c6114dSMatthias Ringwald             // skip write synchronous flow control if not supported
17231ffa425cSMatthias Ringwald             if (hci_classic_supported()
17241ffa425cSMatthias Ringwald             && hci_command_supported(SUPPORTED_HCI_COMMAND_WRITE_SYNCHRONOUS_FLOW_CONTROL_ENABLE)) {
1725729ed62eSMatthias Ringwald                 hci_stack->substate = HCI_INIT_W4_WRITE_SYNCHRONOUS_FLOW_CONTROL_ENABLE;
1726729ed62eSMatthias Ringwald                 hci_send_cmd(&hci_write_synchronous_flow_control_enable, 1); // SCO tracking enabled
1727729ed62eSMatthias Ringwald                 break;
1728f795c86eSMatthias Ringwald             }
1729f795c86eSMatthias Ringwald             /* fall through */
1730f795c86eSMatthias Ringwald 
1731483c5078SMatthias Ringwald         case HCI_INIT_WRITE_DEFAULT_ERRONEOUS_DATA_REPORTING:
1732e4c6114dSMatthias Ringwald             // skip write default erroneous data reporting if not supported
17331ffa425cSMatthias Ringwald             if (hci_classic_supported()
17341ffa425cSMatthias Ringwald             && hci_command_supported(SUPPORTED_HCI_COMMAND_WRITE_DEFAULT_ERRONEOUS_DATA_REPORTING)) {
1735483c5078SMatthias Ringwald                 hci_stack->substate = HCI_INIT_W4_WRITE_DEFAULT_ERRONEOUS_DATA_REPORTING;
1736483c5078SMatthias Ringwald                 hci_send_cmd(&hci_write_default_erroneous_data_reporting, 1);
1737483c5078SMatthias Ringwald                 break;
1738f795c86eSMatthias Ringwald             }
1739e4c6114dSMatthias Ringwald #endif
1740f795c86eSMatthias Ringwald 
1741f795c86eSMatthias Ringwald #if defined(ENABLE_SCO_OVER_HCI) || defined(ENABLE_SCO_OVER_PCM)
1742521bd5ffSMatthias Ringwald             /* fall through */
1743521bd5ffSMatthias Ringwald 
17448051253fSMatthias Ringwald         // only sent if manufacturer is Broadcom and ENABLE_SCO_OVER_HCI or ENABLE_SCO_OVER_PCM is defined
1745a42798c3SMatthias Ringwald         case HCI_INIT_BCM_WRITE_SCO_PCM_INT:
1746e4c6114dSMatthias Ringwald             if (hci_classic_supported() && (hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_BROADCOM_CORPORATION)){
1747a42798c3SMatthias Ringwald                 hci_stack->substate = HCI_INIT_W4_BCM_WRITE_SCO_PCM_INT;
17488051253fSMatthias Ringwald #ifdef ENABLE_SCO_OVER_HCI
1749a42798c3SMatthias Ringwald                 log_info("BCM: Route SCO data via HCI transport");
1750a42798c3SMatthias Ringwald                 hci_send_cmd(&hci_bcm_write_sco_pcm_int, 1, 0, 0, 0, 0);
17518051253fSMatthias Ringwald #endif
17528051253fSMatthias Ringwald #ifdef ENABLE_SCO_OVER_PCM
17538051253fSMatthias Ringwald                 log_info("BCM: Route SCO data via PCM interface");
17541d2bbd54SMatthias Ringwald #ifdef ENABLE_BCM_PCM_WBS
1755f795c86eSMatthias Ringwald                 // 512 kHz bit clock for 2 channels x 16 bit x 16 kHz
17561d2bbd54SMatthias Ringwald                 hci_send_cmd(&hci_bcm_write_sco_pcm_int, 0, 2, 0, 1, 1);
17571d2bbd54SMatthias Ringwald #else
17581d2bbd54SMatthias Ringwald                 // 256 kHz bit clock for 2 channels x 16 bit x 8 kHz
17591d2bbd54SMatthias Ringwald                 hci_send_cmd(&hci_bcm_write_sco_pcm_int, 0, 1, 0, 1, 1);
17601d2bbd54SMatthias Ringwald #endif
17618051253fSMatthias Ringwald #endif
1762a42798c3SMatthias Ringwald                 break;
1763f795c86eSMatthias Ringwald             }
1764f795c86eSMatthias Ringwald #endif
1765f795c86eSMatthias Ringwald 
17664e821764SMatthias Ringwald #ifdef ENABLE_SCO_OVER_PCM
1767521bd5ffSMatthias Ringwald             /* fall through */
1768521bd5ffSMatthias Ringwald 
17694e821764SMatthias Ringwald         case HCI_INIT_BCM_WRITE_I2SPCM_INTERFACE_PARAM:
1770e4c6114dSMatthias Ringwald             if (hci_classic_supported() && (hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_BROADCOM_CORPORATION)){
17714e821764SMatthias Ringwald                 hci_stack->substate = HCI_INIT_W4_BCM_WRITE_I2SPCM_INTERFACE_PARAM;
17724e821764SMatthias Ringwald                 log_info("BCM: Config PCM interface for I2S");
17731d2bbd54SMatthias Ringwald #ifdef ENABLE_BCM_PCM_WBS
17741d2bbd54SMatthias Ringwald                 // 512 kHz bit clock for 2 channels x 16 bit x 8 kHz
17751d2bbd54SMatthias Ringwald                 hci_send_cmd(&hci_bcm_write_i2spcm_interface_param, 1, 1, 0, 2);
17761d2bbd54SMatthias Ringwald #else
17771d2bbd54SMatthias Ringwald                 // 256 kHz bit clock for 2 channels x 16 bit x 8 kHz
17781d2bbd54SMatthias Ringwald                 hci_send_cmd(&hci_bcm_write_i2spcm_interface_param, 1, 1, 0, 1);
17791d2bbd54SMatthias Ringwald #endif
17804e821764SMatthias Ringwald                 break;
1781f795c86eSMatthias Ringwald             }
178235454696SMatthias Ringwald #endif
17834e821764SMatthias Ringwald #endif
17844e821764SMatthias Ringwald 
1785a9a4c409SMatthias Ringwald #ifdef ENABLE_BLE
1786521bd5ffSMatthias Ringwald             /* fall through */
1787521bd5ffSMatthias Ringwald 
178874b323a9SMatthias Ringwald         // LE INIT
178974b323a9SMatthias Ringwald         case HCI_INIT_LE_READ_BUFFER_SIZE:
1790f795c86eSMatthias Ringwald             if (hci_le_supported()){
179174b323a9SMatthias Ringwald                 hci_stack->substate = HCI_INIT_W4_LE_READ_BUFFER_SIZE;
17920305bdeaSMatthias Ringwald                 hci_send_cmd(&hci_le_read_buffer_size);
179374b323a9SMatthias Ringwald                 break;
1794f795c86eSMatthias Ringwald             }
1795521bd5ffSMatthias Ringwald 
1796f795c86eSMatthias Ringwald             /* fall through */
1797f795c86eSMatthias Ringwald 
1798699a5fcaSMatthias Ringwald         case HCI_INIT_WRITE_LE_HOST_SUPPORTED:
1799699a5fcaSMatthias Ringwald             // skip write le host if not supported (e.g. on LE only EM9301)
18001ffa425cSMatthias Ringwald             if (hci_le_supported()
18011ffa425cSMatthias Ringwald             && hci_command_supported(SUPPORTED_HCI_COMMAND_WRITE_LE_HOST_SUPPORTED)) {
1802699a5fcaSMatthias Ringwald                 // LE Supported Host = 1, Simultaneous Host = 0
1803699a5fcaSMatthias Ringwald                 hci_stack->substate = HCI_INIT_W4_WRITE_LE_HOST_SUPPORTED;
1804699a5fcaSMatthias Ringwald                 hci_send_cmd(&hci_write_le_host_supported, 1, 0);
1805daabb8b8SMatthias Ringwald                 break;
1806f795c86eSMatthias Ringwald             }
1807521bd5ffSMatthias Ringwald 
1808f795c86eSMatthias Ringwald             /* fall through */
1809f795c86eSMatthias Ringwald 
1810699a5fcaSMatthias Ringwald         case HCI_INIT_LE_SET_EVENT_MASK:
1811f795c86eSMatthias Ringwald             if (hci_le_supported()){
1812699a5fcaSMatthias Ringwald                 hci_stack->substate = HCI_INIT_W4_LE_SET_EVENT_MASK;
1813*91d9e5d0SMatthias Ringwald                 hci_send_cmd(&hci_le_set_event_mask, 0xfffffdff, 0x07); // all events from core v5.3 without LE Enhanced Connection Complete
181474b323a9SMatthias Ringwald                 break;
1815f795c86eSMatthias Ringwald             }
1816b435e062SMatthias Ringwald #endif
1817b435e062SMatthias Ringwald 
1818b435e062SMatthias Ringwald #ifdef ENABLE_LE_DATA_LENGTH_EXTENSION
1819521bd5ffSMatthias Ringwald             /* fall through */
1820521bd5ffSMatthias Ringwald 
1821dcd678baSMatthias Ringwald         case HCI_INIT_LE_READ_MAX_DATA_LENGTH:
18221ffa425cSMatthias Ringwald             if (hci_le_supported()
18231ffa425cSMatthias Ringwald             && hci_command_supported(SUPPORTED_HCI_COMMAND_LE_READ_MAXIMUM_DATA_LENGTH)) {
1824dcd678baSMatthias Ringwald                 hci_stack->substate = HCI_INIT_W4_LE_READ_MAX_DATA_LENGTH;
1825dcd678baSMatthias Ringwald                 hci_send_cmd(&hci_le_read_maximum_data_length);
1826dcd678baSMatthias Ringwald                 break;
1827f795c86eSMatthias Ringwald             }
1828521bd5ffSMatthias Ringwald 
1829f795c86eSMatthias Ringwald             /* fall through */
1830f795c86eSMatthias Ringwald 
1831dcd678baSMatthias Ringwald         case HCI_INIT_LE_WRITE_SUGGESTED_DATA_LENGTH:
18321ffa425cSMatthias Ringwald             if (hci_le_supported()
18331ffa425cSMatthias Ringwald             && hci_command_supported(SUPPORTED_HCI_COMMAND_LE_WRITE_SUGGESTED_DEFAULT_DATA_LENGTH)) {
1834dcd678baSMatthias Ringwald                 hci_stack->substate = HCI_INIT_W4_LE_WRITE_SUGGESTED_DATA_LENGTH;
1835b435e062SMatthias 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);
1836dcd678baSMatthias Ringwald                 break;
1837f795c86eSMatthias Ringwald             }
1838b435e062SMatthias Ringwald #endif
1839b435e062SMatthias Ringwald 
1840b95a5a35SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
1841521bd5ffSMatthias Ringwald             /* fall through */
1842521bd5ffSMatthias Ringwald 
18433b6d4121SMatthias Ringwald         case HCI_INIT_READ_WHITE_LIST_SIZE:
1844f795c86eSMatthias Ringwald             if (hci_le_supported()){
18453b6d4121SMatthias Ringwald                 hci_stack->substate = HCI_INIT_W4_READ_WHITE_LIST_SIZE;
18463b6d4121SMatthias Ringwald                 hci_send_cmd(&hci_le_read_white_list_size);
18473b6d4121SMatthias Ringwald                 break;
1848f795c86eSMatthias Ringwald             }
1849521bd5ffSMatthias Ringwald 
185074b323a9SMatthias Ringwald #endif
18514f982f31SMatthias Ringwald 
1852521bd5ffSMatthias Ringwald             /* fall through */
1853521bd5ffSMatthias Ringwald 
1854f795c86eSMatthias Ringwald         case HCI_INIT_DONE:
18554f982f31SMatthias Ringwald             hci_stack->substate = HCI_INIT_DONE;
185673799937SMatthias Ringwald             // main init sequence complete
18574f982f31SMatthias Ringwald #ifdef ENABLE_CLASSIC
185873799937SMatthias Ringwald             // check if initial Classic GAP Tasks are completed
1859baa4881eSMatthias Ringwald             if (hci_classic_supported() && (hci_stack->gap_tasks_classic != 0)) {
18604f982f31SMatthias Ringwald                 hci_run_gap_tasks_classic();
18614f982f31SMatthias Ringwald                 break;
18624f982f31SMatthias Ringwald             }
18634f982f31SMatthias Ringwald #endif
186473799937SMatthias Ringwald #ifdef ENABLE_BLE
186573799937SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
186673799937SMatthias Ringwald             // check if initial LE GAP Tasks are completed
186773799937SMatthias Ringwald             if (hci_le_supported() && hci_stack->le_scanning_param_update) {
186873799937SMatthias Ringwald                 hci_run_general_gap_le();
186973799937SMatthias Ringwald                 break;
187073799937SMatthias Ringwald             }
187173799937SMatthias Ringwald #endif
187273799937SMatthias Ringwald #endif
1873f795c86eSMatthias Ringwald             hci_init_done();
1874f795c86eSMatthias Ringwald             break;
1875f795c86eSMatthias Ringwald 
187674b323a9SMatthias Ringwald         default:
187774b323a9SMatthias Ringwald             return;
187874b323a9SMatthias Ringwald     }
187955975f88SMatthias Ringwald }
188055975f88SMatthias Ringwald 
188107fd2f31SMatthias Ringwald static bool hci_initializing_event_handler_command_completed(const uint8_t * packet){
188207fd2f31SMatthias Ringwald     bool command_completed = false;
18830e2df43fSMatthias Ringwald     if (hci_event_packet_get_type(packet) == HCI_EVENT_COMMAND_COMPLETE){
1884f8fbdce0SMatthias Ringwald         uint16_t opcode = little_endian_read_16(packet,3);
18856155b3d3S[email protected]         if (opcode == hci_stack->last_cmd_opcode){
188607fd2f31SMatthias Ringwald             command_completed = true;
1887148ca237SMatthias Ringwald             log_debug("Command complete for expected opcode %04x at substate %u", opcode, hci_stack->substate);
18886155b3d3S[email protected]         } else {
1889d58dd308SMatthias Ringwald             log_info("Command complete for different opcode %04x, expected %04x, at substate %u", opcode, hci_stack->last_cmd_opcode, hci_stack->substate);
18906155b3d3S[email protected]         }
18916155b3d3S[email protected]     }
18920f97eae7SMatthias Ringwald 
18930e2df43fSMatthias Ringwald     if (hci_event_packet_get_type(packet) == HCI_EVENT_COMMAND_STATUS){
18946155b3d3S[email protected]         uint8_t  status = packet[2];
1895f8fbdce0SMatthias Ringwald         uint16_t opcode = little_endian_read_16(packet,4);
18966155b3d3S[email protected]         if (opcode == hci_stack->last_cmd_opcode){
18976155b3d3S[email protected]             if (status){
189807fd2f31SMatthias Ringwald                 command_completed = true;
1899148ca237SMatthias Ringwald                 log_debug("Command status error 0x%02x for expected opcode %04x at substate %u", status, opcode, hci_stack->substate);
19006155b3d3S[email protected]             } else {
19016155b3d3S[email protected]                 log_info("Command status OK for expected opcode %04x, waiting for command complete", opcode);
19026155b3d3S[email protected]             }
19036155b3d3S[email protected]         } else {
1904148ca237SMatthias Ringwald             log_debug("Command status for opcode %04x, expected %04x", opcode, hci_stack->last_cmd_opcode);
19056155b3d3S[email protected]         }
19066155b3d3S[email protected]     }
19076fad2c37SMatthias Ringwald #ifndef HAVE_HOST_CONTROLLER_API
1908e47e68c7SMatthias Ringwald     // Vendor == CSR
19090e588213SMatthias Ringwald     if ((hci_stack->substate == HCI_INIT_W4_CUSTOM_INIT) && (hci_event_packet_get_type(packet) == HCI_EVENT_VENDOR_SPECIFIC)){
1910e47e68c7SMatthias Ringwald         // TODO: track actual command
191107fd2f31SMatthias Ringwald         command_completed = true;
1912e47e68c7SMatthias Ringwald     }
1913a2481739S[email protected] 
19144e9daa6fSMatthias Ringwald     // Vendor == Toshiba
19150e588213SMatthias Ringwald     if ((hci_stack->substate == HCI_INIT_W4_SEND_BAUD_CHANGE) && (hci_event_packet_get_type(packet) == HCI_EVENT_VENDOR_SPECIFIC)){
19164e9daa6fSMatthias Ringwald         // TODO: track actual command
191707fd2f31SMatthias Ringwald         command_completed = true;
1918004902f1SMatthias Ringwald         // Fix: no HCI Command Complete received, so num_cmd_packets not reset
1919004902f1SMatthias Ringwald         hci_stack->num_cmd_packets = 1;
19204e9daa6fSMatthias Ringwald     }
192107fd2f31SMatthias Ringwald #endif
192207fd2f31SMatthias Ringwald 
192307fd2f31SMatthias Ringwald     return command_completed;
192407fd2f31SMatthias Ringwald }
192507fd2f31SMatthias Ringwald 
192607fd2f31SMatthias Ringwald static void hci_initializing_event_handler(const uint8_t * packet, uint16_t size){
192707fd2f31SMatthias Ringwald 
192807fd2f31SMatthias Ringwald     UNUSED(size);   // ok: less than 6 bytes are read from our buffer
192907fd2f31SMatthias Ringwald 
193007fd2f31SMatthias Ringwald     bool command_completed =  hci_initializing_event_handler_command_completed(packet);
193107fd2f31SMatthias Ringwald 
19326fad2c37SMatthias Ringwald #ifndef HAVE_HOST_CONTROLLER_API
19334e9daa6fSMatthias Ringwald 
19340f97eae7SMatthias Ringwald     // Late response (> 100 ms) for HCI Reset e.g. on Toshiba TC35661:
19350f97eae7SMatthias Ringwald     // Command complete for HCI Reset arrives after we've resent the HCI Reset command
19360f97eae7SMatthias Ringwald     //
19370f97eae7SMatthias Ringwald     // HCI Reset
19380f97eae7SMatthias Ringwald     // Timeout 100 ms
19390f97eae7SMatthias Ringwald     // HCI Reset
19400f97eae7SMatthias Ringwald     // Command Complete Reset
19410f97eae7SMatthias Ringwald     // HCI Read Local Version Information
19420f97eae7SMatthias Ringwald     // Command Complete Reset - but we expected Command Complete Read Local Version Information
19430f97eae7SMatthias Ringwald     // hang...
19440f97eae7SMatthias Ringwald     //
19450f97eae7SMatthias Ringwald     // Fix: Command Complete for HCI Reset in HCI_INIT_W4_SEND_READ_LOCAL_VERSION_INFORMATION trigger resend
19460f97eae7SMatthias Ringwald     if (!command_completed
1947a1df452eSMatthias Ringwald             && (hci_event_packet_get_type(packet) == HCI_EVENT_COMMAND_COMPLETE)
19480e588213SMatthias Ringwald             && (hci_stack->substate == HCI_INIT_W4_SEND_READ_LOCAL_VERSION_INFORMATION)){
19490f97eae7SMatthias Ringwald 
1950f8fbdce0SMatthias Ringwald         uint16_t opcode = little_endian_read_16(packet,3);
19510f97eae7SMatthias Ringwald         if (opcode == hci_reset.opcode){
19520f97eae7SMatthias Ringwald             hci_stack->substate = HCI_INIT_SEND_READ_LOCAL_VERSION_INFORMATION;
19530f97eae7SMatthias Ringwald             return;
19540f97eae7SMatthias Ringwald         }
19550f97eae7SMatthias Ringwald     }
19560f97eae7SMatthias Ringwald 
19579f007422SMatthias Ringwald     // CSR & H5
19589f007422SMatthias Ringwald     // Fix: Command Complete for HCI Reset in HCI_INIT_W4_SEND_READ_LOCAL_VERSION_INFORMATION trigger resend
19599f007422SMatthias Ringwald     if (!command_completed
1960a1df452eSMatthias Ringwald             && (hci_event_packet_get_type(packet) == HCI_EVENT_COMMAND_COMPLETE)
19610e588213SMatthias Ringwald             && (hci_stack->substate == HCI_INIT_W4_READ_LOCAL_SUPPORTED_COMMANDS)){
19629f007422SMatthias Ringwald 
19639f007422SMatthias Ringwald         uint16_t opcode = little_endian_read_16(packet,3);
19649f007422SMatthias Ringwald         if (opcode == hci_reset.opcode){
19659f007422SMatthias Ringwald             hci_stack->substate = HCI_INIT_READ_LOCAL_SUPPORTED_COMMANDS;
19669f007422SMatthias Ringwald             return;
19679f007422SMatthias Ringwald         }
19689f007422SMatthias Ringwald     }
19699f007422SMatthias Ringwald 
19709f007422SMatthias 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
19719f007422SMatthias Ringwald     // fix: Correct substate and behave as command below
19729f007422SMatthias Ringwald     if (command_completed){
19739f007422SMatthias Ringwald         switch (hci_stack->substate){
19749f007422SMatthias Ringwald             case HCI_INIT_SEND_RESET:
19759f007422SMatthias Ringwald                 hci_stack->substate = HCI_INIT_W4_SEND_RESET;
19769f007422SMatthias Ringwald                 break;
19779f007422SMatthias Ringwald             case HCI_INIT_SEND_RESET_CSR_WARM_BOOT:
19789f007422SMatthias Ringwald                 hci_stack->substate = HCI_INIT_W4_CUSTOM_INIT_CSR_WARM_BOOT;
19799f007422SMatthias Ringwald                 break;
19809f007422SMatthias Ringwald             default:
19819f007422SMatthias Ringwald                 break;
19829f007422SMatthias Ringwald         }
19839f007422SMatthias Ringwald     }
19840f97eae7SMatthias Ringwald 
198506b9e820SMatthias Ringwald #endif
19860f97eae7SMatthias Ringwald 
1987a2481739S[email protected]     if (!command_completed) return;
1988a2481739S[email protected] 
198907fd2f31SMatthias Ringwald     bool need_baud_change = false;
199007fd2f31SMatthias Ringwald     bool need_addr_change = false;
199106b9e820SMatthias Ringwald 
19926fad2c37SMatthias Ringwald #ifndef HAVE_HOST_CONTROLLER_API
199306b9e820SMatthias Ringwald     need_baud_change = hci_stack->config
19943fb36a29SMatthias Ringwald                         && hci_stack->chipset
19953fb36a29SMatthias Ringwald                         && hci_stack->chipset->set_baudrate_command
1996db8bc6ffSMatthias Ringwald                         && hci_stack->hci_transport->set_baudrate
19979796ebeaSMatthias Ringwald                         && ((hci_transport_config_uart_t *)hci_stack->config)->baudrate_main;
1998db8bc6ffSMatthias Ringwald 
199906b9e820SMatthias Ringwald     need_addr_change = hci_stack->custom_bd_addr_set
20003fb36a29SMatthias Ringwald                         && hci_stack->chipset
20013fb36a29SMatthias Ringwald                         && hci_stack->chipset->set_bd_addr_command;
200206b9e820SMatthias Ringwald #endif
2003a80162e9SMatthias Ringwald 
20045c363727SMatthias Ringwald     switch(hci_stack->substate){
200506b9e820SMatthias Ringwald 
20066fad2c37SMatthias Ringwald #ifndef HAVE_HOST_CONTROLLER_API
20079f007422SMatthias Ringwald         case HCI_INIT_SEND_RESET:
2008d58dd308SMatthias Ringwald             // on CSR with BCSP/H5, resend triggers resend of HCI Reset and leads to substate == HCI_INIT_SEND_RESET
20099f007422SMatthias Ringwald             // fix: just correct substate and behave as command below
2010f4c579d4SMatthias Ringwald 
2011f4c579d4SMatthias Ringwald             /* fall through */
2012f4c579d4SMatthias Ringwald #endif
2013f4c579d4SMatthias Ringwald 
201474b323a9SMatthias Ringwald         case HCI_INIT_W4_SEND_RESET:
2015528a4a3bSMatthias Ringwald             btstack_run_loop_remove_timer(&hci_stack->timeout);
2016f4c579d4SMatthias Ringwald             hci_stack->substate = HCI_INIT_SEND_READ_LOCAL_VERSION_INFORMATION;
20172f48d920SMatthias Ringwald             return;
2018f4c579d4SMatthias Ringwald 
2019f4c579d4SMatthias Ringwald #ifndef HAVE_HOST_CONTROLLER_API
2020a80162e9SMatthias Ringwald         case HCI_INIT_W4_SEND_BAUD_CHANGE:
20214696bddbSMatthias Ringwald             // for STLC2500D, baud rate change already happened.
2022fab26ab3SMatthias Ringwald             // for others, baud rate gets changed now
202361f37892SMatthias Ringwald             if ((hci_stack->manufacturer != BLUETOOTH_COMPANY_ID_ST_MICROELECTRONICS) && need_baud_change){
202496b53536SMatthias Ringwald                 uint32_t baud_rate = hci_transport_uart_get_main_baud_rate();
2025cd724cb7SMatthias Ringwald                 log_info("Local baud rate change to %" PRIu32 "(w4_send_baud_change)", baud_rate);
2026fab26ab3SMatthias Ringwald                 hci_stack->hci_transport->set_baudrate(baud_rate);
20274696bddbSMatthias Ringwald             }
202874b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_CUSTOM_INIT;
202974b323a9SMatthias Ringwald             return;
2030a80162e9SMatthias Ringwald         case HCI_INIT_W4_CUSTOM_INIT_CSR_WARM_BOOT:
2031528a4a3bSMatthias Ringwald             btstack_run_loop_remove_timer(&hci_stack->timeout);
2032a80162e9SMatthias Ringwald             hci_stack->substate = HCI_INIT_CUSTOM_INIT;
2033a80162e9SMatthias Ringwald             return;
203474b323a9SMatthias Ringwald         case HCI_INIT_W4_CUSTOM_INIT:
203574b323a9SMatthias Ringwald             // repeat custom init
203674b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_CUSTOM_INIT;
203774b323a9SMatthias Ringwald             return;
203806b9e820SMatthias Ringwald #endif
203906b9e820SMatthias Ringwald 
2040a828a756SMatthias Ringwald         case HCI_INIT_W4_READ_LOCAL_SUPPORTED_COMMANDS:
20410e588213SMatthias Ringwald             if (need_baud_change && (hci_stack->chipset_result != BTSTACK_CHIPSET_NO_INIT_SCRIPT) &&
2042efd3b327SMatthias Ringwald               ((hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_BROADCOM_CORPORATION) ||
2043efd3b327SMatthias Ringwald                (hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_EM_MICROELECTRONIC_MARIN_SA))) {
2044eb3a5314SMatthias Ringwald                 hci_stack->substate = HCI_INIT_SEND_BAUD_CHANGE_BCM;
2045eb3a5314SMatthias Ringwald                 return;
2046eb3a5314SMatthias Ringwald             }
204753860077SMatthias Ringwald             if (need_addr_change){
204853860077SMatthias Ringwald                 hci_stack->substate = HCI_INIT_SET_BD_ADDR;
204953860077SMatthias Ringwald                 return;
205053860077SMatthias Ringwald             }
205153860077SMatthias Ringwald             hci_stack->substate = HCI_INIT_READ_BD_ADDR;
205253860077SMatthias Ringwald             return;
20536fad2c37SMatthias Ringwald #ifndef HAVE_HOST_CONTROLLER_API
20547224be7eSMatthias Ringwald         case HCI_INIT_W4_SEND_BAUD_CHANGE_BCM:
20557224be7eSMatthias Ringwald             if (need_baud_change){
205696b53536SMatthias Ringwald                 uint32_t baud_rate = hci_transport_uart_get_main_baud_rate();
2057cd724cb7SMatthias Ringwald                 log_info("Local baud rate change to %" PRIu32 "(w4_send_baud_change_bcm))", baud_rate);
2058fab26ab3SMatthias Ringwald                 hci_stack->hci_transport->set_baudrate(baud_rate);
20597224be7eSMatthias Ringwald             }
2060eb3a5314SMatthias Ringwald             if (need_addr_change){
2061eb3a5314SMatthias Ringwald                 hci_stack->substate = HCI_INIT_SET_BD_ADDR;
2062eb3a5314SMatthias Ringwald                 return;
2063eb3a5314SMatthias Ringwald             }
2064eb3a5314SMatthias Ringwald             hci_stack->substate = HCI_INIT_READ_BD_ADDR;
2065eb3a5314SMatthias Ringwald             return;
206653860077SMatthias Ringwald         case HCI_INIT_W4_SET_BD_ADDR:
20676ca9a99aSMatthias Ringwald             // for STLC2500D + ATWILC3000, bd addr change only gets active after sending reset command
20686ca9a99aSMatthias Ringwald             if ((hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_ST_MICROELECTRONICS)
20696ca9a99aSMatthias Ringwald             ||  (hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_ATMEL_CORPORATION)){
207053860077SMatthias Ringwald                 hci_stack->substate = HCI_INIT_SEND_RESET_ST_WARM_BOOT;
207153860077SMatthias Ringwald                 return;
207253860077SMatthias Ringwald             }
207353860077SMatthias Ringwald             // skipping st warm boot
207453860077SMatthias Ringwald             hci_stack->substate = HCI_INIT_READ_BD_ADDR;
207553860077SMatthias Ringwald             return;
207653860077SMatthias Ringwald         case HCI_INIT_W4_SEND_RESET_ST_WARM_BOOT:
207753860077SMatthias Ringwald             hci_stack->substate = HCI_INIT_READ_BD_ADDR;
207853860077SMatthias Ringwald             return;
207906b9e820SMatthias Ringwald #endif
2080e7c662faSMatthias Ringwald 
2081f795c86eSMatthias Ringwald         case HCI_INIT_DONE:
2082eb8d95caSMatthias Ringwald             // set state if we came here by fall through
2083eb8d95caSMatthias Ringwald             hci_stack->substate = HCI_INIT_DONE;
2084f795c86eSMatthias Ringwald             return;
2085a650ba4dSMatthias Ringwald 
20866155b3d3S[email protected]         default:
208774b323a9SMatthias Ringwald             break;
20886155b3d3S[email protected]     }
208955975f88SMatthias Ringwald     hci_initializing_next_state();
20906155b3d3S[email protected] }
20916155b3d3S[email protected] 
20920bbba85bSMatthias Ringwald static void hci_handle_connection_failed(hci_connection_t * conn, uint8_t status){
20933bb5ff27SMatthias Ringwald     // CC2564C might emit Connection Complete for rejected incoming SCO connection
20943bb5ff27SMatthias Ringwald     // To prevent accidentally free'ing the CHI connection for the ACL connection,
20953bb5ff27SMatthias Ringwald     // check if the hci connection has been outgoing
20961f34df2cSMatthias Ringwald     switch (conn->state){
20971f34df2cSMatthias Ringwald         case SEND_CREATE_CONNECTION:
20981f34df2cSMatthias Ringwald         case RECEIVED_CONNECTION_REQUEST:
20991f34df2cSMatthias Ringwald             break;
21001f34df2cSMatthias Ringwald         default:
21011f34df2cSMatthias Ringwald             return;
21021f34df2cSMatthias Ringwald     }
21033bb5ff27SMatthias Ringwald 
2104229331c6SMatthias Ringwald     log_info("Outgoing connection to %s failed", bd_addr_to_str(conn->address));
21050bbba85bSMatthias Ringwald     bd_addr_t bd_address;
21066535961aSMatthias Ringwald     (void)memcpy(&bd_address, conn->address, 6);
21070bbba85bSMatthias Ringwald 
21086bc9fa5eSMatthias Ringwald #ifdef ENABLE_CLASSIC
21096bc9fa5eSMatthias Ringwald     // cache needed data
21106bc9fa5eSMatthias Ringwald     int notify_dedicated_bonding_failed = conn->bonding_flags & BONDING_DEDICATED;
21116bc9fa5eSMatthias Ringwald #endif
21126bc9fa5eSMatthias Ringwald 
21130bbba85bSMatthias Ringwald     // connection failed, remove entry
21140bbba85bSMatthias Ringwald     btstack_linked_list_remove(&hci_stack->connections, (btstack_linked_item_t *) conn);
21150bbba85bSMatthias Ringwald     btstack_memory_hci_connection_free( conn );
21160bbba85bSMatthias Ringwald 
21176bc9fa5eSMatthias Ringwald #ifdef ENABLE_CLASSIC
21180bbba85bSMatthias Ringwald     // notify client if dedicated bonding
21190bbba85bSMatthias Ringwald     if (notify_dedicated_bonding_failed){
21200bbba85bSMatthias Ringwald         log_info("hci notify_dedicated_bonding_failed");
21210bbba85bSMatthias Ringwald         hci_emit_dedicated_bonding_result(bd_address, status);
21220bbba85bSMatthias Ringwald     }
21230bbba85bSMatthias Ringwald 
21240bbba85bSMatthias Ringwald     // if authentication error, also delete link key
21250bbba85bSMatthias Ringwald     if (status == ERROR_CODE_AUTHENTICATION_FAILURE) {
21260bbba85bSMatthias Ringwald         gap_drop_link_key_for_bd_addr(bd_address);
21270bbba85bSMatthias Ringwald     }
21281c79b5e3SMatthias Ringwald #else
21291c79b5e3SMatthias Ringwald     UNUSED(status);
21306bc9fa5eSMatthias Ringwald #endif
21310bbba85bSMatthias Ringwald }
21320bbba85bSMatthias Ringwald 
2133be500194SMatthias Ringwald #ifdef ENABLE_CLASSIC
21342f5c44baSMatthias Ringwald static void hci_handle_remote_features_page_0(hci_connection_t * conn, const uint8_t * features){
21352f5c44baSMatthias Ringwald     // SSP Controller
21362f5c44baSMatthias Ringwald     if (features[6] & (1 << 3)){
21372f5c44baSMatthias Ringwald         conn->bonding_flags |= BONDING_REMOTE_SUPPORTS_SSP_CONTROLLER;
21382f5c44baSMatthias Ringwald     }
21392f5c44baSMatthias Ringwald     // eSCO
21402f5c44baSMatthias Ringwald     if (features[3] & (1<<7)){
21412f5c44baSMatthias Ringwald         conn->remote_supported_features[0] |= 1;
21422f5c44baSMatthias Ringwald     }
21432f5c44baSMatthias Ringwald     // Extended features
21442f5c44baSMatthias Ringwald     if (features[7] & (1<<7)){
21452f5c44baSMatthias Ringwald         conn->remote_supported_features[0] |= 2;
21462f5c44baSMatthias Ringwald     }
21472f5c44baSMatthias Ringwald }
21482f5c44baSMatthias Ringwald 
21492f5c44baSMatthias Ringwald static void hci_handle_remote_features_page_1(hci_connection_t * conn, const uint8_t * features){
21502f5c44baSMatthias Ringwald     // SSP Host
21512f5c44baSMatthias Ringwald     if (features[0] & (1 << 0)){
21522f5c44baSMatthias Ringwald         conn->bonding_flags |= BONDING_REMOTE_SUPPORTS_SSP_HOST;
21532f5c44baSMatthias Ringwald     }
215450c51a77SMatthias Ringwald     // SC Host
215550c51a77SMatthias Ringwald     if (features[0] & (1 << 3)){
215650c51a77SMatthias Ringwald         conn->bonding_flags |= BONDING_REMOTE_SUPPORTS_SC_HOST;
215750c51a77SMatthias Ringwald     }
215850c51a77SMatthias Ringwald }
215950c51a77SMatthias Ringwald 
216050c51a77SMatthias Ringwald static void hci_handle_remote_features_page_2(hci_connection_t * conn, const uint8_t * features){
216150c51a77SMatthias Ringwald     // SC Controller
216250c51a77SMatthias Ringwald     if (features[1] & (1 << 0)){
216350c51a77SMatthias Ringwald         conn->bonding_flags |= BONDING_REMOTE_SUPPORTS_SC_CONTROLLER;
216450c51a77SMatthias Ringwald     }
21652f5c44baSMatthias Ringwald }
21662f5c44baSMatthias Ringwald 
2167de0df013SMatthias Ringwald static void hci_handle_remote_features_received(hci_connection_t * conn){
2168461a2bc4SMatthias Ringwald     conn->bonding_flags &= ~BONDING_REMOTE_FEATURES_QUERY_ACTIVE;
2169de0df013SMatthias Ringwald     conn->bonding_flags |= BONDING_RECEIVED_REMOTE_FEATURES;
217049bafb5eSMatthias Ringwald     log_info("Remote features %02x, bonding flags %x", conn->remote_supported_features[0], conn->bonding_flags);
2171de0df013SMatthias Ringwald     if (conn->bonding_flags & BONDING_DEDICATED){
2172de0df013SMatthias Ringwald         conn->bonding_flags |= BONDING_SEND_AUTHENTICATE_REQUEST;
2173de0df013SMatthias Ringwald     }
2174de0df013SMatthias Ringwald }
2175128825c3SMatthias Ringwald static bool hci_remote_sc_enabled(hci_connection_t * connection){
2176128825c3SMatthias Ringwald     const uint16_t sc_enabled_mask = BONDING_REMOTE_SUPPORTS_SC_HOST | BONDING_REMOTE_SUPPORTS_SC_CONTROLLER;
2177128825c3SMatthias Ringwald     return (connection->bonding_flags & sc_enabled_mask) == sc_enabled_mask;
2178128825c3SMatthias Ringwald }
2179128825c3SMatthias Ringwald 
2180be500194SMatthias Ringwald #endif
2181de0df013SMatthias Ringwald 
218267c6c9dcSMatthias Ringwald static void handle_event_for_current_stack_state(const uint8_t * packet, uint16_t size) {
218367c6c9dcSMatthias Ringwald     // handle BT initialization
218467c6c9dcSMatthias Ringwald     if (hci_stack->state == HCI_STATE_INITIALIZING) {
218567c6c9dcSMatthias Ringwald         hci_initializing_event_handler(packet, size);
218667c6c9dcSMatthias Ringwald     }
218767c6c9dcSMatthias Ringwald 
218867c6c9dcSMatthias Ringwald     // help with BT sleep
218967c6c9dcSMatthias Ringwald     if ((hci_stack->state == HCI_STATE_FALLING_ASLEEP)
219067c6c9dcSMatthias Ringwald         && (hci_stack->substate == HCI_FALLING_ASLEEP_W4_WRITE_SCAN_ENABLE)
2191905ee0fdSMatthias Ringwald         && (HCI_EVENT_IS_COMMAND_COMPLETE(packet, hci_write_scan_enable))) {
219267c6c9dcSMatthias Ringwald         hci_initializing_next_state();
219367c6c9dcSMatthias Ringwald     }
219467c6c9dcSMatthias Ringwald }
219567c6c9dcSMatthias Ringwald 
21969866fdc7SMatthias Ringwald #ifdef ENABLE_CLASSIC
21979866fdc7SMatthias Ringwald static void hci_handle_read_encryption_key_size_complete(hci_connection_t * conn, uint8_t encryption_key_size) {
21988daf94bcSMatthias Ringwald     conn->authentication_flags |= AUTH_FLAG_CONNECTION_ENCRYPTED;
21999866fdc7SMatthias Ringwald     conn->encryption_key_size = encryption_key_size;
2200abdad579SMatthias Ringwald 
22018daf94bcSMatthias Ringwald     if ((conn->authentication_flags & AUTH_FLAG_CONNECTION_AUTHENTICATED) != 0) {
22021cf0a6c8SMatthias Ringwald         conn->requested_security_level = LEVEL_0;
22039866fdc7SMatthias Ringwald         hci_emit_security_level(conn->con_handle, gap_security_level_for_connection(conn));
2204abdad579SMatthias Ringwald         return;
2205abdad579SMatthias Ringwald     }
2206abdad579SMatthias Ringwald 
2207d54424c3SMatthias Ringwald     // Request remote features if not already done
2208dbe0d85cSMatthias Ringwald     hci_trigger_remote_features_for_connection(conn);
2209d54424c3SMatthias Ringwald 
2210abdad579SMatthias Ringwald     // Request Authentication if not already done
2211abdad579SMatthias Ringwald     if ((conn->bonding_flags & BONDING_SENT_AUTHENTICATE_REQUEST) != 0) return;
2212abdad579SMatthias Ringwald     conn->bonding_flags |= BONDING_SEND_AUTHENTICATE_REQUEST;
22139866fdc7SMatthias Ringwald }
22149866fdc7SMatthias Ringwald #endif
22159866fdc7SMatthias Ringwald 
22163b631737SMatthias Ringwald static void hci_store_local_supported_commands(const uint8_t * packet){
221725e46151SMatthias Ringwald     // create mapping table
221825e46151SMatthias Ringwald #define X(name, offset, bit) { offset, bit },
221925e46151SMatthias Ringwald     static struct {
222025e46151SMatthias Ringwald         uint8_t byte_offset;
222125e46151SMatthias Ringwald         uint8_t bit_position;
222225e46151SMatthias Ringwald     } supported_hci_commands_map [] = {
222325e46151SMatthias Ringwald         SUPPORTED_HCI_COMMANDS
222425e46151SMatthias Ringwald     };
222525e46151SMatthias Ringwald #undef X
222625e46151SMatthias Ringwald 
222725e46151SMatthias Ringwald     // create names for debug purposes
222825e46151SMatthias Ringwald #ifdef ENABLE_LOG_DEBUG
222925e46151SMatthias Ringwald #define X(name, offset, bit) #name,
223025e46151SMatthias Ringwald     static const char * command_names[] = {
223125e46151SMatthias Ringwald         SUPPORTED_HCI_COMMANDS
223225e46151SMatthias Ringwald     };
223325e46151SMatthias Ringwald #undef X
223425e46151SMatthias Ringwald #endif
223525e46151SMatthias Ringwald 
22361ffa425cSMatthias Ringwald     hci_stack->local_supported_commands = 0;
223725e46151SMatthias Ringwald     const uint8_t * commands_map = &packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE+1];
223825e46151SMatthias Ringwald     uint16_t i;
223925e46151SMatthias Ringwald     for (i = 0 ; i < SUPPORTED_HCI_COMMANDS_COUNT ; i++){
224025e46151SMatthias Ringwald         if ((commands_map[supported_hci_commands_map[i].byte_offset] & (1 << supported_hci_commands_map[i].bit_position)) != 0){
224125e46151SMatthias Ringwald #ifdef ENABLE_LOG_DEBUG
224225e46151SMatthias Ringwald             log_info("Command %s (%u) supported %u/%u", command_names[i], i, supported_hci_commands_map[i].byte_offset, supported_hci_commands_map[i].bit_position);
224325e46151SMatthias Ringwald #else
22441ffa425cSMatthias Ringwald             log_info("Command 0x%02x supported %u/%u", i, supported_hci_commands_map[i].byte_offset, supported_hci_commands_map[i].bit_position);
224525e46151SMatthias Ringwald #endif
22461ffa425cSMatthias Ringwald             hci_stack->local_supported_commands |= (1LU << i);
224725e46151SMatthias Ringwald         }
224825e46151SMatthias Ringwald     }
22491ffa425cSMatthias Ringwald     log_info("Local supported commands summary %04x", hci_stack->local_supported_commands);
22503b631737SMatthias Ringwald }
22513b631737SMatthias Ringwald 
22524f781026SMatthias Ringwald static void handle_command_complete_event(uint8_t * packet, uint16_t size){
2253b08371a9SMilanka Ringwald     UNUSED(size);
2254e76a89eeS[email protected] 
22559cbd2215SMatthias Ringwald     uint16_t manufacturer;
22569cbd2215SMatthias Ringwald #ifdef ENABLE_CLASSIC
2257fe1ed1b8Smatthias.ringwald     hci_con_handle_t handle;
22581f7b95a1Smatthias.ringwald     hci_connection_t * conn;
2259645b7c25SMatthias Ringwald     uint8_t status;
22609cbd2215SMatthias Ringwald #endif
22616bef4003SMatthias Ringwald     // get num cmd packets - limit to 1 to reduce complexity
22626bef4003SMatthias Ringwald     hci_stack->num_cmd_packets = packet[2] ? 1 : 0;
22637ec5eeaaSmatthias.ringwald 
2264645b7c25SMatthias Ringwald     uint16_t opcode = hci_event_command_complete_get_command_opcode(packet);
2265645b7c25SMatthias Ringwald     switch (opcode){
2266645b7c25SMatthias Ringwald         case HCI_OPCODE_HCI_READ_LOCAL_NAME:
2267645b7c25SMatthias Ringwald             if (packet[5]) break;
22689e263bd7SMatthias Ringwald             // terminate, name 248 chars
22699e263bd7SMatthias Ringwald             packet[6+248] = 0;
22709e263bd7SMatthias Ringwald             log_info("local name: %s", &packet[6]);
2271645b7c25SMatthias Ringwald             break;
2272645b7c25SMatthias Ringwald         case HCI_OPCODE_HCI_READ_BUFFER_SIZE:
22731d279b20Smatthias.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"
2274c3b46f5aSMatthias Ringwald             if (hci_stack->state == HCI_STATE_INITIALIZING) {
2275429122ccSMatthias Ringwald                 uint16_t acl_len = little_endian_read_16(packet, 6);
2276429122ccSMatthias Ringwald                 uint16_t sco_len = packet[8];
2277429122ccSMatthias Ringwald 
2278429122ccSMatthias Ringwald                 // determine usable ACL/SCO payload size
2279429122ccSMatthias Ringwald                 hci_stack->acl_data_packet_length = btstack_min(acl_len, HCI_ACL_PAYLOAD_SIZE);
2280429122ccSMatthias Ringwald                 hci_stack->sco_data_packet_length = btstack_min(sco_len, HCI_ACL_PAYLOAD_SIZE);
2281429122ccSMatthias Ringwald 
2282f8fbdce0SMatthias Ringwald                 hci_stack->acl_packets_total_num = little_endian_read_16(packet, 9);
2283f8fbdce0SMatthias Ringwald                 hci_stack->sco_packets_total_num = little_endian_read_16(packet, 11);
2284a8b12447S[email protected] 
2285429122ccSMatthias Ringwald                 log_info("hci_read_buffer_size: ACL size module %u -> used %u, count %u / SCO size %u, count %u",
2286429122ccSMatthias Ringwald                          acl_len, hci_stack->acl_data_packet_length, hci_stack->acl_packets_total_num,
22871a06f663S[email protected]                          hci_stack->sco_data_packet_length, hci_stack->sco_packets_total_num);
2288c3b46f5aSMatthias Ringwald             }
2289645b7c25SMatthias Ringwald             break;
2290645b7c25SMatthias Ringwald         case HCI_OPCODE_HCI_READ_RSSI:
2291645b7c25SMatthias Ringwald             if (packet[5] == ERROR_CODE_SUCCESS){
2292891b9fc2SMatthias Ringwald                 uint8_t event[5];
2293891b9fc2SMatthias Ringwald                 event[0] = GAP_EVENT_RSSI_MEASUREMENT;
2294891b9fc2SMatthias Ringwald                 event[1] = 3;
22956535961aSMatthias Ringwald                 (void)memcpy(&event[2], &packet[6], 3);
2296891b9fc2SMatthias Ringwald                 hci_emit_event(event, sizeof(event), 1);
2297891b9fc2SMatthias Ringwald             }
2298645b7c25SMatthias Ringwald             break;
2299a9a4c409SMatthias Ringwald #ifdef ENABLE_BLE
2300645b7c25SMatthias Ringwald         case HCI_OPCODE_HCI_LE_READ_BUFFER_SIZE:
2301f8fbdce0SMatthias Ringwald             hci_stack->le_data_packets_length = little_endian_read_16(packet, 6);
2302ee303eddS[email protected]             hci_stack->le_acl_packets_total_num = packet[8];
23036c26b087S[email protected]             // determine usable ACL payload size
23046c26b087S[email protected]             if (HCI_ACL_PAYLOAD_SIZE < hci_stack->le_data_packets_length){
23056c26b087S[email protected]                 hci_stack->le_data_packets_length = HCI_ACL_PAYLOAD_SIZE;
23066c26b087S[email protected]             }
23079da54300S[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);
2308645b7c25SMatthias Ringwald             break;
2309b435e062SMatthias Ringwald #endif
2310b435e062SMatthias Ringwald #ifdef ENABLE_LE_DATA_LENGTH_EXTENSION
2311645b7c25SMatthias Ringwald         case HCI_OPCODE_HCI_LE_READ_MAXIMUM_DATA_LENGTH:
2312dcd678baSMatthias Ringwald             hci_stack->le_supported_max_tx_octets = little_endian_read_16(packet, 6);
2313dcd678baSMatthias Ringwald             hci_stack->le_supported_max_tx_time = little_endian_read_16(packet, 8);
2314dcd678baSMatthias 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);
2315645b7c25SMatthias Ringwald             break;
2316b435e062SMatthias Ringwald #endif
2317d70217a2SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
2318645b7c25SMatthias Ringwald         case HCI_OPCODE_HCI_LE_READ_WHITE_LIST_SIZE:
2319e691bb38SMatthias Ringwald             hci_stack->le_whitelist_capacity = packet[6];
232015d0a15bSMatthias Ringwald             log_info("hci_le_read_white_list_size: size %u", hci_stack->le_whitelist_capacity);
2321645b7c25SMatthias Ringwald             break;
232265a46ef3S[email protected] #endif
2323645b7c25SMatthias Ringwald         case HCI_OPCODE_HCI_READ_BD_ADDR:
2324645b7c25SMatthias Ringwald             reverse_bd_addr(&packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE + 1], hci_stack->local_bd_addr);
2325645b7c25SMatthias Ringwald             log_info("Local Address, Status: 0x%02x: Addr: %s", packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE], bd_addr_to_str(hci_stack->local_bd_addr));
232633373e40SMatthias Ringwald #ifdef ENABLE_CLASSIC
23271624665aSMatthias Ringwald             if (hci_stack->link_key_db){
23281624665aSMatthias Ringwald                 hci_stack->link_key_db->set_local_bd_addr(hci_stack->local_bd_addr);
23291624665aSMatthias Ringwald             }
233033373e40SMatthias Ringwald #endif
2331645b7c25SMatthias Ringwald             break;
233235454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
2333645b7c25SMatthias Ringwald         case HCI_OPCODE_HCI_WRITE_SCAN_ENABLE:
23343a9fb326S[email protected]             hci_emit_discoverable_enabled(hci_stack->discoverable);
2335645b7c25SMatthias Ringwald             break;
2336645b7c25SMatthias Ringwald         case HCI_OPCODE_HCI_INQUIRY_CANCEL:
2337f5875de5SMatthias Ringwald             if (hci_stack->inquiry_state == GAP_INQUIRY_STATE_W4_CANCELLED){
2338f5875de5SMatthias Ringwald                 hci_stack->inquiry_state = GAP_INQUIRY_STATE_IDLE;
2339f5875de5SMatthias Ringwald                 uint8_t event[] = { GAP_EVENT_INQUIRY_COMPLETE, 1, 0};
2340f5875de5SMatthias Ringwald                 hci_emit_event(event, sizeof(event), 1);
2341f5875de5SMatthias Ringwald             }
2342645b7c25SMatthias Ringwald             break;
234335454696SMatthias Ringwald #endif
2344645b7c25SMatthias Ringwald         case HCI_OPCODE_HCI_READ_LOCAL_SUPPORTED_FEATURES:
23454f781026SMatthias Ringwald             (void)memcpy(hci_stack->local_supported_features, &packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE + 1], 8);
234665389bfcS[email protected] 
234735454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
2348a5a23fc2S[email protected]             // determine usable ACL packet types based on host buffer size and supported features
2349a5a23fc2S[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]);
23508b96126aSMatthias Ringwald             log_info("Packet types %04x, eSCO %u", hci_stack->packet_types, hci_extended_sco_link_supported());
235135454696SMatthias Ringwald #endif
2352f5d8d141S[email protected]             // Classic/LE
2353f5d8d141S[email protected]             log_info("BR/EDR support %u, LE support %u", hci_classic_supported(), hci_le_supported());
2354645b7c25SMatthias Ringwald             break;
2355645b7c25SMatthias Ringwald         case HCI_OPCODE_HCI_READ_LOCAL_VERSION_INFORMATION:
2356645b7c25SMatthias Ringwald             manufacturer = little_endian_read_16(packet, 10);
2357c21d89f3SMatthias Ringwald             // map Cypress to Broadcom
2358c21d89f3SMatthias Ringwald             if (manufacturer  == BLUETOOTH_COMPANY_ID_CYPRESS_SEMICONDUCTOR){
2359c21d89f3SMatthias Ringwald                 log_info("Treat Cypress as Broadcom");
2360c21d89f3SMatthias Ringwald                 manufacturer = BLUETOOTH_COMPANY_ID_BROADCOM_CORPORATION;
2361c21d89f3SMatthias Ringwald                 little_endian_store_16(packet, 10, manufacturer);
2362c21d89f3SMatthias Ringwald             }
2363c21d89f3SMatthias Ringwald             hci_stack->manufacturer = manufacturer;
23644696bddbSMatthias Ringwald             log_info("Manufacturer: 0x%04x", hci_stack->manufacturer);
2365645b7c25SMatthias Ringwald             break;
2366645b7c25SMatthias Ringwald         case HCI_OPCODE_HCI_READ_LOCAL_SUPPORTED_COMMANDS:
23673b631737SMatthias Ringwald             hci_store_local_supported_commands(packet);
2368645b7c25SMatthias Ringwald             break;
2369e8c8828eSMatthias Ringwald #ifdef ENABLE_CLASSIC
2370645b7c25SMatthias Ringwald         case HCI_OPCODE_HCI_WRITE_SYNCHRONOUS_FLOW_CONTROL_ENABLE:
23714f781026SMatthias Ringwald             if (packet[5]) return;
23725b9b590fSMatthias Ringwald             hci_stack->synchronous_flow_control_enabled = 1;
2373645b7c25SMatthias Ringwald             break;
2374645b7c25SMatthias Ringwald         case HCI_OPCODE_HCI_READ_ENCRYPTION_KEY_SIZE:
2375645b7c25SMatthias Ringwald             status = packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE];
2376573897a0SMatthias Ringwald             handle = little_endian_read_16(packet, OFFSET_OF_DATA_IN_COMMAND_COMPLETE+1);
2377573897a0SMatthias Ringwald             conn   = hci_connection_for_handle(handle);
2378c3b46f5aSMatthias Ringwald             if (conn != NULL) {
23799866fdc7SMatthias Ringwald                 uint8_t key_size = 0;
2380573897a0SMatthias Ringwald                 if (status == 0){
23819866fdc7SMatthias Ringwald                     key_size = packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE+3];
23824a659b0eSMatthias Ringwald                     log_info("Handle %04x key Size: %u", handle, key_size);
2383170fafaeSMatthias Ringwald                 } else {
2384e9f98c4aSMatthias Ringwald                     key_size = 1;
23859866fdc7SMatthias Ringwald                     log_info("Read Encryption Key Size failed 0x%02x-> assuming insecure connection with key size of 1", status);
2386573897a0SMatthias Ringwald                 }
23879866fdc7SMatthias Ringwald                 hci_handle_read_encryption_key_size_complete(conn, key_size);
2388c3b46f5aSMatthias Ringwald             }
2389645b7c25SMatthias Ringwald             break;
2390cc15bb2cSMatthias Ringwald         // assert pairing complete event is emitted.
2391cc15bb2cSMatthias Ringwald         // note: for SSP, Simple Pairing Complete Event is sufficient, but we want to be more robust
2392cc15bb2cSMatthias Ringwald         case HCI_OPCODE_HCI_PIN_CODE_REQUEST_NEGATIVE_REPLY:
2393cc15bb2cSMatthias Ringwald         case HCI_OPCODE_HCI_USER_PASSKEY_REQUEST_NEGATIVE_REPLY:
2394cc15bb2cSMatthias Ringwald         case HCI_OPCODE_HCI_USER_CONFIRMATION_REQUEST_NEGATIVE_REPLY:
23958cc1507eSMatthias Ringwald             hci_stack->gap_pairing_state = GAP_PAIRING_STATE_IDLE;
2396cc15bb2cSMatthias Ringwald             // lookup connection by gap pairing addr
2397cc15bb2cSMatthias Ringwald             conn = hci_connection_for_bd_addr_and_type(hci_stack->gap_pairing_addr, BD_ADDR_TYPE_ACL);
2398cc15bb2cSMatthias Ringwald             if (conn == NULL) break;
2399cc15bb2cSMatthias Ringwald             hci_pairing_complete(conn, ERROR_CODE_AUTHENTICATION_FAILURE);
2400cc15bb2cSMatthias Ringwald             break;
2401cc15bb2cSMatthias Ringwald 
240275a8e4faSMatthias Ringwald #ifdef ENABLE_CLASSIC_PAIRING_OOB
240375a8e4faSMatthias Ringwald         case HCI_OPCODE_HCI_READ_LOCAL_OOB_DATA:
240475a8e4faSMatthias Ringwald         case HCI_OPCODE_HCI_READ_LOCAL_EXTENDED_OOB_DATA:{
240575a8e4faSMatthias Ringwald             uint8_t event[67];
240675a8e4faSMatthias Ringwald             event[0] = GAP_EVENT_LOCAL_OOB_DATA;
240775a8e4faSMatthias Ringwald             event[1] = 65;
240875a8e4faSMatthias Ringwald             (void)memset(&event[2], 0, 65);
240975a8e4faSMatthias Ringwald             if (packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE] == ERROR_CODE_SUCCESS){
241075a8e4faSMatthias Ringwald                 (void)memcpy(&event[3], &packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE+1], 32);
241175a8e4faSMatthias Ringwald                 if (opcode == HCI_OPCODE_HCI_READ_LOCAL_EXTENDED_OOB_DATA){
241275a8e4faSMatthias Ringwald                     event[2] = 3;
241375a8e4faSMatthias Ringwald                     (void)memcpy(&event[35], &packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE+33], 32);
241475a8e4faSMatthias Ringwald                 } else {
241575a8e4faSMatthias Ringwald                     event[2] = 1;
241675a8e4faSMatthias Ringwald                 }
241775a8e4faSMatthias Ringwald             }
241875a8e4faSMatthias Ringwald             hci_emit_event(event, sizeof(event), 0);
241975a8e4faSMatthias Ringwald             break;
242075a8e4faSMatthias Ringwald         }
24211ae74bf3SMatthias Ringwald 
24221ae74bf3SMatthias Ringwald         // note: only needed if user does not provide OOB data
24231ae74bf3SMatthias Ringwald         case HCI_OPCODE_HCI_REMOTE_OOB_DATA_REQUEST_NEGATIVE_REPLY:
24241ae74bf3SMatthias Ringwald             conn = hci_connection_for_handle(hci_stack->classic_oob_con_handle);
24251ae74bf3SMatthias Ringwald             hci_stack->classic_oob_con_handle = HCI_CON_HANDLE_INVALID;
24261ae74bf3SMatthias Ringwald             if (conn == NULL) break;
24271ae74bf3SMatthias Ringwald             hci_pairing_complete(conn, ERROR_CODE_AUTHENTICATION_FAILURE);
24281ae74bf3SMatthias Ringwald             break;
2429e8c8828eSMatthias Ringwald #endif
243075a8e4faSMatthias Ringwald #endif
24316f35bb46SMatthias Ringwald         default:
24326f35bb46SMatthias Ringwald             break;
24334f781026SMatthias Ringwald     }
2434645b7c25SMatthias Ringwald }
24354f781026SMatthias Ringwald 
24360ce3f217SMatthias Ringwald #ifdef ENABLE_BLE
24370ce3f217SMatthias Ringwald static void event_handle_le_connection_complete(const uint8_t * packet){
24380ce3f217SMatthias Ringwald 	bd_addr_t addr;
24390ce3f217SMatthias Ringwald 	bd_addr_type_t addr_type;
24400ce3f217SMatthias Ringwald 	hci_connection_t * conn;
24410ce3f217SMatthias Ringwald 
24420ce3f217SMatthias Ringwald 	// Connection management
24430ce3f217SMatthias Ringwald 	reverse_bd_addr(&packet[8], addr);
24440ce3f217SMatthias Ringwald 	addr_type = (bd_addr_type_t)packet[7];
24450ce3f217SMatthias Ringwald 	log_info("LE Connection_complete (status=%u) type %u, %s", packet[3], addr_type, bd_addr_to_str(addr));
24460ce3f217SMatthias Ringwald 	conn = hci_connection_for_bd_addr_and_type(addr, addr_type);
24470ce3f217SMatthias Ringwald 
24480ce3f217SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
24490ce3f217SMatthias Ringwald 	// handle error: error is reported only to the initiator -> outgoing connection
24500ce3f217SMatthias Ringwald 	if (packet[3]){
24510ce3f217SMatthias Ringwald 
24520ce3f217SMatthias Ringwald 		// handle cancelled outgoing connection
24530ce3f217SMatthias Ringwald 		// "If the cancellation was successful then, after the Command Complete event for the LE_Create_Connection_Cancel command,
24540ce3f217SMatthias Ringwald 		//  either an LE Connection Complete or an LE Enhanced Connection Complete event shall be generated.
24550ce3f217SMatthias Ringwald 		//  In either case, the event shall be sent with the error code Unknown Connection Identifier (0x02)."
24560ce3f217SMatthias Ringwald 		if (packet[3] == ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER){
24571f468175SMatthias Ringwald 		    // reset state
24580ce3f217SMatthias Ringwald             hci_stack->le_connecting_state   = LE_CONNECTING_IDLE;
24591f468175SMatthias Ringwald             hci_stack->le_connecting_request = LE_CONNECTING_IDLE;
24600ce3f217SMatthias Ringwald 			// get outgoing connection conn struct for direct connect
24610ce3f217SMatthias Ringwald 			conn = gap_get_outgoing_connection();
24620ce3f217SMatthias Ringwald 		}
24630ce3f217SMatthias Ringwald 
24640ce3f217SMatthias Ringwald 		// outgoing le connection establishment is done
24650ce3f217SMatthias Ringwald 		if (conn){
24660ce3f217SMatthias Ringwald 			// remove entry
24670ce3f217SMatthias Ringwald 			btstack_linked_list_remove(&hci_stack->connections, (btstack_linked_item_t *) conn);
24680ce3f217SMatthias Ringwald 			btstack_memory_hci_connection_free( conn );
24690ce3f217SMatthias Ringwald 		}
24700ce3f217SMatthias Ringwald 		return;
24710ce3f217SMatthias Ringwald 	}
24720ce3f217SMatthias Ringwald #endif
24730ce3f217SMatthias Ringwald 
24740ce3f217SMatthias Ringwald 	// on success, both hosts receive connection complete event
24750ce3f217SMatthias Ringwald 	if (packet[6] == HCI_ROLE_MASTER){
24760ce3f217SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
24770ce3f217SMatthias Ringwald 		// if we're master on an le connection, it was an outgoing connection and we're done with it
24780ce3f217SMatthias Ringwald 		// note: no hci_connection_t object exists yet for connect with whitelist
24790ce3f217SMatthias Ringwald 		if (hci_is_le_connection_type(addr_type)){
24800ce3f217SMatthias Ringwald 			hci_stack->le_connecting_state   = LE_CONNECTING_IDLE;
24810ce3f217SMatthias Ringwald 			hci_stack->le_connecting_request = LE_CONNECTING_IDLE;
24820ce3f217SMatthias Ringwald 		}
24830ce3f217SMatthias Ringwald #endif
24840ce3f217SMatthias Ringwald 	} else {
24850ce3f217SMatthias Ringwald #ifdef ENABLE_LE_PERIPHERAL
24860ce3f217SMatthias Ringwald 		// if we're slave, it was an incoming connection, advertisements have stopped
24870ce3f217SMatthias Ringwald 		hci_stack->le_advertisements_active = false;
24880ce3f217SMatthias Ringwald #endif
24890ce3f217SMatthias Ringwald 	}
24900ce3f217SMatthias Ringwald 
24910ce3f217SMatthias Ringwald 	// LE connections are auto-accepted, so just create a connection if there isn't one already
24920ce3f217SMatthias Ringwald 	if (!conn){
24930ce3f217SMatthias Ringwald 		conn = create_connection_for_bd_addr_and_type(addr, addr_type);
24940ce3f217SMatthias Ringwald 	}
24950ce3f217SMatthias Ringwald 
24960ce3f217SMatthias Ringwald 	// no memory, sorry.
24970ce3f217SMatthias Ringwald 	if (!conn){
24980ce3f217SMatthias Ringwald 		return;
24990ce3f217SMatthias Ringwald 	}
25000ce3f217SMatthias Ringwald 
25010ce3f217SMatthias Ringwald 	conn->state = OPEN;
25020ce3f217SMatthias Ringwald 	conn->role  = packet[6];
25030ce3f217SMatthias Ringwald 	conn->con_handle             = hci_subevent_le_connection_complete_get_connection_handle(packet);
25040ce3f217SMatthias Ringwald 	conn->le_connection_interval = hci_subevent_le_connection_complete_get_conn_interval(packet);
25050ce3f217SMatthias Ringwald 
25060ce3f217SMatthias Ringwald #ifdef ENABLE_LE_PERIPHERAL
25070ce3f217SMatthias Ringwald 	if (packet[6] == HCI_ROLE_SLAVE){
25080ce3f217SMatthias Ringwald 		hci_update_advertisements_enabled_for_current_roles();
25090ce3f217SMatthias Ringwald 	}
25100ce3f217SMatthias Ringwald #endif
25110ce3f217SMatthias Ringwald 
2512dde9ff1eSMatthias Ringwald     // init unenhanced att bearer mtu
2513dde9ff1eSMatthias Ringwald     conn->att_connection.mtu = ATT_DEFAULT_MTU;
2514dde9ff1eSMatthias Ringwald     conn->att_connection.mtu_exchanged = false;
2515dde9ff1eSMatthias Ringwald 
25160ce3f217SMatthias Ringwald     // TODO: store - role, peer address type, conn_interval, conn_latency, supervision timeout, master clock
25170ce3f217SMatthias Ringwald 
25180ce3f217SMatthias Ringwald 	// restart timer
25190ce3f217SMatthias Ringwald 	// btstack_run_loop_set_timer(&conn->timeout, HCI_CONNECTION_TIMEOUT_MS);
25200ce3f217SMatthias Ringwald 	// btstack_run_loop_add_timer(&conn->timeout);
25210ce3f217SMatthias Ringwald 
25220ce3f217SMatthias Ringwald 	log_info("New connection: handle %u, %s", conn->con_handle, bd_addr_to_str(conn->address));
25230ce3f217SMatthias Ringwald 
25240ce3f217SMatthias Ringwald 	hci_emit_nr_connections_changed();
25250ce3f217SMatthias Ringwald }
25260ce3f217SMatthias Ringwald #endif
25270ce3f217SMatthias Ringwald 
252817c6fe5cSMatthias Ringwald #ifdef ENABLE_CLASSIC
252917c6fe5cSMatthias Ringwald static bool hci_ssp_security_level_possible_for_io_cap(gap_security_level_t level, uint8_t io_cap_local, uint8_t io_cap_remote){
253017c6fe5cSMatthias Ringwald     if (io_cap_local == SSP_IO_CAPABILITY_UNKNOWN) return false;
253117c6fe5cSMatthias Ringwald     // LEVEL_4 is tested by l2cap
25329a8f78c1SMatthias Ringwald     // LEVEL 3 requires MITM protection -> check io capabilities if Authenticated is possible
25339a8f78c1SMatthias Ringwald     // @see: Core Spec v5.3, Vol 3, Part C, Table 5.7
253417c6fe5cSMatthias Ringwald     if (level >= LEVEL_3){
25359a8f78c1SMatthias Ringwald         // MITM not possible without keyboard or display
253617c6fe5cSMatthias Ringwald         if (io_cap_remote >= SSP_IO_CAPABILITY_NO_INPUT_NO_OUTPUT) return false;
253717c6fe5cSMatthias Ringwald         if (io_cap_local  >= SSP_IO_CAPABILITY_NO_INPUT_NO_OUTPUT) return false;
25389a8f78c1SMatthias Ringwald 
25399a8f78c1SMatthias Ringwald         // MITM possible if one side has keyboard and the other has keyboard or display
25409a8f78c1SMatthias Ringwald         if (io_cap_remote == SSP_IO_CAPABILITY_KEYBOARD_ONLY)      return true;
25419a8f78c1SMatthias Ringwald         if (io_cap_local  == SSP_IO_CAPABILITY_KEYBOARD_ONLY)      return true;
25429a8f78c1SMatthias Ringwald 
25439a8f78c1SMatthias Ringwald         // MITM not possible if one side has only display and other side has no keyboard
25449a8f78c1SMatthias Ringwald         if (io_cap_remote == SSP_IO_CAPABILITY_DISPLAY_ONLY)       return false;
25459a8f78c1SMatthias Ringwald         if (io_cap_local  == SSP_IO_CAPABILITY_DISPLAY_ONLY)       return false;
254617c6fe5cSMatthias Ringwald     }
254717c6fe5cSMatthias Ringwald     // LEVEL 2 requires SSP, which is a given
254817c6fe5cSMatthias Ringwald     return true;
254917c6fe5cSMatthias Ringwald }
25503817f9dfSMatthias Ringwald 
25513817f9dfSMatthias Ringwald static bool btstack_is_null(uint8_t * data, uint16_t size){
25523817f9dfSMatthias Ringwald     uint16_t i;
25533817f9dfSMatthias Ringwald     for (i=0; i < size ; i++){
25543817f9dfSMatthias Ringwald         if (data[i] != 0) {
25553817f9dfSMatthias Ringwald             return false;
25563817f9dfSMatthias Ringwald         }
25573817f9dfSMatthias Ringwald     }
25583817f9dfSMatthias Ringwald     return true;
25593817f9dfSMatthias Ringwald }
25603817f9dfSMatthias Ringwald 
2561b3c4163bSMatthias Ringwald static void hci_ssp_assess_security_on_io_cap_request(hci_connection_t * conn){
25622dd8985bSMatthias Ringwald     // get requested security level
25632dd8985bSMatthias Ringwald     gap_security_level_t requested_security_level = conn->requested_security_level;
25642dd8985bSMatthias Ringwald     if (hci_stack->gap_secure_connections_only_mode){
25652dd8985bSMatthias Ringwald         requested_security_level = LEVEL_4;
25662dd8985bSMatthias Ringwald     }
25672dd8985bSMatthias Ringwald 
2568b3c4163bSMatthias Ringwald     // assess security: LEVEL 4 requires SC
25692dd8985bSMatthias Ringwald     // skip this preliminary test if remote features are not available yet to work around potential issue in ESP32 controller
25702dd8985bSMatthias Ringwald     if ((requested_security_level == LEVEL_4) &&
25712dd8985bSMatthias Ringwald         ((conn->bonding_flags & BONDING_RECEIVED_REMOTE_FEATURES) != 0) &&
25722dd8985bSMatthias Ringwald         !hci_remote_sc_enabled(conn)){
2573b3c4163bSMatthias Ringwald         log_info("Level 4 required, but SC not supported -> abort");
2574b3c4163bSMatthias Ringwald         hci_pairing_complete(conn, ERROR_CODE_INSUFFICIENT_SECURITY);
2575b3c4163bSMatthias Ringwald         connectionSetAuthenticationFlags(conn, AUTH_FLAG_SEND_IO_CAPABILITIES_NEGATIVE_REPLY);
2576b3c4163bSMatthias Ringwald         return;
2577b3c4163bSMatthias Ringwald     }
2578b3c4163bSMatthias Ringwald 
2579b3c4163bSMatthias Ringwald     // assess security based on io capabilities
2580b3c4163bSMatthias Ringwald     if (conn->authentication_flags & AUTH_FLAG_RECV_IO_CAPABILITIES_RESPONSE){
2581b3c4163bSMatthias Ringwald         // responder: fully validate io caps of both sides as well as OOB data
2582b3c4163bSMatthias Ringwald         bool security_possible = false;
2583b3c4163bSMatthias Ringwald         security_possible = hci_ssp_security_level_possible_for_io_cap(requested_security_level, hci_stack->ssp_io_capability, conn->io_cap_response_io);
2584b3c4163bSMatthias Ringwald 
2585b3c4163bSMatthias Ringwald #ifdef ENABLE_CLASSIC_PAIRING_OOB
2586b3c4163bSMatthias Ringwald         // We assume that both Controller can reach LEVEL 4, if one side has received P-192 and the other has received P-256,
2587b3c4163bSMatthias Ringwald         // so we merge the OOB data availability
2588b3c4163bSMatthias Ringwald         uint8_t have_oob_data = conn->io_cap_response_oob_data;
2589b3c4163bSMatthias Ringwald         if (conn->classic_oob_c_192 != NULL){
2590b3c4163bSMatthias Ringwald             have_oob_data |= 1;
2591b3c4163bSMatthias Ringwald         }
2592b3c4163bSMatthias Ringwald         if (conn->classic_oob_c_256 != NULL){
2593b3c4163bSMatthias Ringwald             have_oob_data |= 2;
2594b3c4163bSMatthias Ringwald         }
2595b3c4163bSMatthias Ringwald         // for up to Level 3, either P-192 as well as P-256 will do
2596b3c4163bSMatthias Ringwald         // if we don't support SC, then a) conn->classic_oob_c_256 will be NULL and b) remote should not report P-256 available
2597b3c4163bSMatthias Ringwald         // if remote does not SC, we should not receive P-256 data either
2598b3c4163bSMatthias Ringwald         if ((requested_security_level <= LEVEL_3) && (have_oob_data != 0)){
2599b3c4163bSMatthias Ringwald             security_possible = true;
2600b3c4163bSMatthias Ringwald         }
2601b3c4163bSMatthias Ringwald         // for Level 4, P-256 is needed
2602b3c4163bSMatthias Ringwald         if ((requested_security_level == LEVEL_4 && ((have_oob_data & 2) != 0))){
2603b3c4163bSMatthias Ringwald             security_possible = true;
2604b3c4163bSMatthias Ringwald         }
2605b3c4163bSMatthias Ringwald #endif
2606b3c4163bSMatthias Ringwald 
2607b3c4163bSMatthias Ringwald         if (security_possible == false){
26082dd8985bSMatthias Ringwald             log_info("IOCap/OOB insufficient for level %u -> abort", requested_security_level);
2609b3c4163bSMatthias Ringwald             hci_pairing_complete(conn, ERROR_CODE_INSUFFICIENT_SECURITY);
2610b3c4163bSMatthias Ringwald             connectionSetAuthenticationFlags(conn, AUTH_FLAG_SEND_IO_CAPABILITIES_NEGATIVE_REPLY);
2611b3c4163bSMatthias Ringwald             return;
2612b3c4163bSMatthias Ringwald         }
2613b3c4163bSMatthias Ringwald     } else {
2614b3c4163bSMatthias Ringwald         // initiator: remote io cap not yet, only check if we have ability for MITM protection if requested and OOB is not supported
26151fe968f5SMatthias Ringwald #ifndef ENABLE_CLASSIC_PAIRING_OOB
26161fe968f5SMatthias Ringwald #ifndef ENABLE_EXPLICIT_IO_CAPABILITIES_REPLY
2617b3c4163bSMatthias Ringwald         if ((conn->requested_security_level >= LEVEL_3) && (hci_stack->ssp_io_capability >= SSP_IO_CAPABILITY_NO_INPUT_NO_OUTPUT)){
2618b3c4163bSMatthias Ringwald             log_info("Level 3+ required, but no input/output -> abort");
2619b3c4163bSMatthias Ringwald             hci_pairing_complete(conn, ERROR_CODE_INSUFFICIENT_SECURITY);
2620b3c4163bSMatthias Ringwald             connectionSetAuthenticationFlags(conn, AUTH_FLAG_SEND_IO_CAPABILITIES_NEGATIVE_REPLY);
2621b3c4163bSMatthias Ringwald             return;
2622b3c4163bSMatthias Ringwald         }
2623b3c4163bSMatthias Ringwald #endif
26241fe968f5SMatthias Ringwald #endif
2625b3c4163bSMatthias Ringwald     }
2626b3c4163bSMatthias Ringwald 
2627b3c4163bSMatthias Ringwald #ifndef ENABLE_EXPLICIT_IO_CAPABILITIES_REPLY
2628b3c4163bSMatthias Ringwald     if (hci_stack->ssp_io_capability != SSP_IO_CAPABILITY_UNKNOWN){
2629b3c4163bSMatthias Ringwald         connectionSetAuthenticationFlags(conn, AUTH_FLAG_SEND_IO_CAPABILITIES_REPLY);
2630b3c4163bSMatthias Ringwald     } else {
2631b3c4163bSMatthias Ringwald         connectionSetAuthenticationFlags(conn, AUTH_FLAG_SEND_IO_CAPABILITIES_NEGATIVE_REPLY);
2632b3c4163bSMatthias Ringwald     }
2633b3c4163bSMatthias Ringwald #endif
2634b3c4163bSMatthias Ringwald }
2635b3c4163bSMatthias Ringwald 
263617c6fe5cSMatthias Ringwald #endif
263717c6fe5cSMatthias Ringwald 
2638c3b46f5aSMatthias Ringwald static void event_handler(uint8_t *packet, uint16_t size){
26394f781026SMatthias Ringwald 
26404f781026SMatthias Ringwald     uint16_t event_length = packet[1];
26414f781026SMatthias Ringwald 
26424f781026SMatthias Ringwald     // assert packet is complete
26434ea43905SMatthias Ringwald     if (size != (event_length + 2u)){
26444f781026SMatthias Ringwald         log_error("event_handler called with packet of wrong size %d, expected %u => dropping packet", size, event_length + 2);
26454f781026SMatthias Ringwald         return;
26464f781026SMatthias Ringwald     }
26474f781026SMatthias Ringwald 
26484f781026SMatthias Ringwald     bd_addr_type_t addr_type;
26494f781026SMatthias Ringwald     hci_con_handle_t handle;
26504f781026SMatthias Ringwald     hci_connection_t * conn;
26514f781026SMatthias Ringwald     int i;
26524f781026SMatthias Ringwald     int create_connection_cmd;
26534f781026SMatthias Ringwald 
26544f781026SMatthias Ringwald #ifdef ENABLE_CLASSIC
26555e91d96cSMatthias Ringwald     hci_link_type_t link_type;
265648f33f37SMatthias Ringwald     bd_addr_t addr;
26574f781026SMatthias Ringwald #endif
26584f781026SMatthias Ringwald 
26594f781026SMatthias Ringwald     // log_info("HCI:EVENT:%02x", hci_event_packet_get_type(packet));
26604f781026SMatthias Ringwald 
26614f781026SMatthias Ringwald     switch (hci_event_packet_get_type(packet)) {
26624f781026SMatthias Ringwald 
26634f781026SMatthias Ringwald         case HCI_EVENT_COMMAND_COMPLETE:
26644f781026SMatthias Ringwald             handle_command_complete_event(packet, size);
266556cf178bSmatthias.ringwald             break;
266656cf178bSmatthias.ringwald 
26677ec5eeaaSmatthias.ringwald         case HCI_EVENT_COMMAND_STATUS:
26686bef4003SMatthias Ringwald             // get num cmd packets - limit to 1 to reduce complexity
26696bef4003SMatthias Ringwald             hci_stack->num_cmd_packets = packet[3] ? 1 : 0;
2670229331c6SMatthias Ringwald 
2671229331c6SMatthias Ringwald             // check command status to detected failed outgoing connections
2672c57fa566SMatthias Ringwald             create_connection_cmd = 0;
2673c57fa566SMatthias Ringwald #ifdef ENABLE_CLASSIC
2674c57fa566SMatthias Ringwald             if (HCI_EVENT_IS_COMMAND_STATUS(packet, hci_create_connection)){
2675c57fa566SMatthias Ringwald                 create_connection_cmd = 1;
2676c57fa566SMatthias Ringwald             }
26771f34df2cSMatthias Ringwald             if (HCI_EVENT_IS_COMMAND_STATUS(packet, hci_accept_synchronous_connection)){
26781f34df2cSMatthias Ringwald                 create_connection_cmd = 1;
26791f34df2cSMatthias Ringwald             }
2680c57fa566SMatthias Ringwald #endif
2681c57fa566SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
2682c57fa566SMatthias Ringwald             if (HCI_EVENT_IS_COMMAND_STATUS(packet, hci_le_create_connection)){
2683c57fa566SMatthias Ringwald                 create_connection_cmd = 1;
2684c57fa566SMatthias Ringwald             }
2685c57fa566SMatthias Ringwald #endif
2686c57fa566SMatthias Ringwald             if (create_connection_cmd) {
2687229331c6SMatthias Ringwald                 uint8_t status = hci_event_command_status_get_status(packet);
26888da98cbeSMatthias Ringwald                 addr_type = hci_stack->outgoing_addr_type;
26896ea9315cSMatthias Ringwald                 conn = hci_connection_for_bd_addr_and_type(hci_stack->outgoing_addr, addr_type);
26906ea9315cSMatthias 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), addr_type);
2691229331c6SMatthias Ringwald 
2692229331c6SMatthias Ringwald                 // reset outgoing address info
2693229331c6SMatthias Ringwald                 memset(hci_stack->outgoing_addr, 0, 6);
2694229331c6SMatthias Ringwald                 hci_stack->outgoing_addr_type = BD_ADDR_TYPE_UNKNOWN;
2695229331c6SMatthias Ringwald 
26966ea9315cSMatthias Ringwald                 // on error
26976ea9315cSMatthias Ringwald                 if (status != ERROR_CODE_SUCCESS){
2698f75e06adSMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
26996ea9315cSMatthias Ringwald                     if (hci_is_le_connection_type(addr_type)){
27006ea9315cSMatthias Ringwald                         hci_stack->le_connecting_state = LE_CONNECTING_IDLE;
2701f7e6a692SMatthias Ringwald                         hci_stack->le_connecting_request = LE_CONNECTING_IDLE;
27026ea9315cSMatthias Ringwald                     }
2703f75e06adSMatthias Ringwald #endif
2704229331c6SMatthias Ringwald                     // error => outgoing connection failed
27056ea9315cSMatthias Ringwald                     if (conn != NULL){
2706229331c6SMatthias Ringwald                         hci_handle_connection_failed(conn, status);
2707229331c6SMatthias Ringwald                     }
2708229331c6SMatthias Ringwald                 }
27096ea9315cSMatthias Ringwald             }
2710beb3c81dSMatthias Ringwald 
2711beb3c81dSMatthias Ringwald #ifdef ENABLE_CLASSIC
2712beb3c81dSMatthias Ringwald             if (HCI_EVENT_IS_COMMAND_STATUS(packet, hci_inquiry)) {
2713beb3c81dSMatthias Ringwald                 uint8_t status = hci_event_command_status_get_status(packet);
2714beb3c81dSMatthias Ringwald                 log_info("command status (inquiry), status %x", status);
2715beb3c81dSMatthias Ringwald                 if (status == ERROR_CODE_SUCCESS) {
2716beb3c81dSMatthias Ringwald                     hci_stack->inquiry_state = GAP_INQUIRY_STATE_ACTIVE;
2717beb3c81dSMatthias Ringwald                 } else {
2718beb3c81dSMatthias Ringwald                     hci_stack->inquiry_state = GAP_INQUIRY_STATE_IDLE;
2719beb3c81dSMatthias Ringwald                 }
2720beb3c81dSMatthias Ringwald             }
2721beb3c81dSMatthias Ringwald #endif
27227ec5eeaaSmatthias.ringwald             break;
27237ec5eeaaSmatthias.ringwald 
27242e440c8aS[email protected]         case HCI_EVENT_NUMBER_OF_COMPLETED_PACKETS:{
27259784dac1SMatthias Ringwald             if (size < 3) return;
27269784dac1SMatthias Ringwald             uint16_t num_handles = packet[2];
27274ea43905SMatthias Ringwald             if (size != (3u + num_handles * 4u)) return;
27289784dac1SMatthias Ringwald             uint16_t offset = 3;
27299784dac1SMatthias Ringwald             for (i=0; i<num_handles;i++){
27304ea43905SMatthias Ringwald                 handle = little_endian_read_16(packet, offset) & 0x0fffu;
27314ea43905SMatthias Ringwald                 offset += 2u;
2732f8fbdce0SMatthias Ringwald                 uint16_t num_packets = little_endian_read_16(packet, offset);
27334ea43905SMatthias Ringwald                 offset += 2u;
27342e440c8aS[email protected] 
27355061f3afS[email protected]                 conn = hci_connection_for_handle(handle);
273656cf178bSmatthias.ringwald                 if (!conn){
27379da54300S[email protected]                     log_error("hci_number_completed_packet lists unused con handle %u", handle);
273856cf178bSmatthias.ringwald                     continue;
273956cf178bSmatthias.ringwald                 }
274023bed257S[email protected] 
2741ce41473eSMatthias Ringwald                 if (conn->num_packets_sent >= num_packets){
2742ce41473eSMatthias Ringwald                     conn->num_packets_sent -= num_packets;
2743e35edcc1S[email protected]                 } else {
2744ce41473eSMatthias Ringwald                     log_error("hci_number_completed_packets, more packet slots freed then sent.");
2745ce41473eSMatthias Ringwald                     conn->num_packets_sent = 0;
2746e35edcc1S[email protected]                 }
2747ce41473eSMatthias Ringwald                 // log_info("hci_number_completed_packet %u processed for handle %u, outstanding %u", num_packets, handle, conn->num_packets_sent);
2748760b20efSMatthias Ringwald 
2749760b20efSMatthias Ringwald #ifdef ENABLE_CLASSIC
2750760b20efSMatthias Ringwald                 // For SCO, we do the can_send_now_check here
2751760b20efSMatthias Ringwald                 hci_notify_if_sco_can_send_now();
2752760b20efSMatthias Ringwald #endif
275356cf178bSmatthias.ringwald             }
27546772a24cSmatthias.ringwald             break;
27552e440c8aS[email protected]         }
275635454696SMatthias Ringwald 
275735454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
2758f5875de5SMatthias Ringwald         case HCI_EVENT_INQUIRY_COMPLETE:
2759f5875de5SMatthias Ringwald             if (hci_stack->inquiry_state == GAP_INQUIRY_STATE_ACTIVE){
2760f5875de5SMatthias Ringwald                 hci_stack->inquiry_state = GAP_INQUIRY_STATE_IDLE;
2761f5875de5SMatthias Ringwald                 uint8_t event[] = { GAP_EVENT_INQUIRY_COMPLETE, 1, 0};
2762f5875de5SMatthias Ringwald                 hci_emit_event(event, sizeof(event), 1);
2763f5875de5SMatthias Ringwald             }
2764f5875de5SMatthias Ringwald             break;
2765b7f1ee76SMatthias Ringwald         case HCI_EVENT_REMOTE_NAME_REQUEST_COMPLETE:
2766b7f1ee76SMatthias Ringwald             if (hci_stack->remote_name_state == GAP_REMOTE_NAME_STATE_W4_COMPLETE){
2767b7f1ee76SMatthias Ringwald                 hci_stack->remote_name_state = GAP_REMOTE_NAME_STATE_IDLE;
2768b7f1ee76SMatthias Ringwald             }
2769b7f1ee76SMatthias Ringwald             break;
27701f7b95a1Smatthias.ringwald         case HCI_EVENT_CONNECTION_REQUEST:
2771724d70a2SMatthias Ringwald             reverse_bd_addr(&packet[2], addr);
27725e91d96cSMatthias Ringwald             link_type = (hci_link_type_t) packet[11];
277372cf8859SMatthias Ringwald 
277472cf8859SMatthias Ringwald             // CVE-2020-26555: reject incoming connection from device with same BD ADDR
277572cf8859SMatthias Ringwald             if (memcmp(hci_stack->local_bd_addr, addr, 6) == 0){
277672cf8859SMatthias Ringwald                 hci_stack->decline_reason = ERROR_CODE_CONNECTION_REJECTED_DUE_TO_UNACCEPTABLE_BD_ADDR;
277772cf8859SMatthias Ringwald                 bd_addr_copy(hci_stack->decline_addr, addr);
277872cf8859SMatthias Ringwald                 break;
277972cf8859SMatthias Ringwald             }
278072cf8859SMatthias Ringwald 
278107e010b6SMilanka Ringwald             if (hci_stack->gap_classic_accept_callback != NULL){
27825e91d96cSMatthias Ringwald                 if ((*hci_stack->gap_classic_accept_callback)(addr, link_type) == 0){
27834536712cSMilanka Ringwald                     hci_stack->decline_reason = ERROR_CODE_CONNECTION_REJECTED_DUE_TO_UNACCEPTABLE_BD_ADDR;
278407e010b6SMilanka Ringwald                     bd_addr_copy(hci_stack->decline_addr, addr);
278507e010b6SMilanka Ringwald                     break;
278607e010b6SMilanka Ringwald                 }
278707e010b6SMilanka Ringwald             }
278807e010b6SMilanka Ringwald 
278937eaa4cfSmatthias.ringwald             // TODO: eval COD 8-10
27905e91d96cSMatthias Ringwald             log_info("Connection_incoming: %s, type %u", bd_addr_to_str(addr), (unsigned int) link_type);
27915e91d96cSMatthias Ringwald             addr_type = (link_type == HCI_LINK_TYPE_ACL) ? BD_ADDR_TYPE_ACL : BD_ADDR_TYPE_SCO;
27922e77e513S[email protected]             conn = hci_connection_for_bd_addr_and_type(addr, addr_type);
27931f7b95a1Smatthias.ringwald             if (!conn) {
27945293c072S[email protected]                 conn = create_connection_for_bd_addr_and_type(addr, addr_type);
27951f7b95a1Smatthias.ringwald             }
2796ce4c8fabSmatthias.ringwald             if (!conn) {
2797ce4c8fabSmatthias.ringwald                 // CONNECTION REJECTED DUE TO LIMITED RESOURCES (0X0D)
27984536712cSMilanka Ringwald                 hci_stack->decline_reason = ERROR_CODE_CONNECTION_REJECTED_DUE_TO_LIMITED_RESOURCES;
2799058e3d6bSMatthias Ringwald                 bd_addr_copy(hci_stack->decline_addr, addr);
2800f23819bcSMatthias Ringwald                 hci_run();
2801f23819bcSMatthias Ringwald                 // avoid event to higher layer
2802f23819bcSMatthias Ringwald                 return;
2803ce4c8fabSmatthias.ringwald             }
28045cf766e8SMatthias Ringwald             conn->role  = HCI_ROLE_SLAVE;
280532ab9390Smatthias.ringwald             conn->state = RECEIVED_CONNECTION_REQUEST;
2806f3a16b9aSMatthias Ringwald             // store info about eSCO
28075e91d96cSMatthias Ringwald             if (link_type == HCI_LINK_TYPE_ESCO){
280876ccfb2aSMatthias Ringwald                 conn->remote_supported_features[0] |= 1;
2809f3a16b9aSMatthias Ringwald             }
281032ab9390Smatthias.ringwald             hci_run();
28111f7b95a1Smatthias.ringwald             break;
28121f7b95a1Smatthias.ringwald 
28136772a24cSmatthias.ringwald         case HCI_EVENT_CONNECTION_COMPLETE:
2814fe1ed1b8Smatthias.ringwald             // Connection management
2815724d70a2SMatthias Ringwald             reverse_bd_addr(&packet[5], addr);
28169da54300S[email protected]             log_info("Connection_complete (status=%u) %s", packet[2], bd_addr_to_str(addr));
2817f16129ceSMatthias Ringwald             addr_type = BD_ADDR_TYPE_ACL;
28182e77e513S[email protected]             conn = hci_connection_for_bd_addr_and_type(addr, addr_type);
2819fe1ed1b8Smatthias.ringwald             if (conn) {
2820b448a0e7Smatthias.ringwald                 if (!packet[2]){
2821c8e4258aSmatthias.ringwald                     conn->state = OPEN;
2822f8fbdce0SMatthias Ringwald                     conn->con_handle = little_endian_read_16(packet, 3);
28236909f064SMatthias Ringwald 
2824e6c51921SMatthias Ringwald                     // queue set supervision timeout if we're master
2825d821984bSMatthias Ringwald                     if ((hci_stack->link_supervision_timeout != HCI_LINK_SUPERVISION_TIMEOUT_DEFAULT) && (conn->role == HCI_ROLE_MASTER)){
28268daf94bcSMatthias Ringwald                         connectionSetAuthenticationFlags(conn, AUTH_FLAG_WRITE_SUPERVISION_TIMEOUT);
28276909f064SMatthias Ringwald                     }
28286909f064SMatthias Ringwald 
2829c785ef68Smatthias.ringwald                     // restart timer
2830528a4a3bSMatthias Ringwald                     btstack_run_loop_set_timer(&conn->timeout, HCI_CONNECTION_TIMEOUT_MS);
2831528a4a3bSMatthias Ringwald                     btstack_run_loop_add_timer(&conn->timeout);
2832c785ef68Smatthias.ringwald 
283318c4a0a3SMatthias Ringwald                     // trigger remote features for dedicated bonding
283418c4a0a3SMatthias Ringwald                     if ((conn->bonding_flags & BONDING_DEDICATED) != 0){
283518c4a0a3SMatthias Ringwald                         hci_trigger_remote_features_for_connection(conn);
283618c4a0a3SMatthias Ringwald                     }
283718c4a0a3SMatthias Ringwald 
28389da54300S[email protected]                     log_info("New connection: handle %u, %s", conn->con_handle, bd_addr_to_str(conn->address));
283943bfb1bdSmatthias.ringwald 
284043bfb1bdSmatthias.ringwald                     hci_emit_nr_connections_changed();
2841b448a0e7Smatthias.ringwald                 } else {
28420bbba85bSMatthias Ringwald                     // connection failed
28430bbba85bSMatthias Ringwald                     hci_handle_connection_failed(conn, packet[2]);
2844fe1ed1b8Smatthias.ringwald                 }
2845fe1ed1b8Smatthias.ringwald             }
28466772a24cSmatthias.ringwald             break;
2847fe1ed1b8Smatthias.ringwald 
284844d0e3d5S[email protected]         case HCI_EVENT_SYNCHRONOUS_CONNECTION_COMPLETE:
2849724d70a2SMatthias Ringwald             reverse_bd_addr(&packet[5], addr);
28501f34df2cSMatthias Ringwald             conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_SCO);
28511f34df2cSMatthias Ringwald             log_info("Synchronous Connection Complete for %p (status=%u) %s", conn, packet[2], bd_addr_to_str(addr));
28521a06f663S[email protected]             if (packet[2]){
285344d0e3d5S[email protected]                 // connection failed
28541f34df2cSMatthias Ringwald                 if (conn){
28551f34df2cSMatthias Ringwald                     hci_handle_connection_failed(conn, packet[2]);
28561f34df2cSMatthias Ringwald                 }
285744d0e3d5S[email protected]                 break;
285844d0e3d5S[email protected]             }
2859e35edcc1S[email protected]             if (!conn) {
2860e35edcc1S[email protected]                 conn = create_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_SCO);
2861e35edcc1S[email protected]             }
2862e35edcc1S[email protected]             if (!conn) {
2863e35edcc1S[email protected]                 break;
2864e35edcc1S[email protected]             }
28651a06f663S[email protected]             conn->state = OPEN;
2866f8fbdce0SMatthias Ringwald             conn->con_handle = little_endian_read_16(packet, 3);
2867ee752bb8SMatthias Ringwald 
2868ee752bb8SMatthias Ringwald #ifdef ENABLE_SCO_OVER_HCI
2869ee752bb8SMatthias Ringwald             // update SCO
2870ee752bb8SMatthias Ringwald             if (conn->address_type == BD_ADDR_TYPE_SCO && hci_stack->hci_transport && hci_stack->hci_transport->set_sco_config){
2871ee752bb8SMatthias Ringwald                 hci_stack->hci_transport->set_sco_config(hci_stack->sco_voice_setting_active, hci_number_sco_connections());
2872ee752bb8SMatthias Ringwald             }
2873f234b250SMatthias Ringwald             // trigger can send now
2874f234b250SMatthias Ringwald             if (hci_have_usb_transport()){
28751972f31fSMatthias Ringwald                 hci_stack->sco_can_send_now = true;
2876f234b250SMatthias Ringwald             }
2877ee752bb8SMatthias Ringwald #endif
2878cb70c5abSMatthias Ringwald #ifdef HAVE_SCO_TRANSPORT
2879cb70c5abSMatthias Ringwald             // configure sco transport
2880cb70c5abSMatthias Ringwald             if (hci_stack->sco_transport != NULL){
2881cb70c5abSMatthias Ringwald                 sco_format_t sco_format = ((hci_stack->sco_voice_setting_active & 0x03) == 0x03) ? SCO_FORMAT_8_BIT : SCO_FORMAT_16_BIT;
2882cb70c5abSMatthias Ringwald                 hci_stack->sco_transport->open(conn->con_handle, sco_format);
2883cb70c5abSMatthias Ringwald             }
2884cb70c5abSMatthias Ringwald #endif
288544d0e3d5S[email protected]             break;
288644d0e3d5S[email protected] 
2887afd4e962S[email protected]         case HCI_EVENT_READ_REMOTE_SUPPORTED_FEATURES_COMPLETE:
2888f8fbdce0SMatthias Ringwald             handle = little_endian_read_16(packet, 3);
2889afd4e962S[email protected]             conn = hci_connection_for_handle(handle);
2890afd4e962S[email protected]             if (!conn) break;
2891afd4e962S[email protected]             if (!packet[2]){
28922f5c44baSMatthias Ringwald                 const uint8_t * features = &packet[5];
28932f5c44baSMatthias Ringwald                 hci_handle_remote_features_page_0(conn, features);
28942f5c44baSMatthias Ringwald 
28955ccef624SMatthias Ringwald                 // read extended features if possible
28961ffa425cSMatthias Ringwald                 if (hci_command_supported(SUPPORTED_HCI_COMMAND_READ_REMOTE_EXTENDED_FEATURES)
28971ffa425cSMatthias Ringwald                 && ((conn->remote_supported_features[0] & 2) != 0)) {
28985ccef624SMatthias Ringwald                     conn->bonding_flags |= BONDING_REQUEST_REMOTE_FEATURES_PAGE_1;
28995ccef624SMatthias Ringwald                     break;
29005ccef624SMatthias Ringwald                 }
29015ccef624SMatthias Ringwald             }
29025ccef624SMatthias Ringwald             hci_handle_remote_features_received(conn);
29035ccef624SMatthias Ringwald             break;
29045ccef624SMatthias Ringwald 
29055ccef624SMatthias Ringwald         case HCI_EVENT_READ_REMOTE_EXTENDED_FEATURES_COMPLETE:
29065ccef624SMatthias Ringwald             handle = little_endian_read_16(packet, 3);
29075ccef624SMatthias Ringwald             conn = hci_connection_for_handle(handle);
29085ccef624SMatthias Ringwald             if (!conn) break;
29095ccef624SMatthias Ringwald             // status = ok, page = 1
291050c51a77SMatthias Ringwald             if (!packet[2]) {
291150c51a77SMatthias Ringwald                 uint8_t page_number = packet[5];
291250c51a77SMatthias Ringwald                 uint8_t maximum_page_number = packet[6];
29135ccef624SMatthias Ringwald                 const uint8_t * features = &packet[7];
291450c51a77SMatthias Ringwald                 bool done = false;
291550c51a77SMatthias Ringwald                 switch (page_number){
291650c51a77SMatthias Ringwald                     case 1:
29172f5c44baSMatthias Ringwald                         hci_handle_remote_features_page_1(conn, features);
291850c51a77SMatthias Ringwald                         if (maximum_page_number >= 2){
291950c51a77SMatthias Ringwald                             // get Secure Connections (Controller) from Page 2 if available
292050c51a77SMatthias Ringwald                             conn->bonding_flags |= BONDING_REQUEST_REMOTE_FEATURES_PAGE_2;
292150c51a77SMatthias Ringwald                         } else {
292250c51a77SMatthias Ringwald                             // otherwise, assume SC (Controller) == SC (Host)
292350c51a77SMatthias Ringwald                             if ((conn->bonding_flags & BONDING_REMOTE_SUPPORTS_SC_HOST) != 0){
292450c51a77SMatthias Ringwald                                 conn->bonding_flags |= BONDING_REMOTE_SUPPORTS_SC_CONTROLLER;
292550c51a77SMatthias Ringwald                             }
292650c51a77SMatthias Ringwald                             done = true;
292750c51a77SMatthias Ringwald                         }
292850c51a77SMatthias Ringwald                         break;
292950c51a77SMatthias Ringwald                     case 2:
293050c51a77SMatthias Ringwald                         hci_handle_remote_features_page_2(conn, features);
293150c51a77SMatthias Ringwald                         done = true;
293250c51a77SMatthias Ringwald                         break;
293350c51a77SMatthias Ringwald                     default:
293450c51a77SMatthias Ringwald                         break;
293550c51a77SMatthias Ringwald                 }
293650c51a77SMatthias Ringwald                 if (!done) break;
2937afd4e962S[email protected]             }
2938de0df013SMatthias Ringwald             hci_handle_remote_features_received(conn);
2939afd4e962S[email protected]             break;
2940afd4e962S[email protected] 
29417fde4af9Smatthias.ringwald         case HCI_EVENT_LINK_KEY_REQUEST:
2942308eeaffSMatthias Ringwald #ifndef ENABLE_EXPLICIT_LINK_KEY_REPLY
294363c0b2fdSMatthias Ringwald             hci_event_link_key_request_get_bd_addr(packet, addr);
294463c0b2fdSMatthias Ringwald             conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
294563c0b2fdSMatthias Ringwald             if (!conn) break;
294663c0b2fdSMatthias Ringwald 
294763c0b2fdSMatthias Ringwald             // lookup link key in db if not cached
294863c0b2fdSMatthias Ringwald             if ((conn->link_key_type == INVALID_LINK_KEY) && (hci_stack->link_key_db != NULL)){
294963c0b2fdSMatthias Ringwald                 hci_stack->link_key_db->get_link_key(conn->address, conn->link_key, &conn->link_key_type);
295063c0b2fdSMatthias Ringwald             }
295163c0b2fdSMatthias Ringwald 
295263c0b2fdSMatthias Ringwald             // response sent by hci_run()
295363c0b2fdSMatthias Ringwald             conn->authentication_flags |= AUTH_FLAG_HANDLE_LINK_KEY_REQUEST;
295463c0b2fdSMatthias Ringwald #endif
2955608f51bbSMatthias Ringwald             break;
29567fde4af9Smatthias.ringwald 
29579ab95c90S[email protected]         case HCI_EVENT_LINK_KEY_NOTIFICATION: {
29581714cbbdSMatthias Ringwald             hci_event_link_key_request_get_bd_addr(packet, addr);
2959f16129ceSMatthias Ringwald             conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
29609ab95c90S[email protected]             if (!conn) break;
29611714cbbdSMatthias Ringwald 
29621714cbbdSMatthias Ringwald             hci_pairing_complete(conn, ERROR_CODE_SUCCESS);
29631714cbbdSMatthias Ringwald 
29643817f9dfSMatthias Ringwald             // CVE-2020-26555: ignore NULL link key
29653817f9dfSMatthias Ringwald             // default link_key_type = INVALID_LINK_KEY asserts that NULL key won't be used for encryption
29663817f9dfSMatthias Ringwald             if (btstack_is_null(&packet[8], 16)) break;
29673817f9dfSMatthias Ringwald 
29687bdc6798S[email protected]             link_key_type_t link_key_type = (link_key_type_t)packet[24];
29699ab95c90S[email protected]             // Change Connection Encryption keeps link key type
29709ab95c90S[email protected]             if (link_key_type != CHANGED_COMBINATION_KEY){
29719ab95c90S[email protected]                 conn->link_key_type = link_key_type;
29729ab95c90S[email protected]             }
29733817f9dfSMatthias Ringwald 
2974e9f98c4aSMatthias Ringwald             // cache link key. link keys stored in little-endian format for legacy reasons
2975e9f98c4aSMatthias Ringwald             memcpy(&conn->link_key, &packet[8], 16);
2976e9f98c4aSMatthias Ringwald 
2977bec5f683SMatthias Ringwald             // only store link key:
2978bec5f683SMatthias Ringwald             // - if bondable enabled
2979bec5f683SMatthias Ringwald             if (hci_stack->bondable == false) break;
29806edaed7fSMatthias Ringwald             // - if security level sufficient
29816edaed7fSMatthias Ringwald             if (gap_security_level_for_link_key_type(link_key_type) < conn->requested_security_level) break;
2982bec5f683SMatthias Ringwald             // - for SSP, also check if remote side requested bonding as well
2983bec5f683SMatthias Ringwald             if (conn->link_key_type != COMBINATION_KEY){
2984532454f9SMatthias Ringwald                 bool remote_bonding = conn->io_cap_response_auth_req >= SSP_IO_AUTHREQ_MITM_PROTECTION_NOT_REQUIRED_DEDICATED_BONDING;
2985532454f9SMatthias Ringwald                 if (!remote_bonding){
2986bec5f683SMatthias Ringwald                     break;
2987bec5f683SMatthias Ringwald                 }
2988bec5f683SMatthias Ringwald             }
298955597469SMatthias Ringwald             gap_store_link_key_for_bd_addr(addr, &packet[8], conn->link_key_type);
29907fde4af9Smatthias.ringwald             break;
29919ab95c90S[email protected]         }
29927fde4af9Smatthias.ringwald 
29937fde4af9Smatthias.ringwald         case HCI_EVENT_PIN_CODE_REQUEST:
29941714cbbdSMatthias Ringwald             hci_event_pin_code_request_get_bd_addr(packet, addr);
29951714cbbdSMatthias Ringwald             conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
29961714cbbdSMatthias Ringwald             if (!conn) break;
29971714cbbdSMatthias Ringwald 
29981714cbbdSMatthias Ringwald             hci_pairing_started(conn, false);
2999a800d95eSMatthias Ringwald             // abort pairing if: non-bondable mode (pin code request is not forwarded to app)
30003a9fb326S[email protected]             if (!hci_stack->bondable ){
30018daf94bcSMatthias Ringwald                 conn->authentication_flags |= AUTH_FLAG_DENY_PIN_CODE_REQUEST;
30021714cbbdSMatthias Ringwald                 hci_pairing_complete(conn, ERROR_CODE_PAIRING_NOT_ALLOWED);
3003f8fb5f6eS[email protected]                 hci_run();
3004f8fb5f6eS[email protected]                 return;
30054c57c146S[email protected]             }
3006a800d95eSMatthias Ringwald             // abort pairing if: LEVEL_4 required (pin code request is not forwarded to app)
3007a800d95eSMatthias Ringwald             if ((hci_stack->gap_secure_connections_only_mode) || (conn->requested_security_level == LEVEL_4)){
3008a800d95eSMatthias Ringwald                 log_info("Level 4 required, but SC not supported -> abort");
300950dcc63cSMatthias Ringwald                 conn->authentication_flags |= AUTH_FLAG_DENY_PIN_CODE_REQUEST;
301050dcc63cSMatthias Ringwald                 hci_pairing_complete(conn, ERROR_CODE_INSUFFICIENT_SECURITY);
301150dcc63cSMatthias Ringwald                 hci_run();
301250dcc63cSMatthias Ringwald                 return;
301350dcc63cSMatthias Ringwald             }
30147fde4af9Smatthias.ringwald             break;
30157fde4af9Smatthias.ringwald 
301650d7398cSMatthias Ringwald         case HCI_EVENT_IO_CAPABILITY_RESPONSE:
301750d7398cSMatthias Ringwald             hci_event_io_capability_response_get_bd_addr(packet, addr);
301850d7398cSMatthias Ringwald             conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
301950d7398cSMatthias Ringwald             if (!conn) break;
30201714cbbdSMatthias Ringwald 
30218daf94bcSMatthias Ringwald             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], AUTH_FLAG_RECV_IO_CAPABILITIES_RESPONSE);
30221714cbbdSMatthias Ringwald             hci_pairing_started(conn, true);
302350d7398cSMatthias Ringwald             conn->io_cap_response_auth_req = hci_event_io_capability_response_get_authentication_requirements(packet);
3024e276e383SMatthias Ringwald             conn->io_cap_response_io       = hci_event_io_capability_response_get_io_capability(packet);
3025d22b82d6SMatthias Ringwald #ifdef ENABLE_CLASSIC_PAIRING_OOB
3026d22b82d6SMatthias Ringwald             conn->io_cap_response_oob_data = hci_event_io_capability_response_get_oob_data_present(packet);
3027d22b82d6SMatthias Ringwald #endif
302850d7398cSMatthias Ringwald             break;
302950d7398cSMatthias Ringwald 
30301d6b20aeS[email protected]         case HCI_EVENT_IO_CAPABILITY_REQUEST:
30311714cbbdSMatthias Ringwald             hci_event_io_capability_response_get_bd_addr(packet, addr);
30321714cbbdSMatthias Ringwald             conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
30331714cbbdSMatthias Ringwald             if (!conn) break;
30341714cbbdSMatthias Ringwald 
3035c950c316SMatthias Ringwald             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], AUTH_FLAG_RECV_IO_CAPABILITIES_REQUEST);
30369671e615SMatthias Ringwald             hci_connection_timestamp(conn);
30371714cbbdSMatthias Ringwald             hci_pairing_started(conn, true);
3038dbe1a790S[email protected]             break;
3039dbe1a790S[email protected] 
30401849becdSMatthias Ringwald #ifdef ENABLE_CLASSIC_PAIRING_OOB
30411849becdSMatthias Ringwald         case HCI_EVENT_REMOTE_OOB_DATA_REQUEST:
30427ca4a7edSMatthias Ringwald             hci_event_remote_oob_data_request_get_bd_addr(packet, addr);
30437ca4a7edSMatthias Ringwald             conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
30447ca4a7edSMatthias Ringwald             if (!conn) break;
30457ca4a7edSMatthias Ringwald 
30467ca4a7edSMatthias Ringwald             hci_connection_timestamp(conn);
30477ca4a7edSMatthias Ringwald 
30487ca4a7edSMatthias Ringwald             hci_pairing_started(conn, true);
30497ca4a7edSMatthias Ringwald 
30507ca4a7edSMatthias Ringwald             connectionSetAuthenticationFlags(conn, AUTH_FLAG_SEND_REMOTE_OOB_DATA_REPLY);
30511849becdSMatthias Ringwald             break;
30521849becdSMatthias Ringwald #endif
30531849becdSMatthias Ringwald 
3054dbe1a790S[email protected]         case HCI_EVENT_USER_CONFIRMATION_REQUEST:
305517c6fe5cSMatthias Ringwald             hci_event_user_confirmation_request_get_bd_addr(packet, addr);
3056367aedc0SMatthias Ringwald             conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
3057367aedc0SMatthias Ringwald             if (!conn) break;
3058367aedc0SMatthias Ringwald             if (hci_ssp_security_level_possible_for_io_cap(conn->requested_security_level, hci_stack->ssp_io_capability, conn->io_cap_response_io)) {
3059367aedc0SMatthias Ringwald                 if (hci_stack->ssp_auto_accept){
30608daf94bcSMatthias Ringwald                     hci_add_connection_flags_for_flipped_bd_addr(&packet[2], AUTH_FLAG_SEND_USER_CONFIRM_REPLY);
3061367aedc0SMatthias Ringwald                 };
3062367aedc0SMatthias Ringwald             } else {
3063367aedc0SMatthias Ringwald                 hci_pairing_complete(conn, ERROR_CODE_INSUFFICIENT_SECURITY);
3064367aedc0SMatthias Ringwald                 hci_add_connection_flags_for_flipped_bd_addr(&packet[2], AUTH_FLAG_SEND_USER_CONFIRM_NEGATIVE_REPLY);
3065367aedc0SMatthias Ringwald                 // don't forward event to app
3066367aedc0SMatthias Ringwald                 hci_run();
3067367aedc0SMatthias Ringwald                 return;
3068367aedc0SMatthias Ringwald             }
3069dbe1a790S[email protected]             break;
3070dbe1a790S[email protected] 
3071dbe1a790S[email protected]         case HCI_EVENT_USER_PASSKEY_REQUEST:
3072367aedc0SMatthias Ringwald             // Pairing using Passkey results in MITM protection. If Level 4 is required, support for SC is validated on IO Cap Request
3073367aedc0SMatthias Ringwald             if (hci_stack->ssp_auto_accept){
30748daf94bcSMatthias Ringwald                 hci_add_connection_flags_for_flipped_bd_addr(&packet[2], AUTH_FLAG_SEND_USER_PASSKEY_REPLY);
3075367aedc0SMatthias Ringwald             };
30761d6b20aeS[email protected]             break;
30771849becdSMatthias Ringwald 
30783dce6128SMatthias Ringwald         case HCI_EVENT_MODE_CHANGE:
30793dce6128SMatthias Ringwald             handle = hci_event_mode_change_get_handle(packet);
30803dce6128SMatthias Ringwald             conn = hci_connection_for_handle(handle);
30813dce6128SMatthias Ringwald             if (!conn) break;
30823dce6128SMatthias Ringwald             conn->connection_mode = hci_event_mode_change_get_mode(packet);
30833dce6128SMatthias Ringwald             log_info("HCI_EVENT_MODE_CHANGE, handle 0x%04x, mode %u", handle, conn->connection_mode);
30843dce6128SMatthias Ringwald             break;
308535454696SMatthias Ringwald #endif
30861d6b20aeS[email protected] 
3087f0944df2S[email protected]         case HCI_EVENT_ENCRYPTION_CHANGE:
3088254b78eeSMatthias Ringwald             handle = hci_event_encryption_change_get_connection_handle(packet);
3089f0944df2S[email protected]             conn = hci_connection_for_handle(handle);
3090f0944df2S[email protected]             if (!conn) break;
30914ea43905SMatthias Ringwald             if (hci_event_encryption_change_get_status(packet) == 0u) {
3092254b78eeSMatthias Ringwald                 uint8_t encryption_enabled = hci_event_encryption_change_get_encryption_enabled(packet);
3093254b78eeSMatthias Ringwald                 if (encryption_enabled){
3094573897a0SMatthias Ringwald                     if (hci_is_le_connection(conn)){
3095573897a0SMatthias Ringwald                         // For LE, we accept connection as encrypted
30968daf94bcSMatthias Ringwald                         conn->authentication_flags |= AUTH_FLAG_CONNECTION_ENCRYPTED;
3097573897a0SMatthias Ringwald                     }
3098573897a0SMatthias Ringwald #ifdef ENABLE_CLASSIC
3099573897a0SMatthias Ringwald                     else {
3100fcaf38b9SMatthias Ringwald 
3101fcaf38b9SMatthias Ringwald                         // dedicated bonding: send result and disconnect
3102fcaf38b9SMatthias Ringwald                         if (conn->bonding_flags & BONDING_DEDICATED){
3103fcaf38b9SMatthias Ringwald                             conn->bonding_flags &= ~BONDING_DEDICATED;
3104fcaf38b9SMatthias Ringwald                             conn->bonding_flags |= BONDING_DISCONNECT_DEDICATED_DONE;
3105fcaf38b9SMatthias Ringwald                             conn->bonding_status = packet[2];
3106fcaf38b9SMatthias Ringwald                             break;
3107fcaf38b9SMatthias Ringwald                         }
3108fcaf38b9SMatthias Ringwald 
3109254b78eeSMatthias Ringwald                         // Detect Secure Connection -> Legacy Connection Downgrade Attack (BIAS)
311036c3546bSMatthias Ringwald                         bool sc_used_during_pairing = gap_secure_connection_for_link_key_type(conn->link_key_type);
3111254b78eeSMatthias Ringwald                         bool connected_uses_aes_ccm = encryption_enabled == 2;
3112edc1ac20SMatthias Ringwald                         if (hci_stack->secure_connections_active && sc_used_during_pairing && !connected_uses_aes_ccm){
3113254b78eeSMatthias Ringwald                             log_info("SC during pairing, but only E0 now -> abort");
31149ece71c2SMatthias Ringwald                             conn->bonding_flags |= BONDING_DISCONNECT_SECURITY_BLOCK;
3115254b78eeSMatthias Ringwald                             break;
3116254b78eeSMatthias Ringwald                         }
3117254b78eeSMatthias Ringwald 
3118aa2fe986SMatthias Ringwald                         // if AES-CCM is used, authentication used SC -> authentication was mutual and we can skip explicit authentication
3119aa2fe986SMatthias Ringwald                         if (connected_uses_aes_ccm){
3120aa2fe986SMatthias Ringwald                             conn->authentication_flags |= AUTH_FLAG_CONNECTION_AUTHENTICATED;
3121aa2fe986SMatthias Ringwald                         }
3122aa2fe986SMatthias Ringwald 
3123aa2fe986SMatthias Ringwald #ifdef ENABLE_TESTING_SUPPORT
3124aa2fe986SMatthias Ringwald                         // work around for issue with PTS dongle
3125aa2fe986SMatthias Ringwald                         conn->authentication_flags |= AUTH_FLAG_CONNECTION_AUTHENTICATED;
3126aa2fe986SMatthias Ringwald #endif
31271ffa425cSMatthias Ringwald                         if (hci_command_supported(SUPPORTED_HCI_COMMAND_READ_ENCRYPTION_KEY_SIZE)){
31286e058d3fSMatthias Ringwald                             // For Classic, we need to validate encryption key size first, if possible (== supported by Controller)
3129573897a0SMatthias Ringwald                             conn->bonding_flags |= BONDING_SEND_READ_ENCRYPTION_KEY_SIZE;
31306e058d3fSMatthias Ringwald                         } else {
31316e058d3fSMatthias Ringwald                             // if not, pretend everything is perfect
31329866fdc7SMatthias Ringwald                             hci_handle_read_encryption_key_size_complete(conn, 16);
31336e058d3fSMatthias Ringwald                         }
3134573897a0SMatthias Ringwald                     }
3135573897a0SMatthias Ringwald #endif
3136f0944df2S[email protected]                 } else {
31378daf94bcSMatthias Ringwald                     conn->authentication_flags &= ~AUTH_FLAG_CONNECTION_ENCRYPTED;
3138f0944df2S[email protected]                 }
3139ad83dc6aS[email protected]             }
3140573897a0SMatthias Ringwald 
3141f0944df2S[email protected]             break;
3142f0944df2S[email protected] 
314335454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
31441eb2563eS[email protected]         case HCI_EVENT_AUTHENTICATION_COMPLETE_EVENT:
3145abdad579SMatthias Ringwald             handle = hci_event_authentication_complete_get_connection_handle(packet);
31461eb2563eS[email protected]             conn = hci_connection_for_handle(handle);
31471eb2563eS[email protected]             if (!conn) break;
3148ad83dc6aS[email protected] 
3149dbd5dcc3SMatthias Ringwald             // clear authentication active flag
3150dbd5dcc3SMatthias Ringwald             conn->bonding_flags &= ~BONDING_SENT_AUTHENTICATE_REQUEST;
31511714cbbdSMatthias Ringwald             hci_pairing_complete(conn, hci_event_authentication_complete_get_status(packet));
3152dbd5dcc3SMatthias Ringwald 
3153abdad579SMatthias Ringwald             // authenticated only if auth status == 0
3154abdad579SMatthias Ringwald             if (hci_event_authentication_complete_get_status(packet) == 0){
3155abdad579SMatthias Ringwald                 // authenticated
31568daf94bcSMatthias Ringwald                 conn->authentication_flags |= AUTH_FLAG_CONNECTION_AUTHENTICATED;
3157abdad579SMatthias Ringwald 
3158131ef17aSMatthias Ringwald                 // If not already encrypted, start encryption
31598daf94bcSMatthias Ringwald                 if ((conn->authentication_flags & AUTH_FLAG_CONNECTION_ENCRYPTED) == 0){
31601eb2563eS[email protected]                     conn->bonding_flags |= BONDING_SEND_ENCRYPTION_REQUEST;
3161ad83dc6aS[email protected]                     break;
3162ad83dc6aS[email protected]                 }
3163abdad579SMatthias Ringwald             }
3164abdad579SMatthias Ringwald 
3165abdad579SMatthias Ringwald             // emit updated security level
31661eb2563eS[email protected]             hci_emit_security_level(handle, gap_security_level_for_connection(conn));
31671eb2563eS[email protected]             break;
31681714cbbdSMatthias Ringwald 
31691714cbbdSMatthias Ringwald         case HCI_EVENT_SIMPLE_PAIRING_COMPLETE:
31701714cbbdSMatthias Ringwald             hci_event_simple_pairing_complete_get_bd_addr(packet, addr);
31711714cbbdSMatthias Ringwald             conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
31721714cbbdSMatthias Ringwald             if (!conn) break;
31731714cbbdSMatthias Ringwald 
3174aa2fe986SMatthias Ringwald             // treat successfully paired connection as authenticated
3175aa2fe986SMatthias Ringwald             if (hci_event_simple_pairing_complete_get_status(packet) == ERROR_CODE_SUCCESS){
3176f3aafff1SMatthias Ringwald                 conn->authentication_flags |= AUTH_FLAG_CONNECTION_AUTHENTICATED;
3177aa2fe986SMatthias Ringwald             }
3178aa2fe986SMatthias Ringwald 
31791714cbbdSMatthias Ringwald             hci_pairing_complete(conn, hci_event_simple_pairing_complete_get_status(packet));
31801714cbbdSMatthias Ringwald             break;
318135454696SMatthias Ringwald #endif
318234d2123cS[email protected] 
318386805605S[email protected]         // HCI_EVENT_DISCONNECTION_COMPLETE
3184ccda6e14S[email protected]         // has been split, to first notify stack before shutting connection down
3185ccda6e14S[email protected]         // see end of function, too.
3186a4f30ec0S[email protected]         case HCI_EVENT_DISCONNECTION_COMPLETE:
3187a4f30ec0S[email protected]             if (packet[2]) break;   // status != 0
3188f8fbdce0SMatthias Ringwald             handle = little_endian_read_16(packet, 3);
318981d2bdb2SMatthias Ringwald             // drop outgoing ACL fragments if it is for closed connection and release buffer if tx not active
31904ea43905SMatthias Ringwald             if (hci_stack->acl_fragmentation_total_size > 0u) {
3191c6a37cfdSMatthias Ringwald                 if (handle == READ_ACL_CONNECTION_HANDLE(hci_stack->hci_packet_buffer)){
31924ea43905SMatthias Ringwald                     int release_buffer = hci_stack->acl_fragmentation_tx_active == 0u;
319381d2bdb2SMatthias Ringwald                     log_info("drop fragmented ACL data for closed connection, release buffer %u", release_buffer);
3194c6a37cfdSMatthias Ringwald                     hci_stack->acl_fragmentation_total_size = 0;
3195c6a37cfdSMatthias Ringwald                     hci_stack->acl_fragmentation_pos = 0;
319681d2bdb2SMatthias Ringwald                     if (release_buffer){
319781d2bdb2SMatthias Ringwald                         hci_release_packet_buffer();
319881d2bdb2SMatthias Ringwald                     }
3199c6a37cfdSMatthias Ringwald                 }
3200c6a37cfdSMatthias Ringwald             }
320135454696SMatthias Ringwald 
3202c6a37cfdSMatthias Ringwald             conn = hci_connection_for_handle(handle);
3203c6a37cfdSMatthias Ringwald             if (!conn) break;
32041714cbbdSMatthias Ringwald #ifdef ENABLE_CLASSIC
32051714cbbdSMatthias Ringwald             // pairing failed if it was ongoing
32061714cbbdSMatthias Ringwald             hci_pairing_complete(conn, ERROR_CODE_REMOTE_USER_TERMINATED_CONNECTION);
32071714cbbdSMatthias Ringwald #endif
3208046ec007SMatthias Ringwald 
3209046ec007SMatthias Ringwald             // emit dedicatd bonding event
3210046ec007SMatthias Ringwald             if (conn->bonding_flags & BONDING_EMIT_COMPLETE_ON_DISCONNECT){
3211046ec007SMatthias Ringwald                 hci_emit_dedicated_bonding_result(conn->address, conn->bonding_status);
3212046ec007SMatthias Ringwald             }
3213046ec007SMatthias Ringwald 
3214459d27b9SMatthias Ringwald             // mark connection for shutdown, stop timers, reset state
3215459d27b9SMatthias Ringwald             conn->state = RECEIVED_DISCONNECTION_COMPLETE;
3216459d27b9SMatthias Ringwald             hci_connection_stop_timer(conn);
3217459d27b9SMatthias Ringwald             hci_connection_init(conn);
3218459d27b9SMatthias Ringwald 
321935454696SMatthias Ringwald #ifdef ENABLE_BLE
3220d70217a2SMatthias Ringwald #ifdef ENABLE_LE_PERIPHERAL
3221046ec007SMatthias Ringwald             // re-enable advertisements for le connections if active
32222b6ab3e6SMatthias Ringwald             if (hci_is_le_connection(conn)){
3223bbc366e6SMatthias Ringwald                 hci_update_advertisements_enabled_for_current_roles();
32249a2e4658SMatthias Ringwald             }
322535454696SMatthias Ringwald #endif
3226d70217a2SMatthias Ringwald #endif
3227ccda6e14S[email protected]             break;
32286772a24cSmatthias.ringwald 
3229c68bdf90Smatthias.ringwald         case HCI_EVENT_HARDWARE_ERROR:
3230313e5f9cSMatthias Ringwald             log_error("Hardware Error: 0x%02x", packet[2]);
3231d23838ecSMatthias Ringwald             if (hci_stack->hardware_error_callback){
3232c2e1fa60SMatthias Ringwald                 (*hci_stack->hardware_error_callback)(packet[2]);
32337586ee35S[email protected]             } else {
32347586ee35S[email protected]                 // if no special requests, just reboot stack
32357586ee35S[email protected]                 hci_power_control_off();
32367586ee35S[email protected]                 hci_power_control_on();
3237c68bdf90Smatthias.ringwald             }
3238c68bdf90Smatthias.ringwald             break;
3239c68bdf90Smatthias.ringwald 
32400e6f3837SMatthias Ringwald #ifdef ENABLE_CLASSIC
32415cf766e8SMatthias Ringwald         case HCI_EVENT_ROLE_CHANGE:
32425cf766e8SMatthias Ringwald             if (packet[2]) break;   // status != 0
3243c4c88f1bSJakob Krantz             reverse_bd_addr(&packet[3], addr);
3244f16129ceSMatthias Ringwald             addr_type = BD_ADDR_TYPE_ACL;
3245c4c88f1bSJakob Krantz             conn = hci_connection_for_bd_addr_and_type(addr, addr_type);
3246c4c88f1bSJakob Krantz             if (!conn) break;
32475cf766e8SMatthias Ringwald             conn->role = packet[9];
32485cf766e8SMatthias Ringwald             break;
32490e6f3837SMatthias Ringwald #endif
32505cf766e8SMatthias Ringwald 
325163fa3374SMatthias Ringwald         case HCI_EVENT_TRANSPORT_PACKET_SENT:
3252d051460cS[email protected]             // release packet buffer only for asynchronous transport and if there are not further fragements
32534fa24b5fS[email protected]             if (hci_transport_synchronous()) {
325463fa3374SMatthias Ringwald                 log_error("Synchronous HCI Transport shouldn't send HCI_EVENT_TRANSPORT_PACKET_SENT");
32554fa24b5fS[email protected]                 return; // instead of break: to avoid re-entering hci_run()
32564fa24b5fS[email protected]             }
325781d2bdb2SMatthias Ringwald             hci_stack->acl_fragmentation_tx_active = 0;
3258d051460cS[email protected]             if (hci_stack->acl_fragmentation_total_size) break;
3259d051460cS[email protected]             hci_release_packet_buffer();
3260701e3307SMatthias Ringwald 
326163fa3374SMatthias Ringwald             // L2CAP receives this event via the hci_emit_event below
326263fa3374SMatthias Ringwald 
326335454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
326463fa3374SMatthias Ringwald             // For SCO, we do the can_send_now_check here
3265701e3307SMatthias Ringwald             hci_notify_if_sco_can_send_now();
326635454696SMatthias Ringwald #endif
32676b4af23dS[email protected]             break;
32686b4af23dS[email protected] 
326935454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
327063fa3374SMatthias Ringwald         case HCI_EVENT_SCO_CAN_SEND_NOW:
327163fa3374SMatthias Ringwald             // For SCO, we do the can_send_now_check here
32721972f31fSMatthias Ringwald             hci_stack->sco_can_send_now = true;
327363fa3374SMatthias Ringwald             hci_notify_if_sco_can_send_now();
327463fa3374SMatthias Ringwald             return;
32751cfb383eSMatthias Ringwald 
32761cfb383eSMatthias Ringwald         // explode inquriy results for easier consumption
32771cfb383eSMatthias Ringwald         case HCI_EVENT_INQUIRY_RESULT:
32781cfb383eSMatthias Ringwald         case HCI_EVENT_INQUIRY_RESULT_WITH_RSSI:
32791cfb383eSMatthias Ringwald         case HCI_EVENT_EXTENDED_INQUIRY_RESPONSE:
32809784dac1SMatthias Ringwald             gap_inquiry_explode(packet, size);
32811cfb383eSMatthias Ringwald             break;
328235454696SMatthias Ringwald #endif
328363fa3374SMatthias Ringwald 
3284a9a4c409SMatthias Ringwald #ifdef ENABLE_BLE
32855909f7f2Smatthias.ringwald         case HCI_EVENT_LE_META:
32865909f7f2Smatthias.ringwald             switch (packet[2]){
3287d70217a2SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
328857c9da5bS[email protected]                 case HCI_SUBEVENT_LE_ADVERTISING_REPORT:
32894f4e0224SMatthias Ringwald                     // log_info("advertising report received");
32906fab74dbSMatthias Ringwald                     if (!hci_stack->le_scanning_enabled) break;
329157c9da5bS[email protected]                     le_handle_advertisement_report(packet, size);
32927bdc6798S[email protected]                     break;
3293d70217a2SMatthias Ringwald #endif
32945909f7f2Smatthias.ringwald                 case HCI_SUBEVENT_LE_CONNECTION_COMPLETE:
32950ce3f217SMatthias Ringwald 					event_handle_le_connection_complete(packet);
32965909f7f2Smatthias.ringwald                     break;
32975909f7f2Smatthias.ringwald 
3298f8fbdce0SMatthias Ringwald                 // log_info("LE buffer size: %u, count %u", little_endian_read_16(packet,6), packet[8]);
3299c9db5c21SMilanka Ringwald                 case HCI_SUBEVENT_LE_CONNECTION_UPDATE_COMPLETE:
3300c9db5c21SMilanka Ringwald                     handle = hci_subevent_le_connection_update_complete_get_connection_handle(packet);
3301c9db5c21SMilanka Ringwald                     conn = hci_connection_for_handle(handle);
3302c9db5c21SMilanka Ringwald                     if (!conn) break;
3303c9db5c21SMilanka Ringwald                     conn->le_connection_interval = hci_subevent_le_connection_update_complete_get_conn_interval(packet);
3304c9db5c21SMilanka Ringwald                     break;
330565a46ef3S[email protected] 
330673cd8a2aSMatthias Ringwald                 case HCI_SUBEVENT_LE_REMOTE_CONNECTION_PARAMETER_REQUEST:
330773cd8a2aSMatthias Ringwald                     // connection
330873cd8a2aSMatthias Ringwald                     handle = hci_subevent_le_remote_connection_parameter_request_get_connection_handle(packet);
330973cd8a2aSMatthias Ringwald                     conn = hci_connection_for_handle(handle);
331073cd8a2aSMatthias Ringwald                     if (conn) {
331173cd8a2aSMatthias Ringwald                         // read arguments
331273cd8a2aSMatthias Ringwald                         uint16_t le_conn_interval_min   = hci_subevent_le_remote_connection_parameter_request_get_interval_min(packet);
331373cd8a2aSMatthias Ringwald                         uint16_t le_conn_interval_max   = hci_subevent_le_remote_connection_parameter_request_get_interval_max(packet);
331473cd8a2aSMatthias Ringwald                         uint16_t le_conn_latency        = hci_subevent_le_remote_connection_parameter_request_get_latency(packet);
331573cd8a2aSMatthias Ringwald                         uint16_t le_supervision_timeout = hci_subevent_le_remote_connection_parameter_request_get_timeout(packet);
331673cd8a2aSMatthias Ringwald 
331773cd8a2aSMatthias Ringwald                         // validate against current connection parameter range
331873cd8a2aSMatthias Ringwald                         le_connection_parameter_range_t existing_range;
331973cd8a2aSMatthias Ringwald                         gap_get_connection_parameter_range(&existing_range);
332073cd8a2aSMatthias 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);
332173cd8a2aSMatthias Ringwald                         if (update_parameter){
332273cd8a2aSMatthias Ringwald                             conn->le_con_parameter_update_state = CON_PARAMETER_UPDATE_REPLY;
332373cd8a2aSMatthias Ringwald                             conn->le_conn_interval_min = le_conn_interval_min;
332473cd8a2aSMatthias Ringwald                             conn->le_conn_interval_max = le_conn_interval_max;
332573cd8a2aSMatthias Ringwald                             conn->le_conn_latency = le_conn_latency;
332673cd8a2aSMatthias Ringwald                             conn->le_supervision_timeout = le_supervision_timeout;
332773cd8a2aSMatthias Ringwald                         } else {
3328c3898ca4SMatthias Ringwald                             conn->le_con_parameter_update_state = CON_PARAMETER_UPDATE_NEGATIVE_REPLY;
332973cd8a2aSMatthias Ringwald                         }
333073cd8a2aSMatthias Ringwald                     }
333173cd8a2aSMatthias Ringwald                     break;
33320f3b27c5SMatthias Ringwald #ifdef ENABLE_LE_LIMIT_ACL_FRAGMENT_BY_MAX_OCTETS
33330f3b27c5SMatthias Ringwald                 case HCI_SUBEVENT_LE_DATA_LENGTH_CHANGE:
33340f3b27c5SMatthias Ringwald                     handle = hci_subevent_le_data_length_change_get_connection_handle(packet);
33350f3b27c5SMatthias Ringwald                     conn = hci_connection_for_handle(handle);
33360f3b27c5SMatthias Ringwald                     if (conn) {
33370f3b27c5SMatthias Ringwald                         conn->le_max_tx_octets = hci_subevent_le_data_length_change_get_max_tx_octets(packet);
33380f3b27c5SMatthias Ringwald                     }
33390f3b27c5SMatthias Ringwald                     break;
33400f3b27c5SMatthias Ringwald #endif
33415909f7f2Smatthias.ringwald                 default:
33425909f7f2Smatthias.ringwald                     break;
33435909f7f2Smatthias.ringwald             }
33445909f7f2Smatthias.ringwald             break;
33455909f7f2Smatthias.ringwald #endif
33460b36101dSMatthias Ringwald         case HCI_EVENT_VENDOR_SPECIFIC:
33470b36101dSMatthias Ringwald             // Vendor specific commands often create vendor specific event instead of num completed packets
33480b36101dSMatthias Ringwald             // To avoid getting stuck as num_cmds_packets is zero, reset it to 1 for controllers with this behaviour
33490b36101dSMatthias Ringwald             switch (hci_stack->manufacturer){
33500b36101dSMatthias Ringwald                 case BLUETOOTH_COMPANY_ID_CAMBRIDGE_SILICON_RADIO:
33510b36101dSMatthias Ringwald                     hci_stack->num_cmd_packets = 1;
33520b36101dSMatthias Ringwald                     break;
33530b36101dSMatthias Ringwald                 default:
33540b36101dSMatthias Ringwald                     break;
33550b36101dSMatthias Ringwald             }
33560b36101dSMatthias Ringwald             break;
33576772a24cSmatthias.ringwald         default:
33586772a24cSmatthias.ringwald             break;
3359fe1ed1b8Smatthias.ringwald     }
3360fe1ed1b8Smatthias.ringwald 
336167c6c9dcSMatthias Ringwald     handle_event_for_current_stack_state(packet, size);
336289db417bSmatthias.ringwald 
336386805605S[email protected]     // notify upper stack
3364d6b06661SMatthias Ringwald 	hci_emit_event(packet, size, 0);   // don't dump, already happened in packet handler
336594ab26f8Smatthias.ringwald 
336686805605S[email protected]     // moved here to give upper stack a chance to close down everything with hci_connection_t intact
3367797b2a3fSMatthias Ringwald     if ((hci_event_packet_get_type(packet) == HCI_EVENT_DISCONNECTION_COMPLETE) && (packet[2] == 0)){
3368f8fbdce0SMatthias Ringwald 		handle = little_endian_read_16(packet, 3);
336905ae8de3SMatthias Ringwald 		hci_connection_t * aConn = hci_connection_for_handle(handle);
3370046ec007SMatthias Ringwald 		// discard connection if app did not trigger a reconnect in the event handler
3371797b2a3fSMatthias Ringwald 		if (aConn && aConn->state == RECEIVED_DISCONNECTION_COMPLETE){
337205ae8de3SMatthias Ringwald 			hci_shutdown_connection(aConn);
3373b0136355SMatthias Ringwald 		}
337486805605S[email protected]     }
337586805605S[email protected] 
337694ab26f8Smatthias.ringwald 	// execute main loop
337794ab26f8Smatthias.ringwald 	hci_run();
337816833f0aSmatthias.ringwald }
337916833f0aSmatthias.ringwald 
338035454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
33816f28d2eeSMatthias Ringwald 
33826be3cf7fSMatthias Ringwald #ifdef ENABLE_SCO_OVER_HCI
33836f28d2eeSMatthias Ringwald static void sco_tx_timeout_handler(btstack_timer_source_t * ts);
33846f28d2eeSMatthias Ringwald static void sco_schedule_tx(hci_connection_t * conn);
33856f28d2eeSMatthias Ringwald 
33866f28d2eeSMatthias Ringwald static void sco_tx_timeout_handler(btstack_timer_source_t * ts){
338759c33575SMatthias Ringwald     log_debug("SCO TX Timeout");
33885a6b2dbdSMatthias Ringwald     hci_con_handle_t con_handle = (hci_con_handle_t) (uintptr_t) btstack_run_loop_get_timer_context(ts);
33896f28d2eeSMatthias Ringwald     hci_connection_t * conn = hci_connection_for_handle(con_handle);
33906f28d2eeSMatthias Ringwald     if (!conn) return;
33916f28d2eeSMatthias Ringwald 
3392afaddd67SMatthias Ringwald     // trigger send
3393afaddd67SMatthias Ringwald     conn->sco_tx_ready = 1;
3394e4157653SMatthias Ringwald     // extra packet if CVSD but SCO buffer is too short
3395a1df452eSMatthias Ringwald     if (((hci_stack->sco_voice_setting_active & 0x03) != 0x03) && (hci_stack->sco_data_packet_length < 123)){
3396e4157653SMatthias Ringwald         conn->sco_tx_ready++;
3397e4157653SMatthias Ringwald     }
3398afaddd67SMatthias Ringwald     hci_notify_if_sco_can_send_now();
33996f28d2eeSMatthias Ringwald }
34006f28d2eeSMatthias Ringwald 
340159c33575SMatthias Ringwald 
340259c33575SMatthias Ringwald #define SCO_TX_AFTER_RX_MS (6)
340359c33575SMatthias Ringwald 
34046f28d2eeSMatthias Ringwald static void sco_schedule_tx(hci_connection_t * conn){
340559c33575SMatthias Ringwald 
34066f28d2eeSMatthias Ringwald     uint32_t now = btstack_run_loop_get_time_ms();
340759c33575SMatthias Ringwald     uint32_t sco_tx_ms = conn->sco_rx_ms + SCO_TX_AFTER_RX_MS;
340859c33575SMatthias Ringwald     int time_delta_ms = sco_tx_ms - now;
340959c33575SMatthias Ringwald 
341059c33575SMatthias Ringwald     btstack_timer_source_t * timer = (conn->sco_rx_count & 1) ? &conn->timeout : &conn->timeout_sco;
341159c33575SMatthias Ringwald 
341259c33575SMatthias Ringwald     // log_error("SCO TX at %u in %u", (int) sco_tx_ms, time_delta_ms);
3413ddbec4ceSMatthias Ringwald     btstack_run_loop_remove_timer(timer);
341459c33575SMatthias Ringwald     btstack_run_loop_set_timer(timer, time_delta_ms);
341559c33575SMatthias Ringwald     btstack_run_loop_set_timer_context(timer, (void *) (uintptr_t) conn->con_handle);
341659c33575SMatthias Ringwald     btstack_run_loop_set_timer_handler(timer, &sco_tx_timeout_handler);
341759c33575SMatthias Ringwald     btstack_run_loop_add_timer(timer);
34186f28d2eeSMatthias Ringwald }
34196be3cf7fSMatthias Ringwald #endif
34206f28d2eeSMatthias Ringwald 
3421c91d150bS[email protected] static void sco_handler(uint8_t * packet, uint16_t size){
34220b3f95dfSMatthias Ringwald     // lookup connection struct
34232b838201SMatthias Ringwald     hci_con_handle_t con_handle = READ_SCO_CONNECTION_HANDLE(packet);
34242b838201SMatthias Ringwald     hci_connection_t * conn     = hci_connection_for_handle(con_handle);
34250b3f95dfSMatthias Ringwald     if (!conn) return;
34260b3f95dfSMatthias Ringwald 
34276be3cf7fSMatthias Ringwald #ifdef ENABLE_SCO_OVER_HCI
3428760b20efSMatthias Ringwald     // CSR 8811 prefixes 60 byte SCO packet in transparent mode with 20 zero bytes -> skip first 20 payload bytes
3429760b20efSMatthias Ringwald     if (hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_CAMBRIDGE_SILICON_RADIO){
3430a1df452eSMatthias Ringwald         if ((size == 83) && ((hci_stack->sco_voice_setting_active & 0x03) == 0x03)){
3431760b20efSMatthias Ringwald             packet[2] = 0x3c;
3432760b20efSMatthias Ringwald             memmove(&packet[3], &packet[23], 63);
3433760b20efSMatthias Ringwald             size = 63;
34340b3f95dfSMatthias Ringwald         }
34350b3f95dfSMatthias Ringwald     }
3436760b20efSMatthias Ringwald 
3437f234b250SMatthias Ringwald     if (hci_have_usb_transport()){
3438f234b250SMatthias Ringwald         // Nothing to do
3439f234b250SMatthias Ringwald     } else {
344049205f5dSMatthias Ringwald         // log_debug("sco flow %u, handle 0x%04x, packets sent %u, bytes send %u", hci_stack->synchronous_flow_control_enabled, (int) con_handle, conn->num_packets_sent, conn->num_sco_bytes_sent);
3441760b20efSMatthias Ringwald         if (hci_stack->synchronous_flow_control_enabled == 0){
34426f28d2eeSMatthias Ringwald             uint32_t now = btstack_run_loop_get_time_ms();
344359c33575SMatthias Ringwald 
344459c33575SMatthias Ringwald             if (!conn->sco_rx_valid){
344559c33575SMatthias Ringwald                 // ignore first 10 packets
34466f28d2eeSMatthias Ringwald                 conn->sco_rx_count++;
344759c33575SMatthias Ringwald                 // log_debug("sco rx count %u", conn->sco_rx_count);
344859c33575SMatthias Ringwald                 if (conn->sco_rx_count == 10) {
344959c33575SMatthias Ringwald                     // use first timestamp as is and pretent it just started
34506f28d2eeSMatthias Ringwald                     conn->sco_rx_ms = now;
34516f28d2eeSMatthias Ringwald                     conn->sco_rx_valid = 1;
345259c33575SMatthias Ringwald                     conn->sco_rx_count = 0;
345359c33575SMatthias Ringwald                     sco_schedule_tx(conn);
345459c33575SMatthias Ringwald                 }
345559c33575SMatthias Ringwald             } else {
345659c33575SMatthias Ringwald                 // track expected arrival timme
345759c33575SMatthias Ringwald                 conn->sco_rx_count++;
345859c33575SMatthias Ringwald                 conn->sco_rx_ms += 7;
345959c33575SMatthias Ringwald                 int delta = (int32_t) (now - conn->sco_rx_ms);
346059c33575SMatthias Ringwald                 if (delta > 0){
346159c33575SMatthias Ringwald                     conn->sco_rx_ms++;
346259c33575SMatthias Ringwald                 }
346359c33575SMatthias Ringwald                 // log_debug("sco rx %u", conn->sco_rx_ms);
34646f28d2eeSMatthias Ringwald                 sco_schedule_tx(conn);
34656f28d2eeSMatthias Ringwald             }
3466760b20efSMatthias Ringwald         }
3467f234b250SMatthias Ringwald     }
34686be3cf7fSMatthias Ringwald #endif
34696be3cf7fSMatthias Ringwald 
34700b3f95dfSMatthias Ringwald     // deliver to app
34710b3f95dfSMatthias Ringwald     if (hci_stack->sco_packet_handler) {
34720b3f95dfSMatthias Ringwald         hci_stack->sco_packet_handler(HCI_SCO_DATA_PACKET, 0, packet, size);
34730b3f95dfSMatthias Ringwald     }
34740b3f95dfSMatthias Ringwald 
3475ed325439SMatthias Ringwald #ifdef HAVE_SCO_TRANSPORT
3476ed325439SMatthias Ringwald     // We can send one packet for each received packet
3477ed325439SMatthias Ringwald     conn->sco_tx_ready++;
3478ed325439SMatthias Ringwald     hci_notify_if_sco_can_send_now();
3479ed325439SMatthias Ringwald #endif
3480ed325439SMatthias Ringwald 
34810b3f95dfSMatthias Ringwald #ifdef ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL
34822b838201SMatthias Ringwald     conn->num_packets_completed++;
34832b838201SMatthias Ringwald     hci_stack->host_completed_packets = 1;
34842b838201SMatthias Ringwald     hci_run();
34852b838201SMatthias Ringwald #endif
3486c91d150bS[email protected] }
348735454696SMatthias Ringwald #endif
3488c91d150bS[email protected] 
34890a57e69fSmatthias.ringwald static void packet_handler(uint8_t packet_type, uint8_t *packet, uint16_t size){
34905bb5bc3eS[email protected]     hci_dump_packet(packet_type, 1, packet, size);
349110e830c9Smatthias.ringwald     switch (packet_type) {
349210e830c9Smatthias.ringwald         case HCI_EVENT_PACKET:
349310e830c9Smatthias.ringwald             event_handler(packet, size);
349410e830c9Smatthias.ringwald             break;
349510e830c9Smatthias.ringwald         case HCI_ACL_DATA_PACKET:
349610e830c9Smatthias.ringwald             acl_handler(packet, size);
349710e830c9Smatthias.ringwald             break;
349835454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
3499c91d150bS[email protected]         case HCI_SCO_DATA_PACKET:
3500c91d150bS[email protected]             sco_handler(packet, size);
3501202c8a4cSMatthias Ringwald             break;
350235454696SMatthias Ringwald #endif
350310e830c9Smatthias.ringwald         default:
350410e830c9Smatthias.ringwald             break;
350510e830c9Smatthias.ringwald     }
350610e830c9Smatthias.ringwald }
350710e830c9Smatthias.ringwald 
3508d6b06661SMatthias Ringwald /**
3509d6b06661SMatthias Ringwald  * @brief Add event packet handler.
3510d6b06661SMatthias Ringwald  */
3511d6b06661SMatthias Ringwald void hci_add_event_handler(btstack_packet_callback_registration_t * callback_handler){
3512d6b06661SMatthias Ringwald     btstack_linked_list_add_tail(&hci_stack->event_handlers, (btstack_linked_item_t*) callback_handler);
3513d6b06661SMatthias Ringwald }
3514d6b06661SMatthias Ringwald 
351567f708e0SMatthias Ringwald /**
351667f708e0SMatthias Ringwald  * @brief Remove event packet handler.
351767f708e0SMatthias Ringwald  */
351867f708e0SMatthias Ringwald void hci_remove_event_handler(btstack_packet_callback_registration_t * callback_handler){
351967f708e0SMatthias Ringwald     btstack_linked_list_remove(&hci_stack->event_handlers, (btstack_linked_item_t*) callback_handler);
352067f708e0SMatthias Ringwald }
3521d6b06661SMatthias Ringwald 
3522fcadd0caSmatthias.ringwald /** Register HCI packet handlers */
35233d50b4baSMatthias Ringwald void hci_register_acl_packet_handler(btstack_packet_handler_t handler){
3524fb37a842SMatthias Ringwald     hci_stack->acl_packet_handler = handler;
352516833f0aSmatthias.ringwald }
352616833f0aSmatthias.ringwald 
352735454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
35288abbe8b5SMatthias Ringwald /**
35298abbe8b5SMatthias Ringwald  * @brief Registers a packet handler for SCO data. Used for HSP and HFP profiles.
35308abbe8b5SMatthias Ringwald  */
35313d50b4baSMatthias Ringwald void hci_register_sco_packet_handler(btstack_packet_handler_t handler){
35328abbe8b5SMatthias Ringwald     hci_stack->sco_packet_handler = handler;
35338abbe8b5SMatthias Ringwald }
353435454696SMatthias Ringwald #endif
35358abbe8b5SMatthias Ringwald 
353671de195eSMatthias Ringwald static void hci_state_reset(void){
3537595bdbfbS[email protected]     // no connections yet
3538595bdbfbS[email protected]     hci_stack->connections = NULL;
353974308b23Smatthias.ringwald 
354074308b23Smatthias.ringwald     // keep discoverable/connectable as this has been requested by the client(s)
354174308b23Smatthias.ringwald     // hci_stack->discoverable = 0;
354274308b23Smatthias.ringwald     // hci_stack->connectable = 0;
354374308b23Smatthias.ringwald     // hci_stack->bondable = 1;
3544b95a5a35SMatthias Ringwald     // hci_stack->own_addr_type = 0;
3545595bdbfbS[email protected] 
354644935e40S[email protected]     // buffer is free
354702c7fc01SMatthias Ringwald     hci_stack->hci_packet_buffer_reserved = false;
354844935e40S[email protected] 
3549595bdbfbS[email protected]     // no pending cmds
3550595bdbfbS[email protected]     hci_stack->decline_reason = 0;
3551595bdbfbS[email protected] 
3552c214d65bSMatthias Ringwald     hci_stack->secure_connections_active = false;
3553c214d65bSMatthias Ringwald 
3554bea424a5SMatthias Ringwald #ifdef ENABLE_CLASSIC
3555496bb884SMatthias Ringwald     hci_stack->inquiry_lap = GAP_IAC_GENERAL_INQUIRY;
355632a12730SMatthias Ringwald     hci_stack->page_timeout = 0x6000;  // ca. 15 sec
355732a12730SMatthias Ringwald 
3558baa4881eSMatthias Ringwald     hci_stack->gap_tasks_classic =
355959d59ecfSMatthias Ringwald             GAP_TASK_SET_DEFAULT_LINK_POLICY |
356059d59ecfSMatthias Ringwald             GAP_TASK_SET_CLASS_OF_DEVICE |
356159d59ecfSMatthias Ringwald             GAP_TASK_SET_LOCAL_NAME |
3562bc2dcc03SMatthias Ringwald             GAP_TASK_SET_EIR_DATA |
356332a12730SMatthias Ringwald             GAP_TASK_WRITE_SCAN_ENABLE |
356432a12730SMatthias Ringwald             GAP_TASK_WRITE_PAGE_TIMEOUT;
3565bea424a5SMatthias Ringwald #endif
3566bea424a5SMatthias Ringwald 
3567cf01e888SMatthias Ringwald #ifdef ENABLE_CLASSIC_PAIRING_OOB
35688d5f0979SMatthias Ringwald     hci_stack->classic_read_local_oob_data = false;
35691ae74bf3SMatthias Ringwald     hci_stack->classic_oob_con_handle = HCI_CON_HANDLE_INVALID;
3570cf01e888SMatthias Ringwald #endif
3571cf01e888SMatthias Ringwald 
3572595bdbfbS[email protected]     // LE
3573b95a5a35SMatthias Ringwald #ifdef ENABLE_BLE
3574b95a5a35SMatthias Ringwald     memset(hci_stack->le_random_address, 0, 6);
3575b95a5a35SMatthias Ringwald     hci_stack->le_random_address_set = 0;
3576d70217a2SMatthias Ringwald #endif
3577d70217a2SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
3578a61834b6SMatthias Ringwald     hci_stack->le_scanning_active  = false;
357973799937SMatthias Ringwald     hci_stack->le_scanning_param_update = true;
3580b04dfa37SMatthias Ringwald     hci_stack->le_connecting_state = LE_CONNECTING_IDLE;
3581d5b1a89eSMatthias Ringwald     hci_stack->le_connecting_request = LE_CONNECTING_IDLE;
3582e83201bcSMatthias Ringwald     hci_stack->le_whitelist_capacity = 0;
3583d70217a2SMatthias Ringwald #endif
3584a61834b6SMatthias Ringwald #ifdef ENABLE_LE_PERIPHERAL
3585a61834b6SMatthias Ringwald     hci_stack->le_advertisements_active = false;
3586a61834b6SMatthias Ringwald     if ((hci_stack->le_advertisements_todo & LE_ADVERTISEMENT_TASKS_PARAMS_SET) != 0){
3587a61834b6SMatthias Ringwald         hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_SET_PARAMS;
3588a61834b6SMatthias Ringwald     }
3589a61834b6SMatthias Ringwald     if (hci_stack->le_advertisements_data != NULL){
3590a61834b6SMatthias Ringwald         hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_SET_ADV_DATA;
3591a61834b6SMatthias Ringwald     }
3592a61834b6SMatthias Ringwald #endif
3593595bdbfbS[email protected] }
3594595bdbfbS[email protected] 
359535454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
35962d5e09d6SMatthias Ringwald /**
35972d5e09d6SMatthias Ringwald  * @brief Configure Bluetooth hardware control. Has to be called before power on.
35982d5e09d6SMatthias Ringwald  */
35992d5e09d6SMatthias Ringwald void hci_set_link_key_db(btstack_link_key_db_t const * link_key_db){
36002d5e09d6SMatthias Ringwald     // store and open remote device db
36012d5e09d6SMatthias Ringwald     hci_stack->link_key_db = link_key_db;
36022d5e09d6SMatthias Ringwald     if (hci_stack->link_key_db) {
36032d5e09d6SMatthias Ringwald         hci_stack->link_key_db->open();
36042d5e09d6SMatthias Ringwald     }
36052d5e09d6SMatthias Ringwald }
360635454696SMatthias Ringwald #endif
36072d5e09d6SMatthias Ringwald 
36082d5e09d6SMatthias Ringwald void hci_init(const hci_transport_t *transport, const void *config){
3609475c8125Smatthias.ringwald 
36103a9fb326S[email protected] #ifdef HAVE_MALLOC
36113a9fb326S[email protected]     if (!hci_stack) {
36123a9fb326S[email protected]         hci_stack = (hci_stack_t*) malloc(sizeof(hci_stack_t));
36133a9fb326S[email protected]     }
36143a9fb326S[email protected] #else
36153a9fb326S[email protected]     hci_stack = &hci_stack_static;
36163a9fb326S[email protected] #endif
361766fb9560S[email protected]     memset(hci_stack, 0, sizeof(hci_stack_t));
36183a9fb326S[email protected] 
3619475c8125Smatthias.ringwald     // reference to use transport layer implementation
36203a9fb326S[email protected]     hci_stack->hci_transport = transport;
3621475c8125Smatthias.ringwald 
362211e23e5fSmatthias.ringwald     // reference to used config
36233a9fb326S[email protected]     hci_stack->config = config;
362411e23e5fSmatthias.ringwald 
362526a9b6daSMatthias Ringwald     // setup pointer for outgoing packet buffer
362626a9b6daSMatthias Ringwald     hci_stack->hci_packet_buffer = &hci_stack->hci_packet_buffer_data[HCI_OUTGOING_PRE_BUFFER_SIZE];
362726a9b6daSMatthias Ringwald 
36288fcba05dSmatthias.ringwald     // max acl payload size defined in config.h
36293a9fb326S[email protected]     hci_stack->acl_data_packet_length = HCI_ACL_PAYLOAD_SIZE;
36308fcba05dSmatthias.ringwald 
363116833f0aSmatthias.ringwald     // register packet handlers with transport
363210e830c9Smatthias.ringwald     transport->register_packet_handler(&packet_handler);
3633f5454fc6Smatthias.ringwald 
36343a9fb326S[email protected]     hci_stack->state = HCI_STATE_OFF;
3635e2386ba1S[email protected] 
3636e2386ba1S[email protected]     // class of device
36373a9fb326S[email protected]     hci_stack->class_of_device = 0x007a020c; // Smartphone
3638a45d6b9fS[email protected] 
3639f20168b8Smatthias.ringwald     // bondable by default
3640f20168b8Smatthias.ringwald     hci_stack->bondable = 1;
3641f20168b8Smatthias.ringwald 
3642e9f343c8SMatthias Ringwald #ifdef ENABLE_CLASSIC
364363168530SMatthias Ringwald     // classic name
364463168530SMatthias Ringwald     hci_stack->local_name = default_classic_name;
3645c4c88f1bSJakob Krantz 
3646c4c88f1bSJakob Krantz     // Master slave policy
3647c4c88f1bSJakob Krantz     hci_stack->master_slave_policy = 1;
3648170fafaeSMatthias Ringwald 
3649b4eb4420SMatthias Ringwald     // Allow Role Switch
3650b4eb4420SMatthias Ringwald     hci_stack->allow_role_switch = 1;
3651b4eb4420SMatthias Ringwald 
365278315a58SMatthias Ringwald     // Default / minimum security level = 2
365378315a58SMatthias Ringwald     hci_stack->gap_security_level = LEVEL_2;
365478315a58SMatthias Ringwald 
36555dbec6b3SMatthias Ringwald     // Default Security Mode 4
36565dbec6b3SMatthias Ringwald     hci_stack->gap_security_mode = GAP_SECURITY_MODE_4;
36575dbec6b3SMatthias Ringwald 
3658cd345294SMatthias Ringwald     // Errata-11838 mandates 7 bytes for GAP Security Level 1-3
3659cd345294SMatthias Ringwald     hci_stack->gap_required_encyrption_key_size = 7;
3660d821984bSMatthias Ringwald 
3661d821984bSMatthias Ringwald     // Link Supervision Timeout
3662d821984bSMatthias Ringwald     hci_stack->link_supervision_timeout = HCI_LINK_SUPERVISION_TIMEOUT_DEFAULT;
3663d821984bSMatthias Ringwald 
3664e9f343c8SMatthias Ringwald #endif
366563168530SMatthias Ringwald 
366663048403S[email protected]     // Secure Simple Pairing default: enable, no I/O capabilities, general bonding, mitm not required, auto accept
36673a9fb326S[email protected]     hci_stack->ssp_enable = 1;
36683a9fb326S[email protected]     hci_stack->ssp_io_capability = SSP_IO_CAPABILITY_NO_INPUT_NO_OUTPUT;
36693a9fb326S[email protected]     hci_stack->ssp_authentication_requirement = SSP_IO_AUTHREQ_MITM_PROTECTION_NOT_REQUIRED_GENERAL_BONDING;
36703a9fb326S[email protected]     hci_stack->ssp_auto_accept = 1;
367169a97523S[email protected] 
36725d23aae8SMatthias Ringwald     // Secure Connections: enable (requires support from Controller)
36735d23aae8SMatthias Ringwald     hci_stack->secure_connections_enable = true;
36745d23aae8SMatthias Ringwald 
3675fac2e2feSMatthias Ringwald     // voice setting - signed 16 bit pcm data with CVSD over the air
3676fac2e2feSMatthias Ringwald     hci_stack->sco_voice_setting = 0x60;
3677d950d659SMatthias Ringwald 
3678831711daSMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
3679831711daSMatthias Ringwald     // connection parameter to use for outgoing connections
3680cbe54ab2SJakob Krantz     hci_stack->le_connection_scan_interval = 0x0060;   // 60ms
3681cbe54ab2SJakob Krantz     hci_stack->le_connection_scan_window  = 0x0030;    // 30ms
3682831711daSMatthias Ringwald     hci_stack->le_connection_interval_min = 0x0008;    // 10 ms
3683831711daSMatthias Ringwald     hci_stack->le_connection_interval_max = 0x0018;    // 30 ms
3684831711daSMatthias Ringwald     hci_stack->le_connection_latency      = 4;         // 4
3685831711daSMatthias Ringwald     hci_stack->le_supervision_timeout     = 0x0048;    // 720 ms
3686831711daSMatthias Ringwald     hci_stack->le_minimum_ce_length       = 2;         // 1.25 ms
3687831711daSMatthias Ringwald     hci_stack->le_maximum_ce_length       = 0x0030;    // 30 ms
36887261e5d8SMatthias Ringwald 
36897261e5d8SMatthias Ringwald     // default LE Scanning
36908b69e4c7SMatthias Ringwald     hci_stack->le_scan_type     =   0x1; // active
36918b69e4c7SMatthias Ringwald     hci_stack->le_scan_interval = 0x1e0; // 300 ms
36928b69e4c7SMatthias Ringwald     hci_stack->le_scan_window   =  0x30; //  30 ms
3693831711daSMatthias Ringwald #endif
3694831711daSMatthias Ringwald 
36952b6ab3e6SMatthias Ringwald #ifdef ENABLE_LE_PERIPHERAL
36962b6ab3e6SMatthias Ringwald     hci_stack->le_max_number_peripheral_connections = 1; // only single connection as peripheral
36972b6ab3e6SMatthias Ringwald #endif
36982b6ab3e6SMatthias Ringwald 
3699831711daSMatthias Ringwald     // connection parameter range used to answer connection parameter update requests in l2cap
3700831711daSMatthias Ringwald     hci_stack->le_connection_parameter_range.le_conn_interval_min =          6;
3701831711daSMatthias Ringwald     hci_stack->le_connection_parameter_range.le_conn_interval_max =       3200;
3702831711daSMatthias Ringwald     hci_stack->le_connection_parameter_range.le_conn_latency_min =           0;
3703831711daSMatthias Ringwald     hci_stack->le_connection_parameter_range.le_conn_latency_max =         500;
3704831711daSMatthias Ringwald     hci_stack->le_connection_parameter_range.le_supervision_timeout_min =   10;
3705831711daSMatthias Ringwald     hci_stack->le_connection_parameter_range.le_supervision_timeout_max = 3200;
3706831711daSMatthias Ringwald 
3707595bdbfbS[email protected]     hci_state_reset();
3708475c8125Smatthias.ringwald }
3709475c8125Smatthias.ringwald 
37104688f216SMatthias Ringwald void hci_deinit(void){
37114688f216SMatthias Ringwald #ifdef HAVE_MALLOC
37124688f216SMatthias Ringwald     if (hci_stack) {
37134688f216SMatthias Ringwald         free(hci_stack);
37144688f216SMatthias Ringwald     }
37154688f216SMatthias Ringwald #endif
37164688f216SMatthias Ringwald     hci_stack = NULL;
3717b5bbcbf4SMatthias Ringwald 
3718b5bbcbf4SMatthias Ringwald #ifdef ENABLE_CLASSIC
37194688f216SMatthias Ringwald     disable_l2cap_timeouts = 0;
3720b5bbcbf4SMatthias Ringwald #endif
37214688f216SMatthias Ringwald }
37224688f216SMatthias Ringwald 
37233fb36a29SMatthias Ringwald /**
37243fb36a29SMatthias Ringwald  * @brief Configure Bluetooth chipset driver. Has to be called before power on, or right after receiving the local version information
37253fb36a29SMatthias Ringwald  */
37263fb36a29SMatthias Ringwald void hci_set_chipset(const btstack_chipset_t *chipset_driver){
37273fb36a29SMatthias Ringwald     hci_stack->chipset = chipset_driver;
37283fb36a29SMatthias Ringwald 
37293fb36a29SMatthias Ringwald     // reset chipset driver - init is also called on power_up
37303fb36a29SMatthias Ringwald     if (hci_stack->chipset && hci_stack->chipset->init){
37313fb36a29SMatthias Ringwald         hci_stack->chipset->init(hci_stack->config);
37323fb36a29SMatthias Ringwald     }
37333fb36a29SMatthias Ringwald }
37343fb36a29SMatthias Ringwald 
3735fb55bd0aSMatthias Ringwald /**
3736d0b87befSMatthias Ringwald  * @brief Configure Bluetooth hardware control. Has to be called after hci_init() but before power on.
3737fb55bd0aSMatthias Ringwald  */
3738fb55bd0aSMatthias Ringwald void hci_set_control(const btstack_control_t *hardware_control){
3739fb55bd0aSMatthias Ringwald     // references to used control implementation
3740fb55bd0aSMatthias Ringwald     hci_stack->control = hardware_control;
3741d0b87befSMatthias Ringwald     // init with transport config
3742d0b87befSMatthias Ringwald     hardware_control->init(hci_stack->config);
3743fb55bd0aSMatthias Ringwald }
3744fb55bd0aSMatthias Ringwald 
37451f9eb2ccSMatthias Ringwald static void hci_discard_connections(void){
37461f9eb2ccSMatthias Ringwald     btstack_linked_list_iterator_t lit;
37471f9eb2ccSMatthias Ringwald     btstack_linked_list_iterator_init(&lit, &hci_stack->connections);
37481f9eb2ccSMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&lit)){
37491f9eb2ccSMatthias Ringwald         // cancel all l2cap connections by emitting dicsconnection complete before shutdown (free) connection
37501f9eb2ccSMatthias Ringwald         hci_connection_t * connection = (hci_connection_t*) btstack_linked_list_iterator_next(&lit);
37511f9eb2ccSMatthias Ringwald         hci_emit_disconnection_complete(connection->con_handle, 0x16); // terminated by local host
37521f9eb2ccSMatthias Ringwald         hci_shutdown_connection(connection);
37531f9eb2ccSMatthias Ringwald     }
37541f9eb2ccSMatthias Ringwald }
37551f9eb2ccSMatthias Ringwald 
375671de195eSMatthias Ringwald void hci_close(void){
3757e6d6524dSMatthias Ringwald 
3758e6d6524dSMatthias Ringwald #ifdef ENABLE_CLASSIC
3759404843c1Smatthias.ringwald     // close remote device db
3760a98592bcSMatthias Ringwald     if (hci_stack->link_key_db) {
3761a98592bcSMatthias Ringwald         hci_stack->link_key_db->close();
3762404843c1Smatthias.ringwald     }
3763e6d6524dSMatthias Ringwald #endif
37647224be7eSMatthias Ringwald 
37651f9eb2ccSMatthias Ringwald     hci_discard_connections();
37667224be7eSMatthias Ringwald 
3767f5454fc6Smatthias.ringwald     hci_power_control(HCI_POWER_OFF);
37683a9fb326S[email protected] 
37693a9fb326S[email protected] #ifdef HAVE_MALLOC
37703a9fb326S[email protected]     free(hci_stack);
37713a9fb326S[email protected] #endif
37723a9fb326S[email protected]     hci_stack = NULL;
3773404843c1Smatthias.ringwald }
3774404843c1Smatthias.ringwald 
3775cb70c5abSMatthias Ringwald #ifdef HAVE_SCO_TRANSPORT
3776cb70c5abSMatthias Ringwald void hci_set_sco_transport(const btstack_sco_transport_t *sco_transport){
3777cb70c5abSMatthias Ringwald     hci_stack->sco_transport = sco_transport;
3778cb70c5abSMatthias Ringwald     sco_transport->register_packet_handler(&packet_handler);
3779cb70c5abSMatthias Ringwald }
3780cb70c5abSMatthias Ringwald #endif
3781cb70c5abSMatthias Ringwald 
378235454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
3783170fafaeSMatthias Ringwald void gap_set_required_encryption_key_size(uint8_t encryption_key_size){
3784170fafaeSMatthias Ringwald     // validate ranage and set
3785170fafaeSMatthias Ringwald     if (encryption_key_size < 7)  return;
3786170fafaeSMatthias Ringwald     if (encryption_key_size > 16) return;
3787170fafaeSMatthias Ringwald     hci_stack->gap_required_encyrption_key_size = encryption_key_size;
3788170fafaeSMatthias Ringwald }
378978315a58SMatthias Ringwald 
3790137715ebSMatthias Ringwald uint8_t gap_set_security_mode(gap_security_mode_t security_mode){
3791137715ebSMatthias Ringwald     if ((security_mode == GAP_SECURITY_MODE_4) || (security_mode == GAP_SECURITY_MODE_2)){
37925dbec6b3SMatthias Ringwald         hci_stack->gap_security_mode = security_mode;
3793137715ebSMatthias Ringwald         return ERROR_CODE_SUCCESS;
3794137715ebSMatthias Ringwald     } else {
3795137715ebSMatthias Ringwald         return ERROR_CODE_UNSUPPORTED_FEATURE_OR_PARAMETER_VALUE;
3796137715ebSMatthias Ringwald     }
37975dbec6b3SMatthias Ringwald }
37985dbec6b3SMatthias Ringwald 
37995dbec6b3SMatthias Ringwald gap_security_mode_t gap_get_security_mode(void){
38005dbec6b3SMatthias Ringwald     return hci_stack->gap_security_mode;
38015dbec6b3SMatthias Ringwald }
38025dbec6b3SMatthias Ringwald 
380378315a58SMatthias Ringwald void gap_set_security_level(gap_security_level_t security_level){
380478315a58SMatthias Ringwald     hci_stack->gap_security_level = security_level;
380578315a58SMatthias Ringwald }
380678315a58SMatthias Ringwald 
380778315a58SMatthias Ringwald gap_security_level_t gap_get_security_level(void){
3808d7387af3SMatthias Ringwald     if (hci_stack->gap_secure_connections_only_mode){
3809d7387af3SMatthias Ringwald         return LEVEL_4;
3810d7387af3SMatthias Ringwald     }
381178315a58SMatthias Ringwald     return hci_stack->gap_security_level;
381278315a58SMatthias Ringwald }
381330cdf3c6SMatthias Ringwald 
38148ad4dfffSMatthias Ringwald void gap_set_minimal_service_security_level(gap_security_level_t security_level){
38158ad4dfffSMatthias Ringwald     hci_stack->gap_minimal_service_security_level = security_level;
38168ad4dfffSMatthias Ringwald }
38178ad4dfffSMatthias Ringwald 
381830cdf3c6SMatthias Ringwald void gap_set_secure_connections_only_mode(bool enable){
381930cdf3c6SMatthias Ringwald     hci_stack->gap_secure_connections_only_mode = enable;
382030cdf3c6SMatthias Ringwald }
382130cdf3c6SMatthias Ringwald 
382230cdf3c6SMatthias Ringwald bool gap_get_secure_connections_only_mode(void){
382330cdf3c6SMatthias Ringwald     return hci_stack->gap_secure_connections_only_mode;
382430cdf3c6SMatthias Ringwald }
3825170fafaeSMatthias Ringwald #endif
3826170fafaeSMatthias Ringwald 
3827170fafaeSMatthias Ringwald #ifdef ENABLE_CLASSIC
382860b9e82fSMatthias Ringwald void gap_set_class_of_device(uint32_t class_of_device){
38299e61646fS[email protected]     hci_stack->class_of_device = class_of_device;
3830baa4881eSMatthias Ringwald     hci_stack->gap_tasks_classic |= GAP_TASK_SET_CLASS_OF_DEVICE;
383159d59ecfSMatthias Ringwald     hci_run();
38329e61646fS[email protected] }
383376f27cffSMatthias Ringwald 
3834c33e56d3SMatthias Ringwald void gap_set_default_link_policy_settings(uint16_t default_link_policy_settings){
3835c33e56d3SMatthias Ringwald     hci_stack->default_link_policy_settings = default_link_policy_settings;
3836baa4881eSMatthias Ringwald     hci_stack->gap_tasks_classic |= GAP_TASK_SET_DEFAULT_LINK_POLICY;
383759d59ecfSMatthias Ringwald     hci_run();
3838c33e56d3SMatthias Ringwald }
3839c33e56d3SMatthias Ringwald 
3840b4eb4420SMatthias Ringwald void gap_set_allow_role_switch(bool allow_role_switch){
3841b4eb4420SMatthias Ringwald     hci_stack->allow_role_switch = allow_role_switch ? 1 : 0;
3842b4eb4420SMatthias Ringwald }
3843b4eb4420SMatthias Ringwald 
3844b4eb4420SMatthias Ringwald uint8_t hci_get_allow_role_switch(void){
3845b4eb4420SMatthias Ringwald     return  hci_stack->allow_role_switch;
3846b4eb4420SMatthias Ringwald }
3847b4eb4420SMatthias Ringwald 
38480c3eb48dSMatthias Ringwald void gap_set_link_supervision_timeout(uint16_t link_supervision_timeout){
38490c3eb48dSMatthias Ringwald     hci_stack->link_supervision_timeout = link_supervision_timeout;
38500c3eb48dSMatthias Ringwald }
38510c3eb48dSMatthias Ringwald 
385276f27cffSMatthias Ringwald void hci_disable_l2cap_timeout_check(void){
385376f27cffSMatthias Ringwald     disable_l2cap_timeouts = 1;
385476f27cffSMatthias Ringwald }
385535454696SMatthias Ringwald #endif
38569e61646fS[email protected] 
38576fad2c37SMatthias Ringwald #ifndef HAVE_HOST_CONTROLLER_API
3858f456b2d0S[email protected] // Set Public BD ADDR - passed on to Bluetooth chipset if supported in bt_control_h
3859f456b2d0S[email protected] void hci_set_bd_addr(bd_addr_t addr){
38606535961aSMatthias Ringwald     (void)memcpy(hci_stack->custom_bd_addr, addr, 6);
3861f456b2d0S[email protected]     hci_stack->custom_bd_addr_set = 1;
3862f456b2d0S[email protected] }
386376f27cffSMatthias Ringwald #endif
3864f456b2d0S[email protected] 
38658d213e1aSmatthias.ringwald // State-Module-Driver overview
38668d213e1aSmatthias.ringwald // state                    module  low-level
38678d213e1aSmatthias.ringwald // HCI_STATE_OFF             off      close
38688d213e1aSmatthias.ringwald // HCI_STATE_INITIALIZING,   on       open
38698d213e1aSmatthias.ringwald // HCI_STATE_WORKING,        on       open
38708d213e1aSmatthias.ringwald // HCI_STATE_HALTING,        on       open
3871d661ed19Smatthias.ringwald // HCI_STATE_SLEEPING,    off/sleep   close
3872d661ed19Smatthias.ringwald // HCI_STATE_FALLING_ASLEEP  on       open
3873c7e0c5f6Smatthias.ringwald 
387440d1c7a4Smatthias.ringwald static int hci_power_control_on(void){
38757301ad89Smatthias.ringwald 
3876038bc64cSmatthias.ringwald     // power on
3877f9a30166Smatthias.ringwald     int err = 0;
38783a9fb326S[email protected]     if (hci_stack->control && hci_stack->control->on){
3879d0b87befSMatthias Ringwald         err = (*hci_stack->control->on)();
3880f9a30166Smatthias.ringwald     }
3881038bc64cSmatthias.ringwald     if (err){
38829da54300S[email protected]         log_error( "POWER_ON failed");
3883038bc64cSmatthias.ringwald         hci_emit_hci_open_failed();
3884038bc64cSmatthias.ringwald         return err;
3885038bc64cSmatthias.ringwald     }
3886038bc64cSmatthias.ringwald 
388724b3c629SMatthias Ringwald     // int chipset driver
38883fb36a29SMatthias Ringwald     if (hci_stack->chipset && hci_stack->chipset->init){
38893fb36a29SMatthias Ringwald         hci_stack->chipset->init(hci_stack->config);
38903fb36a29SMatthias Ringwald     }
38913fb36a29SMatthias Ringwald 
389224b3c629SMatthias Ringwald     // init transport
389324b3c629SMatthias Ringwald     if (hci_stack->hci_transport->init){
389424b3c629SMatthias Ringwald         hci_stack->hci_transport->init(hci_stack->config);
389524b3c629SMatthias Ringwald     }
389624b3c629SMatthias Ringwald 
389724b3c629SMatthias Ringwald     // open transport
389824b3c629SMatthias Ringwald     err = hci_stack->hci_transport->open();
3899038bc64cSmatthias.ringwald     if (err){
39009da54300S[email protected]         log_error( "HCI_INIT failed, turning Bluetooth off again");
39013a9fb326S[email protected]         if (hci_stack->control && hci_stack->control->off){
3902d0b87befSMatthias Ringwald             (*hci_stack->control->off)();
3903f9a30166Smatthias.ringwald         }
3904038bc64cSmatthias.ringwald         hci_emit_hci_open_failed();
3905038bc64cSmatthias.ringwald         return err;
3906038bc64cSmatthias.ringwald     }
39078d213e1aSmatthias.ringwald     return 0;
39088d213e1aSmatthias.ringwald }
3909038bc64cSmatthias.ringwald 
391040d1c7a4Smatthias.ringwald static void hci_power_control_off(void){
39118d213e1aSmatthias.ringwald 
39129da54300S[email protected]     log_info("hci_power_control_off");
39139418f9c9Smatthias.ringwald 
39148d213e1aSmatthias.ringwald     // close low-level device
391524b3c629SMatthias Ringwald     hci_stack->hci_transport->close();
39168d213e1aSmatthias.ringwald 
39179da54300S[email protected]     log_info("hci_power_control_off - hci_transport closed");
39189418f9c9Smatthias.ringwald 
39198d213e1aSmatthias.ringwald     // power off
39203a9fb326S[email protected]     if (hci_stack->control && hci_stack->control->off){
3921d0b87befSMatthias Ringwald         (*hci_stack->control->off)();
39228d213e1aSmatthias.ringwald     }
39239418f9c9Smatthias.ringwald 
39249da54300S[email protected]     log_info("hci_power_control_off - control closed");
39259418f9c9Smatthias.ringwald 
39263a9fb326S[email protected]     hci_stack->state = HCI_STATE_OFF;
392772ea5239Smatthias.ringwald }
392872ea5239Smatthias.ringwald 
392940d1c7a4Smatthias.ringwald static void hci_power_control_sleep(void){
393072ea5239Smatthias.ringwald 
39319da54300S[email protected]     log_info("hci_power_control_sleep");
39323144bce4Smatthias.ringwald 
3933b429b9b7Smatthias.ringwald #if 0
3934b429b9b7Smatthias.ringwald     // don't close serial port during sleep
3935b429b9b7Smatthias.ringwald 
393672ea5239Smatthias.ringwald     // close low-level device
39373a9fb326S[email protected]     hci_stack->hci_transport->close(hci_stack->config);
3938b429b9b7Smatthias.ringwald #endif
393972ea5239Smatthias.ringwald 
394072ea5239Smatthias.ringwald     // sleep mode
39413a9fb326S[email protected]     if (hci_stack->control && hci_stack->control->sleep){
3942d0b87befSMatthias Ringwald         (*hci_stack->control->sleep)();
394372ea5239Smatthias.ringwald     }
3944b429b9b7Smatthias.ringwald 
39453a9fb326S[email protected]     hci_stack->state = HCI_STATE_SLEEPING;
39468d213e1aSmatthias.ringwald }
39478d213e1aSmatthias.ringwald 
394840d1c7a4Smatthias.ringwald static int hci_power_control_wake(void){
3949b429b9b7Smatthias.ringwald 
39509da54300S[email protected]     log_info("hci_power_control_wake");
3951b429b9b7Smatthias.ringwald 
3952b429b9b7Smatthias.ringwald     // wake on
39533a9fb326S[email protected]     if (hci_stack->control && hci_stack->control->wake){
3954d0b87befSMatthias Ringwald         (*hci_stack->control->wake)();
3955b429b9b7Smatthias.ringwald     }
3956b429b9b7Smatthias.ringwald 
3957b429b9b7Smatthias.ringwald #if 0
3958b429b9b7Smatthias.ringwald     // open low-level device
39593a9fb326S[email protected]     int err = hci_stack->hci_transport->open(hci_stack->config);
3960b429b9b7Smatthias.ringwald     if (err){
39619da54300S[email protected]         log_error( "HCI_INIT failed, turning Bluetooth off again");
39623a9fb326S[email protected]         if (hci_stack->control && hci_stack->control->off){
3963d0b87befSMatthias Ringwald             (*hci_stack->control->off)();
3964b429b9b7Smatthias.ringwald         }
3965b429b9b7Smatthias.ringwald         hci_emit_hci_open_failed();
3966b429b9b7Smatthias.ringwald         return err;
3967b429b9b7Smatthias.ringwald     }
3968b429b9b7Smatthias.ringwald #endif
3969b429b9b7Smatthias.ringwald 
3970b429b9b7Smatthias.ringwald     return 0;
3971b429b9b7Smatthias.ringwald }
3972b429b9b7Smatthias.ringwald 
397344935e40S[email protected] static void hci_power_transition_to_initializing(void){
397444935e40S[email protected]     // set up state machine
397544935e40S[email protected]     hci_stack->num_cmd_packets = 1; // assume that one cmd can be sent
397602c7fc01SMatthias Ringwald     hci_stack->hci_packet_buffer_reserved = false;
397744935e40S[email protected]     hci_stack->state = HCI_STATE_INITIALIZING;
39785c363727SMatthias Ringwald     hci_stack->substate = HCI_INIT_SEND_RESET;
397944935e40S[email protected] }
3980b429b9b7Smatthias.ringwald 
398142bd3d77SMatthias Ringwald // returns error
398242bd3d77SMatthias Ringwald static int hci_power_control_state_off(HCI_POWER_MODE power_mode){
398342bd3d77SMatthias Ringwald     int err;
39848d213e1aSmatthias.ringwald     switch (power_mode){
39858d213e1aSmatthias.ringwald         case HCI_POWER_ON:
39868d213e1aSmatthias.ringwald             err = hci_power_control_on();
398742bd3d77SMatthias Ringwald             if (err != 0) {
3988f04a0c31SMatthias Ringwald                 log_error("hci_power_control_on() error %d", err);
398997b61c7bS[email protected]                 return err;
399097b61c7bS[email protected]             }
399144935e40S[email protected]             hci_power_transition_to_initializing();
39928d213e1aSmatthias.ringwald             break;
39938d213e1aSmatthias.ringwald         case HCI_POWER_OFF:
39948d213e1aSmatthias.ringwald             // do nothing
39958d213e1aSmatthias.ringwald             break;
39968d213e1aSmatthias.ringwald         case HCI_POWER_SLEEP:
3997b546ac54Smatthias.ringwald             // do nothing (with SLEEP == OFF)
39988d213e1aSmatthias.ringwald             break;
39997bbeb3adSMilanka Ringwald         default:
40007bbeb3adSMilanka Ringwald             btstack_assert(false);
40017bbeb3adSMilanka Ringwald             break;
40028d213e1aSmatthias.ringwald     }
400342bd3d77SMatthias Ringwald     return ERROR_CODE_SUCCESS;
400442bd3d77SMatthias Ringwald }
40057301ad89Smatthias.ringwald 
400642bd3d77SMatthias Ringwald static int hci_power_control_state_initializing(HCI_POWER_MODE power_mode){
40078d213e1aSmatthias.ringwald     switch (power_mode){
40088d213e1aSmatthias.ringwald         case HCI_POWER_ON:
40098d213e1aSmatthias.ringwald             // do nothing
40108d213e1aSmatthias.ringwald             break;
40118d213e1aSmatthias.ringwald         case HCI_POWER_OFF:
40128d213e1aSmatthias.ringwald             // no connections yet, just turn it off
40138d213e1aSmatthias.ringwald             hci_power_control_off();
40148d213e1aSmatthias.ringwald             break;
40158d213e1aSmatthias.ringwald         case HCI_POWER_SLEEP:
4016b546ac54Smatthias.ringwald             // no connections yet, just turn it off
401772ea5239Smatthias.ringwald             hci_power_control_sleep();
40188d213e1aSmatthias.ringwald             break;
40197bbeb3adSMilanka Ringwald         default:
40207bbeb3adSMilanka Ringwald             btstack_assert(false);
40217bbeb3adSMilanka Ringwald             break;
40228d213e1aSmatthias.ringwald     }
402342bd3d77SMatthias Ringwald     return ERROR_CODE_SUCCESS;
402442bd3d77SMatthias Ringwald }
40257301ad89Smatthias.ringwald 
402642bd3d77SMatthias Ringwald static int hci_power_control_state_working(HCI_POWER_MODE power_mode) {
40278d213e1aSmatthias.ringwald     switch (power_mode){
40288d213e1aSmatthias.ringwald         case HCI_POWER_ON:
40298d213e1aSmatthias.ringwald             // do nothing
40308d213e1aSmatthias.ringwald             break;
40318d213e1aSmatthias.ringwald         case HCI_POWER_OFF:
4032c7e0c5f6Smatthias.ringwald             // see hci_run
40333a9fb326S[email protected]             hci_stack->state = HCI_STATE_HALTING;
4034beceeddeSMatthias Ringwald             hci_stack->substate = HCI_HALTING_DISCONNECT_ALL_NO_TIMER;
4035685ec254SMatthias Ringwald             // setup watchdog timer for disconnect - only triggers if Controller does not respond anymore
4036685ec254SMatthias Ringwald             btstack_run_loop_set_timer(&hci_stack->timeout, 1000);
4037685ec254SMatthias Ringwald             btstack_run_loop_set_timer_handler(&hci_stack->timeout, hci_halting_timeout_handler);
4038685ec254SMatthias Ringwald             btstack_run_loop_add_timer(&hci_stack->timeout);
40398d213e1aSmatthias.ringwald             break;
40408d213e1aSmatthias.ringwald         case HCI_POWER_SLEEP:
4041b546ac54Smatthias.ringwald             // see hci_run
40423a9fb326S[email protected]             hci_stack->state = HCI_STATE_FALLING_ASLEEP;
404374b323a9SMatthias Ringwald             hci_stack->substate = HCI_FALLING_ASLEEP_DISCONNECT;
40448d213e1aSmatthias.ringwald             break;
40457bbeb3adSMilanka Ringwald         default:
40467bbeb3adSMilanka Ringwald             btstack_assert(false);
40477bbeb3adSMilanka Ringwald             break;
40488d213e1aSmatthias.ringwald     }
404942bd3d77SMatthias Ringwald     return ERROR_CODE_SUCCESS;
405042bd3d77SMatthias Ringwald }
40517301ad89Smatthias.ringwald 
405242bd3d77SMatthias Ringwald static int hci_power_control_state_halting(HCI_POWER_MODE power_mode) {
40538d213e1aSmatthias.ringwald     switch (power_mode){
40548d213e1aSmatthias.ringwald         case HCI_POWER_ON:
405544935e40S[email protected]             hci_power_transition_to_initializing();
40568d213e1aSmatthias.ringwald             break;
40578d213e1aSmatthias.ringwald         case HCI_POWER_OFF:
40588d213e1aSmatthias.ringwald             // do nothing
40598d213e1aSmatthias.ringwald             break;
40608d213e1aSmatthias.ringwald         case HCI_POWER_SLEEP:
4061b546ac54Smatthias.ringwald             // see hci_run
40623a9fb326S[email protected]             hci_stack->state = HCI_STATE_FALLING_ASLEEP;
406374b323a9SMatthias Ringwald             hci_stack->substate = HCI_FALLING_ASLEEP_DISCONNECT;
40648d213e1aSmatthias.ringwald             break;
40657bbeb3adSMilanka Ringwald         default:
40667bbeb3adSMilanka Ringwald             btstack_assert(false);
40677bbeb3adSMilanka Ringwald             break;
40688d213e1aSmatthias.ringwald     }
406900278272SMatthias Ringwald     return ERROR_CODE_SUCCESS;
407042bd3d77SMatthias Ringwald }
40718d213e1aSmatthias.ringwald 
407242bd3d77SMatthias Ringwald static int hci_power_control_state_falling_asleep(HCI_POWER_MODE power_mode) {
40738d213e1aSmatthias.ringwald     switch (power_mode){
40748d213e1aSmatthias.ringwald         case HCI_POWER_ON:
407544935e40S[email protected]             hci_power_transition_to_initializing();
40768d213e1aSmatthias.ringwald             break;
40778d213e1aSmatthias.ringwald         case HCI_POWER_OFF:
4078b546ac54Smatthias.ringwald             // see hci_run
40793a9fb326S[email protected]             hci_stack->state = HCI_STATE_HALTING;
4080beceeddeSMatthias Ringwald             hci_stack->substate = HCI_HALTING_DISCONNECT_ALL_NO_TIMER;
40818d213e1aSmatthias.ringwald             break;
40828d213e1aSmatthias.ringwald         case HCI_POWER_SLEEP:
4083b546ac54Smatthias.ringwald             // do nothing
40848d213e1aSmatthias.ringwald             break;
40857bbeb3adSMilanka Ringwald         default:
40867bbeb3adSMilanka Ringwald             btstack_assert(false);
40877bbeb3adSMilanka Ringwald             break;
40888d213e1aSmatthias.ringwald     }
408942bd3d77SMatthias Ringwald     return ERROR_CODE_SUCCESS;
409042bd3d77SMatthias Ringwald }
40918d213e1aSmatthias.ringwald 
409242bd3d77SMatthias Ringwald static int hci_power_control_state_sleeping(HCI_POWER_MODE power_mode) {
409342bd3d77SMatthias Ringwald     int err;
40948d213e1aSmatthias.ringwald     switch (power_mode){
40958d213e1aSmatthias.ringwald         case HCI_POWER_ON:
40963144bce4Smatthias.ringwald             err = hci_power_control_wake();
40973144bce4Smatthias.ringwald             if (err) return err;
409844935e40S[email protected]             hci_power_transition_to_initializing();
40998d213e1aSmatthias.ringwald             break;
41008d213e1aSmatthias.ringwald         case HCI_POWER_OFF:
41013a9fb326S[email protected]             hci_stack->state = HCI_STATE_HALTING;
4102beceeddeSMatthias Ringwald             hci_stack->substate = HCI_HALTING_DISCONNECT_ALL_NO_TIMER;
41038d213e1aSmatthias.ringwald             break;
41048d213e1aSmatthias.ringwald         case HCI_POWER_SLEEP:
4105b546ac54Smatthias.ringwald             // do nothing
41068d213e1aSmatthias.ringwald             break;
41077bbeb3adSMilanka Ringwald         default:
41087bbeb3adSMilanka Ringwald             btstack_assert(false);
41097bbeb3adSMilanka Ringwald             break;
41108d213e1aSmatthias.ringwald     }
411142bd3d77SMatthias Ringwald     return ERROR_CODE_SUCCESS;
411242bd3d77SMatthias Ringwald }
41137bbeb3adSMilanka Ringwald 
411442bd3d77SMatthias Ringwald int hci_power_control(HCI_POWER_MODE power_mode){
411542bd3d77SMatthias Ringwald     log_info("hci_power_control: %d, current mode %u", power_mode, hci_stack->state);
411624f87726SMatthias Ringwald     int err = 0;
411742bd3d77SMatthias Ringwald     switch (hci_stack->state){
411842bd3d77SMatthias Ringwald         case HCI_STATE_OFF:
411942bd3d77SMatthias Ringwald             err = hci_power_control_state_off(power_mode);
412042bd3d77SMatthias Ringwald             break;
412142bd3d77SMatthias Ringwald         case HCI_STATE_INITIALIZING:
412242bd3d77SMatthias Ringwald             err = hci_power_control_state_initializing(power_mode);
412342bd3d77SMatthias Ringwald             break;
412442bd3d77SMatthias Ringwald         case HCI_STATE_WORKING:
412542bd3d77SMatthias Ringwald             err = hci_power_control_state_working(power_mode);
412642bd3d77SMatthias Ringwald             break;
412742bd3d77SMatthias Ringwald         case HCI_STATE_HALTING:
412842bd3d77SMatthias Ringwald             err = hci_power_control_state_halting(power_mode);
412942bd3d77SMatthias Ringwald             break;
413042bd3d77SMatthias Ringwald         case HCI_STATE_FALLING_ASLEEP:
413142bd3d77SMatthias Ringwald             err = hci_power_control_state_falling_asleep(power_mode);
413242bd3d77SMatthias Ringwald             break;
413342bd3d77SMatthias Ringwald         case HCI_STATE_SLEEPING:
413442bd3d77SMatthias Ringwald             err = hci_power_control_state_sleeping(power_mode);
413542bd3d77SMatthias Ringwald             break;
41367bbeb3adSMilanka Ringwald         default:
41377bbeb3adSMilanka Ringwald             btstack_assert(false);
41387bbeb3adSMilanka Ringwald             break;
413911e23e5fSmatthias.ringwald     }
414024f87726SMatthias Ringwald     if (err != 0){
414142bd3d77SMatthias Ringwald         return err;
414242bd3d77SMatthias Ringwald     }
414368d92d03Smatthias.ringwald 
4144038bc64cSmatthias.ringwald     // create internal event
4145ee8bf225Smatthias.ringwald 	hci_emit_state();
4146ee8bf225Smatthias.ringwald 
414768d92d03Smatthias.ringwald 	// trigger next/first action
414868d92d03Smatthias.ringwald 	hci_run();
414968d92d03Smatthias.ringwald 
4150475c8125Smatthias.ringwald     return 0;
4151475c8125Smatthias.ringwald }
4152475c8125Smatthias.ringwald 
415335454696SMatthias Ringwald 
4154091e35e3SMatthias Ringwald static void hci_halting_run(void) {
4155091e35e3SMatthias Ringwald 
4156091e35e3SMatthias Ringwald     log_info("HCI_STATE_HALTING, substate %x\n", hci_stack->substate);
4157091e35e3SMatthias Ringwald 
4158091e35e3SMatthias Ringwald     hci_connection_t *connection;
4159091e35e3SMatthias Ringwald 
4160091e35e3SMatthias Ringwald     switch (hci_stack->substate) {
4161091e35e3SMatthias Ringwald         case HCI_HALTING_DISCONNECT_ALL_NO_TIMER:
4162091e35e3SMatthias Ringwald         case HCI_HALTING_DISCONNECT_ALL_TIMER:
4163091e35e3SMatthias Ringwald 
4164091e35e3SMatthias Ringwald #ifdef ENABLE_BLE
4165091e35e3SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
4166091e35e3SMatthias Ringwald             hci_whitelist_free();
4167091e35e3SMatthias Ringwald #endif
4168091e35e3SMatthias Ringwald #endif
4169091e35e3SMatthias Ringwald             // close all open connections
4170091e35e3SMatthias Ringwald             connection = (hci_connection_t *) hci_stack->connections;
4171091e35e3SMatthias Ringwald             if (connection) {
4172091e35e3SMatthias Ringwald                 hci_con_handle_t con_handle = (uint16_t) connection->con_handle;
4173091e35e3SMatthias Ringwald                 if (!hci_can_send_command_packet_now()) return;
4174091e35e3SMatthias Ringwald 
4175091e35e3SMatthias Ringwald                 // check state
4176091e35e3SMatthias Ringwald                 if (connection->state == SENT_DISCONNECT) return;
4177091e35e3SMatthias Ringwald                 connection->state = SENT_DISCONNECT;
4178091e35e3SMatthias Ringwald 
4179091e35e3SMatthias Ringwald                 log_info("HCI_STATE_HALTING, connection %p, handle %u", connection, con_handle);
4180091e35e3SMatthias Ringwald 
4181091e35e3SMatthias Ringwald                 // cancel all l2cap connections right away instead of waiting for disconnection complete event ...
4182091e35e3SMatthias Ringwald                 hci_emit_disconnection_complete(con_handle, 0x16); // terminated by local host
4183091e35e3SMatthias Ringwald 
4184091e35e3SMatthias Ringwald                 // ... which would be ignored anyway as we shutdown (free) the connection now
4185091e35e3SMatthias Ringwald                 hci_shutdown_connection(connection);
4186091e35e3SMatthias Ringwald 
4187091e35e3SMatthias Ringwald                 // finally, send the disconnect command
4188091e35e3SMatthias Ringwald                 hci_send_cmd(&hci_disconnect, con_handle, ERROR_CODE_REMOTE_USER_TERMINATED_CONNECTION);
4189091e35e3SMatthias Ringwald                 return;
4190091e35e3SMatthias Ringwald             }
4191091e35e3SMatthias Ringwald 
4192091e35e3SMatthias Ringwald             btstack_run_loop_remove_timer(&hci_stack->timeout);
4193091e35e3SMatthias Ringwald 
4194091e35e3SMatthias Ringwald             if (hci_stack->substate == HCI_HALTING_DISCONNECT_ALL_TIMER) {
4195091e35e3SMatthias Ringwald                 // no connections left, wait a bit to assert that btstack_cyrpto isn't waiting for an HCI event
4196091e35e3SMatthias Ringwald                 log_info("HCI_STATE_HALTING: wait 50 ms");
4197091e35e3SMatthias Ringwald                 hci_stack->substate = HCI_HALTING_W4_TIMER;
4198091e35e3SMatthias Ringwald                 btstack_run_loop_set_timer(&hci_stack->timeout, 50);
4199091e35e3SMatthias Ringwald                 btstack_run_loop_set_timer_handler(&hci_stack->timeout, hci_halting_timeout_handler);
4200091e35e3SMatthias Ringwald                 btstack_run_loop_add_timer(&hci_stack->timeout);
4201091e35e3SMatthias Ringwald                 break;
4202091e35e3SMatthias Ringwald             }
4203091e35e3SMatthias Ringwald 
4204091e35e3SMatthias Ringwald             /* fall through */
4205091e35e3SMatthias Ringwald 
4206091e35e3SMatthias Ringwald         case HCI_HALTING_CLOSE:
4207091e35e3SMatthias Ringwald             // close left over connections (that had not been properly closed before)
4208091e35e3SMatthias Ringwald             hci_discard_connections();
4209091e35e3SMatthias Ringwald 
4210091e35e3SMatthias Ringwald             log_info("HCI_STATE_HALTING, calling off");
4211091e35e3SMatthias Ringwald 
4212091e35e3SMatthias Ringwald             // switch mode
4213091e35e3SMatthias Ringwald             hci_power_control_off();
4214091e35e3SMatthias Ringwald 
4215091e35e3SMatthias Ringwald             log_info("HCI_STATE_HALTING, emitting state");
4216091e35e3SMatthias Ringwald             hci_emit_state();
4217091e35e3SMatthias Ringwald             log_info("HCI_STATE_HALTING, done");
4218091e35e3SMatthias Ringwald             break;
4219091e35e3SMatthias Ringwald 
4220091e35e3SMatthias Ringwald         case HCI_HALTING_W4_TIMER:
4221091e35e3SMatthias Ringwald             // keep waiting
4222091e35e3SMatthias Ringwald 
4223091e35e3SMatthias Ringwald             break;
4224091e35e3SMatthias Ringwald         default:
4225091e35e3SMatthias Ringwald             break;
4226091e35e3SMatthias Ringwald     }
4227091e35e3SMatthias Ringwald };
4228091e35e3SMatthias Ringwald 
4229091e35e3SMatthias Ringwald static void hci_falling_asleep_run(void){
4230091e35e3SMatthias Ringwald     hci_connection_t * connection;
4231091e35e3SMatthias Ringwald     switch(hci_stack->substate) {
4232091e35e3SMatthias Ringwald         case HCI_FALLING_ASLEEP_DISCONNECT:
4233091e35e3SMatthias Ringwald             log_info("HCI_STATE_FALLING_ASLEEP");
4234091e35e3SMatthias Ringwald             // close all open connections
4235091e35e3SMatthias Ringwald             connection =  (hci_connection_t *) hci_stack->connections;
4236091e35e3SMatthias Ringwald             if (connection){
4237091e35e3SMatthias Ringwald 
4238091e35e3SMatthias Ringwald                 // send disconnect
4239091e35e3SMatthias Ringwald                 if (!hci_can_send_command_packet_now()) return;
4240091e35e3SMatthias Ringwald 
4241091e35e3SMatthias Ringwald                 log_info("HCI_STATE_FALLING_ASLEEP, connection %p, handle %u", connection, (uint16_t)connection->con_handle);
4242091e35e3SMatthias Ringwald                 hci_send_cmd(&hci_disconnect, connection->con_handle, ERROR_CODE_REMOTE_USER_TERMINATED_CONNECTION);
4243091e35e3SMatthias Ringwald 
4244091e35e3SMatthias Ringwald                 // send disconnected event right away - causes higher layer connections to get closed, too.
4245091e35e3SMatthias Ringwald                 hci_shutdown_connection(connection);
4246091e35e3SMatthias Ringwald                 return;
4247091e35e3SMatthias Ringwald             }
4248091e35e3SMatthias Ringwald 
4249091e35e3SMatthias Ringwald             if (hci_classic_supported()){
4250091e35e3SMatthias Ringwald                 // disable page and inquiry scan
4251091e35e3SMatthias Ringwald                 if (!hci_can_send_command_packet_now()) return;
4252091e35e3SMatthias Ringwald 
4253091e35e3SMatthias Ringwald                 log_info("HCI_STATE_HALTING, disabling inq scans");
4254091e35e3SMatthias Ringwald                 hci_send_cmd(&hci_write_scan_enable, hci_stack->connectable << 1); // drop inquiry scan but keep page scan
4255091e35e3SMatthias Ringwald 
4256091e35e3SMatthias Ringwald                 // continue in next sub state
4257091e35e3SMatthias Ringwald                 hci_stack->substate = HCI_FALLING_ASLEEP_W4_WRITE_SCAN_ENABLE;
4258091e35e3SMatthias Ringwald                 break;
4259091e35e3SMatthias Ringwald             }
4260091e35e3SMatthias Ringwald 
4261091e35e3SMatthias Ringwald             /* fall through */
4262091e35e3SMatthias Ringwald 
4263091e35e3SMatthias Ringwald             case HCI_FALLING_ASLEEP_COMPLETE:
4264091e35e3SMatthias Ringwald                 log_info("HCI_STATE_HALTING, calling sleep");
4265091e35e3SMatthias Ringwald                 // switch mode
4266091e35e3SMatthias Ringwald                 hci_power_control_sleep();  // changes hci_stack->state to SLEEP
4267091e35e3SMatthias Ringwald                 hci_emit_state();
4268091e35e3SMatthias Ringwald                 break;
4269091e35e3SMatthias Ringwald 
4270091e35e3SMatthias Ringwald                 default:
4271091e35e3SMatthias Ringwald                     break;
4272091e35e3SMatthias Ringwald     }
4273091e35e3SMatthias Ringwald }
4274091e35e3SMatthias Ringwald 
427535454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
427635454696SMatthias Ringwald 
4277758b46ceSmatthias.ringwald static void hci_update_scan_enable(void){
4278758b46ceSmatthias.ringwald     // 2 = page scan, 1 = inq scan
4279a1df452eSMatthias Ringwald     hci_stack->new_scan_enable_value  = (hci_stack->connectable << 1) | hci_stack->discoverable;
4280baa4881eSMatthias Ringwald     hci_stack->gap_tasks_classic |= GAP_TASK_WRITE_SCAN_ENABLE;
4281758b46ceSmatthias.ringwald     hci_run();
4282758b46ceSmatthias.ringwald }
4283758b46ceSmatthias.ringwald 
428415a95bd5SMatthias Ringwald void gap_discoverable_control(uint8_t enable){
4285381fbed8Smatthias.ringwald     if (enable) enable = 1; // normalize argument
4286381fbed8Smatthias.ringwald 
42873a9fb326S[email protected]     if (hci_stack->discoverable == enable){
42883a9fb326S[email protected]         hci_emit_discoverable_enabled(hci_stack->discoverable);
4289381fbed8Smatthias.ringwald         return;
4290381fbed8Smatthias.ringwald     }
4291381fbed8Smatthias.ringwald 
42923a9fb326S[email protected]     hci_stack->discoverable = enable;
4293758b46ceSmatthias.ringwald     hci_update_scan_enable();
4294758b46ceSmatthias.ringwald }
4295b031bebbSmatthias.ringwald 
429615a95bd5SMatthias Ringwald void gap_connectable_control(uint8_t enable){
4297758b46ceSmatthias.ringwald     if (enable) enable = 1; // normalize argument
4298758b46ceSmatthias.ringwald 
4299758b46ceSmatthias.ringwald     // don't emit event
43003a9fb326S[email protected]     if (hci_stack->connectable == enable) return;
4301758b46ceSmatthias.ringwald 
43023a9fb326S[email protected]     hci_stack->connectable = enable;
4303758b46ceSmatthias.ringwald     hci_update_scan_enable();
4304381fbed8Smatthias.ringwald }
430535454696SMatthias Ringwald #endif
4306381fbed8Smatthias.ringwald 
430715a95bd5SMatthias Ringwald void gap_local_bd_addr(bd_addr_t address_buffer){
43086535961aSMatthias Ringwald     (void)memcpy(address_buffer, hci_stack->local_bd_addr, 6);
43095061f3afS[email protected] }
43105061f3afS[email protected] 
43112b838201SMatthias Ringwald #ifdef ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL
43122b838201SMatthias Ringwald static void hci_host_num_completed_packets(void){
43132b838201SMatthias Ringwald 
43142b838201SMatthias Ringwald     // create packet manually as arrays are not supported and num_commands should not get reduced
43152b838201SMatthias Ringwald     hci_reserve_packet_buffer();
43162b838201SMatthias Ringwald     uint8_t * packet = hci_get_outgoing_packet_buffer();
43172b838201SMatthias Ringwald 
43182b838201SMatthias Ringwald     uint16_t size = 0;
43192b838201SMatthias Ringwald     uint16_t num_handles = 0;
43202b838201SMatthias Ringwald     packet[size++] = 0x35;
43212b838201SMatthias Ringwald     packet[size++] = 0x0c;
43222b838201SMatthias Ringwald     size++;  // skip param len
43232b838201SMatthias Ringwald     size++;  // skip num handles
43242b838201SMatthias Ringwald 
43252b838201SMatthias Ringwald     // add { handle, packets } entries
43262b838201SMatthias Ringwald     btstack_linked_item_t * it;
43272b838201SMatthias Ringwald     for (it = (btstack_linked_item_t *) hci_stack->connections; it ; it = it->next){
43282b838201SMatthias Ringwald         hci_connection_t * connection = (hci_connection_t *) it;
43292b838201SMatthias Ringwald         if (connection->num_packets_completed){
43302b838201SMatthias Ringwald             little_endian_store_16(packet, size, connection->con_handle);
43312b838201SMatthias Ringwald             size += 2;
43322b838201SMatthias Ringwald             little_endian_store_16(packet, size, connection->num_packets_completed);
43332b838201SMatthias Ringwald             size += 2;
43342b838201SMatthias Ringwald             //
43352b838201SMatthias Ringwald             num_handles++;
43362b838201SMatthias Ringwald             connection->num_packets_completed = 0;
43372b838201SMatthias Ringwald         }
43382b838201SMatthias Ringwald     }
43392b838201SMatthias Ringwald 
43402b838201SMatthias Ringwald     packet[2] = size - 3;
43412b838201SMatthias Ringwald     packet[3] = num_handles;
43422b838201SMatthias Ringwald 
43432b838201SMatthias Ringwald     hci_stack->host_completed_packets = 0;
43442b838201SMatthias Ringwald 
43452b838201SMatthias Ringwald     hci_dump_packet(HCI_COMMAND_DATA_PACKET, 0, packet, size);
43462b838201SMatthias Ringwald     hci_stack->hci_transport->send_packet(HCI_COMMAND_DATA_PACKET, packet, size);
43472b838201SMatthias Ringwald 
43482b838201SMatthias Ringwald     // release packet buffer for synchronous transport implementations
43492b838201SMatthias Ringwald     if (hci_transport_synchronous()){
4350e2d22487SMatthias Ringwald         hci_release_packet_buffer();
4351068b8592SMatthias Ringwald         hci_emit_transport_packet_sent();
43522b838201SMatthias Ringwald     }
43532b838201SMatthias Ringwald }
43542b838201SMatthias Ringwald #endif
43552b838201SMatthias Ringwald 
435626fe9592SMatthias Ringwald static void hci_halting_timeout_handler(btstack_timer_source_t * ds){
435726fe9592SMatthias Ringwald     UNUSED(ds);
435826fe9592SMatthias Ringwald     hci_stack->substate = HCI_HALTING_CLOSE;
4359beceeddeSMatthias Ringwald     // allow packet handlers to defer final shutdown
4360beceeddeSMatthias Ringwald     hci_emit_state();
436126fe9592SMatthias Ringwald     hci_run();
436226fe9592SMatthias Ringwald }
436326fe9592SMatthias Ringwald 
4364f30077b7SMatthias Ringwald static bool hci_run_acl_fragments(void){
43654ea43905SMatthias Ringwald     if (hci_stack->acl_fragmentation_total_size > 0u) {
4366b5d8b22bS[email protected]         hci_con_handle_t con_handle = READ_ACL_CONNECTION_HANDLE(hci_stack->hci_packet_buffer);
4367b5d8b22bS[email protected]         hci_connection_t *connection = hci_connection_for_handle(con_handle);
4368b5d8b22bS[email protected]         if (connection) {
436928a0332dSMatthias Ringwald             if (hci_can_send_prepared_acl_packet_now(con_handle)){
4370b5d8b22bS[email protected]                 hci_send_acl_packet_fragments(connection);
4371f30077b7SMatthias Ringwald                 return true;
4372b5d8b22bS[email protected]             }
437328a0332dSMatthias Ringwald         } else {
4374b5d8b22bS[email protected]             // connection gone -> discard further fragments
437528a0332dSMatthias Ringwald             log_info("hci_run: fragmented ACL packet no connection -> discard fragment");
4376b5d8b22bS[email protected]             hci_stack->acl_fragmentation_total_size = 0;
4377b5d8b22bS[email protected]             hci_stack->acl_fragmentation_pos = 0;
4378b5d8b22bS[email protected]         }
4379b5d8b22bS[email protected]     }
4380f30077b7SMatthias Ringwald     return false;
43812b838201SMatthias Ringwald }
4382b031bebbSmatthias.ringwald 
438335454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
4384f30077b7SMatthias Ringwald static bool hci_run_general_gap_classic(void){
4385f30077b7SMatthias Ringwald 
438659d59ecfSMatthias Ringwald     // assert stack is working and classic is active
438759d59ecfSMatthias Ringwald     if (hci_classic_supported() == false)      return false;
438859d59ecfSMatthias Ringwald     if (hci_stack->state != HCI_STATE_WORKING) return false;
438959d59ecfSMatthias Ringwald 
4390b031bebbSmatthias.ringwald     // decline incoming connections
43913a9fb326S[email protected]     if (hci_stack->decline_reason){
43923a9fb326S[email protected]         uint8_t reason = hci_stack->decline_reason;
43933a9fb326S[email protected]         hci_stack->decline_reason = 0;
43943a9fb326S[email protected]         hci_send_cmd(&hci_reject_connection_request, hci_stack->decline_addr, reason);
4395f30077b7SMatthias Ringwald         return true;
4396ce4c8fabSmatthias.ringwald     }
439759d59ecfSMatthias Ringwald 
4398baa4881eSMatthias Ringwald     if (hci_stack->gap_tasks_classic != 0){
4399ab4831a3SMatthias Ringwald         hci_run_gap_tasks_classic();
4400f30077b7SMatthias Ringwald         return true;
4401b031bebbSmatthias.ringwald     }
440227741fe7SMatthias Ringwald 
4403f5875de5SMatthias Ringwald     // start/stop inquiry
4404a1df452eSMatthias Ringwald     if ((hci_stack->inquiry_state >= GAP_INQUIRY_DURATION_MIN) && (hci_stack->inquiry_state <= GAP_INQUIRY_DURATION_MAX)){
4405f5875de5SMatthias Ringwald         uint8_t duration = hci_stack->inquiry_state;
4406beb3c81dSMatthias Ringwald         hci_stack->inquiry_state = GAP_INQUIRY_STATE_W4_ACTIVE;
4407496bb884SMatthias Ringwald         hci_send_cmd(&hci_inquiry, hci_stack->inquiry_lap, duration, 0);
4408f30077b7SMatthias Ringwald         return true;
4409f5875de5SMatthias Ringwald     }
4410f5875de5SMatthias Ringwald     if (hci_stack->inquiry_state == GAP_INQUIRY_STATE_W2_CANCEL){
4411f5875de5SMatthias Ringwald         hci_stack->inquiry_state = GAP_INQUIRY_STATE_W4_CANCELLED;
4412f5875de5SMatthias Ringwald         hci_send_cmd(&hci_inquiry_cancel);
4413f30077b7SMatthias Ringwald         return true;
4414f5875de5SMatthias Ringwald     }
4415b7f1ee76SMatthias Ringwald     // remote name request
4416b7f1ee76SMatthias Ringwald     if (hci_stack->remote_name_state == GAP_REMOTE_NAME_STATE_W2_SEND){
4417b7f1ee76SMatthias Ringwald         hci_stack->remote_name_state = GAP_REMOTE_NAME_STATE_W4_COMPLETE;
4418b7f1ee76SMatthias Ringwald         hci_send_cmd(&hci_remote_name_request, hci_stack->remote_name_addr,
4419ee8a36c8SMatthias Ringwald                      hci_stack->remote_name_page_scan_repetition_mode, 0, hci_stack->remote_name_clock_offset);
4420f30077b7SMatthias Ringwald         return true;
4421b7f1ee76SMatthias Ringwald     }
4422cf01e888SMatthias Ringwald #ifdef ENABLE_CLASSIC_PAIRING_OOB
4423cf01e888SMatthias Ringwald     // Local OOB data
442459d59ecfSMatthias Ringwald     if (hci_stack->classic_read_local_oob_data){
4425cf01e888SMatthias Ringwald         hci_stack->classic_read_local_oob_data = false;
44261e83575aSMatthias Ringwald         if (hci_command_supported(SUPPORTED_HCI_COMMAND_READ_LOCAL_OOB_EXTENDED_DATA_COMMAND)){
4427cf01e888SMatthias Ringwald             hci_send_cmd(&hci_read_local_extended_oob_data);
4428cf01e888SMatthias Ringwald         } else {
4429cf01e888SMatthias Ringwald             hci_send_cmd(&hci_read_local_oob_data);
4430cf01e888SMatthias Ringwald         }
4431cf01e888SMatthias Ringwald     }
4432cf01e888SMatthias Ringwald #endif
44330a51f88bSMatthias Ringwald     // pairing
44340a51f88bSMatthias Ringwald     if (hci_stack->gap_pairing_state != GAP_PAIRING_STATE_IDLE){
44350a51f88bSMatthias Ringwald         uint8_t state = hci_stack->gap_pairing_state;
44363f659ee4SMilanka Ringwald         uint8_t pin_code[16];
44370a51f88bSMatthias Ringwald         switch (state){
44380a51f88bSMatthias Ringwald             case GAP_PAIRING_STATE_SEND_PIN:
4439cc15bb2cSMatthias Ringwald                 hci_stack->gap_pairing_state = GAP_PAIRING_STATE_IDLE;
44403f659ee4SMilanka Ringwald                 memset(pin_code, 0, 16);
44413f659ee4SMilanka Ringwald                 memcpy(pin_code, hci_stack->gap_pairing_input.gap_pairing_pin, hci_stack->gap_pairing_pin_len);
44423f659ee4SMilanka Ringwald                 hci_send_cmd(&hci_pin_code_request_reply, hci_stack->gap_pairing_addr, hci_stack->gap_pairing_pin_len, pin_code);
44430a51f88bSMatthias Ringwald                 break;
44440a51f88bSMatthias Ringwald             case GAP_PAIRING_STATE_SEND_PIN_NEGATIVE:
4445cc15bb2cSMatthias Ringwald                 hci_stack->gap_pairing_state = GAP_PAIRING_STATE_WAIT_FOR_COMMAND_COMPLETE;
44460a51f88bSMatthias Ringwald                 hci_send_cmd(&hci_pin_code_request_negative_reply, hci_stack->gap_pairing_addr);
44470a51f88bSMatthias Ringwald                 break;
44480a51f88bSMatthias Ringwald             case GAP_PAIRING_STATE_SEND_PASSKEY:
4449cc15bb2cSMatthias Ringwald                 hci_stack->gap_pairing_state = GAP_PAIRING_STATE_IDLE;
4450d504181aSMatthias Ringwald                 hci_send_cmd(&hci_user_passkey_request_reply, hci_stack->gap_pairing_addr, hci_stack->gap_pairing_input.gap_pairing_passkey);
44510a51f88bSMatthias Ringwald                 break;
44520a51f88bSMatthias Ringwald             case GAP_PAIRING_STATE_SEND_PASSKEY_NEGATIVE:
4453cc15bb2cSMatthias Ringwald                 hci_stack->gap_pairing_state = GAP_PAIRING_STATE_WAIT_FOR_COMMAND_COMPLETE;
44540a51f88bSMatthias Ringwald                 hci_send_cmd(&hci_user_passkey_request_negative_reply, hci_stack->gap_pairing_addr);
44550a51f88bSMatthias Ringwald                 break;
44560a51f88bSMatthias Ringwald             case GAP_PAIRING_STATE_SEND_CONFIRMATION:
4457cc15bb2cSMatthias Ringwald                 hci_stack->gap_pairing_state = GAP_PAIRING_STATE_IDLE;
44580a51f88bSMatthias Ringwald                 hci_send_cmd(&hci_user_confirmation_request_reply, hci_stack->gap_pairing_addr);
44590a51f88bSMatthias Ringwald                 break;
44600a51f88bSMatthias Ringwald             case GAP_PAIRING_STATE_SEND_CONFIRMATION_NEGATIVE:
4461cc15bb2cSMatthias Ringwald                 hci_stack->gap_pairing_state = GAP_PAIRING_STATE_WAIT_FOR_COMMAND_COMPLETE;
44620a51f88bSMatthias Ringwald                 hci_send_cmd(&hci_user_confirmation_request_negative_reply, hci_stack->gap_pairing_addr);
44630a51f88bSMatthias Ringwald                 break;
44640a51f88bSMatthias Ringwald             default:
44650a51f88bSMatthias Ringwald                 break;
44660a51f88bSMatthias Ringwald         }
4467f30077b7SMatthias Ringwald         return true;
4468f30077b7SMatthias Ringwald     }
4469f30077b7SMatthias Ringwald     return false;
44700a51f88bSMatthias Ringwald }
447135454696SMatthias Ringwald #endif
4472b031bebbSmatthias.ringwald 
4473a9a4c409SMatthias Ringwald #ifdef ENABLE_BLE
4474f30077b7SMatthias Ringwald static bool hci_run_general_gap_le(void){
4475f30077b7SMatthias Ringwald 
4476a41310b7SMatthias Ringwald     // Phase 1: collect what to stop
4477a41310b7SMatthias Ringwald 
4478a41310b7SMatthias Ringwald     bool scanning_stop = false;
4479a41310b7SMatthias Ringwald     bool connecting_stop = false;
4480a41310b7SMatthias Ringwald     bool advertising_stop = false;
4481a41310b7SMatthias Ringwald 
4482a41310b7SMatthias Ringwald #ifndef ENABLE_LE_CENTRAL
4483a41310b7SMatthias Ringwald     UNUSED(scanning_stop);
44840abd9f64SMatthias Ringwald     UNUSED(connecting_stop);
4485a41310b7SMatthias Ringwald #endif
4486a41310b7SMatthias Ringwald #ifndef ENABLE_LE_PERIPHERAL
4487a41310b7SMatthias Ringwald     UNUSED(advertising_stop);
4488a41310b7SMatthias Ringwald #endif
4489a41310b7SMatthias Ringwald 
44909136bde8SMatthias Ringwald     // check if own address changes
44919136bde8SMatthias Ringwald     bool random_address_change = (hci_stack->le_advertisements_todo & LE_ADVERTISEMENT_TASKS_SET_ADDRESS) != 0;
44929136bde8SMatthias Ringwald 
449329c24bebSMatthias Ringwald     // check if whitelist needs modification
449429c24bebSMatthias Ringwald     bool whitelist_modification_pending = false;
449529c24bebSMatthias Ringwald     btstack_linked_list_iterator_t lit;
449629c24bebSMatthias Ringwald     btstack_linked_list_iterator_init(&lit, &hci_stack->le_whitelist);
449729c24bebSMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&lit)){
449829c24bebSMatthias Ringwald         whitelist_entry_t * entry = (whitelist_entry_t*) btstack_linked_list_iterator_next(&lit);
449929c24bebSMatthias Ringwald         if (entry->state & (LE_WHITELIST_REMOVE_FROM_CONTROLLER | LE_WHITELIST_ADD_TO_CONTROLLER)){
450029c24bebSMatthias Ringwald             whitelist_modification_pending = true;
450129c24bebSMatthias Ringwald             break;
450229c24bebSMatthias Ringwald         }
450329c24bebSMatthias Ringwald     }
450421debf25SMatthias Ringwald     // check if resolving list needs modification
450521debf25SMatthias Ringwald     bool resolving_list_modification_pending = false;
450621debf25SMatthias Ringwald #ifdef ENABLE_LE_PRIVACY_ADDRESS_RESOLUTION
45071ffa425cSMatthias Ringwald 
45081ffa425cSMatthias Ringwald     bool resolving_list_supported = hci_command_supported(SUPPORTED_HCI_COMMAND_LE_SET_ADDRESS_RESOLUTION_ENABLE);
4509ea151974SMatthias Ringwald 	if (resolving_list_supported && hci_stack->le_resolving_list_state != LE_RESOLVING_LIST_DONE){
451021debf25SMatthias Ringwald         resolving_list_modification_pending = true;
451121debf25SMatthias Ringwald     }
451221debf25SMatthias Ringwald #endif
451329c24bebSMatthias Ringwald 
4514d70217a2SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
4515fde725feSMatthias Ringwald     // scanning control
45163251a108SMatthias Ringwald     if (hci_stack->le_scanning_active) {
451729c24bebSMatthias Ringwald         // stop if:
451829c24bebSMatthias Ringwald         // - parameter change required
451929c24bebSMatthias Ringwald         // - it's disabled
452029c24bebSMatthias Ringwald         // - whitelist change required but used for scanning
452121debf25SMatthias Ringwald         // - resolving list modified
452251e51a58SMatthias Ringwald         // - own address changes
452329c24bebSMatthias Ringwald         bool scanning_uses_whitelist = (hci_stack->le_scan_filter_policy & 1) == 1;
452421debf25SMatthias Ringwald         if ((hci_stack->le_scanning_param_update) ||
452521debf25SMatthias Ringwald             !hci_stack->le_scanning_enabled ||
452621debf25SMatthias Ringwald             scanning_uses_whitelist ||
452751e51a58SMatthias Ringwald             resolving_list_modification_pending ||
452851e51a58SMatthias Ringwald             random_address_change){
452921debf25SMatthias Ringwald 
45302d5c2a27SMatthias Ringwald             scanning_stop = true;
4531fde725feSMatthias Ringwald         }
4532fde725feSMatthias Ringwald     }
453329c24bebSMatthias Ringwald #endif
4534fde725feSMatthias Ringwald 
453529c24bebSMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
453629c24bebSMatthias Ringwald     // connecting control
4537f496d06eSMatthias Ringwald     bool connecting_with_whitelist;
4538f496d06eSMatthias Ringwald     switch (hci_stack->le_connecting_state){
4539f496d06eSMatthias Ringwald         case LE_CONNECTING_DIRECT:
4540f496d06eSMatthias Ringwald         case LE_CONNECTING_WHITELIST:
4541af64f147SMatthias Ringwald             // stop connecting if:
4542af64f147SMatthias Ringwald             // - connecting uses white and whitelist modification pending
4543af64f147SMatthias Ringwald             // - if it got disabled
454421debf25SMatthias Ringwald             // - resolving list modified
454551e51a58SMatthias Ringwald             // - own address changes
4546f496d06eSMatthias Ringwald             connecting_with_whitelist = hci_stack->le_connecting_state == LE_CONNECTING_WHITELIST;
4547f496d06eSMatthias Ringwald             if ((connecting_with_whitelist && whitelist_modification_pending) ||
454821debf25SMatthias Ringwald                 (hci_stack->le_connecting_request == LE_CONNECTING_IDLE) ||
454951e51a58SMatthias Ringwald                 resolving_list_modification_pending ||
455051e51a58SMatthias Ringwald                 random_address_change) {
455121debf25SMatthias Ringwald 
455229c24bebSMatthias Ringwald                 connecting_stop = true;
455329c24bebSMatthias Ringwald             }
4554f496d06eSMatthias Ringwald             break;
4555f496d06eSMatthias Ringwald         default:
4556f496d06eSMatthias Ringwald             break;
455729c24bebSMatthias Ringwald     }
4558d70217a2SMatthias Ringwald #endif
455929c24bebSMatthias Ringwald 
4560d70217a2SMatthias Ringwald #ifdef ENABLE_LE_PERIPHERAL
456145c102fdSMatthias Ringwald     // le advertisement control
4562bbc366e6SMatthias Ringwald     if (hci_stack->le_advertisements_active){
456329c24bebSMatthias Ringwald         // stop if:
456429c24bebSMatthias Ringwald         // - parameter change required
45659136bde8SMatthias Ringwald         // - random address used in advertising and changes
456629c24bebSMatthias Ringwald         // - it's disabled
4567ba44ad41SMatthias Ringwald         // - whitelist change required but used for advertisement filter policy
456821debf25SMatthias Ringwald         // - resolving list modified
456951e51a58SMatthias Ringwald         // - own address changes
4570a61834b6SMatthias Ringwald         bool advertising_uses_whitelist = hci_stack->le_advertisements_filter_policy != 0;
45719136bde8SMatthias Ringwald         bool advertising_uses_random_address = hci_stack->le_own_addr_type != BD_ADDR_TYPE_LE_PUBLIC;
45724e5d21eaSMatthias Ringwald         bool advertising_change    = (hci_stack->le_advertisements_todo & LE_ADVERTISEMENT_TASKS_SET_PARAMS)  != 0;
4573a61834b6SMatthias Ringwald         if (advertising_change ||
45749136bde8SMatthias Ringwald             (advertising_uses_random_address && random_address_change) ||
4575a61834b6SMatthias Ringwald             (hci_stack->le_advertisements_enabled_for_current_roles == 0) ||
45769136bde8SMatthias Ringwald             (advertising_uses_whitelist && whitelist_modification_pending) ||
457751e51a58SMatthias Ringwald             resolving_list_modification_pending ||
457851e51a58SMatthias Ringwald             random_address_change) {
457921debf25SMatthias Ringwald 
4580fde725feSMatthias Ringwald             advertising_stop = true;
4581fde725feSMatthias Ringwald         }
4582fde725feSMatthias Ringwald     }
4583a41310b7SMatthias Ringwald #endif
4584fde725feSMatthias Ringwald 
4585a41310b7SMatthias Ringwald 
4586a41310b7SMatthias Ringwald     // Phase 2: stop everything that should be off during modifications
4587a41310b7SMatthias Ringwald 
4588a41310b7SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
4589a41310b7SMatthias Ringwald     if (scanning_stop){
45905226d7f2SMatthias Ringwald         hci_stack->le_scanning_active = false;
4591a41310b7SMatthias Ringwald         hci_send_cmd(&hci_le_set_scan_enable, 0, 0);
4592a41310b7SMatthias Ringwald         return true;
4593a41310b7SMatthias Ringwald     }
4594a41310b7SMatthias Ringwald #endif
4595a41310b7SMatthias Ringwald 
4596a41310b7SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
4597a41310b7SMatthias Ringwald     if (connecting_stop){
4598a41310b7SMatthias Ringwald         hci_send_cmd(&hci_le_create_connection_cancel);
4599a41310b7SMatthias Ringwald         return true;
4600a41310b7SMatthias Ringwald     }
4601a41310b7SMatthias Ringwald #endif
4602a41310b7SMatthias Ringwald 
4603a41310b7SMatthias Ringwald #ifdef ENABLE_LE_PERIPHERAL
4604fde725feSMatthias Ringwald     if (advertising_stop){
46055226d7f2SMatthias Ringwald         hci_stack->le_advertisements_active = false;
460645c102fdSMatthias Ringwald         hci_send_cmd(&hci_le_set_advertise_enable, 0);
4607f30077b7SMatthias Ringwald         return true;
460845c102fdSMatthias Ringwald     }
4609a41310b7SMatthias Ringwald #endif
4610fde725feSMatthias Ringwald 
4611a41310b7SMatthias Ringwald     // Phase 3: modify
4612a41310b7SMatthias Ringwald 
46139136bde8SMatthias Ringwald     if (random_address_change){
46149136bde8SMatthias Ringwald         hci_stack->le_advertisements_todo &= ~LE_ADVERTISEMENT_TASKS_SET_ADDRESS;
46159136bde8SMatthias Ringwald         hci_send_cmd(&hci_le_set_random_address, hci_stack->le_random_address);
46169136bde8SMatthias Ringwald         return true;
46179136bde8SMatthias Ringwald     }
46189136bde8SMatthias Ringwald 
4619a41310b7SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
4620a41310b7SMatthias Ringwald     if (hci_stack->le_scanning_param_update){
4621a41310b7SMatthias Ringwald         hci_stack->le_scanning_param_update = false;
4622a41310b7SMatthias Ringwald         hci_send_cmd(&hci_le_set_scan_parameters, hci_stack->le_scan_type, hci_stack->le_scan_interval, hci_stack->le_scan_window,
4623a41310b7SMatthias Ringwald                      hci_stack->le_own_addr_type, hci_stack->le_scan_filter_policy);
4624a41310b7SMatthias Ringwald         return true;
4625a41310b7SMatthias Ringwald     }
4626a41310b7SMatthias Ringwald #endif
4627a41310b7SMatthias Ringwald 
4628a41310b7SMatthias Ringwald #ifdef ENABLE_LE_PERIPHERAL
462945c102fdSMatthias Ringwald     if (hci_stack->le_advertisements_todo & LE_ADVERTISEMENT_TASKS_SET_PARAMS){
463045c102fdSMatthias Ringwald         hci_stack->le_advertisements_todo &= ~LE_ADVERTISEMENT_TASKS_SET_PARAMS;
46316bcfa632SMatthias Ringwald         hci_stack->le_advertisements_own_addr_type = hci_stack->le_own_addr_type;
463245c102fdSMatthias Ringwald         hci_send_cmd(&hci_le_set_advertising_parameters,
463345c102fdSMatthias Ringwald                      hci_stack->le_advertisements_interval_min,
463445c102fdSMatthias Ringwald                      hci_stack->le_advertisements_interval_max,
463545c102fdSMatthias Ringwald                      hci_stack->le_advertisements_type,
46366bcfa632SMatthias Ringwald                      hci_stack->le_advertisements_own_addr_type,
463745c102fdSMatthias Ringwald                      hci_stack->le_advertisements_direct_address_type,
463845c102fdSMatthias Ringwald                      hci_stack->le_advertisements_direct_address,
463945c102fdSMatthias Ringwald                      hci_stack->le_advertisements_channel_map,
464045c102fdSMatthias Ringwald                      hci_stack->le_advertisements_filter_policy);
4641f30077b7SMatthias Ringwald         return true;
464245c102fdSMatthias Ringwald     }
4643501f56b3SMatthias Ringwald     if (hci_stack->le_advertisements_todo & LE_ADVERTISEMENT_TASKS_SET_ADV_DATA){
4644501f56b3SMatthias Ringwald         hci_stack->le_advertisements_todo &= ~LE_ADVERTISEMENT_TASKS_SET_ADV_DATA;
46457a85e4f5SMatthias Ringwald         uint8_t adv_data_clean[31];
46467a85e4f5SMatthias Ringwald         memset(adv_data_clean, 0, sizeof(adv_data_clean));
46476535961aSMatthias Ringwald         (void)memcpy(adv_data_clean, hci_stack->le_advertisements_data,
46486535961aSMatthias Ringwald                      hci_stack->le_advertisements_data_len);
46493c9da642SMatthias Ringwald         btstack_replace_bd_addr_placeholder(adv_data_clean, hci_stack->le_advertisements_data_len, hci_stack->local_bd_addr);
46507a85e4f5SMatthias Ringwald         hci_send_cmd(&hci_le_set_advertising_data, hci_stack->le_advertisements_data_len, adv_data_clean);
4651f30077b7SMatthias Ringwald         return true;
465245c102fdSMatthias Ringwald     }
4653501f56b3SMatthias Ringwald     if (hci_stack->le_advertisements_todo & LE_ADVERTISEMENT_TASKS_SET_SCAN_DATA){
4654501f56b3SMatthias Ringwald         hci_stack->le_advertisements_todo &= ~LE_ADVERTISEMENT_TASKS_SET_SCAN_DATA;
4655f868b059SMatthias Ringwald         uint8_t scan_data_clean[31];
4656f868b059SMatthias Ringwald         memset(scan_data_clean, 0, sizeof(scan_data_clean));
46576535961aSMatthias Ringwald         (void)memcpy(scan_data_clean, hci_stack->le_scan_response_data,
46586535961aSMatthias Ringwald                      hci_stack->le_scan_response_data_len);
46593c9da642SMatthias Ringwald         btstack_replace_bd_addr_placeholder(scan_data_clean, hci_stack->le_scan_response_data_len, hci_stack->local_bd_addr);
4660214bfd60SMatthias Ringwald         hci_send_cmd(&hci_le_set_scan_response_data, hci_stack->le_scan_response_data_len, scan_data_clean);
4661f30077b7SMatthias Ringwald         return true;
4662501f56b3SMatthias Ringwald     }
4663d70217a2SMatthias Ringwald #endif
46649956955bSMatthias Ringwald 
466513eb2a2eSMatthias Ringwald 
4666057ab60cSMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
4667a41310b7SMatthias Ringwald     // if connect with whitelist was active and is not cancelled yet, wait until next time
4668a41310b7SMatthias Ringwald     if (hci_stack->le_connecting_state == LE_CONNECTING_CANCEL) return false;
4669057ab60cSMatthias Ringwald #endif
4670057ab60cSMatthias Ringwald 
4671a41310b7SMatthias Ringwald     // LE Whitelist Management
4672a41310b7SMatthias Ringwald     if (whitelist_modification_pending){
46739956955bSMatthias Ringwald         // add/remove entries
4674665d90f2SMatthias Ringwald         btstack_linked_list_iterator_init(&lit, &hci_stack->le_whitelist);
4675665d90f2SMatthias Ringwald         while (btstack_linked_list_iterator_has_next(&lit)){
4676665d90f2SMatthias Ringwald             whitelist_entry_t * entry = (whitelist_entry_t*) btstack_linked_list_iterator_next(&lit);
4677453459ddSMatthias Ringwald 			if (entry->state & LE_WHITELIST_REMOVE_FROM_CONTROLLER){
4678453459ddSMatthias Ringwald 				entry->state &= ~LE_WHITELIST_REMOVE_FROM_CONTROLLER;
4679453459ddSMatthias Ringwald 				hci_send_cmd(&hci_le_remove_device_from_white_list, entry->address_type, entry->address);
4680453459ddSMatthias Ringwald 				return true;
4681453459ddSMatthias Ringwald 			}
46829956955bSMatthias Ringwald             if (entry->state & LE_WHITELIST_ADD_TO_CONTROLLER){
4683453459ddSMatthias Ringwald 				entry->state &= ~LE_WHITELIST_ADD_TO_CONTROLLER;
4684453459ddSMatthias Ringwald                 entry->state |= LE_WHITELIST_ON_CONTROLLER;
46859956955bSMatthias Ringwald                 hci_send_cmd(&hci_le_add_device_to_white_list, entry->address_type, entry->address);
4686f30077b7SMatthias Ringwald                 return true;
46879956955bSMatthias Ringwald             }
4688453459ddSMatthias Ringwald             if ((entry->state & LE_WHITELIST_ON_CONTROLLER) == 0){
4689665d90f2SMatthias Ringwald 				btstack_linked_list_remove(&hci_stack->le_whitelist, (btstack_linked_item_t *) entry);
46909956955bSMatthias Ringwald 				btstack_memory_whitelist_entry_free(entry);
46919956955bSMatthias Ringwald             }
46929956955bSMatthias Ringwald         }
469391915b0bSMatthias Ringwald     }
46949956955bSMatthias Ringwald 
469521debf25SMatthias Ringwald #ifdef ENABLE_LE_PRIVACY_ADDRESS_RESOLUTION
469621debf25SMatthias Ringwald     // LE Resolving List Management
4697ea151974SMatthias Ringwald     if (resolving_list_supported) {
469821debf25SMatthias Ringwald 		uint16_t i;
469921debf25SMatthias Ringwald 		switch (hci_stack->le_resolving_list_state) {
470021debf25SMatthias Ringwald 			case LE_RESOLVING_LIST_SEND_ENABLE_ADDRESS_RESOLUTION:
470121debf25SMatthias Ringwald 				hci_stack->le_resolving_list_state = LE_RESOLVING_LIST_READ_SIZE;
470221debf25SMatthias Ringwald 				hci_send_cmd(&hci_le_set_address_resolution_enabled, 1);
470321debf25SMatthias Ringwald 				return true;
470421debf25SMatthias Ringwald 			case LE_RESOLVING_LIST_READ_SIZE:
470521debf25SMatthias Ringwald 				hci_stack->le_resolving_list_state = LE_RESOLVING_LIST_SEND_CLEAR;
470621debf25SMatthias Ringwald 				hci_send_cmd(&hci_le_read_resolving_list_size);
470721debf25SMatthias Ringwald 				return true;
470821debf25SMatthias Ringwald 			case LE_RESOLVING_LIST_SEND_CLEAR:
470902b02cffSMatthias Ringwald 				hci_stack->le_resolving_list_state = LE_RESOLVING_LIST_REMOVE_ENTRIES;
4710ea151974SMatthias Ringwald 				(void) memset(hci_stack->le_resolving_list_add_entries, 0xff,
4711ea151974SMatthias Ringwald 							  sizeof(hci_stack->le_resolving_list_add_entries));
4712ea151974SMatthias Ringwald 				(void) memset(hci_stack->le_resolving_list_remove_entries, 0,
4713ea151974SMatthias Ringwald 							  sizeof(hci_stack->le_resolving_list_remove_entries));
471421debf25SMatthias Ringwald 				hci_send_cmd(&hci_le_clear_resolving_list);
471521debf25SMatthias Ringwald 				return true;
471602b02cffSMatthias Ringwald 			case LE_RESOLVING_LIST_REMOVE_ENTRIES:
471702b02cffSMatthias Ringwald 				for (i = 0; i < MAX_NUM_RESOLVING_LIST_ENTRIES && i < le_device_db_max_count(); i++) {
471802b02cffSMatthias Ringwald 					uint8_t offset = i >> 3;
471902b02cffSMatthias Ringwald 					uint8_t mask = 1 << (i & 7);
472002b02cffSMatthias Ringwald 					if ((hci_stack->le_resolving_list_remove_entries[offset] & mask) == 0) continue;
472102b02cffSMatthias Ringwald 					hci_stack->le_resolving_list_remove_entries[offset] &= ~mask;
472202b02cffSMatthias Ringwald 					bd_addr_t peer_identity_addreses;
472302b02cffSMatthias Ringwald 					int peer_identity_addr_type = (int) BD_ADDR_TYPE_UNKNOWN;
472402b02cffSMatthias Ringwald 					sm_key_t peer_irk;
472502b02cffSMatthias Ringwald 					le_device_db_info(i, &peer_identity_addr_type, peer_identity_addreses, peer_irk);
472602b02cffSMatthias Ringwald 					if (peer_identity_addr_type == BD_ADDR_TYPE_UNKNOWN) continue;
4727f5228c62SMatthias Ringwald 
4728f5228c62SMatthias Ringwald #ifdef ENABLE_LE_WHITELIST_TOUCH_AFTER_RESOLVING_LIST_UPDATE
4729f5228c62SMatthias Ringwald 					// trigger whitelist entry 'update' (work around for controller bug)
4730f5228c62SMatthias Ringwald 					btstack_linked_list_iterator_init(&lit, &hci_stack->le_whitelist);
4731f5228c62SMatthias Ringwald 					while (btstack_linked_list_iterator_has_next(&lit)) {
4732f5228c62SMatthias Ringwald 						whitelist_entry_t *entry = (whitelist_entry_t *) btstack_linked_list_iterator_next(&lit);
4733f5228c62SMatthias Ringwald 						if (entry->address_type != peer_identity_addr_type) continue;
4734f5228c62SMatthias Ringwald 						if (memcmp(entry->address, peer_identity_addreses, 6) != 0) continue;
4735f5228c62SMatthias Ringwald 						log_info("trigger whitelist update %s", bd_addr_to_str(peer_identity_addreses));
4736f5228c62SMatthias Ringwald 						entry->state |= LE_WHITELIST_REMOVE_FROM_CONTROLLER | LE_WHITELIST_ADD_TO_CONTROLLER;
4737f5228c62SMatthias Ringwald 					}
4738f5228c62SMatthias Ringwald #endif
4739f5228c62SMatthias Ringwald 
4740ea151974SMatthias Ringwald 					hci_send_cmd(&hci_le_remove_device_from_resolving_list, peer_identity_addr_type,
4741ea151974SMatthias Ringwald 								 peer_identity_addreses);
474202b02cffSMatthias Ringwald 					return true;
474302b02cffSMatthias Ringwald 				}
474402b02cffSMatthias Ringwald 
474502b02cffSMatthias Ringwald 				hci_stack->le_resolving_list_state = LE_RESOLVING_LIST_ADD_ENTRIES;
474602b02cffSMatthias Ringwald 
474702b02cffSMatthias Ringwald 				/* fall through */
474802b02cffSMatthias Ringwald 
474921debf25SMatthias Ringwald 			case LE_RESOLVING_LIST_ADD_ENTRIES:
475021debf25SMatthias Ringwald 				for (i = 0; i < MAX_NUM_RESOLVING_LIST_ENTRIES && i < le_device_db_max_count(); i++) {
475121debf25SMatthias Ringwald 					uint8_t offset = i >> 3;
475221debf25SMatthias Ringwald 					uint8_t mask = 1 << (i & 7);
475302b02cffSMatthias Ringwald 					if ((hci_stack->le_resolving_list_add_entries[offset] & mask) == 0) continue;
475402b02cffSMatthias Ringwald 					hci_stack->le_resolving_list_add_entries[offset] &= ~mask;
475521debf25SMatthias Ringwald 					bd_addr_t peer_identity_addreses;
475621debf25SMatthias Ringwald 					int peer_identity_addr_type = (int) BD_ADDR_TYPE_UNKNOWN;
475721debf25SMatthias Ringwald 					sm_key_t peer_irk;
475821debf25SMatthias Ringwald 					le_device_db_info(i, &peer_identity_addr_type, peer_identity_addreses, peer_irk);
475921debf25SMatthias Ringwald 					if (peer_identity_addr_type == BD_ADDR_TYPE_UNKNOWN) continue;
476021debf25SMatthias Ringwald 					const uint8_t *local_irk = gap_get_persistent_irk();
476121debf25SMatthias Ringwald 					// command uses format specifier 'P' that stores 16-byte value without flip
476221debf25SMatthias Ringwald 					uint8_t local_irk_flipped[16];
476321debf25SMatthias Ringwald 					uint8_t peer_irk_flipped[16];
476421debf25SMatthias Ringwald 					reverse_128(local_irk, local_irk_flipped);
476521debf25SMatthias Ringwald 					reverse_128(peer_irk, peer_irk_flipped);
4766ea151974SMatthias Ringwald 					hci_send_cmd(&hci_le_add_device_to_resolving_list, peer_identity_addr_type, peer_identity_addreses,
4767ea151974SMatthias Ringwald 								 peer_irk_flipped, local_irk_flipped);
476821debf25SMatthias Ringwald 					return true;
476921debf25SMatthias Ringwald 				}
477002b02cffSMatthias Ringwald 				hci_stack->le_resolving_list_state = LE_RESOLVING_LIST_DONE;
477121debf25SMatthias Ringwald 				break;
477202b02cffSMatthias Ringwald 
477321debf25SMatthias Ringwald 			default:
477421debf25SMatthias Ringwald 				break;
477521debf25SMatthias Ringwald 		}
4776ea151974SMatthias Ringwald 	}
477721debf25SMatthias Ringwald     hci_stack->le_resolving_list_state = LE_RESOLVING_LIST_DONE;
477821debf25SMatthias Ringwald #endif
4779a41310b7SMatthias Ringwald 
478073799937SMatthias Ringwald     // post-pone all actions until stack is fully working
478173799937SMatthias Ringwald     if (hci_stack->state != HCI_STATE_WORKING) return false;
478273799937SMatthias Ringwald 
478373799937SMatthias Ringwald     // advertisements, active scanning, and creating connections requires random address to be set if using private address
478473799937SMatthias Ringwald     if ( (hci_stack->le_own_addr_type != BD_ADDR_TYPE_LE_PUBLIC) && (hci_stack->le_random_address_set == 0u) ) return false;
478573799937SMatthias Ringwald 
4786a41310b7SMatthias Ringwald     // Phase 4: restore state
478729c24bebSMatthias Ringwald 
478829c24bebSMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
4789af64f147SMatthias Ringwald     // re-start scanning
479029c24bebSMatthias Ringwald     if ((hci_stack->le_scanning_enabled && !hci_stack->le_scanning_active)){
479129c24bebSMatthias Ringwald         hci_stack->le_scanning_active = true;
479229c24bebSMatthias Ringwald         hci_send_cmd(&hci_le_set_scan_enable, 1, 0);
479329c24bebSMatthias Ringwald         return true;
479429c24bebSMatthias Ringwald     }
479529c24bebSMatthias Ringwald #endif
479629c24bebSMatthias Ringwald 
479713eb2a2eSMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
4798af64f147SMatthias Ringwald     // re-start connecting
4799af64f147SMatthias Ringwald     if ( (hci_stack->le_connecting_state == LE_CONNECTING_IDLE) && (hci_stack->le_connecting_request == LE_CONNECTING_WHITELIST)){
48009956955bSMatthias Ringwald         bd_addr_t null_addr;
48019956955bSMatthias Ringwald         memset(null_addr, 0, 6);
48026bcfa632SMatthias Ringwald         hci_stack->le_connection_own_addr_type =  hci_stack->le_own_addr_type;
48036bcfa632SMatthias Ringwald         hci_get_own_address_for_addr_type(hci_stack->le_connection_own_addr_type, hci_stack->le_connection_own_address);
48049956955bSMatthias Ringwald         hci_send_cmd(&hci_le_create_connection,
4805cbe54ab2SJakob Krantz                      hci_stack->le_connection_scan_interval,    // scan interval: 60 ms
4806cbe54ab2SJakob Krantz                      hci_stack->le_connection_scan_window,    // scan interval: 30 ms
48079956955bSMatthias Ringwald                      1,         // use whitelist
48089956955bSMatthias Ringwald                      0,         // peer address type
48099956955bSMatthias Ringwald                      null_addr, // peer bd addr
48106bcfa632SMatthias Ringwald                      hci_stack->le_connection_own_addr_type,   // our addr type:
481173044eb2SMatthias Ringwald                      hci_stack->le_connection_interval_min,    // conn interval min
481273044eb2SMatthias Ringwald                      hci_stack->le_connection_interval_max,    // conn interval max
481373044eb2SMatthias Ringwald                      hci_stack->le_connection_latency,         // conn latency
481473044eb2SMatthias Ringwald                      hci_stack->le_supervision_timeout,        // conn latency
481573044eb2SMatthias Ringwald                      hci_stack->le_minimum_ce_length,          // min ce length
481673044eb2SMatthias Ringwald                      hci_stack->le_maximum_ce_length           // max ce length
48179956955bSMatthias Ringwald         );
4818f30077b7SMatthias Ringwald         return true;
48199956955bSMatthias Ringwald     }
4820d70217a2SMatthias Ringwald #endif
4821a41310b7SMatthias Ringwald 
4822a41310b7SMatthias Ringwald #ifdef ENABLE_LE_PERIPHERAL
4823a41310b7SMatthias Ringwald     // re-start advertising
48248978dcf1SMatthias Ringwald     if (hci_stack->le_advertisements_enabled_for_current_roles && !hci_stack->le_advertisements_active){
4825a41310b7SMatthias Ringwald         // check if advertisements should be enabled given
48265226d7f2SMatthias Ringwald         hci_stack->le_advertisements_active = true;
4827b892db1cSMatthias Ringwald         hci_get_own_address_for_addr_type(hci_stack->le_advertisements_own_addr_type, hci_stack->le_advertisements_own_address);
4828a41310b7SMatthias Ringwald         hci_send_cmd(&hci_le_set_advertise_enable, 1);
4829a41310b7SMatthias Ringwald         return true;
4830a41310b7SMatthias Ringwald     }
4831a41310b7SMatthias Ringwald #endif
4832a41310b7SMatthias Ringwald 
4833f30077b7SMatthias Ringwald     return false;
48347bdc6798S[email protected] }
4835b2f949feS[email protected] #endif
48367bdc6798S[email protected] 
483788a03c8dSMatthias Ringwald static bool hci_run_general_pending_commands(void){
4838f30077b7SMatthias Ringwald     btstack_linked_item_t * it;
4839a0da043fSMatthias Ringwald     for (it = (btstack_linked_item_t *) hci_stack->connections; it != NULL; it = it->next){
484005ae8de3SMatthias Ringwald         hci_connection_t * connection = (hci_connection_t *) it;
484132ab9390Smatthias.ringwald 
48420bf6344aS[email protected]         switch(connection->state){
48430bf6344aS[email protected]             case SEND_CREATE_CONNECTION:
48444f3229d8S[email protected]                 switch(connection->address_type){
484535454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
4846f16129ceSMatthias Ringwald                     case BD_ADDR_TYPE_ACL:
48479da54300S[email protected]                         log_info("sending hci_create_connection");
4848b4eb4420SMatthias Ringwald                         hci_send_cmd(&hci_create_connection, connection->address, hci_usable_acl_packet_types(), 0, 0, 0, hci_stack->allow_role_switch);
48494f3229d8S[email protected]                         break;
485035454696SMatthias Ringwald #endif
48514f3229d8S[email protected]                     default:
4852a9a4c409SMatthias Ringwald #ifdef ENABLE_BLE
4853d70217a2SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
48549da54300S[email protected]                         log_info("sending hci_le_create_connection");
48556bcfa632SMatthias Ringwald                         hci_stack->le_connection_own_addr_type =  hci_stack->le_own_addr_type;
48566bcfa632SMatthias Ringwald                         hci_get_own_address_for_addr_type(hci_stack->le_connection_own_addr_type, hci_stack->le_connection_own_address);
48574f3229d8S[email protected]                         hci_send_cmd(&hci_le_create_connection,
4858cbe54ab2SJakob Krantz                                      hci_stack->le_connection_scan_interval,    // conn scan interval
4859cbe54ab2SJakob Krantz                                      hci_stack->le_connection_scan_window,      // conn scan windows
48604f3229d8S[email protected]                                      0,         // don't use whitelist
48614f3229d8S[email protected]                                      connection->address_type, // peer address type
48624f3229d8S[email protected]                                      connection->address,      // peer bd addr
48636bcfa632SMatthias Ringwald                                      hci_stack->le_connection_own_addr_type,   // our addr type:
486473044eb2SMatthias Ringwald                                      hci_stack->le_connection_interval_min,    // conn interval min
486573044eb2SMatthias Ringwald                                      hci_stack->le_connection_interval_max,    // conn interval max
486673044eb2SMatthias Ringwald                                      hci_stack->le_connection_latency,         // conn latency
486773044eb2SMatthias Ringwald                                      hci_stack->le_supervision_timeout,        // conn latency
486873044eb2SMatthias Ringwald                                      hci_stack->le_minimum_ce_length,          // min ce length
486973044eb2SMatthias Ringwald                                      hci_stack->le_maximum_ce_length          // max ce length
48704f3229d8S[email protected]                         );
48714f3229d8S[email protected]                         connection->state = SENT_CREATE_CONNECTION;
4872b2f949feS[email protected] #endif
4873d70217a2SMatthias Ringwald #endif
48744f3229d8S[email protected]                         break;
48754f3229d8S[email protected]                 }
4876f30077b7SMatthias Ringwald                 return true;
4877ad83dc6aS[email protected] 
487835454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
48790bf6344aS[email protected]             case RECEIVED_CONNECTION_REQUEST:
48805cf766e8SMatthias Ringwald                 connection->role  = HCI_ROLE_SLAVE;
4881f16129ceSMatthias Ringwald                 if (connection->address_type == BD_ADDR_TYPE_ACL){
488276ccfb2aSMatthias Ringwald                     log_info("sending hci_accept_connection_request");
4883895f6685SMilanka Ringwald                     connection->state = ACCEPTED_CONNECTION_REQUEST;
4884c4c88f1bSJakob Krantz                     hci_send_cmd(&hci_accept_connection_request, connection->address, hci_stack->master_slave_policy);
4885f30077b7SMatthias Ringwald                     return true;
4886ee025741SMatthias Ringwald                 }
4887ee025741SMatthias Ringwald                 break;
488835454696SMatthias Ringwald #endif
48890bf6344aS[email protected] 
4890a9a4c409SMatthias Ringwald #ifdef ENABLE_BLE
4891d70217a2SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
48920bf6344aS[email protected]             case SEND_CANCEL_CONNECTION:
48930bf6344aS[email protected]                 connection->state = SENT_CANCEL_CONNECTION;
48940bf6344aS[email protected]                 hci_send_cmd(&hci_le_create_connection_cancel);
4895f30077b7SMatthias Ringwald                 return true;
4896a6725849S[email protected] #endif
4897d70217a2SMatthias Ringwald #endif
48980bf6344aS[email protected]             case SEND_DISCONNECT:
48990bf6344aS[email protected]                 connection->state = SENT_DISCONNECT;
49006ef3696aSMatthias Ringwald                 hci_send_cmd(&hci_disconnect, connection->con_handle, ERROR_CODE_REMOTE_USER_TERMINATED_CONNECTION);
4901f30077b7SMatthias Ringwald                 return true;
49020bf6344aS[email protected] 
49030bf6344aS[email protected]             default:
49040bf6344aS[email protected]                 break;
4905c7e0c5f6Smatthias.ringwald         }
4906c7e0c5f6Smatthias.ringwald 
4907cabf004eSMatthias Ringwald         // no further commands if connection is about to get shut down
4908cabf004eSMatthias Ringwald         if (connection->state == SENT_DISCONNECT) continue;
4909cabf004eSMatthias Ringwald 
49108daf94bcSMatthias Ringwald         if (connection->authentication_flags & AUTH_FLAG_READ_RSSI){
49118daf94bcSMatthias Ringwald             connectionClearAuthenticationFlags(connection, AUTH_FLAG_READ_RSSI);
4912891b9fc2SMatthias Ringwald             hci_send_cmd(&hci_read_rssi, connection->con_handle);
4913f30077b7SMatthias Ringwald             return true;
4914891b9fc2SMatthias Ringwald         }
4915891b9fc2SMatthias Ringwald 
491694418890SMatthias Ringwald #ifdef ENABLE_CLASSIC
491794418890SMatthias Ringwald 
49188daf94bcSMatthias Ringwald         if (connection->authentication_flags & AUTH_FLAG_WRITE_SUPERVISION_TIMEOUT){
49198daf94bcSMatthias Ringwald             connectionClearAuthenticationFlags(connection, AUTH_FLAG_WRITE_SUPERVISION_TIMEOUT);
49206909f064SMatthias Ringwald             hci_send_cmd(&hci_write_link_supervision_timeout, connection->con_handle, hci_stack->link_supervision_timeout);
4921f30077b7SMatthias Ringwald             return true;
49226909f064SMatthias Ringwald         }
49236909f064SMatthias Ringwald 
4924ad20f0c8SMatthias Ringwald         // Handling link key request requires remote supported features
492550f49832SMatthias Ringwald         if (((connection->authentication_flags & AUTH_FLAG_HANDLE_LINK_KEY_REQUEST) != 0)){
4926608f51bbSMatthias Ringwald             log_info("responding to link key request, have link key db: %u", hci_stack->link_key_db != NULL);
49278daf94bcSMatthias Ringwald             connectionClearAuthenticationFlags(connection, AUTH_FLAG_HANDLE_LINK_KEY_REQUEST);
492830e72d78SMatthias Ringwald 
4929e9f98c4aSMatthias Ringwald             bool have_link_key = connection->link_key_type != INVALID_LINK_KEY;
4930e9f98c4aSMatthias Ringwald             bool security_level_sufficient = have_link_key && (gap_security_level_for_link_key_type(connection->link_key_type) >= connection->requested_security_level);
493130e72d78SMatthias Ringwald             if (have_link_key && security_level_sufficient){
4932e9f98c4aSMatthias Ringwald                 hci_send_cmd(&hci_link_key_request_reply, connection->address, &connection->link_key);
493332ab9390Smatthias.ringwald             } else {
493432ab9390Smatthias.ringwald                 hci_send_cmd(&hci_link_key_request_negative_reply, connection->address);
493532ab9390Smatthias.ringwald             }
4936f30077b7SMatthias Ringwald             return true;
493732ab9390Smatthias.ringwald         }
49381d6b20aeS[email protected] 
49398daf94bcSMatthias Ringwald         if (connection->authentication_flags & AUTH_FLAG_DENY_PIN_CODE_REQUEST){
49409da54300S[email protected]             log_info("denying to pin request");
49418daf94bcSMatthias Ringwald             connectionClearAuthenticationFlags(connection, AUTH_FLAG_DENY_PIN_CODE_REQUEST);
494234d2123cS[email protected]             hci_send_cmd(&hci_pin_code_request_negative_reply, connection->address);
4943f30077b7SMatthias Ringwald             return true;
49444c57c146S[email protected]         }
49454c57c146S[email protected] 
4946c950c316SMatthias Ringwald         // security assessment requires remote features
49472dd8985bSMatthias Ringwald         if ((connection->authentication_flags & AUTH_FLAG_RECV_IO_CAPABILITIES_REQUEST) != 0){
4948c950c316SMatthias Ringwald             connectionClearAuthenticationFlags(connection, AUTH_FLAG_RECV_IO_CAPABILITIES_REQUEST);
4949c950c316SMatthias Ringwald             hci_ssp_assess_security_on_io_cap_request(connection);
4950c950c316SMatthias Ringwald             // no return here as hci_ssp_assess_security_on_io_cap_request only sets AUTH_FLAG_SEND_IO_CAPABILITIES_REPLY or AUTH_FLAG_SEND_IO_CAPABILITIES_NEGATIVE_REPLY
4951c950c316SMatthias Ringwald         }
4952c950c316SMatthias Ringwald 
49538daf94bcSMatthias Ringwald         if (connection->authentication_flags & AUTH_FLAG_SEND_IO_CAPABILITIES_REPLY){
49548daf94bcSMatthias Ringwald             connectionClearAuthenticationFlags(connection, AUTH_FLAG_SEND_IO_CAPABILITIES_REPLY);
4955a8d20135SMatthias Ringwald             // set authentication requirements:
4956a8d20135SMatthias Ringwald             // - MITM = ssp_authentication_requirement (USER) | requested_security_level (dynamic)
4957532454f9SMatthias Ringwald             // - BONDING MODE: dedicated if requested, bondable otherwise. Drop bondable if not set for remote
4958a8d20135SMatthias Ringwald             uint8_t authreq = hci_stack->ssp_authentication_requirement & 1;
49599faad3abS[email protected]             if (gap_mitm_protection_required_for_security_level(connection->requested_security_level)){
49609faad3abS[email protected]                 authreq |= 1;
4961106d6d11S[email protected]             }
4962532454f9SMatthias Ringwald             bool bonding = hci_stack->bondable;
49638daf94bcSMatthias Ringwald             if (connection->authentication_flags & AUTH_FLAG_RECV_IO_CAPABILITIES_RESPONSE){
4964532454f9SMatthias Ringwald                 // if we have received IO Cap Response, we're in responder role
4965532454f9SMatthias Ringwald                 bool remote_bonding = connection->io_cap_response_auth_req >= SSP_IO_AUTHREQ_MITM_PROTECTION_NOT_REQUIRED_DEDICATED_BONDING;
4966532454f9SMatthias Ringwald                 if (bonding && !remote_bonding){
4967532454f9SMatthias Ringwald                     log_info("Remote not bonding, dropping local flag");
4968532454f9SMatthias Ringwald                     bonding = false;
4969532454f9SMatthias Ringwald                 }
4970532454f9SMatthias Ringwald             }
4971532454f9SMatthias Ringwald             if (bonding){
4972a8d20135SMatthias Ringwald                 if (connection->bonding_flags & BONDING_DEDICATED){
4973a8d20135SMatthias Ringwald                     authreq |= SSP_IO_AUTHREQ_MITM_PROTECTION_NOT_REQUIRED_DEDICATED_BONDING;
4974532454f9SMatthias Ringwald                 } else {
4975a8d20135SMatthias Ringwald                     authreq |= SSP_IO_AUTHREQ_MITM_PROTECTION_NOT_REQUIRED_GENERAL_BONDING;
4976a8d20135SMatthias Ringwald                 }
4977532454f9SMatthias Ringwald             }
49781849becdSMatthias Ringwald             uint8_t have_oob_data = 0;
49791849becdSMatthias Ringwald #ifdef ENABLE_CLASSIC_PAIRING_OOB
49801849becdSMatthias Ringwald             if (connection->classic_oob_c_192 != NULL){
49811849becdSMatthias Ringwald                     have_oob_data |= 1;
49821849becdSMatthias Ringwald             }
49831849becdSMatthias Ringwald             if (connection->classic_oob_c_256 != NULL){
49841849becdSMatthias Ringwald                 have_oob_data |= 2;
49851849becdSMatthias Ringwald             }
49861849becdSMatthias Ringwald #endif
49871849becdSMatthias Ringwald             hci_send_cmd(&hci_io_capability_request_reply, &connection->address, hci_stack->ssp_io_capability, have_oob_data, authreq);
498811b03efaSMatthias Ringwald             return true;
4989f8fb5f6eS[email protected]         }
499011b03efaSMatthias Ringwald 
49918daf94bcSMatthias Ringwald         if (connection->authentication_flags & AUTH_FLAG_SEND_IO_CAPABILITIES_NEGATIVE_REPLY) {
49928daf94bcSMatthias Ringwald             connectionClearAuthenticationFlags(connection, AUTH_FLAG_SEND_IO_CAPABILITIES_NEGATIVE_REPLY);
499311b03efaSMatthias Ringwald             hci_send_cmd(&hci_io_capability_request_negative_reply, &connection->address, ERROR_CODE_PAIRING_NOT_ALLOWED);
4994f30077b7SMatthias Ringwald             return true;
499532ab9390Smatthias.ringwald         }
499632ab9390Smatthias.ringwald 
49971849becdSMatthias Ringwald #ifdef ENABLE_CLASSIC_PAIRING_OOB
49987ca4a7edSMatthias Ringwald         if (connection->authentication_flags & AUTH_FLAG_SEND_REMOTE_OOB_DATA_REPLY){
49997ca4a7edSMatthias Ringwald             connectionClearAuthenticationFlags(connection, AUTH_FLAG_SEND_REMOTE_OOB_DATA_REPLY);
50001849becdSMatthias Ringwald             const uint8_t zero[16] = { 0 };
50011849becdSMatthias Ringwald             const uint8_t * r_192 = zero;
50021849becdSMatthias Ringwald             const uint8_t * c_192 = zero;
50031849becdSMatthias Ringwald             const uint8_t * r_256 = zero;
50041849becdSMatthias Ringwald             const uint8_t * c_256 = zero;
50051849becdSMatthias Ringwald             // verify P-256 OOB
50061e83575aSMatthias Ringwald             if ((connection->classic_oob_c_256 != NULL) && hci_command_supported(SUPPORTED_HCI_COMMAND_REMOTE_OOB_EXTENDED_DATA_REQUEST_REPLY)) {
50071849becdSMatthias Ringwald                 c_256 = connection->classic_oob_c_256;
50081849becdSMatthias Ringwald                 if (connection->classic_oob_r_256 != NULL) {
50091849becdSMatthias Ringwald                     r_256 = connection->classic_oob_r_256;
50101849becdSMatthias Ringwald                 }
50111849becdSMatthias Ringwald             }
50121849becdSMatthias Ringwald             // verify P-192 OOB
50131849becdSMatthias Ringwald             if ((connection->classic_oob_c_192 != NULL)) {
50141849becdSMatthias Ringwald                 c_192 = connection->classic_oob_c_192;
50151849becdSMatthias Ringwald                 if (connection->classic_oob_r_192 != NULL) {
50161849becdSMatthias Ringwald                     r_192 = connection->classic_oob_r_192;
50171849becdSMatthias Ringwald                 }
50181849becdSMatthias Ringwald             }
50197ca4a7edSMatthias Ringwald 
50207ca4a7edSMatthias Ringwald             // assess security
50217ca4a7edSMatthias Ringwald             bool need_level_4 = hci_stack->gap_secure_connections_only_mode || (connection->requested_security_level == LEVEL_4);
50227ca4a7edSMatthias Ringwald             bool can_reach_level_4 = hci_remote_sc_enabled(connection) && (c_256 != NULL);
50237ca4a7edSMatthias Ringwald             if (need_level_4 && !can_reach_level_4){
50247ca4a7edSMatthias Ringwald                 log_info("Level 4 required, but not possible -> abort");
50257ca4a7edSMatthias Ringwald                 hci_pairing_complete(connection, ERROR_CODE_INSUFFICIENT_SECURITY);
50267ca4a7edSMatthias Ringwald                 // send oob negative reply
50277ca4a7edSMatthias Ringwald                 c_256 = NULL;
50287ca4a7edSMatthias Ringwald                 c_192 = NULL;
50297ca4a7edSMatthias Ringwald             }
50307ca4a7edSMatthias Ringwald 
50311849becdSMatthias Ringwald             // Reply
50321849becdSMatthias Ringwald             if (c_256 != zero) {
50331849becdSMatthias Ringwald                 hci_send_cmd(&hci_remote_oob_extended_data_request_reply, &connection->address, c_192, r_192, c_256, r_256);
50341849becdSMatthias Ringwald             } else if (c_192 != zero){
50351849becdSMatthias Ringwald                 hci_send_cmd(&hci_remote_oob_data_request_reply, &connection->address, c_192, r_192);
50361849becdSMatthias Ringwald             } else {
50371ae74bf3SMatthias Ringwald                 hci_stack->classic_oob_con_handle = connection->con_handle;
50381849becdSMatthias Ringwald                 hci_send_cmd(&hci_remote_oob_data_request_negative_reply, &connection->address);
50391849becdSMatthias Ringwald             }
50401849becdSMatthias Ringwald             return true;
50411849becdSMatthias Ringwald         }
50421849becdSMatthias Ringwald #endif
50431849becdSMatthias Ringwald 
50448daf94bcSMatthias Ringwald         if (connection->authentication_flags & AUTH_FLAG_SEND_USER_CONFIRM_REPLY){
50458daf94bcSMatthias Ringwald             connectionClearAuthenticationFlags(connection, AUTH_FLAG_SEND_USER_CONFIRM_REPLY);
504634d2123cS[email protected]             hci_send_cmd(&hci_user_confirmation_request_reply, &connection->address);
5047f30077b7SMatthias Ringwald             return true;
5048dbe1a790S[email protected]         }
5049dbe1a790S[email protected] 
5050367aedc0SMatthias Ringwald         if (connection->authentication_flags & AUTH_FLAG_SEND_USER_CONFIRM_NEGATIVE_REPLY){
5051367aedc0SMatthias Ringwald             connectionClearAuthenticationFlags(connection, AUTH_FLAG_SEND_USER_CONFIRM_NEGATIVE_REPLY);
5052367aedc0SMatthias Ringwald             hci_send_cmd(&hci_user_confirmation_request_negative_reply, &connection->address);
5053367aedc0SMatthias Ringwald             return true;
5054367aedc0SMatthias Ringwald         }
5055367aedc0SMatthias Ringwald 
50568daf94bcSMatthias Ringwald         if (connection->authentication_flags & AUTH_FLAG_SEND_USER_PASSKEY_REPLY){
50578daf94bcSMatthias Ringwald             connectionClearAuthenticationFlags(connection, AUTH_FLAG_SEND_USER_PASSKEY_REPLY);
505834d2123cS[email protected]             hci_send_cmd(&hci_user_passkey_request_reply, &connection->address, 000000);
5059f30077b7SMatthias Ringwald             return true;
5060dbe1a790S[email protected]         }
5061afd4e962S[email protected] 
5062ad83dc6aS[email protected]         if (connection->bonding_flags & BONDING_DISCONNECT_DEDICATED_DONE){
5063ad83dc6aS[email protected]             connection->bonding_flags &= ~BONDING_DISCONNECT_DEDICATED_DONE;
50641bd5283dS[email protected]             connection->bonding_flags |= BONDING_EMIT_COMPLETE_ON_DISCONNECT;
50656ef3696aSMatthias Ringwald             connection->state = SENT_DISCONNECT;
50666ef3696aSMatthias Ringwald             hci_send_cmd(&hci_disconnect, connection->con_handle, ERROR_CODE_REMOTE_USER_TERMINATED_CONNECTION);
5067f30077b7SMatthias Ringwald             return true;
5068ad83dc6aS[email protected]         }
506976f27cffSMatthias Ringwald 
50702a75353aSMatthias Ringwald         if ((connection->bonding_flags & BONDING_SEND_AUTHENTICATE_REQUEST) && ((connection->bonding_flags & BONDING_RECEIVED_REMOTE_FEATURES) != 0)){
507134d2123cS[email protected]             connection->bonding_flags &= ~BONDING_SEND_AUTHENTICATE_REQUEST;
5072abdad579SMatthias Ringwald             connection->bonding_flags |= BONDING_SENT_AUTHENTICATE_REQUEST;
507334d2123cS[email protected]             hci_send_cmd(&hci_authentication_requested, connection->con_handle);
5074f30077b7SMatthias Ringwald             return true;
5075afd4e962S[email protected]         }
507676f27cffSMatthias Ringwald 
5077dce78009S[email protected]         if (connection->bonding_flags & BONDING_SEND_ENCRYPTION_REQUEST){
5078dce78009S[email protected]             connection->bonding_flags &= ~BONDING_SEND_ENCRYPTION_REQUEST;
5079dce78009S[email protected]             hci_send_cmd(&hci_set_connection_encryption, connection->con_handle, 1);
5080f30077b7SMatthias Ringwald             return true;
5081dce78009S[email protected]         }
5082447016ffSMatthias Ringwald 
5083573897a0SMatthias Ringwald         if (connection->bonding_flags & BONDING_SEND_READ_ENCRYPTION_KEY_SIZE){
5084573897a0SMatthias Ringwald             connection->bonding_flags &= ~BONDING_SEND_READ_ENCRYPTION_KEY_SIZE;
5085573897a0SMatthias Ringwald             hci_send_cmd(&hci_read_encryption_key_size, connection->con_handle, 1);
5086f30077b7SMatthias Ringwald             return true;
5087573897a0SMatthias Ringwald         }
5088447016ffSMatthias Ringwald 
5089447016ffSMatthias Ringwald         if (connection->bonding_flags & BONDING_REQUEST_REMOTE_FEATURES_PAGE_0){
5090447016ffSMatthias Ringwald             connection->bonding_flags &= ~BONDING_REQUEST_REMOTE_FEATURES_PAGE_0;
5091447016ffSMatthias Ringwald             hci_send_cmd(&hci_read_remote_supported_features_command, connection->con_handle);
5092447016ffSMatthias Ringwald             return true;
5093447016ffSMatthias Ringwald         }
5094447016ffSMatthias Ringwald 
5095447016ffSMatthias Ringwald         if (connection->bonding_flags & BONDING_REQUEST_REMOTE_FEATURES_PAGE_1){
5096447016ffSMatthias Ringwald             connection->bonding_flags &= ~BONDING_REQUEST_REMOTE_FEATURES_PAGE_1;
5097447016ffSMatthias Ringwald             hci_send_cmd(&hci_read_remote_extended_features_command, connection->con_handle, 1);
5098447016ffSMatthias Ringwald             return true;
5099447016ffSMatthias Ringwald         }
5100447016ffSMatthias Ringwald 
5101447016ffSMatthias Ringwald         if (connection->bonding_flags & BONDING_REQUEST_REMOTE_FEATURES_PAGE_2){
5102447016ffSMatthias Ringwald             connection->bonding_flags &= ~BONDING_REQUEST_REMOTE_FEATURES_PAGE_2;
5103447016ffSMatthias Ringwald             hci_send_cmd(&hci_read_remote_extended_features_command, connection->con_handle, 2);
5104447016ffSMatthias Ringwald             return true;
5105447016ffSMatthias Ringwald         }
510676f27cffSMatthias Ringwald #endif
510776f27cffSMatthias Ringwald 
510876f27cffSMatthias Ringwald         if (connection->bonding_flags & BONDING_DISCONNECT_SECURITY_BLOCK){
510976f27cffSMatthias Ringwald             connection->bonding_flags &= ~BONDING_DISCONNECT_SECURITY_BLOCK;
51101714cbbdSMatthias Ringwald #ifdef ENABLE_CLASSIC
51111714cbbdSMatthias Ringwald             hci_pairing_complete(connection, ERROR_CODE_CONNECTION_REJECTED_DUE_TO_SECURITY_REASONS);
51121714cbbdSMatthias Ringwald #endif
51136ef3696aSMatthias Ringwald             if (connection->state != SENT_DISCONNECT){
51146ef3696aSMatthias Ringwald                 connection->state = SENT_DISCONNECT;
51156ef3696aSMatthias Ringwald                 hci_send_cmd(&hci_disconnect, connection->con_handle, ERROR_CODE_AUTHENTICATION_FAILURE);
5116f30077b7SMatthias Ringwald                 return true;
511776f27cffSMatthias Ringwald             }
51186ef3696aSMatthias Ringwald         }
5119da886c03S[email protected] 
51206cdc2862SMatthias Ringwald #ifdef ENABLE_CLASSIC
5121f8ee3071SMatthias Ringwald         uint16_t sniff_min_interval;
5122f8ee3071SMatthias Ringwald         switch (connection->sniff_min_interval){
5123f8ee3071SMatthias Ringwald             case 0:
5124f8ee3071SMatthias Ringwald                 break;
5125f8ee3071SMatthias Ringwald             case 0xffff:
5126f8ee3071SMatthias Ringwald                 connection->sniff_min_interval = 0;
5127f8ee3071SMatthias Ringwald                 hci_send_cmd(&hci_exit_sniff_mode, connection->con_handle);
5128f30077b7SMatthias Ringwald                 return true;
5129f8ee3071SMatthias Ringwald             default:
5130f8ee3071SMatthias Ringwald                 sniff_min_interval = connection->sniff_min_interval;
5131f8ee3071SMatthias Ringwald                 connection->sniff_min_interval = 0;
5132f8ee3071SMatthias Ringwald                 hci_send_cmd(&hci_sniff_mode, connection->con_handle, connection->sniff_max_interval, sniff_min_interval, connection->sniff_attempt, connection->sniff_timeout);
5133f30077b7SMatthias Ringwald                 return true;
5134f8ee3071SMatthias Ringwald         }
513588a03c8dSMatthias Ringwald 
5136140c0557SMatthias Ringwald         if (connection->sniff_subrating_max_latency != 0xffff){
5137140c0557SMatthias Ringwald             uint16_t max_latency = connection->sniff_subrating_max_latency;
5138140c0557SMatthias Ringwald             connection->sniff_subrating_max_latency = 0;
5139140c0557SMatthias Ringwald             hci_send_cmd(&hci_sniff_subrating, connection->con_handle, max_latency, connection->sniff_subrating_min_remote_timeout, connection->sniff_subrating_min_local_timeout);
5140140c0557SMatthias Ringwald             return true;
5141140c0557SMatthias Ringwald         }
5142140c0557SMatthias Ringwald 
5143965a4ccfSMatthias Ringwald         if (connection->qos_service_type != HCI_SERVICE_TYPE_INVALID){
5144278ff8a9SMatthias Ringwald             uint8_t service_type = (uint8_t) connection->qos_service_type;
5145965a4ccfSMatthias Ringwald             connection->qos_service_type = HCI_SERVICE_TYPE_INVALID;
5146278ff8a9SMatthias Ringwald             hci_send_cmd(&hci_qos_setup, connection->con_handle, 0, service_type, connection->qos_token_rate, connection->qos_peak_bandwidth, connection->qos_latency, connection->qos_delay_variation);
5147278ff8a9SMatthias Ringwald             return true;
5148278ff8a9SMatthias Ringwald         }
5149278ff8a9SMatthias Ringwald 
515088a03c8dSMatthias Ringwald         if (connection->request_role != HCI_ROLE_INVALID){
515188a03c8dSMatthias Ringwald             hci_role_t role = connection->request_role;
515288a03c8dSMatthias Ringwald             connection->request_role = HCI_ROLE_INVALID;
515388a03c8dSMatthias Ringwald             hci_send_cmd(&hci_switch_role_command, connection->address, role);
515488a03c8dSMatthias Ringwald             return true;
515588a03c8dSMatthias Ringwald         }
51566cdc2862SMatthias Ringwald #endif
5157f8ee3071SMatthias Ringwald 
5158a9a4c409SMatthias Ringwald #ifdef ENABLE_BLE
515973cd8a2aSMatthias Ringwald         switch (connection->le_con_parameter_update_state){
516073cd8a2aSMatthias Ringwald             // response to L2CAP CON PARAMETER UPDATE REQUEST
516173cd8a2aSMatthias Ringwald             case CON_PARAMETER_UPDATE_CHANGE_HCI_CON_PARAMETERS:
5162da886c03S[email protected]                 connection->le_con_parameter_update_state = CON_PARAMETER_UPDATE_NONE;
516373cd8a2aSMatthias Ringwald                 hci_send_cmd(&hci_le_connection_update, connection->con_handle, connection->le_conn_interval_min,
5164c37a3166S[email protected]                              connection->le_conn_interval_max, connection->le_conn_latency, connection->le_supervision_timeout,
5165c37a3166S[email protected]                              0x0000, 0xffff);
5166f30077b7SMatthias Ringwald                 return true;
516773cd8a2aSMatthias Ringwald             case CON_PARAMETER_UPDATE_REPLY:
516873cd8a2aSMatthias Ringwald                 connection->le_con_parameter_update_state = CON_PARAMETER_UPDATE_NONE;
516973cd8a2aSMatthias Ringwald                 hci_send_cmd(&hci_le_remote_connection_parameter_request_reply, connection->con_handle, connection->le_conn_interval_min,
517073cd8a2aSMatthias Ringwald                              connection->le_conn_interval_max, connection->le_conn_latency, connection->le_supervision_timeout,
517173cd8a2aSMatthias Ringwald                              0x0000, 0xffff);
5172f30077b7SMatthias Ringwald                 return true;
517373cd8a2aSMatthias Ringwald             case CON_PARAMETER_UPDATE_NEGATIVE_REPLY:
517473cd8a2aSMatthias Ringwald                 connection->le_con_parameter_update_state = CON_PARAMETER_UPDATE_NONE;
517573cd8a2aSMatthias Ringwald                 hci_send_cmd(&hci_le_remote_connection_parameter_request_negative_reply, ERROR_CODE_UNSUPPORTED_LMP_PARAMETER_VALUE_UNSUPPORTED_LL_PARAMETER_VALUE);
5176f30077b7SMatthias Ringwald                 return true;
517773cd8a2aSMatthias Ringwald             default:
517873cd8a2aSMatthias Ringwald                 break;
5179c37a3166S[email protected]         }
51804ea43905SMatthias Ringwald         if (connection->le_phy_update_all_phys != 0xffu){
5181b90f6e0aSMatthias Ringwald             uint8_t all_phys = connection->le_phy_update_all_phys;
5182b90f6e0aSMatthias Ringwald             connection->le_phy_update_all_phys = 0xff;
5183b90f6e0aSMatthias 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);
5184f30077b7SMatthias Ringwald             return true;
5185b90f6e0aSMatthias Ringwald         }
5186c37a3166S[email protected] #endif
5187dbe1a790S[email protected]     }
5188f30077b7SMatthias Ringwald     return false;
5189f30077b7SMatthias Ringwald }
5190c7e0c5f6Smatthias.ringwald 
5191f30077b7SMatthias Ringwald static void hci_run(void){
5192f30077b7SMatthias Ringwald 
5193df9e2780SMatthias Ringwald     // stack state sub statemachines
51940d37aff3SMatthias Ringwald     // halting needs to be called even if we cannot send command packet now
5195df9e2780SMatthias Ringwald     switch (hci_stack->state) {
5196df9e2780SMatthias Ringwald         case HCI_STATE_INITIALIZING:
5197df9e2780SMatthias Ringwald             hci_initializing_run();
5198df9e2780SMatthias Ringwald             break;
5199df9e2780SMatthias Ringwald         case HCI_STATE_HALTING:
5200df9e2780SMatthias Ringwald             hci_halting_run();
5201df9e2780SMatthias Ringwald             break;
5202df9e2780SMatthias Ringwald         case HCI_STATE_FALLING_ASLEEP:
5203df9e2780SMatthias Ringwald             hci_falling_asleep_run();
5204df9e2780SMatthias Ringwald             break;
5205df9e2780SMatthias Ringwald         default:
5206df9e2780SMatthias Ringwald             break;
5207df9e2780SMatthias Ringwald     }
5208df9e2780SMatthias Ringwald 
5209f30077b7SMatthias Ringwald     bool done;
5210f30077b7SMatthias Ringwald 
5211f30077b7SMatthias Ringwald     // send continuation fragments first, as they block the prepared packet buffer
5212f30077b7SMatthias Ringwald     done = hci_run_acl_fragments();
5213f30077b7SMatthias Ringwald     if (done) return;
5214f30077b7SMatthias Ringwald 
5215f30077b7SMatthias Ringwald #ifdef ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL
5216f30077b7SMatthias Ringwald     // send host num completed packets next as they don't require num_cmd_packets > 0
5217f30077b7SMatthias Ringwald     if (!hci_can_send_comand_packet_transport()) return;
5218f30077b7SMatthias Ringwald     if (hci_stack->host_completed_packets){
5219f30077b7SMatthias Ringwald         hci_host_num_completed_packets();
5220f30077b7SMatthias Ringwald         return;
5221f30077b7SMatthias Ringwald     }
5222f30077b7SMatthias Ringwald #endif
5223f30077b7SMatthias Ringwald 
5224f30077b7SMatthias Ringwald     if (!hci_can_send_command_packet_now()) return;
5225f30077b7SMatthias Ringwald 
5226f30077b7SMatthias Ringwald     // global/non-connection oriented commands
5227f30077b7SMatthias Ringwald 
5228f30077b7SMatthias Ringwald 
5229f30077b7SMatthias Ringwald #ifdef ENABLE_CLASSIC
5230f30077b7SMatthias Ringwald     // general gap classic
5231f30077b7SMatthias Ringwald     done = hci_run_general_gap_classic();
5232f30077b7SMatthias Ringwald     if (done) return;
5233f30077b7SMatthias Ringwald #endif
5234f30077b7SMatthias Ringwald 
5235f30077b7SMatthias Ringwald #ifdef ENABLE_BLE
5236f30077b7SMatthias Ringwald     // general gap le
5237f30077b7SMatthias Ringwald     done = hci_run_general_gap_le();
5238f30077b7SMatthias Ringwald     if (done) return;
5239f30077b7SMatthias Ringwald #endif
5240f30077b7SMatthias Ringwald 
5241f30077b7SMatthias Ringwald     // send pending HCI commands
5242df9e2780SMatthias Ringwald     hci_run_general_pending_commands();
52433429f56bSmatthias.ringwald }
524416833f0aSmatthias.ringwald 
52453e2050f7SMatthias Ringwald uint8_t hci_send_cmd_packet(uint8_t *packet, int size){
524635454696SMatthias Ringwald     // house-keeping
524735454696SMatthias Ringwald 
524835454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
5249c8e4258aSmatthias.ringwald     bd_addr_t addr;
5250c8e4258aSmatthias.ringwald     hci_connection_t * conn;
5251c123d999SMatthias Ringwald #endif
5252c123d999SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
52536f35bb46SMatthias Ringwald     uint8_t initiator_filter_policy;
52549cbd2215SMatthias Ringwald #endif
5255c8e4258aSmatthias.ringwald 
52566f35bb46SMatthias Ringwald     uint16_t opcode = little_endian_read_16(packet, 0);
52576f35bb46SMatthias Ringwald     switch (opcode) {
52589cbd2215SMatthias Ringwald         case HCI_OPCODE_HCI_WRITE_LOOPBACK_MODE:
52599cbd2215SMatthias Ringwald             hci_stack->loopback_mode = packet[3];
52609cbd2215SMatthias Ringwald             break;
52619cbd2215SMatthias Ringwald 
52629cbd2215SMatthias Ringwald #ifdef ENABLE_CLASSIC
52636f35bb46SMatthias Ringwald         case HCI_OPCODE_HCI_CREATE_CONNECTION:
5264724d70a2SMatthias Ringwald             reverse_bd_addr(&packet[3], addr);
52659da54300S[email protected]             log_info("Create_connection to %s", bd_addr_to_str(addr));
5266c8e4258aSmatthias.ringwald 
526772cf8859SMatthias Ringwald             // CVE-2020-26555: reject outgoing connection to device with same BD ADDR
526872cf8859SMatthias Ringwald             if (memcmp(hci_stack->local_bd_addr, addr, 6) == 0) {
526979e0fa07SMatthias Ringwald                 hci_emit_connection_complete(addr, 0, ERROR_CODE_CONNECTION_REJECTED_DUE_TO_UNACCEPTABLE_BD_ADDR);
52703e2050f7SMatthias Ringwald                 return ERROR_CODE_CONNECTION_REJECTED_DUE_TO_UNACCEPTABLE_BD_ADDR;
527172cf8859SMatthias Ringwald             }
527272cf8859SMatthias Ringwald 
5273f16129ceSMatthias Ringwald             conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
5274ad83dc6aS[email protected]             if (!conn) {
5275f16129ceSMatthias Ringwald                 conn = create_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
527617f1ba2aSmatthias.ringwald                 if (!conn) {
527717f1ba2aSmatthias.ringwald                     // notify client that alloc failed
52782deddeceSMatthias Ringwald                     hci_emit_connection_complete(addr, 0, BTSTACK_MEMORY_ALLOC_FAILED);
52793e2050f7SMatthias Ringwald                     return BTSTACK_MEMORY_ALLOC_FAILED; // packet not sent to controller
528017f1ba2aSmatthias.ringwald                 }
5281ad83dc6aS[email protected]                 conn->state = SEND_CREATE_CONNECTION;
5282f3e2cd2aSMatthias Ringwald                 conn->role  = HCI_ROLE_MASTER;
5283ad83dc6aS[email protected]             }
5284aee5d5c1SMatthias Ringwald 
5285aee5d5c1SMatthias Ringwald             conn->con_handle = HCI_CON_HANDLE_INVALID;
5286aee5d5c1SMatthias Ringwald             conn->role = HCI_ROLE_INVALID;
5287aee5d5c1SMatthias Ringwald 
5288ad83dc6aS[email protected]             log_info("conn state %u", conn->state);
52893e2050f7SMatthias Ringwald             // TODO: L2CAP should not send create connection command, instead a (new) gap function should be used
5290ad83dc6aS[email protected]             switch (conn->state) {
5291ad83dc6aS[email protected]                 // if connection active exists
5292ad83dc6aS[email protected]                 case OPEN:
5293f5e5741dSMatthias Ringwald                     // and OPEN, emit connection complete command
529472cf8859SMatthias Ringwald                     hci_emit_connection_complete(addr, conn->con_handle, ERROR_CODE_SUCCESS);
52953e2050f7SMatthias Ringwald                     // packet not sent to controller
52963e2050f7SMatthias Ringwald                     return ERROR_CODE_ACL_CONNECTION_ALREADY_EXISTS;
5297672e36abSMatthias Ringwald                 case RECEIVED_DISCONNECTION_COMPLETE:
5298672e36abSMatthias Ringwald                     // create connection triggered in disconnect complete event, let's do it now
5299672e36abSMatthias Ringwald                     break;
5300ad83dc6aS[email protected]                 case SEND_CREATE_CONNECTION:
5301532f91a5SMatthias Ringwald                     // connection created by hci, e.g. dedicated bonding, but not executed yet, let's do it now
5302532f91a5SMatthias Ringwald                     break;
5303ad83dc6aS[email protected]                 default:
5304ad83dc6aS[email protected]                     // otherwise, just ignore as it is already in the open process
53053e2050f7SMatthias Ringwald                     // packet not sent to controller
53063e2050f7SMatthias Ringwald                     return ERROR_CODE_ACL_CONNECTION_ALREADY_EXISTS;
5307ad83dc6aS[email protected]             }
5308c8e4258aSmatthias.ringwald             conn->state = SENT_CREATE_CONNECTION;
5309229331c6SMatthias Ringwald 
5310229331c6SMatthias Ringwald             // track outgoing connection
5311f16129ceSMatthias Ringwald             hci_stack->outgoing_addr_type = BD_ADDR_TYPE_ACL;
53126535961aSMatthias Ringwald             (void) memcpy(hci_stack->outgoing_addr, addr, 6);
53136f35bb46SMatthias Ringwald             break;
5314ee752bb8SMatthias Ringwald 
53155b7087c7SMatthias Ringwald #if defined (ENABLE_SCO_OVER_HCI) || defined (HAVE_SCO_TRANSPORT)
53166f35bb46SMatthias Ringwald         case HCI_OPCODE_HCI_SETUP_SYNCHRONOUS_CONNECTION:
5317ee752bb8SMatthias Ringwald             // setup_synchronous_connection? Voice setting at offset 22
5318ee752bb8SMatthias Ringwald             // TODO: compare to current setting if sco connection already active
5319ee752bb8SMatthias Ringwald             hci_stack->sco_voice_setting_active = little_endian_read_16(packet, 15);
53206f35bb46SMatthias Ringwald             break;
53216f35bb46SMatthias Ringwald         case HCI_OPCODE_HCI_ACCEPT_SYNCHRONOUS_CONNECTION:
5322c91e6e4fSMatthias Ringwald             // accept_synchronous_connection? Voice setting at offset 18
5323ee752bb8SMatthias Ringwald             // TODO: compare to current setting if sco connection already active
5324ee752bb8SMatthias Ringwald             hci_stack->sco_voice_setting_active = little_endian_read_16(packet, 19);
53251f34df2cSMatthias Ringwald             // track outgoing connection
53261f34df2cSMatthias Ringwald             hci_stack->outgoing_addr_type = BD_ADDR_TYPE_SCO;
53271f34df2cSMatthias Ringwald             reverse_bd_addr(&packet[3], hci_stack->outgoing_addr);
53286f35bb46SMatthias Ringwald             break;
5329ee752bb8SMatthias Ringwald #endif
533035454696SMatthias Ringwald #endif
53314b3e1e19SMatthias Ringwald 
5332a9a4c409SMatthias Ringwald #ifdef ENABLE_BLE
5333d70217a2SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
53346f35bb46SMatthias Ringwald         case HCI_OPCODE_HCI_LE_CREATE_CONNECTION:
5335b04dfa37SMatthias Ringwald             // white list used?
53366f35bb46SMatthias Ringwald             initiator_filter_policy = packet[7];
5337b04dfa37SMatthias Ringwald             switch (initiator_filter_policy) {
5338b04dfa37SMatthias Ringwald                 case 0:
5339b04dfa37SMatthias Ringwald                     // whitelist not used
5340b04dfa37SMatthias Ringwald                     hci_stack->le_connecting_state = LE_CONNECTING_DIRECT;
5341b04dfa37SMatthias Ringwald                     break;
5342b04dfa37SMatthias Ringwald                 case 1:
5343b04dfa37SMatthias Ringwald                     hci_stack->le_connecting_state = LE_CONNECTING_WHITELIST;
5344b04dfa37SMatthias Ringwald                     break;
5345b04dfa37SMatthias Ringwald                 default:
5346b04dfa37SMatthias Ringwald                     log_error("Invalid initiator_filter_policy in LE Create Connection %u", initiator_filter_policy);
5347b04dfa37SMatthias Ringwald                     break;
5348b04dfa37SMatthias Ringwald             }
5349c163146eSMatthias Ringwald             // track outgoing connection
535005002aecSMatthias Ringwald             hci_stack->outgoing_addr_type = (bd_addr_type_t) packet[8]; // peer addres type
5351c163146eSMatthias Ringwald             reverse_bd_addr( &packet[9], hci_stack->outgoing_addr); // peer address
53526f35bb46SMatthias Ringwald             break;
53536f35bb46SMatthias Ringwald         case HCI_OPCODE_HCI_LE_CREATE_CONNECTION_CANCEL:
53546ea9315cSMatthias Ringwald             hci_stack->le_connecting_state = LE_CONNECTING_CANCEL;
53556f35bb46SMatthias Ringwald             break;
53569cbd2215SMatthias Ringwald #endif
53579cbd2215SMatthias Ringwald #endif
53586f35bb46SMatthias Ringwald         default:
53596f35bb46SMatthias Ringwald             break;
5360b04dfa37SMatthias Ringwald     }
536169a97523S[email protected] 
53623a9fb326S[email protected]     hci_stack->num_cmd_packets--;
53635bb5bc3eS[email protected] 
53645bb5bc3eS[email protected]     hci_dump_packet(HCI_COMMAND_DATA_PACKET, 0, packet, size);
53653e2050f7SMatthias Ringwald     int err = hci_stack->hci_transport->send_packet(HCI_COMMAND_DATA_PACKET, packet, size);
53663e2050f7SMatthias Ringwald     if (err != 0){
53673e2050f7SMatthias Ringwald         return ERROR_CODE_HARDWARE_FAILURE;
53683e2050f7SMatthias Ringwald     }
53693e2050f7SMatthias Ringwald     return ERROR_CODE_SUCCESS;
537031452debSmatthias.ringwald }
53718adf0ddaSmatthias.ringwald 
53722bd8b7e7S[email protected] // disconnect because of security block
53732bd8b7e7S[email protected] void hci_disconnect_security_block(hci_con_handle_t con_handle){
53742bd8b7e7S[email protected]     hci_connection_t * connection = hci_connection_for_handle(con_handle);
53752bd8b7e7S[email protected]     if (!connection) return;
53762bd8b7e7S[email protected]     connection->bonding_flags |= BONDING_DISCONNECT_SECURITY_BLOCK;
53772bd8b7e7S[email protected] }
53782bd8b7e7S[email protected] 
53792bd8b7e7S[email protected] 
5380dbe1a790S[email protected] // Configure Secure Simple Pairing
5381dbe1a790S[email protected] 
538235454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
538335454696SMatthias Ringwald 
5384dbe1a790S[email protected] // enable will enable SSP during init
538515a95bd5SMatthias Ringwald void gap_ssp_set_enable(int enable){
53863a9fb326S[email protected]     hci_stack->ssp_enable = enable;
5387dbe1a790S[email protected] }
5388dbe1a790S[email protected] 
538995d71764SMatthias Ringwald static int hci_local_ssp_activated(void){
539015a95bd5SMatthias Ringwald     return gap_ssp_supported() && hci_stack->ssp_enable;
53912bd8b7e7S[email protected] }
53922bd8b7e7S[email protected] 
5393dbe1a790S[email protected] // if set, BTstack will respond to io capability request using authentication requirement
539415a95bd5SMatthias Ringwald void gap_ssp_set_io_capability(int io_capability){
53953a9fb326S[email protected]     hci_stack->ssp_io_capability = io_capability;
5396dbe1a790S[email protected] }
539715a95bd5SMatthias Ringwald void gap_ssp_set_authentication_requirement(int authentication_requirement){
53983a9fb326S[email protected]     hci_stack->ssp_authentication_requirement = authentication_requirement;
5399dbe1a790S[email protected] }
5400dbe1a790S[email protected] 
5401dbe1a790S[email protected] // if set, BTstack will confirm a numberic comparion and enter '000000' if requested
540215a95bd5SMatthias Ringwald void gap_ssp_set_auto_accept(int auto_accept){
54033a9fb326S[email protected]     hci_stack->ssp_auto_accept = auto_accept;
5404dbe1a790S[email protected] }
54055d23aae8SMatthias Ringwald 
54065d23aae8SMatthias Ringwald void gap_secure_connections_enable(bool enable){
54075d23aae8SMatthias Ringwald     hci_stack->secure_connections_enable = enable;
54085d23aae8SMatthias Ringwald }
54095d23aae8SMatthias Ringwald 
541035454696SMatthias Ringwald #endif
5411dbe1a790S[email protected] 
541294be1a66SMatthias Ringwald // va_list part of hci_send_cmd
54133e2050f7SMatthias Ringwald uint8_t hci_send_cmd_va_arg(const hci_cmd_t * cmd, va_list argptr){
5414d94d3cafS[email protected]     if (!hci_can_send_command_packet_now()){
54159d14b626S[email protected]         log_error("hci_send_cmd called but cannot send packet now");
54163e2050f7SMatthias Ringwald         return ERROR_CODE_COMMAND_DISALLOWED;
54179d14b626S[email protected]     }
54189d14b626S[email protected] 
54195127cc62S[email protected]     // for HCI INITIALIZATION
54209da54300S[email protected]     // log_info("hci_send_cmd: opcode %04x", cmd->opcode);
54215127cc62S[email protected]     hci_stack->last_cmd_opcode = cmd->opcode;
54225127cc62S[email protected] 
54239d14b626S[email protected]     hci_reserve_packet_buffer();
54249d14b626S[email protected]     uint8_t * packet = hci_stack->hci_packet_buffer;
542594be1a66SMatthias Ringwald     uint16_t size = hci_cmd_create_from_template(packet, cmd, argptr);
54263e2050f7SMatthias Ringwald     uint8_t status = hci_send_cmd_packet(packet, size);
5427bfea0222SMatthias Ringwald 
5428593702caSMatthias Ringwald     // release packet buffer on error or for synchronous transport implementations
54293e2050f7SMatthias Ringwald     if ((status != ERROR_CODE_SUCCESS) || hci_transport_synchronous()){
5430e2d22487SMatthias Ringwald         hci_release_packet_buffer();
5431068b8592SMatthias Ringwald         hci_emit_transport_packet_sent();
5432bfea0222SMatthias Ringwald     }
5433bfea0222SMatthias Ringwald 
54343e2050f7SMatthias Ringwald     return status;
543594be1a66SMatthias Ringwald }
54369d14b626S[email protected] 
543794be1a66SMatthias Ringwald /**
543894be1a66SMatthias Ringwald  * pre: numcmds >= 0 - it's allowed to send a command to the controller
543994be1a66SMatthias Ringwald  */
54403e2050f7SMatthias Ringwald uint8_t hci_send_cmd(const hci_cmd_t * cmd, ...){
54411cd208adSmatthias.ringwald     va_list argptr;
54421cd208adSmatthias.ringwald     va_start(argptr, cmd);
54433e2050f7SMatthias Ringwald     uint8_t status = hci_send_cmd_va_arg(cmd, argptr);
54441cd208adSmatthias.ringwald     va_end(argptr);
54453e2050f7SMatthias Ringwald     return status;
544693b8dc03Smatthias.ringwald }
5447c8e4258aSmatthias.ringwald 
5448ee091cf1Smatthias.ringwald // Create various non-HCI events.
5449ee091cf1Smatthias.ringwald // TODO: generalize, use table similar to hci_create_command
5450ee091cf1Smatthias.ringwald 
5451d6b06661SMatthias Ringwald static void hci_emit_event(uint8_t * event, uint16_t size, int dump){
5452fb37a842SMatthias Ringwald     // dump packet
5453d6b06661SMatthias Ringwald     if (dump) {
5454300c1ba4SMatthias Ringwald         hci_dump_packet( HCI_EVENT_PACKET, 0, event, size);
5455d6b06661SMatthias Ringwald     }
54561ef6bb52SMatthias Ringwald 
5457fb37a842SMatthias Ringwald     // dispatch to all event handlers
54581ef6bb52SMatthias Ringwald     btstack_linked_list_iterator_t it;
54591ef6bb52SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->event_handlers);
54601ef6bb52SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
54611ef6bb52SMatthias Ringwald         btstack_packet_callback_registration_t * entry = (btstack_packet_callback_registration_t*) btstack_linked_list_iterator_next(&it);
5462d9a7306aSMatthias Ringwald         entry->callback(HCI_EVENT_PACKET, 0, event, size);
54631ef6bb52SMatthias Ringwald     }
5464d6b06661SMatthias Ringwald }
5465d6b06661SMatthias Ringwald 
5466d6b06661SMatthias Ringwald static void hci_emit_acl_packet(uint8_t * packet, uint16_t size){
5467fb37a842SMatthias Ringwald     if (!hci_stack->acl_packet_handler) return;
54683d50b4baSMatthias Ringwald     hci_stack->acl_packet_handler(HCI_ACL_DATA_PACKET, 0, packet, size);
5469d6b06661SMatthias Ringwald }
5470d6b06661SMatthias Ringwald 
547135454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
5472701e3307SMatthias Ringwald static void hci_notify_if_sco_can_send_now(void){
54733bc639ceSMatthias Ringwald     // notify SCO sender if waiting
5474701e3307SMatthias Ringwald     if (!hci_stack->sco_waiting_for_can_send_now) return;
5475701e3307SMatthias Ringwald     if (hci_can_send_sco_packet_now()){
54763bc639ceSMatthias Ringwald         hci_stack->sco_waiting_for_can_send_now = 0;
5477701e3307SMatthias Ringwald         uint8_t event[2] = { HCI_EVENT_SCO_CAN_SEND_NOW, 0 };
5478701e3307SMatthias Ringwald         hci_dump_packet(HCI_EVENT_PACKET, 1, event, sizeof(event));
54793d50b4baSMatthias Ringwald         hci_stack->sco_packet_handler(HCI_EVENT_PACKET, 0, event, sizeof(event));
54803bc639ceSMatthias Ringwald     }
54813bc639ceSMatthias Ringwald }
54821cfb383eSMatthias Ringwald 
54831cfb383eSMatthias Ringwald // parsing end emitting has been merged to reduce code size
54849784dac1SMatthias Ringwald static void gap_inquiry_explode(uint8_t *packet, uint16_t size) {
5485ac9136ccSMatthias Ringwald     uint8_t event[28+GAP_INQUIRY_MAX_NAME_LEN];
54861cfb383eSMatthias Ringwald 
54871cfb383eSMatthias Ringwald     uint8_t * eir_data;
54881cfb383eSMatthias Ringwald     ad_context_t context;
54891cfb383eSMatthias Ringwald     const uint8_t * name;
54901cfb383eSMatthias Ringwald     uint8_t         name_len;
54911cfb383eSMatthias Ringwald 
54929784dac1SMatthias Ringwald     if (size < 3) return;
54939784dac1SMatthias Ringwald 
54941cfb383eSMatthias Ringwald     int event_type = hci_event_packet_get_type(packet);
5495a1df452eSMatthias Ringwald     int num_reserved_fields = (event_type == HCI_EVENT_INQUIRY_RESULT) ? 2 : 1;    // 2 for old event, 1 otherwise
54961cfb383eSMatthias Ringwald     int num_responses       = hci_event_inquiry_result_get_num_responses(packet);
54971cfb383eSMatthias Ringwald 
54989784dac1SMatthias Ringwald     switch (event_type){
54999784dac1SMatthias Ringwald         case HCI_EVENT_INQUIRY_RESULT:
55009784dac1SMatthias Ringwald         case HCI_EVENT_INQUIRY_RESULT_WITH_RSSI:
55019784dac1SMatthias Ringwald             if (size != (3 + (num_responses * 14))) return;
55029784dac1SMatthias Ringwald             break;
55039784dac1SMatthias Ringwald         case HCI_EVENT_EXTENDED_INQUIRY_RESPONSE:
55049784dac1SMatthias Ringwald             if (size != 257) return;
55059784dac1SMatthias Ringwald             if (num_responses != 1) return;
55069784dac1SMatthias Ringwald             break;
55079784dac1SMatthias Ringwald         default:
55089784dac1SMatthias Ringwald             return;
55099784dac1SMatthias Ringwald     }
55109784dac1SMatthias Ringwald 
55111cfb383eSMatthias Ringwald     // event[1] is set at the end
55121cfb383eSMatthias Ringwald     int i;
55131cfb383eSMatthias Ringwald     for (i=0; i<num_responses;i++){
55141cfb383eSMatthias Ringwald         memset(event, 0, sizeof(event));
55151cfb383eSMatthias Ringwald         event[0] = GAP_EVENT_INQUIRY_RESULT;
5516ac973fd6SMatthias Ringwald         uint8_t event_size = 27;    // if name is not set by EIR
55171cfb383eSMatthias Ringwald 
55186535961aSMatthias Ringwald         (void)memcpy(&event[2], &packet[3 + (i * 6)], 6); // bd_addr
55190e588213SMatthias Ringwald         event[8] =          packet[3 + (num_responses*(6))                         + (i*1)];     // page_scan_repetition_mode
55206535961aSMatthias Ringwald         (void)memcpy(&event[9],
55216535961aSMatthias Ringwald                      &packet[3 + (num_responses * (6 + 1 + num_reserved_fields)) + (i * 3)],
55226535961aSMatthias Ringwald                      3); // class of device
55236535961aSMatthias Ringwald         (void)memcpy(&event[12],
55246535961aSMatthias Ringwald                      &packet[3 + (num_responses * (6 + 1 + num_reserved_fields + 3)) + (i * 2)],
55256535961aSMatthias Ringwald                      2); // clock offset
55261cfb383eSMatthias Ringwald 
55271cfb383eSMatthias Ringwald         switch (event_type){
55281cfb383eSMatthias Ringwald             case HCI_EVENT_INQUIRY_RESULT:
55291cfb383eSMatthias Ringwald                 // 14,15,16,17 = 0, size 18
55301cfb383eSMatthias Ringwald                 break;
55311cfb383eSMatthias Ringwald             case HCI_EVENT_INQUIRY_RESULT_WITH_RSSI:
55321cfb383eSMatthias Ringwald                 event[14] = 1;
5533a1df452eSMatthias Ringwald                 event[15] = packet [3 + (num_responses*(6+1+num_reserved_fields+3+2)) + (i*1)]; // rssi
55341cfb383eSMatthias Ringwald                 // 16,17 = 0, size 18
55351cfb383eSMatthias Ringwald                 break;
55361cfb383eSMatthias Ringwald             case HCI_EVENT_EXTENDED_INQUIRY_RESPONSE:
55371cfb383eSMatthias Ringwald                 event[14] = 1;
5538a1df452eSMatthias Ringwald                 event[15] = packet [3 + (num_responses*(6+1+num_reserved_fields+3+2)) + (i*1)]; // rssi
553979186815SMatthias Ringwald                 // EIR packets only contain a single inquiry response
55401cfb383eSMatthias Ringwald                 eir_data = &packet[3 + (6+1+num_reserved_fields+3+2+1)];
55411cfb383eSMatthias Ringwald                 name = NULL;
5542a8c4e5adSMatthias Ringwald                 // Iterate over EIR data
5543a8c4e5adSMatthias Ringwald                 for (ad_iterator_init(&context, EXTENDED_INQUIRY_RESPONSE_DATA_LEN, eir_data) ; ad_iterator_has_more(&context) ; ad_iterator_next(&context)){
55441cfb383eSMatthias Ringwald                     uint8_t data_type    = ad_iterator_get_data_type(&context);
55451cfb383eSMatthias Ringwald                     uint8_t data_size    = ad_iterator_get_data_len(&context);
55461cfb383eSMatthias Ringwald                     const uint8_t * data = ad_iterator_get_data(&context);
5547ac9136ccSMatthias Ringwald                     // Prefer Complete Local Name over Shortened Local Name
55481cfb383eSMatthias Ringwald                     switch (data_type){
55491cfb383eSMatthias Ringwald                         case BLUETOOTH_DATA_TYPE_SHORTENED_LOCAL_NAME:
55501cfb383eSMatthias Ringwald                             if (name) continue;
5551cf373d3aSMatthias Ringwald                             /* fall through */
55521cfb383eSMatthias Ringwald                         case BLUETOOTH_DATA_TYPE_COMPLETE_LOCAL_NAME:
55531cfb383eSMatthias Ringwald                             name = data;
55541cfb383eSMatthias Ringwald                             name_len = data_size;
55551cfb383eSMatthias Ringwald                             break;
5556ac9136ccSMatthias Ringwald                         case BLUETOOTH_DATA_TYPE_DEVICE_ID:
5557ac9136ccSMatthias Ringwald                             if (data_size != 8) break;
5558ac9136ccSMatthias Ringwald                             event[16] = 1;
55593c0c7fefSMatthias Ringwald                             memcpy(&event[17], data, 8);
5560ac9136ccSMatthias Ringwald                             break;
55611cfb383eSMatthias Ringwald                         default:
55621cfb383eSMatthias Ringwald                             break;
55631cfb383eSMatthias Ringwald                     }
55641cfb383eSMatthias Ringwald                 }
55651cfb383eSMatthias Ringwald                 if (name){
5566ac9136ccSMatthias Ringwald                     event[25] = 1;
55671cfb383eSMatthias Ringwald                     // truncate name if needed
55681cfb383eSMatthias Ringwald                     int len = btstack_min(name_len, GAP_INQUIRY_MAX_NAME_LEN);
5569ac9136ccSMatthias Ringwald                     event[26] = len;
5570ac9136ccSMatthias Ringwald                     (void)memcpy(&event[27], name, len);
55711cfb383eSMatthias Ringwald                     event_size += len;
55721cfb383eSMatthias Ringwald                 }
55731cfb383eSMatthias Ringwald                 break;
55747bbeb3adSMilanka Ringwald             default:
55757bbeb3adSMilanka Ringwald                 return;
55761cfb383eSMatthias Ringwald         }
55771cfb383eSMatthias Ringwald         event[1] = event_size - 2;
55781cfb383eSMatthias Ringwald         hci_emit_event(event, event_size, 1);
55791cfb383eSMatthias Ringwald     }
55801cfb383eSMatthias Ringwald }
558135454696SMatthias Ringwald #endif
55823bc639ceSMatthias Ringwald 
558371de195eSMatthias Ringwald void hci_emit_state(void){
55843a9fb326S[email protected]     log_info("BTSTACK_EVENT_STATE %u", hci_stack->state);
5585425d1371Smatthias.ringwald     uint8_t event[3];
558680d52d6bSmatthias.ringwald     event[0] = BTSTACK_EVENT_STATE;
55874ea43905SMatthias Ringwald     event[1] = sizeof(event) - 2u;
55883a9fb326S[email protected]     event[2] = hci_stack->state;
5589d6b06661SMatthias Ringwald     hci_emit_event(event, sizeof(event), 1);
5590c8e4258aSmatthias.ringwald }
5591c8e4258aSmatthias.ringwald 
559235454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
55932deddeceSMatthias Ringwald static void hci_emit_connection_complete(bd_addr_t address, hci_con_handle_t con_handle, uint8_t status){
5594425d1371Smatthias.ringwald     uint8_t event[13];
5595c8e4258aSmatthias.ringwald     event[0] = HCI_EVENT_CONNECTION_COMPLETE;
5596425d1371Smatthias.ringwald     event[1] = sizeof(event) - 2;
559717f1ba2aSmatthias.ringwald     event[2] = status;
55982deddeceSMatthias Ringwald     little_endian_store_16(event, 3, con_handle);
55992deddeceSMatthias Ringwald     reverse_bd_addr(address, &event[5]);
5600c8e4258aSmatthias.ringwald     event[11] = 1; // ACL connection
5601c8e4258aSmatthias.ringwald     event[12] = 0; // encryption disabled
5602d6b06661SMatthias Ringwald     hci_emit_event(event, sizeof(event), 1);
5603c8e4258aSmatthias.ringwald }
560452db98b2SMatthias Ringwald static void hci_emit_l2cap_check_timeout(hci_connection_t *conn){
560552db98b2SMatthias Ringwald     if (disable_l2cap_timeouts) return;
560652db98b2SMatthias Ringwald     log_info("L2CAP_EVENT_TIMEOUT_CHECK");
560752db98b2SMatthias Ringwald     uint8_t event[4];
560852db98b2SMatthias Ringwald     event[0] = L2CAP_EVENT_TIMEOUT_CHECK;
560952db98b2SMatthias Ringwald     event[1] = sizeof(event) - 2;
561052db98b2SMatthias Ringwald     little_endian_store_16(event, 2, conn->con_handle);
561152db98b2SMatthias Ringwald     hci_emit_event(event, sizeof(event), 1);
561252db98b2SMatthias Ringwald }
561335454696SMatthias Ringwald #endif
5614c8e4258aSmatthias.ringwald 
561535454696SMatthias Ringwald #ifdef ENABLE_BLE
5616d70217a2SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
5617667ba9d1SMatthias Ringwald static void hci_emit_le_connection_complete(uint8_t address_type, const bd_addr_t address, hci_con_handle_t con_handle, uint8_t status){
56184f3229d8S[email protected]     uint8_t event[21];
56194f3229d8S[email protected]     event[0] = HCI_EVENT_LE_META;
56204ea43905SMatthias Ringwald     event[1] = sizeof(event) - 2u;
56214f3229d8S[email protected]     event[2] = HCI_SUBEVENT_LE_CONNECTION_COMPLETE;
56224f3229d8S[email protected]     event[3] = status;
5623fc64f94aSMatthias Ringwald     little_endian_store_16(event, 4, con_handle);
56244f3229d8S[email protected]     event[6] = 0; // TODO: role
56256e2e9a6bS[email protected]     event[7] = address_type;
5626724d70a2SMatthias Ringwald     reverse_bd_addr(address, &event[8]);
5627f8fbdce0SMatthias Ringwald     little_endian_store_16(event, 14, 0); // interval
5628f8fbdce0SMatthias Ringwald     little_endian_store_16(event, 16, 0); // latency
5629f8fbdce0SMatthias Ringwald     little_endian_store_16(event, 18, 0); // supervision timeout
56304f3229d8S[email protected]     event[20] = 0; // master clock accuracy
5631d6b06661SMatthias Ringwald     hci_emit_event(event, sizeof(event), 1);
56324f3229d8S[email protected] }
563335454696SMatthias Ringwald #endif
5634d70217a2SMatthias Ringwald #endif
56354f3229d8S[email protected] 
5636fd43c0e0SMatthias Ringwald static void hci_emit_transport_packet_sent(void){
5637fd43c0e0SMatthias Ringwald     // notify upper stack that it might be possible to send again
5638fd43c0e0SMatthias Ringwald     uint8_t event[] = { HCI_EVENT_TRANSPORT_PACKET_SENT, 0};
5639fd43c0e0SMatthias Ringwald     hci_emit_event(&event[0], sizeof(event), 0);  // don't dump
5640fd43c0e0SMatthias Ringwald }
5641fd43c0e0SMatthias Ringwald 
5642fc64f94aSMatthias Ringwald static void hci_emit_disconnection_complete(hci_con_handle_t con_handle, uint8_t reason){
5643425d1371Smatthias.ringwald     uint8_t event[6];
56443c4d4b90Smatthias.ringwald     event[0] = HCI_EVENT_DISCONNECTION_COMPLETE;
56454ea43905SMatthias Ringwald     event[1] = sizeof(event) - 2u;
56463c4d4b90Smatthias.ringwald     event[2] = 0; // status = OK
5647fc64f94aSMatthias Ringwald     little_endian_store_16(event, 3, con_handle);
56483c4d4b90Smatthias.ringwald     event[5] = reason;
5649d6b06661SMatthias Ringwald     hci_emit_event(event, sizeof(event), 1);
56503c4d4b90Smatthias.ringwald }
56513c4d4b90Smatthias.ringwald 
5652b83d5eabSMatthias Ringwald static void hci_emit_nr_connections_changed(void){
5653e0abb8e7S[email protected]     log_info("BTSTACK_EVENT_NR_CONNECTIONS_CHANGED %u", nr_hci_connections());
5654425d1371Smatthias.ringwald     uint8_t event[3];
565580d52d6bSmatthias.ringwald     event[0] = BTSTACK_EVENT_NR_CONNECTIONS_CHANGED;
56564ea43905SMatthias Ringwald     event[1] = sizeof(event) - 2u;
565743bfb1bdSmatthias.ringwald     event[2] = nr_hci_connections();
5658d6b06661SMatthias Ringwald     hci_emit_event(event, sizeof(event), 1);
565943bfb1bdSmatthias.ringwald }
5660038bc64cSmatthias.ringwald 
5661b83d5eabSMatthias Ringwald static void hci_emit_hci_open_failed(void){
5662e0abb8e7S[email protected]     log_info("BTSTACK_EVENT_POWERON_FAILED");
5663425d1371Smatthias.ringwald     uint8_t event[2];
566480d52d6bSmatthias.ringwald     event[0] = BTSTACK_EVENT_POWERON_FAILED;
56654ea43905SMatthias Ringwald     event[1] = sizeof(event) - 2u;
5666d6b06661SMatthias Ringwald     hci_emit_event(event, sizeof(event), 1);
5667038bc64cSmatthias.ringwald }
56681b0e3922Smatthias.ringwald 
566935454696SMatthias Ringwald static void hci_emit_dedicated_bonding_result(bd_addr_t address, uint8_t status){
567035454696SMatthias Ringwald     log_info("hci_emit_dedicated_bonding_result %u ", status);
567135454696SMatthias Ringwald     uint8_t event[9];
567235454696SMatthias Ringwald     int pos = 0;
567335454696SMatthias Ringwald     event[pos++] = GAP_EVENT_DEDICATED_BONDING_COMPLETED;
56744ea43905SMatthias Ringwald     event[pos++] = sizeof(event) - 2u;
567535454696SMatthias Ringwald     event[pos++] = status;
567635454696SMatthias Ringwald     reverse_bd_addr(address, &event[pos]);
5677d6b06661SMatthias Ringwald     hci_emit_event(event, sizeof(event), 1);
5678381fbed8Smatthias.ringwald }
5679458bf4e8S[email protected] 
568035454696SMatthias Ringwald 
568135454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
568235454696SMatthias Ringwald 
5683b83d5eabSMatthias Ringwald static void hci_emit_security_level(hci_con_handle_t con_handle, gap_security_level_t level){
5684df3354fcS[email protected]     log_info("hci_emit_security_level %u for handle %x", level, con_handle);
5685a00031e2S[email protected]     uint8_t event[5];
5686e00caf9cS[email protected]     int pos = 0;
56875611a760SMatthias Ringwald     event[pos++] = GAP_EVENT_SECURITY_LEVEL;
5688e00caf9cS[email protected]     event[pos++] = sizeof(event) - 2;
5689f8fbdce0SMatthias Ringwald     little_endian_store_16(event, 2, con_handle);
5690e00caf9cS[email protected]     pos += 2;
5691e00caf9cS[email protected]     event[pos++] = level;
5692d6b06661SMatthias Ringwald     hci_emit_event(event, sizeof(event), 1);
5693e00caf9cS[email protected] }
5694e00caf9cS[email protected] 
569535454696SMatthias Ringwald static gap_security_level_t gap_security_level_for_connection(hci_connection_t * connection){
569635454696SMatthias Ringwald     if (!connection) return LEVEL_0;
56978daf94bcSMatthias Ringwald     if ((connection->authentication_flags & AUTH_FLAG_CONNECTION_ENCRYPTED) == 0) return LEVEL_0;
5698fcaf38b9SMatthias Ringwald     // BIAS: we only consider Authenticated if the connection is already encrypted, which requires that both sides have link key
56998daf94bcSMatthias Ringwald     if ((connection->authentication_flags & AUTH_FLAG_CONNECTION_AUTHENTICATED) == 0) return LEVEL_0;
5700170fafaeSMatthias Ringwald     if (connection->encryption_key_size < hci_stack->gap_required_encyrption_key_size) return LEVEL_0;
57014051b7ffSMatthias Ringwald     gap_security_level_t security_level = gap_security_level_for_link_key_type(connection->link_key_type);
5702170fafaeSMatthias Ringwald     // LEVEL 4 always requires 128 bit encrytion key size
57030e588213SMatthias Ringwald     if ((security_level == LEVEL_4) && (connection->encryption_key_size < 16)){
5704170fafaeSMatthias Ringwald         security_level = LEVEL_3;
5705170fafaeSMatthias Ringwald     }
5706170fafaeSMatthias Ringwald     return security_level;
570735454696SMatthias Ringwald }
570835454696SMatthias Ringwald 
570935454696SMatthias Ringwald static void hci_emit_discoverable_enabled(uint8_t enabled){
571035454696SMatthias Ringwald     log_info("BTSTACK_EVENT_DISCOVERABLE_ENABLED %u", enabled);
571135454696SMatthias Ringwald     uint8_t event[3];
571235454696SMatthias Ringwald     event[0] = BTSTACK_EVENT_DISCOVERABLE_ENABLED;
571335454696SMatthias Ringwald     event[1] = sizeof(event) - 2;
571435454696SMatthias Ringwald     event[2] = enabled;
5715d6b06661SMatthias Ringwald     hci_emit_event(event, sizeof(event), 1);
5716ad83dc6aS[email protected] }
5717ad83dc6aS[email protected] 
571898a2fd1cSMatthias Ringwald // query if remote side supports eSCO
571920dcdd22SMatthias Ringwald bool hci_remote_esco_supported(hci_con_handle_t con_handle){
572098a2fd1cSMatthias Ringwald     hci_connection_t * connection = hci_connection_for_handle(con_handle);
572120dcdd22SMatthias Ringwald     if (!connection) return false;
572276ccfb2aSMatthias Ringwald     return (connection->remote_supported_features[0] & 1) != 0;
572398a2fd1cSMatthias Ringwald }
572498a2fd1cSMatthias Ringwald 
572567aae551SMatthias Ringwald static bool hci_ssp_supported(hci_connection_t * connection){
572667aae551SMatthias Ringwald     const uint8_t mask = BONDING_REMOTE_SUPPORTS_SSP_CONTROLLER | BONDING_REMOTE_SUPPORTS_SSP_HOST;
572767aae551SMatthias Ringwald     return (connection->bonding_flags & mask) == mask;
572867aae551SMatthias Ringwald }
572967aae551SMatthias Ringwald 
57302bd8b7e7S[email protected] // query if remote side supports SSP
573120dcdd22SMatthias Ringwald bool hci_remote_ssp_supported(hci_con_handle_t con_handle){
57322bd8b7e7S[email protected]     hci_connection_t * connection = hci_connection_for_handle(con_handle);
573320dcdd22SMatthias Ringwald     if (!connection) return false;
573467aae551SMatthias Ringwald     return hci_ssp_supported(connection) ? 1 : 0;
57352bd8b7e7S[email protected] }
57362bd8b7e7S[email protected] 
573720dcdd22SMatthias Ringwald bool gap_ssp_supported_on_both_sides(hci_con_handle_t handle){
5738df3354fcS[email protected]     return hci_local_ssp_activated() && hci_remote_ssp_supported(handle);
5739df3354fcS[email protected] }
5740df3354fcS[email protected] 
57416ffc78ceSMatthias Ringwald /**
57426ffc78ceSMatthias Ringwald  * Check if remote supported features query has completed
57436ffc78ceSMatthias Ringwald  */
57446ffc78ceSMatthias Ringwald bool hci_remote_features_available(hci_con_handle_t handle){
57456ffc78ceSMatthias Ringwald     hci_connection_t * connection = hci_connection_for_handle(handle);
57466ffc78ceSMatthias Ringwald     if (!connection) return false;
57476ffc78ceSMatthias Ringwald     return (connection->bonding_flags & BONDING_RECEIVED_REMOTE_FEATURES) != 0;
57486ffc78ceSMatthias Ringwald }
57496ffc78ceSMatthias Ringwald 
5750d6596031SMatthias Ringwald /**
5751d6596031SMatthias Ringwald  * Trigger remote supported features query
5752d6596031SMatthias Ringwald  */
5753c9742cd1SMatthias Ringwald 
5754c9742cd1SMatthias Ringwald static void hci_trigger_remote_features_for_connection(hci_connection_t * connection){
5755c9742cd1SMatthias Ringwald     if ((connection->bonding_flags & (BONDING_REMOTE_FEATURES_QUERY_ACTIVE | BONDING_RECEIVED_REMOTE_FEATURES)) == 0){
5756c9742cd1SMatthias Ringwald         connection->bonding_flags |= BONDING_REMOTE_FEATURES_QUERY_ACTIVE | BONDING_REQUEST_REMOTE_FEATURES_PAGE_0;
5757c9742cd1SMatthias Ringwald     }
5758c9742cd1SMatthias Ringwald }
5759c9742cd1SMatthias Ringwald 
5760d6596031SMatthias Ringwald void hci_remote_features_query(hci_con_handle_t con_handle){
5761d6596031SMatthias Ringwald     hci_connection_t * connection = hci_connection_for_handle(con_handle);
5762d6596031SMatthias Ringwald     if (!connection) return;
5763c9742cd1SMatthias Ringwald     hci_trigger_remote_features_for_connection(connection);
5764d6596031SMatthias Ringwald     hci_run();
5765d6596031SMatthias Ringwald }
5766d6596031SMatthias Ringwald 
5767458bf4e8S[email protected] // GAP API
5768458bf4e8S[email protected] /**
5769458bf4e8S[email protected]  * @bbrief enable/disable bonding. default is enabled
5770458bf4e8S[email protected]  * @praram enabled
5771458bf4e8S[email protected]  */
57724c57c146S[email protected] void gap_set_bondable_mode(int enable){
57733a9fb326S[email protected]     hci_stack->bondable = enable ? 1 : 0;
5774458bf4e8S[email protected] }
57754ef6443cSMatthias Ringwald /**
57764ef6443cSMatthias Ringwald  * @brief Get bondable mode.
57774ef6443cSMatthias Ringwald  * @return 1 if bondable
57784ef6443cSMatthias Ringwald  */
57794ef6443cSMatthias Ringwald int gap_get_bondable_mode(void){
57804ef6443cSMatthias Ringwald     return hci_stack->bondable;
57814ef6443cSMatthias Ringwald }
5782cb230b9dS[email protected] 
5783cb230b9dS[email protected] /**
578434d2123cS[email protected]  * @brief map link keys to security levels
5785cb230b9dS[email protected]  */
578634d2123cS[email protected] gap_security_level_t gap_security_level_for_link_key_type(link_key_type_t link_key_type){
578734d2123cS[email protected]     switch (link_key_type){
57883c68dfa9S[email protected]         case AUTHENTICATED_COMBINATION_KEY_GENERATED_FROM_P256:
57893c68dfa9S[email protected]             return LEVEL_4;
57903c68dfa9S[email protected]         case COMBINATION_KEY:
57913c68dfa9S[email protected]         case AUTHENTICATED_COMBINATION_KEY_GENERATED_FROM_P192:
57923c68dfa9S[email protected]             return LEVEL_3;
57933c68dfa9S[email protected]         default:
57943c68dfa9S[email protected]             return LEVEL_2;
57953c68dfa9S[email protected]     }
5796cb230b9dS[email protected] }
5797cb230b9dS[email protected] 
57988b35e16aSMatthias Ringwald /**
57998b35e16aSMatthias Ringwald  * @brief map link keys to secure connection yes/no
58008b35e16aSMatthias Ringwald  */
580136c3546bSMatthias Ringwald bool gap_secure_connection_for_link_key_type(link_key_type_t link_key_type){
58028b35e16aSMatthias Ringwald     switch (link_key_type){
58038b35e16aSMatthias Ringwald         case AUTHENTICATED_COMBINATION_KEY_GENERATED_FROM_P256:
58048b35e16aSMatthias Ringwald         case UNAUTHENTICATED_COMBINATION_KEY_GENERATED_FROM_P256:
580536c3546bSMatthias Ringwald             return true;
58068b35e16aSMatthias Ringwald         default:
580736c3546bSMatthias Ringwald             return false;
58088b35e16aSMatthias Ringwald     }
58098b35e16aSMatthias Ringwald }
58108b35e16aSMatthias Ringwald 
58118b35e16aSMatthias Ringwald /**
58128b35e16aSMatthias Ringwald  * @brief map link keys to authenticated
58138b35e16aSMatthias Ringwald  */
58147040ba26SMatthias Ringwald bool gap_authenticated_for_link_key_type(link_key_type_t link_key_type){
58158b35e16aSMatthias Ringwald     switch (link_key_type){
58168b35e16aSMatthias Ringwald         case AUTHENTICATED_COMBINATION_KEY_GENERATED_FROM_P256:
58178b35e16aSMatthias Ringwald         case AUTHENTICATED_COMBINATION_KEY_GENERATED_FROM_P192:
58187040ba26SMatthias Ringwald             return true;
58198b35e16aSMatthias Ringwald         default:
58207040ba26SMatthias Ringwald             return false;
58218b35e16aSMatthias Ringwald     }
58228b35e16aSMatthias Ringwald }
58238b35e16aSMatthias Ringwald 
5824552b9260SMatthias Ringwald bool gap_mitm_protection_required_for_security_level(gap_security_level_t level){
58255127cc62S[email protected]     log_info("gap_mitm_protection_required_for_security_level %u", level);
5826106d6d11S[email protected]     return level > LEVEL_2;
5827106d6d11S[email protected] }
5828106d6d11S[email protected] 
582934d2123cS[email protected] /**
583034d2123cS[email protected]  * @brief get current security level
583134d2123cS[email protected]  */
583234d2123cS[email protected] gap_security_level_t gap_security_level(hci_con_handle_t con_handle){
583334d2123cS[email protected]     hci_connection_t * connection = hci_connection_for_handle(con_handle);
583434d2123cS[email protected]     if (!connection) return LEVEL_0;
583534d2123cS[email protected]     return gap_security_level_for_connection(connection);
583634d2123cS[email protected] }
583734d2123cS[email protected] 
5838cb230b9dS[email protected] /**
5839cb230b9dS[email protected]  * @brief request connection to device to
5840cb230b9dS[email protected]  * @result GAP_AUTHENTICATION_RESULT
5841cb230b9dS[email protected]  */
584234d2123cS[email protected] void gap_request_security_level(hci_con_handle_t con_handle, gap_security_level_t requested_level){
584334d2123cS[email protected]     hci_connection_t * connection = hci_connection_for_handle(con_handle);
584434d2123cS[email protected]     if (!connection){
5845a00031e2S[email protected]         hci_emit_security_level(con_handle, LEVEL_0);
584634d2123cS[email protected]         return;
584734d2123cS[email protected]     }
5848defbf200SMatthias Ringwald 
5849defbf200SMatthias Ringwald     btstack_assert(hci_is_le_connection(connection) == false);
5850defbf200SMatthias Ringwald 
5851bc00e12cSMatthias Ringwald     // Core Spec 5.2, GAP 5.2.2: "When in Secure Connections Only mode, all services (except those allowed to have Security Mode 4, Level 0)
5852bc00e12cSMatthias Ringwald     // available on the BR/EDR physical transport require Security Mode 4, Level 4 "
5853bc00e12cSMatthias Ringwald     if (hci_stack->gap_secure_connections_only_mode && (requested_level != LEVEL_0)){
5854bc00e12cSMatthias Ringwald         requested_level = LEVEL_4;
5855bc00e12cSMatthias Ringwald     }
5856bc00e12cSMatthias Ringwald 
585734d2123cS[email protected]     gap_security_level_t current_level = gap_security_level(con_handle);
585883d08d7cSMatthias Ringwald     log_info("gap_request_security_level requested level %u, planned level %u, current level %u",
585983d08d7cSMatthias Ringwald         requested_level, connection->requested_security_level, current_level);
586083d08d7cSMatthias Ringwald 
5861dbd5dcc3SMatthias Ringwald     // authentication active if authentication request was sent or planned level > 0
5862dbd5dcc3SMatthias Ringwald     bool authentication_active = ((connection->bonding_flags & BONDING_SENT_AUTHENTICATE_REQUEST) != 0) || (connection->requested_security_level > LEVEL_0);
5863dbd5dcc3SMatthias Ringwald     if (authentication_active){
58641cf0a6c8SMatthias Ringwald         // authentication already active
586583d08d7cSMatthias Ringwald         if (connection->requested_security_level < requested_level){
586683d08d7cSMatthias Ringwald             // increase requested level as new level is higher
586783d08d7cSMatthias Ringwald             // TODO: handle re-authentication when done
586883d08d7cSMatthias Ringwald             connection->requested_security_level = requested_level;
586983d08d7cSMatthias Ringwald         }
58701cf0a6c8SMatthias Ringwald     } else {
587183d08d7cSMatthias Ringwald         // no request active, notify if security sufficient
587283d08d7cSMatthias Ringwald         if (requested_level <= current_level){
5873a00031e2S[email protected]             hci_emit_security_level(con_handle, current_level);
587434d2123cS[email protected]             return;
587534d2123cS[email protected]         }
5876a00031e2S[email protected] 
5877e060c07dSMatthias Ringwald         // store request
587834d2123cS[email protected]         connection->requested_security_level = requested_level;
5879a00031e2S[email protected] 
5880e5470e6dSMatthias Ringwald         // request remote features if not already active
5881e5470e6dSMatthias Ringwald         hci_remote_features_query(con_handle);
5882e5470e6dSMatthias Ringwald 
58831cf0a6c8SMatthias Ringwald         // start to authenticate connection
58841eb2563eS[email protected]         connection->bonding_flags |= BONDING_SEND_AUTHENTICATE_REQUEST;
5885e80b2cf9S[email protected]         hci_run();
5886e00caf9cS[email protected]     }
58871cf0a6c8SMatthias Ringwald }
5888ad83dc6aS[email protected] 
5889ad83dc6aS[email protected] /**
5890ad83dc6aS[email protected]  * @brief start dedicated bonding with device. disconnect after bonding
5891ad83dc6aS[email protected]  * @param device
5892ad83dc6aS[email protected]  * @param request MITM protection
5893ad83dc6aS[email protected]  * @result GAP_DEDICATED_BONDING_COMPLETE
5894ad83dc6aS[email protected]  */
5895ad83dc6aS[email protected] int gap_dedicated_bonding(bd_addr_t device, int mitm_protection_required){
5896ad83dc6aS[email protected] 
5897ad83dc6aS[email protected]     // create connection state machine
5898f16129ceSMatthias Ringwald     hci_connection_t * connection = create_connection_for_bd_addr_and_type(device, BD_ADDR_TYPE_ACL);
5899ad83dc6aS[email protected] 
5900ad83dc6aS[email protected]     if (!connection){
5901ad83dc6aS[email protected]         return BTSTACK_MEMORY_ALLOC_FAILED;
5902ad83dc6aS[email protected]     }
5903ad83dc6aS[email protected] 
5904ad83dc6aS[email protected]     // delete linkn key
590515a95bd5SMatthias Ringwald     gap_drop_link_key_for_bd_addr(device);
5906ad83dc6aS[email protected] 
5907ad83dc6aS[email protected]     // configure LEVEL_2/3, dedicated bonding
5908ad83dc6aS[email protected]     connection->state = SEND_CREATE_CONNECTION;
5909ad83dc6aS[email protected]     connection->requested_security_level = mitm_protection_required ? LEVEL_3 : LEVEL_2;
5910f04a0c31SMatthias Ringwald     log_info("gap_dedicated_bonding, mitm %d -> level %u", mitm_protection_required, connection->requested_security_level);
5911ad83dc6aS[email protected]     connection->bonding_flags = BONDING_DEDICATED;
5912ad83dc6aS[email protected] 
5913ad83dc6aS[email protected]     // wait for GAP Security Result and send GAP Dedicated Bonding complete
5914ad83dc6aS[email protected] 
5915ad83dc6aS[email protected]     // handle: connnection failure (connection complete != ok)
5916ad83dc6aS[email protected]     // handle: authentication failure
5917ad83dc6aS[email protected]     // handle: disconnect on done
5918ad83dc6aS[email protected] 
5919ad83dc6aS[email protected]     hci_run();
5920ad83dc6aS[email protected] 
5921ad83dc6aS[email protected]     return 0;
5922ad83dc6aS[email protected] }
59238e618f72S[email protected] 
59248e618f72S[email protected] void gap_set_local_name(const char * local_name){
59258e618f72S[email protected]     hci_stack->local_name = local_name;
5926baa4881eSMatthias Ringwald     hci_stack->gap_tasks_classic |= GAP_TASK_SET_LOCAL_NAME;
592759d59ecfSMatthias Ringwald     // also update EIR if not set by user
592859d59ecfSMatthias Ringwald     if (hci_stack->eir_data == NULL){
5929baa4881eSMatthias Ringwald         hci_stack->gap_tasks_classic |= GAP_TASK_SET_EIR_DATA;
593059d59ecfSMatthias Ringwald     }
593159d59ecfSMatthias Ringwald     hci_run();
59328e618f72S[email protected] }
59331aeec2ebSMatthias Ringwald #endif
59348e618f72S[email protected] 
593535454696SMatthias Ringwald 
593635454696SMatthias Ringwald #ifdef ENABLE_BLE
593735454696SMatthias Ringwald 
5938d70217a2SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
5939d8e8f12aSMatthias Ringwald void gap_start_scan(void){
5940fde725feSMatthias Ringwald     hci_stack->le_scanning_enabled = true;
59417bdc6798S[email protected]     hci_run();
59427bdc6798S[email protected] }
59438e618f72S[email protected] 
5944d8e8f12aSMatthias Ringwald void gap_stop_scan(void){
5945fde725feSMatthias Ringwald     hci_stack->le_scanning_enabled = false;
59467bdc6798S[email protected]     hci_run();
59477bdc6798S[email protected] }
59484f3229d8S[email protected] 
5949a7a719e9SMatthias Ringwald void gap_set_scan_params(uint8_t scan_type, uint16_t scan_interval, uint16_t scan_window, uint8_t scanning_filter_policy){
5950ef11999fSmatthias.ringwald     hci_stack->le_scan_type          = scan_type;
5951a7a719e9SMatthias Ringwald     hci_stack->le_scan_filter_policy = scanning_filter_policy;
5952ef11999fSmatthias.ringwald     hci_stack->le_scan_interval      = scan_interval;
5953ef11999fSmatthias.ringwald     hci_stack->le_scan_window        = scan_window;
59548b69e4c7SMatthias Ringwald     hci_stack->le_scanning_param_update = true;
5955ef11999fSmatthias.ringwald     hci_run();
5956ef11999fSmatthias.ringwald }
59574f3229d8S[email protected] 
5958a7a719e9SMatthias Ringwald void gap_set_scan_parameters(uint8_t scan_type, uint16_t scan_interval, uint16_t scan_window){
5959a7a719e9SMatthias Ringwald     gap_set_scan_params(scan_type, scan_interval, scan_window, 0);
5960a7a719e9SMatthias Ringwald }
5961a7a719e9SMatthias Ringwald 
5962667ba9d1SMatthias Ringwald uint8_t gap_connect(const bd_addr_t addr, bd_addr_type_t addr_type){
59634f3229d8S[email protected]     hci_connection_t * conn = hci_connection_for_bd_addr_and_type(addr, addr_type);
59644f3229d8S[email protected]     if (!conn){
5965d32b3f05SMatthias Ringwald         // disallow if le connection is already outgoing
5966d32b3f05SMatthias Ringwald         if (hci_is_le_connection_type(addr_type) && hci_stack->le_connecting_request != LE_CONNECTING_IDLE){
5967d32b3f05SMatthias Ringwald             log_error("le connection already active");
5968d32b3f05SMatthias Ringwald             return ERROR_CODE_COMMAND_DISALLOWED;
5969d32b3f05SMatthias Ringwald         }
5970d32b3f05SMatthias Ringwald 
5971d8e8f12aSMatthias Ringwald         log_info("gap_connect: no connection exists yet, creating context");
59722e77e513S[email protected]         conn = create_connection_for_bd_addr_and_type(addr, addr_type);
59734f3229d8S[email protected]         if (!conn){
59744f3229d8S[email protected]             // notify client that alloc failed
59756e2e9a6bS[email protected]             hci_emit_le_connection_complete(addr_type, addr, 0, BTSTACK_MEMORY_ALLOC_FAILED);
5976d8e8f12aSMatthias Ringwald             log_info("gap_connect: failed to alloc hci_connection_t");
5977472a5742SMatthias Ringwald             return GATT_CLIENT_NOT_CONNECTED; // don't sent packet to controller
59784f3229d8S[email protected]         }
5979d5b1a89eSMatthias Ringwald 
5980d5b1a89eSMatthias Ringwald         // set le connecting state
5981d5b1a89eSMatthias Ringwald         if (hci_is_le_connection_type(addr_type)){
5982d5b1a89eSMatthias Ringwald             hci_stack->le_connecting_request = LE_CONNECTING_DIRECT;
5983d5b1a89eSMatthias Ringwald         }
5984d5b1a89eSMatthias Ringwald 
59854f3229d8S[email protected]         conn->state = SEND_CREATE_CONNECTION;
5986d8e8f12aSMatthias Ringwald         log_info("gap_connect: send create connection next");
5987564fca32S[email protected]         hci_run();
5988b0136355SMatthias Ringwald         return ERROR_CODE_SUCCESS;
59894f3229d8S[email protected]     }
59900bf6344aS[email protected] 
59910bf6344aS[email protected]     if (!hci_is_le_connection(conn) ||
5992a1df452eSMatthias Ringwald         (conn->state == SEND_CREATE_CONNECTION) ||
59930e588213SMatthias Ringwald         (conn->state == SENT_CREATE_CONNECTION)) {
59942e77e513S[email protected]         hci_emit_le_connection_complete(conn->address_type, conn->address, 0, ERROR_CODE_COMMAND_DISALLOWED);
5995d8e8f12aSMatthias Ringwald         log_error("gap_connect: classic connection or connect is already being created");
5996616edd56SMatthias Ringwald         return GATT_CLIENT_IN_WRONG_STATE;
59970bf6344aS[email protected]     }
59980bf6344aS[email protected] 
5999b0136355SMatthias Ringwald     // check if connection was just disconnected
6000b0136355SMatthias Ringwald     if (conn->state == RECEIVED_DISCONNECTION_COMPLETE){
6001b0136355SMatthias Ringwald         log_info("gap_connect: send create connection (again)");
6002b0136355SMatthias Ringwald         conn->state = SEND_CREATE_CONNECTION;
6003b0136355SMatthias Ringwald         hci_run();
6004b0136355SMatthias Ringwald         return ERROR_CODE_SUCCESS;
6005b0136355SMatthias Ringwald     }
6006b0136355SMatthias Ringwald 
6007d8e8f12aSMatthias Ringwald     log_info("gap_connect: context exists with state %u", conn->state);
6008d5b1a89eSMatthias Ringwald     hci_emit_le_connection_complete(conn->address_type, conn->address, conn->con_handle, ERROR_CODE_SUCCESS);
60094f3229d8S[email protected]     hci_run();
6010b0136355SMatthias Ringwald     return ERROR_CODE_SUCCESS;
60114f3229d8S[email protected] }
60124f3229d8S[email protected] 
60137851196eSmatthias.ringwald // @assumption: only a single outgoing LE Connection exists
6014d8e8f12aSMatthias Ringwald static hci_connection_t * gap_get_outgoing_connection(void){
6015665d90f2SMatthias Ringwald     btstack_linked_item_t *it;
6016a0da043fSMatthias Ringwald     for (it = (btstack_linked_item_t *) hci_stack->connections; it != NULL; it = it->next){
60170bf6344aS[email protected]         hci_connection_t * conn = (hci_connection_t *) it;
60180bf6344aS[email protected]         if (!hci_is_le_connection(conn)) continue;
60190bf6344aS[email protected]         switch (conn->state){
6020a6725849S[email protected]             case SEND_CREATE_CONNECTION:
60217851196eSmatthias.ringwald             case SENT_CREATE_CONNECTION:
60229c77c9dbSMatthias Ringwald             case SENT_CANCEL_CONNECTION:
60237851196eSmatthias.ringwald                 return conn;
60247851196eSmatthias.ringwald             default:
60257851196eSmatthias.ringwald                 break;
60267851196eSmatthias.ringwald         };
60277851196eSmatthias.ringwald     }
60287851196eSmatthias.ringwald     return NULL;
60297851196eSmatthias.ringwald }
60307851196eSmatthias.ringwald 
6031d8e8f12aSMatthias Ringwald uint8_t gap_connect_cancel(void){
6032d8e8f12aSMatthias Ringwald     hci_connection_t * conn = gap_get_outgoing_connection();
6033616edd56SMatthias Ringwald     if (!conn) return 0;
60347851196eSmatthias.ringwald     switch (conn->state){
60357851196eSmatthias.ringwald         case SEND_CREATE_CONNECTION:
60367851196eSmatthias.ringwald             // skip sending create connection and emit event instead
603710f8f469SMatthias Ringwald             hci_stack->le_connecting_request = LE_CONNECTING_IDLE;
60382e77e513S[email protected]             hci_emit_le_connection_complete(conn->address_type, conn->address, 0, ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER);
6039665d90f2SMatthias Ringwald             btstack_linked_list_remove(&hci_stack->connections, (btstack_linked_item_t *) conn);
60407851196eSmatthias.ringwald             btstack_memory_hci_connection_free( conn );
60410bf6344aS[email protected]             break;
6042a6725849S[email protected]         case SENT_CREATE_CONNECTION:
60437851196eSmatthias.ringwald             // request to send cancel connection
60440bf6344aS[email protected]             conn->state = SEND_CANCEL_CONNECTION;
60450bf6344aS[email protected]             hci_run();
60460bf6344aS[email protected]             break;
60470bf6344aS[email protected]         default:
60480bf6344aS[email protected]             break;
60490bf6344aS[email protected]     }
6050616edd56SMatthias Ringwald     return 0;
6051e31f89a7S[email protected] }
6052d70217a2SMatthias Ringwald #endif
60534f3229d8S[email protected] 
605413e645d2SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
6055c37a3166S[email protected] /**
60566012052bSMatthias Ringwald  * @brief Set connection parameters for outgoing connections
6057cbe54ab2SJakob Krantz  * @param conn_scan_interval (unit: 0.625 msec), default: 60 ms
6058cbe54ab2SJakob Krantz  * @param conn_scan_window (unit: 0.625 msec), default: 30 ms
60596012052bSMatthias Ringwald  * @param conn_interval_min (unit: 1.25ms), default: 10 ms
60606012052bSMatthias Ringwald  * @param conn_interval_max (unit: 1.25ms), default: 30 ms
60616012052bSMatthias Ringwald  * @param conn_latency, default: 4
60626012052bSMatthias Ringwald  * @param supervision_timeout (unit: 10ms), default: 720 ms
60636012052bSMatthias Ringwald  * @param min_ce_length (unit: 0.625ms), default: 10 ms
60646012052bSMatthias Ringwald  * @param max_ce_length (unit: 0.625ms), default: 30 ms
60656012052bSMatthias Ringwald  */
60666012052bSMatthias Ringwald 
6067cbe54ab2SJakob Krantz void gap_set_connection_parameters(uint16_t conn_scan_interval, uint16_t conn_scan_window,
6068cbe54ab2SJakob Krantz     uint16_t conn_interval_min, uint16_t conn_interval_max, uint16_t conn_latency,
6069cbe54ab2SJakob Krantz     uint16_t supervision_timeout, uint16_t min_ce_length, uint16_t max_ce_length){
6070cbe54ab2SJakob Krantz     hci_stack->le_connection_scan_interval = conn_scan_interval;
6071cbe54ab2SJakob Krantz     hci_stack->le_connection_scan_window = conn_scan_window;
60726012052bSMatthias Ringwald     hci_stack->le_connection_interval_min = conn_interval_min;
60736012052bSMatthias Ringwald     hci_stack->le_connection_interval_max = conn_interval_max;
60746012052bSMatthias Ringwald     hci_stack->le_connection_latency = conn_latency;
60756012052bSMatthias Ringwald     hci_stack->le_supervision_timeout = supervision_timeout;
60766012052bSMatthias Ringwald     hci_stack->le_minimum_ce_length = min_ce_length;
60776012052bSMatthias Ringwald     hci_stack->le_maximum_ce_length = max_ce_length;
60786012052bSMatthias Ringwald }
607913e645d2SMatthias Ringwald #endif
60806012052bSMatthias Ringwald 
60816012052bSMatthias Ringwald /**
6082c37a3166S[email protected]  * @brief Updates the connection parameters for a given LE connection
6083c37a3166S[email protected]  * @param handle
6084c37a3166S[email protected]  * @param conn_interval_min (unit: 1.25ms)
6085c37a3166S[email protected]  * @param conn_interval_max (unit: 1.25ms)
6086c37a3166S[email protected]  * @param conn_latency
6087c37a3166S[email protected]  * @param supervision_timeout (unit: 10ms)
60886b65794dSMilanka Ringwald  * @return 0 if ok
6089c37a3166S[email protected]  */
6090c37a3166S[email protected] int gap_update_connection_parameters(hci_con_handle_t con_handle, uint16_t conn_interval_min,
6091c37a3166S[email protected]     uint16_t conn_interval_max, uint16_t conn_latency, uint16_t supervision_timeout){
6092c37a3166S[email protected]     hci_connection_t * connection = hci_connection_for_handle(con_handle);
6093c37a3166S[email protected]     if (!connection) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
6094c37a3166S[email protected]     connection->le_conn_interval_min = conn_interval_min;
6095c37a3166S[email protected]     connection->le_conn_interval_max = conn_interval_max;
6096c37a3166S[email protected]     connection->le_conn_latency = conn_latency;
6097c37a3166S[email protected]     connection->le_supervision_timeout = supervision_timeout;
609884cf6d83SMatthias Ringwald     connection->le_con_parameter_update_state = CON_PARAMETER_UPDATE_CHANGE_HCI_CON_PARAMETERS;
6099cfc59f1bSMatthias Ringwald     hci_run();
6100c37a3166S[email protected]     return 0;
6101c37a3166S[email protected] }
6102c37a3166S[email protected] 
610345c102fdSMatthias Ringwald /**
6104b68d7bc3SMatthias Ringwald  * @brief Request an update of the connection parameter for a given LE connection
6105b68d7bc3SMatthias Ringwald  * @param handle
6106b68d7bc3SMatthias Ringwald  * @param conn_interval_min (unit: 1.25ms)
6107b68d7bc3SMatthias Ringwald  * @param conn_interval_max (unit: 1.25ms)
6108b68d7bc3SMatthias Ringwald  * @param conn_latency
6109b68d7bc3SMatthias Ringwald  * @param supervision_timeout (unit: 10ms)
61106b65794dSMilanka Ringwald  * @return 0 if ok
6111b68d7bc3SMatthias Ringwald  */
6112b68d7bc3SMatthias Ringwald int gap_request_connection_parameter_update(hci_con_handle_t con_handle, uint16_t conn_interval_min,
6113b68d7bc3SMatthias Ringwald     uint16_t conn_interval_max, uint16_t conn_latency, uint16_t supervision_timeout){
6114b68d7bc3SMatthias Ringwald     hci_connection_t * connection = hci_connection_for_handle(con_handle);
6115b68d7bc3SMatthias Ringwald     if (!connection) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
6116b68d7bc3SMatthias Ringwald     connection->le_conn_interval_min = conn_interval_min;
6117b68d7bc3SMatthias Ringwald     connection->le_conn_interval_max = conn_interval_max;
6118b68d7bc3SMatthias Ringwald     connection->le_conn_latency = conn_latency;
6119b68d7bc3SMatthias Ringwald     connection->le_supervision_timeout = supervision_timeout;
6120b68d7bc3SMatthias Ringwald     connection->le_con_parameter_update_state = CON_PARAMETER_UPDATE_SEND_REQUEST;
612109c9c963SMatthias Ringwald     uint8_t l2cap_trigger_run_event[2] = { L2CAP_EVENT_TRIGGER_RUN, 0};
612209c9c963SMatthias Ringwald     hci_emit_event(l2cap_trigger_run_event, sizeof(l2cap_trigger_run_event), 0);
6123b68d7bc3SMatthias Ringwald     return 0;
6124b68d7bc3SMatthias Ringwald }
6125b68d7bc3SMatthias Ringwald 
6126d70217a2SMatthias Ringwald #ifdef ENABLE_LE_PERIPHERAL
6127d70217a2SMatthias Ringwald 
6128b68d7bc3SMatthias Ringwald /**
612945c102fdSMatthias Ringwald  * @brief Set Advertisement Data
613045c102fdSMatthias Ringwald  * @param advertising_data_length
613145c102fdSMatthias Ringwald  * @param advertising_data (max 31 octets)
613245c102fdSMatthias Ringwald  * @note data is not copied, pointer has to stay valid
613345c102fdSMatthias Ringwald  */
613445c102fdSMatthias Ringwald void gap_advertisements_set_data(uint8_t advertising_data_length, uint8_t * advertising_data){
613545c102fdSMatthias Ringwald     hci_stack->le_advertisements_data_len = advertising_data_length;
613645c102fdSMatthias Ringwald     hci_stack->le_advertisements_data = advertising_data;
6137501f56b3SMatthias Ringwald     hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_SET_ADV_DATA;
6138bbc366e6SMatthias Ringwald     hci_run();
613945c102fdSMatthias Ringwald }
6140501f56b3SMatthias Ringwald 
6141501f56b3SMatthias Ringwald /**
6142501f56b3SMatthias Ringwald  * @brief Set Scan Response Data
6143501f56b3SMatthias Ringwald  * @param advertising_data_length
6144501f56b3SMatthias Ringwald  * @param advertising_data (max 31 octets)
6145501f56b3SMatthias Ringwald  * @note data is not copied, pointer has to stay valid
6146501f56b3SMatthias Ringwald  */
6147501f56b3SMatthias Ringwald void gap_scan_response_set_data(uint8_t scan_response_data_length, uint8_t * scan_response_data){
6148501f56b3SMatthias Ringwald     hci_stack->le_scan_response_data_len = scan_response_data_length;
6149501f56b3SMatthias Ringwald     hci_stack->le_scan_response_data = scan_response_data;
6150501f56b3SMatthias Ringwald     hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_SET_SCAN_DATA;
6151bbc366e6SMatthias Ringwald     hci_run();
615245c102fdSMatthias Ringwald }
615345c102fdSMatthias Ringwald 
615445c102fdSMatthias Ringwald /**
615545c102fdSMatthias Ringwald  * @brief Set Advertisement Parameters
615645c102fdSMatthias Ringwald  * @param adv_int_min
615745c102fdSMatthias Ringwald  * @param adv_int_max
615845c102fdSMatthias Ringwald  * @param adv_type
615945c102fdSMatthias Ringwald  * @param direct_address_type
616045c102fdSMatthias Ringwald  * @param direct_address
616145c102fdSMatthias Ringwald  * @param channel_map
616245c102fdSMatthias Ringwald  * @param filter_policy
616345c102fdSMatthias Ringwald  *
616445c102fdSMatthias Ringwald  * @note internal use. use gap_advertisements_set_params from gap_le.h instead.
616545c102fdSMatthias Ringwald  */
616645c102fdSMatthias Ringwald  void hci_le_advertisements_set_params(uint16_t adv_int_min, uint16_t adv_int_max, uint8_t adv_type,
6167b95a5a35SMatthias Ringwald     uint8_t direct_address_typ, bd_addr_t direct_address,
616845c102fdSMatthias Ringwald     uint8_t channel_map, uint8_t filter_policy) {
616945c102fdSMatthias Ringwald 
617045c102fdSMatthias Ringwald     hci_stack->le_advertisements_interval_min = adv_int_min;
617145c102fdSMatthias Ringwald     hci_stack->le_advertisements_interval_max = adv_int_max;
617245c102fdSMatthias Ringwald     hci_stack->le_advertisements_type = adv_type;
617345c102fdSMatthias Ringwald     hci_stack->le_advertisements_direct_address_type = direct_address_typ;
617445c102fdSMatthias Ringwald     hci_stack->le_advertisements_channel_map = channel_map;
617545c102fdSMatthias Ringwald     hci_stack->le_advertisements_filter_policy = filter_policy;
61766535961aSMatthias Ringwald     (void)memcpy(hci_stack->le_advertisements_direct_address, direct_address,
61776535961aSMatthias Ringwald                  6);
617845c102fdSMatthias Ringwald 
6179a61834b6SMatthias Ringwald     hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_SET_PARAMS | LE_ADVERTISEMENT_TASKS_PARAMS_SET;
6180bbc366e6SMatthias Ringwald     hci_run();
618145c102fdSMatthias Ringwald  }
618245c102fdSMatthias Ringwald 
618345c102fdSMatthias Ringwald /**
618445c102fdSMatthias Ringwald  * @brief Enable/Disable Advertisements
618545c102fdSMatthias Ringwald  * @param enabled
618645c102fdSMatthias Ringwald  */
618745c102fdSMatthias Ringwald void gap_advertisements_enable(int enabled){
61885226d7f2SMatthias Ringwald     hci_stack->le_advertisements_enabled = enabled != 0;
6189bbc366e6SMatthias Ringwald     hci_update_advertisements_enabled_for_current_roles();
6190cfc59f1bSMatthias Ringwald     hci_run();
619145c102fdSMatthias Ringwald }
619245c102fdSMatthias Ringwald 
619335454696SMatthias Ringwald #endif
619406e5cf96SMatthias Ringwald 
619506e5cf96SMatthias Ringwald void hci_le_set_own_address_type(uint8_t own_address_type){
619606e5cf96SMatthias Ringwald     log_info("hci_le_set_own_address_type: old %u, new %u", hci_stack->le_own_addr_type, own_address_type);
619706e5cf96SMatthias Ringwald     if (own_address_type == hci_stack->le_own_addr_type) return;
619806e5cf96SMatthias Ringwald     hci_stack->le_own_addr_type = own_address_type;
619906e5cf96SMatthias Ringwald 
620064068776SMatthias Ringwald #ifdef ENABLE_LE_PERIPHERAL
620106e5cf96SMatthias Ringwald     // update advertisement parameters, too
620206e5cf96SMatthias Ringwald     hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_SET_PARAMS;
6203bbc366e6SMatthias Ringwald     hci_run();
620464068776SMatthias Ringwald #endif
620564068776SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
620606e5cf96SMatthias Ringwald     // note: we don't update scan parameters or modify ongoing connection attempts
620764068776SMatthias Ringwald #endif
620806e5cf96SMatthias Ringwald }
620906e5cf96SMatthias Ringwald 
62109136bde8SMatthias Ringwald void hci_le_random_address_set(const bd_addr_t random_address){
62119136bde8SMatthias Ringwald     memcpy(hci_stack->le_random_address, random_address, 6);
62129136bde8SMatthias Ringwald     hci_stack->le_random_address_set = true;
62139136bde8SMatthias Ringwald     hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_SET_ADDRESS;
62149136bde8SMatthias Ringwald     hci_run();
62159136bde8SMatthias Ringwald }
62169136bde8SMatthias Ringwald 
6217d70217a2SMatthias Ringwald #endif
621845c102fdSMatthias Ringwald 
6219616edd56SMatthias Ringwald uint8_t gap_disconnect(hci_con_handle_t handle){
62205917a5c5S[email protected]     hci_connection_t * conn = hci_connection_for_handle(handle);
62215917a5c5S[email protected]     if (!conn){
62227851196eSmatthias.ringwald         hci_emit_disconnection_complete(handle, 0);
6223616edd56SMatthias Ringwald         return 0;
62245917a5c5S[email protected]     }
62257fd7aa6fSMatthias Ringwald     // ignore if already disconnected
62267fd7aa6fSMatthias Ringwald     if (conn->state == RECEIVED_DISCONNECTION_COMPLETE){
62277fd7aa6fSMatthias Ringwald         return 0;
62287fd7aa6fSMatthias Ringwald     }
62295917a5c5S[email protected]     conn->state = SEND_DISCONNECT;
62305917a5c5S[email protected]     hci_run();
6231616edd56SMatthias Ringwald     return 0;
62324f3229d8S[email protected] }
623304a6ef8cSmatthias.ringwald 
6234228e430cSMatthias Ringwald int gap_read_rssi(hci_con_handle_t con_handle){
6235228e430cSMatthias Ringwald     hci_connection_t * hci_connection = hci_connection_for_handle(con_handle);
6236228e430cSMatthias Ringwald     if (hci_connection == NULL) return 0;
62378daf94bcSMatthias Ringwald     connectionSetAuthenticationFlags(hci_connection, AUTH_FLAG_READ_RSSI);
6238228e430cSMatthias Ringwald     hci_run();
6239228e430cSMatthias Ringwald     return 1;
6240228e430cSMatthias Ringwald }
6241228e430cSMatthias Ringwald 
6242a1bf5ae7SMatthias Ringwald /**
6243a1bf5ae7SMatthias Ringwald  * @brief Get connection type
6244a1bf5ae7SMatthias Ringwald  * @param con_handle
6245a1bf5ae7SMatthias Ringwald  * @result connection_type
6246a1bf5ae7SMatthias Ringwald  */
6247a1bf5ae7SMatthias Ringwald gap_connection_type_t gap_get_connection_type(hci_con_handle_t connection_handle){
6248a1bf5ae7SMatthias Ringwald     hci_connection_t * conn = hci_connection_for_handle(connection_handle);
6249a1bf5ae7SMatthias Ringwald     if (!conn) return GAP_CONNECTION_INVALID;
6250a1bf5ae7SMatthias Ringwald     switch (conn->address_type){
6251a1bf5ae7SMatthias Ringwald         case BD_ADDR_TYPE_LE_PUBLIC:
6252a1bf5ae7SMatthias Ringwald         case BD_ADDR_TYPE_LE_RANDOM:
6253a1bf5ae7SMatthias Ringwald             return GAP_CONNECTION_LE;
6254a1bf5ae7SMatthias Ringwald         case BD_ADDR_TYPE_SCO:
6255a1bf5ae7SMatthias Ringwald             return GAP_CONNECTION_SCO;
6256f16129ceSMatthias Ringwald         case BD_ADDR_TYPE_ACL:
6257a1bf5ae7SMatthias Ringwald             return GAP_CONNECTION_ACL;
6258a1bf5ae7SMatthias Ringwald         default:
6259a1bf5ae7SMatthias Ringwald             return GAP_CONNECTION_INVALID;
6260a1bf5ae7SMatthias Ringwald     }
6261a1bf5ae7SMatthias Ringwald }
6262a1bf5ae7SMatthias Ringwald 
62632dceb1d6SMatthias Ringwald hci_role_t gap_get_role(hci_con_handle_t connection_handle){
62642dceb1d6SMatthias Ringwald     hci_connection_t * conn = hci_connection_for_handle(connection_handle);
62652dceb1d6SMatthias Ringwald     if (!conn) return HCI_ROLE_INVALID;
62662dceb1d6SMatthias Ringwald     return (hci_role_t) conn->role;
62672dceb1d6SMatthias Ringwald }
62682dceb1d6SMatthias Ringwald 
62692dceb1d6SMatthias Ringwald 
627044f858f3SMatthias Ringwald #ifdef ENABLE_CLASSIC
6271667ba9d1SMatthias Ringwald uint8_t gap_request_role(const bd_addr_t addr, hci_role_t role){
627288a03c8dSMatthias Ringwald     hci_connection_t * conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
627388a03c8dSMatthias Ringwald     if (!conn) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
627488a03c8dSMatthias Ringwald     conn->request_role = role;
627588a03c8dSMatthias Ringwald     hci_run();
6276d04a455eSMatthias Ringwald     return ERROR_CODE_SUCCESS;
627788a03c8dSMatthias Ringwald }
627844f858f3SMatthias Ringwald #endif
627988a03c8dSMatthias Ringwald 
6280a9a4c409SMatthias Ringwald #ifdef ENABLE_BLE
62814f551432SMatthias Ringwald 
6282b45b7749SMilanka Ringwald uint8_t gap_le_set_phy(hci_con_handle_t con_handle, uint8_t all_phys, uint8_t tx_phys, uint8_t rx_phys, uint8_t phy_options){
6283b45b7749SMilanka Ringwald     hci_connection_t * conn = hci_connection_for_handle(con_handle);
6284b90f6e0aSMatthias Ringwald     if (!conn) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
6285b90f6e0aSMatthias Ringwald 
6286b90f6e0aSMatthias Ringwald     conn->le_phy_update_all_phys    = all_phys;
6287b90f6e0aSMatthias Ringwald     conn->le_phy_update_tx_phys     = tx_phys;
6288b90f6e0aSMatthias Ringwald     conn->le_phy_update_rx_phys     = rx_phys;
6289b90f6e0aSMatthias Ringwald     conn->le_phy_update_phy_options = phy_options;
6290b90f6e0aSMatthias Ringwald 
6291b90f6e0aSMatthias Ringwald     hci_run();
6292b90f6e0aSMatthias Ringwald 
6293b90f6e0aSMatthias Ringwald     return 0;
6294b90f6e0aSMatthias Ringwald }
6295b90f6e0aSMatthias Ringwald 
6296667ba9d1SMatthias Ringwald static uint8_t hci_whitelist_add(bd_addr_type_t address_type, const bd_addr_t address){
62977a92a9dbSMatthias Ringwald     // check if already in list
62987a92a9dbSMatthias Ringwald     btstack_linked_list_iterator_t it;
62997a92a9dbSMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->le_whitelist);
63007a92a9dbSMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)) {
63017a92a9dbSMatthias Ringwald         whitelist_entry_t *entry = (whitelist_entry_t *) btstack_linked_list_iterator_next(&it);
63027a92a9dbSMatthias Ringwald         if (entry->address_type != address_type) {
63037a92a9dbSMatthias Ringwald             continue;
63047a92a9dbSMatthias Ringwald         }
63057a92a9dbSMatthias Ringwald         if (memcmp(entry->address, address, 6) != 0) {
63067a92a9dbSMatthias Ringwald             continue;
63077a92a9dbSMatthias Ringwald         }
6308287379ccSMatthias Ringwald 		// disallow if already scheduled to add
6309287379ccSMatthias Ringwald 		if ((entry->state & LE_WHITELIST_ADD_TO_CONTROLLER) != 0){
63107a92a9dbSMatthias Ringwald 			return ERROR_CODE_COMMAND_DISALLOWED;
63117a92a9dbSMatthias Ringwald 		}
6312287379ccSMatthias Ringwald 		// still on controller, but scheduled to remove -> re-add
6313287379ccSMatthias Ringwald 		entry->state |= LE_WHITELIST_ADD_TO_CONTROLLER;
6314287379ccSMatthias Ringwald 		return ERROR_CODE_SUCCESS;
6315287379ccSMatthias Ringwald     }
63167a92a9dbSMatthias Ringwald     // alloc and add to list
6317e83201bcSMatthias Ringwald     whitelist_entry_t * entry = btstack_memory_whitelist_entry_get();
6318e83201bcSMatthias Ringwald     if (!entry) return BTSTACK_MEMORY_ALLOC_FAILED;
6319e83201bcSMatthias Ringwald     entry->address_type = address_type;
63206535961aSMatthias Ringwald     (void)memcpy(entry->address, address, 6);
6321e83201bcSMatthias Ringwald     entry->state = LE_WHITELIST_ADD_TO_CONTROLLER;
6322665d90f2SMatthias Ringwald     btstack_linked_list_add(&hci_stack->le_whitelist, (btstack_linked_item_t*) entry);
6323226db5efSMatthias Ringwald     return ERROR_CODE_SUCCESS;
6324ac9c45e0SMatthias Ringwald }
6325ac9c45e0SMatthias Ringwald 
6326667ba9d1SMatthias Ringwald static uint8_t hci_whitelist_remove(bd_addr_type_t address_type, const bd_addr_t address){
6327665d90f2SMatthias Ringwald     btstack_linked_list_iterator_t it;
6328665d90f2SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->le_whitelist);
6329665d90f2SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
6330665d90f2SMatthias Ringwald         whitelist_entry_t * entry = (whitelist_entry_t*) btstack_linked_list_iterator_next(&it);
63317a92a9dbSMatthias Ringwald         if (entry->address_type != address_type) {
63327a92a9dbSMatthias Ringwald             continue;
63337a92a9dbSMatthias Ringwald         }
63347a92a9dbSMatthias Ringwald         if (memcmp(entry->address, address, 6) != 0) {
63357a92a9dbSMatthias Ringwald             continue;
63367a92a9dbSMatthias Ringwald         }
6337e83201bcSMatthias Ringwald         if (entry->state & LE_WHITELIST_ON_CONTROLLER){
6338e83201bcSMatthias Ringwald             // remove from controller if already present
6339e83201bcSMatthias Ringwald             entry->state |= LE_WHITELIST_REMOVE_FROM_CONTROLLER;
6340a3b69fdeSMatthias Ringwald         }  else {
6341226db5efSMatthias Ringwald             // directly remove entry from whitelist
6342665d90f2SMatthias Ringwald             btstack_linked_list_iterator_remove(&it);
6343e83201bcSMatthias Ringwald             btstack_memory_whitelist_entry_free(entry);
6344e83201bcSMatthias Ringwald         }
6345a3b69fdeSMatthias Ringwald         return ERROR_CODE_SUCCESS;
6346a3b69fdeSMatthias Ringwald     }
6347a3b69fdeSMatthias Ringwald     return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
634842ff5ba1SMatthias Ringwald }
634942ff5ba1SMatthias Ringwald 
6350226db5efSMatthias Ringwald static void hci_whitelist_clear(void){
6351665d90f2SMatthias Ringwald     btstack_linked_list_iterator_t it;
6352665d90f2SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->le_whitelist);
6353665d90f2SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
6354665d90f2SMatthias Ringwald         whitelist_entry_t * entry = (whitelist_entry_t*) btstack_linked_list_iterator_next(&it);
6355e83201bcSMatthias Ringwald         if (entry->state & LE_WHITELIST_ON_CONTROLLER){
6356e83201bcSMatthias Ringwald             // remove from controller if already present
6357e83201bcSMatthias Ringwald             entry->state |= LE_WHITELIST_REMOVE_FROM_CONTROLLER;
6358e83201bcSMatthias Ringwald             continue;
6359e83201bcSMatthias Ringwald         }
636091915b0bSMatthias Ringwald         // directly remove entry from whitelist
6361665d90f2SMatthias Ringwald         btstack_linked_list_iterator_remove(&it);
6362e83201bcSMatthias Ringwald         btstack_memory_whitelist_entry_free(entry);
6363e83201bcSMatthias Ringwald     }
6364226db5efSMatthias Ringwald }
6365226db5efSMatthias Ringwald 
636683dc1a98SMatthias Ringwald // free all entries unconditionally
636783dc1a98SMatthias Ringwald static void hci_whitelist_free(void){
636883dc1a98SMatthias Ringwald     btstack_linked_list_iterator_t lit;
636983dc1a98SMatthias Ringwald     btstack_linked_list_iterator_init(&lit, &hci_stack->le_whitelist);
637083dc1a98SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&lit)){
637183dc1a98SMatthias Ringwald         whitelist_entry_t * entry = (whitelist_entry_t*) btstack_linked_list_iterator_next(&lit);
637283dc1a98SMatthias Ringwald         btstack_linked_list_remove(&hci_stack->le_whitelist, (btstack_linked_item_t *) entry);
637383dc1a98SMatthias Ringwald         btstack_memory_whitelist_entry_free(entry);
637483dc1a98SMatthias Ringwald     }
637583dc1a98SMatthias Ringwald }
637683dc1a98SMatthias Ringwald 
6377a3b69fdeSMatthias Ringwald /**
6378a3b69fdeSMatthias Ringwald  * @brief Clear Whitelist
63796b65794dSMilanka Ringwald  * @return 0 if ok
6380a3b69fdeSMatthias Ringwald  */
6381a3b69fdeSMatthias Ringwald uint8_t gap_whitelist_clear(void){
6382a3b69fdeSMatthias Ringwald     hci_whitelist_clear();
6383a3b69fdeSMatthias Ringwald     hci_run();
6384a3b69fdeSMatthias Ringwald     return ERROR_CODE_SUCCESS;
6385a3b69fdeSMatthias Ringwald }
6386a3b69fdeSMatthias Ringwald 
6387a3b69fdeSMatthias Ringwald /**
6388a3b69fdeSMatthias Ringwald  * @brief Add Device to Whitelist
6389a3b69fdeSMatthias Ringwald  * @param address_typ
6390a3b69fdeSMatthias Ringwald  * @param address
63916b65794dSMilanka Ringwald  * @return 0 if ok
6392a3b69fdeSMatthias Ringwald  */
6393667ba9d1SMatthias Ringwald uint8_t gap_whitelist_add(bd_addr_type_t address_type, const bd_addr_t address){
6394a3b69fdeSMatthias Ringwald     uint8_t status = hci_whitelist_add(address_type, address);
6395a3b69fdeSMatthias Ringwald     if (status){
6396a3b69fdeSMatthias Ringwald         return status;
6397a3b69fdeSMatthias Ringwald     }
6398a3b69fdeSMatthias Ringwald     hci_run();
6399a3b69fdeSMatthias Ringwald     return ERROR_CODE_SUCCESS;
6400a3b69fdeSMatthias Ringwald }
6401a3b69fdeSMatthias Ringwald 
6402a3b69fdeSMatthias Ringwald /**
6403a3b69fdeSMatthias Ringwald  * @brief Remove Device from Whitelist
6404a3b69fdeSMatthias Ringwald  * @param address_typ
6405a3b69fdeSMatthias Ringwald  * @param address
64066b65794dSMilanka Ringwald  * @return 0 if ok
6407a3b69fdeSMatthias Ringwald  */
6408667ba9d1SMatthias Ringwald uint8_t gap_whitelist_remove(bd_addr_type_t address_type, const bd_addr_t address){
6409a3b69fdeSMatthias Ringwald     uint8_t status = hci_whitelist_remove(address_type, address);
6410a3b69fdeSMatthias Ringwald     if (status){
6411a3b69fdeSMatthias Ringwald         return status;
6412a3b69fdeSMatthias Ringwald     }
6413a3b69fdeSMatthias Ringwald     hci_run();
6414a3b69fdeSMatthias Ringwald     return ERROR_CODE_SUCCESS;
6415a3b69fdeSMatthias Ringwald }
6416a3b69fdeSMatthias Ringwald 
6417226db5efSMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
6418226db5efSMatthias Ringwald /**
641995e257d9SMatthias Ringwald  * @brief Connect with Whitelist
642095e257d9SMatthias Ringwald  * @note Explicit whitelist management and this connect with whitelist replace deprecated gap_auto_connection_* functions
64216b65794dSMilanka Ringwald  * @return - if ok
642295e257d9SMatthias Ringwald  */
642395e257d9SMatthias Ringwald uint8_t gap_connect_with_whitelist(void){
642495e257d9SMatthias Ringwald     if (hci_stack->le_connecting_request != LE_CONNECTING_IDLE){
642595e257d9SMatthias Ringwald         return ERROR_CODE_COMMAND_DISALLOWED;
642695e257d9SMatthias Ringwald     }
642795e257d9SMatthias Ringwald     hci_stack->le_connecting_request = LE_CONNECTING_WHITELIST;
642895e257d9SMatthias Ringwald     hci_run();
642995e257d9SMatthias Ringwald     return ERROR_CODE_SUCCESS;
643095e257d9SMatthias Ringwald }
643195e257d9SMatthias Ringwald 
643295e257d9SMatthias Ringwald /**
6433226db5efSMatthias Ringwald  * @brief Auto Connection Establishment - Start Connecting to device
6434226db5efSMatthias Ringwald  * @param address_typ
6435226db5efSMatthias Ringwald  * @param address
64366b65794dSMilanka Ringwald  * @return 0 if ok
6437226db5efSMatthias Ringwald  */
6438667ba9d1SMatthias Ringwald uint8_t gap_auto_connection_start(bd_addr_type_t address_type, const bd_addr_t address){
643995e257d9SMatthias Ringwald     if (hci_stack->le_connecting_request == LE_CONNECTING_DIRECT){
6440226db5efSMatthias Ringwald         return ERROR_CODE_COMMAND_DISALLOWED;
6441226db5efSMatthias Ringwald     }
6442226db5efSMatthias Ringwald 
6443226db5efSMatthias Ringwald     uint8_t status = hci_whitelist_add(address_type, address);
644463f2efc9SMatthias Ringwald     if (status == BTSTACK_MEMORY_ALLOC_FAILED) {
6445226db5efSMatthias Ringwald         return status;
6446226db5efSMatthias Ringwald     }
6447226db5efSMatthias Ringwald 
6448226db5efSMatthias Ringwald     hci_stack->le_connecting_request = LE_CONNECTING_WHITELIST;
6449226db5efSMatthias Ringwald 
6450226db5efSMatthias Ringwald     hci_run();
645195e257d9SMatthias Ringwald     return ERROR_CODE_SUCCESS;
6452226db5efSMatthias Ringwald }
6453226db5efSMatthias Ringwald 
6454226db5efSMatthias Ringwald /**
6455226db5efSMatthias Ringwald  * @brief Auto Connection Establishment - Stop Connecting to device
6456226db5efSMatthias Ringwald  * @param address_typ
6457226db5efSMatthias Ringwald  * @param address
64586b65794dSMilanka Ringwald  * @return 0 if ok
6459226db5efSMatthias Ringwald  */
6460667ba9d1SMatthias Ringwald uint8_t gap_auto_connection_stop(bd_addr_type_t address_type, const bd_addr_t address){
646195e257d9SMatthias Ringwald     if (hci_stack->le_connecting_request == LE_CONNECTING_DIRECT){
646295e257d9SMatthias Ringwald         return ERROR_CODE_COMMAND_DISALLOWED;
646395e257d9SMatthias Ringwald     }
646495e257d9SMatthias Ringwald 
6465226db5efSMatthias Ringwald     hci_whitelist_remove(address_type, address);
646695e257d9SMatthias Ringwald     if (btstack_linked_list_empty(&hci_stack->le_whitelist)){
646795e257d9SMatthias Ringwald         hci_stack->le_connecting_request = LE_CONNECTING_IDLE;
646895e257d9SMatthias Ringwald     }
6469226db5efSMatthias Ringwald     hci_run();
6470226db5efSMatthias Ringwald     return 0;
6471226db5efSMatthias Ringwald }
6472226db5efSMatthias Ringwald 
6473226db5efSMatthias Ringwald /**
6474226db5efSMatthias Ringwald  * @brief Auto Connection Establishment - Stop everything
6475226db5efSMatthias Ringwald  * @note  Convenience function to stop all active auto connection attempts
6476226db5efSMatthias Ringwald  */
647795e257d9SMatthias Ringwald uint8_t gap_auto_connection_stop_all(void){
647895e257d9SMatthias Ringwald     if (hci_stack->le_connecting_request == LE_CONNECTING_DIRECT) {
647995e257d9SMatthias Ringwald         return ERROR_CODE_COMMAND_DISALLOWED;
648095e257d9SMatthias Ringwald     }
6481226db5efSMatthias Ringwald     hci_whitelist_clear();
6482226db5efSMatthias Ringwald     hci_stack->le_connecting_request = LE_CONNECTING_IDLE;
6483e83201bcSMatthias Ringwald     hci_run();
648495e257d9SMatthias Ringwald     return ERROR_CODE_SUCCESS;
6485ac9c45e0SMatthias Ringwald }
6486c9db5c21SMilanka Ringwald 
6487b45b7749SMilanka Ringwald uint16_t gap_le_connection_interval(hci_con_handle_t con_handle){
6488b45b7749SMilanka Ringwald     hci_connection_t * conn = hci_connection_for_handle(con_handle);
6489c9db5c21SMilanka Ringwald     if (!conn) return 0;
6490c9db5c21SMilanka Ringwald     return conn->le_connection_interval;
6491c9db5c21SMilanka Ringwald }
6492d70217a2SMatthias Ringwald #endif
64934f551432SMatthias Ringwald #endif
64944f551432SMatthias Ringwald 
649535454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
6496ac9c45e0SMatthias Ringwald /**
6497ff00ed1cSMatthias Ringwald  * @brief Set Extended Inquiry Response data
6498a8c4e5adSMatthias Ringwald  * @param eir_data size HCI_EXTENDED_INQUIRY_RESPONSE_DATA_LEN (240) bytes, is not copied make sure memory is accessible during stack startup
6499ff00ed1cSMatthias Ringwald  * @note has to be done before stack starts up
6500ff00ed1cSMatthias Ringwald  */
6501ff00ed1cSMatthias Ringwald void gap_set_extended_inquiry_response(const uint8_t * data){
6502ff00ed1cSMatthias Ringwald     hci_stack->eir_data = data;
6503baa4881eSMatthias Ringwald     hci_stack->gap_tasks_classic |= GAP_TASK_SET_EIR_DATA;
650459d59ecfSMatthias Ringwald     hci_run();
6505ff00ed1cSMatthias Ringwald }
6506ff00ed1cSMatthias Ringwald 
6507ff00ed1cSMatthias Ringwald /**
6508f5875de5SMatthias Ringwald  * @brief Start GAP Classic Inquiry
6509f5875de5SMatthias Ringwald  * @param duration in 1.28s units
6510f5875de5SMatthias Ringwald  * @return 0 if ok
6511f5875de5SMatthias Ringwald  * @events: GAP_EVENT_INQUIRY_RESULT, GAP_EVENT_INQUIRY_COMPLETE
6512f5875de5SMatthias Ringwald  */
6513f5875de5SMatthias Ringwald int gap_inquiry_start(uint8_t duration_in_1280ms_units){
651499449554SMatthias Ringwald     if (hci_stack->state != HCI_STATE_WORKING) return ERROR_CODE_COMMAND_DISALLOWED;
6515f5875de5SMatthias Ringwald     if (hci_stack->inquiry_state != GAP_INQUIRY_STATE_IDLE) return ERROR_CODE_COMMAND_DISALLOWED;
6516a1df452eSMatthias Ringwald     if ((duration_in_1280ms_units < GAP_INQUIRY_DURATION_MIN) || (duration_in_1280ms_units > GAP_INQUIRY_DURATION_MAX)){
6517f5875de5SMatthias Ringwald         return ERROR_CODE_INVALID_HCI_COMMAND_PARAMETERS;
6518f5875de5SMatthias Ringwald     }
6519f5875de5SMatthias Ringwald     hci_stack->inquiry_state = duration_in_1280ms_units;
6520f5875de5SMatthias Ringwald     hci_run();
6521f5875de5SMatthias Ringwald     return 0;
6522f5875de5SMatthias Ringwald }
6523f5875de5SMatthias Ringwald 
6524f5875de5SMatthias Ringwald /**
6525f5875de5SMatthias Ringwald  * @brief Stop GAP Classic Inquiry
65266b65794dSMilanka Ringwald  * @return 0 if ok
6527f5875de5SMatthias Ringwald  */
6528f5875de5SMatthias Ringwald int gap_inquiry_stop(void){
6529a1df452eSMatthias Ringwald     if ((hci_stack->inquiry_state >= GAP_INQUIRY_DURATION_MIN) && (hci_stack->inquiry_state <= GAP_INQUIRY_DURATION_MAX)) {
6530f5875de5SMatthias Ringwald         // emit inquiry complete event, before it even started
6531f5875de5SMatthias Ringwald         uint8_t event[] = { GAP_EVENT_INQUIRY_COMPLETE, 1, 0};
6532f5875de5SMatthias Ringwald         hci_emit_event(event, sizeof(event), 1);
6533f5875de5SMatthias Ringwald         return 0;
6534f5875de5SMatthias Ringwald     }
6535f5875de5SMatthias Ringwald     if (hci_stack->inquiry_state != GAP_INQUIRY_STATE_ACTIVE) return ERROR_CODE_COMMAND_DISALLOWED;
6536f5875de5SMatthias Ringwald     hci_stack->inquiry_state = GAP_INQUIRY_STATE_W2_CANCEL;
6537f5875de5SMatthias Ringwald     hci_run();
6538f5875de5SMatthias Ringwald     return 0;
6539f5875de5SMatthias Ringwald }
6540f5875de5SMatthias Ringwald 
6541496bb884SMatthias Ringwald void gap_inquiry_set_lap(uint32_t lap){
6542496bb884SMatthias Ringwald     hci_stack->inquiry_lap = lap;
6543496bb884SMatthias Ringwald }
6544496bb884SMatthias Ringwald 
65451dc973e7SMatthias Ringwald void gap_inquiry_set_scan_activity(uint16_t inquiry_scan_interval, uint16_t inquiry_scan_window){
6546c0c8a829SMatthias Ringwald     hci_stack->inquiry_scan_interval = inquiry_scan_interval;
6547c0c8a829SMatthias Ringwald     hci_stack->inquiry_scan_window   = inquiry_scan_window;
6548baa4881eSMatthias Ringwald     hci_stack->gap_tasks_classic |= GAP_TASK_WRITE_INQUIRY_SCAN_ACTIVITY;
6549c0c8a829SMatthias Ringwald     hci_run();
6550c0c8a829SMatthias Ringwald }
6551c0c8a829SMatthias Ringwald 
6552b7f1ee76SMatthias Ringwald 
6553b7f1ee76SMatthias Ringwald /**
6554b7f1ee76SMatthias Ringwald  * @brief Remote Name Request
6555b7f1ee76SMatthias Ringwald  * @param addr
6556b7f1ee76SMatthias Ringwald  * @param page_scan_repetition_mode
6557b7f1ee76SMatthias Ringwald  * @param clock_offset only used when bit 15 is set
6558b7f1ee76SMatthias Ringwald  * @events: HCI_EVENT_REMOTE_NAME_REQUEST_COMPLETE
6559b7f1ee76SMatthias Ringwald  */
6560667ba9d1SMatthias Ringwald int gap_remote_name_request(const bd_addr_t addr, uint8_t page_scan_repetition_mode, uint16_t clock_offset){
6561b7f1ee76SMatthias Ringwald     if (hci_stack->remote_name_state != GAP_REMOTE_NAME_STATE_IDLE) return ERROR_CODE_COMMAND_DISALLOWED;
65626535961aSMatthias Ringwald     (void)memcpy(hci_stack->remote_name_addr, addr, 6);
6563b7f1ee76SMatthias Ringwald     hci_stack->remote_name_page_scan_repetition_mode = page_scan_repetition_mode;
6564b7f1ee76SMatthias Ringwald     hci_stack->remote_name_clock_offset = clock_offset;
6565b7f1ee76SMatthias Ringwald     hci_stack->remote_name_state = GAP_REMOTE_NAME_STATE_W2_SEND;
6566b7f1ee76SMatthias Ringwald     hci_run();
6567b7f1ee76SMatthias Ringwald     return 0;
6568b7f1ee76SMatthias Ringwald }
6569b7f1ee76SMatthias Ringwald 
6570667ba9d1SMatthias Ringwald static int gap_pairing_set_state_and_run(const bd_addr_t addr, uint8_t state){
65710a51f88bSMatthias Ringwald     hci_stack->gap_pairing_state = state;
65726535961aSMatthias Ringwald     (void)memcpy(hci_stack->gap_pairing_addr, addr, 6);
65730a51f88bSMatthias Ringwald     hci_run();
65740a51f88bSMatthias Ringwald     return 0;
65750a51f88bSMatthias Ringwald }
65760a51f88bSMatthias Ringwald 
65770a51f88bSMatthias Ringwald /**
6578aad97216SMatthias Ringwald  * @brief Legacy Pairing Pin Code Response for binary data / non-strings
6579aad97216SMatthias Ringwald  * @param addr
6580aad97216SMatthias Ringwald  * @param pin_data
6581aad97216SMatthias Ringwald  * @param pin_len
6582aad97216SMatthias Ringwald  * @return 0 if ok
6583aad97216SMatthias Ringwald  */
6584667ba9d1SMatthias Ringwald int gap_pin_code_response_binary(const bd_addr_t addr, const uint8_t * pin_data, uint8_t pin_len){
6585aad97216SMatthias Ringwald     if (hci_stack->gap_pairing_state != GAP_PAIRING_STATE_IDLE) return ERROR_CODE_COMMAND_DISALLOWED;
6586aad97216SMatthias Ringwald     hci_stack->gap_pairing_input.gap_pairing_pin = pin_data;
6587aad97216SMatthias Ringwald     hci_stack->gap_pairing_pin_len = pin_len;
6588aad97216SMatthias Ringwald     return gap_pairing_set_state_and_run(addr, GAP_PAIRING_STATE_SEND_PIN);
6589aad97216SMatthias Ringwald }
6590aad97216SMatthias Ringwald 
6591aad97216SMatthias Ringwald /**
65920a51f88bSMatthias Ringwald  * @brief Legacy Pairing Pin Code Response
65930a51f88bSMatthias Ringwald  * @param addr
65940a51f88bSMatthias Ringwald  * @param pin
65950a51f88bSMatthias Ringwald  * @return 0 if ok
65960a51f88bSMatthias Ringwald  */
6597667ba9d1SMatthias Ringwald int gap_pin_code_response(const bd_addr_t addr, const char * pin){
6598aad97216SMatthias Ringwald     return gap_pin_code_response_binary(addr, (const uint8_t*) pin, strlen(pin));
65990a51f88bSMatthias Ringwald }
66000a51f88bSMatthias Ringwald 
66010a51f88bSMatthias Ringwald /**
66020a51f88bSMatthias Ringwald  * @brief Abort Legacy Pairing
66030a51f88bSMatthias Ringwald  * @param addr
66040a51f88bSMatthias Ringwald  * @param pin
66050a51f88bSMatthias Ringwald  * @return 0 if ok
66060a51f88bSMatthias Ringwald  */
66070a51f88bSMatthias Ringwald int gap_pin_code_negative(bd_addr_t addr){
6608cd74063aSMatthias Ringwald     if (hci_stack->gap_pairing_state != GAP_PAIRING_STATE_IDLE) return ERROR_CODE_COMMAND_DISALLOWED;
66090a51f88bSMatthias Ringwald     return gap_pairing_set_state_and_run(addr, GAP_PAIRING_STATE_SEND_PIN_NEGATIVE);
66100a51f88bSMatthias Ringwald }
66110a51f88bSMatthias Ringwald 
66120a51f88bSMatthias Ringwald /**
66130a51f88bSMatthias Ringwald  * @brief SSP Passkey Response
66140a51f88bSMatthias Ringwald  * @param addr
66150a51f88bSMatthias Ringwald  * @param passkey
66160a51f88bSMatthias Ringwald  * @return 0 if ok
66170a51f88bSMatthias Ringwald  */
6618667ba9d1SMatthias Ringwald int gap_ssp_passkey_response(const bd_addr_t addr, uint32_t passkey){
6619cd74063aSMatthias Ringwald     if (hci_stack->gap_pairing_state != GAP_PAIRING_STATE_IDLE) return ERROR_CODE_COMMAND_DISALLOWED;
6620d504181aSMatthias Ringwald     hci_stack->gap_pairing_input.gap_pairing_passkey = passkey;
66210a51f88bSMatthias Ringwald     return gap_pairing_set_state_and_run(addr, GAP_PAIRING_STATE_SEND_PASSKEY);
66220a51f88bSMatthias Ringwald }
66230a51f88bSMatthias Ringwald 
66240a51f88bSMatthias Ringwald /**
66250a51f88bSMatthias Ringwald  * @brief Abort SSP Passkey Entry/Pairing
66260a51f88bSMatthias Ringwald  * @param addr
66270a51f88bSMatthias Ringwald  * @param pin
66280a51f88bSMatthias Ringwald  * @return 0 if ok
66290a51f88bSMatthias Ringwald  */
6630667ba9d1SMatthias Ringwald int gap_ssp_passkey_negative(const bd_addr_t addr){
6631cd74063aSMatthias Ringwald     if (hci_stack->gap_pairing_state != GAP_PAIRING_STATE_IDLE) return ERROR_CODE_COMMAND_DISALLOWED;
66320a51f88bSMatthias Ringwald     return gap_pairing_set_state_and_run(addr, GAP_PAIRING_STATE_SEND_PASSKEY_NEGATIVE);
66330a51f88bSMatthias Ringwald }
66340a51f88bSMatthias Ringwald 
66350a51f88bSMatthias Ringwald /**
66360a51f88bSMatthias Ringwald  * @brief Accept SSP Numeric Comparison
66370a51f88bSMatthias Ringwald  * @param addr
66380a51f88bSMatthias Ringwald  * @param passkey
66390a51f88bSMatthias Ringwald  * @return 0 if ok
66400a51f88bSMatthias Ringwald  */
6641667ba9d1SMatthias Ringwald int gap_ssp_confirmation_response(const bd_addr_t addr){
6642cd74063aSMatthias Ringwald     if (hci_stack->gap_pairing_state != GAP_PAIRING_STATE_IDLE) return ERROR_CODE_COMMAND_DISALLOWED;
66430a51f88bSMatthias Ringwald     return gap_pairing_set_state_and_run(addr, GAP_PAIRING_STATE_SEND_CONFIRMATION);
66440a51f88bSMatthias Ringwald }
66450a51f88bSMatthias Ringwald 
66460a51f88bSMatthias Ringwald /**
66470a51f88bSMatthias Ringwald  * @brief Abort SSP Numeric Comparison/Pairing
66480a51f88bSMatthias Ringwald  * @param addr
66490a51f88bSMatthias Ringwald  * @param pin
66500a51f88bSMatthias Ringwald  * @return 0 if ok
66510a51f88bSMatthias Ringwald  */
6652667ba9d1SMatthias Ringwald int gap_ssp_confirmation_negative(const bd_addr_t addr){
6653cd74063aSMatthias Ringwald     if (hci_stack->gap_pairing_state != GAP_PAIRING_STATE_IDLE) return ERROR_CODE_COMMAND_DISALLOWED;
66540a51f88bSMatthias Ringwald     return gap_pairing_set_state_and_run(addr, GAP_PAIRING_STATE_SEND_CONFIRMATION_NEGATIVE);
66550a51f88bSMatthias Ringwald }
66560a51f88bSMatthias Ringwald 
6657308eeaffSMatthias Ringwald #if defined(ENABLE_EXPLICIT_IO_CAPABILITIES_REPLY) || defined(ENABLE_EXPLICIT_LINK_KEY_REPLY)
665844565b0cSMatthias Ringwald static uint8_t gap_set_auth_flag_and_run(const bd_addr_t addr, hci_authentication_flags_t flag){
665944565b0cSMatthias Ringwald     hci_connection_t * conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
666044565b0cSMatthias Ringwald     if (!conn) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
666144565b0cSMatthias Ringwald     connectionSetAuthenticationFlags(conn, flag);
666244565b0cSMatthias Ringwald     hci_run();
666344565b0cSMatthias Ringwald     return ERROR_CODE_SUCCESS;
666444565b0cSMatthias Ringwald }
6665308eeaffSMatthias Ringwald #endif
666644565b0cSMatthias Ringwald 
6667308eeaffSMatthias Ringwald #ifdef ENABLE_EXPLICIT_IO_CAPABILITIES_REPLY
666844565b0cSMatthias Ringwald uint8_t gap_ssp_io_capabilities_response(const bd_addr_t addr){
66697ca4a7edSMatthias Ringwald     return gap_set_auth_flag_and_run(addr, AUTH_FLAG_SEND_IO_CAPABILITIES_REPLY);
667044565b0cSMatthias Ringwald }
667144565b0cSMatthias Ringwald 
667244565b0cSMatthias Ringwald uint8_t gap_ssp_io_capabilities_negative(const bd_addr_t addr){
66737ca4a7edSMatthias Ringwald     return gap_set_auth_flag_and_run(addr, AUTH_FLAG_SEND_IO_CAPABILITIES_NEGATIVE_REPLY);
667444565b0cSMatthias Ringwald }
667544565b0cSMatthias Ringwald #endif
667644565b0cSMatthias Ringwald 
66771849becdSMatthias Ringwald #ifdef ENABLE_CLASSIC_PAIRING_OOB
66781849becdSMatthias Ringwald /**
66791849becdSMatthias Ringwald  * @brief Report Remote OOB Data
66801849becdSMatthias Ringwald  * @param bd_addr
66811849becdSMatthias Ringwald  * @param c_192 Simple Pairing Hash C derived from P-192 public key
66821849becdSMatthias Ringwald  * @param r_192 Simple Pairing Randomizer derived from P-192 public key
66831849becdSMatthias Ringwald  * @param c_256 Simple Pairing Hash C derived from P-256 public key
66841849becdSMatthias Ringwald  * @param r_256 Simple Pairing Randomizer derived from P-256 public key
66851849becdSMatthias Ringwald  */
66861849becdSMatthias Ringwald uint8_t gap_ssp_remote_oob_data(const bd_addr_t addr, const uint8_t * c_192, const uint8_t * r_192, const uint8_t * c_256, const uint8_t * r_256){
66871849becdSMatthias Ringwald     hci_connection_t * connection = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
66881849becdSMatthias Ringwald     if (connection == NULL) {
66891849becdSMatthias Ringwald         return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
66901849becdSMatthias Ringwald     }
66911849becdSMatthias Ringwald     connection->classic_oob_c_192 = c_192;
66921849becdSMatthias Ringwald     connection->classic_oob_r_192 = r_192;
6693204e8f1dSMatthias Ringwald 
6694204e8f1dSMatthias Ringwald     // ignore P-256 if not supported by us
6695204e8f1dSMatthias Ringwald     if (hci_stack->secure_connections_active){
66961849becdSMatthias Ringwald         connection->classic_oob_c_256 = c_256;
66971849becdSMatthias Ringwald         connection->classic_oob_r_256 = r_256;
6698204e8f1dSMatthias Ringwald     }
6699204e8f1dSMatthias Ringwald 
67001849becdSMatthias Ringwald     return ERROR_CODE_SUCCESS;
67011849becdSMatthias Ringwald }
6702cf01e888SMatthias Ringwald /**
6703cf01e888SMatthias Ringwald  * @brief Generate new OOB data
6704cf01e888SMatthias Ringwald  * @note OOB data will be provided in GAP_EVENT_LOCAL_OOB_DATA and be used in future pairing procedures
6705cf01e888SMatthias Ringwald  */
6706cf01e888SMatthias Ringwald void gap_ssp_generate_oob_data(void){
6707cf01e888SMatthias Ringwald     hci_stack->classic_read_local_oob_data = true;
6708cf01e888SMatthias Ringwald     hci_run();
6709cf01e888SMatthias Ringwald }
6710cf01e888SMatthias Ringwald 
67111849becdSMatthias Ringwald #endif
67121849becdSMatthias Ringwald 
6713308eeaffSMatthias Ringwald #ifdef ENABLE_EXPLICIT_LINK_KEY_REPLY
6714308eeaffSMatthias Ringwald uint8_t gap_send_link_key_response(const bd_addr_t addr, link_key_t link_key, link_key_type_t type){
6715308eeaffSMatthias Ringwald     hci_connection_t * connection = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
6716308eeaffSMatthias Ringwald     if (connection == NULL) {
6717308eeaffSMatthias Ringwald         return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
6718308eeaffSMatthias Ringwald     }
6719308eeaffSMatthias Ringwald 
6720308eeaffSMatthias Ringwald     memcpy(connection->link_key, link_key, sizeof(link_key_t));
6721308eeaffSMatthias Ringwald     connection->link_key_type = type;
6722308eeaffSMatthias Ringwald 
6723308eeaffSMatthias Ringwald     return gap_set_auth_flag_and_run(addr, AUTH_FLAG_HANDLE_LINK_KEY_REQUEST);
6724308eeaffSMatthias Ringwald }
6725308eeaffSMatthias Ringwald 
6726308eeaffSMatthias Ringwald #endif // ENABLE_EXPLICIT_LINK_KEY_REPLY
6727f5875de5SMatthias Ringwald /**
6728f6858d14SMatthias Ringwald  * @brief Set inquiry mode: standard, with RSSI, with RSSI + Extended Inquiry Results. Has to be called before power on.
6729f5875de5SMatthias Ringwald  * @param inquiry_mode see bluetooth_defines.h
6730f6858d14SMatthias Ringwald  */
6731b45b7749SMilanka Ringwald void hci_set_inquiry_mode(inquiry_mode_t inquiry_mode){
6732b45b7749SMilanka Ringwald     hci_stack->inquiry_mode = inquiry_mode;
6733f6858d14SMatthias Ringwald }
6734f6858d14SMatthias Ringwald 
6735f6858d14SMatthias Ringwald /**
6736d950d659SMatthias Ringwald  * @brief Configure Voice Setting for use with SCO data in HSP/HFP
6737d950d659SMatthias Ringwald  */
6738d950d659SMatthias Ringwald void hci_set_sco_voice_setting(uint16_t voice_setting){
6739d950d659SMatthias Ringwald     hci_stack->sco_voice_setting = voice_setting;
6740d950d659SMatthias Ringwald }
6741d950d659SMatthias Ringwald 
6742d950d659SMatthias Ringwald /**
6743d950d659SMatthias Ringwald  * @brief Get SCO Voice Setting
6744d950d659SMatthias Ringwald  * @return current voice setting
6745d950d659SMatthias Ringwald  */
67460cb5b971SMatthias Ringwald uint16_t hci_get_sco_voice_setting(void){
6747d950d659SMatthias Ringwald     return hci_stack->sco_voice_setting;
6748d950d659SMatthias Ringwald }
6749d950d659SMatthias Ringwald 
6750400ff5abSMatthias Ringwald static int hci_have_usb_transport(void){
6751400ff5abSMatthias Ringwald     if (!hci_stack->hci_transport) return 0;
6752400ff5abSMatthias Ringwald     const char * transport_name = hci_stack->hci_transport->name;
6753400ff5abSMatthias Ringwald     if (!transport_name) return 0;
6754400ff5abSMatthias Ringwald     return (transport_name[0] == 'H') && (transport_name[1] == '2');
6755400ff5abSMatthias Ringwald }
6756400ff5abSMatthias Ringwald 
6757b3aad8daSMatthias Ringwald /** @brief Get SCO packet length for current SCO Voice setting
6758b3aad8daSMatthias Ringwald  *  @note  Using SCO packets of the exact length is required for USB transfer
6759b3aad8daSMatthias Ringwald  *  @return Length of SCO packets in bytes (not audio frames)
6760b3aad8daSMatthias Ringwald  */
676120dcdd22SMatthias Ringwald uint16_t hci_get_sco_packet_length(void){
676220dcdd22SMatthias Ringwald     uint16_t sco_packet_length = 0;
6763cf119f3bSMatthias Ringwald 
67641e20a53eSMatthias Ringwald #ifdef ENABLE_SCO_OVER_HCI
67656f28d2eeSMatthias Ringwald     // Transparent = mSBC => 1, CVSD with 16-bit samples requires twice as much bytes
67661431ce27SMatthias Ringwald     int multiplier = ((hci_stack->sco_voice_setting_active & 0x03) == 0x03) ? 1 : 2;
6767cf119f3bSMatthias Ringwald 
6768400ff5abSMatthias Ringwald     if (hci_have_usb_transport()){
6769400ff5abSMatthias Ringwald         // see Core Spec for H2 USB Transfer.
6770cf119f3bSMatthias Ringwald         // 3 byte SCO header + 24 bytes per connection
677152e46257SMatthias Ringwald         int num_sco_connections = btstack_max(1, hci_number_sco_connections());
677252e46257SMatthias Ringwald         sco_packet_length = 3 + 24 * num_sco_connections * multiplier;
6773400ff5abSMatthias Ringwald     } else {
6774400ff5abSMatthias Ringwald         // 3 byte SCO header + SCO packet size over the air (60 bytes)
6775400ff5abSMatthias Ringwald         sco_packet_length = 3 + 60 * multiplier;
6776d966a453SMatthias Ringwald         // assert that it still fits inside an SCO buffer
6777d966a453SMatthias Ringwald         if (sco_packet_length > hci_stack->sco_data_packet_length){
6778d966a453SMatthias Ringwald             sco_packet_length = 3 + 60;
6779d966a453SMatthias Ringwald         }
6780400ff5abSMatthias Ringwald     }
6781a3069afeSMatthias Ringwald #endif
67825b7087c7SMatthias Ringwald 
67835b7087c7SMatthias Ringwald #ifdef HAVE_SCO_TRANSPORT
67845b7087c7SMatthias Ringwald     // Transparent = mSBC => 1, CVSD with 16-bit samples requires twice as much bytes
67851e20a53eSMatthias Ringwald     int multiplier = ((hci_stack->sco_voice_setting_active & 0x03) == 0x03) ? 1 : 2;
67865b7087c7SMatthias Ringwald     sco_packet_length = 3 + 60 * multiplier;
67875b7087c7SMatthias Ringwald #endif
6788a3069afeSMatthias Ringwald     return sco_packet_length;
6789b3aad8daSMatthias Ringwald }
6790b3aad8daSMatthias Ringwald 
6791c4c88f1bSJakob Krantz /**
6792c4c88f1bSJakob Krantz * @brief Sets the master/slave policy
6793c4c88f1bSJakob Krantz * @param policy (0: attempt to become master, 1: let connecting device decide)
6794c4c88f1bSJakob Krantz */
6795c4c88f1bSJakob Krantz void hci_set_master_slave_policy(uint8_t policy){
6796c4c88f1bSJakob Krantz     hci_stack->master_slave_policy = policy;
6797c4c88f1bSJakob Krantz }
6798c4c88f1bSJakob Krantz 
6799c4c88f1bSJakob Krantz #endif
6800ec111c8bSMatthias Ringwald 
6801ec111c8bSMatthias Ringwald HCI_STATE hci_get_state(void){
6802ec111c8bSMatthias Ringwald     return hci_stack->state;
6803ec111c8bSMatthias Ringwald }
6804ec111c8bSMatthias Ringwald 
680507e010b6SMilanka Ringwald #ifdef ENABLE_CLASSIC
68065e91d96cSMatthias Ringwald void gap_register_classic_connection_filter(int (*accept_callback)(bd_addr_t addr, hci_link_type_t link_type)){
680707e010b6SMilanka Ringwald     hci_stack->gap_classic_accept_callback = accept_callback;
680807e010b6SMilanka Ringwald }
680907e010b6SMilanka Ringwald #endif
6810ec111c8bSMatthias Ringwald 
6811d950d659SMatthias Ringwald /**
6812d23838ecSMatthias Ringwald  * @brief Set callback for Bluetooth Hardware Error
6813d23838ecSMatthias Ringwald  */
6814c2e1fa60SMatthias Ringwald void hci_set_hardware_error_callback(void (*fn)(uint8_t error)){
6815d23838ecSMatthias Ringwald     hci_stack->hardware_error_callback = fn;
6816d23838ecSMatthias Ringwald }
6817d23838ecSMatthias Ringwald 
681871de195eSMatthias Ringwald void hci_disconnect_all(void){
6819665d90f2SMatthias Ringwald     btstack_linked_list_iterator_t it;
6820665d90f2SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->connections);
6821665d90f2SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
6822665d90f2SMatthias Ringwald         hci_connection_t * con = (hci_connection_t*) btstack_linked_list_iterator_next(&it);
682304a6ef8cSmatthias.ringwald         if (con->state == SENT_DISCONNECT) continue;
682404a6ef8cSmatthias.ringwald         con->state = SEND_DISCONNECT;
682504a6ef8cSmatthias.ringwald     }
6826d31fba26S[email protected]     hci_run();
682704a6ef8cSmatthias.ringwald }
682833373e40SMatthias Ringwald 
682933373e40SMatthias Ringwald uint16_t hci_get_manufacturer(void){
683033373e40SMatthias Ringwald     return hci_stack->manufacturer;
683133373e40SMatthias Ringwald }
68329c6e867eSMatthias Ringwald 
68333e329ddfSandryblack #ifdef ENABLE_BLE
68349c6e867eSMatthias Ringwald static sm_connection_t * sm_get_connection_for_handle(hci_con_handle_t con_handle){
68359c6e867eSMatthias Ringwald     hci_connection_t * hci_con = hci_connection_for_handle(con_handle);
68369c6e867eSMatthias Ringwald     if (!hci_con) return NULL;
68379c6e867eSMatthias Ringwald     return &hci_con->sm_connection;
68389c6e867eSMatthias Ringwald }
68399c6e867eSMatthias Ringwald 
68409c6e867eSMatthias Ringwald // extracted from sm.c to allow enabling of l2cap le data channels without adding sm.c to the build
68419c6e867eSMatthias Ringwald // without sm.c default values from create_connection_for_bd_addr_and_type() resulg in non-encrypted, not-authenticated
68426a79f6baSMatthias Ringwald #endif
68439c6e867eSMatthias Ringwald 
68446d105c71SMatthias Ringwald uint8_t gap_encryption_key_size(hci_con_handle_t con_handle){
6845c5fb5ca4SMatthias Ringwald     hci_connection_t * hci_connection = hci_connection_for_handle(con_handle);
6846c5fb5ca4SMatthias Ringwald     if (hci_connection == NULL) return 0;
6847c5fb5ca4SMatthias Ringwald     if (hci_is_le_connection(hci_connection)){
68486a79f6baSMatthias Ringwald #ifdef ENABLE_BLE
6849c5fb5ca4SMatthias Ringwald         sm_connection_t * sm_conn = &hci_connection->sm_connection;
6850c5fb5ca4SMatthias Ringwald         if (sm_conn->sm_connection_encrypted) {
68519c6e867eSMatthias Ringwald             return sm_conn->sm_actual_encryption_key_size;
68529c6e867eSMatthias Ringwald         }
68536a79f6baSMatthias Ringwald #endif
68546a79f6baSMatthias Ringwald     } else {
6855c5fb5ca4SMatthias Ringwald #ifdef ENABLE_CLASSIC
68568daf94bcSMatthias Ringwald         if ((hci_connection->authentication_flags & AUTH_FLAG_CONNECTION_ENCRYPTED)){
6857c5fb5ca4SMatthias Ringwald             return hci_connection->encryption_key_size;
6858c5fb5ca4SMatthias Ringwald         }
6859c5fb5ca4SMatthias Ringwald #endif
68606a79f6baSMatthias Ringwald     }
6861c5fb5ca4SMatthias Ringwald     return 0;
6862c5fb5ca4SMatthias Ringwald }
68639c6e867eSMatthias Ringwald 
6864ff3f1026SMatthias Ringwald bool gap_authenticated(hci_con_handle_t con_handle){
6865c5fb5ca4SMatthias Ringwald     hci_connection_t * hci_connection = hci_connection_for_handle(con_handle);
6866ff3f1026SMatthias Ringwald     if (hci_connection == NULL) return false;
68675f3981bfSMatthias Ringwald 
6868c5fb5ca4SMatthias Ringwald     switch (hci_connection->address_type){
68696a79f6baSMatthias Ringwald #ifdef ENABLE_BLE
68705f3981bfSMatthias Ringwald         case BD_ADDR_TYPE_LE_PUBLIC:
68715f3981bfSMatthias Ringwald         case BD_ADDR_TYPE_LE_RANDOM:
6872c5fb5ca4SMatthias Ringwald             if (hci_connection->sm_connection.sm_connection_encrypted == 0) return 0; // unencrypted connection cannot be authenticated
6873ff3f1026SMatthias Ringwald             return hci_connection->sm_connection.sm_connection_authenticated != 0;
68746a79f6baSMatthias Ringwald #endif
687559a1a47aSMatthias Ringwald #ifdef ENABLE_CLASSIC
68765f3981bfSMatthias Ringwald         case BD_ADDR_TYPE_SCO:
6877f16129ceSMatthias Ringwald         case BD_ADDR_TYPE_ACL:
6878ff3f1026SMatthias Ringwald             return gap_authenticated_for_link_key_type(hci_connection->link_key_type);
687959a1a47aSMatthias Ringwald #endif
68805f3981bfSMatthias Ringwald         default:
6881ff3f1026SMatthias Ringwald             return false;
68825f3981bfSMatthias Ringwald     }
68839c6e867eSMatthias Ringwald }
68849c6e867eSMatthias Ringwald 
6885f461b3dfSMatthias Ringwald bool gap_secure_connection(hci_con_handle_t con_handle){
6886c5fb5ca4SMatthias Ringwald     hci_connection_t * hci_connection = hci_connection_for_handle(con_handle);
6887c5fb5ca4SMatthias Ringwald     if (hci_connection == NULL) return 0;
68888b35e16aSMatthias Ringwald 
6889c5fb5ca4SMatthias Ringwald     switch (hci_connection->address_type){
68906a79f6baSMatthias Ringwald #ifdef ENABLE_BLE
68918b35e16aSMatthias Ringwald         case BD_ADDR_TYPE_LE_PUBLIC:
68928b35e16aSMatthias Ringwald         case BD_ADDR_TYPE_LE_RANDOM:
6893f461b3dfSMatthias Ringwald             if (hci_connection->sm_connection.sm_connection_encrypted == 0) return false; // unencrypted connection cannot be authenticated
6894f461b3dfSMatthias Ringwald             return hci_connection->sm_connection.sm_connection_sc != 0;
68956a79f6baSMatthias Ringwald #endif
689659a1a47aSMatthias Ringwald #ifdef ENABLE_CLASSIC
68978b35e16aSMatthias Ringwald         case BD_ADDR_TYPE_SCO:
6898f16129ceSMatthias Ringwald         case BD_ADDR_TYPE_ACL:
6899f461b3dfSMatthias Ringwald             return gap_secure_connection_for_link_key_type(hci_connection->link_key_type);
690059a1a47aSMatthias Ringwald #endif
69018b35e16aSMatthias Ringwald         default:
6902f461b3dfSMatthias Ringwald             return false;
69038b35e16aSMatthias Ringwald     }
6904f1dfbe18SMatthias Ringwald }
6905f1dfbe18SMatthias Ringwald 
69061e122704SMatthias Ringwald bool gap_bonded(hci_con_handle_t con_handle){
69071e122704SMatthias Ringwald 	hci_connection_t * hci_connection = hci_connection_for_handle(con_handle);
69081e122704SMatthias Ringwald 	if (hci_connection == NULL) return 0;
69091e122704SMatthias Ringwald 
691048f33f37SMatthias Ringwald #ifdef ENABLE_CLASSIC
69111e122704SMatthias Ringwald 	link_key_t link_key;
69121e122704SMatthias Ringwald 	link_key_type_t link_key_type;
691348f33f37SMatthias Ringwald #endif
69141e122704SMatthias Ringwald 	switch (hci_connection->address_type){
69156a79f6baSMatthias Ringwald #ifdef ENABLE_BLE
69161e122704SMatthias Ringwald 		case BD_ADDR_TYPE_LE_PUBLIC:
69171e122704SMatthias Ringwald 		case BD_ADDR_TYPE_LE_RANDOM:
69181e122704SMatthias Ringwald 			return hci_connection->sm_connection.sm_le_db_index >= 0;
69196a79f6baSMatthias Ringwald #endif
69201e122704SMatthias Ringwald #ifdef ENABLE_CLASSIC
69211e122704SMatthias Ringwald 		case BD_ADDR_TYPE_SCO:
69221e122704SMatthias Ringwald 		case BD_ADDR_TYPE_ACL:
69231e122704SMatthias Ringwald 			return hci_stack->link_key_db && hci_stack->link_key_db->get_link_key(hci_connection->address, link_key, &link_key_type);
69241e122704SMatthias Ringwald #endif
69251e122704SMatthias Ringwald 		default:
69261e122704SMatthias Ringwald 			return false;
69271e122704SMatthias Ringwald 	}
69281e122704SMatthias Ringwald }
69291e122704SMatthias Ringwald 
69306a79f6baSMatthias Ringwald #ifdef ENABLE_BLE
69319c6e867eSMatthias Ringwald authorization_state_t gap_authorization_state(hci_con_handle_t con_handle){
69329c6e867eSMatthias Ringwald     sm_connection_t * sm_conn = sm_get_connection_for_handle(con_handle);
69339c6e867eSMatthias Ringwald     if (!sm_conn) return AUTHORIZATION_UNKNOWN;     // wrong connection
69349c6e867eSMatthias Ringwald     if (!sm_conn->sm_connection_encrypted)               return AUTHORIZATION_UNKNOWN; // unencrypted connection cannot be authorized
69359c6e867eSMatthias Ringwald     if (!sm_conn->sm_connection_authenticated)           return AUTHORIZATION_UNKNOWN; // unauthenticatd connection cannot be authorized
69369c6e867eSMatthias Ringwald     return sm_conn->sm_connection_authorization_state;
69379c6e867eSMatthias Ringwald }
69389c6e867eSMatthias Ringwald #endif
6939f8ee3071SMatthias Ringwald 
6940f8ee3071SMatthias Ringwald #ifdef ENABLE_CLASSIC
6941f8ee3071SMatthias 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){
6942f8ee3071SMatthias Ringwald     hci_connection_t * conn = hci_connection_for_handle(con_handle);
6943f8ee3071SMatthias Ringwald     if (!conn) return GAP_CONNECTION_INVALID;
6944f8ee3071SMatthias Ringwald     conn->sniff_min_interval = sniff_min_interval;
6945f8ee3071SMatthias Ringwald     conn->sniff_max_interval = sniff_max_interval;
6946f8ee3071SMatthias Ringwald     conn->sniff_attempt = sniff_attempt;
6947f8ee3071SMatthias Ringwald     conn->sniff_timeout = sniff_timeout;
6948f8ee3071SMatthias Ringwald     hci_run();
6949f8ee3071SMatthias Ringwald     return 0;
6950f8ee3071SMatthias Ringwald }
6951f8ee3071SMatthias Ringwald 
6952f8ee3071SMatthias Ringwald /**
6953f8ee3071SMatthias Ringwald  * @brief Exit Sniff mode
6954f8ee3071SMatthias Ringwald  * @param con_handle
6955f8ee3071SMatthias Ringwald  @ @return 0 if ok
6956f8ee3071SMatthias Ringwald  */
6957f8ee3071SMatthias Ringwald uint8_t gap_sniff_mode_exit(hci_con_handle_t con_handle){
6958f8ee3071SMatthias Ringwald     hci_connection_t * conn = hci_connection_for_handle(con_handle);
6959f8ee3071SMatthias Ringwald     if (!conn) return GAP_CONNECTION_INVALID;
6960f8ee3071SMatthias Ringwald     conn->sniff_min_interval = 0xffff;
6961f8ee3071SMatthias Ringwald     hci_run();
6962f8ee3071SMatthias Ringwald     return 0;
6963f8ee3071SMatthias Ringwald }
6964bea424a5SMatthias Ringwald 
6965140c0557SMatthias Ringwald uint8_t gap_sniff_subrating_configure(hci_con_handle_t con_handle, uint16_t max_latency, uint16_t min_remote_timeout, uint16_t min_local_timeout){
6966140c0557SMatthias Ringwald     hci_connection_t * conn = hci_connection_for_handle(con_handle);
6967140c0557SMatthias Ringwald     if (!conn) return GAP_CONNECTION_INVALID;
6968140c0557SMatthias Ringwald     conn->sniff_subrating_max_latency = max_latency;
6969140c0557SMatthias Ringwald     conn->sniff_subrating_min_remote_timeout = min_remote_timeout;
6970140c0557SMatthias Ringwald     conn->sniff_subrating_min_local_timeout = min_local_timeout;
6971140c0557SMatthias Ringwald     hci_run();
6972dc8d5bd3SMatthias Ringwald     return ERROR_CODE_SUCCESS;
6973140c0557SMatthias Ringwald }
6974140c0557SMatthias Ringwald 
6975278ff8a9SMatthias Ringwald uint8_t gap_qos_set(hci_con_handle_t con_handle, hci_service_type_t service_type, uint32_t token_rate, uint32_t peak_bandwidth, uint32_t latency, uint32_t delay_variation){
6976278ff8a9SMatthias Ringwald     hci_connection_t * conn = hci_connection_for_handle(con_handle);
6977278ff8a9SMatthias Ringwald     if (!conn) return GAP_CONNECTION_INVALID;
6978278ff8a9SMatthias Ringwald     conn->qos_service_type = service_type;
6979278ff8a9SMatthias Ringwald     conn->qos_token_rate = token_rate;
6980278ff8a9SMatthias Ringwald     conn->qos_peak_bandwidth = peak_bandwidth;
6981278ff8a9SMatthias Ringwald     conn->qos_latency = latency;
6982278ff8a9SMatthias Ringwald     conn->qos_delay_variation = delay_variation;
6983278ff8a9SMatthias Ringwald     hci_run();
6984278ff8a9SMatthias Ringwald     return ERROR_CODE_SUCCESS;
6985278ff8a9SMatthias Ringwald }
6986278ff8a9SMatthias Ringwald 
6987bea424a5SMatthias Ringwald void gap_set_page_scan_activity(uint16_t page_scan_interval, uint16_t page_scan_window){
6988bea424a5SMatthias Ringwald     hci_stack->new_page_scan_interval = page_scan_interval;
6989bea424a5SMatthias Ringwald     hci_stack->new_page_scan_window = page_scan_window;
6990baa4881eSMatthias Ringwald     hci_stack->gap_tasks_classic |= GAP_TASK_WRITE_PAGE_SCAN_ACTIVITY;
6991bea424a5SMatthias Ringwald     hci_run();
6992bea424a5SMatthias Ringwald }
6993bea424a5SMatthias Ringwald 
6994bea424a5SMatthias Ringwald void gap_set_page_scan_type(page_scan_type_t page_scan_type){
6995bea424a5SMatthias Ringwald     hci_stack->new_page_scan_type = (uint8_t) page_scan_type;
6996baa4881eSMatthias Ringwald     hci_stack->gap_tasks_classic |= GAP_TASK_WRITE_PAGE_SCAN_TYPE;
6997bea424a5SMatthias Ringwald     hci_run();
6998bea424a5SMatthias Ringwald }
6999bea424a5SMatthias Ringwald 
700032a12730SMatthias Ringwald void gap_set_page_timeout(uint16_t page_timeout){
700132a12730SMatthias Ringwald     hci_stack->page_timeout = page_timeout;
7002baa4881eSMatthias Ringwald     hci_stack->gap_tasks_classic |= GAP_TASK_WRITE_PAGE_TIMEOUT;
700332a12730SMatthias Ringwald     hci_run();
700432a12730SMatthias Ringwald }
700532a12730SMatthias Ringwald 
7006f8ee3071SMatthias Ringwald #endif
7007beceeddeSMatthias Ringwald 
7008beceeddeSMatthias Ringwald void hci_halting_defer(void){
7009beceeddeSMatthias Ringwald     if (hci_stack->state != HCI_STATE_HALTING) return;
7010beceeddeSMatthias Ringwald     switch (hci_stack->substate){
7011beceeddeSMatthias Ringwald         case HCI_HALTING_DISCONNECT_ALL_NO_TIMER:
7012beceeddeSMatthias Ringwald         case HCI_HALTING_CLOSE:
7013beceeddeSMatthias Ringwald             hci_stack->substate = HCI_HALTING_DISCONNECT_ALL_TIMER;
7014beceeddeSMatthias Ringwald             break;
7015beceeddeSMatthias Ringwald         default:
7016beceeddeSMatthias Ringwald             break;
7017beceeddeSMatthias Ringwald     }
7018beceeddeSMatthias Ringwald }
7019eddac615SMatthias Ringwald 
702021debf25SMatthias Ringwald #ifdef ENABLE_LE_PRIVACY_ADDRESS_RESOLUTION
702121debf25SMatthias Ringwald void hci_load_le_device_db_entry_into_resolving_list(uint16_t le_device_db_index){
702221debf25SMatthias Ringwald     if (le_device_db_index >= MAX_NUM_RESOLVING_LIST_ENTRIES) return;
702321debf25SMatthias Ringwald     if (le_device_db_index >= le_device_db_max_count()) return;
702421debf25SMatthias Ringwald     uint8_t offset = le_device_db_index >> 3;
702521debf25SMatthias Ringwald     uint8_t mask = 1 << (le_device_db_index & 7);
702602b02cffSMatthias Ringwald     hci_stack->le_resolving_list_add_entries[offset] |= mask;
702721debf25SMatthias Ringwald     if (hci_stack->le_resolving_list_state == LE_RESOLVING_LIST_DONE){
702802b02cffSMatthias Ringwald     	// note: go back to remove entries, otherwise, a remove + add will skip the add
702902b02cffSMatthias Ringwald         hci_stack->le_resolving_list_state = LE_RESOLVING_LIST_REMOVE_ENTRIES;
703002b02cffSMatthias Ringwald     }
703102b02cffSMatthias Ringwald }
703202b02cffSMatthias Ringwald 
703302b02cffSMatthias Ringwald void hci_remove_le_device_db_entry_from_resolving_list(uint16_t le_device_db_index){
703402b02cffSMatthias Ringwald 	if (le_device_db_index >= MAX_NUM_RESOLVING_LIST_ENTRIES) return;
703502b02cffSMatthias Ringwald 	if (le_device_db_index >= le_device_db_max_count()) return;
703602b02cffSMatthias Ringwald 	uint8_t offset = le_device_db_index >> 3;
703702b02cffSMatthias Ringwald 	uint8_t mask = 1 << (le_device_db_index & 7);
703802b02cffSMatthias Ringwald 	hci_stack->le_resolving_list_remove_entries[offset] |= mask;
703902b02cffSMatthias Ringwald 	if (hci_stack->le_resolving_list_state == LE_RESOLVING_LIST_DONE){
704002b02cffSMatthias Ringwald 		hci_stack->le_resolving_list_state = LE_RESOLVING_LIST_REMOVE_ENTRIES;
704121debf25SMatthias Ringwald 	}
704221debf25SMatthias Ringwald }
7043cf38a091SMatthias Ringwald 
7044cf38a091SMatthias Ringwald uint8_t gap_load_resolving_list_from_le_device_db(void){
70451ffa425cSMatthias Ringwald     if (hci_command_supported(SUPPORTED_HCI_COMMAND_LE_SET_ADDRESS_RESOLUTION_ENABLE) == false){
7046cf38a091SMatthias Ringwald 		return ERROR_CODE_UNSUPPORTED_FEATURE_OR_PARAMETER_VALUE;
7047cf38a091SMatthias Ringwald 	}
7048cf38a091SMatthias Ringwald 	if (hci_stack->le_resolving_list_state != LE_RESOLVING_LIST_SEND_ENABLE_ADDRESS_RESOLUTION){
7049cf38a091SMatthias Ringwald 		// restart le resolving list update
7050cf38a091SMatthias Ringwald 		hci_stack->le_resolving_list_state = LE_RESOLVING_LIST_READ_SIZE;
7051cf38a091SMatthias Ringwald 	}
7052cf38a091SMatthias Ringwald 	return ERROR_CODE_SUCCESS;
7053cf38a091SMatthias Ringwald }
705421debf25SMatthias Ringwald #endif
705521debf25SMatthias Ringwald 
7056eddac615SMatthias Ringwald #ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
705718976c74SMatthias Ringwald void hci_setup_test_connections_fuzz(void){
705818976c74SMatthias Ringwald     hci_connection_t * conn;
705918976c74SMatthias Ringwald 
706018976c74SMatthias Ringwald     // default address: 66:55:44:33:00:01
706118976c74SMatthias Ringwald     bd_addr_t addr = { 0x66, 0x55, 0x44, 0x33, 0x00, 0x00};
706218976c74SMatthias Ringwald 
70637d33cb26SMilanka Ringwald     // setup Controller info
70647d33cb26SMilanka Ringwald     hci_stack->num_cmd_packets = 255;
70657d33cb26SMilanka Ringwald     hci_stack->acl_packets_total_num = 255;
70667d33cb26SMilanka Ringwald 
706718976c74SMatthias Ringwald     // setup incoming Classic ACL connection with con handle 0x0001, 66:55:44:33:22:01
706818976c74SMatthias Ringwald     addr[5] = 0x01;
706918976c74SMatthias Ringwald     conn = create_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
707018976c74SMatthias Ringwald     conn->con_handle = addr[5];
707118976c74SMatthias Ringwald     conn->role  = HCI_ROLE_SLAVE;
707218976c74SMatthias Ringwald     conn->state = RECEIVED_CONNECTION_REQUEST;
70737d33cb26SMilanka Ringwald     conn->sm_connection.sm_role = HCI_ROLE_SLAVE;
707418976c74SMatthias Ringwald 
707518976c74SMatthias Ringwald     // setup incoming Classic SCO connection with con handle 0x0002
707618976c74SMatthias Ringwald     addr[5] = 0x02;
707718976c74SMatthias Ringwald     conn = create_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_SCO);
707818976c74SMatthias Ringwald     conn->con_handle = addr[5];
707918976c74SMatthias Ringwald     conn->role  = HCI_ROLE_SLAVE;
708018976c74SMatthias Ringwald     conn->state = RECEIVED_CONNECTION_REQUEST;
70817d33cb26SMilanka Ringwald     conn->sm_connection.sm_role = HCI_ROLE_SLAVE;
708218976c74SMatthias Ringwald 
708318976c74SMatthias Ringwald     // setup ready Classic ACL connection with con handle 0x0003
708418976c74SMatthias Ringwald     addr[5] = 0x03;
708518976c74SMatthias Ringwald     conn = create_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
708618976c74SMatthias Ringwald     conn->con_handle = addr[5];
708718976c74SMatthias Ringwald     conn->role  = HCI_ROLE_SLAVE;
708818976c74SMatthias Ringwald     conn->state = OPEN;
70897d33cb26SMilanka Ringwald     conn->sm_connection.sm_role = HCI_ROLE_SLAVE;
709018976c74SMatthias Ringwald 
709118976c74SMatthias Ringwald     // setup ready Classic SCO connection with con handle 0x0004
709218976c74SMatthias Ringwald     addr[5] = 0x04;
709318976c74SMatthias Ringwald     conn = create_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_SCO);
709418976c74SMatthias Ringwald     conn->con_handle = addr[5];
709518976c74SMatthias Ringwald     conn->role  = HCI_ROLE_SLAVE;
709618976c74SMatthias Ringwald     conn->state = OPEN;
70977d33cb26SMilanka Ringwald     conn->sm_connection.sm_role = HCI_ROLE_SLAVE;
709818976c74SMatthias Ringwald 
709918976c74SMatthias Ringwald     // setup ready LE ACL connection with con handle 0x005 and public address
710018976c74SMatthias Ringwald     addr[5] = 0x05;
710118976c74SMatthias Ringwald     conn = create_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_LE_PUBLIC);
710218976c74SMatthias Ringwald     conn->con_handle = addr[5];
710318976c74SMatthias Ringwald     conn->role  = HCI_ROLE_SLAVE;
710418976c74SMatthias Ringwald     conn->state = OPEN;
71057d33cb26SMilanka Ringwald     conn->sm_connection.sm_role = HCI_ROLE_SLAVE;
71068046a24aSMatthias Ringwald     conn->sm_connection.sm_connection_encrypted = 1;
710718976c74SMatthias Ringwald }
710818976c74SMatthias Ringwald 
7109eddac615SMatthias Ringwald void hci_free_connections_fuzz(void){
7110eddac615SMatthias Ringwald     btstack_linked_list_iterator_t it;
7111eddac615SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->connections);
7112eddac615SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
7113eddac615SMatthias Ringwald         hci_connection_t * con = (hci_connection_t*) btstack_linked_list_iterator_next(&it);
7114eddac615SMatthias Ringwald         btstack_linked_list_iterator_remove(&it);
7115eddac615SMatthias Ringwald         btstack_memory_hci_connection_free(con);
7116eddac615SMatthias Ringwald     }
7117eddac615SMatthias Ringwald }
71181470db0cSMatthias Ringwald void hci_simulate_working_fuzz(void){
7119b6ffb67fSMatthias Ringwald     hci_stack->le_scanning_param_update = false;
71201470db0cSMatthias Ringwald     hci_init_done();
71211470db0cSMatthias Ringwald     hci_stack->num_cmd_packets = 255;
71221470db0cSMatthias Ringwald }
7123eddac615SMatthias Ringwald #endif
7124