xref: /btstack/src/hci.c (revision c92ca2c818c0f80ed7880f5fb43cd2b8236bfab3)
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 
778ad9cf99SMatthias Ringwald #ifdef ENABLE_CONTROLLER_DUMP_PACKETS
788ad9cf99SMatthias Ringwald #include <stdio.h>  // sprintf
798ad9cf99SMatthias Ringwald #endif
808ad9cf99SMatthias Ringwald 
812b838201SMatthias Ringwald #ifdef ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL
822b838201SMatthias Ringwald #ifndef HCI_HOST_ACL_PACKET_NUM
832b838201SMatthias Ringwald #error "ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL requires to define HCI_HOST_ACL_PACKET_NUM"
842b838201SMatthias Ringwald #endif
852b838201SMatthias Ringwald #ifndef HCI_HOST_ACL_PACKET_LEN
862b838201SMatthias Ringwald #error "ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL requires to define HCI_HOST_ACL_PACKET_LEN"
872b838201SMatthias Ringwald #endif
882b838201SMatthias Ringwald #ifndef HCI_HOST_SCO_PACKET_NUM
892b838201SMatthias Ringwald #error "ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL requires to define HCI_HOST_SCO_PACKET_NUM"
902b838201SMatthias Ringwald #endif
912b838201SMatthias Ringwald #ifndef HCI_HOST_SCO_PACKET_LEN
922b838201SMatthias Ringwald #error "ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL requires to define HCI_HOST_SCO_PACKET_LEN"
932b838201SMatthias Ringwald #endif
942b838201SMatthias Ringwald #endif
951b0e3922Smatthias.ringwald 
96616cfd90SMatthias Ringwald #ifndef MAX_NR_CONTROLLER_ACL_BUFFERS
97616cfd90SMatthias Ringwald #define MAX_NR_CONTROLLER_ACL_BUFFERS 255
98616cfd90SMatthias Ringwald #endif
99616cfd90SMatthias Ringwald #ifndef MAX_NR_CONTROLLER_SCO_PACKETS
100616cfd90SMatthias Ringwald #define MAX_NR_CONTROLLER_SCO_PACKETS 255
101616cfd90SMatthias Ringwald #endif
102616cfd90SMatthias Ringwald 
1036bcf18c2SMatthias Ringwald #ifndef HCI_ACL_CHUNK_SIZE_ALIGNMENT
1046bcf18c2SMatthias Ringwald #define HCI_ACL_CHUNK_SIZE_ALIGNMENT 1
1056bcf18c2SMatthias Ringwald #endif
1066bcf18c2SMatthias Ringwald 
107aa81e641SMatthias Ringwald #if defined(ENABLE_SCO_OVER_HCI) && defined(ENABLE_SCO_OVER_PCM)
108aa81e641SMatthias 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."
109aa81e641SMatthias Ringwald #endif
110aa81e641SMatthias Ringwald 
1111e20a53eSMatthias Ringwald #if defined(ENABLE_SCO_OVER_HCI) && defined(HAVE_SCO_TRANSPORT)
1121e20a53eSMatthias 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."
1131e20a53eSMatthias Ringwald #endif
1141e20a53eSMatthias Ringwald 
115169f8b28Smatthias.ringwald #define HCI_CONNECTION_TIMEOUT_MS 10000
11662473419SMatthias Ringwald 
11762473419SMatthias Ringwald #ifndef HCI_RESET_RESEND_TIMEOUT_MS
118659d758cSMatthias Ringwald #define HCI_RESET_RESEND_TIMEOUT_MS 200
11962473419SMatthias Ringwald #endif
120ee091cf1Smatthias.ringwald 
1211cfb383eSMatthias Ringwald // Names are arbitrarily shortened to 32 bytes if not requested otherwise
1221cfb383eSMatthias Ringwald #ifndef GAP_INQUIRY_MAX_NAME_LEN
1231cfb383eSMatthias Ringwald #define GAP_INQUIRY_MAX_NAME_LEN 32
1241cfb383eSMatthias Ringwald #endif
1251cfb383eSMatthias Ringwald 
126f5875de5SMatthias Ringwald // GAP inquiry state: 0 = off, 0x01 - 0x30 = requested duration, 0xfe = active, 0xff = stop requested
127f5875de5SMatthias Ringwald #define GAP_INQUIRY_DURATION_MIN       0x01
128f5875de5SMatthias Ringwald #define GAP_INQUIRY_DURATION_MAX       0x30
12930199e24SMatthias Ringwald #define GAP_INQUIRY_MIN_PERIODIC_LEN_MIN 0x02
13030199e24SMatthias Ringwald #define GAP_INQUIRY_MAX_PERIODIC_LEN_MIN 0x03
131beb3c81dSMatthias Ringwald #define GAP_INQUIRY_STATE_IDLE         0x00
132beb3c81dSMatthias Ringwald #define GAP_INQUIRY_STATE_W4_ACTIVE    0x80
133beb3c81dSMatthias Ringwald #define GAP_INQUIRY_STATE_ACTIVE       0x81
134beb3c81dSMatthias Ringwald #define GAP_INQUIRY_STATE_W2_CANCEL    0x82
135beb3c81dSMatthias Ringwald #define GAP_INQUIRY_STATE_W4_CANCELLED 0x83
13630199e24SMatthias Ringwald #define GAP_INQUIRY_STATE_PERIODIC     0x84
13730199e24SMatthias Ringwald #define GAP_INQUIRY_STATE_W2_EXIT_PERIODIC 0x85
138f5875de5SMatthias Ringwald 
139b7f1ee76SMatthias Ringwald // GAP Remote Name Request
140b7f1ee76SMatthias Ringwald #define GAP_REMOTE_NAME_STATE_IDLE 0
141b7f1ee76SMatthias Ringwald #define GAP_REMOTE_NAME_STATE_W2_SEND 1
142b7f1ee76SMatthias Ringwald #define GAP_REMOTE_NAME_STATE_W4_COMPLETE 2
143b7f1ee76SMatthias Ringwald 
1440a51f88bSMatthias Ringwald // GAP Pairing
1450a51f88bSMatthias Ringwald #define GAP_PAIRING_STATE_IDLE                       0
1460a51f88bSMatthias Ringwald #define GAP_PAIRING_STATE_SEND_PIN                   1
1470a51f88bSMatthias Ringwald #define GAP_PAIRING_STATE_SEND_PIN_NEGATIVE          2
1480a51f88bSMatthias Ringwald #define GAP_PAIRING_STATE_SEND_PASSKEY               3
1490a51f88bSMatthias Ringwald #define GAP_PAIRING_STATE_SEND_PASSKEY_NEGATIVE      4
1500a51f88bSMatthias Ringwald #define GAP_PAIRING_STATE_SEND_CONFIRMATION          5
1510a51f88bSMatthias Ringwald #define GAP_PAIRING_STATE_SEND_CONFIRMATION_NEGATIVE 6
152cc15bb2cSMatthias Ringwald #define GAP_PAIRING_STATE_WAIT_FOR_COMMAND_COMPLETE  7
1530a51f88bSMatthias Ringwald 
15425e46151SMatthias Ringwald //
1559ce37759SMatthias Ringwald // compact storage of relevant supported HCI Commands.
1569ce37759SMatthias Ringwald // X-Macro below provides enumeration and mapping table into the supported
15725e46151SMatthias Ringwald // commands bitmap (64 bytes) from HCI Read Local Supported Commands
15825e46151SMatthias Ringwald //
15925e46151SMatthias Ringwald 
16025e46151SMatthias Ringwald // format: command name, byte offset, bit nr in 64-byte supported commands
1618c021356SMatthias Ringwald // currently stored in 32-bit variable
16225e46151SMatthias Ringwald #define SUPPORTED_HCI_COMMANDS \
1639ce37759SMatthias Ringwald     X( SUPPORTED_HCI_COMMAND_READ_REMOTE_EXTENDED_FEATURES         ,  2, 5) \
16425e46151SMatthias Ringwald     X( SUPPORTED_HCI_COMMAND_WRITE_SYNCHRONOUS_FLOW_CONTROL_ENABLE , 10, 4) \
1659ce37759SMatthias Ringwald     X( SUPPORTED_HCI_COMMAND_READ_BUFFER_SIZE                      , 14, 7) \
16625e46151SMatthias Ringwald     X( SUPPORTED_HCI_COMMAND_WRITE_DEFAULT_ERRONEOUS_DATA_REPORTING, 18, 3) \
1679ce37759SMatthias Ringwald     X( SUPPORTED_HCI_COMMAND_READ_ENCRYPTION_KEY_SIZE              , 20, 4) \
168ff7d1758SMatthias Ringwald     X( SUPPORTED_HCI_COMMAND_SET_EVENT_MASK_PAGE_2                 , 22, 2) \
1699ce37759SMatthias Ringwald     X( SUPPORTED_HCI_COMMAND_WRITE_LE_HOST_SUPPORTED               , 24, 6) \
1709ce37759SMatthias Ringwald     X( SUPPORTED_HCI_COMMAND_REMOTE_OOB_EXTENDED_DATA_REQUEST_REPLY, 32, 1) \
1719ce37759SMatthias Ringwald     X( SUPPORTED_HCI_COMMAND_WRITE_SECURE_CONNECTIONS_HOST         , 32, 3) \
1729ce37759SMatthias Ringwald     X( SUPPORTED_HCI_COMMAND_READ_LOCAL_OOB_EXTENDED_DATA_COMMAND  , 32, 6) \
17325e46151SMatthias Ringwald     X( SUPPORTED_HCI_COMMAND_LE_WRITE_SUGGESTED_DEFAULT_DATA_LENGTH, 34, 0) \
17425e46151SMatthias Ringwald     X( SUPPORTED_HCI_COMMAND_LE_SET_ADDRESS_RESOLUTION_ENABLE      , 35, 1) \
175a391128dSMatthias Ringwald     X( SUPPORTED_HCI_COMMAND_LE_READ_MAXIMUM_DATA_LENGTH           , 35, 3) \
1769ce37759SMatthias Ringwald     X( SUPPORTED_HCI_COMMAND_LE_SET_DEFAULT_PHY                    , 35, 5) \
17763671e69SMatthias Ringwald     X( SUPPORTED_HCI_COMMAND_LE_SET_EXTENDED_ADVERTISING_ENABLE    , 36, 6) \
17879b7ea2dSMatthias Ringwald     X( SUPPORTED_HCI_COMMAND_LE_READ_BUFFER_SIZE_V2                , 41, 5) \
179a391128dSMatthias Ringwald     X( SUPPORTED_HCI_COMMAND_SET_MIN_ENCRYPTION_KEY_SIZE           , 45, 7) \
18025e46151SMatthias Ringwald 
18125e46151SMatthias Ringwald // enumerate supported commands
18225e46151SMatthias Ringwald #define X(name, offset, bit) name,
18325e46151SMatthias Ringwald enum {
18425e46151SMatthias Ringwald     SUPPORTED_HCI_COMMANDS
18525e46151SMatthias Ringwald     SUPPORTED_HCI_COMMANDS_COUNT
18625e46151SMatthias Ringwald };
18725e46151SMatthias Ringwald #undef X
18825e46151SMatthias Ringwald 
189b83d5eabSMatthias Ringwald // prototypes
19035454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
191758b46ceSmatthias.ringwald static void hci_update_scan_enable(void);
19271fd255dSMatthias Ringwald static void hci_emit_scan_mode_changed(uint8_t discoverable, uint8_t connectable);
19335454696SMatthias Ringwald static int  hci_local_ssp_activated(void);
19420dcdd22SMatthias Ringwald static bool hci_remote_ssp_supported(hci_con_handle_t con_handle);
19567aae551SMatthias Ringwald static bool hci_ssp_supported(hci_connection_t * connection);
19635454696SMatthias Ringwald static void hci_notify_if_sco_can_send_now(void);
19735454696SMatthias Ringwald static void hci_emit_connection_complete(bd_addr_t address, hci_con_handle_t con_handle, uint8_t status);
198a00031e2S[email protected] static gap_security_level_t gap_security_level_for_connection(hci_connection_t * connection);
19935454696SMatthias Ringwald static void hci_emit_security_level(hci_con_handle_t con_handle, gap_security_level_t level);
200ec820d77SMatthias Ringwald static void hci_connection_timeout_handler(btstack_timer_source_t *timer);
20196a45072S[email protected] static void hci_connection_timestamp(hci_connection_t *connection);
20252db98b2SMatthias Ringwald static void hci_emit_l2cap_check_timeout(hci_connection_t *conn);
2039784dac1SMatthias Ringwald static void gap_inquiry_explode(uint8_t *packet, uint16_t size);
20452db98b2SMatthias Ringwald #endif
2051cfb383eSMatthias Ringwald 
2067586ee35S[email protected] static int  hci_power_control_on(void);
2077586ee35S[email protected] static void hci_power_control_off(void);
2086da48142SSean Wilson static void hci_state_reset(void);
209685ec254SMatthias Ringwald static void hci_halting_timeout_handler(btstack_timer_source_t * ds);
210fd43c0e0SMatthias Ringwald static void hci_emit_transport_packet_sent(void);
211fc64f94aSMatthias Ringwald static void hci_emit_disconnection_complete(hci_con_handle_t con_handle, uint8_t reason);
212b83d5eabSMatthias Ringwald static void hci_emit_nr_connections_changed(void);
213b83d5eabSMatthias Ringwald static void hci_emit_hci_open_failed(void);
214b83d5eabSMatthias Ringwald static void hci_emit_dedicated_bonding_result(bd_addr_t address, uint8_t status);
215b83d5eabSMatthias Ringwald static void hci_emit_event(uint8_t * event, uint16_t size, int dump);
216b83d5eabSMatthias Ringwald static void hci_emit_acl_packet(uint8_t * packet, uint16_t size);
21795d71764SMatthias Ringwald static void hci_run(void);
21895d71764SMatthias Ringwald static int  hci_is_le_connection(hci_connection_t * connection);
2196a5ffed8SMatthias Ringwald 
2206a5ffed8SMatthias Ringwald #ifdef ENABLE_CLASSIC
221f234b250SMatthias Ringwald static int hci_have_usb_transport(void);
222dbe0d85cSMatthias Ringwald static void hci_trigger_remote_features_for_connection(hci_connection_t * connection);
2236a5ffed8SMatthias Ringwald #endif
2245d509858SMatthias Ringwald 
225a9a4c409SMatthias Ringwald #ifdef ENABLE_BLE
226e8c8828eSMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
22739677e66SMatthias Ringwald // called from test/ble_client/advertising_data_parser.c
228384b59deSMatthias Ringwald void le_handle_advertisement_report(uint8_t *packet, uint16_t size);
229667ba9d1SMatthias Ringwald static uint8_t hci_whitelist_remove(bd_addr_type_t address_type, const bd_addr_t address);
2309c77c9dbSMatthias Ringwald static hci_connection_t * gap_get_outgoing_connection(void);
231c42da3bcSMatthias Ringwald static void hci_le_scan_stop(void);
23273799937SMatthias Ringwald static bool hci_run_general_gap_le(void);
2335d509858SMatthias Ringwald #endif
23425df6c61SMatthias Ringwald #ifdef ENABLE_LE_PERIPHERAL
235ee54aff5SMatthias Ringwald #ifdef ENABLE_LE_EXTENDED_ADVERTISING
23625df6c61SMatthias Ringwald static le_advertising_set_t * hci_advertising_set_for_handle(uint8_t advertising_handle);
237ee54aff5SMatthias Ringwald #endif /* ENABLE_LE_EXTENDED_ADVERTISING */
238ee54aff5SMatthias Ringwald #endif /* ENABLE_LE_PERIPHERAL */
2394ae8623eSMatthias Ringwald #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
240969d876aSMatthias Ringwald static hci_iso_stream_t * hci_iso_stream_create(hci_iso_type_t iso_type, hci_iso_stream_state_t state, uint8_t group_id, uint8_t stream_id);
2414ae8623eSMatthias Ringwald static void hci_iso_stream_finalize(hci_iso_stream_t * iso_stream);
242778463d0SMatthias Ringwald static void hci_iso_stream_finalize_by_type_and_group_id(hci_iso_type_t iso_type, uint8_t group_id);
24315a15be3SMatthias Ringwald static hci_iso_stream_t * hci_iso_stream_for_con_handle(hci_con_handle_t con_handle);
24415a15be3SMatthias Ringwald static void hci_iso_stream_requested_finalize(uint8_t big_handle);
24515a15be3SMatthias Ringwald static void hci_iso_stream_requested_confirm(uint8_t big_handle);
246d39e4f95SMatthias Ringwald static void hci_iso_packet_handler(uint8_t * packet, uint16_t size);
2477aa35f6aSMatthias Ringwald static le_audio_big_t * hci_big_for_handle(uint8_t big_handle);
248d3a89d91SMatthias Ringwald static le_audio_cig_t * hci_cig_for_id(uint8_t cig_id);
2495ade6657SMatthias Ringwald static void hci_iso_notify_can_send_now(void);
2507aa35f6aSMatthias Ringwald static void hci_emit_big_created(const le_audio_big_t * big, uint8_t status);
2517aa35f6aSMatthias Ringwald static void hci_emit_big_terminated(const le_audio_big_t * big);
2522a6c0f82SMatthias Ringwald static void hci_emit_big_sync_created(const le_audio_big_sync_t * big_sync, uint8_t status);
253d04a9afcSMatthias Ringwald static void hci_emit_big_sync_stopped(uint8_t big_handle);
254d3a89d91SMatthias Ringwald static void hci_emit_cig_created(const le_audio_cig_t * cig, uint8_t status);
25514045fdbSMatthias Ringwald static void hci_cis_handle_created(hci_iso_stream_t * iso_stream, uint8_t status);
2562a6c0f82SMatthias Ringwald static le_audio_big_sync_t * hci_big_sync_for_handle(uint8_t big_handle);
25714045fdbSMatthias Ringwald 
2584ae8623eSMatthias Ringwald #endif /* ENABLE_LE_ISOCHRONOUS_STREAMS */
259ee54aff5SMatthias Ringwald #endif /* ENABLE_BLE */
260758b46ceSmatthias.ringwald 
26106b35ec0Smatthias.ringwald // the STACK is here
2623a9fb326S[email protected] #ifndef HAVE_MALLOC
2633a9fb326S[email protected] static hci_stack_t   hci_stack_static;
2643a9fb326S[email protected] #endif
2653a9fb326S[email protected] static hci_stack_t * hci_stack = NULL;
26616833f0aSmatthias.ringwald 
2671c9e5e9dSMatthias Ringwald #ifdef ENABLE_CLASSIC
26863168530SMatthias Ringwald // default name
26963168530SMatthias Ringwald static const char * default_classic_name = "BTstack 00:00:00:00:00:00";
27063168530SMatthias Ringwald 
27166fb9560S[email protected] // test helper
27266fb9560S[email protected] static uint8_t disable_l2cap_timeouts = 0;
2731c9e5e9dSMatthias Ringwald #endif
27466fb9560S[email protected] 
275aee5d5c1SMatthias Ringwald // reset connection state on create and on reconnect
276aee5d5c1SMatthias Ringwald // don't overwrite addr, con handle, role
277aee5d5c1SMatthias Ringwald static void hci_connection_init(hci_connection_t * conn){
2788daf94bcSMatthias Ringwald     conn->authentication_flags = AUTH_FLAG_NONE;
27996a45072S[email protected]     conn->bonding_flags = 0;
28096a45072S[email protected]     conn->requested_security_level = LEVEL_0;
28152db98b2SMatthias Ringwald #ifdef ENABLE_CLASSIC
28288a03c8dSMatthias Ringwald     conn->request_role = HCI_ROLE_INVALID;
283140c0557SMatthias Ringwald     conn->sniff_subrating_max_latency = 0xffff;
284965a4ccfSMatthias Ringwald     conn->qos_service_type = HCI_SERVICE_TYPE_INVALID;
285e9f98c4aSMatthias Ringwald     conn->link_key_type = INVALID_LINK_KEY;
28691a977e8SMatthias Ringwald     btstack_run_loop_set_timer_handler(&conn->timeout, hci_connection_timeout_handler);
28791a977e8SMatthias Ringwald     btstack_run_loop_set_timer_context(&conn->timeout, conn);
28896a45072S[email protected]     hci_connection_timestamp(conn);
28952db98b2SMatthias Ringwald #endif
29096a45072S[email protected]     conn->acl_recombination_length = 0;
29196a45072S[email protected]     conn->acl_recombination_pos = 0;
292ce41473eSMatthias Ringwald     conn->num_packets_sent = 0;
293760b20efSMatthias Ringwald 
294da886c03S[email protected]     conn->le_con_parameter_update_state = CON_PARAMETER_UPDATE_NONE;
295b90f6e0aSMatthias Ringwald #ifdef ENABLE_BLE
296b90f6e0aSMatthias Ringwald     conn->le_phy_update_all_phys = 0xff;
297b90f6e0aSMatthias Ringwald #endif
2980f3b27c5SMatthias Ringwald #ifdef ENABLE_LE_LIMIT_ACL_FRAGMENT_BY_MAX_OCTETS
2990f3b27c5SMatthias Ringwald     conn->le_max_tx_octets = 27;
3000f3b27c5SMatthias Ringwald #endif
301cb439cf1SMatthias Ringwald #ifdef ENABLE_CLASSIC_PAIRING_OOB
302cb439cf1SMatthias Ringwald     conn->classic_oob_c_192 = NULL;
303cb439cf1SMatthias Ringwald     conn->classic_oob_r_192 = NULL;
304cb439cf1SMatthias Ringwald     conn->classic_oob_c_256 = NULL;
305cb439cf1SMatthias Ringwald     conn->classic_oob_r_256 = NULL;
306cb439cf1SMatthias Ringwald #endif
307aee5d5c1SMatthias Ringwald }
308aee5d5c1SMatthias Ringwald 
309aee5d5c1SMatthias Ringwald /**
310aee5d5c1SMatthias Ringwald  * create connection for given address
311aee5d5c1SMatthias Ringwald  *
312aee5d5c1SMatthias Ringwald  * @return connection OR NULL, if no memory left
313aee5d5c1SMatthias Ringwald  */
31488f925b1SMatthias Ringwald static hci_connection_t *
31588f925b1SMatthias Ringwald create_connection_for_bd_addr_and_type(const bd_addr_t addr, bd_addr_type_t addr_type, hci_role_t role) {
316aee5d5c1SMatthias Ringwald     log_info("create_connection_for_addr %s, type %x", bd_addr_to_str(addr), addr_type);
317aee5d5c1SMatthias Ringwald 
318aee5d5c1SMatthias Ringwald     hci_connection_t * conn = btstack_memory_hci_connection_get();
319aee5d5c1SMatthias Ringwald     if (!conn) return NULL;
320aee5d5c1SMatthias Ringwald     hci_connection_init(conn);
321aee5d5c1SMatthias Ringwald 
322aee5d5c1SMatthias Ringwald     bd_addr_copy(conn->address, addr);
323aee5d5c1SMatthias Ringwald     conn->address_type = addr_type;
324aee5d5c1SMatthias Ringwald     conn->con_handle = HCI_CON_HANDLE_INVALID;
32588f925b1SMatthias Ringwald     conn->role = role;
3263bd96807SMatthias Ringwald #ifdef ENABLE_LE_PERIODIC_ADVERTISING
3273bd96807SMatthias Ringwald     conn->le_past_sync_handle = HCI_CON_HANDLE_INVALID;
3283bd96807SMatthias Ringwald #endif
329665d90f2SMatthias Ringwald     btstack_linked_list_add(&hci_stack->connections, (btstack_linked_item_t *) conn);
330aee5d5c1SMatthias Ringwald 
33196a45072S[email protected]     return conn;
33296a45072S[email protected] }
33366fb9560S[email protected] 
334da886c03S[email protected] 
335da886c03S[email protected] /**
336da886c03S[email protected]  * get le connection parameter range
337da886c03S[email protected] *
338da886c03S[email protected]  * @return le connection parameter range struct
339da886c03S[email protected]  */
3404ced4e8cSMatthias Ringwald void gap_get_connection_parameter_range(le_connection_parameter_range_t * range){
3414ced4e8cSMatthias Ringwald     *range = hci_stack->le_connection_parameter_range;
342da886c03S[email protected] }
343da886c03S[email protected] 
344da886c03S[email protected] /**
345da886c03S[email protected]  * set le connection parameter range
346da886c03S[email protected]  *
347da886c03S[email protected]  */
348da886c03S[email protected] 
3494ced4e8cSMatthias Ringwald void gap_set_connection_parameter_range(le_connection_parameter_range_t *range){
3504ced4e8cSMatthias Ringwald     hci_stack->le_connection_parameter_range = *range;
351da886c03S[email protected] }
352da886c03S[email protected] 
353da886c03S[email protected] /**
35473cd8a2aSMatthias Ringwald  * @brief Test if connection parameters are inside in existing rage
35573cd8a2aSMatthias Ringwald  * @param conn_interval_min (unit: 1.25ms)
35673cd8a2aSMatthias Ringwald  * @param conn_interval_max (unit: 1.25ms)
35773cd8a2aSMatthias Ringwald  * @param conn_latency
35873cd8a2aSMatthias Ringwald  * @param supervision_timeout (unit: 10ms)
3596b65794dSMilanka Ringwald  * @return 1 if included
36073cd8a2aSMatthias Ringwald  */
36173cd8a2aSMatthias 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){
36273cd8a2aSMatthias Ringwald     if (le_conn_interval_min < existing_range->le_conn_interval_min) return 0;
36373cd8a2aSMatthias Ringwald     if (le_conn_interval_max > existing_range->le_conn_interval_max) return 0;
36473cd8a2aSMatthias Ringwald 
36573cd8a2aSMatthias Ringwald     if (le_conn_latency < existing_range->le_conn_latency_min) return 0;
36673cd8a2aSMatthias Ringwald     if (le_conn_latency > existing_range->le_conn_latency_max) return 0;
36773cd8a2aSMatthias Ringwald 
36873cd8a2aSMatthias Ringwald     if (le_supervision_timeout < existing_range->le_supervision_timeout_min) return 0;
36973cd8a2aSMatthias Ringwald     if (le_supervision_timeout > existing_range->le_supervision_timeout_max) return 0;
37073cd8a2aSMatthias Ringwald 
37173cd8a2aSMatthias Ringwald     return 1;
37273cd8a2aSMatthias Ringwald }
37373cd8a2aSMatthias Ringwald 
37473cd8a2aSMatthias Ringwald /**
3752b6ab3e6SMatthias Ringwald  * @brief Set max number of connections in LE Peripheral role (if Bluetooth Controller supports it)
3762b6ab3e6SMatthias Ringwald  * @note: default: 1
3772b6ab3e6SMatthias Ringwald  * @param max_peripheral_connections
3782b6ab3e6SMatthias Ringwald  */
379d4e4907bSMatthias Ringwald #ifdef ENABLE_LE_PERIPHERAL
3802b6ab3e6SMatthias Ringwald void gap_set_max_number_peripheral_connections(int max_peripheral_connections){
3812b6ab3e6SMatthias Ringwald     hci_stack->le_max_number_peripheral_connections = max_peripheral_connections;
3822b6ab3e6SMatthias Ringwald }
383d4e4907bSMatthias Ringwald #endif
3842b6ab3e6SMatthias Ringwald 
3852b6ab3e6SMatthias Ringwald /**
386da886c03S[email protected]  * get hci connections iterator
387da886c03S[email protected]  *
388da886c03S[email protected]  * @return hci connections iterator
389da886c03S[email protected]  */
390da886c03S[email protected] 
391665d90f2SMatthias Ringwald void hci_connections_get_iterator(btstack_linked_list_iterator_t *it){
392665d90f2SMatthias Ringwald     btstack_linked_list_iterator_init(it, &hci_stack->connections);
393da886c03S[email protected] }
394da886c03S[email protected] 
39597addcc5Smatthias.ringwald /**
396ee091cf1Smatthias.ringwald  * get connection for a given handle
397ee091cf1Smatthias.ringwald  *
398ee091cf1Smatthias.ringwald  * @return connection OR NULL, if not found
399ee091cf1Smatthias.ringwald  */
4005061f3afS[email protected] hci_connection_t * hci_connection_for_handle(hci_con_handle_t con_handle){
401665d90f2SMatthias Ringwald     btstack_linked_list_iterator_t it;
402665d90f2SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->connections);
403665d90f2SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
404665d90f2SMatthias Ringwald         hci_connection_t * item = (hci_connection_t *) btstack_linked_list_iterator_next(&it);
4053ac2fe56S[email protected]         if ( item->con_handle == con_handle ) {
406da886c03S[email protected]             return item;
407ee091cf1Smatthias.ringwald         }
408ee091cf1Smatthias.ringwald     }
409ee091cf1Smatthias.ringwald     return NULL;
410ee091cf1Smatthias.ringwald }
411ee091cf1Smatthias.ringwald 
41296a45072S[email protected] /**
41396a45072S[email protected]  * get connection for given address
41496a45072S[email protected]  *
41596a45072S[email protected]  * @return connection OR NULL, if not found
41696a45072S[email protected]  */
417667ba9d1SMatthias Ringwald hci_connection_t * hci_connection_for_bd_addr_and_type(const bd_addr_t  addr, bd_addr_type_t addr_type){
418665d90f2SMatthias Ringwald     btstack_linked_list_iterator_t it;
419665d90f2SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->connections);
420665d90f2SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
421665d90f2SMatthias Ringwald         hci_connection_t * connection = (hci_connection_t *) btstack_linked_list_iterator_next(&it);
42296a45072S[email protected]         if (connection->address_type != addr_type)  continue;
42396a45072S[email protected]         if (memcmp(addr, connection->address, 6) != 0) continue;
42462bda3fbS[email protected]         return connection;
42562bda3fbS[email protected]     }
42662bda3fbS[email protected]     return NULL;
42762bda3fbS[email protected] }
42862bda3fbS[email protected] 
429d5f71a7eSMatthias Ringwald #ifdef ENABLE_CLASSIC
430d5f71a7eSMatthias Ringwald 
4313e5e0926SMatthias Ringwald inline static void connectionClearAuthenticationFlags(hci_connection_t * conn, hci_authentication_flags_t flags){
4323e5e0926SMatthias Ringwald     conn->authentication_flags = (hci_authentication_flags_t)(conn->authentication_flags & ~flags);
4333e5e0926SMatthias Ringwald }
43452db98b2SMatthias Ringwald 
435228e430cSMatthias Ringwald inline static void connectionSetAuthenticationFlags(hci_connection_t * conn, hci_authentication_flags_t flags){
436228e430cSMatthias Ringwald     conn->authentication_flags = (hci_authentication_flags_t)(conn->authentication_flags | flags);
437228e430cSMatthias Ringwald }
438228e430cSMatthias Ringwald 
439ee752bb8SMatthias Ringwald #ifdef ENABLE_SCO_OVER_HCI
440ee752bb8SMatthias Ringwald static int hci_number_sco_connections(void){
441ee752bb8SMatthias Ringwald     int connections = 0;
442ee752bb8SMatthias Ringwald     btstack_linked_list_iterator_t it;
443ee752bb8SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->connections);
444ee752bb8SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
445ee752bb8SMatthias Ringwald         hci_connection_t * connection = (hci_connection_t *) btstack_linked_list_iterator_next(&it);
446ee752bb8SMatthias Ringwald         if (connection->address_type != BD_ADDR_TYPE_SCO) continue;
447ee752bb8SMatthias Ringwald         connections++;
448ee752bb8SMatthias Ringwald     }
449ee752bb8SMatthias Ringwald     return connections;
450ee752bb8SMatthias Ringwald }
451ee752bb8SMatthias Ringwald #endif
452ee752bb8SMatthias Ringwald 
453ec820d77SMatthias Ringwald static void hci_connection_timeout_handler(btstack_timer_source_t *timer){
45491a977e8SMatthias Ringwald     hci_connection_t * connection = (hci_connection_t *) btstack_run_loop_get_timer_context(timer);
455aec7654dSMatthias Ringwald #ifdef HAVE_EMBEDDED_TICK
456528a4a3bSMatthias Ringwald     if (btstack_run_loop_embedded_get_ticks() > connection->timestamp + btstack_run_loop_embedded_ticks_for_ms(HCI_CONNECTION_TIMEOUT_MS)){
457c785ef68Smatthias.ringwald         // connections might be timed out
458c785ef68Smatthias.ringwald         hci_emit_l2cap_check_timeout(connection);
459c785ef68Smatthias.ringwald     }
460f316a845SMatthias Ringwald #else
461c1ab6cc1SMatthias Ringwald     if (btstack_run_loop_get_time_ms() > (connection->timestamp + HCI_CONNECTION_TIMEOUT_MS)){
4625f26aadcSMatthias Ringwald         // connections might be timed out
4635f26aadcSMatthias Ringwald         hci_emit_l2cap_check_timeout(connection);
4645f26aadcSMatthias Ringwald     }
4655f26aadcSMatthias Ringwald #endif
466c785ef68Smatthias.ringwald }
467ee091cf1Smatthias.ringwald 
468ee091cf1Smatthias.ringwald static void hci_connection_timestamp(hci_connection_t *connection){
469aec7654dSMatthias Ringwald #ifdef HAVE_EMBEDDED_TICK
470528a4a3bSMatthias Ringwald     connection->timestamp = btstack_run_loop_embedded_get_ticks();
471f316a845SMatthias Ringwald #else
472528a4a3bSMatthias Ringwald     connection->timestamp = btstack_run_loop_get_time_ms();
4735f26aadcSMatthias Ringwald #endif
474ee091cf1Smatthias.ringwald }
475ee091cf1Smatthias.ringwald 
47643bfb1bdSmatthias.ringwald /**
47780ca58a0Smatthias.ringwald  * add authentication flags and reset timer
47896a45072S[email protected]  * @note: assumes classic connection
4792e77e513S[email protected]  * @note: bd_addr is passed in as litle endian uint8_t * as it is called from parsing packets
4807fde4af9Smatthias.ringwald  */
4817fde4af9Smatthias.ringwald static void hci_add_connection_flags_for_flipped_bd_addr(uint8_t *bd_addr, hci_authentication_flags_t flags){
4827fde4af9Smatthias.ringwald     bd_addr_t addr;
483724d70a2SMatthias Ringwald     reverse_bd_addr(bd_addr, addr);
484f16129ceSMatthias Ringwald     hci_connection_t * conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
4857fde4af9Smatthias.ringwald     if (conn) {
48628ca2b46S[email protected]         connectionSetAuthenticationFlags(conn, flags);
48780ca58a0Smatthias.ringwald         hci_connection_timestamp(conn);
4887fde4af9Smatthias.ringwald     }
4897fde4af9Smatthias.ringwald }
4907fde4af9Smatthias.ringwald 
4911714cbbdSMatthias Ringwald static bool hci_pairing_active(hci_connection_t * hci_connection){
4928daf94bcSMatthias Ringwald     return (hci_connection->authentication_flags & AUTH_FLAG_PAIRING_ACTIVE_MASK) != 0;
4931714cbbdSMatthias Ringwald }
4941714cbbdSMatthias Ringwald 
4951714cbbdSMatthias Ringwald static void hci_pairing_started(hci_connection_t * hci_connection, bool ssp){
4961714cbbdSMatthias Ringwald     if (hci_pairing_active(hci_connection)) return;
4971714cbbdSMatthias Ringwald     if (ssp){
4988daf94bcSMatthias Ringwald         hci_connection->authentication_flags |= AUTH_FLAG_SSP_PAIRING_ACTIVE;
4991714cbbdSMatthias Ringwald     } else {
5008daf94bcSMatthias Ringwald         hci_connection->authentication_flags |= AUTH_FLAG_LEGACY_PAIRING_ACTIVE;
5011714cbbdSMatthias Ringwald     }
5021714cbbdSMatthias Ringwald     // if we are initiator, we have sent an HCI Authenticate Request
5031714cbbdSMatthias Ringwald     bool initiator = (hci_connection->bonding_flags & BONDING_SENT_AUTHENTICATE_REQUEST) != 0;
5041714cbbdSMatthias Ringwald 
5055a561920SMatthias Ringwald     // if we are responder, use minimal service security level as required level
5065a561920SMatthias Ringwald     if (!initiator){
507acadfdd0SMatthias 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);
5085a561920SMatthias Ringwald     }
5095a561920SMatthias Ringwald 
5105a561920SMatthias Ringwald     log_info("pairing started, ssp %u, initiator %u, requested level %u", (int) ssp, (int) initiator, hci_connection->requested_security_level);
51177208d90SMatthias Ringwald 
51277208d90SMatthias Ringwald     uint8_t event[12];
51377208d90SMatthias Ringwald     event[0] = GAP_EVENT_PAIRING_STARTED;
51477208d90SMatthias Ringwald     event[1] = 10;
515bfaf6993SMatthias Ringwald     little_endian_store_16(event, 2, (uint16_t) hci_connection->con_handle);
5164159a80bSMatthias Ringwald     reverse_bd_addr(hci_connection->address, &event[4]);
51777208d90SMatthias Ringwald     event[10] = (uint8_t) ssp;
51877208d90SMatthias Ringwald     event[11] = (uint8_t) initiator;
51977208d90SMatthias Ringwald     hci_emit_event(event, sizeof(event), 1);
5201714cbbdSMatthias Ringwald }
5211714cbbdSMatthias Ringwald 
5221714cbbdSMatthias Ringwald static void hci_pairing_complete(hci_connection_t * hci_connection, uint8_t status){
5233c439ac4SMatthias Ringwald     hci_connection->requested_security_level = LEVEL_0;
5241714cbbdSMatthias Ringwald     if (!hci_pairing_active(hci_connection)) return;
5258daf94bcSMatthias Ringwald     hci_connection->authentication_flags &= ~AUTH_FLAG_PAIRING_ACTIVE_MASK;
5261e7371deSMatthias Ringwald #ifdef ENABLE_CLASSIC_PAIRING_OOB
527cb439cf1SMatthias Ringwald     hci_connection->classic_oob_c_192 = NULL;
528cb439cf1SMatthias Ringwald     hci_connection->classic_oob_r_192 = NULL;
529cb439cf1SMatthias Ringwald     hci_connection->classic_oob_c_256 = NULL;
530cb439cf1SMatthias Ringwald     hci_connection->classic_oob_r_256 = NULL;
5311e7371deSMatthias Ringwald #endif
5321714cbbdSMatthias Ringwald     log_info("pairing complete, status %02x", status);
53377208d90SMatthias Ringwald 
5343176c896SMatthias Ringwald     uint8_t event[11];
53577208d90SMatthias Ringwald     event[0] = GAP_EVENT_PAIRING_COMPLETE;
53677208d90SMatthias Ringwald     event[1] = 9;
537bfaf6993SMatthias Ringwald     little_endian_store_16(event, 2, (uint16_t) hci_connection->con_handle);
5384159a80bSMatthias Ringwald     reverse_bd_addr(hci_connection->address, &event[4]);
53977208d90SMatthias Ringwald     event[10] = status;
54077208d90SMatthias Ringwald     hci_emit_event(event, sizeof(event), 1);
5415999ee11SMatthias Ringwald 
5425999ee11SMatthias Ringwald     // emit dedicated bonding done on failure, otherwise verify that connection can be encrypted
5435999ee11SMatthias Ringwald     if ((status != ERROR_CODE_SUCCESS) && ((hci_connection->bonding_flags & BONDING_DEDICATED) != 0)){
5445999ee11SMatthias Ringwald         hci_connection->bonding_flags &= ~BONDING_DEDICATED;
5455999ee11SMatthias Ringwald         hci_connection->bonding_flags |= BONDING_DISCONNECT_DEDICATED_DONE;
5465999ee11SMatthias Ringwald         hci_connection->bonding_status = status;
5475999ee11SMatthias Ringwald     }
5481714cbbdSMatthias Ringwald }
5491714cbbdSMatthias Ringwald 
55020dcdd22SMatthias Ringwald bool hci_authentication_active_for_handle(hci_con_handle_t handle){
5515061f3afS[email protected]     hci_connection_t * conn = hci_connection_for_handle(handle);
55220dcdd22SMatthias Ringwald     if (!conn) return false;
55320dcdd22SMatthias Ringwald     return hci_pairing_active(conn);
55480ca58a0Smatthias.ringwald }
55580ca58a0Smatthias.ringwald 
55615a95bd5SMatthias Ringwald void gap_drop_link_key_for_bd_addr(bd_addr_t addr){
55755597469SMatthias Ringwald     if (!hci_stack->link_key_db) return;
5582bacf595SMatthias Ringwald     log_info("gap_drop_link_key_for_bd_addr: %s", bd_addr_to_str(addr));
559a98592bcSMatthias Ringwald     hci_stack->link_key_db->delete_link_key(addr);
560c12e46e7Smatthias.ringwald }
56155597469SMatthias Ringwald 
56255597469SMatthias Ringwald void gap_store_link_key_for_bd_addr(bd_addr_t addr, link_key_t link_key, link_key_type_t type){
56355597469SMatthias Ringwald     if (!hci_stack->link_key_db) return;
5642bacf595SMatthias Ringwald     log_info("gap_store_link_key_for_bd_addr: %s, type %u", bd_addr_to_str(addr), type);
56555597469SMatthias Ringwald     hci_stack->link_key_db->put_link_key(addr, link_key, type);
566c12e46e7Smatthias.ringwald }
5671b6fb31bSMatthias Ringwald 
568e8ad470fSMatthias Ringwald bool gap_get_link_key_for_bd_addr(bd_addr_t addr, link_key_t link_key, link_key_type_t * type){
569e8ad470fSMatthias Ringwald 	if (!hci_stack->link_key_db) return false;
57076b0318eSMatthias Ringwald 	int result = hci_stack->link_key_db->get_link_key(addr, link_key, type) != 0;
57176b0318eSMatthias Ringwald 	log_info("link key for %s available %u, type %u", bd_addr_to_str(addr), result, (int) *type);
57276b0318eSMatthias Ringwald 	return result;
573e8ad470fSMatthias Ringwald }
574e8ad470fSMatthias Ringwald 
575ceecb9d9SMatthias Ringwald void gap_delete_all_link_keys(void){
576ceecb9d9SMatthias Ringwald     bd_addr_t  addr;
577ceecb9d9SMatthias Ringwald     link_key_t link_key;
578ceecb9d9SMatthias Ringwald     link_key_type_t type;
579ceecb9d9SMatthias Ringwald     btstack_link_key_iterator_t it;
580ceecb9d9SMatthias Ringwald     int ok = gap_link_key_iterator_init(&it);
581ceecb9d9SMatthias Ringwald     if (!ok) {
582ceecb9d9SMatthias Ringwald         log_error("could not initialize iterator");
583ceecb9d9SMatthias Ringwald         return;
584ceecb9d9SMatthias Ringwald     }
585ceecb9d9SMatthias Ringwald     while (gap_link_key_iterator_get_next(&it, addr, link_key, &type)){
586ceecb9d9SMatthias Ringwald         gap_drop_link_key_for_bd_addr(addr);
587ceecb9d9SMatthias Ringwald     }
588ceecb9d9SMatthias Ringwald     gap_link_key_iterator_done(&it);
589ceecb9d9SMatthias Ringwald }
590ceecb9d9SMatthias Ringwald 
5911b6fb31bSMatthias Ringwald int gap_link_key_iterator_init(btstack_link_key_iterator_t * it){
5921b6fb31bSMatthias Ringwald     if (!hci_stack->link_key_db) return 0;
5931b6fb31bSMatthias Ringwald     if (!hci_stack->link_key_db->iterator_init) return 0;
5941b6fb31bSMatthias Ringwald     return hci_stack->link_key_db->iterator_init(it);
5951b6fb31bSMatthias Ringwald }
5961b6fb31bSMatthias 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){
5971b6fb31bSMatthias Ringwald     if (!hci_stack->link_key_db) return 0;
5981b6fb31bSMatthias Ringwald     return hci_stack->link_key_db->iterator_get_next(it, bd_addr, link_key, type);
5991b6fb31bSMatthias Ringwald }
6001b6fb31bSMatthias Ringwald void gap_link_key_iterator_done(btstack_link_key_iterator_t * it){
6011b6fb31bSMatthias Ringwald     if (!hci_stack->link_key_db) return;
6021b6fb31bSMatthias Ringwald     hci_stack->link_key_db->iterator_done(it);
6031b6fb31bSMatthias Ringwald }
60435454696SMatthias Ringwald #endif
605c12e46e7Smatthias.ringwald 
606eb8076ddSMatthias Ringwald static bool hci_is_le_connection_type(bd_addr_type_t address_type){
607eb8076ddSMatthias Ringwald     switch (address_type){
608ce41473eSMatthias Ringwald         case BD_ADDR_TYPE_LE_PUBLIC:
609ce41473eSMatthias Ringwald         case BD_ADDR_TYPE_LE_RANDOM:
6103739bc96SMatthias Ringwald         case BD_ADDR_TYPE_LE_PUBLIC_IDENTITY:
6113739bc96SMatthias Ringwald         case BD_ADDR_TYPE_LE_RANDOM_IDENTITY:
612eb8076ddSMatthias Ringwald             return true;
613ce41473eSMatthias Ringwald         default:
614eb8076ddSMatthias Ringwald             return false;
615ce41473eSMatthias Ringwald     }
6160bf6344aS[email protected] }
6170bf6344aS[email protected] 
618eb8076ddSMatthias Ringwald static int hci_is_le_connection(hci_connection_t * connection){
619eb8076ddSMatthias Ringwald     return hci_is_le_connection_type(connection->address_type);
620eb8076ddSMatthias Ringwald }
621eb8076ddSMatthias Ringwald 
6227fde4af9Smatthias.ringwald /**
62343bfb1bdSmatthias.ringwald  * count connections
62443bfb1bdSmatthias.ringwald  */
62540d1c7a4Smatthias.ringwald static int nr_hci_connections(void){
62656c253c9Smatthias.ringwald     int count = 0;
627665d90f2SMatthias Ringwald     btstack_linked_item_t *it;
628a0da043fSMatthias Ringwald     for (it = (btstack_linked_item_t *) hci_stack->connections; it != NULL ; it = it->next){
62915a27967SMatthias Ringwald         count++;
63015a27967SMatthias Ringwald     }
63143bfb1bdSmatthias.ringwald     return count;
63243bfb1bdSmatthias.ringwald }
633c8e4258aSmatthias.ringwald 
6348f733c6fSMatthias Ringwald uint16_t hci_number_free_acl_slots_for_connection_type(bd_addr_type_t address_type){
635ee303eddS[email protected] 
636f04a0c31SMatthias Ringwald     unsigned int num_packets_sent_classic = 0;
637f04a0c31SMatthias Ringwald     unsigned int num_packets_sent_le = 0;
638ee303eddS[email protected] 
639665d90f2SMatthias Ringwald     btstack_linked_item_t *it;
640a0da043fSMatthias Ringwald     for (it = (btstack_linked_item_t *) hci_stack->connections; it != NULL; it = it->next){
641998906cdSmatthias.ringwald         hci_connection_t * connection = (hci_connection_t *) it;
642ce41473eSMatthias Ringwald         if (hci_is_le_connection(connection)){
643ce41473eSMatthias Ringwald             num_packets_sent_le += connection->num_packets_sent;
644ce41473eSMatthias Ringwald         }
645f16129ceSMatthias Ringwald         if (connection->address_type == BD_ADDR_TYPE_ACL){
646ce41473eSMatthias Ringwald             num_packets_sent_classic += connection->num_packets_sent;
647ee303eddS[email protected]         }
648ee303eddS[email protected]     }
649d999b54eSMatthias Ringwald     log_debug("ACL classic buffers: %u used of %u", num_packets_sent_classic, hci_stack->acl_packets_total_num);
650ee303eddS[email protected]     int free_slots_classic = hci_stack->acl_packets_total_num - num_packets_sent_classic;
651ee303eddS[email protected]     int free_slots_le = 0;
652ee303eddS[email protected] 
653ee303eddS[email protected]     if (free_slots_classic < 0){
6549da54300S[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);
655998906cdSmatthias.ringwald         return 0;
656998906cdSmatthias.ringwald     }
657ee303eddS[email protected] 
658ee303eddS[email protected]     if (hci_stack->le_acl_packets_total_num){
659ee303eddS[email protected]         // if we have LE slots, they are used
660ee303eddS[email protected]         free_slots_le = hci_stack->le_acl_packets_total_num - num_packets_sent_le;
661ee303eddS[email protected]         if (free_slots_le < 0){
6629da54300S[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);
663ee303eddS[email protected]             return 0;
664998906cdSmatthias.ringwald         }
665ee303eddS[email protected]     } else {
666ee303eddS[email protected]         // otherwise, classic slots are used for LE, too
667ee303eddS[email protected]         free_slots_classic -= num_packets_sent_le;
668ee303eddS[email protected]         if (free_slots_classic < 0){
6699da54300S[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);
670ee303eddS[email protected]             return 0;
671ee303eddS[email protected]         }
672ee303eddS[email protected]     }
673ee303eddS[email protected] 
674ee303eddS[email protected]     switch (address_type){
675ee303eddS[email protected]         case BD_ADDR_TYPE_UNKNOWN:
6762125de09SMatthias Ringwald             log_error("hci_number_free_acl_slots: unknown address type");
677ee303eddS[email protected]             return 0;
678ee303eddS[email protected] 
679f16129ceSMatthias Ringwald         case BD_ADDR_TYPE_ACL:
6808f733c6fSMatthias Ringwald             return (uint16_t) free_slots_classic;
681ee303eddS[email protected] 
682ee303eddS[email protected]         default:
6838f733c6fSMatthias Ringwald            if (hci_stack->le_acl_packets_total_num > 0){
6848f733c6fSMatthias Ringwald                return (uint16_t) free_slots_le;
685ee303eddS[email protected]            }
6868f733c6fSMatthias Ringwald            return (uint16_t) free_slots_classic;
687cb00d3aaS[email protected]     }
688998906cdSmatthias.ringwald }
689998906cdSmatthias.ringwald 
6902125de09SMatthias Ringwald int hci_number_free_acl_slots_for_handle(hci_con_handle_t con_handle){
6912125de09SMatthias Ringwald     // get connection type
6922125de09SMatthias Ringwald     hci_connection_t * connection = hci_connection_for_handle(con_handle);
6932125de09SMatthias Ringwald     if (!connection){
6942125de09SMatthias Ringwald         log_error("hci_number_free_acl_slots: handle 0x%04x not in connection list", con_handle);
6952125de09SMatthias Ringwald         return 0;
6962125de09SMatthias Ringwald     }
6972125de09SMatthias Ringwald     return hci_number_free_acl_slots_for_connection_type(connection->address_type);
6982125de09SMatthias Ringwald }
6992125de09SMatthias Ringwald 
70035454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
701701e3307SMatthias Ringwald static int hci_number_free_sco_slots(void){
702f04a0c31SMatthias Ringwald     unsigned int num_sco_packets_sent  = 0;
703665d90f2SMatthias Ringwald     btstack_linked_item_t *it;
704760b20efSMatthias Ringwald     if (hci_stack->synchronous_flow_control_enabled){
705760b20efSMatthias Ringwald         // explicit flow control
706665d90f2SMatthias Ringwald         for (it = (btstack_linked_item_t *) hci_stack->connections; it ; it = it->next){
707e35edcc1S[email protected]             hci_connection_t * connection = (hci_connection_t *) it;
708ce41473eSMatthias Ringwald             if (connection->address_type != BD_ADDR_TYPE_SCO) continue;
709ce41473eSMatthias Ringwald             num_sco_packets_sent += connection->num_packets_sent;
710e35edcc1S[email protected]         }
711e35edcc1S[email protected]         if (num_sco_packets_sent > hci_stack->sco_packets_total_num){
712701e3307SMatthias Ringwald             log_info("hci_number_free_sco_slots:packets (%u) > total packets (%u)", num_sco_packets_sent, hci_stack->sco_packets_total_num);
71344d0e3d5S[email protected]             return 0;
71444d0e3d5S[email protected]         }
715e35edcc1S[email protected]         return hci_stack->sco_packets_total_num - num_sco_packets_sent;
71649205f5dSMatthias Ringwald     } else {
71749205f5dSMatthias Ringwald         // implicit flow control -- TODO
7186f28d2eeSMatthias Ringwald         int num_ready = 0;
7196f28d2eeSMatthias Ringwald         for (it = (btstack_linked_item_t *) hci_stack->connections; it ; it = it->next){
7206f28d2eeSMatthias Ringwald             hci_connection_t * connection = (hci_connection_t *) it;
7216f28d2eeSMatthias Ringwald             if (connection->address_type != BD_ADDR_TYPE_SCO) continue;
7226f28d2eeSMatthias Ringwald             if (connection->sco_tx_ready == 0) continue;
7236f28d2eeSMatthias Ringwald             num_ready++;
72449205f5dSMatthias Ringwald         }
7256f28d2eeSMatthias Ringwald         return num_ready;
7266f28d2eeSMatthias Ringwald     }
727e35edcc1S[email protected] }
72835454696SMatthias Ringwald #endif
72944d0e3d5S[email protected] 
7302b838201SMatthias Ringwald // only used to send HCI Host Number Completed Packets
7312b838201SMatthias Ringwald static int hci_can_send_comand_packet_transport(void){
732ac928cc2S[email protected]     if (hci_stack->hci_packet_buffer_reserved) return 0;
733ac928cc2S[email protected] 
734ac928cc2S[email protected]     // check for async hci transport implementations
735ac928cc2S[email protected]     if (hci_stack->hci_transport->can_send_packet_now){
736ac928cc2S[email protected]         if (!hci_stack->hci_transport->can_send_packet_now(HCI_COMMAND_DATA_PACKET)){
737ac928cc2S[email protected]             return 0;
738ac928cc2S[email protected]         }
739ac928cc2S[email protected]     }
7402b838201SMatthias Ringwald     return 1;
7412b838201SMatthias Ringwald }
742ac928cc2S[email protected] 
7432b838201SMatthias Ringwald // new functions replacing hci_can_send_packet_now[_using_packet_buffer]
7441972f31fSMatthias Ringwald bool hci_can_send_command_packet_now(void){
7451972f31fSMatthias Ringwald     if (hci_can_send_comand_packet_transport() == 0) return false;
7464ea43905SMatthias Ringwald     return hci_stack->num_cmd_packets > 0u;
747ac928cc2S[email protected] }
748ac928cc2S[email protected] 
7499d04d3a7SMatthias Ringwald static int hci_transport_can_send_prepared_packet_now(uint8_t packet_type){
750ac928cc2S[email protected]     // check for async hci transport implementations
7511972f31fSMatthias Ringwald     if (!hci_stack->hci_transport->can_send_packet_now) return true;
7529d04d3a7SMatthias Ringwald     return hci_stack->hci_transport->can_send_packet_now(packet_type);
753ac928cc2S[email protected] }
7549d04d3a7SMatthias Ringwald 
7551972f31fSMatthias Ringwald static bool hci_can_send_prepared_acl_packet_for_address_type(bd_addr_type_t address_type){
7561972f31fSMatthias Ringwald     if (!hci_transport_can_send_prepared_packet_now(HCI_ACL_DATA_PACKET)) return false;
7579d04d3a7SMatthias Ringwald     return hci_number_free_acl_slots_for_connection_type(address_type) > 0;
758ac928cc2S[email protected] }
7599d04d3a7SMatthias Ringwald 
7601972f31fSMatthias Ringwald bool hci_can_send_acl_le_packet_now(void){
7611972f31fSMatthias Ringwald     if (hci_stack->hci_packet_buffer_reserved) return false;
7629d04d3a7SMatthias Ringwald     return hci_can_send_prepared_acl_packet_for_address_type(BD_ADDR_TYPE_LE_PUBLIC);
7639d04d3a7SMatthias Ringwald }
7649d04d3a7SMatthias Ringwald 
7651972f31fSMatthias Ringwald bool hci_can_send_prepared_acl_packet_now(hci_con_handle_t con_handle) {
7661972f31fSMatthias Ringwald     if (!hci_transport_can_send_prepared_packet_now(HCI_ACL_DATA_PACKET)) return false;
767e79abdd6S[email protected]     return hci_number_free_acl_slots_for_handle(con_handle) > 0;
768ac928cc2S[email protected] }
769ac928cc2S[email protected] 
7701972f31fSMatthias Ringwald bool hci_can_send_acl_packet_now(hci_con_handle_t con_handle){
7711972f31fSMatthias Ringwald     if (hci_stack->hci_packet_buffer_reserved) return false;
772ac928cc2S[email protected]     return hci_can_send_prepared_acl_packet_now(con_handle);
7736b4af23dS[email protected] }
7746b4af23dS[email protected] 
77535454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
7761972f31fSMatthias Ringwald bool hci_can_send_acl_classic_packet_now(void){
7771972f31fSMatthias Ringwald     if (hci_stack->hci_packet_buffer_reserved) return false;
778f16129ceSMatthias Ringwald     return hci_can_send_prepared_acl_packet_for_address_type(BD_ADDR_TYPE_ACL);
77935454696SMatthias Ringwald }
78035454696SMatthias Ringwald 
7811972f31fSMatthias Ringwald bool hci_can_send_prepared_sco_packet_now(void){
7821972f31fSMatthias Ringwald     if (!hci_transport_can_send_prepared_packet_now(HCI_SCO_DATA_PACKET)) return false;
783f234b250SMatthias Ringwald     if (hci_have_usb_transport()){
784f234b250SMatthias Ringwald         return hci_stack->sco_can_send_now;
785f234b250SMatthias Ringwald     } else {
786701e3307SMatthias Ringwald         return hci_number_free_sco_slots() > 0;
78744d0e3d5S[email protected]     }
788f234b250SMatthias Ringwald }
78944d0e3d5S[email protected] 
7901972f31fSMatthias Ringwald bool hci_can_send_sco_packet_now(void){
7911972f31fSMatthias Ringwald     if (hci_stack->hci_packet_buffer_reserved) return false;
792701e3307SMatthias Ringwald     return hci_can_send_prepared_sco_packet_now();
79344d0e3d5S[email protected] }
79444d0e3d5S[email protected] 
795d057580eSMatthias Ringwald void hci_request_sco_can_send_now_event(void){
796d057580eSMatthias Ringwald     hci_stack->sco_waiting_for_can_send_now = 1;
797d057580eSMatthias Ringwald     hci_notify_if_sco_can_send_now();
798d057580eSMatthias Ringwald }
79935454696SMatthias Ringwald #endif
800d057580eSMatthias Ringwald 
80195d71764SMatthias Ringwald // used for internal checks in l2cap.c
80202c7fc01SMatthias Ringwald bool hci_is_packet_buffer_reserved(void){
803c8b9416aS[email protected]     return hci_stack->hci_packet_buffer_reserved;
804c8b9416aS[email protected] }
805c8b9416aS[email protected] 
8066b65794dSMilanka Ringwald // reserves outgoing packet buffer.
8076b65794dSMilanka Ringwald // @return 1 if successful
808cafc12e8SMatthias Ringwald bool hci_reserve_packet_buffer(void){
8099d14b626S[email protected]     if (hci_stack->hci_packet_buffer_reserved) {
8109d14b626S[email protected]         log_error("hci_reserve_packet_buffer called but buffer already reserved");
811cafc12e8SMatthias Ringwald         return false;
8129d14b626S[email protected]     }
81302c7fc01SMatthias Ringwald     hci_stack->hci_packet_buffer_reserved = true;
814cafc12e8SMatthias Ringwald     return true;
8156b4af23dS[email protected] }
8166b4af23dS[email protected] 
81768a0fcf7S[email protected] void hci_release_packet_buffer(void){
81802c7fc01SMatthias Ringwald     hci_stack->hci_packet_buffer_reserved = false;
81968a0fcf7S[email protected] }
82068a0fcf7S[email protected] 
8216b4af23dS[email protected] // assumption: synchronous implementations don't provide can_send_packet_now as they don't keep the buffer after the call
8227f02f414SMatthias Ringwald static int hci_transport_synchronous(void){
8236b4af23dS[email protected]     return hci_stack->hci_transport->can_send_packet_now == NULL;
8246b4af23dS[email protected] }
8256b4af23dS[email protected] 
8268ad9cf99SMatthias Ringwald // used for debugging
8278ad9cf99SMatthias Ringwald #ifdef ENABLE_CONTROLLER_DUMP_PACKETS
8288ad9cf99SMatthias Ringwald static void hci_controller_dump_packets(void){
8298ad9cf99SMatthias Ringwald     // format: "{handle:04x}:{count:02d} "
8308ad9cf99SMatthias Ringwald     char summaries[3][7 * 8 + 1];
8318ad9cf99SMatthias Ringwald     uint16_t totals[3];
8328ad9cf99SMatthias Ringwald     uint8_t index;
8338ad9cf99SMatthias Ringwald     for (index = 0 ; index < 3 ; index++){
8348ad9cf99SMatthias Ringwald         summaries[index][0] = 0;
8358ad9cf99SMatthias Ringwald         totals[index] = 0;
8368ad9cf99SMatthias Ringwald     }
8378ad9cf99SMatthias Ringwald     btstack_linked_item_t *it;
8388ad9cf99SMatthias Ringwald     for (it = (btstack_linked_item_t *) hci_stack->connections; it != NULL; it = it->next){
8398ad9cf99SMatthias Ringwald         hci_connection_t * connection = (hci_connection_t *) it;
8408ad9cf99SMatthias Ringwald         switch (connection->address_type){
8418ad9cf99SMatthias Ringwald             case BD_ADDR_TYPE_ACL:
8428ad9cf99SMatthias Ringwald                 index = 0;
8438ad9cf99SMatthias Ringwald                 break;
8448ad9cf99SMatthias Ringwald             case BD_ADDR_TYPE_SCO:
8458ad9cf99SMatthias Ringwald                 index = 2;
8468ad9cf99SMatthias Ringwald                 break;
8478ad9cf99SMatthias Ringwald             default:
8488ad9cf99SMatthias Ringwald                 index = 1;
849ce7ca7c8SMatthias Ringwald                 break;
8508ad9cf99SMatthias Ringwald         }
8518ad9cf99SMatthias Ringwald         totals[index] += connection->num_packets_sent;
8528ad9cf99SMatthias Ringwald         char item_text[10];
8538ad9cf99SMatthias Ringwald         sprintf(item_text, "%04x:%02d ", connection->con_handle,connection->num_packets_sent);
8548ad9cf99SMatthias Ringwald         btstack_strcat(summaries[index], sizeof(summaries[0]), item_text);
8558ad9cf99SMatthias Ringwald     }
8568ad9cf99SMatthias Ringwald     for (index = 0 ; index < 3 ; index++){
8578ad9cf99SMatthias Ringwald         if (summaries[index][0] == 0){
8588ad9cf99SMatthias Ringwald             summaries[index][0] = '-';
8598ad9cf99SMatthias Ringwald             summaries[index][1] = 0;
8608ad9cf99SMatthias Ringwald         }
8618ad9cf99SMatthias Ringwald     }
8628ad9cf99SMatthias Ringwald     log_info("Controller ACL BR/EDR: %s total %u / LE: %s total %u / SCO: %s total %u", summaries[0], totals[0], summaries[1], totals[1], summaries[2], totals[2]);
8638ad9cf99SMatthias Ringwald }
8648ad9cf99SMatthias Ringwald #endif
8658ad9cf99SMatthias Ringwald 
8663e2050f7SMatthias Ringwald static uint8_t hci_send_acl_packet_fragments(hci_connection_t *connection){
867452cf3bbS[email protected] 
868452cf3bbS[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);
869452cf3bbS[email protected] 
870452cf3bbS[email protected]     // max ACL data packet length depends on connection type (LE vs. Classic) and available buffers
871452cf3bbS[email protected]     uint16_t max_acl_data_packet_length = hci_stack->acl_data_packet_length;
8724ea43905SMatthias Ringwald     if (hci_is_le_connection(connection) && (hci_stack->le_data_packets_length > 0u)){
873452cf3bbS[email protected]         max_acl_data_packet_length = hci_stack->le_data_packets_length;
874452cf3bbS[email protected]     }
875452cf3bbS[email protected] 
8760f3b27c5SMatthias Ringwald #ifdef ENABLE_LE_LIMIT_ACL_FRAGMENT_BY_MAX_OCTETS
877fcf88f47SMatthias Ringwald     if (hci_is_le_connection(connection) && (connection->le_max_tx_octets < max_acl_data_packet_length)){
8780f3b27c5SMatthias Ringwald         max_acl_data_packet_length = connection->le_max_tx_octets;
8790f3b27c5SMatthias Ringwald     }
8800f3b27c5SMatthias Ringwald #endif
881452cf3bbS[email protected] 
882d999b54eSMatthias Ringwald     log_debug("hci_send_acl_packet_fragments entered");
883d999b54eSMatthias Ringwald 
8843e2050f7SMatthias Ringwald     uint8_t status = ERROR_CODE_SUCCESS;
885452cf3bbS[email protected]     // multiple packets could be send on a synchronous HCI transport
886ff3cc4a5SMatthias Ringwald     while (true){
887452cf3bbS[email protected] 
888d999b54eSMatthias Ringwald         log_debug("hci_send_acl_packet_fragments loop entered");
889d999b54eSMatthias Ringwald 
890452cf3bbS[email protected]         // get current data
8914ea43905SMatthias Ringwald         const uint16_t acl_header_pos = hci_stack->acl_fragmentation_pos - 4u;
892452cf3bbS[email protected]         int current_acl_data_packet_length = hci_stack->acl_fragmentation_total_size - hci_stack->acl_fragmentation_pos;
8931979f09cSMatthias Ringwald         bool more_fragments = false;
894452cf3bbS[email protected] 
895452cf3bbS[email protected]         // if ACL packet is larger than Bluetooth packet buffer, only send max_acl_data_packet_length
896452cf3bbS[email protected]         if (current_acl_data_packet_length > max_acl_data_packet_length){
8971979f09cSMatthias Ringwald             more_fragments = true;
8986bcf18c2SMatthias Ringwald             current_acl_data_packet_length = max_acl_data_packet_length & (~(HCI_ACL_CHUNK_SIZE_ALIGNMENT-1));
899452cf3bbS[email protected]         }
900452cf3bbS[email protected] 
901452cf3bbS[email protected]         // copy handle_and_flags if not first fragment and update packet boundary flags to be 01 (continuing fragmnent)
9024ea43905SMatthias Ringwald         if (acl_header_pos > 0u){
903f8fbdce0SMatthias Ringwald             uint16_t handle_and_flags = little_endian_read_16(hci_stack->hci_packet_buffer, 0);
9044ea43905SMatthias Ringwald             handle_and_flags = (handle_and_flags & 0xcfffu) | (1u << 12u);
905f8fbdce0SMatthias Ringwald             little_endian_store_16(hci_stack->hci_packet_buffer, acl_header_pos, handle_and_flags);
906452cf3bbS[email protected]         }
907452cf3bbS[email protected] 
908452cf3bbS[email protected]         // update header len
9094ea43905SMatthias Ringwald         little_endian_store_16(hci_stack->hci_packet_buffer, acl_header_pos + 2u, current_acl_data_packet_length);
910452cf3bbS[email protected] 
911452cf3bbS[email protected]         // count packet
912ce41473eSMatthias Ringwald         connection->num_packets_sent++;
9131979f09cSMatthias Ringwald         log_debug("hci_send_acl_packet_fragments loop before send (more fragments %d)", (int) more_fragments);
914d999b54eSMatthias Ringwald 
915d999b54eSMatthias Ringwald         // update state for next fragment (if any) as "transport done" might be sent during send_packet already
916d999b54eSMatthias Ringwald         if (more_fragments){
917d999b54eSMatthias Ringwald             // update start of next fragment to send
918d999b54eSMatthias Ringwald             hci_stack->acl_fragmentation_pos += current_acl_data_packet_length;
919d999b54eSMatthias Ringwald         } else {
920d999b54eSMatthias Ringwald             // done
921d999b54eSMatthias Ringwald             hci_stack->acl_fragmentation_pos = 0;
922d999b54eSMatthias Ringwald             hci_stack->acl_fragmentation_total_size = 0;
923d999b54eSMatthias Ringwald         }
924452cf3bbS[email protected] 
925452cf3bbS[email protected]         // send packet
926452cf3bbS[email protected]         uint8_t * packet = &hci_stack->hci_packet_buffer[acl_header_pos];
927452cf3bbS[email protected]         const int size = current_acl_data_packet_length + 4;
9285bb5bc3eS[email protected]         hci_dump_packet(HCI_ACL_DATA_PACKET, 0, packet, size);
92981d2bdb2SMatthias Ringwald         hci_stack->acl_fragmentation_tx_active = 1;
9303e2050f7SMatthias Ringwald         int err = hci_stack->hci_transport->send_packet(HCI_ACL_DATA_PACKET, packet, size);
9313e2050f7SMatthias Ringwald         if (err != 0){
9323e2050f7SMatthias Ringwald             // no error from HCI Transport expected
9333e2050f7SMatthias Ringwald             status = ERROR_CODE_HARDWARE_FAILURE;
9343e2050f7SMatthias Ringwald         }
935452cf3bbS[email protected] 
9368ad9cf99SMatthias Ringwald #ifdef ENABLE_CONTROLLER_DUMP_PACKETS
9378ad9cf99SMatthias Ringwald         hci_controller_dump_packets();
9388ad9cf99SMatthias Ringwald #endif
9398ad9cf99SMatthias Ringwald 
9401979f09cSMatthias Ringwald         log_debug("hci_send_acl_packet_fragments loop after send (more fragments %d)", (int) more_fragments);
941d999b54eSMatthias Ringwald 
942452cf3bbS[email protected]         // done yet?
943452cf3bbS[email protected]         if (!more_fragments) break;
944452cf3bbS[email protected] 
945452cf3bbS[email protected]         // can send more?
9463e2050f7SMatthias Ringwald         if (!hci_can_send_prepared_acl_packet_now(connection->con_handle)) return status;
947452cf3bbS[email protected]     }
948452cf3bbS[email protected] 
949d999b54eSMatthias Ringwald     log_debug("hci_send_acl_packet_fragments loop over");
950452cf3bbS[email protected] 
951d051460cS[email protected]     // release buffer now for synchronous transport
952203bace6S[email protected]     if (hci_transport_synchronous()){
95381d2bdb2SMatthias Ringwald         hci_stack->acl_fragmentation_tx_active = 0;
954452cf3bbS[email protected]         hci_release_packet_buffer();
955fd43c0e0SMatthias Ringwald         hci_emit_transport_packet_sent();
956452cf3bbS[email protected]     }
957452cf3bbS[email protected] 
9583e2050f7SMatthias Ringwald     return status;
959452cf3bbS[email protected] }
960452cf3bbS[email protected] 
961826f7347S[email protected] // pre: caller has reserved the packet buffer
9623e2050f7SMatthias Ringwald uint8_t hci_send_acl_packet_buffer(int size){
9633e2050f7SMatthias Ringwald     btstack_assert(hci_stack->hci_packet_buffer_reserved);
964826f7347S[email protected] 
965d713a683S[email protected]     uint8_t * packet = hci_stack->hci_packet_buffer;
966d713a683S[email protected]     hci_con_handle_t con_handle = READ_ACL_CONNECTION_HANDLE(packet);
967d713a683S[email protected] 
9685061f3afS[email protected]     hci_connection_t *connection = hci_connection_for_handle( con_handle);
96997b61c7bS[email protected]     if (!connection) {
9705fa0b7cfS[email protected]         log_error("hci_send_acl_packet_buffer called but no connection for handle 0x%04x", con_handle);
97197b61c7bS[email protected]         hci_release_packet_buffer();
972068b8592SMatthias Ringwald         hci_emit_transport_packet_sent();
9733e2050f7SMatthias Ringwald         return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
97497b61c7bS[email protected]     }
97552db98b2SMatthias Ringwald 
97679a2851bSMilanka Ringwald     // check for free places on Bluetooth module
97779a2851bSMilanka Ringwald     if (!hci_can_send_prepared_acl_packet_now(con_handle)) {
97879a2851bSMilanka Ringwald         log_error("hci_send_acl_packet_buffer called but no free ACL buffers on controller");
97979a2851bSMilanka Ringwald         hci_release_packet_buffer();
98079a2851bSMilanka Ringwald         hci_emit_transport_packet_sent();
98179a2851bSMilanka Ringwald         return BTSTACK_ACL_BUFFERS_FULL;
98279a2851bSMilanka Ringwald     }
98379a2851bSMilanka Ringwald 
98452db98b2SMatthias Ringwald #ifdef ENABLE_CLASSIC
98556cf178bSmatthias.ringwald     hci_connection_timestamp(connection);
98652db98b2SMatthias Ringwald #endif
98756cf178bSmatthias.ringwald 
988452cf3bbS[email protected]     // hci_dump_packet( HCI_ACL_DATA_PACKET, 0, packet, size);
9897856c818Smatthias.ringwald 
990452cf3bbS[email protected]     // setup data
991452cf3bbS[email protected]     hci_stack->acl_fragmentation_total_size = size;
992452cf3bbS[email protected]     hci_stack->acl_fragmentation_pos = 4;   // start of L2CAP packet
9936218e6f1Smatthias.ringwald 
994452cf3bbS[email protected]     return hci_send_acl_packet_fragments(connection);
995ee091cf1Smatthias.ringwald }
996ee091cf1Smatthias.ringwald 
99735454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
99844d0e3d5S[email protected] // pre: caller has reserved the packet buffer
9993e2050f7SMatthias Ringwald uint8_t hci_send_sco_packet_buffer(int size){
10003e2050f7SMatthias Ringwald     btstack_assert(hci_stack->hci_packet_buffer_reserved);
100144d0e3d5S[email protected] 
100244d0e3d5S[email protected]     uint8_t * packet = hci_stack->hci_packet_buffer;
10034b3e1e19SMatthias Ringwald 
10044b3e1e19SMatthias Ringwald     // skip checks in loopback mode
10054b3e1e19SMatthias Ringwald     if (!hci_stack->loopback_mode){
100644d0e3d5S[email protected]         hci_con_handle_t con_handle = READ_ACL_CONNECTION_HANDLE(packet);   // same for ACL and SCO
100744d0e3d5S[email protected] 
100844d0e3d5S[email protected]         // check for free places on Bluetooth module
1009701e3307SMatthias Ringwald         if (!hci_can_send_prepared_sco_packet_now()) {
1010cbf638a9SMatthias Ringwald             log_error("hci_send_sco_packet_buffer called but no free SCO buffers on controller");
101144d0e3d5S[email protected]             hci_release_packet_buffer();
1012068b8592SMatthias Ringwald             hci_emit_transport_packet_sent();
101344d0e3d5S[email protected]             return BTSTACK_ACL_BUFFERS_FULL;
101444d0e3d5S[email protected]         }
101544d0e3d5S[email protected] 
1016e35edcc1S[email protected]         // track send packet in connection struct
1017e35edcc1S[email protected]         hci_connection_t *connection = hci_connection_for_handle( con_handle);
1018e35edcc1S[email protected]         if (!connection) {
1019e35edcc1S[email protected]             log_error("hci_send_sco_packet_buffer called but no connection for handle 0x%04x", con_handle);
1020e35edcc1S[email protected]             hci_release_packet_buffer();
1021068b8592SMatthias Ringwald             hci_emit_transport_packet_sent();
10223e2050f7SMatthias Ringwald             return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
1023e35edcc1S[email protected]         }
1024f234b250SMatthias Ringwald 
1025f234b250SMatthias Ringwald         if (hci_have_usb_transport()){
1026f234b250SMatthias Ringwald             // token used
10271972f31fSMatthias Ringwald             hci_stack->sco_can_send_now = false;
1028f234b250SMatthias Ringwald         } else {
1029760b20efSMatthias Ringwald             if (hci_stack->synchronous_flow_control_enabled){
1030ce41473eSMatthias Ringwald                 connection->num_packets_sent++;
10316f28d2eeSMatthias Ringwald             } else {
1032e4157653SMatthias Ringwald                 connection->sco_tx_ready--;
1033760b20efSMatthias Ringwald             }
10344b3e1e19SMatthias Ringwald         }
1035f234b250SMatthias Ringwald     }
103644d0e3d5S[email protected] 
103744d0e3d5S[email protected]     hci_dump_packet( HCI_SCO_DATA_PACKET, 0, packet, size);
1038543e835cSMatthias Ringwald 
103943149fc9SMatthias Ringwald #ifdef HAVE_SCO_TRANSPORT
104043149fc9SMatthias Ringwald     hci_stack->sco_transport->send_packet(packet, size);
104143149fc9SMatthias Ringwald     hci_release_packet_buffer();
104243149fc9SMatthias Ringwald     hci_emit_transport_packet_sent();
104343149fc9SMatthias Ringwald 
104443149fc9SMatthias Ringwald     return 0;
104543149fc9SMatthias Ringwald #else
104643149fc9SMatthias Ringwald     int err = hci_stack->hci_transport->send_packet(HCI_SCO_DATA_PACKET, packet, size);
1047543e835cSMatthias Ringwald     if (hci_transport_synchronous()){
1048543e835cSMatthias Ringwald         hci_release_packet_buffer();
1049fd43c0e0SMatthias Ringwald         hci_emit_transport_packet_sent();
1050543e835cSMatthias Ringwald     }
1051543e835cSMatthias Ringwald 
10523e2050f7SMatthias Ringwald     if (err != 0){
10533e2050f7SMatthias Ringwald         return ERROR_CODE_HARDWARE_FAILURE;
10543e2050f7SMatthias Ringwald     }
10553e2050f7SMatthias Ringwald     return ERROR_CODE_SUCCESS;
105643149fc9SMatthias Ringwald #endif
105744d0e3d5S[email protected] }
105835454696SMatthias Ringwald #endif
105944d0e3d5S[email protected] 
10600a8cccd5SMatthias Ringwald #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
106168ab6207SMatthias Ringwald static uint8_t hci_send_iso_packet_fragments(void){
106268ab6207SMatthias Ringwald 
106368ab6207SMatthias Ringwald     uint16_t max_iso_data_packet_length = hci_stack->le_iso_packets_length;
106468ab6207SMatthias Ringwald     uint8_t status = ERROR_CODE_SUCCESS;
106568ab6207SMatthias Ringwald     // multiple packets could be send on a synchronous HCI transport
106668ab6207SMatthias Ringwald     while (true){
106768ab6207SMatthias Ringwald 
106868ab6207SMatthias Ringwald         // get current data
106968ab6207SMatthias Ringwald         const uint16_t iso_header_pos = hci_stack->iso_fragmentation_pos - 4u;
107068ab6207SMatthias Ringwald         int current_iso_data_packet_length = hci_stack->iso_fragmentation_total_size - hci_stack->iso_fragmentation_pos;
107168ab6207SMatthias Ringwald         bool more_fragments = false;
107268ab6207SMatthias Ringwald 
107368ab6207SMatthias Ringwald         // if ISO packet is larger than Bluetooth packet buffer, only send max_acl_data_packet_length
107468ab6207SMatthias Ringwald         if (current_iso_data_packet_length > max_iso_data_packet_length){
107568ab6207SMatthias Ringwald             more_fragments = true;
107668ab6207SMatthias Ringwald             current_iso_data_packet_length = max_iso_data_packet_length;
107768ab6207SMatthias Ringwald         }
107868ab6207SMatthias Ringwald 
107968ab6207SMatthias Ringwald         // copy handle_and_flags if not first fragment and update packet boundary flags to be 01 (continuing fragmnent)
108068ab6207SMatthias Ringwald         uint16_t handle_and_flags = little_endian_read_16(hci_stack->hci_packet_buffer, 0);
108168ab6207SMatthias Ringwald         uint8_t pb_flags;
108268ab6207SMatthias Ringwald         if (iso_header_pos == 0u){
108368ab6207SMatthias Ringwald             // first fragment, keep TS field
108468ab6207SMatthias Ringwald             pb_flags = more_fragments ? 0x00 : 0x02;
108568ab6207SMatthias Ringwald             handle_and_flags = (handle_and_flags & 0x4fffu) | (pb_flags << 12u);
108668ab6207SMatthias Ringwald         } else {
108768ab6207SMatthias Ringwald             // later fragment, drop TS field
108868ab6207SMatthias Ringwald             pb_flags = more_fragments ? 0x01 : 0x03;
108968ab6207SMatthias Ringwald             handle_and_flags = (handle_and_flags & 0x0fffu) | (pb_flags << 12u);
109068ab6207SMatthias Ringwald         }
109168ab6207SMatthias Ringwald         little_endian_store_16(hci_stack->hci_packet_buffer, iso_header_pos, handle_and_flags);
109268ab6207SMatthias Ringwald 
109368ab6207SMatthias Ringwald         // update header len
109468ab6207SMatthias Ringwald         little_endian_store_16(hci_stack->hci_packet_buffer, iso_header_pos + 2u, current_iso_data_packet_length);
109568ab6207SMatthias Ringwald 
109668ab6207SMatthias Ringwald         // update state for next fragment (if any) as "transport done" might be sent during send_packet already
109768ab6207SMatthias Ringwald         if (more_fragments){
109868ab6207SMatthias Ringwald             // update start of next fragment to send
109968ab6207SMatthias Ringwald             hci_stack->iso_fragmentation_pos += current_iso_data_packet_length;
110068ab6207SMatthias Ringwald         } else {
110168ab6207SMatthias Ringwald             // done
110268ab6207SMatthias Ringwald             hci_stack->iso_fragmentation_pos = 0;
110368ab6207SMatthias Ringwald             hci_stack->iso_fragmentation_total_size = 0;
110468ab6207SMatthias Ringwald         }
110568ab6207SMatthias Ringwald 
110668ab6207SMatthias Ringwald         // send packet
110768ab6207SMatthias Ringwald         uint8_t * packet = &hci_stack->hci_packet_buffer[iso_header_pos];
110868ab6207SMatthias Ringwald         const int size = current_iso_data_packet_length + 4;
110968ab6207SMatthias Ringwald         hci_dump_packet(HCI_ISO_DATA_PACKET, 0, packet, size);
111068ab6207SMatthias Ringwald         hci_stack->iso_fragmentation_tx_active = true;
111168ab6207SMatthias Ringwald         int err = hci_stack->hci_transport->send_packet(HCI_ISO_DATA_PACKET, packet, size);
111268ab6207SMatthias Ringwald         if (err != 0){
111368ab6207SMatthias Ringwald             // no error from HCI Transport expected
111468ab6207SMatthias Ringwald             status = ERROR_CODE_HARDWARE_FAILURE;
111568ab6207SMatthias Ringwald         }
111668ab6207SMatthias Ringwald 
111768ab6207SMatthias Ringwald         // done yet?
111868ab6207SMatthias Ringwald         if (!more_fragments) break;
111968ab6207SMatthias Ringwald 
112068ab6207SMatthias Ringwald         // can send more?
112168ab6207SMatthias Ringwald         if (!hci_transport_can_send_prepared_packet_now(HCI_ISO_DATA_PACKET)) return false;
112268ab6207SMatthias Ringwald     }
112368ab6207SMatthias Ringwald 
112468ab6207SMatthias Ringwald     // release buffer now for synchronous transport
112568ab6207SMatthias Ringwald     if (hci_transport_synchronous()){
112668ab6207SMatthias Ringwald         hci_stack->iso_fragmentation_tx_active = false;
112768ab6207SMatthias Ringwald         hci_release_packet_buffer();
112868ab6207SMatthias Ringwald         hci_emit_transport_packet_sent();
112968ab6207SMatthias Ringwald     }
113068ab6207SMatthias Ringwald 
113168ab6207SMatthias Ringwald     return status;
113268ab6207SMatthias Ringwald }
113368ab6207SMatthias Ringwald 
1134ace08712SMatthias Ringwald uint8_t hci_send_iso_packet_buffer(uint16_t size){
1135ace08712SMatthias Ringwald     btstack_assert(hci_stack->hci_packet_buffer_reserved);
1136ace08712SMatthias Ringwald 
1137e5413aa0SMatthias Ringwald     hci_con_handle_t con_handle = (hci_con_handle_t) little_endian_read_16(hci_stack->hci_packet_buffer, 0) & 0xfff;
1138e5413aa0SMatthias Ringwald     hci_iso_stream_t * iso_stream = hci_iso_stream_for_con_handle(con_handle);
1139e5413aa0SMatthias Ringwald     if (iso_stream == NULL){
1140977f918dSMatthias Ringwald         hci_release_packet_buffer();
1141977f918dSMatthias Ringwald         hci_iso_notify_can_send_now();
1142e5413aa0SMatthias Ringwald         return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
1143e5413aa0SMatthias Ringwald     }
1144e5413aa0SMatthias Ringwald 
1145e5413aa0SMatthias Ringwald     // TODO: check for space on controller
1146e5413aa0SMatthias Ringwald 
1147977f918dSMatthias Ringwald     // skip iso packets if needed
1148977f918dSMatthias Ringwald     if (iso_stream->num_packets_to_skip > 0){
1149977f918dSMatthias Ringwald         iso_stream->num_packets_to_skip--;
1150977f918dSMatthias Ringwald         // pretend it was processed and trigger next one
1151977f918dSMatthias Ringwald         hci_release_packet_buffer();
1152977f918dSMatthias Ringwald         hci_iso_notify_can_send_now();
1153977f918dSMatthias Ringwald         return ERROR_CODE_SUCCESS;
1154977f918dSMatthias Ringwald     }
1155977f918dSMatthias Ringwald 
1156e5413aa0SMatthias Ringwald     // track outgoing packet sent
1157e5413aa0SMatthias Ringwald     log_info("Outgoing ISO packet for con handle 0x%04x", con_handle);
1158e5413aa0SMatthias Ringwald     iso_stream->num_packets_sent++;
1159e5413aa0SMatthias Ringwald 
116068ab6207SMatthias Ringwald     // setup data
116168ab6207SMatthias Ringwald     hci_stack->iso_fragmentation_total_size = size;
116268ab6207SMatthias Ringwald     hci_stack->iso_fragmentation_pos = 4;   // start of L2CAP packet
116368ab6207SMatthias Ringwald 
116468ab6207SMatthias Ringwald     return hci_send_iso_packet_fragments();
1165ace08712SMatthias Ringwald }
1166ace08712SMatthias Ringwald #endif
1167ace08712SMatthias Ringwald 
1168c3b46f5aSMatthias Ringwald static void acl_handler(uint8_t *packet, uint16_t size){
1169e76a89eeS[email protected] 
11707856c818Smatthias.ringwald     // get info
11717856c818Smatthias.ringwald     hci_con_handle_t con_handle = READ_ACL_CONNECTION_HANDLE(packet);
11725061f3afS[email protected]     hci_connection_t *conn      = hci_connection_for_handle(con_handle);
11737856c818Smatthias.ringwald     uint8_t  acl_flags          = READ_ACL_FLAGS(packet);
11747856c818Smatthias.ringwald     uint16_t acl_length         = READ_ACL_LENGTH(packet);
11757856c818Smatthias.ringwald 
11767856c818Smatthias.ringwald     // ignore non-registered handle
11777856c818Smatthias.ringwald     if (!conn){
1178c3b46f5aSMatthias Ringwald         log_error("acl_handler called with non-registered handle %u!" , con_handle);
11797856c818Smatthias.ringwald         return;
11807856c818Smatthias.ringwald     }
11817856c818Smatthias.ringwald 
1182e76a89eeS[email protected]     // assert packet is complete
11834ea43905SMatthias Ringwald     if ((acl_length + 4u) != size){
1184c3b46f5aSMatthias Ringwald         log_error("acl_handler called with ACL packet of wrong size %d, expected %u => dropping packet", size, acl_length + 4);
1185e76a89eeS[email protected]         return;
1186e76a89eeS[email protected]     }
1187e76a89eeS[email protected] 
118852db98b2SMatthias Ringwald #ifdef ENABLE_CLASSIC
11897856c818Smatthias.ringwald     // update idle timestamp
11907856c818Smatthias.ringwald     hci_connection_timestamp(conn);
119152db98b2SMatthias Ringwald #endif
11927856c818Smatthias.ringwald 
11932b838201SMatthias Ringwald #ifdef ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL
11942b838201SMatthias Ringwald     hci_stack->host_completed_packets = 1;
11952b838201SMatthias Ringwald     conn->num_packets_completed++;
11962b838201SMatthias Ringwald #endif
11972b838201SMatthias Ringwald 
11987856c818Smatthias.ringwald     // handle different packet types
11994ea43905SMatthias Ringwald     switch (acl_flags & 0x03u) {
12007856c818Smatthias.ringwald 
12017856c818Smatthias.ringwald         case 0x01: // continuation fragment
12027856c818Smatthias.ringwald 
12030ca847afS[email protected]             // sanity checks
12044ea43905SMatthias Ringwald             if (conn->acl_recombination_pos == 0u) {
12059da54300S[email protected]                 log_error( "ACL Cont Fragment but no first fragment for handle 0x%02x", con_handle);
12067856c818Smatthias.ringwald                 return;
12077856c818Smatthias.ringwald             }
12084ea43905SMatthias Ringwald             if ((conn->acl_recombination_pos + acl_length) > (4u + HCI_ACL_BUFFER_SIZE)){
12090ca847afS[email protected]                 log_error( "ACL Cont Fragment to large: combined packet %u > buffer size %u for handle 0x%02x",
12100ca847afS[email protected]                     conn->acl_recombination_pos + acl_length, 4 + HCI_ACL_BUFFER_SIZE, con_handle);
12110ca847afS[email protected]                 conn->acl_recombination_pos = 0;
12120ca847afS[email protected]                 return;
12130ca847afS[email protected]             }
12147856c818Smatthias.ringwald 
12157856c818Smatthias.ringwald             // append fragment payload (header already stored)
12166535961aSMatthias Ringwald             (void)memcpy(&conn->acl_recombination_buffer[HCI_INCOMING_PRE_BUFFER_SIZE + conn->acl_recombination_pos],
12176535961aSMatthias Ringwald                          &packet[4], acl_length);
12187856c818Smatthias.ringwald             conn->acl_recombination_pos += acl_length;
12197856c818Smatthias.ringwald 
12207856c818Smatthias.ringwald             // forward complete L2CAP packet if complete.
12214ea43905SMatthias Ringwald             if (conn->acl_recombination_pos >= (conn->acl_recombination_length + 4u + 4u)){ // pos already incl. ACL header
1222d6b06661SMatthias Ringwald                 hci_emit_acl_packet(&conn->acl_recombination_buffer[HCI_INCOMING_PRE_BUFFER_SIZE], conn->acl_recombination_pos);
12237856c818Smatthias.ringwald                 // reset recombination buffer
12247856c818Smatthias.ringwald                 conn->acl_recombination_length = 0;
12257856c818Smatthias.ringwald                 conn->acl_recombination_pos = 0;
12267856c818Smatthias.ringwald             }
12277856c818Smatthias.ringwald             break;
12287856c818Smatthias.ringwald 
12297856c818Smatthias.ringwald         case 0x02: { // first fragment
12307856c818Smatthias.ringwald 
123123a77e1aS[email protected]             // sanity check
123223a77e1aS[email protected]             if (conn->acl_recombination_pos) {
123360737d2bSMatthias Ringwald                 // we just received the first fragment, but still have data. Only warn if the packet wasn't a flushable packet
123460737d2bSMatthias Ringwald                 if ((conn->acl_recombination_buffer[HCI_INCOMING_PRE_BUFFER_SIZE+1] >> 4) != 0x02){
123560737d2bSMatthias Ringwald                     log_error( "ACL First Fragment but %u bytes in buffer for handle 0x%02x, dropping stale fragments", conn->acl_recombination_pos, con_handle);
123660737d2bSMatthias Ringwald                 }
123723a77e1aS[email protected]                 conn->acl_recombination_pos = 0;
123823a77e1aS[email protected]             }
123923a77e1aS[email protected] 
12407856c818Smatthias.ringwald             // peek into L2CAP packet!
12417856c818Smatthias.ringwald             uint16_t l2cap_length = READ_L2CAP_LENGTH( packet );
12427856c818Smatthias.ringwald 
12437856c818Smatthias.ringwald             // compare fragment size to L2CAP packet size
12444ea43905SMatthias Ringwald             if (acl_length >= (l2cap_length + 4u)){
12457856c818Smatthias.ringwald                 // forward fragment as L2CAP packet
12464ea43905SMatthias Ringwald                 hci_emit_acl_packet(packet, acl_length + 4u);
12477856c818Smatthias.ringwald             } else {
12480ca847afS[email protected] 
12490ca847afS[email protected]                 if (acl_length > HCI_ACL_BUFFER_SIZE){
12500ca847afS[email protected]                     log_error( "ACL First Fragment to large: fragment %u > buffer size %u for handle 0x%02x",
12510ca847afS[email protected]                         4 + acl_length, 4 + HCI_ACL_BUFFER_SIZE, con_handle);
12520ca847afS[email protected]                     return;
12530ca847afS[email protected]                 }
12540ca847afS[email protected] 
12557856c818Smatthias.ringwald                 // store first fragment and tweak acl length for complete package
12566535961aSMatthias Ringwald                 (void)memcpy(&conn->acl_recombination_buffer[HCI_INCOMING_PRE_BUFFER_SIZE],
12574ea43905SMatthias Ringwald                              packet, acl_length + 4u);
12584ea43905SMatthias Ringwald                 conn->acl_recombination_pos    = acl_length + 4u;
12597856c818Smatthias.ringwald                 conn->acl_recombination_length = l2cap_length;
12604ea43905SMatthias Ringwald                 little_endian_store_16(conn->acl_recombination_buffer, HCI_INCOMING_PRE_BUFFER_SIZE + 2u, l2cap_length +4u);
12617856c818Smatthias.ringwald             }
12627856c818Smatthias.ringwald             break;
12637856c818Smatthias.ringwald 
12647856c818Smatthias.ringwald         }
12657856c818Smatthias.ringwald         default:
1266c3b46f5aSMatthias Ringwald             log_error( "acl_handler called with invalid packet boundary flags %u", acl_flags & 0x03);
12677856c818Smatthias.ringwald             return;
12687856c818Smatthias.ringwald     }
126994ab26f8Smatthias.ringwald 
127094ab26f8Smatthias.ringwald     // execute main loop
127194ab26f8Smatthias.ringwald     hci_run();
127216833f0aSmatthias.ringwald }
127322909952Smatthias.ringwald 
12741ab2dc58SMatthias Ringwald static void hci_connection_stop_timer(hci_connection_t * conn){
12751ab2dc58SMatthias Ringwald     btstack_run_loop_remove_timer(&conn->timeout);
12761ab2dc58SMatthias Ringwald #ifdef ENABLE_CLASSIC
12771ab2dc58SMatthias Ringwald     btstack_run_loop_remove_timer(&conn->timeout_sco);
12781ab2dc58SMatthias Ringwald #endif
12791ab2dc58SMatthias Ringwald }
12801ab2dc58SMatthias Ringwald 
128167a3e8ecSmatthias.ringwald static void hci_shutdown_connection(hci_connection_t *conn){
12829da54300S[email protected]     log_info("Connection closed: handle 0x%x, %s", conn->con_handle, bd_addr_to_str(conn->address));
12833c4d4b90Smatthias.ringwald 
1284b3264428SMatthias Ringwald #ifdef ENABLE_CLASSIC
1285cb70c5abSMatthias Ringwald #if defined(ENABLE_SCO_OVER_HCI) || defined(HAVE_SCO_TRANSPORT)
1286cb70c5abSMatthias Ringwald     bd_addr_type_t addr_type = conn->address_type;
1287cb70c5abSMatthias Ringwald #endif
1288cb70c5abSMatthias Ringwald #ifdef HAVE_SCO_TRANSPORT
1289cb70c5abSMatthias Ringwald     hci_con_handle_t con_handle = conn->con_handle;
1290ee752bb8SMatthias Ringwald #endif
1291b3264428SMatthias Ringwald #endif
1292ee752bb8SMatthias Ringwald 
12931ab2dc58SMatthias Ringwald     hci_connection_stop_timer(conn);
1294c785ef68Smatthias.ringwald 
1295665d90f2SMatthias Ringwald     btstack_linked_list_remove(&hci_stack->connections, (btstack_linked_item_t *) conn);
1296a3b02b71Smatthias.ringwald     btstack_memory_hci_connection_free( conn );
12973c4d4b90Smatthias.ringwald 
12983c4d4b90Smatthias.ringwald     // now it's gone
1299c7e0c5f6Smatthias.ringwald     hci_emit_nr_connections_changed();
1300ee752bb8SMatthias Ringwald 
1301b3264428SMatthias Ringwald #ifdef ENABLE_CLASSIC
1302034e9b53SMatthias Ringwald #ifdef ENABLE_SCO_OVER_HCI
1303ee752bb8SMatthias Ringwald     // update SCO
1304cb70c5abSMatthias Ringwald     if ((addr_type == BD_ADDR_TYPE_SCO) && (hci_stack->hci_transport != NULL) && (hci_stack->hci_transport->set_sco_config != NULL)){
1305ee752bb8SMatthias Ringwald         hci_stack->hci_transport->set_sco_config(hci_stack->sco_voice_setting_active, hci_number_sco_connections());
1306ee752bb8SMatthias Ringwald     }
1307034e9b53SMatthias Ringwald #endif
1308cb70c5abSMatthias Ringwald #ifdef HAVE_SCO_TRANSPORT
1309cb70c5abSMatthias Ringwald     if ((addr_type == BD_ADDR_TYPE_SCO) && (hci_stack->sco_transport != NULL)){
1310cb70c5abSMatthias Ringwald         hci_stack->sco_transport->close(con_handle);
1311cb70c5abSMatthias Ringwald     }
1312cb70c5abSMatthias Ringwald #endif
1313b3264428SMatthias Ringwald #endif
1314c7e0c5f6Smatthias.ringwald }
1315c7e0c5f6Smatthias.ringwald 
131635454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
131735454696SMatthias Ringwald 
131829e39de4SMatthias Ringwald static const uint16_t hci_acl_packet_type_sizes[] = {
13198f8108aaSmatthias.ringwald     0, HCI_ACL_2DH1_SIZE, HCI_ACL_3DH1_SIZE, HCI_ACL_DM1_SIZE,
13208f8108aaSmatthias.ringwald     HCI_ACL_DH1_SIZE, 0, 0, 0,
13218f8108aaSmatthias.ringwald     HCI_ACL_2DH3_SIZE, HCI_ACL_3DH3_SIZE, HCI_ACL_DM3_SIZE, HCI_ACL_DH3_SIZE,
13228f8108aaSmatthias.ringwald     HCI_ACL_2DH5_SIZE, HCI_ACL_3DH5_SIZE, HCI_ACL_DM5_SIZE, HCI_ACL_DH5_SIZE
13238f8108aaSmatthias.ringwald };
132429e39de4SMatthias Ringwald static const uint8_t hci_acl_packet_type_feature_requirement_bit[] = {
132565389bfcS[email protected]      0, // 3 slot packets
132665389bfcS[email protected]      1, // 5 slot packets
132765389bfcS[email protected]     25, // EDR 2 mpbs
132865389bfcS[email protected]     26, // EDR 3 mbps
132965389bfcS[email protected]     39, // 3 slot EDR packts
133065389bfcS[email protected]     40, // 5 slot EDR packet
133165389bfcS[email protected] };
133229e39de4SMatthias Ringwald static const uint16_t hci_acl_packet_type_feature_packet_mask[] = {
133365389bfcS[email protected]     0x0f00, // 3 slot packets
133465389bfcS[email protected]     0xf000, // 5 slot packets
133565389bfcS[email protected]     0x1102, // EDR 2 mpbs
133665389bfcS[email protected]     0x2204, // EDR 3 mbps
133765389bfcS[email protected]     0x0300, // 3 slot EDR packts
133865389bfcS[email protected]     0x3000, // 5 slot EDR packet
133965389bfcS[email protected] };
13408f8108aaSmatthias.ringwald 
134165389bfcS[email protected] static uint16_t hci_acl_packet_types_for_buffer_size_and_local_features(uint16_t buffer_size, uint8_t * local_supported_features){
134265389bfcS[email protected]     // enable packet types based on size
13438f8108aaSmatthias.ringwald     uint16_t packet_types = 0;
1344f16a69bbS[email protected]     unsigned int i;
13458f8108aaSmatthias.ringwald     for (i=0;i<16;i++){
134629e39de4SMatthias Ringwald         if (hci_acl_packet_type_sizes[i] == 0) continue;
134729e39de4SMatthias Ringwald         if (hci_acl_packet_type_sizes[i] <= buffer_size){
13488f8108aaSmatthias.ringwald             packet_types |= 1 << i;
13498f8108aaSmatthias.ringwald         }
13508f8108aaSmatthias.ringwald     }
135165389bfcS[email protected]     // disable packet types due to missing local supported features
135229e39de4SMatthias Ringwald     for (i=0;i<sizeof(hci_acl_packet_type_feature_requirement_bit); i++){
135329e39de4SMatthias Ringwald         unsigned int bit_idx = hci_acl_packet_type_feature_requirement_bit[i];
135465389bfcS[email protected]         int feature_set = (local_supported_features[bit_idx >> 3] & (1<<(bit_idx & 7))) != 0;
135565389bfcS[email protected]         if (feature_set) continue;
135629e39de4SMatthias Ringwald         log_info("Features bit %02u is not set, removing packet types 0x%04x", bit_idx, hci_acl_packet_type_feature_packet_mask[i]);
135729e39de4SMatthias Ringwald         packet_types &= ~hci_acl_packet_type_feature_packet_mask[i];
135865389bfcS[email protected]     }
13598f8108aaSmatthias.ringwald     return packet_types;
13608f8108aaSmatthias.ringwald }
13618f8108aaSmatthias.ringwald 
13628f8108aaSmatthias.ringwald uint16_t hci_usable_acl_packet_types(void){
136329e39de4SMatthias Ringwald     // flip bits for "may not be used"
136429e39de4SMatthias Ringwald     return hci_stack->usable_packet_types_acl ^ 0x3306;
13658f8108aaSmatthias.ringwald }
136629e39de4SMatthias Ringwald 
1367*c92ca2c8SMatthias Ringwald static const struct {
1368*c92ca2c8SMatthias Ringwald     uint8_t feature_index;
1369*c92ca2c8SMatthias Ringwald     uint16_t feature_packet_mask;
1370*c92ca2c8SMatthias Ringwald } hci_sco_packet_type_feature_requirements[] = {
1371*c92ca2c8SMatthias Ringwald         { 12, SCO_PACKET_TYPES_HV2 },                           // HV2 packets
1372*c92ca2c8SMatthias Ringwald         { 13, SCO_PACKET_TYPES_HV3 },                           // HV3 packets
1373*c92ca2c8SMatthias Ringwald         { 31, SCO_PACKET_TYPES_ESCO },                          // eSCO links (EV3 packets)
1374*c92ca2c8SMatthias Ringwald         { 32, SCO_PACKET_TYPES_EV4 },                           // EV4 packets
1375*c92ca2c8SMatthias Ringwald         { 45, SCO_PACKET_TYPES_2EV3 | SCO_PACKET_TYPES_2EV5 },  // EDR eSCO 2 Mb/s
1376*c92ca2c8SMatthias Ringwald         { 46, SCO_PACKET_TYPES_3EV3 | SCO_PACKET_TYPES_3EV5 },  // EDR eSCO 3 Mb/s
1377*c92ca2c8SMatthias Ringwald         { 47, SCO_PACKET_TYPES_2EV3 | SCO_PACKET_TYPES_3EV3 },  // 3-slot EDR eSCO packets
1378*c92ca2c8SMatthias Ringwald };
1379*c92ca2c8SMatthias Ringwald 
1380*c92ca2c8SMatthias Ringwald static uint16_t hci_sco_packet_types_for_features(const uint8_t * local_supported_features){
1381*c92ca2c8SMatthias Ringwald     uint16_t packet_types = SCO_PACKET_TYPES_ALL;
1382*c92ca2c8SMatthias Ringwald     unsigned int i;
1383*c92ca2c8SMatthias Ringwald     // disable packet types due to missing local supported features
1384*c92ca2c8SMatthias Ringwald     for (i=0;i<(sizeof(hci_sco_packet_type_feature_requirements)/sizeof(hci_sco_packet_type_feature_requirements[0])); i++){
1385*c92ca2c8SMatthias Ringwald         unsigned int bit_idx = hci_sco_packet_type_feature_requirements[i].feature_index;
1386*c92ca2c8SMatthias Ringwald         bool feature_set = (local_supported_features[bit_idx >> 3] & (1<<(bit_idx & 7))) != 0;
1387*c92ca2c8SMatthias Ringwald         if (feature_set) continue;
1388*c92ca2c8SMatthias Ringwald         log_info("Features bit %02u is not set, removing packet types 0x%04x", bit_idx, hci_sco_packet_type_feature_requirements[i].feature_packet_mask);
1389*c92ca2c8SMatthias Ringwald         packet_types &= ~hci_sco_packet_type_feature_requirements[i].feature_packet_mask;
1390*c92ca2c8SMatthias Ringwald     }
1391*c92ca2c8SMatthias Ringwald     return packet_types;
1392*c92ca2c8SMatthias Ringwald }
1393*c92ca2c8SMatthias Ringwald 
1394*c92ca2c8SMatthias Ringwald uint16_t hci_usable_sco_packet_types(void){
1395*c92ca2c8SMatthias Ringwald     return hci_stack->usable_packet_types_sco;
1396*c92ca2c8SMatthias Ringwald }
1397*c92ca2c8SMatthias Ringwald 
139835454696SMatthias Ringwald #endif
13998f8108aaSmatthias.ringwald 
1400facf93fdS[email protected] uint8_t* hci_get_outgoing_packet_buffer(void){
14017dc17943Smatthias.ringwald     // hci packet buffer is >= acl data packet length
14023a9fb326S[email protected]     return hci_stack->hci_packet_buffer;
14037dc17943Smatthias.ringwald }
14047dc17943Smatthias.ringwald 
1405f5d8d141S[email protected] uint16_t hci_max_acl_data_packet_length(void){
14063a9fb326S[email protected]     return hci_stack->acl_data_packet_length;
14077dc17943Smatthias.ringwald }
14087dc17943Smatthias.ringwald 
140906b9e820SMatthias Ringwald #ifdef ENABLE_CLASSIC
141020dcdd22SMatthias Ringwald bool hci_extended_sco_link_supported(void){
14113e68d23dSMatthias Ringwald     // No. 31, byte 3, bit 7
14123e68d23dSMatthias Ringwald     return (hci_stack->local_supported_features[3] & (1 << 7)) != 0;
14133e68d23dSMatthias Ringwald }
141406b9e820SMatthias Ringwald #endif
14153e68d23dSMatthias Ringwald 
141620dcdd22SMatthias Ringwald bool hci_non_flushable_packet_boundary_flag_supported(void){
14176ac9a97eS[email protected]     // No. 54, byte 6, bit 6
14184ea43905SMatthias Ringwald     return (hci_stack->local_supported_features[6u] & (1u << 6u)) != 0u;
14196ac9a97eS[email protected] }
14206ac9a97eS[email protected] 
14219885fb2dSMatthias Ringwald #ifdef ENABLE_CLASSIC
142215a95bd5SMatthias Ringwald static int gap_ssp_supported(void){
14236ac9a97eS[email protected]     // No. 51, byte 6, bit 3
14244ea43905SMatthias Ringwald     return (hci_stack->local_supported_features[6u] & (1u << 3u)) != 0u;
1425f5d8d141S[email protected] }
14269885fb2dSMatthias Ringwald #endif
1427f5d8d141S[email protected] 
14287f02f414SMatthias Ringwald static int hci_classic_supported(void){
142935454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
14306ac9a97eS[email protected]     // No. 37, byte 4, bit 5, = No BR/EDR Support
14313a9fb326S[email protected]     return (hci_stack->local_supported_features[4] & (1 << 5)) == 0;
143235454696SMatthias Ringwald #else
143335454696SMatthias Ringwald     return 0;
143435454696SMatthias Ringwald #endif
1435f5d8d141S[email protected] }
1436f5d8d141S[email protected] 
14377f02f414SMatthias Ringwald static int hci_le_supported(void){
1438a9a4c409SMatthias Ringwald #ifdef ENABLE_BLE
14396ac9a97eS[email protected]     // No. 37, byte 4, bit 6 = LE Supported (Controller)
14404ea43905SMatthias Ringwald     return (hci_stack->local_supported_features[4u] & (1u << 6u)) != 0u;
1441f5d8d141S[email protected] #else
1442f5d8d141S[email protected]     return 0;
1443f5d8d141S[email protected] #endif
1444f5d8d141S[email protected] }
1445f5d8d141S[email protected] 
14461ffa425cSMatthias Ringwald static bool hci_command_supported(uint8_t command_index){
14471ffa425cSMatthias Ringwald     return (hci_stack->local_supported_commands & (1LU << command_index)) != 0;
14481ffa425cSMatthias Ringwald }
14491ffa425cSMatthias Ringwald 
1450b95a5a35SMatthias Ringwald #ifdef ENABLE_BLE
1451b95a5a35SMatthias Ringwald 
145263671e69SMatthias Ringwald #ifdef ENABLE_LE_EXTENDED_ADVERTISING
145363671e69SMatthias Ringwald static bool hci_extended_advertising_supported(void){
145463671e69SMatthias Ringwald     return hci_command_supported(SUPPORTED_HCI_COMMAND_LE_SET_EXTENDED_ADVERTISING_ENABLE);
145563671e69SMatthias Ringwald }
145663671e69SMatthias Ringwald #endif
145763671e69SMatthias Ringwald 
1458f5873674SMatthias Ringwald static void hci_get_own_address_for_addr_type(uint8_t own_addr_type, bd_addr_t own_addr){
14596bcfa632SMatthias Ringwald     if (own_addr_type == BD_ADDR_TYPE_LE_PUBLIC){
14606bcfa632SMatthias Ringwald         (void)memcpy(own_addr, hci_stack->local_bd_addr, 6);
146169a97523S[email protected]     } else {
14626bcfa632SMatthias Ringwald         (void)memcpy(own_addr, hci_stack->le_random_address, 6);
146369a97523S[email protected]     }
146469a97523S[email protected] }
146569a97523S[email protected] 
14666bcfa632SMatthias Ringwald void gap_le_get_own_address(uint8_t * addr_type, bd_addr_t addr){
14676bcfa632SMatthias Ringwald     *addr_type = hci_stack->le_own_addr_type;
14686bcfa632SMatthias Ringwald     hci_get_own_address_for_addr_type(hci_stack->le_own_addr_type, addr);
14696bcfa632SMatthias Ringwald }
14706bcfa632SMatthias Ringwald 
14716bcfa632SMatthias Ringwald #ifdef ENABLE_LE_PERIPHERAL
14726bcfa632SMatthias Ringwald void gap_le_get_own_advertisements_address(uint8_t * addr_type, bd_addr_t addr){
14736bcfa632SMatthias Ringwald     *addr_type = hci_stack->le_advertisements_own_addr_type;
14746bcfa632SMatthias Ringwald     hci_get_own_address_for_addr_type(hci_stack->le_advertisements_own_addr_type, addr);
14756bcfa632SMatthias Ringwald };
14766bcfa632SMatthias Ringwald #endif
14776bcfa632SMatthias Ringwald 
1478e8c8828eSMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
14796bcfa632SMatthias Ringwald 
14806bcfa632SMatthias Ringwald /**
14816bcfa632SMatthias Ringwald  * @brief Get own addr type and address used for LE connections (Central)
14826bcfa632SMatthias Ringwald  */
14836bcfa632SMatthias Ringwald void gap_le_get_own_connection_address(uint8_t * addr_type, bd_addr_t addr){
14846bcfa632SMatthias Ringwald     *addr_type = hci_stack->le_connection_own_addr_type;
14856bcfa632SMatthias Ringwald     hci_get_own_address_for_addr_type(hci_stack->le_connection_own_addr_type, addr);
14866bcfa632SMatthias Ringwald }
14876bcfa632SMatthias Ringwald 
1488384b59deSMatthias Ringwald void le_handle_advertisement_report(uint8_t *packet, uint16_t size){
14899ec2630cSMatthias Ringwald 
1490a0698cb4SMatthias Ringwald     uint16_t offset = 3;
1491a0698cb4SMatthias Ringwald     uint8_t num_reports = packet[offset];
1492d1dc057bS[email protected]     offset += 1;
1493d1dc057bS[email protected] 
1494a0698cb4SMatthias Ringwald     uint16_t i;
149503fbe9c6S[email protected]     uint8_t event[12 + LE_ADVERTISING_DATA_SIZE]; // use upper bound to avoid var size automatic var
1496a1df452eSMatthias Ringwald     for (i=0; (i<num_reports) && (offset < size);i++){
149733e6948bSMatthias Ringwald         // sanity checks on data_length:
149833e6948bSMatthias Ringwald         uint8_t data_length = packet[offset + 8];
149933e6948bSMatthias Ringwald         if (data_length > LE_ADVERTISING_DATA_SIZE) return;
15004ea43905SMatthias Ringwald         if ((offset + 9u + data_length + 1u) > size)    return;
150133e6948bSMatthias Ringwald         // setup event
15024ea43905SMatthias Ringwald         uint8_t event_size = 10u + data_length;
1503a0698cb4SMatthias Ringwald         uint16_t pos = 0;
1504045013feSMatthias Ringwald         event[pos++] = GAP_EVENT_ADVERTISING_REPORT;
150557c9da5bS[email protected]         event[pos++] = event_size;
15066535961aSMatthias Ringwald         (void)memcpy(&event[pos], &packet[offset], 1 + 1 + 6); // event type + address type + address
1507d1dc057bS[email protected]         offset += 8;
1508d1dc057bS[email protected]         pos += 8;
1509d1dc057bS[email protected]         event[pos++] = packet[offset + 1 + data_length]; // rssi
151033e6948bSMatthias Ringwald         event[pos++] = data_length;
151133e6948bSMatthias Ringwald         offset++;
15126535961aSMatthias Ringwald         (void)memcpy(&event[pos], &packet[offset], data_length);
151357c9da5bS[email protected]         pos +=    data_length;
15144ea43905SMatthias Ringwald         offset += data_length + 1u; // rssi
1515d6b06661SMatthias Ringwald         hci_emit_event(event, pos, 1);
151657c9da5bS[email protected]     }
151757c9da5bS[email protected] }
1518a0698cb4SMatthias Ringwald 
1519a0698cb4SMatthias Ringwald #ifdef ENABLE_LE_EXTENDED_ADVERTISING
1520a0698cb4SMatthias Ringwald void le_handle_extended_advertisement_report(uint8_t *packet, uint16_t size) {
1521a0698cb4SMatthias Ringwald     uint16_t offset = 3;
1522a0698cb4SMatthias Ringwald     uint8_t num_reports = packet[offset++];
1523c95a0fc7SMatthias Ringwald     uint8_t event[2 + 255]; // use upper bound to avoid var size automatic var
1524a0698cb4SMatthias Ringwald     uint8_t i;
1525a0698cb4SMatthias Ringwald     for (i=0; (i<num_reports) && (offset < size);i++){
1526a0698cb4SMatthias Ringwald         // sanity checks on data_length:
1527a0698cb4SMatthias Ringwald         uint16_t data_length = packet[offset + 23];
152843ce0351SMatthias Ringwald         if (data_length > LE_EXTENDED_ADVERTISING_DATA_SIZE) return;
1529a0698cb4SMatthias Ringwald         if ((offset + 24u + data_length) > size)    return;
1530a0698cb4SMatthias Ringwald         uint16_t event_type = little_endian_read_16(packet, offset);
1531a0698cb4SMatthias Ringwald         offset += 2;
1532a0698cb4SMatthias Ringwald         if ((event_type & 0x10) != 0) {
1533a0698cb4SMatthias Ringwald            // setup legacy event
1534a0698cb4SMatthias Ringwald             uint8_t legacy_event_type;
1535a0698cb4SMatthias Ringwald             switch (event_type){
1536a0698cb4SMatthias Ringwald                 case 0b0010011:
1537a0698cb4SMatthias Ringwald                     // ADV_IND
1538a0698cb4SMatthias Ringwald                     legacy_event_type = 0;
1539a0698cb4SMatthias Ringwald                     break;
1540a0698cb4SMatthias Ringwald                 case 0b0010101:
1541a0698cb4SMatthias Ringwald                     // ADV_DIRECT_IND
1542a0698cb4SMatthias Ringwald                     legacy_event_type = 1;
1543a0698cb4SMatthias Ringwald                     break;
1544a0698cb4SMatthias Ringwald                 case 0b0010010:
1545a0698cb4SMatthias Ringwald                     // ADV_SCAN_IND
1546a0698cb4SMatthias Ringwald                     legacy_event_type = 2;
1547a0698cb4SMatthias Ringwald                     break;
1548a0698cb4SMatthias Ringwald                 case 0b0010000:
1549a0698cb4SMatthias Ringwald                     // ADV_NONCONN_IND
1550a0698cb4SMatthias Ringwald                     legacy_event_type = 3;
1551a0698cb4SMatthias Ringwald                     break;
1552a0698cb4SMatthias Ringwald                 case 0b0011011:
1553a0698cb4SMatthias Ringwald                 case 0b0011010:
1554a0698cb4SMatthias Ringwald                     // SCAN_RSP
1555a0698cb4SMatthias Ringwald                     legacy_event_type = 4;
1556a0698cb4SMatthias Ringwald                     break;
1557a0698cb4SMatthias Ringwald                 default:
1558a0698cb4SMatthias Ringwald                     legacy_event_type = 0;
1559a0698cb4SMatthias Ringwald                     break;
1560a0698cb4SMatthias Ringwald             }
1561a0698cb4SMatthias Ringwald             uint16_t pos = 0;
1562a0698cb4SMatthias Ringwald             event[pos++] = GAP_EVENT_ADVERTISING_REPORT;
1563a0698cb4SMatthias Ringwald             event[pos++] = 10u + data_length;
1564a0698cb4SMatthias Ringwald             event[pos++] = legacy_event_type;
1565a0698cb4SMatthias Ringwald             // copy address type + address
1566a0698cb4SMatthias Ringwald             (void) memcpy(&event[pos], &packet[offset], 1 + 6);
1567a0698cb4SMatthias Ringwald             offset += 7;
1568a0698cb4SMatthias Ringwald             pos += 7;
1569a0698cb4SMatthias Ringwald             // skip primary_phy, secondary_phy, advertising_sid, tx_power
1570a0698cb4SMatthias Ringwald             offset += 4;
1571a0698cb4SMatthias Ringwald             // copy rssi
1572a0698cb4SMatthias Ringwald             event[pos++] = packet[offset++];
1573a0698cb4SMatthias Ringwald             // skip periodic advertising interval and direct address
1574a0698cb4SMatthias Ringwald             offset += 9;
1575a0698cb4SMatthias Ringwald             // copy data len + data;
1576a0698cb4SMatthias Ringwald             (void) memcpy(&event[pos], &packet[offset], 1 + data_length);
1577a0698cb4SMatthias Ringwald             pos    += 1 +data_length;
1578a0698cb4SMatthias Ringwald             offset += 1+ data_length;
1579a0698cb4SMatthias Ringwald             hci_emit_event(event, pos, 1);
1580a0698cb4SMatthias Ringwald         } else {
1581c95a0fc7SMatthias Ringwald             event[0] = GAP_EVENT_EXTENDED_ADVERTISING_REPORT;
1582c95a0fc7SMatthias Ringwald             uint8_t report_len = 24 + data_length;
1583c95a0fc7SMatthias Ringwald             event[1] = report_len;
15840f7610adSMatthias Ringwald             little_endian_store_16(event, 2, event_type);
15850f7610adSMatthias Ringwald             memcpy(&event[4], &packet[offset], report_len);
1586c95a0fc7SMatthias Ringwald             offset += report_len;
1587c95a0fc7SMatthias Ringwald             hci_emit_event(event, 2 + report_len, 1);
1588a0698cb4SMatthias Ringwald         }
1589a0698cb4SMatthias Ringwald     }
1590a0698cb4SMatthias Ringwald }
1591a0698cb4SMatthias Ringwald #endif
1592a0698cb4SMatthias Ringwald 
1593b2f949feS[email protected] #endif
1594e8c8828eSMatthias Ringwald #endif
159557c9da5bS[email protected] 
15962b6ab3e6SMatthias Ringwald #ifdef ENABLE_BLE
15972b6ab3e6SMatthias Ringwald #ifdef ENABLE_LE_PERIPHERAL
1598bbc366e6SMatthias Ringwald static void hci_update_advertisements_enabled_for_current_roles(void){
1599a408e724SMatthias Ringwald     if ((hci_stack->le_advertisements_state & LE_ADVERTISEMENT_STATE_ENABLED) != 0){
16002b6ab3e6SMatthias Ringwald         // get number of active le slave connections
16012b6ab3e6SMatthias Ringwald         int num_slave_connections = 0;
16022b6ab3e6SMatthias Ringwald         btstack_linked_list_iterator_t it;
16032b6ab3e6SMatthias Ringwald         btstack_linked_list_iterator_init(&it, &hci_stack->connections);
16042b6ab3e6SMatthias Ringwald         while (btstack_linked_list_iterator_has_next(&it)){
16052b6ab3e6SMatthias Ringwald             hci_connection_t * con = (hci_connection_t*) btstack_linked_list_iterator_next(&it);
16062b6ab3e6SMatthias Ringwald             log_info("state %u, role %u, le_con %u", con->state, con->role, hci_is_le_connection(con));
16072b6ab3e6SMatthias Ringwald             if (con->state != OPEN) continue;
16082b6ab3e6SMatthias Ringwald             if (con->role  != HCI_ROLE_SLAVE) continue;
16092b6ab3e6SMatthias Ringwald             if (!hci_is_le_connection(con)) continue;
16102b6ab3e6SMatthias Ringwald             num_slave_connections++;
16112b6ab3e6SMatthias Ringwald         }
16122b6ab3e6SMatthias Ringwald         log_info("Num LE Peripheral roles: %u of %u", num_slave_connections, hci_stack->le_max_number_peripheral_connections);
1613bbc366e6SMatthias Ringwald         hci_stack->le_advertisements_enabled_for_current_roles = num_slave_connections < hci_stack->le_max_number_peripheral_connections;
1614bbc366e6SMatthias Ringwald     } else {
1615bbc366e6SMatthias Ringwald         hci_stack->le_advertisements_enabled_for_current_roles = false;
16162b6ab3e6SMatthias Ringwald     }
16172b6ab3e6SMatthias Ringwald }
16182b6ab3e6SMatthias Ringwald #endif
16192b6ab3e6SMatthias Ringwald #endif
16202b6ab3e6SMatthias Ringwald 
162159d59ecfSMatthias Ringwald #ifdef ENABLE_CLASSIC
162259d59ecfSMatthias Ringwald static void gap_run_set_local_name(void){
162359d59ecfSMatthias Ringwald     hci_reserve_packet_buffer();
162459d59ecfSMatthias Ringwald     uint8_t * packet = hci_stack->hci_packet_buffer;
162559d59ecfSMatthias Ringwald     // construct HCI Command and send
162659d59ecfSMatthias Ringwald     uint16_t opcode = hci_write_local_name.opcode;
162759d59ecfSMatthias Ringwald     hci_stack->last_cmd_opcode = opcode;
162859d59ecfSMatthias Ringwald     packet[0] = opcode & 0xff;
162959d59ecfSMatthias Ringwald     packet[1] = opcode >> 8;
163059d59ecfSMatthias Ringwald     packet[2] = DEVICE_NAME_LEN;
163159d59ecfSMatthias Ringwald     memset(&packet[3], 0, DEVICE_NAME_LEN);
163259d59ecfSMatthias Ringwald     uint16_t name_len = (uint16_t) strlen(hci_stack->local_name);
163359d59ecfSMatthias Ringwald     uint16_t bytes_to_copy = btstack_min(name_len, DEVICE_NAME_LEN);
163459d59ecfSMatthias Ringwald     // if shorter than DEVICE_NAME_LEN, it's implicitly NULL-terminated by memset call
163559d59ecfSMatthias Ringwald     (void)memcpy(&packet[3], hci_stack->local_name, bytes_to_copy);
163659d59ecfSMatthias Ringwald     // expand '00:00:00:00:00:00' in name with bd_addr
163759d59ecfSMatthias Ringwald     btstack_replace_bd_addr_placeholder(&packet[3], bytes_to_copy, hci_stack->local_bd_addr);
163859d59ecfSMatthias Ringwald     hci_send_cmd_packet(packet, HCI_CMD_HEADER_SIZE + DEVICE_NAME_LEN);
163959d59ecfSMatthias Ringwald }
164059d59ecfSMatthias Ringwald 
164159d59ecfSMatthias Ringwald static void gap_run_set_eir_data(void){
164259d59ecfSMatthias Ringwald     hci_reserve_packet_buffer();
164359d59ecfSMatthias Ringwald     uint8_t * packet = hci_stack->hci_packet_buffer;
164459d59ecfSMatthias Ringwald     // construct HCI Command in-place and send
164559d59ecfSMatthias Ringwald     uint16_t opcode = hci_write_extended_inquiry_response.opcode;
164659d59ecfSMatthias Ringwald     hci_stack->last_cmd_opcode = opcode;
164759d59ecfSMatthias Ringwald     uint16_t offset = 0;
164859d59ecfSMatthias Ringwald     packet[offset++] = opcode & 0xff;
164959d59ecfSMatthias Ringwald     packet[offset++] = opcode >> 8;
165059d59ecfSMatthias Ringwald     packet[offset++] = 1 + EXTENDED_INQUIRY_RESPONSE_DATA_LEN;
165159d59ecfSMatthias Ringwald     packet[offset++] = 0;  // FEC not required
165259d59ecfSMatthias Ringwald     memset(&packet[offset], 0, EXTENDED_INQUIRY_RESPONSE_DATA_LEN);
165359d59ecfSMatthias Ringwald     if (hci_stack->eir_data){
165459d59ecfSMatthias Ringwald         // copy items and expand '00:00:00:00:00:00' in name with bd_addr
165559d59ecfSMatthias Ringwald         ad_context_t context;
165659d59ecfSMatthias Ringwald         for (ad_iterator_init(&context, EXTENDED_INQUIRY_RESPONSE_DATA_LEN, hci_stack->eir_data) ; ad_iterator_has_more(&context) ; ad_iterator_next(&context)) {
165759d59ecfSMatthias Ringwald             uint8_t data_type   = ad_iterator_get_data_type(&context);
165859d59ecfSMatthias Ringwald             uint8_t size        = ad_iterator_get_data_len(&context);
165959d59ecfSMatthias Ringwald             const uint8_t *data = ad_iterator_get_data(&context);
166059d59ecfSMatthias Ringwald             // copy item
166159d59ecfSMatthias Ringwald             packet[offset++] = size + 1;
166259d59ecfSMatthias Ringwald             packet[offset++] = data_type;
166359d59ecfSMatthias Ringwald             memcpy(&packet[offset], data, size);
166459d59ecfSMatthias Ringwald             // update name item
166559d59ecfSMatthias Ringwald             if ((data_type == BLUETOOTH_DATA_TYPE_SHORTENED_LOCAL_NAME) || (data_type == BLUETOOTH_DATA_TYPE_COMPLETE_LOCAL_NAME)){
166659d59ecfSMatthias Ringwald                 btstack_replace_bd_addr_placeholder(&packet[offset], size, hci_stack->local_bd_addr);
166759d59ecfSMatthias Ringwald             }
166859d59ecfSMatthias Ringwald             offset += size;
166959d59ecfSMatthias Ringwald         }
167059d59ecfSMatthias Ringwald     } else {
167159d59ecfSMatthias Ringwald         uint16_t name_len = (uint16_t) strlen(hci_stack->local_name);
167259d59ecfSMatthias Ringwald         uint16_t bytes_to_copy = btstack_min(name_len, EXTENDED_INQUIRY_RESPONSE_DATA_LEN - 2);
167359d59ecfSMatthias Ringwald         packet[offset++] = bytes_to_copy + 1;
167459d59ecfSMatthias Ringwald         packet[offset++] = BLUETOOTH_DATA_TYPE_COMPLETE_LOCAL_NAME;
167559d59ecfSMatthias Ringwald         (void)memcpy(&packet[6], hci_stack->local_name, bytes_to_copy);
167659d59ecfSMatthias Ringwald         // expand '00:00:00:00:00:00' in name with bd_addr
167759d59ecfSMatthias Ringwald         btstack_replace_bd_addr_placeholder(&packet[offset], bytes_to_copy, hci_stack->local_bd_addr);
167859d59ecfSMatthias Ringwald     }
167959d59ecfSMatthias Ringwald     hci_send_cmd_packet(packet, HCI_CMD_HEADER_SIZE + 1 + EXTENDED_INQUIRY_RESPONSE_DATA_LEN);
168059d59ecfSMatthias Ringwald }
1681ab4831a3SMatthias Ringwald 
1682ab4831a3SMatthias Ringwald static void hci_run_gap_tasks_classic(void){
1683baa4881eSMatthias Ringwald     if ((hci_stack->gap_tasks_classic & GAP_TASK_SET_CLASS_OF_DEVICE) != 0) {
1684baa4881eSMatthias Ringwald         hci_stack->gap_tasks_classic &= ~GAP_TASK_SET_CLASS_OF_DEVICE;
1685ab4831a3SMatthias Ringwald         hci_send_cmd(&hci_write_class_of_device, hci_stack->class_of_device);
1686ab4831a3SMatthias Ringwald         return;
1687ab4831a3SMatthias Ringwald     }
1688baa4881eSMatthias Ringwald     if ((hci_stack->gap_tasks_classic & GAP_TASK_SET_LOCAL_NAME) != 0) {
1689baa4881eSMatthias Ringwald         hci_stack->gap_tasks_classic &= ~GAP_TASK_SET_LOCAL_NAME;
1690ab4831a3SMatthias Ringwald         gap_run_set_local_name();
1691ab4831a3SMatthias Ringwald         return;
1692ab4831a3SMatthias Ringwald     }
1693baa4881eSMatthias Ringwald     if ((hci_stack->gap_tasks_classic & GAP_TASK_SET_EIR_DATA) != 0) {
1694baa4881eSMatthias Ringwald         hci_stack->gap_tasks_classic &= ~GAP_TASK_SET_EIR_DATA;
1695ab4831a3SMatthias Ringwald         gap_run_set_eir_data();
1696ab4831a3SMatthias Ringwald         return;
1697ab4831a3SMatthias Ringwald     }
1698baa4881eSMatthias Ringwald     if ((hci_stack->gap_tasks_classic & GAP_TASK_SET_DEFAULT_LINK_POLICY) != 0) {
1699baa4881eSMatthias Ringwald         hci_stack->gap_tasks_classic &= ~GAP_TASK_SET_DEFAULT_LINK_POLICY;
1700ab4831a3SMatthias Ringwald         hci_send_cmd(&hci_write_default_link_policy_setting, hci_stack->default_link_policy_settings);
1701ab4831a3SMatthias Ringwald         return;
1702ab4831a3SMatthias Ringwald     }
1703ab4831a3SMatthias Ringwald     // write page scan activity
1704baa4881eSMatthias Ringwald     if ((hci_stack->gap_tasks_classic & GAP_TASK_WRITE_PAGE_SCAN_ACTIVITY) != 0) {
1705baa4881eSMatthias Ringwald         hci_stack->gap_tasks_classic &= ~GAP_TASK_WRITE_PAGE_SCAN_ACTIVITY;
1706ab4831a3SMatthias Ringwald         hci_send_cmd(&hci_write_page_scan_activity, hci_stack->new_page_scan_interval, hci_stack->new_page_scan_window);
1707ab4831a3SMatthias Ringwald         return;
1708ab4831a3SMatthias Ringwald     }
1709ab4831a3SMatthias Ringwald     // write page scan type
1710baa4881eSMatthias Ringwald     if ((hci_stack->gap_tasks_classic & GAP_TASK_WRITE_PAGE_SCAN_TYPE) != 0) {
1711baa4881eSMatthias Ringwald         hci_stack->gap_tasks_classic &= ~GAP_TASK_WRITE_PAGE_SCAN_TYPE;
1712ab4831a3SMatthias Ringwald         hci_send_cmd(&hci_write_page_scan_type, hci_stack->new_page_scan_type);
1713ab4831a3SMatthias Ringwald         return;
1714ab4831a3SMatthias Ringwald     }
171532a12730SMatthias Ringwald     // write page timeout
1716baa4881eSMatthias Ringwald     if ((hci_stack->gap_tasks_classic & GAP_TASK_WRITE_PAGE_TIMEOUT) != 0) {
1717baa4881eSMatthias Ringwald         hci_stack->gap_tasks_classic &= ~GAP_TASK_WRITE_PAGE_TIMEOUT;
171832a12730SMatthias Ringwald         hci_send_cmd(&hci_write_page_timeout, hci_stack->page_timeout);
171932a12730SMatthias Ringwald         return;
172032a12730SMatthias Ringwald     }
1721ab4831a3SMatthias Ringwald     // send scan enable
1722baa4881eSMatthias Ringwald     if ((hci_stack->gap_tasks_classic & GAP_TASK_WRITE_SCAN_ENABLE) != 0) {
1723baa4881eSMatthias Ringwald         hci_stack->gap_tasks_classic &= ~GAP_TASK_WRITE_SCAN_ENABLE;
1724ab4831a3SMatthias Ringwald         hci_send_cmd(&hci_write_scan_enable, hci_stack->new_scan_enable_value);
1725ab4831a3SMatthias Ringwald         return;
1726ab4831a3SMatthias Ringwald     }
1727c0c8a829SMatthias Ringwald     // send write scan activity
1728baa4881eSMatthias Ringwald     if ((hci_stack->gap_tasks_classic & GAP_TASK_WRITE_INQUIRY_SCAN_ACTIVITY) != 0) {
1729baa4881eSMatthias Ringwald         hci_stack->gap_tasks_classic &= ~GAP_TASK_WRITE_INQUIRY_SCAN_ACTIVITY;
1730c0c8a829SMatthias Ringwald         hci_send_cmd(&hci_write_inquiry_scan_activity, hci_stack->inquiry_scan_interval, hci_stack->inquiry_scan_window);
1731c0c8a829SMatthias Ringwald         return;
1732c0c8a829SMatthias Ringwald     }
1733ab4831a3SMatthias Ringwald }
173459d59ecfSMatthias Ringwald #endif
173559d59ecfSMatthias Ringwald 
17366fad2c37SMatthias Ringwald #ifndef HAVE_HOST_CONTROLLER_API
173706b9e820SMatthias Ringwald 
173896b53536SMatthias Ringwald static uint32_t hci_transport_uart_get_main_baud_rate(void){
173996b53536SMatthias Ringwald     if (!hci_stack->config) return 0;
17409796ebeaSMatthias Ringwald     uint32_t baud_rate = ((hci_transport_config_uart_t *)hci_stack->config)->baudrate_main;
174196b53536SMatthias Ringwald     // Limit baud rate for Broadcom chipsets to 3 mbps
1742a1df452eSMatthias Ringwald     if ((hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_BROADCOM_CORPORATION) && (baud_rate > 3000000)){
174396b53536SMatthias Ringwald         baud_rate = 3000000;
174496b53536SMatthias Ringwald     }
174596b53536SMatthias Ringwald     return baud_rate;
174696b53536SMatthias Ringwald }
174796b53536SMatthias Ringwald 
1748ec820d77SMatthias Ringwald static void hci_initialization_timeout_handler(btstack_timer_source_t * ds){
17499ec2630cSMatthias Ringwald     UNUSED(ds);
17509ec2630cSMatthias Ringwald 
17510305bdeaSMatthias Ringwald     switch (hci_stack->substate){
17520305bdeaSMatthias Ringwald         case HCI_INIT_W4_SEND_RESET:
17537b0d7667SMatthias Ringwald             log_info("Resend HCI Reset");
17540305bdeaSMatthias Ringwald             hci_stack->substate = HCI_INIT_SEND_RESET;
17557b0d7667SMatthias Ringwald             hci_stack->num_cmd_packets = 1;
17560305bdeaSMatthias Ringwald             hci_run();
17570305bdeaSMatthias Ringwald             break;
17589f007422SMatthias Ringwald         case HCI_INIT_W4_CUSTOM_INIT_CSR_WARM_BOOT_LINK_RESET:
17599f007422SMatthias Ringwald             log_info("Resend HCI Reset - CSR Warm Boot with Link Reset");
17609f007422SMatthias Ringwald             if (hci_stack->hci_transport->reset_link){
17619f007422SMatthias Ringwald                 hci_stack->hci_transport->reset_link();
17629f007422SMatthias Ringwald             }
1763cf373d3aSMatthias Ringwald 
1764cf373d3aSMatthias Ringwald             /* fall through */
1765cf373d3aSMatthias Ringwald 
1766e47e68c7SMatthias Ringwald         case HCI_INIT_W4_CUSTOM_INIT_CSR_WARM_BOOT:
1767e47e68c7SMatthias Ringwald             log_info("Resend HCI Reset - CSR Warm Boot");
1768e47e68c7SMatthias Ringwald             hci_stack->substate = HCI_INIT_SEND_RESET_CSR_WARM_BOOT;
1769e47e68c7SMatthias Ringwald             hci_stack->num_cmd_packets = 1;
1770e47e68c7SMatthias Ringwald             hci_run();
1771688c2635SMatthias Ringwald             break;
17727224be7eSMatthias Ringwald         case HCI_INIT_W4_SEND_BAUD_CHANGE:
17737224be7eSMatthias Ringwald             if (hci_stack->hci_transport->set_baudrate){
177496b53536SMatthias Ringwald                 uint32_t baud_rate = hci_transport_uart_get_main_baud_rate();
1775cd724cb7SMatthias Ringwald                 log_info("Local baud rate change to %" PRIu32 "(timeout handler)", baud_rate);
17767dd9d0ecSMatthias Ringwald                 hci_stack->hci_transport->set_baudrate(baud_rate);
17777224be7eSMatthias Ringwald             }
1778834bce8cSMatthias Ringwald             // For CSR, HCI Reset is sent on new baud rate. Don't forget to reset link for H5/BCSP
177961f37892SMatthias Ringwald             if (hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_CAMBRIDGE_SILICON_RADIO){
1780834bce8cSMatthias Ringwald                 if (hci_stack->hci_transport->reset_link){
1781834bce8cSMatthias Ringwald                     log_info("Link Reset");
1782834bce8cSMatthias Ringwald                     hci_stack->hci_transport->reset_link();
1783834bce8cSMatthias Ringwald                 }
1784772a36d3SMatthias Ringwald                 hci_stack->substate = HCI_INIT_SEND_RESET_CSR_WARM_BOOT;
1785772a36d3SMatthias Ringwald                 hci_run();
1786772a36d3SMatthias Ringwald             }
17874696bddbSMatthias Ringwald             break;
1788559961d0SMatthias Ringwald         case HCI_INIT_W4_CUSTOM_INIT_BCM_DELAY:
1789559961d0SMatthias Ringwald             // otherwise continue
1790559961d0SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_READ_LOCAL_SUPPORTED_COMMANDS;
1791559961d0SMatthias Ringwald             hci_send_cmd(&hci_read_local_supported_commands);
1792559961d0SMatthias Ringwald             break;
17930305bdeaSMatthias Ringwald         default:
17940305bdeaSMatthias Ringwald             break;
17950305bdeaSMatthias Ringwald     }
17960305bdeaSMatthias Ringwald }
179706b9e820SMatthias Ringwald #endif
17980305bdeaSMatthias Ringwald 
179971de195eSMatthias Ringwald static void hci_initializing_next_state(void){
180074b323a9SMatthias Ringwald     hci_stack->substate = (hci_substate_t )( ((int) hci_stack->substate) + 1);
180174b323a9SMatthias Ringwald }
180274b323a9SMatthias Ringwald 
1803f795c86eSMatthias Ringwald static void hci_init_done(void){
1804f795c86eSMatthias Ringwald     // done. tell the app
1805f795c86eSMatthias Ringwald     log_info("hci_init_done -> HCI_STATE_WORKING");
1806f795c86eSMatthias Ringwald     hci_stack->state = HCI_STATE_WORKING;
1807f795c86eSMatthias Ringwald     hci_emit_state();
1808f795c86eSMatthias Ringwald }
1809f795c86eSMatthias Ringwald 
181074b323a9SMatthias Ringwald // assumption: hci_can_send_command_packet_now() == true
181171de195eSMatthias Ringwald static void hci_initializing_run(void){
1812148ca237SMatthias Ringwald     log_debug("hci_initializing_run: substate %u, can send %u", hci_stack->substate, hci_can_send_command_packet_now());
1813f4c579d4SMatthias Ringwald 
18140d37aff3SMatthias Ringwald     if (!hci_can_send_command_packet_now()) return;
18150d37aff3SMatthias Ringwald 
1816f4c579d4SMatthias Ringwald #ifndef HAVE_HOST_CONTROLLER_API
1817f9fd20c2SMatthias Ringwald     bool need_baud_change = hci_stack->config
1818f4c579d4SMatthias Ringwald             && hci_stack->chipset
1819f4c579d4SMatthias Ringwald             && hci_stack->chipset->set_baudrate_command
1820f4c579d4SMatthias Ringwald             && hci_stack->hci_transport->set_baudrate
1821f4c579d4SMatthias Ringwald             && ((hci_transport_config_uart_t *)hci_stack->config)->baudrate_main;
1822f4c579d4SMatthias Ringwald #endif
1823f4c579d4SMatthias Ringwald 
182474b323a9SMatthias Ringwald     switch (hci_stack->substate){
182574b323a9SMatthias Ringwald         case HCI_INIT_SEND_RESET:
182674b323a9SMatthias Ringwald             hci_state_reset();
1827a0cf2f3fSMatthias Ringwald 
18286fad2c37SMatthias Ringwald #ifndef HAVE_HOST_CONTROLLER_API
18290305bdeaSMatthias Ringwald             // prepare reset if command complete not received in 100ms
1830659d758cSMatthias Ringwald             btstack_run_loop_set_timer(&hci_stack->timeout, HCI_RESET_RESEND_TIMEOUT_MS);
1831528a4a3bSMatthias Ringwald             btstack_run_loop_set_timer_handler(&hci_stack->timeout, hci_initialization_timeout_handler);
1832528a4a3bSMatthias Ringwald             btstack_run_loop_add_timer(&hci_stack->timeout);
1833a0cf2f3fSMatthias Ringwald #endif
18340305bdeaSMatthias Ringwald             // send command
183574b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_SEND_RESET;
18360305bdeaSMatthias Ringwald             hci_send_cmd(&hci_reset);
183774b323a9SMatthias Ringwald             break;
183876fcb19bSMatthias Ringwald         case HCI_INIT_SEND_READ_LOCAL_VERSION_INFORMATION:
183976fcb19bSMatthias Ringwald             hci_send_cmd(&hci_read_local_version_information);
184076fcb19bSMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_SEND_READ_LOCAL_VERSION_INFORMATION;
184176fcb19bSMatthias Ringwald             break;
1842e28e41c0SMatthias Ringwald 
1843e28e41c0SMatthias Ringwald #ifndef HAVE_HOST_CONTROLLER_API
1844e47e68c7SMatthias Ringwald         case HCI_INIT_SEND_RESET_CSR_WARM_BOOT:
1845e47e68c7SMatthias Ringwald             hci_state_reset();
1846e47e68c7SMatthias Ringwald             // prepare reset if command complete not received in 100ms
1847659d758cSMatthias Ringwald             btstack_run_loop_set_timer(&hci_stack->timeout, HCI_RESET_RESEND_TIMEOUT_MS);
1848528a4a3bSMatthias Ringwald             btstack_run_loop_set_timer_handler(&hci_stack->timeout, hci_initialization_timeout_handler);
1849528a4a3bSMatthias Ringwald             btstack_run_loop_add_timer(&hci_stack->timeout);
1850e47e68c7SMatthias Ringwald             // send command
1851e47e68c7SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_CUSTOM_INIT_CSR_WARM_BOOT;
1852e47e68c7SMatthias Ringwald             hci_send_cmd(&hci_reset);
1853e47e68c7SMatthias Ringwald             break;
18548d29070eSMatthias Ringwald         case HCI_INIT_SEND_RESET_ST_WARM_BOOT:
18558d29070eSMatthias Ringwald             hci_state_reset();
18568d29070eSMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_SEND_RESET_ST_WARM_BOOT;
18578d29070eSMatthias Ringwald             hci_send_cmd(&hci_reset);
18588d29070eSMatthias Ringwald             break;
1859f4c579d4SMatthias Ringwald         case HCI_INIT_SEND_BAUD_CHANGE_BCM: {
1860f4c579d4SMatthias Ringwald             uint32_t baud_rate = hci_transport_uart_get_main_baud_rate();
1861f4c579d4SMatthias Ringwald             hci_stack->chipset->set_baudrate_command(baud_rate, hci_stack->hci_packet_buffer);
1862f4c579d4SMatthias Ringwald             hci_stack->last_cmd_opcode = little_endian_read_16(hci_stack->hci_packet_buffer, 0);
1863f4c579d4SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_SEND_BAUD_CHANGE_BCM;
1864f4c579d4SMatthias Ringwald             hci_send_cmd_packet(hci_stack->hci_packet_buffer, 3u + hci_stack->hci_packet_buffer[2u]);
1865f4c579d4SMatthias Ringwald             break;
1866f4c579d4SMatthias Ringwald         }
1867c97af506SMatthias Ringwald         case HCI_INIT_SET_BD_ADDR:
1868c97af506SMatthias Ringwald             log_info("Set Public BD ADDR to %s", bd_addr_to_str(hci_stack->custom_bd_addr));
1869c97af506SMatthias Ringwald             hci_stack->chipset->set_bd_addr_command(hci_stack->custom_bd_addr, hci_stack->hci_packet_buffer);
1870c97af506SMatthias Ringwald             hci_stack->last_cmd_opcode = little_endian_read_16(hci_stack->hci_packet_buffer, 0);
1871c97af506SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_SET_BD_ADDR;
1872c97af506SMatthias Ringwald             hci_send_cmd_packet(hci_stack->hci_packet_buffer, 3u + hci_stack->hci_packet_buffer[2u]);
1873c97af506SMatthias Ringwald             break;
18748250c242SMatthias Ringwald         case HCI_INIT_SEND_READ_LOCAL_NAME:
18758250c242SMatthias Ringwald #ifdef ENABLE_CLASSIC
18768250c242SMatthias Ringwald             hci_send_cmd(&hci_read_local_name);
18778250c242SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_SEND_READ_LOCAL_NAME;
18788250c242SMatthias Ringwald             break;
18798250c242SMatthias Ringwald #endif
18808250c242SMatthias Ringwald             /* fall through */
18818250c242SMatthias Ringwald 
1882f4c579d4SMatthias Ringwald         case HCI_INIT_SEND_BAUD_CHANGE:
1883f4c579d4SMatthias Ringwald             if (need_baud_change) {
188496b53536SMatthias Ringwald                 uint32_t baud_rate = hci_transport_uart_get_main_baud_rate();
18853fb36a29SMatthias Ringwald                 hci_stack->chipset->set_baudrate_command(baud_rate, hci_stack->hci_packet_buffer);
1886f8fbdce0SMatthias Ringwald                 hci_stack->last_cmd_opcode = little_endian_read_16(hci_stack->hci_packet_buffer, 0);
188774b323a9SMatthias Ringwald                 hci_stack->substate = HCI_INIT_W4_SEND_BAUD_CHANGE;
18884ea43905SMatthias Ringwald                 hci_send_cmd_packet(hci_stack->hci_packet_buffer, 3u + hci_stack->hci_packet_buffer[2u]);
18894696bddbSMatthias Ringwald                 // STLC25000D: baudrate change happens within 0.5 s after command was send,
18904696bddbSMatthias Ringwald                 // use timer to update baud rate after 100 ms (knowing exactly, when command was sent is non-trivial)
189161f37892SMatthias Ringwald                 if (hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_ST_MICROELECTRONICS){
1892659d758cSMatthias Ringwald                     btstack_run_loop_set_timer(&hci_stack->timeout, HCI_RESET_RESEND_TIMEOUT_MS);
1893528a4a3bSMatthias Ringwald                     btstack_run_loop_add_timer(&hci_stack->timeout);
18944696bddbSMatthias Ringwald                }
189574b323a9SMatthias Ringwald                break;
1896fab26ab3SMatthias Ringwald             }
18976fe16221SMatthias Ringwald             hci_stack->substate = HCI_INIT_CUSTOM_INIT;
1898f4c579d4SMatthias Ringwald 
1899f4c579d4SMatthias Ringwald             /* fall through */
1900f4c579d4SMatthias Ringwald 
190174b323a9SMatthias Ringwald         case HCI_INIT_CUSTOM_INIT:
19026fe16221SMatthias Ringwald         case HCI_INIT_CUSTOM_PRE_INIT:
190374b323a9SMatthias Ringwald             // Custom initialization
19043fb36a29SMatthias Ringwald             if (hci_stack->chipset && hci_stack->chipset->next_command){
1905ae334e9eSMatthias Ringwald                 hci_stack->chipset_result = (*hci_stack->chipset->next_command)(hci_stack->hci_packet_buffer);
19061979f09cSMatthias Ringwald                 bool send_cmd = false;
1907ae334e9eSMatthias Ringwald                 switch (hci_stack->chipset_result){
1908f41911edSMatthias Ringwald                     case BTSTACK_CHIPSET_VALID_COMMAND:
19091979f09cSMatthias Ringwald                         send_cmd = true;
19106fe16221SMatthias Ringwald                         switch (hci_stack->substate){
19116fe16221SMatthias Ringwald                             case HCI_INIT_CUSTOM_INIT:
1912e47e68c7SMatthias Ringwald                                 hci_stack->substate = HCI_INIT_W4_CUSTOM_INIT;
1913e47e68c7SMatthias Ringwald                                 break;
19146fe16221SMatthias Ringwald                             case HCI_INIT_CUSTOM_PRE_INIT:
19156fe16221SMatthias Ringwald                                 hci_stack->substate = HCI_INIT_W4_CUSTOM_PRE_INIT;
19166fe16221SMatthias Ringwald                                 break;
19176fe16221SMatthias Ringwald                             default:
19186fe16221SMatthias Ringwald                                 btstack_assert(false);
19196fe16221SMatthias Ringwald                                 break;
19206fe16221SMatthias Ringwald                         }
19216fe16221SMatthias Ringwald                         break;
1922f41911edSMatthias Ringwald                     case BTSTACK_CHIPSET_WARMSTART_REQUIRED:
19231979f09cSMatthias Ringwald                         send_cmd = true;
1924f41911edSMatthias Ringwald                         // CSR Warm Boot: Wait a bit, then send HCI Reset until HCI Command Complete
1925e47e68c7SMatthias Ringwald                         log_info("CSR Warm Boot");
1926659d758cSMatthias Ringwald                         btstack_run_loop_set_timer(&hci_stack->timeout, HCI_RESET_RESEND_TIMEOUT_MS);
1927528a4a3bSMatthias Ringwald                         btstack_run_loop_set_timer_handler(&hci_stack->timeout, hci_initialization_timeout_handler);
1928528a4a3bSMatthias Ringwald                         btstack_run_loop_add_timer(&hci_stack->timeout);
1929a1df452eSMatthias Ringwald                         if ((hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_CAMBRIDGE_SILICON_RADIO)
1930772a36d3SMatthias Ringwald                             && hci_stack->config
19313fb36a29SMatthias Ringwald                             && hci_stack->chipset
19323fb36a29SMatthias Ringwald                             // && hci_stack->chipset->set_baudrate_command -- there's no such command
1933772a36d3SMatthias Ringwald                             && hci_stack->hci_transport->set_baudrate
19342caefae9SMatthias Ringwald                             && hci_transport_uart_get_main_baud_rate()){
1935772a36d3SMatthias Ringwald                             hci_stack->substate = HCI_INIT_W4_SEND_BAUD_CHANGE;
1936772a36d3SMatthias Ringwald                         } else {
19379f007422SMatthias Ringwald                            hci_stack->substate = HCI_INIT_W4_CUSTOM_INIT_CSR_WARM_BOOT_LINK_RESET;
1938772a36d3SMatthias Ringwald                         }
1939e47e68c7SMatthias Ringwald                         break;
1940f41911edSMatthias Ringwald                     default:
1941f41911edSMatthias Ringwald                         break;
1942e47e68c7SMatthias Ringwald                 }
1943ee720f3aSMatthias Ringwald 
1944ee720f3aSMatthias Ringwald                 if (send_cmd){
19454ea43905SMatthias Ringwald                     int size = 3u + hci_stack->hci_packet_buffer[2u];
1946ee720f3aSMatthias Ringwald                     hci_stack->last_cmd_opcode = little_endian_read_16(hci_stack->hci_packet_buffer, 0);
1947ee720f3aSMatthias Ringwald                     hci_dump_packet(HCI_COMMAND_DATA_PACKET, 0, hci_stack->hci_packet_buffer, size);
19480305bdeaSMatthias Ringwald                     hci_stack->hci_transport->send_packet(HCI_COMMAND_DATA_PACKET, hci_stack->hci_packet_buffer, size);
194974b323a9SMatthias Ringwald                     break;
195074b323a9SMatthias Ringwald                 }
1951148ca237SMatthias Ringwald                 log_info("Init script done");
195292a0d36dSMatthias Ringwald 
19536fe16221SMatthias Ringwald                 // Custom Pre-Init complete, start regular init with HCI Reset
19546fe16221SMatthias Ringwald                 if (hci_stack->substate == HCI_INIT_CUSTOM_PRE_INIT){
19556fe16221SMatthias Ringwald                     hci_stack->substate = HCI_INIT_W4_SEND_RESET;
19566fe16221SMatthias Ringwald                     hci_send_cmd(&hci_reset);
19576fe16221SMatthias Ringwald                     break;
19586fe16221SMatthias Ringwald                 }
19596fe16221SMatthias Ringwald 
1960559961d0SMatthias Ringwald                 // Init script download on Broadcom chipsets causes:
1961ae334e9eSMatthias Ringwald                 if ( (hci_stack->chipset_result != BTSTACK_CHIPSET_NO_INIT_SCRIPT) &&
1962a1df452eSMatthias Ringwald                    (  (hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_BROADCOM_CORPORATION)
1963a1df452eSMatthias Ringwald                 ||    (hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_EM_MICROELECTRONIC_MARIN_SA)) ){
1964e021ff1eSMatthias Ringwald 
1965559961d0SMatthias Ringwald                     // - baud rate to reset, restore UART baud rate if needed
196692a0d36dSMatthias Ringwald                     if (need_baud_change) {
19679796ebeaSMatthias Ringwald                         uint32_t baud_rate = ((hci_transport_config_uart_t *)hci_stack->config)->baudrate_init;
1968cd724cb7SMatthias Ringwald                         log_info("Local baud rate change to %" PRIu32 " after init script (bcm)", baud_rate);
196992a0d36dSMatthias Ringwald                         hci_stack->hci_transport->set_baudrate(baud_rate);
197092a0d36dSMatthias Ringwald                     }
1971559961d0SMatthias Ringwald 
1972f19b3c9eSMatthias Ringwald                     uint16_t bcm_delay_ms = 300;
1973f19b3c9eSMatthias Ringwald                     // - UART may or may not be disabled during update and Controller RTS may or may not be high during this time
1974f19b3c9eSMatthias Ringwald                     //   -> Work around: wait here.
1975f19b3c9eSMatthias Ringwald                     log_info("BCM delay (%u ms) after init script", bcm_delay_ms);
1976559961d0SMatthias Ringwald                     hci_stack->substate = HCI_INIT_W4_CUSTOM_INIT_BCM_DELAY;
1977f19b3c9eSMatthias Ringwald                     btstack_run_loop_set_timer(&hci_stack->timeout, bcm_delay_ms);
1978559961d0SMatthias Ringwald                     btstack_run_loop_set_timer_handler(&hci_stack->timeout, hci_initialization_timeout_handler);
1979559961d0SMatthias Ringwald                     btstack_run_loop_add_timer(&hci_stack->timeout);
1980559961d0SMatthias Ringwald                     break;
198192a0d36dSMatthias Ringwald                 }
198274b323a9SMatthias Ringwald             }
198306b9e820SMatthias Ringwald #endif
1984521bd5ffSMatthias Ringwald             /* fall through */
198506b9e820SMatthias Ringwald 
198606b9e820SMatthias Ringwald         case HCI_INIT_READ_LOCAL_SUPPORTED_COMMANDS:
198706b9e820SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_READ_LOCAL_SUPPORTED_COMMANDS;
198806b9e820SMatthias Ringwald             hci_send_cmd(&hci_read_local_supported_commands);
198906b9e820SMatthias Ringwald             break;
199053860077SMatthias Ringwald         case HCI_INIT_READ_BD_ADDR:
199153860077SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_READ_BD_ADDR;
199253860077SMatthias Ringwald             hci_send_cmd(&hci_read_bd_addr);
199353860077SMatthias Ringwald             break;
199474b323a9SMatthias Ringwald         case HCI_INIT_READ_BUFFER_SIZE:
19955ffe9d0bSMatthias Ringwald             // only read buffer size if supported
19961ffa425cSMatthias Ringwald             if (hci_command_supported(SUPPORTED_HCI_COMMAND_READ_BUFFER_SIZE)){
199774b323a9SMatthias Ringwald                 hci_stack->substate = HCI_INIT_W4_READ_BUFFER_SIZE;
19980305bdeaSMatthias Ringwald                 hci_send_cmd(&hci_read_buffer_size);
199974b323a9SMatthias Ringwald                 break;
20005ffe9d0bSMatthias Ringwald             }
2001521bd5ffSMatthias Ringwald 
20025ffe9d0bSMatthias Ringwald             /* fall through */
20035ffe9d0bSMatthias Ringwald 
200453860077SMatthias Ringwald         case HCI_INIT_READ_LOCAL_SUPPORTED_FEATURES:
200553860077SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_READ_LOCAL_SUPPORTED_FEATURES;
20060305bdeaSMatthias Ringwald             hci_send_cmd(&hci_read_local_supported_features);
200774b323a9SMatthias Ringwald             break;
20082b838201SMatthias Ringwald 
20092b838201SMatthias Ringwald #ifdef ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL
20102b838201SMatthias Ringwald         case HCI_INIT_SET_CONTROLLER_TO_HOST_FLOW_CONTROL:
20112b838201SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_SET_CONTROLLER_TO_HOST_FLOW_CONTROL;
20122b838201SMatthias Ringwald             hci_send_cmd(&hci_set_controller_to_host_flow_control, 3);  // ACL + SCO Flow Control
20132b838201SMatthias Ringwald             break;
20142b838201SMatthias Ringwald         case HCI_INIT_HOST_BUFFER_SIZE:
20152b838201SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_HOST_BUFFER_SIZE;
20162b838201SMatthias Ringwald             hci_send_cmd(&hci_host_buffer_size, HCI_HOST_ACL_PACKET_LEN, HCI_HOST_SCO_PACKET_LEN,
20172b838201SMatthias Ringwald                                                 HCI_HOST_ACL_PACKET_NUM, HCI_HOST_SCO_PACKET_NUM);
20182b838201SMatthias Ringwald             break;
20192b838201SMatthias Ringwald #endif
20202b838201SMatthias Ringwald 
202174b323a9SMatthias Ringwald         case HCI_INIT_SET_EVENT_MASK:
20220305bdeaSMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_SET_EVENT_MASK;
202374b323a9SMatthias Ringwald             if (hci_le_supported()){
20245ce1359eSMatthias Ringwald                 hci_send_cmd(&hci_set_event_mask,0xFFFFFFFFU, 0x3FFFFFFFU);
202574b323a9SMatthias Ringwald             } else {
202674b323a9SMatthias Ringwald                 // Kensington Bluetooth 2.1 USB Dongle (CSR Chipset) returns an error for 0xffff...
20275ce1359eSMatthias Ringwald                 hci_send_cmd(&hci_set_event_mask,0xFFFFFFFFU, 0x1FFFFFFFU);
202874b323a9SMatthias Ringwald             }
202974b323a9SMatthias Ringwald             break;
20302b838201SMatthias Ringwald 
2031ff7d1758SMatthias Ringwald         case HCI_INIT_SET_EVENT_MASK_2:
20328254e329SMatthias Ringwald             // On Bluettooth PTS dongle (BL 654) with PacketCraft HCI Firmware (LMP subversion) 0x5244,
20338254e329SMatthias Ringwald             // setting Event Mask 2 causes Controller to drop Encryption Change events.
20348254e329SMatthias Ringwald             if (hci_command_supported(SUPPORTED_HCI_COMMAND_SET_EVENT_MASK_PAGE_2)
20358254e329SMatthias Ringwald             && (hci_stack->manufacturer != BLUETOOTH_COMPANY_ID_PACKETCRAFT_INC)){
2036ff7d1758SMatthias Ringwald                 hci_stack->substate = HCI_INIT_W4_SET_EVENT_MASK_2;
2037ff7d1758SMatthias Ringwald                 // Encryption Change Event v2 - bit 25
2038ff7d1758SMatthias Ringwald                 hci_send_cmd(&hci_set_event_mask_2,0x02000000U, 0x0);
2039ff7d1758SMatthias Ringwald                 break;
2040ff7d1758SMatthias Ringwald             }
2041ff7d1758SMatthias Ringwald 
204235454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
2043ff7d1758SMatthias Ringwald             /* fall through */
2044ff7d1758SMatthias Ringwald 
204574b323a9SMatthias Ringwald         case HCI_INIT_WRITE_SIMPLE_PAIRING_MODE:
2046f795c86eSMatthias Ringwald             if (hci_classic_supported() && gap_ssp_supported()){
204774b323a9SMatthias Ringwald                 hci_stack->substate = HCI_INIT_W4_WRITE_SIMPLE_PAIRING_MODE;
20480305bdeaSMatthias Ringwald                 hci_send_cmd(&hci_write_simple_pairing_mode, hci_stack->ssp_enable);
204974b323a9SMatthias Ringwald                 break;
2050e7c662faSMatthias Ringwald             }
2051521bd5ffSMatthias Ringwald 
2052e7c662faSMatthias Ringwald             /* fall through */
2053e7c662faSMatthias Ringwald 
2054f6858d14SMatthias Ringwald         case HCI_INIT_WRITE_INQUIRY_MODE:
2055f795c86eSMatthias Ringwald             if (hci_classic_supported()){
2056f6858d14SMatthias Ringwald                 hci_stack->substate = HCI_INIT_W4_WRITE_INQUIRY_MODE;
20578a114470SMatthias Ringwald                 hci_send_cmd(&hci_write_inquiry_mode, (int) hci_stack->inquiry_mode);
2058f6858d14SMatthias Ringwald                 break;
2059f795c86eSMatthias Ringwald             }
2060521bd5ffSMatthias Ringwald 
2061f795c86eSMatthias Ringwald             /* fall through */
2062f795c86eSMatthias Ringwald 
20635d23aae8SMatthias Ringwald         case HCI_INIT_WRITE_SECURE_CONNECTIONS_HOST_ENABLE:
2064f3052906SMatthias Ringwald             // skip write secure connections host support if not supported or disabled
20651ffa425cSMatthias Ringwald             if (hci_classic_supported() && hci_stack->secure_connections_enable
20661ffa425cSMatthias Ringwald             && hci_command_supported(SUPPORTED_HCI_COMMAND_WRITE_SECURE_CONNECTIONS_HOST)) {
2067c214d65bSMatthias Ringwald                 hci_stack->secure_connections_active = true;
20685d23aae8SMatthias Ringwald                 hci_stack->substate = HCI_INIT_W4_WRITE_SECURE_CONNECTIONS_HOST_ENABLE;
20691ffa425cSMatthias Ringwald                 hci_send_cmd(&hci_write_secure_connections_host_support, 1);
20705d23aae8SMatthias Ringwald                 break;
2071f3052906SMatthias Ringwald             }
2072521bd5ffSMatthias Ringwald 
2073a391128dSMatthias Ringwald             /* fall through */
2074a391128dSMatthias Ringwald 
2075a391128dSMatthias Ringwald         case HCI_INIT_SET_MIN_ENCRYPTION_KEY_SIZE:
2076a391128dSMatthias Ringwald             // skip set min encryption key size
2077a391128dSMatthias Ringwald             if (hci_classic_supported() && hci_command_supported(SUPPORTED_HCI_COMMAND_SET_MIN_ENCRYPTION_KEY_SIZE)) {
2078a391128dSMatthias Ringwald                 hci_stack->substate = HCI_INIT_W4_SET_MIN_ENCRYPTION_KEY_SIZE;
2079a391128dSMatthias Ringwald                 hci_send_cmd(&hci_set_min_encryption_key_size, hci_stack->gap_required_encyrption_key_size);
2080a391128dSMatthias Ringwald                 break;
2081a391128dSMatthias Ringwald             }
2082a391128dSMatthias Ringwald 
2083e4c6114dSMatthias Ringwald #ifdef ENABLE_SCO_OVER_HCI
2084521bd5ffSMatthias Ringwald             /* fall through */
2085521bd5ffSMatthias Ringwald 
2086483c5078SMatthias Ringwald         // only sent if ENABLE_SCO_OVER_HCI is defined
2087729ed62eSMatthias Ringwald         case HCI_INIT_WRITE_SYNCHRONOUS_FLOW_CONTROL_ENABLE:
2088e4c6114dSMatthias Ringwald             // skip write synchronous flow control if not supported
20891ffa425cSMatthias Ringwald             if (hci_classic_supported()
20901ffa425cSMatthias Ringwald             && hci_command_supported(SUPPORTED_HCI_COMMAND_WRITE_SYNCHRONOUS_FLOW_CONTROL_ENABLE)) {
2091729ed62eSMatthias Ringwald                 hci_stack->substate = HCI_INIT_W4_WRITE_SYNCHRONOUS_FLOW_CONTROL_ENABLE;
2092729ed62eSMatthias Ringwald                 hci_send_cmd(&hci_write_synchronous_flow_control_enable, 1); // SCO tracking enabled
2093729ed62eSMatthias Ringwald                 break;
2094f795c86eSMatthias Ringwald             }
2095f795c86eSMatthias Ringwald             /* fall through */
2096f795c86eSMatthias Ringwald 
2097483c5078SMatthias Ringwald         case HCI_INIT_WRITE_DEFAULT_ERRONEOUS_DATA_REPORTING:
2098e4c6114dSMatthias Ringwald             // skip write default erroneous data reporting if not supported
20991ffa425cSMatthias Ringwald             if (hci_classic_supported()
21001ffa425cSMatthias Ringwald             && hci_command_supported(SUPPORTED_HCI_COMMAND_WRITE_DEFAULT_ERRONEOUS_DATA_REPORTING)) {
2101483c5078SMatthias Ringwald                 hci_stack->substate = HCI_INIT_W4_WRITE_DEFAULT_ERRONEOUS_DATA_REPORTING;
2102483c5078SMatthias Ringwald                 hci_send_cmd(&hci_write_default_erroneous_data_reporting, 1);
2103483c5078SMatthias Ringwald                 break;
2104f795c86eSMatthias Ringwald             }
2105e4c6114dSMatthias Ringwald #endif
2106f795c86eSMatthias Ringwald 
2107f795c86eSMatthias Ringwald #if defined(ENABLE_SCO_OVER_HCI) || defined(ENABLE_SCO_OVER_PCM)
2108521bd5ffSMatthias Ringwald             /* fall through */
2109521bd5ffSMatthias Ringwald 
21108051253fSMatthias Ringwald         // only sent if manufacturer is Broadcom and ENABLE_SCO_OVER_HCI or ENABLE_SCO_OVER_PCM is defined
2111a42798c3SMatthias Ringwald         case HCI_INIT_BCM_WRITE_SCO_PCM_INT:
2112e4c6114dSMatthias Ringwald             if (hci_classic_supported() && (hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_BROADCOM_CORPORATION)){
2113a42798c3SMatthias Ringwald                 hci_stack->substate = HCI_INIT_W4_BCM_WRITE_SCO_PCM_INT;
21148051253fSMatthias Ringwald #ifdef ENABLE_SCO_OVER_HCI
2115a42798c3SMatthias Ringwald                 log_info("BCM: Route SCO data via HCI transport");
2116a42798c3SMatthias Ringwald                 hci_send_cmd(&hci_bcm_write_sco_pcm_int, 1, 0, 0, 0, 0);
21178051253fSMatthias Ringwald #endif
21188051253fSMatthias Ringwald #ifdef ENABLE_SCO_OVER_PCM
21198051253fSMatthias Ringwald                 log_info("BCM: Route SCO data via PCM interface");
21201d2bbd54SMatthias Ringwald #ifdef ENABLE_BCM_PCM_WBS
2121f795c86eSMatthias Ringwald                 // 512 kHz bit clock for 2 channels x 16 bit x 16 kHz
21221d2bbd54SMatthias Ringwald                 hci_send_cmd(&hci_bcm_write_sco_pcm_int, 0, 2, 0, 1, 1);
21231d2bbd54SMatthias Ringwald #else
21241d2bbd54SMatthias Ringwald                 // 256 kHz bit clock for 2 channels x 16 bit x 8 kHz
21251d2bbd54SMatthias Ringwald                 hci_send_cmd(&hci_bcm_write_sco_pcm_int, 0, 1, 0, 1, 1);
21261d2bbd54SMatthias Ringwald #endif
21278051253fSMatthias Ringwald #endif
2128a42798c3SMatthias Ringwald                 break;
2129f795c86eSMatthias Ringwald             }
2130f795c86eSMatthias Ringwald #endif
2131f795c86eSMatthias Ringwald 
21324e821764SMatthias Ringwald #ifdef ENABLE_SCO_OVER_PCM
2133521bd5ffSMatthias Ringwald             /* fall through */
2134521bd5ffSMatthias Ringwald 
21354e821764SMatthias Ringwald         case HCI_INIT_BCM_WRITE_I2SPCM_INTERFACE_PARAM:
2136e4c6114dSMatthias Ringwald             if (hci_classic_supported() && (hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_BROADCOM_CORPORATION)){
21374e821764SMatthias Ringwald                 hci_stack->substate = HCI_INIT_W4_BCM_WRITE_I2SPCM_INTERFACE_PARAM;
21384e821764SMatthias Ringwald                 log_info("BCM: Config PCM interface for I2S");
21391d2bbd54SMatthias Ringwald #ifdef ENABLE_BCM_PCM_WBS
21401d2bbd54SMatthias Ringwald                 // 512 kHz bit clock for 2 channels x 16 bit x 8 kHz
21411d2bbd54SMatthias Ringwald                 hci_send_cmd(&hci_bcm_write_i2spcm_interface_param, 1, 1, 0, 2);
21421d2bbd54SMatthias Ringwald #else
21431d2bbd54SMatthias Ringwald                 // 256 kHz bit clock for 2 channels x 16 bit x 8 kHz
21441d2bbd54SMatthias Ringwald                 hci_send_cmd(&hci_bcm_write_i2spcm_interface_param, 1, 1, 0, 1);
21451d2bbd54SMatthias Ringwald #endif
21464e821764SMatthias Ringwald                 break;
2147f795c86eSMatthias Ringwald             }
214835454696SMatthias Ringwald #endif
21494e821764SMatthias Ringwald #endif
21504e821764SMatthias Ringwald 
2151a9a4c409SMatthias Ringwald #ifdef ENABLE_BLE
2152521bd5ffSMatthias Ringwald             /* fall through */
2153521bd5ffSMatthias Ringwald 
215474b323a9SMatthias Ringwald         // LE INIT
215574b323a9SMatthias Ringwald         case HCI_INIT_LE_READ_BUFFER_SIZE:
2156f795c86eSMatthias Ringwald             if (hci_le_supported()){
215774b323a9SMatthias Ringwald                 hci_stack->substate = HCI_INIT_W4_LE_READ_BUFFER_SIZE;
215879b7ea2dSMatthias Ringwald                 if (hci_command_supported(SUPPORTED_HCI_COMMAND_LE_READ_BUFFER_SIZE_V2)){
215979b7ea2dSMatthias Ringwald                     hci_send_cmd(&hci_le_read_buffer_size_v2);
216079b7ea2dSMatthias Ringwald                 } else {
21610305bdeaSMatthias Ringwald                     hci_send_cmd(&hci_le_read_buffer_size);
216279b7ea2dSMatthias Ringwald                 }
216374b323a9SMatthias Ringwald                 break;
2164f795c86eSMatthias Ringwald             }
2165521bd5ffSMatthias Ringwald 
2166f795c86eSMatthias Ringwald             /* fall through */
2167f795c86eSMatthias Ringwald 
2168699a5fcaSMatthias Ringwald         case HCI_INIT_WRITE_LE_HOST_SUPPORTED:
2169699a5fcaSMatthias Ringwald             // skip write le host if not supported (e.g. on LE only EM9301)
21701ffa425cSMatthias Ringwald             if (hci_le_supported()
21711ffa425cSMatthias Ringwald             && hci_command_supported(SUPPORTED_HCI_COMMAND_WRITE_LE_HOST_SUPPORTED)) {
2172699a5fcaSMatthias Ringwald                 // LE Supported Host = 1, Simultaneous Host = 0
2173699a5fcaSMatthias Ringwald                 hci_stack->substate = HCI_INIT_W4_WRITE_LE_HOST_SUPPORTED;
2174699a5fcaSMatthias Ringwald                 hci_send_cmd(&hci_write_le_host_supported, 1, 0);
2175daabb8b8SMatthias Ringwald                 break;
2176f795c86eSMatthias Ringwald             }
2177521bd5ffSMatthias Ringwald 
2178f795c86eSMatthias Ringwald             /* fall through */
2179f795c86eSMatthias Ringwald 
2180699a5fcaSMatthias Ringwald         case HCI_INIT_LE_SET_EVENT_MASK:
2181f795c86eSMatthias Ringwald             if (hci_le_supported()){
2182699a5fcaSMatthias Ringwald                 hci_stack->substate = HCI_INIT_W4_LE_SET_EVENT_MASK;
218391d9e5d0SMatthias Ringwald                 hci_send_cmd(&hci_le_set_event_mask, 0xfffffdff, 0x07); // all events from core v5.3 without LE Enhanced Connection Complete
218474b323a9SMatthias Ringwald                 break;
2185f795c86eSMatthias Ringwald             }
2186b435e062SMatthias Ringwald #endif
2187b435e062SMatthias Ringwald 
2188b435e062SMatthias Ringwald #ifdef ENABLE_LE_DATA_LENGTH_EXTENSION
2189521bd5ffSMatthias Ringwald             /* fall through */
2190521bd5ffSMatthias Ringwald 
2191dcd678baSMatthias Ringwald         case HCI_INIT_LE_READ_MAX_DATA_LENGTH:
21921ffa425cSMatthias Ringwald             if (hci_le_supported()
21931ffa425cSMatthias Ringwald             && hci_command_supported(SUPPORTED_HCI_COMMAND_LE_READ_MAXIMUM_DATA_LENGTH)) {
2194dcd678baSMatthias Ringwald                 hci_stack->substate = HCI_INIT_W4_LE_READ_MAX_DATA_LENGTH;
2195dcd678baSMatthias Ringwald                 hci_send_cmd(&hci_le_read_maximum_data_length);
2196dcd678baSMatthias Ringwald                 break;
2197f795c86eSMatthias Ringwald             }
2198521bd5ffSMatthias Ringwald 
2199f795c86eSMatthias Ringwald             /* fall through */
2200f795c86eSMatthias Ringwald 
2201dcd678baSMatthias Ringwald         case HCI_INIT_LE_WRITE_SUGGESTED_DATA_LENGTH:
22021ffa425cSMatthias Ringwald             if (hci_le_supported()
22031ffa425cSMatthias Ringwald             && hci_command_supported(SUPPORTED_HCI_COMMAND_LE_WRITE_SUGGESTED_DEFAULT_DATA_LENGTH)) {
2204dcd678baSMatthias Ringwald                 hci_stack->substate = HCI_INIT_W4_LE_WRITE_SUGGESTED_DATA_LENGTH;
2205b435e062SMatthias 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);
2206dcd678baSMatthias Ringwald                 break;
2207f795c86eSMatthias Ringwald             }
2208b435e062SMatthias Ringwald #endif
2209b435e062SMatthias Ringwald 
2210b95a5a35SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
2211521bd5ffSMatthias Ringwald             /* fall through */
2212521bd5ffSMatthias Ringwald 
22133b6d4121SMatthias Ringwald         case HCI_INIT_READ_WHITE_LIST_SIZE:
2214f795c86eSMatthias Ringwald             if (hci_le_supported()){
22153b6d4121SMatthias Ringwald                 hci_stack->substate = HCI_INIT_W4_READ_WHITE_LIST_SIZE;
22163b6d4121SMatthias Ringwald                 hci_send_cmd(&hci_le_read_white_list_size);
22173b6d4121SMatthias Ringwald                 break;
2218f795c86eSMatthias Ringwald             }
2219521bd5ffSMatthias Ringwald 
222074b323a9SMatthias Ringwald #endif
22214f982f31SMatthias Ringwald 
22223a74541eSMatthias Ringwald #ifdef ENABLE_LE_PERIPHERAL
22233a74541eSMatthias Ringwald #ifdef ENABLE_LE_EXTENDED_ADVERTISING
22243a74541eSMatthias Ringwald             /* fall through */
22253a74541eSMatthias Ringwald 
22263a74541eSMatthias Ringwald         case HCI_INIT_LE_READ_MAX_ADV_DATA_LEN:
22273a74541eSMatthias Ringwald             if (hci_extended_advertising_supported()){
22283a74541eSMatthias Ringwald                 hci_stack->substate = HCI_INIT_W4_LE_READ_MAX_ADV_DATA_LEN;
22293a74541eSMatthias Ringwald                 hci_send_cmd(&hci_le_read_maximum_advertising_data_length);
22303a74541eSMatthias Ringwald                 break;
22313a74541eSMatthias Ringwald             }
22323a74541eSMatthias Ringwald #endif
22333a74541eSMatthias Ringwald #endif
2234521bd5ffSMatthias Ringwald             /* fall through */
2235521bd5ffSMatthias Ringwald 
2236c63ee49aSMatthias Ringwald #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
2237c63ee49aSMatthias Ringwald     case HCI_INIT_LE_SET_HOST_FEATURE_CONNECTED_ISO_STREAMS:
2238c63ee49aSMatthias Ringwald             if (hci_le_supported()) {
2239c63ee49aSMatthias Ringwald                 hci_stack->substate = HCI_INIT_W4_LE_SET_HOST_FEATURE_CONNECTED_ISO_STREAMS;
2240c63ee49aSMatthias Ringwald                 hci_send_cmd(&hci_le_set_host_feature, 32, 1);
2241c63ee49aSMatthias Ringwald                 break;
2242c63ee49aSMatthias Ringwald             }
2243c63ee49aSMatthias Ringwald #endif
2244c63ee49aSMatthias Ringwald 
2245c63ee49aSMatthias Ringwald             /* fall through */
2246c63ee49aSMatthias Ringwald 
2247f795c86eSMatthias Ringwald         case HCI_INIT_DONE:
22484f982f31SMatthias Ringwald             hci_stack->substate = HCI_INIT_DONE;
224973799937SMatthias Ringwald             // main init sequence complete
22504f982f31SMatthias Ringwald #ifdef ENABLE_CLASSIC
225173799937SMatthias Ringwald             // check if initial Classic GAP Tasks are completed
2252baa4881eSMatthias Ringwald             if (hci_classic_supported() && (hci_stack->gap_tasks_classic != 0)) {
22534f982f31SMatthias Ringwald                 hci_run_gap_tasks_classic();
22544f982f31SMatthias Ringwald                 break;
22554f982f31SMatthias Ringwald             }
22564f982f31SMatthias Ringwald #endif
225773799937SMatthias Ringwald #ifdef ENABLE_BLE
225873799937SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
225973799937SMatthias Ringwald             // check if initial LE GAP Tasks are completed
226073799937SMatthias Ringwald             if (hci_le_supported() && hci_stack->le_scanning_param_update) {
226173799937SMatthias Ringwald                 hci_run_general_gap_le();
226273799937SMatthias Ringwald                 break;
226373799937SMatthias Ringwald             }
226473799937SMatthias Ringwald #endif
226573799937SMatthias Ringwald #endif
2266f795c86eSMatthias Ringwald             hci_init_done();
2267f795c86eSMatthias Ringwald             break;
2268f795c86eSMatthias Ringwald 
226974b323a9SMatthias Ringwald         default:
227074b323a9SMatthias Ringwald             return;
227174b323a9SMatthias Ringwald     }
227255975f88SMatthias Ringwald }
227355975f88SMatthias Ringwald 
227407fd2f31SMatthias Ringwald static bool hci_initializing_event_handler_command_completed(const uint8_t * packet){
227507fd2f31SMatthias Ringwald     bool command_completed = false;
22760e2df43fSMatthias Ringwald     if (hci_event_packet_get_type(packet) == HCI_EVENT_COMMAND_COMPLETE){
2277f8fbdce0SMatthias Ringwald         uint16_t opcode = little_endian_read_16(packet,3);
22786155b3d3S[email protected]         if (opcode == hci_stack->last_cmd_opcode){
227907fd2f31SMatthias Ringwald             command_completed = true;
2280148ca237SMatthias Ringwald             log_debug("Command complete for expected opcode %04x at substate %u", opcode, hci_stack->substate);
22816155b3d3S[email protected]         } else {
2282d58dd308SMatthias Ringwald             log_info("Command complete for different opcode %04x, expected %04x, at substate %u", opcode, hci_stack->last_cmd_opcode, hci_stack->substate);
22836155b3d3S[email protected]         }
22846155b3d3S[email protected]     }
22850f97eae7SMatthias Ringwald 
22860e2df43fSMatthias Ringwald     if (hci_event_packet_get_type(packet) == HCI_EVENT_COMMAND_STATUS){
22876155b3d3S[email protected]         uint8_t  status = packet[2];
2288f8fbdce0SMatthias Ringwald         uint16_t opcode = little_endian_read_16(packet,4);
22896155b3d3S[email protected]         if (opcode == hci_stack->last_cmd_opcode){
22906155b3d3S[email protected]             if (status){
229107fd2f31SMatthias Ringwald                 command_completed = true;
2292148ca237SMatthias Ringwald                 log_debug("Command status error 0x%02x for expected opcode %04x at substate %u", status, opcode, hci_stack->substate);
22936155b3d3S[email protected]             } else {
22946155b3d3S[email protected]                 log_info("Command status OK for expected opcode %04x, waiting for command complete", opcode);
22956155b3d3S[email protected]             }
22966155b3d3S[email protected]         } else {
2297148ca237SMatthias Ringwald             log_debug("Command status for opcode %04x, expected %04x", opcode, hci_stack->last_cmd_opcode);
22986155b3d3S[email protected]         }
22996155b3d3S[email protected]     }
23006fad2c37SMatthias Ringwald #ifndef HAVE_HOST_CONTROLLER_API
2301e47e68c7SMatthias Ringwald     // Vendor == CSR
23020e588213SMatthias Ringwald     if ((hci_stack->substate == HCI_INIT_W4_CUSTOM_INIT) && (hci_event_packet_get_type(packet) == HCI_EVENT_VENDOR_SPECIFIC)){
2303e47e68c7SMatthias Ringwald         // TODO: track actual command
230407fd2f31SMatthias Ringwald         command_completed = true;
2305e47e68c7SMatthias Ringwald     }
2306a2481739S[email protected] 
23074e9daa6fSMatthias Ringwald     // Vendor == Toshiba
23080e588213SMatthias Ringwald     if ((hci_stack->substate == HCI_INIT_W4_SEND_BAUD_CHANGE) && (hci_event_packet_get_type(packet) == HCI_EVENT_VENDOR_SPECIFIC)){
23094e9daa6fSMatthias Ringwald         // TODO: track actual command
231007fd2f31SMatthias Ringwald         command_completed = true;
2311004902f1SMatthias Ringwald         // Fix: no HCI Command Complete received, so num_cmd_packets not reset
2312004902f1SMatthias Ringwald         hci_stack->num_cmd_packets = 1;
23134e9daa6fSMatthias Ringwald     }
231407fd2f31SMatthias Ringwald #endif
231507fd2f31SMatthias Ringwald 
231607fd2f31SMatthias Ringwald     return command_completed;
231707fd2f31SMatthias Ringwald }
231807fd2f31SMatthias Ringwald 
231907fd2f31SMatthias Ringwald static void hci_initializing_event_handler(const uint8_t * packet, uint16_t size){
232007fd2f31SMatthias Ringwald 
232107fd2f31SMatthias Ringwald     UNUSED(size);   // ok: less than 6 bytes are read from our buffer
232207fd2f31SMatthias Ringwald 
232307fd2f31SMatthias Ringwald     bool command_completed =  hci_initializing_event_handler_command_completed(packet);
232407fd2f31SMatthias Ringwald 
23256fad2c37SMatthias Ringwald #ifndef HAVE_HOST_CONTROLLER_API
23264e9daa6fSMatthias Ringwald 
23270f97eae7SMatthias Ringwald     // Late response (> 100 ms) for HCI Reset e.g. on Toshiba TC35661:
23280f97eae7SMatthias Ringwald     // Command complete for HCI Reset arrives after we've resent the HCI Reset command
23290f97eae7SMatthias Ringwald     //
23300f97eae7SMatthias Ringwald     // HCI Reset
23310f97eae7SMatthias Ringwald     // Timeout 100 ms
23320f97eae7SMatthias Ringwald     // HCI Reset
23330f97eae7SMatthias Ringwald     // Command Complete Reset
23340f97eae7SMatthias Ringwald     // HCI Read Local Version Information
23350f97eae7SMatthias Ringwald     // Command Complete Reset - but we expected Command Complete Read Local Version Information
23360f97eae7SMatthias Ringwald     // hang...
23370f97eae7SMatthias Ringwald     //
23380f97eae7SMatthias Ringwald     // Fix: Command Complete for HCI Reset in HCI_INIT_W4_SEND_READ_LOCAL_VERSION_INFORMATION trigger resend
23390f97eae7SMatthias Ringwald     if (!command_completed
2340a1df452eSMatthias Ringwald             && (hci_event_packet_get_type(packet) == HCI_EVENT_COMMAND_COMPLETE)
23410e588213SMatthias Ringwald             && (hci_stack->substate == HCI_INIT_W4_SEND_READ_LOCAL_VERSION_INFORMATION)){
23420f97eae7SMatthias Ringwald 
2343f8fbdce0SMatthias Ringwald         uint16_t opcode = little_endian_read_16(packet,3);
23440f97eae7SMatthias Ringwald         if (opcode == hci_reset.opcode){
23450f97eae7SMatthias Ringwald             hci_stack->substate = HCI_INIT_SEND_READ_LOCAL_VERSION_INFORMATION;
23460f97eae7SMatthias Ringwald             return;
23470f97eae7SMatthias Ringwald         }
23480f97eae7SMatthias Ringwald     }
23490f97eae7SMatthias Ringwald 
23509f007422SMatthias Ringwald     // CSR & H5
23519f007422SMatthias Ringwald     // Fix: Command Complete for HCI Reset in HCI_INIT_W4_SEND_READ_LOCAL_VERSION_INFORMATION trigger resend
23529f007422SMatthias Ringwald     if (!command_completed
2353a1df452eSMatthias Ringwald             && (hci_event_packet_get_type(packet) == HCI_EVENT_COMMAND_COMPLETE)
23540e588213SMatthias Ringwald             && (hci_stack->substate == HCI_INIT_W4_READ_LOCAL_SUPPORTED_COMMANDS)){
23559f007422SMatthias Ringwald 
23569f007422SMatthias Ringwald         uint16_t opcode = little_endian_read_16(packet,3);
23579f007422SMatthias Ringwald         if (opcode == hci_reset.opcode){
23589f007422SMatthias Ringwald             hci_stack->substate = HCI_INIT_READ_LOCAL_SUPPORTED_COMMANDS;
23599f007422SMatthias Ringwald             return;
23609f007422SMatthias Ringwald         }
23619f007422SMatthias Ringwald     }
23629f007422SMatthias Ringwald 
23639f007422SMatthias 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
23649f007422SMatthias Ringwald     // fix: Correct substate and behave as command below
23659f007422SMatthias Ringwald     if (command_completed){
23669f007422SMatthias Ringwald         switch (hci_stack->substate){
23679f007422SMatthias Ringwald             case HCI_INIT_SEND_RESET:
23689f007422SMatthias Ringwald                 hci_stack->substate = HCI_INIT_W4_SEND_RESET;
23699f007422SMatthias Ringwald                 break;
23709f007422SMatthias Ringwald             case HCI_INIT_SEND_RESET_CSR_WARM_BOOT:
23719f007422SMatthias Ringwald                 hci_stack->substate = HCI_INIT_W4_CUSTOM_INIT_CSR_WARM_BOOT;
23729f007422SMatthias Ringwald                 break;
23739f007422SMatthias Ringwald             default:
23749f007422SMatthias Ringwald                 break;
23759f007422SMatthias Ringwald         }
23769f007422SMatthias Ringwald     }
23770f97eae7SMatthias Ringwald 
237806b9e820SMatthias Ringwald #endif
23790f97eae7SMatthias Ringwald 
2380a2481739S[email protected]     if (!command_completed) return;
2381a2481739S[email protected] 
238207fd2f31SMatthias Ringwald     bool need_baud_change = false;
238307fd2f31SMatthias Ringwald     bool need_addr_change = false;
238406b9e820SMatthias Ringwald 
23856fad2c37SMatthias Ringwald #ifndef HAVE_HOST_CONTROLLER_API
238606b9e820SMatthias Ringwald     need_baud_change = hci_stack->config
23873fb36a29SMatthias Ringwald                         && hci_stack->chipset
23883fb36a29SMatthias Ringwald                         && hci_stack->chipset->set_baudrate_command
2389db8bc6ffSMatthias Ringwald                         && hci_stack->hci_transport->set_baudrate
23909796ebeaSMatthias Ringwald                         && ((hci_transport_config_uart_t *)hci_stack->config)->baudrate_main;
2391db8bc6ffSMatthias Ringwald 
239206b9e820SMatthias Ringwald     need_addr_change = hci_stack->custom_bd_addr_set
23933fb36a29SMatthias Ringwald                         && hci_stack->chipset
23943fb36a29SMatthias Ringwald                         && hci_stack->chipset->set_bd_addr_command;
239506b9e820SMatthias Ringwald #endif
2396a80162e9SMatthias Ringwald 
23975c363727SMatthias Ringwald     switch(hci_stack->substate){
239806b9e820SMatthias Ringwald 
23996fad2c37SMatthias Ringwald #ifndef HAVE_HOST_CONTROLLER_API
24009f007422SMatthias Ringwald         case HCI_INIT_SEND_RESET:
2401d58dd308SMatthias Ringwald             // on CSR with BCSP/H5, resend triggers resend of HCI Reset and leads to substate == HCI_INIT_SEND_RESET
24029f007422SMatthias Ringwald             // fix: just correct substate and behave as command below
2403f4c579d4SMatthias Ringwald 
2404f4c579d4SMatthias Ringwald             /* fall through */
2405f4c579d4SMatthias Ringwald #endif
2406f4c579d4SMatthias Ringwald 
240774b323a9SMatthias Ringwald         case HCI_INIT_W4_SEND_RESET:
2408528a4a3bSMatthias Ringwald             btstack_run_loop_remove_timer(&hci_stack->timeout);
2409f4c579d4SMatthias Ringwald             hci_stack->substate = HCI_INIT_SEND_READ_LOCAL_VERSION_INFORMATION;
24102f48d920SMatthias Ringwald             return;
2411f4c579d4SMatthias Ringwald 
2412f4c579d4SMatthias Ringwald #ifndef HAVE_HOST_CONTROLLER_API
2413a80162e9SMatthias Ringwald         case HCI_INIT_W4_SEND_BAUD_CHANGE:
24144696bddbSMatthias Ringwald             // for STLC2500D, baud rate change already happened.
2415fab26ab3SMatthias Ringwald             // for others, baud rate gets changed now
241661f37892SMatthias Ringwald             if ((hci_stack->manufacturer != BLUETOOTH_COMPANY_ID_ST_MICROELECTRONICS) && need_baud_change){
241796b53536SMatthias Ringwald                 uint32_t baud_rate = hci_transport_uart_get_main_baud_rate();
2418cd724cb7SMatthias Ringwald                 log_info("Local baud rate change to %" PRIu32 "(w4_send_baud_change)", baud_rate);
2419fab26ab3SMatthias Ringwald                 hci_stack->hci_transport->set_baudrate(baud_rate);
24204696bddbSMatthias Ringwald             }
242174b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_CUSTOM_INIT;
242274b323a9SMatthias Ringwald             return;
2423a80162e9SMatthias Ringwald         case HCI_INIT_W4_CUSTOM_INIT_CSR_WARM_BOOT:
2424528a4a3bSMatthias Ringwald             btstack_run_loop_remove_timer(&hci_stack->timeout);
2425a80162e9SMatthias Ringwald             hci_stack->substate = HCI_INIT_CUSTOM_INIT;
2426a80162e9SMatthias Ringwald             return;
242774b323a9SMatthias Ringwald         case HCI_INIT_W4_CUSTOM_INIT:
242874b323a9SMatthias Ringwald             // repeat custom init
242974b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_CUSTOM_INIT;
243074b323a9SMatthias Ringwald             return;
24316fe16221SMatthias Ringwald         case HCI_INIT_W4_CUSTOM_PRE_INIT:
24326fe16221SMatthias Ringwald             // repeat custom init
24336fe16221SMatthias Ringwald             hci_stack->substate = HCI_INIT_CUSTOM_PRE_INIT;
24346fe16221SMatthias Ringwald             return;
243506b9e820SMatthias Ringwald #endif
243606b9e820SMatthias Ringwald 
2437a828a756SMatthias Ringwald         case HCI_INIT_W4_READ_LOCAL_SUPPORTED_COMMANDS:
24380e588213SMatthias Ringwald             if (need_baud_change && (hci_stack->chipset_result != BTSTACK_CHIPSET_NO_INIT_SCRIPT) &&
2439efd3b327SMatthias Ringwald               ((hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_BROADCOM_CORPORATION) ||
2440efd3b327SMatthias Ringwald                (hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_EM_MICROELECTRONIC_MARIN_SA))) {
2441eb3a5314SMatthias Ringwald                 hci_stack->substate = HCI_INIT_SEND_BAUD_CHANGE_BCM;
2442eb3a5314SMatthias Ringwald                 return;
2443eb3a5314SMatthias Ringwald             }
244453860077SMatthias Ringwald             if (need_addr_change){
244553860077SMatthias Ringwald                 hci_stack->substate = HCI_INIT_SET_BD_ADDR;
244653860077SMatthias Ringwald                 return;
244753860077SMatthias Ringwald             }
244853860077SMatthias Ringwald             hci_stack->substate = HCI_INIT_READ_BD_ADDR;
244953860077SMatthias Ringwald             return;
24506fad2c37SMatthias Ringwald #ifndef HAVE_HOST_CONTROLLER_API
24517224be7eSMatthias Ringwald         case HCI_INIT_W4_SEND_BAUD_CHANGE_BCM:
24527224be7eSMatthias Ringwald             if (need_baud_change){
245396b53536SMatthias Ringwald                 uint32_t baud_rate = hci_transport_uart_get_main_baud_rate();
2454cd724cb7SMatthias Ringwald                 log_info("Local baud rate change to %" PRIu32 "(w4_send_baud_change_bcm))", baud_rate);
2455fab26ab3SMatthias Ringwald                 hci_stack->hci_transport->set_baudrate(baud_rate);
24567224be7eSMatthias Ringwald             }
2457eb3a5314SMatthias Ringwald             if (need_addr_change){
2458eb3a5314SMatthias Ringwald                 hci_stack->substate = HCI_INIT_SET_BD_ADDR;
2459eb3a5314SMatthias Ringwald                 return;
2460eb3a5314SMatthias Ringwald             }
2461eb3a5314SMatthias Ringwald             hci_stack->substate = HCI_INIT_READ_BD_ADDR;
2462eb3a5314SMatthias Ringwald             return;
246353860077SMatthias Ringwald         case HCI_INIT_W4_SET_BD_ADDR:
24646ca9a99aSMatthias Ringwald             // for STLC2500D + ATWILC3000, bd addr change only gets active after sending reset command
24656ca9a99aSMatthias Ringwald             if ((hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_ST_MICROELECTRONICS)
24666ca9a99aSMatthias Ringwald             ||  (hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_ATMEL_CORPORATION)){
246753860077SMatthias Ringwald                 hci_stack->substate = HCI_INIT_SEND_RESET_ST_WARM_BOOT;
246853860077SMatthias Ringwald                 return;
246953860077SMatthias Ringwald             }
247053860077SMatthias Ringwald             // skipping st warm boot
247153860077SMatthias Ringwald             hci_stack->substate = HCI_INIT_READ_BD_ADDR;
247253860077SMatthias Ringwald             return;
247353860077SMatthias Ringwald         case HCI_INIT_W4_SEND_RESET_ST_WARM_BOOT:
247453860077SMatthias Ringwald             hci_stack->substate = HCI_INIT_READ_BD_ADDR;
247553860077SMatthias Ringwald             return;
247606b9e820SMatthias Ringwald #endif
2477e7c662faSMatthias Ringwald 
2478f795c86eSMatthias Ringwald         case HCI_INIT_DONE:
2479eb8d95caSMatthias Ringwald             // set state if we came here by fall through
2480eb8d95caSMatthias Ringwald             hci_stack->substate = HCI_INIT_DONE;
2481f795c86eSMatthias Ringwald             return;
2482a650ba4dSMatthias Ringwald 
24836155b3d3S[email protected]         default:
248474b323a9SMatthias Ringwald             break;
24856155b3d3S[email protected]     }
248655975f88SMatthias Ringwald     hci_initializing_next_state();
24876155b3d3S[email protected] }
24886155b3d3S[email protected] 
24890bbba85bSMatthias Ringwald static void hci_handle_connection_failed(hci_connection_t * conn, uint8_t status){
24903bb5ff27SMatthias Ringwald     // CC2564C might emit Connection Complete for rejected incoming SCO connection
24911a4fdac4SMatthias Ringwald     // To prevent accidentally free'ing the HCI connection for the ACL connection,
24921a4fdac4SMatthias Ringwald     // check if we have been aware of the HCI connection
24931f34df2cSMatthias Ringwald     switch (conn->state){
24941a4fdac4SMatthias Ringwald         case SENT_CREATE_CONNECTION:
24951f34df2cSMatthias Ringwald         case RECEIVED_CONNECTION_REQUEST:
24969071873aSMatthias Ringwald         case ACCEPTED_CONNECTION_REQUEST:
24971f34df2cSMatthias Ringwald             break;
24981f34df2cSMatthias Ringwald         default:
24991f34df2cSMatthias Ringwald             return;
25001f34df2cSMatthias Ringwald     }
25013bb5ff27SMatthias Ringwald 
2502229331c6SMatthias Ringwald     log_info("Outgoing connection to %s failed", bd_addr_to_str(conn->address));
25030bbba85bSMatthias Ringwald     bd_addr_t bd_address;
25046535961aSMatthias Ringwald     (void)memcpy(&bd_address, conn->address, 6);
25050bbba85bSMatthias Ringwald 
25066bc9fa5eSMatthias Ringwald #ifdef ENABLE_CLASSIC
25076bc9fa5eSMatthias Ringwald     // cache needed data
25086bc9fa5eSMatthias Ringwald     int notify_dedicated_bonding_failed = conn->bonding_flags & BONDING_DEDICATED;
25096bc9fa5eSMatthias Ringwald #endif
25106bc9fa5eSMatthias Ringwald 
25110bbba85bSMatthias Ringwald     // connection failed, remove entry
25120bbba85bSMatthias Ringwald     btstack_linked_list_remove(&hci_stack->connections, (btstack_linked_item_t *) conn);
25130bbba85bSMatthias Ringwald     btstack_memory_hci_connection_free( conn );
25140bbba85bSMatthias Ringwald 
25156bc9fa5eSMatthias Ringwald #ifdef ENABLE_CLASSIC
25160bbba85bSMatthias Ringwald     // notify client if dedicated bonding
25170bbba85bSMatthias Ringwald     if (notify_dedicated_bonding_failed){
25180bbba85bSMatthias Ringwald         log_info("hci notify_dedicated_bonding_failed");
25190bbba85bSMatthias Ringwald         hci_emit_dedicated_bonding_result(bd_address, status);
25200bbba85bSMatthias Ringwald     }
25210bbba85bSMatthias Ringwald 
25220bbba85bSMatthias Ringwald     // if authentication error, also delete link key
25230bbba85bSMatthias Ringwald     if (status == ERROR_CODE_AUTHENTICATION_FAILURE) {
25240bbba85bSMatthias Ringwald         gap_drop_link_key_for_bd_addr(bd_address);
25250bbba85bSMatthias Ringwald     }
25261c79b5e3SMatthias Ringwald #else
25271c79b5e3SMatthias Ringwald     UNUSED(status);
25286bc9fa5eSMatthias Ringwald #endif
25290bbba85bSMatthias Ringwald }
25300bbba85bSMatthias Ringwald 
2531be500194SMatthias Ringwald #ifdef ENABLE_CLASSIC
25322f5c44baSMatthias Ringwald static void hci_handle_remote_features_page_0(hci_connection_t * conn, const uint8_t * features){
25332f5c44baSMatthias Ringwald     // SSP Controller
25342f5c44baSMatthias Ringwald     if (features[6] & (1 << 3)){
25352f5c44baSMatthias Ringwald         conn->bonding_flags |= BONDING_REMOTE_SUPPORTS_SSP_CONTROLLER;
25362f5c44baSMatthias Ringwald     }
25372f5c44baSMatthias Ringwald     // eSCO
25382f5c44baSMatthias Ringwald     if (features[3] & (1<<7)){
25392f5c44baSMatthias Ringwald         conn->remote_supported_features[0] |= 1;
25402f5c44baSMatthias Ringwald     }
25412f5c44baSMatthias Ringwald     // Extended features
25422f5c44baSMatthias Ringwald     if (features[7] & (1<<7)){
25432f5c44baSMatthias Ringwald         conn->remote_supported_features[0] |= 2;
25442f5c44baSMatthias Ringwald     }
25452f5c44baSMatthias Ringwald }
25462f5c44baSMatthias Ringwald 
25472f5c44baSMatthias Ringwald static void hci_handle_remote_features_page_1(hci_connection_t * conn, const uint8_t * features){
25482f5c44baSMatthias Ringwald     // SSP Host
25492f5c44baSMatthias Ringwald     if (features[0] & (1 << 0)){
25502f5c44baSMatthias Ringwald         conn->bonding_flags |= BONDING_REMOTE_SUPPORTS_SSP_HOST;
25512f5c44baSMatthias Ringwald     }
255250c51a77SMatthias Ringwald     // SC Host
255350c51a77SMatthias Ringwald     if (features[0] & (1 << 3)){
255450c51a77SMatthias Ringwald         conn->bonding_flags |= BONDING_REMOTE_SUPPORTS_SC_HOST;
255550c51a77SMatthias Ringwald     }
255650c51a77SMatthias Ringwald }
255750c51a77SMatthias Ringwald 
255850c51a77SMatthias Ringwald static void hci_handle_remote_features_page_2(hci_connection_t * conn, const uint8_t * features){
255950c51a77SMatthias Ringwald     // SC Controller
256050c51a77SMatthias Ringwald     if (features[1] & (1 << 0)){
256150c51a77SMatthias Ringwald         conn->bonding_flags |= BONDING_REMOTE_SUPPORTS_SC_CONTROLLER;
256250c51a77SMatthias Ringwald     }
25632f5c44baSMatthias Ringwald }
25642f5c44baSMatthias Ringwald 
2565de0df013SMatthias Ringwald static void hci_handle_remote_features_received(hci_connection_t * conn){
2566461a2bc4SMatthias Ringwald     conn->bonding_flags &= ~BONDING_REMOTE_FEATURES_QUERY_ACTIVE;
2567de0df013SMatthias Ringwald     conn->bonding_flags |= BONDING_RECEIVED_REMOTE_FEATURES;
2568cb7b3e6fSMatthias Ringwald     log_info("Remote features %02x, bonding flags %" PRIx32, conn->remote_supported_features[0], conn->bonding_flags);
2569de0df013SMatthias Ringwald     if (conn->bonding_flags & BONDING_DEDICATED){
2570de0df013SMatthias Ringwald         conn->bonding_flags |= BONDING_SEND_AUTHENTICATE_REQUEST;
2571de0df013SMatthias Ringwald     }
2572de0df013SMatthias Ringwald }
2573128825c3SMatthias Ringwald static bool hci_remote_sc_enabled(hci_connection_t * connection){
2574128825c3SMatthias Ringwald     const uint16_t sc_enabled_mask = BONDING_REMOTE_SUPPORTS_SC_HOST | BONDING_REMOTE_SUPPORTS_SC_CONTROLLER;
2575128825c3SMatthias Ringwald     return (connection->bonding_flags & sc_enabled_mask) == sc_enabled_mask;
2576128825c3SMatthias Ringwald }
2577128825c3SMatthias Ringwald 
2578be500194SMatthias Ringwald #endif
2579de0df013SMatthias Ringwald 
258067c6c9dcSMatthias Ringwald static void handle_event_for_current_stack_state(const uint8_t * packet, uint16_t size) {
258167c6c9dcSMatthias Ringwald     // handle BT initialization
258267c6c9dcSMatthias Ringwald     if (hci_stack->state == HCI_STATE_INITIALIZING) {
258367c6c9dcSMatthias Ringwald         hci_initializing_event_handler(packet, size);
258467c6c9dcSMatthias Ringwald     }
258567c6c9dcSMatthias Ringwald 
258667c6c9dcSMatthias Ringwald     // help with BT sleep
258767c6c9dcSMatthias Ringwald     if ((hci_stack->state == HCI_STATE_FALLING_ASLEEP)
258867c6c9dcSMatthias Ringwald         && (hci_stack->substate == HCI_FALLING_ASLEEP_W4_WRITE_SCAN_ENABLE)
258972a2585aSMatthias Ringwald         && (hci_event_packet_get_type(packet) == HCI_EVENT_COMMAND_COMPLETE)
259072a2585aSMatthias Ringwald         && (hci_event_command_complete_get_command_opcode(packet) == HCI_OPCODE_HCI_WRITE_SCAN_ENABLE)){
259167c6c9dcSMatthias Ringwald         hci_initializing_next_state();
259267c6c9dcSMatthias Ringwald     }
259367c6c9dcSMatthias Ringwald }
259467c6c9dcSMatthias Ringwald 
25959866fdc7SMatthias Ringwald #ifdef ENABLE_CLASSIC
25964aa2f135SMatthias Ringwald static void hci_handle_mutual_authentication_completed(hci_connection_t * conn){
25974aa2f135SMatthias Ringwald     // bonding complete if connection is authenticated (either initiated or BR/EDR SC)
25984aa2f135SMatthias Ringwald     conn->requested_security_level = LEVEL_0;
25994aa2f135SMatthias Ringwald     gap_security_level_t security_level = gap_security_level_for_connection(conn);
26004aa2f135SMatthias Ringwald     hci_emit_security_level(conn->con_handle, security_level);
26014aa2f135SMatthias Ringwald 
260267718330SMatthias Ringwald     // dedicated bonding
2603de9f0299SMatthias Ringwald     if ((conn->bonding_flags & BONDING_DEDICATED) != 0){
2604de9f0299SMatthias Ringwald         conn->bonding_flags &= ~BONDING_DEDICATED;
2605de9f0299SMatthias Ringwald         conn->bonding_status = security_level == 0 ? ERROR_CODE_INSUFFICIENT_SECURITY : ERROR_CODE_SUCCESS;
2606db3c1f89SMatthias Ringwald #ifdef ENABLE_EXPLICIT_DEDICATED_BONDING_DISCONNECT
2607db3c1f89SMatthias Ringwald         // emit dedicated bonding complete, don't disconnect
2608db3c1f89SMatthias Ringwald         hci_emit_dedicated_bonding_result(conn->address, conn->bonding_status);
2609db3c1f89SMatthias Ringwald #else
2610db3c1f89SMatthias Ringwald         // request disconnect, event is emitted after disconnect
2611db3c1f89SMatthias Ringwald         conn->bonding_flags |= BONDING_DISCONNECT_DEDICATED_DONE;
2612db3c1f89SMatthias Ringwald #endif
2613de9f0299SMatthias Ringwald     }
261467718330SMatthias Ringwald }
2615abdad579SMatthias Ringwald 
261667718330SMatthias Ringwald static void hci_handle_read_encryption_key_size_complete(hci_connection_t * conn, uint8_t encryption_key_size) {
261767718330SMatthias Ringwald     conn->authentication_flags |= AUTH_FLAG_CONNECTION_ENCRYPTED;
261867718330SMatthias Ringwald     conn->encryption_key_size = encryption_key_size;
261967718330SMatthias Ringwald 
262067718330SMatthias Ringwald     // mutual authentication complete if authenticated and we have retrieved the encryption key size
26218daf94bcSMatthias Ringwald     if ((conn->authentication_flags & AUTH_FLAG_CONNECTION_AUTHENTICATED) != 0) {
26224aa2f135SMatthias Ringwald         hci_handle_mutual_authentication_completed(conn);
26234cd03f8aSMatthias Ringwald     } else {
26244cd03f8aSMatthias Ringwald         // otherwise trigger remote feature request and send authentication request
2625dbe0d85cSMatthias Ringwald         hci_trigger_remote_features_for_connection(conn);
26264cd03f8aSMatthias Ringwald         if ((conn->bonding_flags & BONDING_SENT_AUTHENTICATE_REQUEST) == 0) {
2627abdad579SMatthias Ringwald             conn->bonding_flags |= BONDING_SEND_AUTHENTICATE_REQUEST;
26289866fdc7SMatthias Ringwald         }
26294cd03f8aSMatthias Ringwald     }
26304cd03f8aSMatthias Ringwald }
26319866fdc7SMatthias Ringwald #endif
26329866fdc7SMatthias Ringwald 
26333b631737SMatthias Ringwald static void hci_store_local_supported_commands(const uint8_t * packet){
263425e46151SMatthias Ringwald     // create mapping table
263525e46151SMatthias Ringwald #define X(name, offset, bit) { offset, bit },
263625e46151SMatthias Ringwald     static struct {
263725e46151SMatthias Ringwald         uint8_t byte_offset;
263825e46151SMatthias Ringwald         uint8_t bit_position;
263925e46151SMatthias Ringwald     } supported_hci_commands_map [] = {
264025e46151SMatthias Ringwald         SUPPORTED_HCI_COMMANDS
264125e46151SMatthias Ringwald     };
264225e46151SMatthias Ringwald #undef X
264325e46151SMatthias Ringwald 
264425e46151SMatthias Ringwald     // create names for debug purposes
264525e46151SMatthias Ringwald #ifdef ENABLE_LOG_DEBUG
264625e46151SMatthias Ringwald #define X(name, offset, bit) #name,
264725e46151SMatthias Ringwald     static const char * command_names[] = {
264825e46151SMatthias Ringwald         SUPPORTED_HCI_COMMANDS
264925e46151SMatthias Ringwald     };
265025e46151SMatthias Ringwald #undef X
265125e46151SMatthias Ringwald #endif
265225e46151SMatthias Ringwald 
26531ffa425cSMatthias Ringwald     hci_stack->local_supported_commands = 0;
265425e46151SMatthias Ringwald     const uint8_t * commands_map = &packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE+1];
265525e46151SMatthias Ringwald     uint16_t i;
265625e46151SMatthias Ringwald     for (i = 0 ; i < SUPPORTED_HCI_COMMANDS_COUNT ; i++){
265725e46151SMatthias Ringwald         if ((commands_map[supported_hci_commands_map[i].byte_offset] & (1 << supported_hci_commands_map[i].bit_position)) != 0){
265825e46151SMatthias Ringwald #ifdef ENABLE_LOG_DEBUG
265925e46151SMatthias 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);
266025e46151SMatthias Ringwald #else
26611ffa425cSMatthias Ringwald             log_info("Command 0x%02x supported %u/%u", i, supported_hci_commands_map[i].byte_offset, supported_hci_commands_map[i].bit_position);
266225e46151SMatthias Ringwald #endif
26631ffa425cSMatthias Ringwald             hci_stack->local_supported_commands |= (1LU << i);
266425e46151SMatthias Ringwald         }
266525e46151SMatthias Ringwald     }
2666cb7b3e6fSMatthias Ringwald     log_info("Local supported commands summary %08" PRIx32, hci_stack->local_supported_commands);
26673b631737SMatthias Ringwald }
26683b631737SMatthias Ringwald 
26694f781026SMatthias Ringwald static void handle_command_complete_event(uint8_t * packet, uint16_t size){
2670b08371a9SMilanka Ringwald     UNUSED(size);
2671e76a89eeS[email protected] 
26729cbd2215SMatthias Ringwald     uint16_t manufacturer;
26739cbd2215SMatthias Ringwald #ifdef ENABLE_CLASSIC
2674fe1ed1b8Smatthias.ringwald     hci_con_handle_t handle;
26751f7b95a1Smatthias.ringwald     hci_connection_t * conn;
2676c7a108afSMatthias Ringwald #endif
2677c7a108afSMatthias Ringwald #if defined(ENABLE_CLASSIC) || (defined(ENABLE_BLE) && defined(ENABLE_LE_ISOCHRONOUS_STREAMS))
2678645b7c25SMatthias Ringwald     uint8_t status;
26799cbd2215SMatthias Ringwald #endif
2680d3a89d91SMatthias Ringwald #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
2681d3a89d91SMatthias Ringwald     le_audio_cig_t * cig;
2682d3a89d91SMatthias Ringwald #endif
2683d3a89d91SMatthias Ringwald 
26846bef4003SMatthias Ringwald     // get num cmd packets - limit to 1 to reduce complexity
26856bef4003SMatthias Ringwald     hci_stack->num_cmd_packets = packet[2] ? 1 : 0;
26867ec5eeaaSmatthias.ringwald 
2687645b7c25SMatthias Ringwald     uint16_t opcode = hci_event_command_complete_get_command_opcode(packet);
2688645b7c25SMatthias Ringwald     switch (opcode){
2689645b7c25SMatthias Ringwald         case HCI_OPCODE_HCI_READ_LOCAL_NAME:
2690645b7c25SMatthias Ringwald             if (packet[5]) break;
26919e263bd7SMatthias Ringwald             // terminate, name 248 chars
26929e263bd7SMatthias Ringwald             packet[6+248] = 0;
26939e263bd7SMatthias Ringwald             log_info("local name: %s", &packet[6]);
2694645b7c25SMatthias Ringwald             break;
2695645b7c25SMatthias Ringwald         case HCI_OPCODE_HCI_READ_BUFFER_SIZE:
26961d279b20Smatthias.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"
2697c3b46f5aSMatthias Ringwald             if (hci_stack->state == HCI_STATE_INITIALIZING) {
2698429122ccSMatthias Ringwald                 uint16_t acl_len = little_endian_read_16(packet, 6);
2699429122ccSMatthias Ringwald                 uint16_t sco_len = packet[8];
2700429122ccSMatthias Ringwald 
2701429122ccSMatthias Ringwald                 // determine usable ACL/SCO payload size
2702429122ccSMatthias Ringwald                 hci_stack->acl_data_packet_length = btstack_min(acl_len, HCI_ACL_PAYLOAD_SIZE);
2703429122ccSMatthias Ringwald                 hci_stack->sco_data_packet_length = btstack_min(sco_len, HCI_ACL_PAYLOAD_SIZE);
2704429122ccSMatthias Ringwald 
2705616cfd90SMatthias Ringwald                 hci_stack->acl_packets_total_num = (uint8_t) btstack_min(little_endian_read_16(packet,  9), MAX_NR_CONTROLLER_ACL_BUFFERS);
2706616cfd90SMatthias Ringwald                 hci_stack->sco_packets_total_num = (uint8_t) btstack_min(little_endian_read_16(packet, 11), MAX_NR_CONTROLLER_SCO_PACKETS);
2707a8b12447S[email protected] 
2708429122ccSMatthias Ringwald                 log_info("hci_read_buffer_size: ACL size module %u -> used %u, count %u / SCO size %u, count %u",
2709429122ccSMatthias Ringwald                          acl_len, hci_stack->acl_data_packet_length, hci_stack->acl_packets_total_num,
27101a06f663S[email protected]                          hci_stack->sco_data_packet_length, hci_stack->sco_packets_total_num);
2711c3b46f5aSMatthias Ringwald             }
2712645b7c25SMatthias Ringwald             break;
2713645b7c25SMatthias Ringwald         case HCI_OPCODE_HCI_READ_RSSI:
2714645b7c25SMatthias Ringwald             if (packet[5] == ERROR_CODE_SUCCESS){
2715891b9fc2SMatthias Ringwald                 uint8_t event[5];
2716891b9fc2SMatthias Ringwald                 event[0] = GAP_EVENT_RSSI_MEASUREMENT;
2717891b9fc2SMatthias Ringwald                 event[1] = 3;
27186535961aSMatthias Ringwald                 (void)memcpy(&event[2], &packet[6], 3);
2719891b9fc2SMatthias Ringwald                 hci_emit_event(event, sizeof(event), 1);
2720891b9fc2SMatthias Ringwald             }
2721645b7c25SMatthias Ringwald             break;
2722a9a4c409SMatthias Ringwald #ifdef ENABLE_BLE
272379b7ea2dSMatthias Ringwald         case HCI_OPCODE_HCI_LE_READ_BUFFER_SIZE_V2:
272479b7ea2dSMatthias Ringwald             hci_stack->le_iso_packets_length = little_endian_read_16(packet, 9);
272579b7ea2dSMatthias Ringwald             hci_stack->le_iso_packets_total_num = packet[11];
272679b7ea2dSMatthias Ringwald             log_info("hci_le_read_buffer_size_v2: iso size %u, iso count %u",
272779b7ea2dSMatthias Ringwald                      hci_stack->le_iso_packets_length, hci_stack->le_iso_packets_total_num);
272879b7ea2dSMatthias Ringwald 
272979b7ea2dSMatthias Ringwald             /* fall through */
273079b7ea2dSMatthias Ringwald 
2731645b7c25SMatthias Ringwald         case HCI_OPCODE_HCI_LE_READ_BUFFER_SIZE:
2732f8fbdce0SMatthias Ringwald             hci_stack->le_data_packets_length = little_endian_read_16(packet, 6);
2733ee303eddS[email protected]             hci_stack->le_acl_packets_total_num = packet[8];
27346c26b087S[email protected]             // determine usable ACL payload size
27356c26b087S[email protected]             if (HCI_ACL_PAYLOAD_SIZE < hci_stack->le_data_packets_length){
27366c26b087S[email protected]                 hci_stack->le_data_packets_length = HCI_ACL_PAYLOAD_SIZE;
27376c26b087S[email protected]             }
273879b7ea2dSMatthias Ringwald             log_info("hci_le_read_buffer_size: acl size %u, acl count %u", hci_stack->le_data_packets_length, hci_stack->le_acl_packets_total_num);
2739645b7c25SMatthias Ringwald             break;
2740b435e062SMatthias Ringwald #endif
2741b435e062SMatthias Ringwald #ifdef ENABLE_LE_DATA_LENGTH_EXTENSION
2742645b7c25SMatthias Ringwald         case HCI_OPCODE_HCI_LE_READ_MAXIMUM_DATA_LENGTH:
2743dcd678baSMatthias Ringwald             hci_stack->le_supported_max_tx_octets = little_endian_read_16(packet, 6);
2744dcd678baSMatthias Ringwald             hci_stack->le_supported_max_tx_time = little_endian_read_16(packet, 8);
2745dcd678baSMatthias 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);
2746645b7c25SMatthias Ringwald             break;
2747b435e062SMatthias Ringwald #endif
2748d70217a2SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
2749645b7c25SMatthias Ringwald         case HCI_OPCODE_HCI_LE_READ_WHITE_LIST_SIZE:
2750e691bb38SMatthias Ringwald             hci_stack->le_whitelist_capacity = packet[6];
275115d0a15bSMatthias Ringwald             log_info("hci_le_read_white_list_size: size %u", hci_stack->le_whitelist_capacity);
2752645b7c25SMatthias Ringwald             break;
275365a46ef3S[email protected] #endif
27543a74541eSMatthias Ringwald #ifdef ENABLE_LE_PERIPHERAL
27553a74541eSMatthias Ringwald #ifdef ENABLE_LE_EXTENDED_ADVERTISING
27563a74541eSMatthias Ringwald         case HCI_OPCODE_HCI_LE_READ_MAXIMUM_ADVERTISING_DATA_LENGTH:
27573a74541eSMatthias Ringwald             hci_stack->le_maximum_advertising_data_length = little_endian_read_16(packet, 6);
27583a74541eSMatthias Ringwald             break;
275925df6c61SMatthias Ringwald         case HCI_OPCODE_HCI_LE_SET_EXTENDED_ADVERTISING_PARAMETERS:
276025df6c61SMatthias Ringwald             if (hci_stack->le_advertising_set_in_current_command != 0) {
276125df6c61SMatthias Ringwald                 le_advertising_set_t * advertising_set = hci_advertising_set_for_handle(hci_stack->le_advertising_set_in_current_command);
276225df6c61SMatthias Ringwald                 hci_stack->le_advertising_set_in_current_command = 0;
276325df6c61SMatthias Ringwald                 if (advertising_set == NULL) break;
276425df6c61SMatthias Ringwald                 uint8_t adv_status = packet[6];
276525df6c61SMatthias Ringwald                 uint8_t tx_power   = packet[7];
276625df6c61SMatthias Ringwald                 uint8_t event[] = { HCI_EVENT_META_GAP, 4, GAP_SUBEVENT_ADVERTISING_SET_INSTALLED, hci_stack->le_advertising_set_in_current_command, adv_status, tx_power };
276725df6c61SMatthias Ringwald                 if (adv_status == 0){
276825df6c61SMatthias Ringwald                     advertising_set->state |= LE_ADVERTISEMENT_STATE_PARAMS_SET;
276925df6c61SMatthias Ringwald                 }
277025df6c61SMatthias Ringwald                 hci_emit_event(event, sizeof(event), 1);
277125df6c61SMatthias Ringwald             }
277225df6c61SMatthias Ringwald             break;
277325df6c61SMatthias Ringwald         case HCI_OPCODE_HCI_LE_REMOVE_ADVERTISING_SET:
277425df6c61SMatthias Ringwald             if (hci_stack->le_advertising_set_in_current_command != 0) {
277525df6c61SMatthias Ringwald                 le_advertising_set_t * advertising_set = hci_advertising_set_for_handle(hci_stack->le_advertising_set_in_current_command);
277625df6c61SMatthias Ringwald                 hci_stack->le_advertising_set_in_current_command = 0;
277725df6c61SMatthias Ringwald                 if (advertising_set == NULL) break;
277825df6c61SMatthias Ringwald                 uint8_t adv_status = packet[5];
277925df6c61SMatthias Ringwald                 uint8_t event[] = { HCI_EVENT_META_GAP, 3, GAP_SUBEVENT_ADVERTISING_SET_REMOVED, hci_stack->le_advertising_set_in_current_command, adv_status };
278025df6c61SMatthias Ringwald                 if (adv_status == 0){
278125df6c61SMatthias Ringwald                     btstack_linked_list_remove(&hci_stack->le_advertising_sets, (btstack_linked_item_t *) advertising_set);
278225df6c61SMatthias Ringwald                 }
278325df6c61SMatthias Ringwald                 hci_emit_event(event, sizeof(event), 1);
278425df6c61SMatthias Ringwald             }
278525df6c61SMatthias Ringwald             break;
27863a74541eSMatthias Ringwald #endif
27873a74541eSMatthias Ringwald #endif
2788645b7c25SMatthias Ringwald         case HCI_OPCODE_HCI_READ_BD_ADDR:
2789645b7c25SMatthias Ringwald             reverse_bd_addr(&packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE + 1], hci_stack->local_bd_addr);
2790645b7c25SMatthias 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));
279133373e40SMatthias Ringwald #ifdef ENABLE_CLASSIC
27921624665aSMatthias Ringwald             if (hci_stack->link_key_db){
27931624665aSMatthias Ringwald                 hci_stack->link_key_db->set_local_bd_addr(hci_stack->local_bd_addr);
27941624665aSMatthias Ringwald             }
279533373e40SMatthias Ringwald #endif
2796645b7c25SMatthias Ringwald             break;
279735454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
2798645b7c25SMatthias Ringwald         case HCI_OPCODE_HCI_WRITE_SCAN_ENABLE:
279971fd255dSMatthias Ringwald             hci_emit_scan_mode_changed(hci_stack->discoverable, hci_stack->connectable);
2800645b7c25SMatthias Ringwald             break;
28013d1f2d24SMatthias Ringwald         case HCI_OPCODE_HCI_PERIODIC_INQUIRY_MODE:
28023d1f2d24SMatthias Ringwald             status = hci_event_command_complete_get_return_parameters(packet)[0];
28033d1f2d24SMatthias Ringwald             if (status == ERROR_CODE_SUCCESS) {
28043d1f2d24SMatthias Ringwald                 hci_stack->inquiry_state = GAP_INQUIRY_STATE_PERIODIC;
28053d1f2d24SMatthias Ringwald             } else {
28063d1f2d24SMatthias Ringwald                 hci_stack->inquiry_state = GAP_INQUIRY_STATE_IDLE;
28073d1f2d24SMatthias Ringwald             }
28083d1f2d24SMatthias Ringwald             break;
2809645b7c25SMatthias Ringwald         case HCI_OPCODE_HCI_INQUIRY_CANCEL:
281030199e24SMatthias Ringwald         case HCI_OPCODE_HCI_EXIT_PERIODIC_INQUIRY_MODE:
2811f5875de5SMatthias Ringwald             if (hci_stack->inquiry_state == GAP_INQUIRY_STATE_W4_CANCELLED){
2812f5875de5SMatthias Ringwald                 hci_stack->inquiry_state = GAP_INQUIRY_STATE_IDLE;
2813f5875de5SMatthias Ringwald                 uint8_t event[] = { GAP_EVENT_INQUIRY_COMPLETE, 1, 0};
2814f5875de5SMatthias Ringwald                 hci_emit_event(event, sizeof(event), 1);
2815f5875de5SMatthias Ringwald             }
2816645b7c25SMatthias Ringwald             break;
281735454696SMatthias Ringwald #endif
2818645b7c25SMatthias Ringwald         case HCI_OPCODE_HCI_READ_LOCAL_SUPPORTED_FEATURES:
28194f781026SMatthias Ringwald             (void)memcpy(hci_stack->local_supported_features, &packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE + 1], 8);
282065389bfcS[email protected] 
282135454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
2822a5a23fc2S[email protected]             // determine usable ACL packet types based on host buffer size and supported features
282329e39de4SMatthias Ringwald             hci_stack->usable_packet_types_acl = hci_acl_packet_types_for_buffer_size_and_local_features(HCI_ACL_PAYLOAD_SIZE, &hci_stack->local_supported_features[0]);
2824*c92ca2c8SMatthias Ringwald             log_info("ACL Packet types %04x", hci_stack->usable_packet_types_acl);
2825*c92ca2c8SMatthias Ringwald             // determine usable SCO packet types based on supported features
2826*c92ca2c8SMatthias Ringwald             hci_stack->usable_packet_types_sco = hci_sco_packet_types_for_features(
2827*c92ca2c8SMatthias Ringwald                     &hci_stack->local_supported_features[0]);
2828*c92ca2c8SMatthias Ringwald             log_info("SCO Packet types %04x - eSCO %u", hci_stack->usable_packet_types_sco, hci_extended_sco_link_supported());
282935454696SMatthias Ringwald #endif
2830f5d8d141S[email protected]             // Classic/LE
2831f5d8d141S[email protected]             log_info("BR/EDR support %u, LE support %u", hci_classic_supported(), hci_le_supported());
2832645b7c25SMatthias Ringwald             break;
2833645b7c25SMatthias Ringwald         case HCI_OPCODE_HCI_READ_LOCAL_VERSION_INFORMATION:
2834645b7c25SMatthias Ringwald             manufacturer = little_endian_read_16(packet, 10);
2835547a29a6SMatthias Ringwald             // map Cypress & Infineon to Broadcom
2836547a29a6SMatthias Ringwald             switch (manufacturer){
2837547a29a6SMatthias Ringwald                 case BLUETOOTH_COMPANY_ID_CYPRESS_SEMICONDUCTOR:
2838547a29a6SMatthias Ringwald                 case BLUETOOTH_COMPANY_ID_INFINEON_TECHNOLOGIES_AG:
2839547a29a6SMatthias Ringwald                     log_info("Treat Cypress/Infineon as Broadcom");
2840c21d89f3SMatthias Ringwald                     manufacturer = BLUETOOTH_COMPANY_ID_BROADCOM_CORPORATION;
2841c21d89f3SMatthias Ringwald                     little_endian_store_16(packet, 10, manufacturer);
2842547a29a6SMatthias Ringwald                     break;
2843547a29a6SMatthias Ringwald                 default:
2844547a29a6SMatthias Ringwald                     break;
2845c21d89f3SMatthias Ringwald             }
2846c21d89f3SMatthias Ringwald             hci_stack->manufacturer = manufacturer;
28474696bddbSMatthias Ringwald             log_info("Manufacturer: 0x%04x", hci_stack->manufacturer);
2848645b7c25SMatthias Ringwald             break;
2849645b7c25SMatthias Ringwald         case HCI_OPCODE_HCI_READ_LOCAL_SUPPORTED_COMMANDS:
28503b631737SMatthias Ringwald             hci_store_local_supported_commands(packet);
2851645b7c25SMatthias Ringwald             break;
2852e8c8828eSMatthias Ringwald #ifdef ENABLE_CLASSIC
2853645b7c25SMatthias Ringwald         case HCI_OPCODE_HCI_WRITE_SYNCHRONOUS_FLOW_CONTROL_ENABLE:
28544f781026SMatthias Ringwald             if (packet[5]) return;
28555b9b590fSMatthias Ringwald             hci_stack->synchronous_flow_control_enabled = 1;
2856645b7c25SMatthias Ringwald             break;
2857645b7c25SMatthias Ringwald         case HCI_OPCODE_HCI_READ_ENCRYPTION_KEY_SIZE:
2858645b7c25SMatthias Ringwald             status = packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE];
2859573897a0SMatthias Ringwald             handle = little_endian_read_16(packet, OFFSET_OF_DATA_IN_COMMAND_COMPLETE+1);
2860573897a0SMatthias Ringwald             conn   = hci_connection_for_handle(handle);
2861c3b46f5aSMatthias Ringwald             if (conn != NULL) {
28629866fdc7SMatthias Ringwald                 uint8_t key_size = 0;
2863573897a0SMatthias Ringwald                 if (status == 0){
28649866fdc7SMatthias Ringwald                     key_size = packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE+3];
28654a659b0eSMatthias Ringwald                     log_info("Handle %04x key Size: %u", handle, key_size);
2866170fafaeSMatthias Ringwald                 } else {
2867e9f98c4aSMatthias Ringwald                     key_size = 1;
28689866fdc7SMatthias Ringwald                     log_info("Read Encryption Key Size failed 0x%02x-> assuming insecure connection with key size of 1", status);
2869573897a0SMatthias Ringwald                 }
28709866fdc7SMatthias Ringwald                 hci_handle_read_encryption_key_size_complete(conn, key_size);
2871c3b46f5aSMatthias Ringwald             }
2872645b7c25SMatthias Ringwald             break;
2873cc15bb2cSMatthias Ringwald         // assert pairing complete event is emitted.
2874cc15bb2cSMatthias Ringwald         // note: for SSP, Simple Pairing Complete Event is sufficient, but we want to be more robust
2875cc15bb2cSMatthias Ringwald         case HCI_OPCODE_HCI_PIN_CODE_REQUEST_NEGATIVE_REPLY:
2876cc15bb2cSMatthias Ringwald         case HCI_OPCODE_HCI_USER_PASSKEY_REQUEST_NEGATIVE_REPLY:
2877cc15bb2cSMatthias Ringwald         case HCI_OPCODE_HCI_USER_CONFIRMATION_REQUEST_NEGATIVE_REPLY:
28788cc1507eSMatthias Ringwald             hci_stack->gap_pairing_state = GAP_PAIRING_STATE_IDLE;
2879cc15bb2cSMatthias Ringwald             // lookup connection by gap pairing addr
2880cc15bb2cSMatthias Ringwald             conn = hci_connection_for_bd_addr_and_type(hci_stack->gap_pairing_addr, BD_ADDR_TYPE_ACL);
2881cc15bb2cSMatthias Ringwald             if (conn == NULL) break;
2882cc15bb2cSMatthias Ringwald             hci_pairing_complete(conn, ERROR_CODE_AUTHENTICATION_FAILURE);
2883cc15bb2cSMatthias Ringwald             break;
2884cc15bb2cSMatthias Ringwald 
288575a8e4faSMatthias Ringwald #ifdef ENABLE_CLASSIC_PAIRING_OOB
288675a8e4faSMatthias Ringwald         case HCI_OPCODE_HCI_READ_LOCAL_OOB_DATA:
288775a8e4faSMatthias Ringwald         case HCI_OPCODE_HCI_READ_LOCAL_EXTENDED_OOB_DATA:{
288875a8e4faSMatthias Ringwald             uint8_t event[67];
288975a8e4faSMatthias Ringwald             event[0] = GAP_EVENT_LOCAL_OOB_DATA;
289075a8e4faSMatthias Ringwald             event[1] = 65;
289175a8e4faSMatthias Ringwald             (void)memset(&event[2], 0, 65);
289275a8e4faSMatthias Ringwald             if (packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE] == ERROR_CODE_SUCCESS){
289375a8e4faSMatthias Ringwald                 (void)memcpy(&event[3], &packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE+1], 32);
289475a8e4faSMatthias Ringwald                 if (opcode == HCI_OPCODE_HCI_READ_LOCAL_EXTENDED_OOB_DATA){
289575a8e4faSMatthias Ringwald                     event[2] = 3;
289675a8e4faSMatthias Ringwald                     (void)memcpy(&event[35], &packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE+33], 32);
289775a8e4faSMatthias Ringwald                 } else {
289875a8e4faSMatthias Ringwald                     event[2] = 1;
289975a8e4faSMatthias Ringwald                 }
290075a8e4faSMatthias Ringwald             }
290175a8e4faSMatthias Ringwald             hci_emit_event(event, sizeof(event), 0);
290275a8e4faSMatthias Ringwald             break;
290375a8e4faSMatthias Ringwald         }
29041ae74bf3SMatthias Ringwald 
29051ae74bf3SMatthias Ringwald         // note: only needed if user does not provide OOB data
29061ae74bf3SMatthias Ringwald         case HCI_OPCODE_HCI_REMOTE_OOB_DATA_REQUEST_NEGATIVE_REPLY:
29071ae74bf3SMatthias Ringwald             conn = hci_connection_for_handle(hci_stack->classic_oob_con_handle);
29081ae74bf3SMatthias Ringwald             hci_stack->classic_oob_con_handle = HCI_CON_HANDLE_INVALID;
29091ae74bf3SMatthias Ringwald             if (conn == NULL) break;
29101ae74bf3SMatthias Ringwald             hci_pairing_complete(conn, ERROR_CODE_AUTHENTICATION_FAILURE);
29111ae74bf3SMatthias Ringwald             break;
2912e8c8828eSMatthias Ringwald #endif
291375a8e4faSMatthias Ringwald #endif
29144ae8623eSMatthias Ringwald #ifdef ENABLE_BLE
29154ae8623eSMatthias Ringwald #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
2916d3a89d91SMatthias Ringwald         case HCI_OPCODE_HCI_LE_SET_CIG_PARAMETERS:
2917d3a89d91SMatthias Ringwald             // lookup CIG
2918d3a89d91SMatthias Ringwald             cig = hci_cig_for_id(hci_stack->iso_active_operation_group_id);
2919d3a89d91SMatthias Ringwald             if (cig != NULL){
2920d3a89d91SMatthias Ringwald                 status = packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE];
2921d3a89d91SMatthias Ringwald                 uint8_t i = 0;
2922d3a89d91SMatthias Ringwald                 if (status == ERROR_CODE_SUCCESS){
2923d3a89d91SMatthias Ringwald                     // assign CIS handles to pre-allocated CIS
2924d3a89d91SMatthias Ringwald                     btstack_linked_list_iterator_t it;
2925d3a89d91SMatthias Ringwald                     btstack_linked_list_iterator_init(&it, &hci_stack->iso_streams);
2926d3a89d91SMatthias Ringwald                     while (btstack_linked_list_iterator_has_next(&it) && (i < cig->num_cis)) {
2927d3a89d91SMatthias Ringwald                         hci_iso_stream_t *iso_stream = (hci_iso_stream_t *) btstack_linked_list_iterator_next(&it);
2928d3a89d91SMatthias Ringwald                         if ((iso_stream->group_id == hci_stack->iso_active_operation_group_id) &&
2929d3a89d91SMatthias Ringwald                             (iso_stream->iso_type == HCI_ISO_TYPE_CIS)){
2930d3a89d91SMatthias Ringwald                             hci_con_handle_t cis_handle = little_endian_read_16(packet, OFFSET_OF_DATA_IN_COMMAND_COMPLETE+3+(2*i));
2931969d876aSMatthias Ringwald                             iso_stream->cis_handle  = cis_handle;
2932d3a89d91SMatthias Ringwald                             cig->cis_con_handles[i] = cis_handle;
2933d3a89d91SMatthias Ringwald                             i++;
2934d3a89d91SMatthias Ringwald                         }
2935d3a89d91SMatthias Ringwald                     }
2936444e371eSMatthias Ringwald                     cig->state = LE_AUDIO_CIG_STATE_W4_CIS_REQUEST;
2937d3a89d91SMatthias Ringwald                     hci_emit_cig_created(cig, status);
2938d3a89d91SMatthias Ringwald                 } else {
2939d3a89d91SMatthias Ringwald                     hci_emit_cig_created(cig, status);
2940d3a89d91SMatthias Ringwald                     btstack_linked_list_remove(&hci_stack->le_audio_cigs, (btstack_linked_item_t *) cig);
2941d3a89d91SMatthias Ringwald                 }
2942d3a89d91SMatthias Ringwald             }
294326b93350SMatthias Ringwald             hci_stack->iso_active_operation_type = HCI_ISO_TYPE_INVALID;
2944d3a89d91SMatthias Ringwald             break;
29454ae8623eSMatthias Ringwald         case HCI_OPCODE_HCI_LE_CREATE_CIS:
29464ae8623eSMatthias Ringwald             status = packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE];
29474ae8623eSMatthias Ringwald             if (status != ERROR_CODE_SUCCESS){
2948d75a6bbfSMatthias Ringwald                 hci_iso_stream_requested_finalize(HCI_ISO_GROUP_ID_INVALID);
29494ae8623eSMatthias Ringwald             }
29504ae8623eSMatthias Ringwald             break;
295142529435SMatthias Ringwald         case HCI_OPCODE_HCI_LE_ACCEPT_CIS_REQUEST:
295242529435SMatthias Ringwald             status = packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE];
295342529435SMatthias Ringwald             if (status != ERROR_CODE_SUCCESS){
2954d75a6bbfSMatthias Ringwald                 hci_iso_stream_requested_finalize(HCI_ISO_GROUP_ID_INVALID);
295542529435SMatthias Ringwald             }
295642529435SMatthias Ringwald             break;
29577aa35f6aSMatthias Ringwald         case HCI_OPCODE_HCI_LE_SETUP_ISO_DATA_PATH: {
29587aa35f6aSMatthias Ringwald             // lookup BIG by state
29597aa35f6aSMatthias Ringwald             btstack_linked_list_iterator_t it;
29607aa35f6aSMatthias Ringwald             btstack_linked_list_iterator_init(&it, &hci_stack->le_audio_bigs);
29617aa35f6aSMatthias Ringwald             while (btstack_linked_list_iterator_has_next(&it)) {
29627aa35f6aSMatthias Ringwald                 le_audio_big_t *big = (le_audio_big_t *) btstack_linked_list_iterator_next(&it);
29637aa35f6aSMatthias Ringwald                 if (big->state == LE_AUDIO_BIG_STATE_W4_SETUP_ISO_PATH){
29647aa35f6aSMatthias Ringwald                     status = packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE];
29657aa35f6aSMatthias Ringwald                     if (status == ERROR_CODE_SUCCESS){
29667aa35f6aSMatthias Ringwald                         big->state_vars.next_bis++;
29677aa35f6aSMatthias Ringwald                         if (big->state_vars.next_bis == big->num_bis){
29687aa35f6aSMatthias Ringwald                             big->state = LE_AUDIO_BIG_STATE_ACTIVE;
29697aa35f6aSMatthias Ringwald                             hci_emit_big_created(big, ERROR_CODE_SUCCESS);
29707aa35f6aSMatthias Ringwald                         } else {
29717aa35f6aSMatthias Ringwald                             big->state = LE_AUDIO_BIG_STATE_SETUP_ISO_PATH;
29727aa35f6aSMatthias Ringwald                         }
29737aa35f6aSMatthias Ringwald                     } else {
29747aa35f6aSMatthias Ringwald                         big->state = LE_AUDIO_BIG_STATE_SETUP_ISO_PATHS_FAILED;
29757aa35f6aSMatthias Ringwald                         big->state_vars.status = status;
29762a6c0f82SMatthias Ringwald                     }
29772a6c0f82SMatthias Ringwald                     return;
29782a6c0f82SMatthias Ringwald                 }
29792a6c0f82SMatthias Ringwald             }
29802a6c0f82SMatthias Ringwald             btstack_linked_list_iterator_init(&it, &hci_stack->le_audio_big_syncs);
29812a6c0f82SMatthias Ringwald             while (btstack_linked_list_iterator_has_next(&it)) {
29822a6c0f82SMatthias Ringwald                 le_audio_big_sync_t *big_sync = (le_audio_big_sync_t *) btstack_linked_list_iterator_next(&it);
29832a6c0f82SMatthias Ringwald                 if (big_sync->state == LE_AUDIO_BIG_STATE_W4_SETUP_ISO_PATH){
29842a6c0f82SMatthias Ringwald                     status = packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE];
29852a6c0f82SMatthias Ringwald                     if (status == ERROR_CODE_SUCCESS){
29862a6c0f82SMatthias Ringwald                         big_sync->state_vars.next_bis++;
29872a6c0f82SMatthias Ringwald                         if (big_sync->state_vars.next_bis == big_sync->num_bis){
29882a6c0f82SMatthias Ringwald                             big_sync->state = LE_AUDIO_BIG_STATE_ACTIVE;
29892a6c0f82SMatthias Ringwald                             hci_emit_big_sync_created(big_sync, ERROR_CODE_SUCCESS);
29902a6c0f82SMatthias Ringwald                         } else {
29912a6c0f82SMatthias Ringwald                             big_sync->state = LE_AUDIO_BIG_STATE_SETUP_ISO_PATH;
29922a6c0f82SMatthias Ringwald                         }
29932a6c0f82SMatthias Ringwald                     } else {
29942a6c0f82SMatthias Ringwald                         big_sync->state = LE_AUDIO_BIG_STATE_SETUP_ISO_PATHS_FAILED;
29952a6c0f82SMatthias Ringwald                         big_sync->state_vars.status = status;
29962a6c0f82SMatthias Ringwald                     }
29972a6c0f82SMatthias Ringwald                     return;
29982a6c0f82SMatthias Ringwald                 }
29992a6c0f82SMatthias Ringwald             }
3000f9306a1aSMatthias Ringwald             // Lookup CIS via active group operation
3001f9306a1aSMatthias Ringwald             if (hci_stack->iso_active_operation_type == HCI_ISO_TYPE_CIS){
300226b93350SMatthias Ringwald                 if (hci_stack->iso_active_operation_group_id == HCI_ISO_GROUP_ID_SINGLE_CIS){
300326b93350SMatthias Ringwald                     hci_stack->iso_active_operation_type = HCI_ISO_TYPE_INVALID;
300426b93350SMatthias Ringwald 
300526b93350SMatthias Ringwald                     // lookup CIS by state
300626b93350SMatthias Ringwald                     btstack_linked_list_iterator_t it;
300726b93350SMatthias Ringwald                     btstack_linked_list_iterator_init(&it, &hci_stack->iso_streams);
300826b93350SMatthias Ringwald                     status = packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE];
300926b93350SMatthias Ringwald                     while (btstack_linked_list_iterator_has_next(&it)){
301026b93350SMatthias Ringwald                         hci_iso_stream_t * iso_stream = (hci_iso_stream_t *) btstack_linked_list_iterator_next(&it);
3011969d876aSMatthias Ringwald                         handle = iso_stream->cis_handle;
3012532211feSMatthias Ringwald                         bool emit_cis_created = false;
301326b93350SMatthias Ringwald                         switch (iso_stream->state){
301426b93350SMatthias Ringwald                             case HCI_ISO_STREAM_STATE_W4_ISO_SETUP_INPUT:
301526b93350SMatthias Ringwald                                 if (status != ERROR_CODE_SUCCESS){
3016532211feSMatthias Ringwald                                     emit_cis_created = true;
301726b93350SMatthias Ringwald                                     break;
301826b93350SMatthias Ringwald                                 }
301926b93350SMatthias Ringwald                                 if (iso_stream->max_sdu_c_to_p > 0){
302026b93350SMatthias Ringwald                                     iso_stream->state = HCI_ISO_STREAM_STATE_W2_SETUP_ISO_INPUT;
302126b93350SMatthias Ringwald                                 } else {
3022532211feSMatthias Ringwald                                     emit_cis_created = true;
302326b93350SMatthias Ringwald                                 }
302426b93350SMatthias Ringwald                                 break;
302526b93350SMatthias Ringwald                             case HCI_ISO_STREAM_STATE_W4_ISO_SETUP_OUTPUT:
3026532211feSMatthias Ringwald                                 emit_cis_created = true;
302726b93350SMatthias Ringwald                                 break;
302826b93350SMatthias Ringwald                             default:
302926b93350SMatthias Ringwald                                 break;
303026b93350SMatthias Ringwald                         }
3031532211feSMatthias Ringwald                         if (emit_cis_created){
303214045fdbSMatthias Ringwald                             hci_cis_handle_created(iso_stream, status);
3033532211feSMatthias Ringwald                         }
303426b93350SMatthias Ringwald                     }
303526b93350SMatthias Ringwald                 } else {
3036f9306a1aSMatthias Ringwald                     cig = hci_cig_for_id(hci_stack->iso_active_operation_group_id);
3037532211feSMatthias Ringwald                     hci_stack->iso_active_operation_type = HCI_ISO_TYPE_INVALID;
3038f9306a1aSMatthias Ringwald                     if (cig != NULL) {
3039f9306a1aSMatthias Ringwald                         // emit cis created if all ISO Paths have been created
3040f9306a1aSMatthias Ringwald                         // assume we are central
3041f9306a1aSMatthias Ringwald                         uint8_t cis_index     = cig->state_vars.next_cis >> 1;
3042f9306a1aSMatthias Ringwald                         uint8_t cis_direction = cig->state_vars.next_cis & 1;
3043f9306a1aSMatthias Ringwald                         bool outgoing_needed  = cig->params->cis_params[cis_index].max_sdu_p_to_c > 0;
3044f9306a1aSMatthias Ringwald                         // if outgoing has been setup, or incoming was setup but outgoing not required
3045f9306a1aSMatthias Ringwald                         if ((cis_direction == 1) || (outgoing_needed == false)){
3046532211feSMatthias Ringwald                             // lookup iso stream by cig/cis
3047532211feSMatthias Ringwald                             while (btstack_linked_list_iterator_has_next(&it)) {
3048532211feSMatthias Ringwald                                 hci_iso_stream_t *iso_stream = (hci_iso_stream_t *) btstack_linked_list_iterator_next(&it);
3049532211feSMatthias Ringwald                                 if ((iso_stream->group_id == cig->cig_id) && (iso_stream->stream_id == cis_index)){
305014045fdbSMatthias Ringwald                                     hci_cis_handle_created(iso_stream, status);
3051532211feSMatthias Ringwald                                 }
3052532211feSMatthias Ringwald                             }
3053f9306a1aSMatthias Ringwald                         }
3054f9306a1aSMatthias Ringwald                         // next state
3055f9306a1aSMatthias Ringwald                         cig->state_vars.next_cis++;
3056f9306a1aSMatthias Ringwald                         cig->state = LE_AUDIO_CIG_STATE_SETUP_ISO_PATH;
3057f9306a1aSMatthias Ringwald                     }
3058f9306a1aSMatthias Ringwald                 }
305926b93350SMatthias Ringwald             }
30602a6c0f82SMatthias Ringwald             break;
30612a6c0f82SMatthias Ringwald         }
30622a6c0f82SMatthias Ringwald         case HCI_OPCODE_HCI_LE_BIG_TERMINATE_SYNC: {
30632a6c0f82SMatthias Ringwald             // lookup BIG by state
30642a6c0f82SMatthias Ringwald             btstack_linked_list_iterator_t it;
30652a6c0f82SMatthias Ringwald             btstack_linked_list_iterator_init(&it, &hci_stack->le_audio_big_syncs);
30662a6c0f82SMatthias Ringwald             while (btstack_linked_list_iterator_has_next(&it)) {
30672a6c0f82SMatthias Ringwald                 le_audio_big_sync_t *big_sync = (le_audio_big_sync_t *) btstack_linked_list_iterator_next(&it);
3068d04a9afcSMatthias Ringwald                 uint8_t big_handle = big_sync->big_handle;
30692a6c0f82SMatthias Ringwald                 switch (big_sync->state){
30702a6c0f82SMatthias Ringwald                     case LE_AUDIO_BIG_STATE_W4_TERMINATED_AFTER_SETUP_FAILED:
3071d04a9afcSMatthias Ringwald                         btstack_linked_list_iterator_remove(&it);
30722a6c0f82SMatthias Ringwald                         hci_emit_big_sync_created(big_sync, big_sync->state_vars.status);
3073d04a9afcSMatthias Ringwald                         return;
30742a6c0f82SMatthias Ringwald                     default:
3075d04a9afcSMatthias Ringwald                         btstack_linked_list_iterator_remove(&it);
3076d04a9afcSMatthias Ringwald                         hci_emit_big_sync_stopped(big_handle);
30777aa35f6aSMatthias Ringwald                         return;
30787aa35f6aSMatthias Ringwald                 }
30797aa35f6aSMatthias Ringwald             }
30807aa35f6aSMatthias Ringwald             break;
30817aa35f6aSMatthias Ringwald         }
30824ae8623eSMatthias Ringwald #endif
30834ae8623eSMatthias Ringwald #endif
30846f35bb46SMatthias Ringwald         default:
30856f35bb46SMatthias Ringwald             break;
30864f781026SMatthias Ringwald     }
3087645b7c25SMatthias Ringwald }
30884f781026SMatthias Ringwald 
3089afbf1cd7SMatthias Ringwald static void handle_command_status_event(uint8_t * packet, uint16_t size) {
3090afbf1cd7SMatthias Ringwald     UNUSED(size);
3091afbf1cd7SMatthias Ringwald 
3092afbf1cd7SMatthias Ringwald     // get num cmd packets - limit to 1 to reduce complexity
3093afbf1cd7SMatthias Ringwald     hci_stack->num_cmd_packets = packet[3] ? 1 : 0;
3094afbf1cd7SMatthias Ringwald 
3095c70df5f8SMatthias Ringwald     // get opcode and command status
3096c70df5f8SMatthias Ringwald     uint16_t opcode = hci_event_command_status_get_command_opcode(packet);
3097c70df5f8SMatthias Ringwald 
3098c70df5f8SMatthias Ringwald #if defined(ENABLE_CLASSIC) || defined(ENABLE_LE_CENTRAL) || defined(ENABLE_LE_ISOCHRONOUS_STREAMS)
3099c70df5f8SMatthias Ringwald     uint8_t status = hci_event_command_status_get_status(packet);
3100c70df5f8SMatthias Ringwald #endif
3101c70df5f8SMatthias Ringwald 
3102c70df5f8SMatthias Ringwald #if defined(ENABLE_CLASSIC) || defined(ENABLE_LE_CENTRAL)
3103c70df5f8SMatthias Ringwald     bd_addr_type_t addr_type;
310473bccf35Slouislee91     bd_addr_t addr;
3105c70df5f8SMatthias Ringwald #endif
3106c70df5f8SMatthias Ringwald 
3107c70df5f8SMatthias Ringwald     switch (opcode){
3108afbf1cd7SMatthias Ringwald #ifdef ENABLE_CLASSIC
3109c70df5f8SMatthias Ringwald         case HCI_OPCODE_HCI_CREATE_CONNECTION:
31109071873aSMatthias Ringwald         case HCI_OPCODE_HCI_SETUP_SYNCHRONOUS_CONNECTION:
3111c70df5f8SMatthias Ringwald         case HCI_OPCODE_HCI_ACCEPT_SYNCHRONOUS_CONNECTION:
3112afbf1cd7SMatthias Ringwald #endif
3113afbf1cd7SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
3114c70df5f8SMatthias Ringwald         case HCI_OPCODE_HCI_LE_CREATE_CONNECTION:
3115afbf1cd7SMatthias Ringwald #endif
3116c70df5f8SMatthias Ringwald #if defined(ENABLE_CLASSIC) || defined(ENABLE_LE_CENTRAL)
3117afbf1cd7SMatthias Ringwald             addr_type = hci_stack->outgoing_addr_type;
311873bccf35Slouislee91             memcpy(addr, hci_stack->outgoing_addr, 6);
3119afbf1cd7SMatthias Ringwald 
3120afbf1cd7SMatthias Ringwald             // reset outgoing address info
3121afbf1cd7SMatthias Ringwald             memset(hci_stack->outgoing_addr, 0, 6);
3122afbf1cd7SMatthias Ringwald             hci_stack->outgoing_addr_type = BD_ADDR_TYPE_UNKNOWN;
3123afbf1cd7SMatthias Ringwald 
3124afbf1cd7SMatthias Ringwald             // on error
3125afbf1cd7SMatthias Ringwald             if (status != ERROR_CODE_SUCCESS){
3126afbf1cd7SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
3127afbf1cd7SMatthias Ringwald                 if (hci_is_le_connection_type(addr_type)){
3128afbf1cd7SMatthias Ringwald                     hci_stack->le_connecting_state = LE_CONNECTING_IDLE;
3129afbf1cd7SMatthias Ringwald                     hci_stack->le_connecting_request = LE_CONNECTING_IDLE;
3130afbf1cd7SMatthias Ringwald                 }
3131afbf1cd7SMatthias Ringwald #endif
3132afbf1cd7SMatthias Ringwald                 // error => outgoing connection failed
313373bccf35Slouislee91                 hci_connection_t * conn = hci_connection_for_bd_addr_and_type(addr, addr_type);
3134afbf1cd7SMatthias Ringwald                 if (conn != NULL){
3135afbf1cd7SMatthias Ringwald                     hci_handle_connection_failed(conn, status);
3136afbf1cd7SMatthias Ringwald                 }
3137afbf1cd7SMatthias Ringwald             }
3138c70df5f8SMatthias Ringwald             break;
3139c70df5f8SMatthias Ringwald #endif
3140afbf1cd7SMatthias Ringwald #ifdef ENABLE_CLASSIC
3141c70df5f8SMatthias Ringwald         case HCI_OPCODE_HCI_INQUIRY:
3142afbf1cd7SMatthias Ringwald             if (status == ERROR_CODE_SUCCESS) {
3143afbf1cd7SMatthias Ringwald                 hci_stack->inquiry_state = GAP_INQUIRY_STATE_ACTIVE;
3144afbf1cd7SMatthias Ringwald             } else {
3145afbf1cd7SMatthias Ringwald                 hci_stack->inquiry_state = GAP_INQUIRY_STATE_IDLE;
3146afbf1cd7SMatthias Ringwald             }
3147c70df5f8SMatthias Ringwald             break;
3148c70df5f8SMatthias Ringwald #endif
3149afbf1cd7SMatthias Ringwald #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
3150c70df5f8SMatthias Ringwald         case HCI_OPCODE_HCI_LE_CREATE_CIS:
3151c70df5f8SMatthias Ringwald         case HCI_OPCODE_HCI_LE_ACCEPT_CIS_REQUEST:
3152afbf1cd7SMatthias Ringwald             if (status == ERROR_CODE_SUCCESS){
3153d75a6bbfSMatthias Ringwald                 hci_iso_stream_requested_confirm(HCI_ISO_GROUP_ID_INVALID);
3154afbf1cd7SMatthias Ringwald             } else {
3155d75a6bbfSMatthias Ringwald                 hci_iso_stream_requested_finalize(HCI_ISO_GROUP_ID_INVALID);
3156afbf1cd7SMatthias Ringwald             }
3157c70df5f8SMatthias Ringwald             break;
3158afbf1cd7SMatthias Ringwald #endif /* ENABLE_LE_ISOCHRONOUS_STREAMS */
3159c70df5f8SMatthias Ringwald         default:
3160c70df5f8SMatthias Ringwald             break;
3161c70df5f8SMatthias Ringwald     }
3162afbf1cd7SMatthias Ringwald }
3163afbf1cd7SMatthias Ringwald 
31640ce3f217SMatthias Ringwald #ifdef ENABLE_BLE
31650ce3f217SMatthias Ringwald static void event_handle_le_connection_complete(const uint8_t * packet){
31660ce3f217SMatthias Ringwald 	bd_addr_t addr;
31670ce3f217SMatthias Ringwald 	bd_addr_type_t addr_type;
31680ce3f217SMatthias Ringwald 	hci_connection_t * conn;
31690ce3f217SMatthias Ringwald 
317060fb273dSMatthias Ringwald     // read fields
317160fb273dSMatthias Ringwald     uint8_t status = packet[3];
317288f925b1SMatthias Ringwald     hci_role_t role = (hci_role_t) packet[6];
317360fb273dSMatthias Ringwald 
317460fb273dSMatthias Ringwald     // support different connection complete events
317588f925b1SMatthias Ringwald     uint16_t conn_interval;
317660fb273dSMatthias Ringwald     switch (packet[2]){
317760fb273dSMatthias Ringwald         case HCI_SUBEVENT_LE_CONNECTION_COMPLETE:
317860fb273dSMatthias Ringwald             conn_interval = hci_subevent_le_connection_complete_get_conn_interval(packet);
317960fb273dSMatthias Ringwald             break;
318060fb273dSMatthias Ringwald #ifdef ENABLE_LE_EXTENDED_ADVERTISING
318160fb273dSMatthias Ringwald         case HCI_SUBEVENT_LE_ENHANCED_CONNECTION_COMPLETE_V1:
318260fb273dSMatthias Ringwald             conn_interval = hci_subevent_le_enhanced_connection_complete_v1_get_conn_interval(packet);
318360fb273dSMatthias Ringwald             break;
318460fb273dSMatthias Ringwald         case HCI_SUBEVENT_LE_ENHANCED_CONNECTION_COMPLETE_V2:
318560fb273dSMatthias Ringwald             conn_interval = hci_subevent_le_enhanced_connection_complete_v2_get_conn_interval(packet);
318660fb273dSMatthias Ringwald             break;
318760fb273dSMatthias Ringwald #endif
318860fb273dSMatthias Ringwald         default:
318960fb273dSMatthias Ringwald             btstack_unreachable();
319060fb273dSMatthias Ringwald             return;
319160fb273dSMatthias Ringwald     }
319260fb273dSMatthias Ringwald 
31930ce3f217SMatthias Ringwald 	// Connection management
31940ce3f217SMatthias Ringwald 	reverse_bd_addr(&packet[8], addr);
31950ce3f217SMatthias Ringwald 	addr_type = (bd_addr_type_t)packet[7];
319660fb273dSMatthias Ringwald     log_info("LE Connection_complete (status=%u) type %u, %s", status, addr_type, bd_addr_to_str(addr));
31970ce3f217SMatthias Ringwald 	conn = hci_connection_for_bd_addr_and_type(addr, addr_type);
31980ce3f217SMatthias Ringwald 
31990ce3f217SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
32000ce3f217SMatthias Ringwald 	// handle error: error is reported only to the initiator -> outgoing connection
320160fb273dSMatthias Ringwald 	if (status){
32020ce3f217SMatthias Ringwald 
32030ce3f217SMatthias Ringwald 		// handle cancelled outgoing connection
32040ce3f217SMatthias Ringwald 		// "If the cancellation was successful then, after the Command Complete event for the LE_Create_Connection_Cancel command,
32050ce3f217SMatthias Ringwald 		//  either an LE Connection Complete or an LE Enhanced Connection Complete event shall be generated.
32060ce3f217SMatthias Ringwald 		//  In either case, the event shall be sent with the error code Unknown Connection Identifier (0x02)."
320760fb273dSMatthias Ringwald 		if (status == ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER){
32081f468175SMatthias Ringwald 		    // reset state
32090ce3f217SMatthias Ringwald             hci_stack->le_connecting_state   = LE_CONNECTING_IDLE;
32101f468175SMatthias Ringwald             hci_stack->le_connecting_request = LE_CONNECTING_IDLE;
32110ce3f217SMatthias Ringwald 			// get outgoing connection conn struct for direct connect
32120ce3f217SMatthias Ringwald 			conn = gap_get_outgoing_connection();
32130ce3f217SMatthias Ringwald 		}
32140ce3f217SMatthias Ringwald 
32150ce3f217SMatthias Ringwald 		// outgoing le connection establishment is done
32160ce3f217SMatthias Ringwald 		if (conn){
32170ce3f217SMatthias Ringwald 			// remove entry
32180ce3f217SMatthias Ringwald 			btstack_linked_list_remove(&hci_stack->connections, (btstack_linked_item_t *) conn);
32190ce3f217SMatthias Ringwald 			btstack_memory_hci_connection_free( conn );
32200ce3f217SMatthias Ringwald 		}
32210ce3f217SMatthias Ringwald 		return;
32220ce3f217SMatthias Ringwald 	}
32230ce3f217SMatthias Ringwald #endif
32240ce3f217SMatthias Ringwald 
32250ce3f217SMatthias Ringwald 	// on success, both hosts receive connection complete event
322660fb273dSMatthias Ringwald     if (role == HCI_ROLE_MASTER){
32270ce3f217SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
32280ce3f217SMatthias Ringwald 		// if we're master on an le connection, it was an outgoing connection and we're done with it
32290ce3f217SMatthias Ringwald 		// note: no hci_connection_t object exists yet for connect with whitelist
32300ce3f217SMatthias Ringwald 		if (hci_is_le_connection_type(addr_type)){
32310ce3f217SMatthias Ringwald 			hci_stack->le_connecting_state   = LE_CONNECTING_IDLE;
32320ce3f217SMatthias Ringwald 			hci_stack->le_connecting_request = LE_CONNECTING_IDLE;
32330ce3f217SMatthias Ringwald 		}
32340ce3f217SMatthias Ringwald #endif
32350ce3f217SMatthias Ringwald 	} else {
32360ce3f217SMatthias Ringwald #ifdef ENABLE_LE_PERIPHERAL
32370ce3f217SMatthias Ringwald 		// if we're slave, it was an incoming connection, advertisements have stopped
3238935aa76eSMatthias Ringwald         hci_stack->le_advertisements_state &= ~LE_ADVERTISEMENT_STATE_ACTIVE;
32390ce3f217SMatthias Ringwald #endif
32400ce3f217SMatthias Ringwald 	}
32410ce3f217SMatthias Ringwald 
32420ce3f217SMatthias Ringwald 	// LE connections are auto-accepted, so just create a connection if there isn't one already
32430ce3f217SMatthias Ringwald 	if (!conn){
324488f925b1SMatthias Ringwald 		conn = create_connection_for_bd_addr_and_type(addr, addr_type, role);
32450ce3f217SMatthias Ringwald 	}
32460ce3f217SMatthias Ringwald 
32470ce3f217SMatthias Ringwald 	// no memory, sorry.
32480ce3f217SMatthias Ringwald 	if (!conn){
32490ce3f217SMatthias Ringwald 		return;
32500ce3f217SMatthias Ringwald 	}
32510ce3f217SMatthias Ringwald 
32520ce3f217SMatthias Ringwald 	conn->state = OPEN;
32530ce3f217SMatthias Ringwald 	conn->con_handle             = hci_subevent_le_connection_complete_get_connection_handle(packet);
325460fb273dSMatthias Ringwald     conn->le_connection_interval = conn_interval;
32550ce3f217SMatthias Ringwald 
3256ac0f6b83SMatthias Ringwald     // workaround: PAST doesn't work without LE Read Remote Features on PacketCraft Controller with LMP 568B
3257ac0f6b83SMatthias Ringwald     conn->gap_connection_tasks = GAP_CONNECTION_TASK_LE_READ_REMOTE_FEATURES;
3258ac0f6b83SMatthias Ringwald 
32590ce3f217SMatthias Ringwald #ifdef ENABLE_LE_PERIPHERAL
326060fb273dSMatthias Ringwald 	if (role == HCI_ROLE_SLAVE){
32610ce3f217SMatthias Ringwald 		hci_update_advertisements_enabled_for_current_roles();
32620ce3f217SMatthias Ringwald 	}
32630ce3f217SMatthias Ringwald #endif
32640ce3f217SMatthias Ringwald 
3265dde9ff1eSMatthias Ringwald     // init unenhanced att bearer mtu
3266dde9ff1eSMatthias Ringwald     conn->att_connection.mtu = ATT_DEFAULT_MTU;
3267dde9ff1eSMatthias Ringwald     conn->att_connection.mtu_exchanged = false;
3268dde9ff1eSMatthias Ringwald 
32690ce3f217SMatthias Ringwald     // TODO: store - role, peer address type, conn_interval, conn_latency, supervision timeout, master clock
32700ce3f217SMatthias Ringwald 
32710ce3f217SMatthias Ringwald 	// restart timer
32720ce3f217SMatthias Ringwald 	// btstack_run_loop_set_timer(&conn->timeout, HCI_CONNECTION_TIMEOUT_MS);
32730ce3f217SMatthias Ringwald 	// btstack_run_loop_add_timer(&conn->timeout);
32740ce3f217SMatthias Ringwald 
32750ce3f217SMatthias Ringwald 	log_info("New connection: handle %u, %s", conn->con_handle, bd_addr_to_str(conn->address));
32760ce3f217SMatthias Ringwald 
32770ce3f217SMatthias Ringwald 	hci_emit_nr_connections_changed();
32780ce3f217SMatthias Ringwald }
32790ce3f217SMatthias Ringwald #endif
32800ce3f217SMatthias Ringwald 
328117c6fe5cSMatthias Ringwald #ifdef ENABLE_CLASSIC
328217c6fe5cSMatthias 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){
328317c6fe5cSMatthias Ringwald     if (io_cap_local == SSP_IO_CAPABILITY_UNKNOWN) return false;
328417c6fe5cSMatthias Ringwald     // LEVEL_4 is tested by l2cap
32859a8f78c1SMatthias Ringwald     // LEVEL 3 requires MITM protection -> check io capabilities if Authenticated is possible
32869a8f78c1SMatthias Ringwald     // @see: Core Spec v5.3, Vol 3, Part C, Table 5.7
328717c6fe5cSMatthias Ringwald     if (level >= LEVEL_3){
32889a8f78c1SMatthias Ringwald         // MITM not possible without keyboard or display
328917c6fe5cSMatthias Ringwald         if (io_cap_remote >= SSP_IO_CAPABILITY_NO_INPUT_NO_OUTPUT) return false;
329017c6fe5cSMatthias Ringwald         if (io_cap_local  >= SSP_IO_CAPABILITY_NO_INPUT_NO_OUTPUT) return false;
32919a8f78c1SMatthias Ringwald 
32929a8f78c1SMatthias Ringwald         // MITM possible if one side has keyboard and the other has keyboard or display
32939a8f78c1SMatthias Ringwald         if (io_cap_remote == SSP_IO_CAPABILITY_KEYBOARD_ONLY)      return true;
32949a8f78c1SMatthias Ringwald         if (io_cap_local  == SSP_IO_CAPABILITY_KEYBOARD_ONLY)      return true;
32959a8f78c1SMatthias Ringwald 
32969a8f78c1SMatthias Ringwald         // MITM not possible if one side has only display and other side has no keyboard
32979a8f78c1SMatthias Ringwald         if (io_cap_remote == SSP_IO_CAPABILITY_DISPLAY_ONLY)       return false;
32989a8f78c1SMatthias Ringwald         if (io_cap_local  == SSP_IO_CAPABILITY_DISPLAY_ONLY)       return false;
329917c6fe5cSMatthias Ringwald     }
330017c6fe5cSMatthias Ringwald     // LEVEL 2 requires SSP, which is a given
330117c6fe5cSMatthias Ringwald     return true;
330217c6fe5cSMatthias Ringwald }
33033817f9dfSMatthias Ringwald 
3304b3c4163bSMatthias Ringwald static void hci_ssp_assess_security_on_io_cap_request(hci_connection_t * conn){
33052dd8985bSMatthias Ringwald     // get requested security level
33062dd8985bSMatthias Ringwald     gap_security_level_t requested_security_level = conn->requested_security_level;
33072dd8985bSMatthias Ringwald     if (hci_stack->gap_secure_connections_only_mode){
33082dd8985bSMatthias Ringwald         requested_security_level = LEVEL_4;
33092dd8985bSMatthias Ringwald     }
33102dd8985bSMatthias Ringwald 
3311b3c4163bSMatthias Ringwald     // assess security: LEVEL 4 requires SC
33122dd8985bSMatthias Ringwald     // skip this preliminary test if remote features are not available yet to work around potential issue in ESP32 controller
33132dd8985bSMatthias Ringwald     if ((requested_security_level == LEVEL_4) &&
33142dd8985bSMatthias Ringwald         ((conn->bonding_flags & BONDING_RECEIVED_REMOTE_FEATURES) != 0) &&
33152dd8985bSMatthias Ringwald         !hci_remote_sc_enabled(conn)){
3316b3c4163bSMatthias Ringwald         log_info("Level 4 required, but SC not supported -> abort");
3317b3c4163bSMatthias Ringwald         hci_pairing_complete(conn, ERROR_CODE_INSUFFICIENT_SECURITY);
3318b3c4163bSMatthias Ringwald         connectionSetAuthenticationFlags(conn, AUTH_FLAG_SEND_IO_CAPABILITIES_NEGATIVE_REPLY);
3319b3c4163bSMatthias Ringwald         return;
3320b3c4163bSMatthias Ringwald     }
3321b3c4163bSMatthias Ringwald 
3322b3c4163bSMatthias Ringwald     // assess security based on io capabilities
3323b3c4163bSMatthias Ringwald     if (conn->authentication_flags & AUTH_FLAG_RECV_IO_CAPABILITIES_RESPONSE){
3324b3c4163bSMatthias Ringwald         // responder: fully validate io caps of both sides as well as OOB data
3325b3c4163bSMatthias Ringwald         bool security_possible = false;
3326b3c4163bSMatthias Ringwald         security_possible = hci_ssp_security_level_possible_for_io_cap(requested_security_level, hci_stack->ssp_io_capability, conn->io_cap_response_io);
3327b3c4163bSMatthias Ringwald 
3328b3c4163bSMatthias Ringwald #ifdef ENABLE_CLASSIC_PAIRING_OOB
3329b3c4163bSMatthias Ringwald         // We assume that both Controller can reach LEVEL 4, if one side has received P-192 and the other has received P-256,
3330b3c4163bSMatthias Ringwald         // so we merge the OOB data availability
3331b3c4163bSMatthias Ringwald         uint8_t have_oob_data = conn->io_cap_response_oob_data;
3332b3c4163bSMatthias Ringwald         if (conn->classic_oob_c_192 != NULL){
3333b3c4163bSMatthias Ringwald             have_oob_data |= 1;
3334b3c4163bSMatthias Ringwald         }
3335b3c4163bSMatthias Ringwald         if (conn->classic_oob_c_256 != NULL){
3336b3c4163bSMatthias Ringwald             have_oob_data |= 2;
3337b3c4163bSMatthias Ringwald         }
3338b3c4163bSMatthias Ringwald         // for up to Level 3, either P-192 as well as P-256 will do
3339b3c4163bSMatthias 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
3340b3c4163bSMatthias Ringwald         // if remote does not SC, we should not receive P-256 data either
3341b3c4163bSMatthias Ringwald         if ((requested_security_level <= LEVEL_3) && (have_oob_data != 0)){
3342b3c4163bSMatthias Ringwald             security_possible = true;
3343b3c4163bSMatthias Ringwald         }
3344b3c4163bSMatthias Ringwald         // for Level 4, P-256 is needed
3345b3c4163bSMatthias Ringwald         if ((requested_security_level == LEVEL_4 && ((have_oob_data & 2) != 0))){
3346b3c4163bSMatthias Ringwald             security_possible = true;
3347b3c4163bSMatthias Ringwald         }
3348b3c4163bSMatthias Ringwald #endif
3349b3c4163bSMatthias Ringwald 
3350b3c4163bSMatthias Ringwald         if (security_possible == false){
33512dd8985bSMatthias Ringwald             log_info("IOCap/OOB insufficient for level %u -> abort", requested_security_level);
3352b3c4163bSMatthias Ringwald             hci_pairing_complete(conn, ERROR_CODE_INSUFFICIENT_SECURITY);
3353b3c4163bSMatthias Ringwald             connectionSetAuthenticationFlags(conn, AUTH_FLAG_SEND_IO_CAPABILITIES_NEGATIVE_REPLY);
3354b3c4163bSMatthias Ringwald             return;
3355b3c4163bSMatthias Ringwald         }
3356b3c4163bSMatthias Ringwald     } else {
3357b3c4163bSMatthias Ringwald         // initiator: remote io cap not yet, only check if we have ability for MITM protection if requested and OOB is not supported
33581fe968f5SMatthias Ringwald #ifndef ENABLE_CLASSIC_PAIRING_OOB
33591fe968f5SMatthias Ringwald #ifndef ENABLE_EXPLICIT_IO_CAPABILITIES_REPLY
3360b3c4163bSMatthias Ringwald         if ((conn->requested_security_level >= LEVEL_3) && (hci_stack->ssp_io_capability >= SSP_IO_CAPABILITY_NO_INPUT_NO_OUTPUT)){
3361b3c4163bSMatthias Ringwald             log_info("Level 3+ required, but no input/output -> abort");
3362b3c4163bSMatthias Ringwald             hci_pairing_complete(conn, ERROR_CODE_INSUFFICIENT_SECURITY);
3363b3c4163bSMatthias Ringwald             connectionSetAuthenticationFlags(conn, AUTH_FLAG_SEND_IO_CAPABILITIES_NEGATIVE_REPLY);
3364b3c4163bSMatthias Ringwald             return;
3365b3c4163bSMatthias Ringwald         }
3366b3c4163bSMatthias Ringwald #endif
33671fe968f5SMatthias Ringwald #endif
3368b3c4163bSMatthias Ringwald     }
3369b3c4163bSMatthias Ringwald 
3370b3c4163bSMatthias Ringwald #ifndef ENABLE_EXPLICIT_IO_CAPABILITIES_REPLY
3371b3c4163bSMatthias Ringwald     if (hci_stack->ssp_io_capability != SSP_IO_CAPABILITY_UNKNOWN){
3372b3c4163bSMatthias Ringwald         connectionSetAuthenticationFlags(conn, AUTH_FLAG_SEND_IO_CAPABILITIES_REPLY);
3373b3c4163bSMatthias Ringwald     } else {
3374b3c4163bSMatthias Ringwald         connectionSetAuthenticationFlags(conn, AUTH_FLAG_SEND_IO_CAPABILITIES_NEGATIVE_REPLY);
3375b3c4163bSMatthias Ringwald     }
3376b3c4163bSMatthias Ringwald #endif
3377b3c4163bSMatthias Ringwald }
3378b3c4163bSMatthias Ringwald 
337917c6fe5cSMatthias Ringwald #endif
338017c6fe5cSMatthias Ringwald 
3381c3b46f5aSMatthias Ringwald static void event_handler(uint8_t *packet, uint16_t size){
33824f781026SMatthias Ringwald 
33834f781026SMatthias Ringwald     uint16_t event_length = packet[1];
33844f781026SMatthias Ringwald 
33854f781026SMatthias Ringwald     // assert packet is complete
33864ea43905SMatthias Ringwald     if (size != (event_length + 2u)){
33874f781026SMatthias Ringwald         log_error("event_handler called with packet of wrong size %d, expected %u => dropping packet", size, event_length + 2);
33884f781026SMatthias Ringwald         return;
33894f781026SMatthias Ringwald     }
33904f781026SMatthias Ringwald 
33914f781026SMatthias Ringwald     hci_con_handle_t handle;
33924f781026SMatthias Ringwald     hci_connection_t * conn;
33934f781026SMatthias Ringwald     int i;
33944f781026SMatthias Ringwald 
33954f781026SMatthias Ringwald #ifdef ENABLE_CLASSIC
33965e91d96cSMatthias Ringwald     hci_link_type_t link_type;
339748f33f37SMatthias Ringwald     bd_addr_t addr;
3398cef94710SMatthias Ringwald     bd_addr_type_t addr_type;
33994f781026SMatthias Ringwald #endif
34004ae8623eSMatthias Ringwald #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
34014ae8623eSMatthias Ringwald     hci_iso_stream_t * iso_stream;
34027aa35f6aSMatthias Ringwald     le_audio_big_t   * big;
34032a6c0f82SMatthias Ringwald     le_audio_big_sync_t * big_sync;
34044ae8623eSMatthias Ringwald #endif
34054f781026SMatthias Ringwald 
34064f781026SMatthias Ringwald     // log_info("HCI:EVENT:%02x", hci_event_packet_get_type(packet));
34074f781026SMatthias Ringwald 
34084f781026SMatthias Ringwald     switch (hci_event_packet_get_type(packet)) {
34094f781026SMatthias Ringwald 
34104f781026SMatthias Ringwald         case HCI_EVENT_COMMAND_COMPLETE:
34114f781026SMatthias Ringwald             handle_command_complete_event(packet, size);
341256cf178bSmatthias.ringwald             break;
341356cf178bSmatthias.ringwald 
34147ec5eeaaSmatthias.ringwald         case HCI_EVENT_COMMAND_STATUS:
3415afbf1cd7SMatthias Ringwald             handle_command_status_event(packet, size);
34167ec5eeaaSmatthias.ringwald             break;
34177ec5eeaaSmatthias.ringwald 
34182e440c8aS[email protected]         case HCI_EVENT_NUMBER_OF_COMPLETED_PACKETS:{
34199784dac1SMatthias Ringwald             if (size < 3) return;
34209784dac1SMatthias Ringwald             uint16_t num_handles = packet[2];
34214ea43905SMatthias Ringwald             if (size != (3u + num_handles * 4u)) return;
3422d9a1d8edSMatthias Ringwald #ifdef ENABLE_CLASSIC
3423d9a1d8edSMatthias Ringwald             bool notify_sco = false;
3424d9a1d8edSMatthias Ringwald #endif
3425d9a1d8edSMatthias Ringwald #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
3426d9a1d8edSMatthias Ringwald             bool notify_iso = false;
3427d9a1d8edSMatthias Ringwald #endif
34289784dac1SMatthias Ringwald             uint16_t offset = 3;
34299784dac1SMatthias Ringwald             for (i=0; i<num_handles;i++){
34304ea43905SMatthias Ringwald                 handle = little_endian_read_16(packet, offset) & 0x0fffu;
34314ea43905SMatthias Ringwald                 offset += 2u;
3432f8fbdce0SMatthias Ringwald                 uint16_t num_packets = little_endian_read_16(packet, offset);
34334ea43905SMatthias Ringwald                 offset += 2u;
34342e440c8aS[email protected] 
34355061f3afS[email protected]                 conn = hci_connection_for_handle(handle);
3436e5413aa0SMatthias Ringwald                 if (conn != NULL) {
343723bed257S[email protected] 
3438ce41473eSMatthias Ringwald                     if (conn->num_packets_sent >= num_packets) {
3439ce41473eSMatthias Ringwald                         conn->num_packets_sent -= num_packets;
3440e35edcc1S[email protected]                     } else {
3441ce41473eSMatthias Ringwald                         log_error("hci_number_completed_packets, more packet slots freed then sent.");
3442ce41473eSMatthias Ringwald                         conn->num_packets_sent = 0;
3443e35edcc1S[email protected]                     }
3444ce41473eSMatthias Ringwald                     // log_info("hci_number_completed_packet %u processed for handle %u, outstanding %u", num_packets, handle, conn->num_packets_sent);
3445d9a1d8edSMatthias Ringwald #ifdef ENABLE_CLASSIC
3446d9a1d8edSMatthias Ringwald                     if (conn->address_type == BD_ADDR_TYPE_SCO){
3447d9a1d8edSMatthias Ringwald                         notify_sco = true;
3448d9a1d8edSMatthias Ringwald                     }
3449d9a1d8edSMatthias Ringwald #endif
3450e5413aa0SMatthias Ringwald                 }
3451e5413aa0SMatthias Ringwald 
34528ad9cf99SMatthias Ringwald #ifdef ENABLE_CONTROLLER_DUMP_PACKETS
34538ad9cf99SMatthias Ringwald                 hci_controller_dump_packets();
34548ad9cf99SMatthias Ringwald #endif
34558ad9cf99SMatthias Ringwald 
3456e5413aa0SMatthias Ringwald #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
3457e5413aa0SMatthias Ringwald                 if (conn == NULL){
3458e5413aa0SMatthias Ringwald                     hci_iso_stream_t * iso_stream = hci_iso_stream_for_con_handle(handle);
3459e5413aa0SMatthias Ringwald                     if (iso_stream != NULL){
3460e5413aa0SMatthias Ringwald                         if (iso_stream->num_packets_sent >= num_packets) {
3461e5413aa0SMatthias Ringwald                             iso_stream->num_packets_sent -= num_packets;
3462e5413aa0SMatthias Ringwald                         } else {
3463e5413aa0SMatthias Ringwald                             log_error("hci_number_completed_packets, more packet slots freed then sent.");
3464e5413aa0SMatthias Ringwald                             iso_stream->num_packets_sent = 0;
3465e5413aa0SMatthias Ringwald                         }
34668d72db10SMatthias Ringwald                         if (iso_stream->iso_type == HCI_ISO_TYPE_BIS){
34678d72db10SMatthias Ringwald                             le_audio_big_t * big = hci_big_for_handle(iso_stream->group_id);
3468fe977b37SMatthias Ringwald                             if (big != NULL){
3469fe977b37SMatthias Ringwald                                 big->num_completed_timestamp_current_valid = true;
3470fe977b37SMatthias Ringwald                                 big->num_completed_timestamp_current_ms = btstack_run_loop_get_time_ms();
3471fe977b37SMatthias Ringwald                             }
3472fe977b37SMatthias Ringwald                         }
3473e5413aa0SMatthias Ringwald                         log_info("hci_number_completed_packet %u processed for handle %u, outstanding %u",
3474e5413aa0SMatthias Ringwald                                  num_packets, handle, iso_stream->num_packets_sent);
3475d9a1d8edSMatthias Ringwald                         notify_iso = true;
3476e5413aa0SMatthias Ringwald                     }
3477d9a1d8edSMatthias Ringwald                 }
3478d9a1d8edSMatthias Ringwald #endif
3479d9a1d8edSMatthias Ringwald             }
3480d9a1d8edSMatthias Ringwald 
3481d9a1d8edSMatthias Ringwald #ifdef ENABLE_CLASSIC
3482d9a1d8edSMatthias Ringwald             if (notify_sco){
3483d9a1d8edSMatthias Ringwald                 hci_notify_if_sco_can_send_now();
3484d9a1d8edSMatthias Ringwald             }
3485d9a1d8edSMatthias Ringwald #endif
3486d9a1d8edSMatthias Ringwald #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
3487d9a1d8edSMatthias Ringwald             if (notify_iso){
34885ade6657SMatthias Ringwald                 hci_iso_notify_can_send_now();
3489e5413aa0SMatthias Ringwald             }
3490e5413aa0SMatthias Ringwald #endif
34916772a24cSmatthias.ringwald             break;
34922e440c8aS[email protected]         }
349335454696SMatthias Ringwald 
349435454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
34959afaa4d4SMatthias Ringwald         case HCI_EVENT_FLUSH_OCCURRED:
34969afaa4d4SMatthias Ringwald             // flush occurs only if automatic flush has been enabled by gap_enable_link_watchdog()
34979afaa4d4SMatthias Ringwald             handle = hci_event_flush_occurred_get_handle(packet);
34989afaa4d4SMatthias Ringwald             conn = hci_connection_for_handle(handle);
34999afaa4d4SMatthias Ringwald             if (conn) {
35009afaa4d4SMatthias Ringwald                 log_info("Flush occurred, disconnect 0x%04x", handle);
35019afaa4d4SMatthias Ringwald                 conn->state = SEND_DISCONNECT;
35029afaa4d4SMatthias Ringwald             }
35039afaa4d4SMatthias Ringwald             break;
35049afaa4d4SMatthias Ringwald 
3505f5875de5SMatthias Ringwald         case HCI_EVENT_INQUIRY_COMPLETE:
3506f5875de5SMatthias Ringwald             if (hci_stack->inquiry_state == GAP_INQUIRY_STATE_ACTIVE){
3507f5875de5SMatthias Ringwald                 hci_stack->inquiry_state = GAP_INQUIRY_STATE_IDLE;
3508f5875de5SMatthias Ringwald                 uint8_t event[] = { GAP_EVENT_INQUIRY_COMPLETE, 1, 0};
3509f5875de5SMatthias Ringwald                 hci_emit_event(event, sizeof(event), 1);
3510f5875de5SMatthias Ringwald             }
3511f5875de5SMatthias Ringwald             break;
3512b7f1ee76SMatthias Ringwald         case HCI_EVENT_REMOTE_NAME_REQUEST_COMPLETE:
3513b7f1ee76SMatthias Ringwald             if (hci_stack->remote_name_state == GAP_REMOTE_NAME_STATE_W4_COMPLETE){
3514b7f1ee76SMatthias Ringwald                 hci_stack->remote_name_state = GAP_REMOTE_NAME_STATE_IDLE;
3515b7f1ee76SMatthias Ringwald             }
3516b7f1ee76SMatthias Ringwald             break;
35171f7b95a1Smatthias.ringwald         case HCI_EVENT_CONNECTION_REQUEST:
3518724d70a2SMatthias Ringwald             reverse_bd_addr(&packet[2], addr);
35195e91d96cSMatthias Ringwald             link_type = (hci_link_type_t) packet[11];
352072cf8859SMatthias Ringwald 
352172cf8859SMatthias Ringwald             // CVE-2020-26555: reject incoming connection from device with same BD ADDR
352272cf8859SMatthias Ringwald             if (memcmp(hci_stack->local_bd_addr, addr, 6) == 0){
352372cf8859SMatthias Ringwald                 hci_stack->decline_reason = ERROR_CODE_CONNECTION_REJECTED_DUE_TO_UNACCEPTABLE_BD_ADDR;
352472cf8859SMatthias Ringwald                 bd_addr_copy(hci_stack->decline_addr, addr);
352572cf8859SMatthias Ringwald                 break;
352672cf8859SMatthias Ringwald             }
352772cf8859SMatthias Ringwald 
352807e010b6SMilanka Ringwald             if (hci_stack->gap_classic_accept_callback != NULL){
35295e91d96cSMatthias Ringwald                 if ((*hci_stack->gap_classic_accept_callback)(addr, link_type) == 0){
3530d152b6c6SMatthias Ringwald                     hci_stack->decline_reason = ERROR_CODE_CONNECTION_REJECTED_DUE_TO_SECURITY_REASONS;
353107e010b6SMilanka Ringwald                     bd_addr_copy(hci_stack->decline_addr, addr);
353207e010b6SMilanka Ringwald                     break;
353307e010b6SMilanka Ringwald                 }
353407e010b6SMilanka Ringwald             }
353507e010b6SMilanka Ringwald 
353637eaa4cfSmatthias.ringwald             // TODO: eval COD 8-10
35375e91d96cSMatthias Ringwald             log_info("Connection_incoming: %s, type %u", bd_addr_to_str(addr), (unsigned int) link_type);
35385e91d96cSMatthias Ringwald             addr_type = (link_type == HCI_LINK_TYPE_ACL) ? BD_ADDR_TYPE_ACL : BD_ADDR_TYPE_SCO;
35392e77e513S[email protected]             conn = hci_connection_for_bd_addr_and_type(addr, addr_type);
35401f7b95a1Smatthias.ringwald             if (!conn) {
354188f925b1SMatthias Ringwald                 conn = create_connection_for_bd_addr_and_type(addr, addr_type, HCI_ROLE_SLAVE);
35421f7b95a1Smatthias.ringwald             }
3543ce4c8fabSmatthias.ringwald             if (!conn) {
3544ce4c8fabSmatthias.ringwald                 // CONNECTION REJECTED DUE TO LIMITED RESOURCES (0X0D)
35454536712cSMilanka Ringwald                 hci_stack->decline_reason = ERROR_CODE_CONNECTION_REJECTED_DUE_TO_LIMITED_RESOURCES;
3546058e3d6bSMatthias Ringwald                 bd_addr_copy(hci_stack->decline_addr, addr);
3547f23819bcSMatthias Ringwald                 hci_run();
3548f23819bcSMatthias Ringwald                 // avoid event to higher layer
3549f23819bcSMatthias Ringwald                 return;
3550ce4c8fabSmatthias.ringwald             }
355132ab9390Smatthias.ringwald             conn->state = RECEIVED_CONNECTION_REQUEST;
3552f3a16b9aSMatthias Ringwald             // store info about eSCO
35535e91d96cSMatthias Ringwald             if (link_type == HCI_LINK_TYPE_ESCO){
355476ccfb2aSMatthias Ringwald                 conn->remote_supported_features[0] |= 1;
3555f3a16b9aSMatthias Ringwald             }
355632ab9390Smatthias.ringwald             hci_run();
35571f7b95a1Smatthias.ringwald             break;
35581f7b95a1Smatthias.ringwald 
35596772a24cSmatthias.ringwald         case HCI_EVENT_CONNECTION_COMPLETE:
3560fe1ed1b8Smatthias.ringwald             // Connection management
3561724d70a2SMatthias Ringwald             reverse_bd_addr(&packet[5], addr);
35629da54300S[email protected]             log_info("Connection_complete (status=%u) %s", packet[2], bd_addr_to_str(addr));
3563f16129ceSMatthias Ringwald             addr_type = BD_ADDR_TYPE_ACL;
35642e77e513S[email protected]             conn = hci_connection_for_bd_addr_and_type(addr, addr_type);
3565fe1ed1b8Smatthias.ringwald             if (conn) {
3566893b4ccdSMatthias Ringwald                 switch (conn->state){
3567893b4ccdSMatthias Ringwald                     // expected states
3568893b4ccdSMatthias Ringwald                     case ACCEPTED_CONNECTION_REQUEST:
3569893b4ccdSMatthias Ringwald                     case SENT_CREATE_CONNECTION:
3570893b4ccdSMatthias Ringwald                         break;
3571893b4ccdSMatthias Ringwald                     // unexpected state -> ignore
3572893b4ccdSMatthias Ringwald                     default:
3573893b4ccdSMatthias Ringwald                         // don't forward event to app
3574893b4ccdSMatthias Ringwald                         return;
3575893b4ccdSMatthias Ringwald                 }
3576b448a0e7Smatthias.ringwald                 if (!packet[2]){
3577c8e4258aSmatthias.ringwald                     conn->state = OPEN;
3578f8fbdce0SMatthias Ringwald                     conn->con_handle = little_endian_read_16(packet, 3);
35796909f064SMatthias Ringwald 
358022df2fe2SMatthias Ringwald                     // trigger write supervision timeout if we're master
3581d821984bSMatthias Ringwald                     if ((hci_stack->link_supervision_timeout != HCI_LINK_SUPERVISION_TIMEOUT_DEFAULT) && (conn->role == HCI_ROLE_MASTER)){
358222df2fe2SMatthias Ringwald                         conn->gap_connection_tasks |= GAP_CONNECTION_TASK_WRITE_SUPERVISION_TIMEOUT;
35836909f064SMatthias Ringwald                     }
35846909f064SMatthias Ringwald 
358522df2fe2SMatthias Ringwald                     // trigger write automatic flush timeout
35869afaa4d4SMatthias Ringwald                     if (hci_stack->automatic_flush_timeout != 0){
35879afaa4d4SMatthias Ringwald                         conn->gap_connection_tasks |= GAP_CONNECTION_TASK_WRITE_AUTOMATIC_FLUSH_TIMEOUT;
35889afaa4d4SMatthias Ringwald                     }
35899afaa4d4SMatthias Ringwald 
3590c785ef68Smatthias.ringwald                     // restart timer
3591528a4a3bSMatthias Ringwald                     btstack_run_loop_set_timer(&conn->timeout, HCI_CONNECTION_TIMEOUT_MS);
3592528a4a3bSMatthias Ringwald                     btstack_run_loop_add_timer(&conn->timeout);
3593c785ef68Smatthias.ringwald 
359418c4a0a3SMatthias Ringwald                     // trigger remote features for dedicated bonding
359518c4a0a3SMatthias Ringwald                     if ((conn->bonding_flags & BONDING_DEDICATED) != 0){
359618c4a0a3SMatthias Ringwald                         hci_trigger_remote_features_for_connection(conn);
359718c4a0a3SMatthias Ringwald                     }
359818c4a0a3SMatthias Ringwald 
35999da54300S[email protected]                     log_info("New connection: handle %u, %s", conn->con_handle, bd_addr_to_str(conn->address));
360043bfb1bdSmatthias.ringwald 
360143bfb1bdSmatthias.ringwald                     hci_emit_nr_connections_changed();
3602b448a0e7Smatthias.ringwald                 } else {
36030bbba85bSMatthias Ringwald                     // connection failed
36040bbba85bSMatthias Ringwald                     hci_handle_connection_failed(conn, packet[2]);
3605fe1ed1b8Smatthias.ringwald                 }
3606fe1ed1b8Smatthias.ringwald             }
36076772a24cSmatthias.ringwald             break;
3608fe1ed1b8Smatthias.ringwald 
360944d0e3d5S[email protected]         case HCI_EVENT_SYNCHRONOUS_CONNECTION_COMPLETE:
3610724d70a2SMatthias Ringwald             reverse_bd_addr(&packet[5], addr);
36111f34df2cSMatthias Ringwald             conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_SCO);
36121f34df2cSMatthias Ringwald             log_info("Synchronous Connection Complete for %p (status=%u) %s", conn, packet[2], bd_addr_to_str(addr));
36139071873aSMatthias Ringwald             btstack_assert(conn != NULL);
36149071873aSMatthias Ringwald 
36159071873aSMatthias Ringwald             if (packet[2] != ERROR_CODE_SUCCESS){
36169071873aSMatthias Ringwald                 // connection failed, remove entry
36171f34df2cSMatthias Ringwald                 hci_handle_connection_failed(conn, packet[2]);
361844d0e3d5S[email protected]                 break;
361944d0e3d5S[email protected]             }
36209071873aSMatthias Ringwald 
36211a06f663S[email protected]             conn->state = OPEN;
3622f8fbdce0SMatthias Ringwald             conn->con_handle = little_endian_read_16(packet, 3);
3623ee752bb8SMatthias Ringwald 
3624ee752bb8SMatthias Ringwald #ifdef ENABLE_SCO_OVER_HCI
3625ee752bb8SMatthias Ringwald             // update SCO
3626ee752bb8SMatthias Ringwald             if (conn->address_type == BD_ADDR_TYPE_SCO && hci_stack->hci_transport && hci_stack->hci_transport->set_sco_config){
3627ee752bb8SMatthias Ringwald                 hci_stack->hci_transport->set_sco_config(hci_stack->sco_voice_setting_active, hci_number_sco_connections());
3628ee752bb8SMatthias Ringwald             }
3629f234b250SMatthias Ringwald             // trigger can send now
3630f234b250SMatthias Ringwald             if (hci_have_usb_transport()){
36311972f31fSMatthias Ringwald                 hci_stack->sco_can_send_now = true;
3632f234b250SMatthias Ringwald             }
3633ee752bb8SMatthias Ringwald #endif
3634cb70c5abSMatthias Ringwald #ifdef HAVE_SCO_TRANSPORT
3635cb70c5abSMatthias Ringwald             // configure sco transport
3636cb70c5abSMatthias Ringwald             if (hci_stack->sco_transport != NULL){
3637cb70c5abSMatthias Ringwald                 sco_format_t sco_format = ((hci_stack->sco_voice_setting_active & 0x03) == 0x03) ? SCO_FORMAT_8_BIT : SCO_FORMAT_16_BIT;
3638cb70c5abSMatthias Ringwald                 hci_stack->sco_transport->open(conn->con_handle, sco_format);
3639cb70c5abSMatthias Ringwald             }
3640cb70c5abSMatthias Ringwald #endif
364144d0e3d5S[email protected]             break;
364244d0e3d5S[email protected] 
3643afd4e962S[email protected]         case HCI_EVENT_READ_REMOTE_SUPPORTED_FEATURES_COMPLETE:
3644f8fbdce0SMatthias Ringwald             handle = little_endian_read_16(packet, 3);
3645afd4e962S[email protected]             conn = hci_connection_for_handle(handle);
3646afd4e962S[email protected]             if (!conn) break;
3647afd4e962S[email protected]             if (!packet[2]){
36482f5c44baSMatthias Ringwald                 const uint8_t * features = &packet[5];
36492f5c44baSMatthias Ringwald                 hci_handle_remote_features_page_0(conn, features);
36502f5c44baSMatthias Ringwald 
36515ccef624SMatthias Ringwald                 // read extended features if possible
36521ffa425cSMatthias Ringwald                 if (hci_command_supported(SUPPORTED_HCI_COMMAND_READ_REMOTE_EXTENDED_FEATURES)
36531ffa425cSMatthias Ringwald                 && ((conn->remote_supported_features[0] & 2) != 0)) {
36545ccef624SMatthias Ringwald                     conn->bonding_flags |= BONDING_REQUEST_REMOTE_FEATURES_PAGE_1;
36555ccef624SMatthias Ringwald                     break;
36565ccef624SMatthias Ringwald                 }
36575ccef624SMatthias Ringwald             }
36585ccef624SMatthias Ringwald             hci_handle_remote_features_received(conn);
36595ccef624SMatthias Ringwald             break;
36605ccef624SMatthias Ringwald 
36615ccef624SMatthias Ringwald         case HCI_EVENT_READ_REMOTE_EXTENDED_FEATURES_COMPLETE:
36625ccef624SMatthias Ringwald             handle = little_endian_read_16(packet, 3);
36635ccef624SMatthias Ringwald             conn = hci_connection_for_handle(handle);
36645ccef624SMatthias Ringwald             if (!conn) break;
36655ccef624SMatthias Ringwald             // status = ok, page = 1
366650c51a77SMatthias Ringwald             if (!packet[2]) {
366750c51a77SMatthias Ringwald                 uint8_t page_number = packet[5];
366850c51a77SMatthias Ringwald                 uint8_t maximum_page_number = packet[6];
36695ccef624SMatthias Ringwald                 const uint8_t * features = &packet[7];
367050c51a77SMatthias Ringwald                 bool done = false;
367150c51a77SMatthias Ringwald                 switch (page_number){
367250c51a77SMatthias Ringwald                     case 1:
36732f5c44baSMatthias Ringwald                         hci_handle_remote_features_page_1(conn, features);
367450c51a77SMatthias Ringwald                         if (maximum_page_number >= 2){
367550c51a77SMatthias Ringwald                             // get Secure Connections (Controller) from Page 2 if available
367650c51a77SMatthias Ringwald                             conn->bonding_flags |= BONDING_REQUEST_REMOTE_FEATURES_PAGE_2;
367750c51a77SMatthias Ringwald                         } else {
367850c51a77SMatthias Ringwald                             // otherwise, assume SC (Controller) == SC (Host)
367950c51a77SMatthias Ringwald                             if ((conn->bonding_flags & BONDING_REMOTE_SUPPORTS_SC_HOST) != 0){
368050c51a77SMatthias Ringwald                                 conn->bonding_flags |= BONDING_REMOTE_SUPPORTS_SC_CONTROLLER;
368150c51a77SMatthias Ringwald                             }
368250c51a77SMatthias Ringwald                             done = true;
368350c51a77SMatthias Ringwald                         }
368450c51a77SMatthias Ringwald                         break;
368550c51a77SMatthias Ringwald                     case 2:
368650c51a77SMatthias Ringwald                         hci_handle_remote_features_page_2(conn, features);
368750c51a77SMatthias Ringwald                         done = true;
368850c51a77SMatthias Ringwald                         break;
368950c51a77SMatthias Ringwald                     default:
369050c51a77SMatthias Ringwald                         break;
369150c51a77SMatthias Ringwald                 }
369250c51a77SMatthias Ringwald                 if (!done) break;
3693afd4e962S[email protected]             }
3694de0df013SMatthias Ringwald             hci_handle_remote_features_received(conn);
3695afd4e962S[email protected]             break;
3696afd4e962S[email protected] 
36977fde4af9Smatthias.ringwald         case HCI_EVENT_LINK_KEY_REQUEST:
3698308eeaffSMatthias Ringwald #ifndef ENABLE_EXPLICIT_LINK_KEY_REPLY
369963c0b2fdSMatthias Ringwald             hci_event_link_key_request_get_bd_addr(packet, addr);
370063c0b2fdSMatthias Ringwald             conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
370163c0b2fdSMatthias Ringwald             if (!conn) break;
370263c0b2fdSMatthias Ringwald 
370363c0b2fdSMatthias Ringwald             // lookup link key in db if not cached
370463c0b2fdSMatthias Ringwald             if ((conn->link_key_type == INVALID_LINK_KEY) && (hci_stack->link_key_db != NULL)){
370563c0b2fdSMatthias Ringwald                 hci_stack->link_key_db->get_link_key(conn->address, conn->link_key, &conn->link_key_type);
370663c0b2fdSMatthias Ringwald             }
370763c0b2fdSMatthias Ringwald 
370863c0b2fdSMatthias Ringwald             // response sent by hci_run()
370963c0b2fdSMatthias Ringwald             conn->authentication_flags |= AUTH_FLAG_HANDLE_LINK_KEY_REQUEST;
371063c0b2fdSMatthias Ringwald #endif
3711608f51bbSMatthias Ringwald             break;
37127fde4af9Smatthias.ringwald 
37139ab95c90S[email protected]         case HCI_EVENT_LINK_KEY_NOTIFICATION: {
37141714cbbdSMatthias Ringwald             hci_event_link_key_request_get_bd_addr(packet, addr);
3715f16129ceSMatthias Ringwald             conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
37169ab95c90S[email protected]             if (!conn) break;
37171714cbbdSMatthias Ringwald 
37181714cbbdSMatthias Ringwald             hci_pairing_complete(conn, ERROR_CODE_SUCCESS);
37191714cbbdSMatthias Ringwald 
37203817f9dfSMatthias Ringwald             // CVE-2020-26555: ignore NULL link key
37213817f9dfSMatthias Ringwald             // default link_key_type = INVALID_LINK_KEY asserts that NULL key won't be used for encryption
37223817f9dfSMatthias Ringwald             if (btstack_is_null(&packet[8], 16)) break;
37233817f9dfSMatthias Ringwald 
37247bdc6798S[email protected]             link_key_type_t link_key_type = (link_key_type_t)packet[24];
37259ab95c90S[email protected]             // Change Connection Encryption keeps link key type
37269ab95c90S[email protected]             if (link_key_type != CHANGED_COMBINATION_KEY){
37279ab95c90S[email protected]                 conn->link_key_type = link_key_type;
37289ab95c90S[email protected]             }
37293817f9dfSMatthias Ringwald 
3730e9f98c4aSMatthias Ringwald             // cache link key. link keys stored in little-endian format for legacy reasons
3731e9f98c4aSMatthias Ringwald             memcpy(&conn->link_key, &packet[8], 16);
3732e9f98c4aSMatthias Ringwald 
3733bec5f683SMatthias Ringwald             // only store link key:
3734bec5f683SMatthias Ringwald             // - if bondable enabled
3735bec5f683SMatthias Ringwald             if (hci_stack->bondable == false) break;
37366edaed7fSMatthias Ringwald             // - if security level sufficient
37376edaed7fSMatthias Ringwald             if (gap_security_level_for_link_key_type(link_key_type) < conn->requested_security_level) break;
3738bec5f683SMatthias Ringwald             // - for SSP, also check if remote side requested bonding as well
3739bec5f683SMatthias Ringwald             if (conn->link_key_type != COMBINATION_KEY){
3740532454f9SMatthias Ringwald                 bool remote_bonding = conn->io_cap_response_auth_req >= SSP_IO_AUTHREQ_MITM_PROTECTION_NOT_REQUIRED_DEDICATED_BONDING;
3741532454f9SMatthias Ringwald                 if (!remote_bonding){
3742bec5f683SMatthias Ringwald                     break;
3743bec5f683SMatthias Ringwald                 }
3744bec5f683SMatthias Ringwald             }
374555597469SMatthias Ringwald             gap_store_link_key_for_bd_addr(addr, &packet[8], conn->link_key_type);
37467fde4af9Smatthias.ringwald             break;
37479ab95c90S[email protected]         }
37487fde4af9Smatthias.ringwald 
37497fde4af9Smatthias.ringwald         case HCI_EVENT_PIN_CODE_REQUEST:
37501714cbbdSMatthias Ringwald             hci_event_pin_code_request_get_bd_addr(packet, addr);
37511714cbbdSMatthias Ringwald             conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
37521714cbbdSMatthias Ringwald             if (!conn) break;
37531714cbbdSMatthias Ringwald 
37541714cbbdSMatthias Ringwald             hci_pairing_started(conn, false);
3755a800d95eSMatthias Ringwald             // abort pairing if: non-bondable mode (pin code request is not forwarded to app)
37563a9fb326S[email protected]             if (!hci_stack->bondable ){
37578daf94bcSMatthias Ringwald                 conn->authentication_flags |= AUTH_FLAG_DENY_PIN_CODE_REQUEST;
37581714cbbdSMatthias Ringwald                 hci_pairing_complete(conn, ERROR_CODE_PAIRING_NOT_ALLOWED);
3759f8fb5f6eS[email protected]                 hci_run();
3760f8fb5f6eS[email protected]                 return;
37614c57c146S[email protected]             }
3762a800d95eSMatthias Ringwald             // abort pairing if: LEVEL_4 required (pin code request is not forwarded to app)
3763a800d95eSMatthias Ringwald             if ((hci_stack->gap_secure_connections_only_mode) || (conn->requested_security_level == LEVEL_4)){
3764a800d95eSMatthias Ringwald                 log_info("Level 4 required, but SC not supported -> abort");
376550dcc63cSMatthias Ringwald                 conn->authentication_flags |= AUTH_FLAG_DENY_PIN_CODE_REQUEST;
376650dcc63cSMatthias Ringwald                 hci_pairing_complete(conn, ERROR_CODE_INSUFFICIENT_SECURITY);
376750dcc63cSMatthias Ringwald                 hci_run();
376850dcc63cSMatthias Ringwald                 return;
376950dcc63cSMatthias Ringwald             }
37707fde4af9Smatthias.ringwald             break;
37717fde4af9Smatthias.ringwald 
377250d7398cSMatthias Ringwald         case HCI_EVENT_IO_CAPABILITY_RESPONSE:
377350d7398cSMatthias Ringwald             hci_event_io_capability_response_get_bd_addr(packet, addr);
377450d7398cSMatthias Ringwald             conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
377550d7398cSMatthias Ringwald             if (!conn) break;
37761714cbbdSMatthias Ringwald 
37778daf94bcSMatthias Ringwald             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], AUTH_FLAG_RECV_IO_CAPABILITIES_RESPONSE);
37781714cbbdSMatthias Ringwald             hci_pairing_started(conn, true);
377950d7398cSMatthias Ringwald             conn->io_cap_response_auth_req = hci_event_io_capability_response_get_authentication_requirements(packet);
3780e276e383SMatthias Ringwald             conn->io_cap_response_io       = hci_event_io_capability_response_get_io_capability(packet);
3781d22b82d6SMatthias Ringwald #ifdef ENABLE_CLASSIC_PAIRING_OOB
3782d22b82d6SMatthias Ringwald             conn->io_cap_response_oob_data = hci_event_io_capability_response_get_oob_data_present(packet);
3783d22b82d6SMatthias Ringwald #endif
378450d7398cSMatthias Ringwald             break;
378550d7398cSMatthias Ringwald 
37861d6b20aeS[email protected]         case HCI_EVENT_IO_CAPABILITY_REQUEST:
37871714cbbdSMatthias Ringwald             hci_event_io_capability_response_get_bd_addr(packet, addr);
37881714cbbdSMatthias Ringwald             conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
37891714cbbdSMatthias Ringwald             if (!conn) break;
37901714cbbdSMatthias Ringwald 
3791c950c316SMatthias Ringwald             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], AUTH_FLAG_RECV_IO_CAPABILITIES_REQUEST);
37929671e615SMatthias Ringwald             hci_connection_timestamp(conn);
37931714cbbdSMatthias Ringwald             hci_pairing_started(conn, true);
3794dbe1a790S[email protected]             break;
3795dbe1a790S[email protected] 
37961849becdSMatthias Ringwald #ifdef ENABLE_CLASSIC_PAIRING_OOB
37971849becdSMatthias Ringwald         case HCI_EVENT_REMOTE_OOB_DATA_REQUEST:
37987ca4a7edSMatthias Ringwald             hci_event_remote_oob_data_request_get_bd_addr(packet, addr);
37997ca4a7edSMatthias Ringwald             conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
38007ca4a7edSMatthias Ringwald             if (!conn) break;
38017ca4a7edSMatthias Ringwald 
38027ca4a7edSMatthias Ringwald             hci_connection_timestamp(conn);
38037ca4a7edSMatthias Ringwald 
38047ca4a7edSMatthias Ringwald             hci_pairing_started(conn, true);
38057ca4a7edSMatthias Ringwald 
38067ca4a7edSMatthias Ringwald             connectionSetAuthenticationFlags(conn, AUTH_FLAG_SEND_REMOTE_OOB_DATA_REPLY);
38071849becdSMatthias Ringwald             break;
38081849becdSMatthias Ringwald #endif
38091849becdSMatthias Ringwald 
3810dbe1a790S[email protected]         case HCI_EVENT_USER_CONFIRMATION_REQUEST:
381117c6fe5cSMatthias Ringwald             hci_event_user_confirmation_request_get_bd_addr(packet, addr);
3812367aedc0SMatthias Ringwald             conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
3813367aedc0SMatthias Ringwald             if (!conn) break;
3814367aedc0SMatthias Ringwald             if (hci_ssp_security_level_possible_for_io_cap(conn->requested_security_level, hci_stack->ssp_io_capability, conn->io_cap_response_io)) {
3815367aedc0SMatthias Ringwald                 if (hci_stack->ssp_auto_accept){
38168daf94bcSMatthias Ringwald                     hci_add_connection_flags_for_flipped_bd_addr(&packet[2], AUTH_FLAG_SEND_USER_CONFIRM_REPLY);
3817367aedc0SMatthias Ringwald                 };
3818367aedc0SMatthias Ringwald             } else {
3819367aedc0SMatthias Ringwald                 hci_pairing_complete(conn, ERROR_CODE_INSUFFICIENT_SECURITY);
3820367aedc0SMatthias Ringwald                 hci_add_connection_flags_for_flipped_bd_addr(&packet[2], AUTH_FLAG_SEND_USER_CONFIRM_NEGATIVE_REPLY);
3821367aedc0SMatthias Ringwald                 // don't forward event to app
3822367aedc0SMatthias Ringwald                 hci_run();
3823367aedc0SMatthias Ringwald                 return;
3824367aedc0SMatthias Ringwald             }
3825dbe1a790S[email protected]             break;
3826dbe1a790S[email protected] 
3827dbe1a790S[email protected]         case HCI_EVENT_USER_PASSKEY_REQUEST:
3828367aedc0SMatthias Ringwald             // Pairing using Passkey results in MITM protection. If Level 4 is required, support for SC is validated on IO Cap Request
3829367aedc0SMatthias Ringwald             if (hci_stack->ssp_auto_accept){
38308daf94bcSMatthias Ringwald                 hci_add_connection_flags_for_flipped_bd_addr(&packet[2], AUTH_FLAG_SEND_USER_PASSKEY_REPLY);
3831367aedc0SMatthias Ringwald             };
38321d6b20aeS[email protected]             break;
38331849becdSMatthias Ringwald 
38343dce6128SMatthias Ringwald         case HCI_EVENT_MODE_CHANGE:
38353dce6128SMatthias Ringwald             handle = hci_event_mode_change_get_handle(packet);
38363dce6128SMatthias Ringwald             conn = hci_connection_for_handle(handle);
38373dce6128SMatthias Ringwald             if (!conn) break;
38383dce6128SMatthias Ringwald             conn->connection_mode = hci_event_mode_change_get_mode(packet);
38393dce6128SMatthias Ringwald             log_info("HCI_EVENT_MODE_CHANGE, handle 0x%04x, mode %u", handle, conn->connection_mode);
38403dce6128SMatthias Ringwald             break;
384135454696SMatthias Ringwald #endif
38421d6b20aeS[email protected] 
3843f0944df2S[email protected]         case HCI_EVENT_ENCRYPTION_CHANGE:
3844a355334eSMatthias Ringwald         case HCI_EVENT_ENCRYPTION_CHANGE_V2:
3845254b78eeSMatthias Ringwald             handle = hci_event_encryption_change_get_connection_handle(packet);
3846f0944df2S[email protected]             conn = hci_connection_for_handle(handle);
3847f0944df2S[email protected]             if (!conn) break;
3848db3c1f89SMatthias Ringwald             if (hci_event_encryption_change_get_status(packet) == ERROR_CODE_SUCCESS) {
3849254b78eeSMatthias Ringwald                 uint8_t encryption_enabled = hci_event_encryption_change_get_encryption_enabled(packet);
3850254b78eeSMatthias Ringwald                 if (encryption_enabled){
3851573897a0SMatthias Ringwald                     if (hci_is_le_connection(conn)){
3852573897a0SMatthias Ringwald                         // For LE, we accept connection as encrypted
38538daf94bcSMatthias Ringwald                         conn->authentication_flags |= AUTH_FLAG_CONNECTION_ENCRYPTED;
3854573897a0SMatthias Ringwald                     }
3855573897a0SMatthias Ringwald #ifdef ENABLE_CLASSIC
3856573897a0SMatthias Ringwald                     else {
3857fcaf38b9SMatthias Ringwald 
3858254b78eeSMatthias Ringwald                         // Detect Secure Connection -> Legacy Connection Downgrade Attack (BIAS)
385936c3546bSMatthias Ringwald                         bool sc_used_during_pairing = gap_secure_connection_for_link_key_type(conn->link_key_type);
3860254b78eeSMatthias Ringwald                         bool connected_uses_aes_ccm = encryption_enabled == 2;
3861edc1ac20SMatthias Ringwald                         if (hci_stack->secure_connections_active && sc_used_during_pairing && !connected_uses_aes_ccm){
3862254b78eeSMatthias Ringwald                             log_info("SC during pairing, but only E0 now -> abort");
38639ece71c2SMatthias Ringwald                             conn->bonding_flags |= BONDING_DISCONNECT_SECURITY_BLOCK;
3864254b78eeSMatthias Ringwald                             break;
3865254b78eeSMatthias Ringwald                         }
3866254b78eeSMatthias Ringwald 
3867aa2fe986SMatthias Ringwald                         // if AES-CCM is used, authentication used SC -> authentication was mutual and we can skip explicit authentication
3868aa2fe986SMatthias Ringwald                         if (connected_uses_aes_ccm){
3869aa2fe986SMatthias Ringwald                             conn->authentication_flags |= AUTH_FLAG_CONNECTION_AUTHENTICATED;
3870aa2fe986SMatthias Ringwald                         }
3871aa2fe986SMatthias Ringwald 
3872aa2fe986SMatthias Ringwald #ifdef ENABLE_TESTING_SUPPORT
3873aa2fe986SMatthias Ringwald                         // work around for issue with PTS dongle
3874aa2fe986SMatthias Ringwald                         conn->authentication_flags |= AUTH_FLAG_CONNECTION_AUTHENTICATED;
3875aa2fe986SMatthias Ringwald #endif
3876a355334eSMatthias Ringwald                         // validate encryption key size
3877a355334eSMatthias Ringwald                         if (hci_event_packet_get_type(packet) == HCI_EVENT_ENCRYPTION_CHANGE_V2) {
3878a355334eSMatthias Ringwald                             uint8_t encryption_key_size = hci_event_encryption_change_v2_get_encryption_key_size(packet);
3879a355334eSMatthias Ringwald                             // already got encryption key size
3880a355334eSMatthias Ringwald                             hci_handle_read_encryption_key_size_complete(conn, encryption_key_size);
3881a355334eSMatthias Ringwald                         } else {
38821ffa425cSMatthias Ringwald                             if (hci_command_supported(SUPPORTED_HCI_COMMAND_READ_ENCRYPTION_KEY_SIZE)) {
38836e058d3fSMatthias Ringwald                                 // For Classic, we need to validate encryption key size first, if possible (== supported by Controller)
3884573897a0SMatthias Ringwald                                 conn->bonding_flags |= BONDING_SEND_READ_ENCRYPTION_KEY_SIZE;
38856e058d3fSMatthias Ringwald                             } else {
38866e058d3fSMatthias Ringwald                                 // if not, pretend everything is perfect
38879866fdc7SMatthias Ringwald                                 hci_handle_read_encryption_key_size_complete(conn, 16);
38886e058d3fSMatthias Ringwald                             }
3889573897a0SMatthias Ringwald                         }
3890a355334eSMatthias Ringwald                     }
3891573897a0SMatthias Ringwald #endif
3892f0944df2S[email protected]                 } else {
38938daf94bcSMatthias Ringwald                     conn->authentication_flags &= ~AUTH_FLAG_CONNECTION_ENCRYPTED;
3894f0944df2S[email protected]                 }
38955999ee11SMatthias Ringwald             } else {
38965999ee11SMatthias Ringwald                 uint8_t status = hci_event_encryption_change_get_status(packet);
38975999ee11SMatthias Ringwald                 if ((conn->bonding_flags & BONDING_DEDICATED) != 0){
38985999ee11SMatthias Ringwald                     conn->bonding_flags &= ~BONDING_DEDICATED;
38995999ee11SMatthias Ringwald                     conn->bonding_flags |= BONDING_DISCONNECT_DEDICATED_DONE;
39005999ee11SMatthias Ringwald                     conn->bonding_status = status;
39015999ee11SMatthias Ringwald                 }
3902ad83dc6aS[email protected]             }
3903573897a0SMatthias Ringwald 
3904f0944df2S[email protected]             break;
3905f0944df2S[email protected] 
390635454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
39071eb2563eS[email protected]         case HCI_EVENT_AUTHENTICATION_COMPLETE_EVENT:
3908abdad579SMatthias Ringwald             handle = hci_event_authentication_complete_get_connection_handle(packet);
39091eb2563eS[email protected]             conn = hci_connection_for_handle(handle);
39101eb2563eS[email protected]             if (!conn) break;
3911ad83dc6aS[email protected] 
3912dbd5dcc3SMatthias Ringwald             // clear authentication active flag
3913dbd5dcc3SMatthias Ringwald             conn->bonding_flags &= ~BONDING_SENT_AUTHENTICATE_REQUEST;
39141714cbbdSMatthias Ringwald             hci_pairing_complete(conn, hci_event_authentication_complete_get_status(packet));
3915dbd5dcc3SMatthias Ringwald 
3916abdad579SMatthias Ringwald             // authenticated only if auth status == 0
3917abdad579SMatthias Ringwald             if (hci_event_authentication_complete_get_status(packet) == 0){
3918abdad579SMatthias Ringwald                 // authenticated
39198daf94bcSMatthias Ringwald                 conn->authentication_flags |= AUTH_FLAG_CONNECTION_AUTHENTICATED;
3920abdad579SMatthias Ringwald 
3921131ef17aSMatthias Ringwald                 // If not already encrypted, start encryption
39228daf94bcSMatthias Ringwald                 if ((conn->authentication_flags & AUTH_FLAG_CONNECTION_ENCRYPTED) == 0){
39231eb2563eS[email protected]                     conn->bonding_flags |= BONDING_SEND_ENCRYPTION_REQUEST;
3924ad83dc6aS[email protected]                     break;
3925ad83dc6aS[email protected]                 }
3926abdad579SMatthias Ringwald             }
3927abdad579SMatthias Ringwald 
39284aa2f135SMatthias Ringwald             // emit updated security level (will be 0 if not authenticated)
39294aa2f135SMatthias Ringwald             hci_handle_mutual_authentication_completed(conn);
39301eb2563eS[email protected]             break;
39311714cbbdSMatthias Ringwald 
39321714cbbdSMatthias Ringwald         case HCI_EVENT_SIMPLE_PAIRING_COMPLETE:
39331714cbbdSMatthias Ringwald             hci_event_simple_pairing_complete_get_bd_addr(packet, addr);
39341714cbbdSMatthias Ringwald             conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
39351714cbbdSMatthias Ringwald             if (!conn) break;
39361714cbbdSMatthias Ringwald 
3937aa2fe986SMatthias Ringwald             // treat successfully paired connection as authenticated
3938aa2fe986SMatthias Ringwald             if (hci_event_simple_pairing_complete_get_status(packet) == ERROR_CODE_SUCCESS){
3939f3aafff1SMatthias Ringwald                 conn->authentication_flags |= AUTH_FLAG_CONNECTION_AUTHENTICATED;
3940aa2fe986SMatthias Ringwald             }
3941aa2fe986SMatthias Ringwald 
39421714cbbdSMatthias Ringwald             hci_pairing_complete(conn, hci_event_simple_pairing_complete_get_status(packet));
39431714cbbdSMatthias Ringwald             break;
394435454696SMatthias Ringwald #endif
394534d2123cS[email protected] 
394686805605S[email protected]         // HCI_EVENT_DISCONNECTION_COMPLETE
3947ccda6e14S[email protected]         // has been split, to first notify stack before shutting connection down
3948ccda6e14S[email protected]         // see end of function, too.
3949a4f30ec0S[email protected]         case HCI_EVENT_DISCONNECTION_COMPLETE:
3950a4f30ec0S[email protected]             if (packet[2]) break;   // status != 0
3951f8fbdce0SMatthias Ringwald             handle = little_endian_read_16(packet, 3);
395281d2bdb2SMatthias Ringwald             // drop outgoing ACL fragments if it is for closed connection and release buffer if tx not active
39534ea43905SMatthias Ringwald             if (hci_stack->acl_fragmentation_total_size > 0u) {
3954c6a37cfdSMatthias Ringwald                 if (handle == READ_ACL_CONNECTION_HANDLE(hci_stack->hci_packet_buffer)){
39554ea43905SMatthias Ringwald                     int release_buffer = hci_stack->acl_fragmentation_tx_active == 0u;
395681d2bdb2SMatthias Ringwald                     log_info("drop fragmented ACL data for closed connection, release buffer %u", release_buffer);
3957c6a37cfdSMatthias Ringwald                     hci_stack->acl_fragmentation_total_size = 0;
3958c6a37cfdSMatthias Ringwald                     hci_stack->acl_fragmentation_pos = 0;
395981d2bdb2SMatthias Ringwald                     if (release_buffer){
396081d2bdb2SMatthias Ringwald                         hci_release_packet_buffer();
396181d2bdb2SMatthias Ringwald                     }
3962c6a37cfdSMatthias Ringwald                 }
3963c6a37cfdSMatthias Ringwald             }
396435454696SMatthias Ringwald 
39654ae8623eSMatthias Ringwald #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
3966098c2716SMatthias Ringwald             // drop outgoing ISO fragments if it is for closed connection and release buffer if tx not active
3967098c2716SMatthias Ringwald             if (hci_stack->iso_fragmentation_total_size > 0u) {
3968098c2716SMatthias Ringwald                 if (handle == READ_ISO_CONNECTION_HANDLE(hci_stack->hci_packet_buffer)){
3969098c2716SMatthias Ringwald                     int release_buffer = hci_stack->iso_fragmentation_tx_active == 0u;
3970098c2716SMatthias Ringwald                     log_info("drop fragmented ISO data for closed connection, release buffer %u", release_buffer);
3971098c2716SMatthias Ringwald                     hci_stack->iso_fragmentation_total_size = 0;
3972098c2716SMatthias Ringwald                     hci_stack->iso_fragmentation_pos = 0;
3973098c2716SMatthias Ringwald                     if (release_buffer){
3974098c2716SMatthias Ringwald                         hci_release_packet_buffer();
3975098c2716SMatthias Ringwald                     }
3976098c2716SMatthias Ringwald                 }
3977098c2716SMatthias Ringwald             }
3978098c2716SMatthias Ringwald 
39796fd1d2c8SMatthias Ringwald             // finalize iso stream for CIS handle
398015a15be3SMatthias Ringwald             iso_stream = hci_iso_stream_for_con_handle(handle);
39814ae8623eSMatthias Ringwald             if (iso_stream != NULL){
39824ae8623eSMatthias Ringwald                 hci_iso_stream_finalize(iso_stream);
39834ae8623eSMatthias Ringwald                 break;
39844ae8623eSMatthias Ringwald             }
39856fd1d2c8SMatthias Ringwald 
39866fd1d2c8SMatthias Ringwald             // finalize iso stream(s) for ACL handle
39876fd1d2c8SMatthias Ringwald             btstack_linked_list_iterator_t it;
39886fd1d2c8SMatthias Ringwald             btstack_linked_list_iterator_init(&it, &hci_stack->iso_streams);
39896fd1d2c8SMatthias Ringwald             while (btstack_linked_list_iterator_has_next(&it)){
39906fd1d2c8SMatthias Ringwald                 hci_iso_stream_t * iso_stream = (hci_iso_stream_t *) btstack_linked_list_iterator_next(&it);
39916fd1d2c8SMatthias Ringwald                 if (iso_stream->acl_handle == handle ) {
39926fd1d2c8SMatthias Ringwald                     hci_iso_stream_finalize(iso_stream);
39936fd1d2c8SMatthias Ringwald                 }
39946fd1d2c8SMatthias Ringwald             }
39954ae8623eSMatthias Ringwald #endif
39964ae8623eSMatthias Ringwald 
3997c6a37cfdSMatthias Ringwald             conn = hci_connection_for_handle(handle);
3998c6a37cfdSMatthias Ringwald             if (!conn) break;
39991714cbbdSMatthias Ringwald #ifdef ENABLE_CLASSIC
40001714cbbdSMatthias Ringwald             // pairing failed if it was ongoing
40011714cbbdSMatthias Ringwald             hci_pairing_complete(conn, ERROR_CODE_REMOTE_USER_TERMINATED_CONNECTION);
40021714cbbdSMatthias Ringwald #endif
4003046ec007SMatthias Ringwald 
4004046ec007SMatthias Ringwald             // emit dedicatd bonding event
4005046ec007SMatthias Ringwald             if (conn->bonding_flags & BONDING_EMIT_COMPLETE_ON_DISCONNECT){
4006046ec007SMatthias Ringwald                 hci_emit_dedicated_bonding_result(conn->address, conn->bonding_status);
4007046ec007SMatthias Ringwald             }
4008046ec007SMatthias Ringwald 
4009459d27b9SMatthias Ringwald             // mark connection for shutdown, stop timers, reset state
4010459d27b9SMatthias Ringwald             conn->state = RECEIVED_DISCONNECTION_COMPLETE;
4011459d27b9SMatthias Ringwald             hci_connection_stop_timer(conn);
4012459d27b9SMatthias Ringwald             hci_connection_init(conn);
4013459d27b9SMatthias Ringwald 
401435454696SMatthias Ringwald #ifdef ENABLE_BLE
4015d70217a2SMatthias Ringwald #ifdef ENABLE_LE_PERIPHERAL
4016046ec007SMatthias Ringwald             // re-enable advertisements for le connections if active
40172b6ab3e6SMatthias Ringwald             if (hci_is_le_connection(conn)){
4018bbc366e6SMatthias Ringwald                 hci_update_advertisements_enabled_for_current_roles();
40199a2e4658SMatthias Ringwald             }
402035454696SMatthias Ringwald #endif
4021d70217a2SMatthias Ringwald #endif
4022ccda6e14S[email protected]             break;
40236772a24cSmatthias.ringwald 
4024c68bdf90Smatthias.ringwald         case HCI_EVENT_HARDWARE_ERROR:
4025313e5f9cSMatthias Ringwald             log_error("Hardware Error: 0x%02x", packet[2]);
4026d23838ecSMatthias Ringwald             if (hci_stack->hardware_error_callback){
4027c2e1fa60SMatthias Ringwald                 (*hci_stack->hardware_error_callback)(packet[2]);
40287586ee35S[email protected]             } else {
40297586ee35S[email protected]                 // if no special requests, just reboot stack
40307586ee35S[email protected]                 hci_power_control_off();
40317586ee35S[email protected]                 hci_power_control_on();
4032c68bdf90Smatthias.ringwald             }
4033c68bdf90Smatthias.ringwald             break;
4034c68bdf90Smatthias.ringwald 
40350e6f3837SMatthias Ringwald #ifdef ENABLE_CLASSIC
40365cf766e8SMatthias Ringwald         case HCI_EVENT_ROLE_CHANGE:
40375cf766e8SMatthias Ringwald             if (packet[2]) break;   // status != 0
4038c4c88f1bSJakob Krantz             reverse_bd_addr(&packet[3], addr);
4039f16129ceSMatthias Ringwald             addr_type = BD_ADDR_TYPE_ACL;
4040c4c88f1bSJakob Krantz             conn = hci_connection_for_bd_addr_and_type(addr, addr_type);
4041c4c88f1bSJakob Krantz             if (!conn) break;
404288f925b1SMatthias Ringwald             conn->role = (hci_role_t) packet[9];
40435cf766e8SMatthias Ringwald             break;
40440e6f3837SMatthias Ringwald #endif
40455cf766e8SMatthias Ringwald 
404663fa3374SMatthias Ringwald         case HCI_EVENT_TRANSPORT_PACKET_SENT:
4047098c2716SMatthias Ringwald             // release packet buffer only for asynchronous transport and if there are not further fragments
40484fa24b5fS[email protected]             if (hci_transport_synchronous()) {
404963fa3374SMatthias Ringwald                 log_error("Synchronous HCI Transport shouldn't send HCI_EVENT_TRANSPORT_PACKET_SENT");
40504fa24b5fS[email protected]                 return; // instead of break: to avoid re-entering hci_run()
40514fa24b5fS[email protected]             }
405281d2bdb2SMatthias Ringwald             hci_stack->acl_fragmentation_tx_active = 0;
4053098c2716SMatthias Ringwald #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
4054098c2716SMatthias Ringwald             hci_stack->iso_fragmentation_tx_active = 0;
4055098c2716SMatthias Ringwald             if (hci_stack->iso_fragmentation_total_size) break;
4056098c2716SMatthias Ringwald #endif
4057d051460cS[email protected]             if (hci_stack->acl_fragmentation_total_size) break;
4058d051460cS[email protected]             hci_release_packet_buffer();
4059701e3307SMatthias Ringwald 
40605ade6657SMatthias Ringwald #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
40615ade6657SMatthias Ringwald             hci_iso_notify_can_send_now();
40625ade6657SMatthias Ringwald #endif
406363fa3374SMatthias Ringwald             // L2CAP receives this event via the hci_emit_event below
406463fa3374SMatthias Ringwald 
406535454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
406663fa3374SMatthias Ringwald             // For SCO, we do the can_send_now_check here
4067701e3307SMatthias Ringwald             hci_notify_if_sco_can_send_now();
406835454696SMatthias Ringwald #endif
40696b4af23dS[email protected]             break;
40706b4af23dS[email protected] 
407135454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
407263fa3374SMatthias Ringwald         case HCI_EVENT_SCO_CAN_SEND_NOW:
407363fa3374SMatthias Ringwald             // For SCO, we do the can_send_now_check here
40741972f31fSMatthias Ringwald             hci_stack->sco_can_send_now = true;
407563fa3374SMatthias Ringwald             hci_notify_if_sco_can_send_now();
407663fa3374SMatthias Ringwald             return;
40771cfb383eSMatthias Ringwald 
40781cfb383eSMatthias Ringwald         // explode inquriy results for easier consumption
40791cfb383eSMatthias Ringwald         case HCI_EVENT_INQUIRY_RESULT:
40801cfb383eSMatthias Ringwald         case HCI_EVENT_INQUIRY_RESULT_WITH_RSSI:
40811cfb383eSMatthias Ringwald         case HCI_EVENT_EXTENDED_INQUIRY_RESPONSE:
40829784dac1SMatthias Ringwald             gap_inquiry_explode(packet, size);
40831cfb383eSMatthias Ringwald             break;
408435454696SMatthias Ringwald #endif
408563fa3374SMatthias Ringwald 
4086a9a4c409SMatthias Ringwald #ifdef ENABLE_BLE
40875909f7f2Smatthias.ringwald         case HCI_EVENT_LE_META:
40885909f7f2Smatthias.ringwald             switch (packet[2]){
4089d70217a2SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
409057c9da5bS[email protected]                 case HCI_SUBEVENT_LE_ADVERTISING_REPORT:
40916fab74dbSMatthias Ringwald                     if (!hci_stack->le_scanning_enabled) break;
409257c9da5bS[email protected]                     le_handle_advertisement_report(packet, size);
40937bdc6798S[email protected]                     break;
4094a0698cb4SMatthias Ringwald #ifdef ENABLE_LE_EXTENDED_ADVERTISING
4095a0698cb4SMatthias Ringwald                 case HCI_SUBEVENT_LE_EXTENDED_ADVERTISING_REPORT:
4096a0698cb4SMatthias Ringwald                     if (!hci_stack->le_scanning_enabled) break;
4097a0698cb4SMatthias Ringwald                     le_handle_extended_advertisement_report(packet, size);
4098a0698cb4SMatthias Ringwald                     break;
4099ce56b945SMatthias Ringwald                 case HCI_SUBEVENT_LE_PERIODIC_ADVERTISING_SYNC_ESTABLISHMENT:
4100ce56b945SMatthias Ringwald                     hci_stack->le_periodic_sync_request = LE_CONNECTING_IDLE;
4101ce56b945SMatthias Ringwald                     hci_stack->le_periodic_sync_state = LE_CONNECTING_IDLE;
4102ce56b945SMatthias Ringwald                     break;
4103a0698cb4SMatthias Ringwald #endif
4104d70217a2SMatthias Ringwald #endif
41055909f7f2Smatthias.ringwald                 case HCI_SUBEVENT_LE_CONNECTION_COMPLETE:
410660fb273dSMatthias Ringwald                 case HCI_SUBEVENT_LE_ENHANCED_CONNECTION_COMPLETE_V1:
410760fb273dSMatthias Ringwald                 case HCI_SUBEVENT_LE_ENHANCED_CONNECTION_COMPLETE_V2:
41080ce3f217SMatthias Ringwald 					event_handle_le_connection_complete(packet);
41095909f7f2Smatthias.ringwald                     break;
41105909f7f2Smatthias.ringwald 
4111f8fbdce0SMatthias Ringwald                 // log_info("LE buffer size: %u, count %u", little_endian_read_16(packet,6), packet[8]);
4112c9db5c21SMilanka Ringwald                 case HCI_SUBEVENT_LE_CONNECTION_UPDATE_COMPLETE:
4113c9db5c21SMilanka Ringwald                     handle = hci_subevent_le_connection_update_complete_get_connection_handle(packet);
4114c9db5c21SMilanka Ringwald                     conn = hci_connection_for_handle(handle);
4115c9db5c21SMilanka Ringwald                     if (!conn) break;
4116c9db5c21SMilanka Ringwald                     conn->le_connection_interval = hci_subevent_le_connection_update_complete_get_conn_interval(packet);
4117c9db5c21SMilanka Ringwald                     break;
411865a46ef3S[email protected] 
411973cd8a2aSMatthias Ringwald                 case HCI_SUBEVENT_LE_REMOTE_CONNECTION_PARAMETER_REQUEST:
412073cd8a2aSMatthias Ringwald                     // connection
412173cd8a2aSMatthias Ringwald                     handle = hci_subevent_le_remote_connection_parameter_request_get_connection_handle(packet);
412273cd8a2aSMatthias Ringwald                     conn = hci_connection_for_handle(handle);
412373cd8a2aSMatthias Ringwald                     if (conn) {
412473cd8a2aSMatthias Ringwald                         // read arguments
412573cd8a2aSMatthias Ringwald                         uint16_t le_conn_interval_min   = hci_subevent_le_remote_connection_parameter_request_get_interval_min(packet);
412673cd8a2aSMatthias Ringwald                         uint16_t le_conn_interval_max   = hci_subevent_le_remote_connection_parameter_request_get_interval_max(packet);
412773cd8a2aSMatthias Ringwald                         uint16_t le_conn_latency        = hci_subevent_le_remote_connection_parameter_request_get_latency(packet);
412873cd8a2aSMatthias Ringwald                         uint16_t le_supervision_timeout = hci_subevent_le_remote_connection_parameter_request_get_timeout(packet);
412973cd8a2aSMatthias Ringwald 
413073cd8a2aSMatthias Ringwald                         // validate against current connection parameter range
413173cd8a2aSMatthias Ringwald                         le_connection_parameter_range_t existing_range;
413273cd8a2aSMatthias Ringwald                         gap_get_connection_parameter_range(&existing_range);
413373cd8a2aSMatthias 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);
413473cd8a2aSMatthias Ringwald                         if (update_parameter){
413573cd8a2aSMatthias Ringwald                             conn->le_con_parameter_update_state = CON_PARAMETER_UPDATE_REPLY;
413673cd8a2aSMatthias Ringwald                             conn->le_conn_interval_min = le_conn_interval_min;
413773cd8a2aSMatthias Ringwald                             conn->le_conn_interval_max = le_conn_interval_max;
413873cd8a2aSMatthias Ringwald                             conn->le_conn_latency = le_conn_latency;
413973cd8a2aSMatthias Ringwald                             conn->le_supervision_timeout = le_supervision_timeout;
414073cd8a2aSMatthias Ringwald                         } else {
4141c3898ca4SMatthias Ringwald                             conn->le_con_parameter_update_state = CON_PARAMETER_UPDATE_NEGATIVE_REPLY;
414273cd8a2aSMatthias Ringwald                         }
414373cd8a2aSMatthias Ringwald                     }
414473cd8a2aSMatthias Ringwald                     break;
41450f3b27c5SMatthias Ringwald #ifdef ENABLE_LE_LIMIT_ACL_FRAGMENT_BY_MAX_OCTETS
41460f3b27c5SMatthias Ringwald                 case HCI_SUBEVENT_LE_DATA_LENGTH_CHANGE:
41470f3b27c5SMatthias Ringwald                     handle = hci_subevent_le_data_length_change_get_connection_handle(packet);
41480f3b27c5SMatthias Ringwald                     conn = hci_connection_for_handle(handle);
41490f3b27c5SMatthias Ringwald                     if (conn) {
41500f3b27c5SMatthias Ringwald                         conn->le_max_tx_octets = hci_subevent_le_data_length_change_get_max_tx_octets(packet);
41510f3b27c5SMatthias Ringwald                     }
41520f3b27c5SMatthias Ringwald                     break;
41530f3b27c5SMatthias Ringwald #endif
41544ae8623eSMatthias Ringwald #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
41556fd1d2c8SMatthias Ringwald                 case HCI_SUBEVENT_LE_CIS_REQUEST:
41566fd1d2c8SMatthias Ringwald                     // incoming CIS request, allocate iso stream object and cache metadata
41576fd1d2c8SMatthias Ringwald                     iso_stream = hci_iso_stream_create(HCI_ISO_TYPE_CIS, HCI_ISO_STREAM_W4_USER,
41586fd1d2c8SMatthias Ringwald                                                        hci_subevent_le_cis_request_get_cig_id(packet),
41596fd1d2c8SMatthias Ringwald                                                        hci_subevent_le_cis_request_get_cis_id(packet));
41606fd1d2c8SMatthias Ringwald                     // if there's no memory, gap_cis_accept/gap_cis_reject will fail
41616fd1d2c8SMatthias Ringwald                     if (iso_stream != NULL){
41626fd1d2c8SMatthias Ringwald                         iso_stream->cis_handle = hci_subevent_le_cis_request_get_cis_connection_handle(packet);
41636fd1d2c8SMatthias Ringwald                         iso_stream->acl_handle = hci_subevent_le_cis_request_get_acl_connection_handle(packet);
41646fd1d2c8SMatthias Ringwald                     }
41656fd1d2c8SMatthias Ringwald                     break;
41664ae8623eSMatthias Ringwald                 case HCI_SUBEVENT_LE_CIS_ESTABLISHED:
41678e58e4f7SMatthias Ringwald                     if (hci_stack->iso_active_operation_type == HCI_ISO_TYPE_CIS){
41684ae8623eSMatthias Ringwald                         handle = hci_subevent_le_cis_established_get_connection_handle(packet);
41694ae8623eSMatthias Ringwald                         uint8_t status = hci_subevent_le_cis_established_get_status(packet);
41708e58e4f7SMatthias Ringwald                         iso_stream = hci_iso_stream_for_con_handle(handle);
41718e58e4f7SMatthias Ringwald                         btstack_assert(iso_stream != NULL);
417226b93350SMatthias Ringwald                         // track SDU
417326b93350SMatthias Ringwald                         iso_stream->max_sdu_c_to_p = hci_subevent_le_cis_established_get_max_pdu_c_to_p(packet);
417426b93350SMatthias Ringwald                         iso_stream->max_sdu_p_to_c = hci_subevent_le_cis_established_get_max_pdu_p_to_c(packet);
417526b93350SMatthias Ringwald                         if (hci_stack->iso_active_operation_group_id == HCI_ISO_GROUP_ID_SINGLE_CIS){
417626b93350SMatthias Ringwald                             // CIS Accept by Peripheral
417726b93350SMatthias Ringwald                             if (status == ERROR_CODE_SUCCESS){
417826b93350SMatthias Ringwald                                 if (iso_stream->max_sdu_p_to_c > 0){
417926b93350SMatthias Ringwald                                     // we're peripheral and we will send data
418026b93350SMatthias Ringwald                                     iso_stream->state = HCI_ISO_STREAM_STATE_W2_SETUP_ISO_INPUT;
418126b93350SMatthias Ringwald                                 } else {
418226b93350SMatthias Ringwald                                     // we're peripheral and we will only receive data
418326b93350SMatthias Ringwald                                     iso_stream->state = HCI_ISO_STREAM_STATE_W2_SETUP_ISO_OUTPUT;
418426b93350SMatthias Ringwald                                 }
418526b93350SMatthias Ringwald                             } else {
418614045fdbSMatthias Ringwald                                 hci_cis_handle_created(iso_stream, status);
418726b93350SMatthias Ringwald                             }
418826b93350SMatthias Ringwald                             hci_stack->iso_active_operation_type = HCI_ISO_TYPE_INVALID;
418926b93350SMatthias Ringwald                         } else {
419026b93350SMatthias Ringwald                             // CIG Setup by Central
419126b93350SMatthias Ringwald                             le_audio_cig_t * cig = hci_cig_for_id(hci_stack->iso_active_operation_group_id);
419226b93350SMatthias Ringwald                             btstack_assert(cig != NULL);
419326b93350SMatthias Ringwald                             // update iso stream state
41944ae8623eSMatthias Ringwald                             if (status == ERROR_CODE_SUCCESS){
41954ae8623eSMatthias Ringwald                                 iso_stream->state = HCI_ISO_STREAM_STATE_ESTABLISHED;
41964ae8623eSMatthias Ringwald                             } else {
41978e58e4f7SMatthias Ringwald                                 iso_stream->state = HCI_ISO_STREAM_STATE_IDLE;
41984ae8623eSMatthias Ringwald                             }
41998e58e4f7SMatthias Ringwald                             // update cig state
4200f06bb90fSMatthias Ringwald                             uint8_t i;
4201f06bb90fSMatthias Ringwald                             for (i=0;i<cig->num_cis;i++){
4202f06bb90fSMatthias Ringwald                                 if (cig->cis_con_handles[i] == handle){
42033abcd16cSMatthias Ringwald                                     cig->cis_setup_active[i] = false;
4204f9306a1aSMatthias Ringwald                                     if (status == ERROR_CODE_SUCCESS){
4205f9306a1aSMatthias Ringwald                                         cig->cis_established[i] = true;
4206f9306a1aSMatthias Ringwald                                     } else {
420714045fdbSMatthias Ringwald                                         hci_cis_handle_created(iso_stream, status);
4208f06bb90fSMatthias Ringwald                                     }
4209f06bb90fSMatthias Ringwald                                 }
4210f06bb90fSMatthias Ringwald                             }
42118e58e4f7SMatthias Ringwald 
42128e58e4f7SMatthias Ringwald                             // trigger iso path setup if complete
42130f0ba168SMatthias Ringwald                             bool cis_setup_active = false;
4214f9306a1aSMatthias Ringwald                             for (i=0;i<cig->num_cis;i++){
42150f0ba168SMatthias Ringwald                                 cis_setup_active |= cig->cis_setup_active[i];
4216f9306a1aSMatthias Ringwald                             }
42170f0ba168SMatthias Ringwald                             if (cis_setup_active == false){
4218f9306a1aSMatthias Ringwald                                 cig->state_vars.next_cis = 0;
4219f9306a1aSMatthias Ringwald                                 cig->state = LE_AUDIO_CIG_STATE_SETUP_ISO_PATH;
422026b93350SMatthias Ringwald                                 hci_stack->iso_active_operation_type = HCI_ISO_TYPE_INVALID;
422126b93350SMatthias Ringwald                             }
4222f06bb90fSMatthias Ringwald                         }
42234ae8623eSMatthias Ringwald                     }
42247aa35f6aSMatthias Ringwald                     break;
42257aa35f6aSMatthias Ringwald                 case HCI_SUBEVENT_LE_CREATE_BIG_COMPLETE:
422626b93350SMatthias Ringwald                     hci_stack->iso_active_operation_type = HCI_ISO_TYPE_INVALID;
42277aa35f6aSMatthias Ringwald                     big = hci_big_for_handle(packet[4]);
42287aa35f6aSMatthias Ringwald                     if (big != NULL){
42297aa35f6aSMatthias Ringwald                         uint8_t status = packet[3];
42307aa35f6aSMatthias Ringwald                         if (status == ERROR_CODE_SUCCESS){
42317aa35f6aSMatthias Ringwald                             // store bis_con_handles and trigger iso path setup
42327aa35f6aSMatthias Ringwald                             uint8_t num_bis = btstack_min(MAX_NR_BIS, packet[20]);
42337aa35f6aSMatthias Ringwald                             uint8_t i;
42347aa35f6aSMatthias Ringwald                             for (i=0;i<num_bis;i++){
4235fb16346aSMatthias Ringwald                                 hci_con_handle_t bis_handle = (hci_con_handle_t) little_endian_read_16(packet, 21 + (2 * i));
4236fb16346aSMatthias Ringwald                                 big->bis_con_handles[i] = bis_handle;
4237fb16346aSMatthias Ringwald                                 // assign bis handle
4238fb16346aSMatthias Ringwald                                 btstack_linked_list_iterator_t it;
4239fb16346aSMatthias Ringwald                                 btstack_linked_list_iterator_init(&it, &hci_stack->iso_streams);
4240fb16346aSMatthias Ringwald                                 while (btstack_linked_list_iterator_has_next(&it)){
4241fb16346aSMatthias Ringwald                                     hci_iso_stream_t * iso_stream = (hci_iso_stream_t *) btstack_linked_list_iterator_next(&it);
4242fb16346aSMatthias Ringwald                                     if ((iso_stream->state == HCI_ISO_STREAM_STATE_REQUESTED ) &&
42438d72db10SMatthias Ringwald                                         (iso_stream->group_id == big->big_handle)){
4244969d876aSMatthias Ringwald                                         iso_stream->cis_handle = bis_handle;
4245fb16346aSMatthias Ringwald                                         iso_stream->state = HCI_ISO_STREAM_STATE_ESTABLISHED;
4246cd1139aaSMatthias Ringwald                                         break;
4247fb16346aSMatthias Ringwald                                     }
4248fb16346aSMatthias Ringwald                                 }
42497aa35f6aSMatthias Ringwald                             }
42502a6c0f82SMatthias Ringwald                             if (big->state == LE_AUDIO_BIG_STATE_W4_ESTABLISHED) {
42517aa35f6aSMatthias Ringwald                                 big->state = LE_AUDIO_BIG_STATE_SETUP_ISO_PATH;
42527aa35f6aSMatthias Ringwald                                 big->state_vars.next_bis = 0;
42532a6c0f82SMatthias Ringwald                             }
42547aa35f6aSMatthias Ringwald                         } else {
42552a6c0f82SMatthias Ringwald                             // create BIG failed or has been stopped by us
4256778463d0SMatthias Ringwald                             hci_iso_stream_finalize_by_type_and_group_id(HCI_ISO_TYPE_BIS, big->big_handle);
42577aa35f6aSMatthias Ringwald                             btstack_linked_list_remove(&hci_stack->le_audio_bigs, (btstack_linked_item_t *) big);
42582a6c0f82SMatthias Ringwald                             if (big->state == LE_AUDIO_BIG_STATE_W4_ESTABLISHED){
42597aa35f6aSMatthias Ringwald                                 hci_emit_big_created(big, status);
42602a6c0f82SMatthias Ringwald                             } else {
42612a6c0f82SMatthias Ringwald                                 hci_emit_big_terminated(big);
42622a6c0f82SMatthias Ringwald                             }
42637aa35f6aSMatthias Ringwald                         }
42647aa35f6aSMatthias Ringwald                     }
42657aa35f6aSMatthias Ringwald                     break;
42667aa35f6aSMatthias Ringwald                 case HCI_SUBEVENT_LE_TERMINATE_BIG_COMPLETE:
4267c45ca112SMatthias Ringwald                     hci_stack->iso_active_operation_type = HCI_ISO_TYPE_INVALID;
42687aa35f6aSMatthias Ringwald                     big = hci_big_for_handle(hci_subevent_le_terminate_big_complete_get_big_handle(packet));
42697aa35f6aSMatthias Ringwald                     if (big != NULL){
4270fb16346aSMatthias Ringwald                         // finalize associated ISO streams
4271fb16346aSMatthias Ringwald                         btstack_linked_list_iterator_t it;
4272fb16346aSMatthias Ringwald                         btstack_linked_list_iterator_init(&it, &hci_stack->iso_streams);
4273fb16346aSMatthias Ringwald                         while (btstack_linked_list_iterator_has_next(&it)){
4274fb16346aSMatthias Ringwald                             hci_iso_stream_t * iso_stream = (hci_iso_stream_t *) btstack_linked_list_iterator_next(&it);
42758d72db10SMatthias Ringwald                             if (iso_stream->group_id == big->big_handle){
4276969d876aSMatthias Ringwald                                 log_info("BIG Terminated, big_handle 0x%02x, con handle 0x%04x", iso_stream->group_id, iso_stream->cis_handle);
4277fb16346aSMatthias Ringwald                                 btstack_linked_list_iterator_remove(&it);
4278fb16346aSMatthias Ringwald                                 btstack_memory_hci_iso_stream_free(iso_stream);
4279fb16346aSMatthias Ringwald                             }
4280fb16346aSMatthias Ringwald                         }
42817aa35f6aSMatthias Ringwald                         btstack_linked_list_remove(&hci_stack->le_audio_bigs, (btstack_linked_item_t *) big);
42827aa35f6aSMatthias Ringwald                         switch (big->state){
42837aa35f6aSMatthias Ringwald                             case LE_AUDIO_BIG_STATE_W4_TERMINATED_AFTER_SETUP_FAILED:
42847aa35f6aSMatthias Ringwald                                 hci_emit_big_created(big, big->state_vars.status);
42857aa35f6aSMatthias Ringwald                                 break;
42867aa35f6aSMatthias Ringwald                             default:
42877aa35f6aSMatthias Ringwald                                 hci_emit_big_terminated(big);
42887aa35f6aSMatthias Ringwald                                 break;
42897aa35f6aSMatthias Ringwald                         }
42907aa35f6aSMatthias Ringwald                     }
42917aa35f6aSMatthias Ringwald                     break;
42922a6c0f82SMatthias Ringwald                 case HCI_SUBEVENT_LE_BIG_SYNC_ESTABLISHED:
4293c45ca112SMatthias Ringwald                     hci_stack->iso_active_operation_type = HCI_ISO_TYPE_INVALID;
42942a6c0f82SMatthias Ringwald                     big_sync = hci_big_sync_for_handle(packet[4]);
42952a6c0f82SMatthias Ringwald                     if (big_sync != NULL){
42962a6c0f82SMatthias Ringwald                         uint8_t status = packet[3];
4297d04a9afcSMatthias Ringwald                         uint8_t big_handle = packet[4];
42982a6c0f82SMatthias Ringwald                         if (status == ERROR_CODE_SUCCESS){
42992a6c0f82SMatthias Ringwald                             // store bis_con_handles and trigger iso path setup
43002a6c0f82SMatthias Ringwald                             uint8_t num_bis = btstack_min(MAX_NR_BIS, packet[16]);
43012a6c0f82SMatthias Ringwald                             uint8_t i;
43022a6c0f82SMatthias Ringwald                             for (i=0;i<num_bis;i++){
43032a6c0f82SMatthias Ringwald                                 big_sync->bis_con_handles[i] = little_endian_read_16(packet, 17 + (2 * i));
43042a6c0f82SMatthias Ringwald                             }
43052a6c0f82SMatthias Ringwald                             if (big_sync->state == LE_AUDIO_BIG_STATE_W4_ESTABLISHED) {
43062a6c0f82SMatthias Ringwald                                 // trigger iso path setup
43072a6c0f82SMatthias Ringwald                                 big_sync->state = LE_AUDIO_BIG_STATE_SETUP_ISO_PATH;
43082a6c0f82SMatthias Ringwald                                 big_sync->state_vars.next_bis = 0;
43092a6c0f82SMatthias Ringwald                             }
43102a6c0f82SMatthias Ringwald                         } else {
43112a6c0f82SMatthias Ringwald                             // create BIG Sync failed or has been stopped by us
43122a6c0f82SMatthias Ringwald                             btstack_linked_list_remove(&hci_stack->le_audio_big_syncs, (btstack_linked_item_t *) big_sync);
43132a6c0f82SMatthias Ringwald                             if (big_sync->state == LE_AUDIO_BIG_STATE_W4_ESTABLISHED) {
43142a6c0f82SMatthias Ringwald                                 hci_emit_big_sync_created(big_sync, status);
43152a6c0f82SMatthias Ringwald                             } else {
4316d04a9afcSMatthias Ringwald                                 hci_emit_big_sync_stopped(big_handle);
43172a6c0f82SMatthias Ringwald                             }
43182a6c0f82SMatthias Ringwald                         }
43192a6c0f82SMatthias Ringwald                     }
43202a6c0f82SMatthias Ringwald                     break;
43212a6c0f82SMatthias Ringwald                 case HCI_SUBEVENT_LE_BIG_SYNC_LOST:
4322c45ca112SMatthias Ringwald                     hci_stack->iso_active_operation_type = HCI_ISO_TYPE_INVALID;
43232a6c0f82SMatthias Ringwald                     big_sync = hci_big_sync_for_handle(packet[4]);
43242a6c0f82SMatthias Ringwald                     if (big_sync != NULL){
4325d04a9afcSMatthias Ringwald                         uint8_t big_handle = packet[4];
43262a6c0f82SMatthias Ringwald                         btstack_linked_list_remove(&hci_stack->le_audio_big_syncs, (btstack_linked_item_t *) big_sync);
4327d04a9afcSMatthias Ringwald                         hci_emit_big_sync_stopped(big_handle);
43282a6c0f82SMatthias Ringwald                     }
43292a6c0f82SMatthias Ringwald                     break;
43304ae8623eSMatthias Ringwald #endif
43315909f7f2Smatthias.ringwald                 default:
43325909f7f2Smatthias.ringwald                     break;
43335909f7f2Smatthias.ringwald             }
43345909f7f2Smatthias.ringwald             break;
43355909f7f2Smatthias.ringwald #endif
43360b36101dSMatthias Ringwald         case HCI_EVENT_VENDOR_SPECIFIC:
43370b36101dSMatthias Ringwald             // Vendor specific commands often create vendor specific event instead of num completed packets
43380b36101dSMatthias Ringwald             // To avoid getting stuck as num_cmds_packets is zero, reset it to 1 for controllers with this behaviour
43390b36101dSMatthias Ringwald             switch (hci_stack->manufacturer){
43400b36101dSMatthias Ringwald                 case BLUETOOTH_COMPANY_ID_CAMBRIDGE_SILICON_RADIO:
43410b36101dSMatthias Ringwald                     hci_stack->num_cmd_packets = 1;
43420b36101dSMatthias Ringwald                     break;
43430b36101dSMatthias Ringwald                 default:
43440b36101dSMatthias Ringwald                     break;
43450b36101dSMatthias Ringwald             }
43460b36101dSMatthias Ringwald             break;
43476772a24cSmatthias.ringwald         default:
43486772a24cSmatthias.ringwald             break;
4349fe1ed1b8Smatthias.ringwald     }
4350fe1ed1b8Smatthias.ringwald 
435167c6c9dcSMatthias Ringwald     handle_event_for_current_stack_state(packet, size);
435289db417bSmatthias.ringwald 
435386805605S[email protected]     // notify upper stack
4354d6b06661SMatthias Ringwald 	hci_emit_event(packet, size, 0);   // don't dump, already happened in packet handler
435594ab26f8Smatthias.ringwald 
435686805605S[email protected]     // moved here to give upper stack a chance to close down everything with hci_connection_t intact
4357797b2a3fSMatthias Ringwald     if ((hci_event_packet_get_type(packet) == HCI_EVENT_DISCONNECTION_COMPLETE) && (packet[2] == 0)){
4358f8fbdce0SMatthias Ringwald 		handle = little_endian_read_16(packet, 3);
435905ae8de3SMatthias Ringwald 		hci_connection_t * aConn = hci_connection_for_handle(handle);
4360046ec007SMatthias Ringwald 		// discard connection if app did not trigger a reconnect in the event handler
4361797b2a3fSMatthias Ringwald 		if (aConn && aConn->state == RECEIVED_DISCONNECTION_COMPLETE){
436205ae8de3SMatthias Ringwald 			hci_shutdown_connection(aConn);
4363b0136355SMatthias Ringwald 		}
43648ad9cf99SMatthias Ringwald #ifdef ENABLE_CONTROLLER_DUMP_PACKETS
43658ad9cf99SMatthias Ringwald         hci_controller_dump_packets();
43668ad9cf99SMatthias Ringwald #endif
436786805605S[email protected]     }
436886805605S[email protected] 
436994ab26f8Smatthias.ringwald 	// execute main loop
437094ab26f8Smatthias.ringwald 	hci_run();
437116833f0aSmatthias.ringwald }
437216833f0aSmatthias.ringwald 
437335454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
43746f28d2eeSMatthias Ringwald 
43756be3cf7fSMatthias Ringwald #ifdef ENABLE_SCO_OVER_HCI
43766f28d2eeSMatthias Ringwald static void sco_tx_timeout_handler(btstack_timer_source_t * ts);
43776f28d2eeSMatthias Ringwald static void sco_schedule_tx(hci_connection_t * conn);
43786f28d2eeSMatthias Ringwald 
43796f28d2eeSMatthias Ringwald static void sco_tx_timeout_handler(btstack_timer_source_t * ts){
438059c33575SMatthias Ringwald     log_debug("SCO TX Timeout");
43815a6b2dbdSMatthias Ringwald     hci_con_handle_t con_handle = (hci_con_handle_t) (uintptr_t) btstack_run_loop_get_timer_context(ts);
43826f28d2eeSMatthias Ringwald     hci_connection_t * conn = hci_connection_for_handle(con_handle);
43836f28d2eeSMatthias Ringwald     if (!conn) return;
43846f28d2eeSMatthias Ringwald 
4385afaddd67SMatthias Ringwald     // trigger send
4386afaddd67SMatthias Ringwald     conn->sco_tx_ready = 1;
4387e4157653SMatthias Ringwald     // extra packet if CVSD but SCO buffer is too short
4388a1df452eSMatthias Ringwald     if (((hci_stack->sco_voice_setting_active & 0x03) != 0x03) && (hci_stack->sco_data_packet_length < 123)){
4389e4157653SMatthias Ringwald         conn->sco_tx_ready++;
4390e4157653SMatthias Ringwald     }
4391afaddd67SMatthias Ringwald     hci_notify_if_sco_can_send_now();
43926f28d2eeSMatthias Ringwald }
43936f28d2eeSMatthias Ringwald 
439459c33575SMatthias Ringwald 
439559c33575SMatthias Ringwald #define SCO_TX_AFTER_RX_MS (6)
439659c33575SMatthias Ringwald 
43976f28d2eeSMatthias Ringwald static void sco_schedule_tx(hci_connection_t * conn){
439859c33575SMatthias Ringwald 
43996f28d2eeSMatthias Ringwald     uint32_t now = btstack_run_loop_get_time_ms();
440059c33575SMatthias Ringwald     uint32_t sco_tx_ms = conn->sco_rx_ms + SCO_TX_AFTER_RX_MS;
440159c33575SMatthias Ringwald     int time_delta_ms = sco_tx_ms - now;
440259c33575SMatthias Ringwald 
440359c33575SMatthias Ringwald     btstack_timer_source_t * timer = (conn->sco_rx_count & 1) ? &conn->timeout : &conn->timeout_sco;
440459c33575SMatthias Ringwald 
440559c33575SMatthias Ringwald     // log_error("SCO TX at %u in %u", (int) sco_tx_ms, time_delta_ms);
4406ddbec4ceSMatthias Ringwald     btstack_run_loop_remove_timer(timer);
440759c33575SMatthias Ringwald     btstack_run_loop_set_timer(timer, time_delta_ms);
440859c33575SMatthias Ringwald     btstack_run_loop_set_timer_context(timer, (void *) (uintptr_t) conn->con_handle);
440959c33575SMatthias Ringwald     btstack_run_loop_set_timer_handler(timer, &sco_tx_timeout_handler);
441059c33575SMatthias Ringwald     btstack_run_loop_add_timer(timer);
44116f28d2eeSMatthias Ringwald }
44126be3cf7fSMatthias Ringwald #endif
44136f28d2eeSMatthias Ringwald 
4414c91d150bS[email protected] static void sco_handler(uint8_t * packet, uint16_t size){
44150b3f95dfSMatthias Ringwald     // lookup connection struct
44162b838201SMatthias Ringwald     hci_con_handle_t con_handle = READ_SCO_CONNECTION_HANDLE(packet);
44172b838201SMatthias Ringwald     hci_connection_t * conn     = hci_connection_for_handle(con_handle);
44180b3f95dfSMatthias Ringwald     if (!conn) return;
44190b3f95dfSMatthias Ringwald 
44206be3cf7fSMatthias Ringwald #ifdef ENABLE_SCO_OVER_HCI
4421760b20efSMatthias Ringwald     // CSR 8811 prefixes 60 byte SCO packet in transparent mode with 20 zero bytes -> skip first 20 payload bytes
4422760b20efSMatthias Ringwald     if (hci_stack->manufacturer == BLUETOOTH_COMPANY_ID_CAMBRIDGE_SILICON_RADIO){
4423a1df452eSMatthias Ringwald         if ((size == 83) && ((hci_stack->sco_voice_setting_active & 0x03) == 0x03)){
4424760b20efSMatthias Ringwald             packet[2] = 0x3c;
4425760b20efSMatthias Ringwald             memmove(&packet[3], &packet[23], 63);
4426760b20efSMatthias Ringwald             size = 63;
44270b3f95dfSMatthias Ringwald         }
44280b3f95dfSMatthias Ringwald     }
4429760b20efSMatthias Ringwald 
4430f234b250SMatthias Ringwald     if (hci_have_usb_transport()){
4431f234b250SMatthias Ringwald         // Nothing to do
4432f234b250SMatthias Ringwald     } else {
443349205f5dSMatthias 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);
4434760b20efSMatthias Ringwald         if (hci_stack->synchronous_flow_control_enabled == 0){
44356f28d2eeSMatthias Ringwald             uint32_t now = btstack_run_loop_get_time_ms();
443659c33575SMatthias Ringwald 
443759c33575SMatthias Ringwald             if (!conn->sco_rx_valid){
443859c33575SMatthias Ringwald                 // ignore first 10 packets
44396f28d2eeSMatthias Ringwald                 conn->sco_rx_count++;
444059c33575SMatthias Ringwald                 // log_debug("sco rx count %u", conn->sco_rx_count);
444159c33575SMatthias Ringwald                 if (conn->sco_rx_count == 10) {
444259c33575SMatthias Ringwald                     // use first timestamp as is and pretent it just started
44436f28d2eeSMatthias Ringwald                     conn->sco_rx_ms = now;
44446f28d2eeSMatthias Ringwald                     conn->sco_rx_valid = 1;
444559c33575SMatthias Ringwald                     conn->sco_rx_count = 0;
444659c33575SMatthias Ringwald                     sco_schedule_tx(conn);
444759c33575SMatthias Ringwald                 }
444859c33575SMatthias Ringwald             } else {
444959c33575SMatthias Ringwald                 // track expected arrival timme
445059c33575SMatthias Ringwald                 conn->sco_rx_count++;
445159c33575SMatthias Ringwald                 conn->sco_rx_ms += 7;
445259c33575SMatthias Ringwald                 int delta = (int32_t) (now - conn->sco_rx_ms);
445359c33575SMatthias Ringwald                 if (delta > 0){
445459c33575SMatthias Ringwald                     conn->sco_rx_ms++;
445559c33575SMatthias Ringwald                 }
445659c33575SMatthias Ringwald                 // log_debug("sco rx %u", conn->sco_rx_ms);
44576f28d2eeSMatthias Ringwald                 sco_schedule_tx(conn);
44586f28d2eeSMatthias Ringwald             }
4459760b20efSMatthias Ringwald         }
4460f234b250SMatthias Ringwald     }
44616be3cf7fSMatthias Ringwald #endif
44626be3cf7fSMatthias Ringwald 
44630b3f95dfSMatthias Ringwald     // deliver to app
44640b3f95dfSMatthias Ringwald     if (hci_stack->sco_packet_handler) {
44650b3f95dfSMatthias Ringwald         hci_stack->sco_packet_handler(HCI_SCO_DATA_PACKET, 0, packet, size);
44660b3f95dfSMatthias Ringwald     }
44670b3f95dfSMatthias Ringwald 
4468ed325439SMatthias Ringwald #ifdef HAVE_SCO_TRANSPORT
4469ed325439SMatthias Ringwald     // We can send one packet for each received packet
4470ed325439SMatthias Ringwald     conn->sco_tx_ready++;
4471ed325439SMatthias Ringwald     hci_notify_if_sco_can_send_now();
4472ed325439SMatthias Ringwald #endif
4473ed325439SMatthias Ringwald 
44740b3f95dfSMatthias Ringwald #ifdef ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL
44752b838201SMatthias Ringwald     conn->num_packets_completed++;
44762b838201SMatthias Ringwald     hci_stack->host_completed_packets = 1;
44772b838201SMatthias Ringwald     hci_run();
44782b838201SMatthias Ringwald #endif
4479c91d150bS[email protected] }
448035454696SMatthias Ringwald #endif
4481c91d150bS[email protected] 
44820a57e69fSmatthias.ringwald static void packet_handler(uint8_t packet_type, uint8_t *packet, uint16_t size){
44835bb5bc3eS[email protected]     hci_dump_packet(packet_type, 1, packet, size);
448410e830c9Smatthias.ringwald     switch (packet_type) {
448510e830c9Smatthias.ringwald         case HCI_EVENT_PACKET:
448610e830c9Smatthias.ringwald             event_handler(packet, size);
448710e830c9Smatthias.ringwald             break;
448810e830c9Smatthias.ringwald         case HCI_ACL_DATA_PACKET:
448910e830c9Smatthias.ringwald             acl_handler(packet, size);
449010e830c9Smatthias.ringwald             break;
449135454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
4492c91d150bS[email protected]         case HCI_SCO_DATA_PACKET:
4493c91d150bS[email protected]             sco_handler(packet, size);
4494202c8a4cSMatthias Ringwald             break;
449535454696SMatthias Ringwald #endif
44960a8cccd5SMatthias Ringwald #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
44975027c498SMatthias Ringwald         case HCI_ISO_DATA_PACKET:
4498d39e4f95SMatthias Ringwald             hci_iso_packet_handler(packet, size);
44995027c498SMatthias Ringwald             break;
45005027c498SMatthias Ringwald #endif
450110e830c9Smatthias.ringwald         default:
450210e830c9Smatthias.ringwald             break;
450310e830c9Smatthias.ringwald     }
450410e830c9Smatthias.ringwald }
450510e830c9Smatthias.ringwald 
4506d6b06661SMatthias Ringwald /**
4507d6b06661SMatthias Ringwald  * @brief Add event packet handler.
4508d6b06661SMatthias Ringwald  */
4509d6b06661SMatthias Ringwald void hci_add_event_handler(btstack_packet_callback_registration_t * callback_handler){
4510d6b06661SMatthias Ringwald     btstack_linked_list_add_tail(&hci_stack->event_handlers, (btstack_linked_item_t*) callback_handler);
4511d6b06661SMatthias Ringwald }
4512d6b06661SMatthias Ringwald 
451367f708e0SMatthias Ringwald /**
451467f708e0SMatthias Ringwald  * @brief Remove event packet handler.
451567f708e0SMatthias Ringwald  */
451667f708e0SMatthias Ringwald void hci_remove_event_handler(btstack_packet_callback_registration_t * callback_handler){
451767f708e0SMatthias Ringwald     btstack_linked_list_remove(&hci_stack->event_handlers, (btstack_linked_item_t*) callback_handler);
451867f708e0SMatthias Ringwald }
4519d6b06661SMatthias Ringwald 
4520fcadd0caSmatthias.ringwald /** Register HCI packet handlers */
45213d50b4baSMatthias Ringwald void hci_register_acl_packet_handler(btstack_packet_handler_t handler){
4522fb37a842SMatthias Ringwald     hci_stack->acl_packet_handler = handler;
452316833f0aSmatthias.ringwald }
452416833f0aSmatthias.ringwald 
452535454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
45268abbe8b5SMatthias Ringwald /**
45278abbe8b5SMatthias Ringwald  * @brief Registers a packet handler for SCO data. Used for HSP and HFP profiles.
45288abbe8b5SMatthias Ringwald  */
45293d50b4baSMatthias Ringwald void hci_register_sco_packet_handler(btstack_packet_handler_t handler){
45308abbe8b5SMatthias Ringwald     hci_stack->sco_packet_handler = handler;
45318abbe8b5SMatthias Ringwald }
453235454696SMatthias Ringwald #endif
45338abbe8b5SMatthias Ringwald 
45340a8cccd5SMatthias Ringwald #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
45355027c498SMatthias Ringwald void hci_register_iso_packet_handler(btstack_packet_handler_t handler){
45365027c498SMatthias Ringwald     hci_stack->iso_packet_handler = handler;
45375027c498SMatthias Ringwald }
45385027c498SMatthias Ringwald #endif
45395027c498SMatthias Ringwald 
454071de195eSMatthias Ringwald static void hci_state_reset(void){
4541595bdbfbS[email protected]     // no connections yet
4542595bdbfbS[email protected]     hci_stack->connections = NULL;
454374308b23Smatthias.ringwald 
454474308b23Smatthias.ringwald     // keep discoverable/connectable as this has been requested by the client(s)
454574308b23Smatthias.ringwald     // hci_stack->discoverable = 0;
454674308b23Smatthias.ringwald     // hci_stack->connectable = 0;
454774308b23Smatthias.ringwald     // hci_stack->bondable = 1;
4548b95a5a35SMatthias Ringwald     // hci_stack->own_addr_type = 0;
4549595bdbfbS[email protected] 
455044935e40S[email protected]     // buffer is free
455102c7fc01SMatthias Ringwald     hci_stack->hci_packet_buffer_reserved = false;
455244935e40S[email protected] 
4553595bdbfbS[email protected]     // no pending cmds
4554595bdbfbS[email protected]     hci_stack->decline_reason = 0;
4555595bdbfbS[email protected] 
4556c214d65bSMatthias Ringwald     hci_stack->secure_connections_active = false;
4557c214d65bSMatthias Ringwald 
4558bea424a5SMatthias Ringwald #ifdef ENABLE_CLASSIC
4559496bb884SMatthias Ringwald     hci_stack->inquiry_lap = GAP_IAC_GENERAL_INQUIRY;
456032a12730SMatthias Ringwald     hci_stack->page_timeout = 0x6000;  // ca. 15 sec
456132a12730SMatthias Ringwald 
4562baa4881eSMatthias Ringwald     hci_stack->gap_tasks_classic =
456359d59ecfSMatthias Ringwald             GAP_TASK_SET_DEFAULT_LINK_POLICY |
456459d59ecfSMatthias Ringwald             GAP_TASK_SET_CLASS_OF_DEVICE |
456559d59ecfSMatthias Ringwald             GAP_TASK_SET_LOCAL_NAME |
4566bc2dcc03SMatthias Ringwald             GAP_TASK_SET_EIR_DATA |
456732a12730SMatthias Ringwald             GAP_TASK_WRITE_SCAN_ENABLE |
456832a12730SMatthias Ringwald             GAP_TASK_WRITE_PAGE_TIMEOUT;
4569bea424a5SMatthias Ringwald #endif
4570bea424a5SMatthias Ringwald 
4571cf01e888SMatthias Ringwald #ifdef ENABLE_CLASSIC_PAIRING_OOB
45728d5f0979SMatthias Ringwald     hci_stack->classic_read_local_oob_data = false;
45731ae74bf3SMatthias Ringwald     hci_stack->classic_oob_con_handle = HCI_CON_HANDLE_INVALID;
4574cf01e888SMatthias Ringwald #endif
4575cf01e888SMatthias Ringwald 
4576595bdbfbS[email protected]     // LE
4577b95a5a35SMatthias Ringwald #ifdef ENABLE_BLE
4578b95a5a35SMatthias Ringwald     memset(hci_stack->le_random_address, 0, 6);
4579b95a5a35SMatthias Ringwald     hci_stack->le_random_address_set = 0;
4580d70217a2SMatthias Ringwald #endif
4581d70217a2SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
4582a61834b6SMatthias Ringwald     hci_stack->le_scanning_active  = false;
458373799937SMatthias Ringwald     hci_stack->le_scanning_param_update = true;
4584b04dfa37SMatthias Ringwald     hci_stack->le_connecting_state = LE_CONNECTING_IDLE;
4585d5b1a89eSMatthias Ringwald     hci_stack->le_connecting_request = LE_CONNECTING_IDLE;
4586e83201bcSMatthias Ringwald     hci_stack->le_whitelist_capacity = 0;
45874bafedd5SMatthias Ringwald #ifdef ENABLE_LE_EXTENDED_ADVERTISING
45884bafedd5SMatthias Ringwald     hci_stack->le_periodic_terminate_sync_handle = HCI_CON_HANDLE_INVALID;
45894bafedd5SMatthias Ringwald #endif
4590d70217a2SMatthias Ringwald #endif
4591a61834b6SMatthias Ringwald #ifdef ENABLE_LE_PERIPHERAL
4592935aa76eSMatthias Ringwald     hci_stack->le_advertisements_state &= ~LE_ADVERTISEMENT_STATE_ACTIVE;
45936bf435a6SMatthias Ringwald     if ((hci_stack->le_advertisements_state & LE_ADVERTISEMENT_STATE_PARAMS_SET) != 0){
4594a61834b6SMatthias Ringwald         hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_SET_PARAMS;
4595a61834b6SMatthias Ringwald     }
4596a61834b6SMatthias Ringwald     if (hci_stack->le_advertisements_data != NULL){
4597a61834b6SMatthias Ringwald         hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_SET_ADV_DATA;
4598a61834b6SMatthias Ringwald     }
4599a61834b6SMatthias Ringwald #endif
4600d320e123SMatthias Ringwald #ifdef ENABLE_LE_PRIVACY_ADDRESS_RESOLUTION
4601d320e123SMatthias Ringwald     hci_stack->le_resolving_list_state = LE_RESOLVING_LIST_SEND_ENABLE_ADDRESS_RESOLUTION;
4602d320e123SMatthias Ringwald #endif
460340f86dfdSMatthias Ringwald #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
460426b93350SMatthias Ringwald     hci_stack->iso_active_operation_type = HCI_ISO_TYPE_INVALID;
4605d75a6bbfSMatthias Ringwald     hci_stack->iso_active_operation_group_id = HCI_ISO_GROUP_ID_INVALID;
460640f86dfdSMatthias Ringwald #endif
4607595bdbfbS[email protected] }
4608595bdbfbS[email protected] 
460935454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
46102d5e09d6SMatthias Ringwald /**
46112d5e09d6SMatthias Ringwald  * @brief Configure Bluetooth hardware control. Has to be called before power on.
46122d5e09d6SMatthias Ringwald  */
46132d5e09d6SMatthias Ringwald void hci_set_link_key_db(btstack_link_key_db_t const * link_key_db){
46142d5e09d6SMatthias Ringwald     // store and open remote device db
46152d5e09d6SMatthias Ringwald     hci_stack->link_key_db = link_key_db;
46162d5e09d6SMatthias Ringwald     if (hci_stack->link_key_db) {
46172d5e09d6SMatthias Ringwald         hci_stack->link_key_db->open();
46182d5e09d6SMatthias Ringwald     }
46192d5e09d6SMatthias Ringwald }
462035454696SMatthias Ringwald #endif
46212d5e09d6SMatthias Ringwald 
46222d5e09d6SMatthias Ringwald void hci_init(const hci_transport_t *transport, const void *config){
4623475c8125Smatthias.ringwald 
46243a9fb326S[email protected] #ifdef HAVE_MALLOC
46253a9fb326S[email protected]     if (!hci_stack) {
46263a9fb326S[email protected]         hci_stack = (hci_stack_t*) malloc(sizeof(hci_stack_t));
46273a9fb326S[email protected]     }
46283a9fb326S[email protected] #else
46293a9fb326S[email protected]     hci_stack = &hci_stack_static;
46303a9fb326S[email protected] #endif
463166fb9560S[email protected]     memset(hci_stack, 0, sizeof(hci_stack_t));
46323a9fb326S[email protected] 
4633475c8125Smatthias.ringwald     // reference to use transport layer implementation
46343a9fb326S[email protected]     hci_stack->hci_transport = transport;
4635475c8125Smatthias.ringwald 
463611e23e5fSmatthias.ringwald     // reference to used config
46373a9fb326S[email protected]     hci_stack->config = config;
463811e23e5fSmatthias.ringwald 
463926a9b6daSMatthias Ringwald     // setup pointer for outgoing packet buffer
464026a9b6daSMatthias Ringwald     hci_stack->hci_packet_buffer = &hci_stack->hci_packet_buffer_data[HCI_OUTGOING_PRE_BUFFER_SIZE];
464126a9b6daSMatthias Ringwald 
46428fcba05dSmatthias.ringwald     // max acl payload size defined in config.h
46433a9fb326S[email protected]     hci_stack->acl_data_packet_length = HCI_ACL_PAYLOAD_SIZE;
46448fcba05dSmatthias.ringwald 
464516833f0aSmatthias.ringwald     // register packet handlers with transport
464610e830c9Smatthias.ringwald     transport->register_packet_handler(&packet_handler);
4647f5454fc6Smatthias.ringwald 
46483a9fb326S[email protected]     hci_stack->state = HCI_STATE_OFF;
4649e2386ba1S[email protected] 
4650e2386ba1S[email protected]     // class of device
46513a9fb326S[email protected]     hci_stack->class_of_device = 0x007a020c; // Smartphone
4652a45d6b9fS[email protected] 
4653f20168b8Smatthias.ringwald     // bondable by default
4654f20168b8Smatthias.ringwald     hci_stack->bondable = 1;
4655f20168b8Smatthias.ringwald 
4656e9f343c8SMatthias Ringwald #ifdef ENABLE_CLASSIC
465763168530SMatthias Ringwald     // classic name
465863168530SMatthias Ringwald     hci_stack->local_name = default_classic_name;
4659c4c88f1bSJakob Krantz 
4660c4c88f1bSJakob Krantz     // Master slave policy
4661c4c88f1bSJakob Krantz     hci_stack->master_slave_policy = 1;
4662170fafaeSMatthias Ringwald 
4663b4eb4420SMatthias Ringwald     // Allow Role Switch
4664b4eb4420SMatthias Ringwald     hci_stack->allow_role_switch = 1;
4665b4eb4420SMatthias Ringwald 
466678315a58SMatthias Ringwald     // Default / minimum security level = 2
466778315a58SMatthias Ringwald     hci_stack->gap_security_level = LEVEL_2;
466878315a58SMatthias Ringwald 
46695dbec6b3SMatthias Ringwald     // Default Security Mode 4
46705dbec6b3SMatthias Ringwald     hci_stack->gap_security_mode = GAP_SECURITY_MODE_4;
46715dbec6b3SMatthias Ringwald 
4672cd345294SMatthias Ringwald     // Errata-11838 mandates 7 bytes for GAP Security Level 1-3
4673cd345294SMatthias Ringwald     hci_stack->gap_required_encyrption_key_size = 7;
4674d821984bSMatthias Ringwald 
4675d821984bSMatthias Ringwald     // Link Supervision Timeout
4676d821984bSMatthias Ringwald     hci_stack->link_supervision_timeout = HCI_LINK_SUPERVISION_TIMEOUT_DEFAULT;
4677d821984bSMatthias Ringwald 
4678e9f343c8SMatthias Ringwald #endif
467963168530SMatthias Ringwald 
468063048403S[email protected]     // Secure Simple Pairing default: enable, no I/O capabilities, general bonding, mitm not required, auto accept
46813a9fb326S[email protected]     hci_stack->ssp_enable = 1;
46823a9fb326S[email protected]     hci_stack->ssp_io_capability = SSP_IO_CAPABILITY_NO_INPUT_NO_OUTPUT;
46833a9fb326S[email protected]     hci_stack->ssp_authentication_requirement = SSP_IO_AUTHREQ_MITM_PROTECTION_NOT_REQUIRED_GENERAL_BONDING;
46843a9fb326S[email protected]     hci_stack->ssp_auto_accept = 1;
468569a97523S[email protected] 
46865d23aae8SMatthias Ringwald     // Secure Connections: enable (requires support from Controller)
46875d23aae8SMatthias Ringwald     hci_stack->secure_connections_enable = true;
46885d23aae8SMatthias Ringwald 
4689fac2e2feSMatthias Ringwald     // voice setting - signed 16 bit pcm data with CVSD over the air
4690fac2e2feSMatthias Ringwald     hci_stack->sco_voice_setting = 0x60;
4691d950d659SMatthias Ringwald 
46920c2c5f79SMatthias Ringwald #ifdef ENABLE_BLE
4693cbe54ab2SJakob Krantz     hci_stack->le_connection_scan_interval = 0x0060;   //    60 ms
4694cbe54ab2SJakob Krantz     hci_stack->le_connection_scan_window   = 0x0030;    //   30 ms
4695831711daSMatthias Ringwald     hci_stack->le_connection_interval_min  = 0x0008;    //   10 ms
4696831711daSMatthias Ringwald     hci_stack->le_connection_interval_max  = 0x0018;    //   30 ms
4697831711daSMatthias Ringwald     hci_stack->le_connection_latency       =      4;    //    4
4698831711daSMatthias Ringwald     hci_stack->le_supervision_timeout      = 0x0048;    //  720 ms
469924d14ae3SMatthias Ringwald     hci_stack->le_minimum_ce_length        =      0;    //    0 ms
470024d14ae3SMatthias Ringwald     hci_stack->le_maximum_ce_length        =      0;    //    0 ms
47010c2c5f79SMatthias Ringwald #endif
47020c2c5f79SMatthias Ringwald 
47030c2c5f79SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
47047eb5b27eSMatthias Ringwald     hci_stack->le_connection_phys          =   0x01;    // LE 1M PHY
47057261e5d8SMatthias Ringwald 
47067261e5d8SMatthias Ringwald     // default LE Scanning
47077eb5b27eSMatthias Ringwald     hci_stack->le_scan_type     =  0x01; // active
47088b69e4c7SMatthias Ringwald     hci_stack->le_scan_interval = 0x1e0; // 300 ms
47098b69e4c7SMatthias Ringwald     hci_stack->le_scan_window   =  0x30; //  30 ms
47107eb5b27eSMatthias Ringwald     hci_stack->le_scan_phys     =  0x01; // LE 1M PHY
4711831711daSMatthias Ringwald #endif
4712831711daSMatthias Ringwald 
47132b6ab3e6SMatthias Ringwald #ifdef ENABLE_LE_PERIPHERAL
47142b6ab3e6SMatthias Ringwald     hci_stack->le_max_number_peripheral_connections = 1; // only single connection as peripheral
4715ee605458SMatthias Ringwald 
4716ee605458SMatthias Ringwald     // default advertising parameters from Core v5.4 -- needed to use random address without prior adv setup
4717ee605458SMatthias Ringwald     hci_stack->le_advertisements_interval_min =                         0x0800;
4718ee605458SMatthias Ringwald     hci_stack->le_advertisements_interval_max =                         0x0800;
4719ee605458SMatthias Ringwald     hci_stack->le_advertisements_type =                                      0;
4720ee605458SMatthias Ringwald     hci_stack->le_own_addr_type =                       BD_ADDR_TYPE_LE_PUBLIC;
4721ee605458SMatthias Ringwald     hci_stack->le_advertisements_direct_address_type =  BD_ADDR_TYPE_LE_PUBLIC;
4722ee605458SMatthias Ringwald     hci_stack->le_advertisements_channel_map =                            0x07;
4723ee605458SMatthias Ringwald     hci_stack->le_advertisements_filter_policy =                             0;
47242b6ab3e6SMatthias Ringwald #endif
47252b6ab3e6SMatthias Ringwald 
4726831711daSMatthias Ringwald     // connection parameter range used to answer connection parameter update requests in l2cap
4727831711daSMatthias Ringwald     hci_stack->le_connection_parameter_range.le_conn_interval_min =          6;
4728831711daSMatthias Ringwald     hci_stack->le_connection_parameter_range.le_conn_interval_max =       3200;
4729831711daSMatthias Ringwald     hci_stack->le_connection_parameter_range.le_conn_latency_min =           0;
4730831711daSMatthias Ringwald     hci_stack->le_connection_parameter_range.le_conn_latency_max =         500;
4731831711daSMatthias Ringwald     hci_stack->le_connection_parameter_range.le_supervision_timeout_min =   10;
4732831711daSMatthias Ringwald     hci_stack->le_connection_parameter_range.le_supervision_timeout_max = 3200;
4733831711daSMatthias Ringwald 
473401d4f05fSMatthias Ringwald #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
473501d4f05fSMatthias Ringwald     hci_stack->iso_packets_to_queue = 1;
473601d4f05fSMatthias Ringwald #endif
473701d4f05fSMatthias Ringwald 
4738c3d19a30SMatthias Ringwald #ifdef ENABLE_LE_PRIVACY_ADDRESS_RESOLUTION
4739c3d19a30SMatthias Ringwald     hci_stack->le_privacy_mode = LE_PRIVACY_MODE_DEVICE;
4740c3d19a30SMatthias Ringwald #endif
4741c3d19a30SMatthias Ringwald 
4742595bdbfbS[email protected]     hci_state_reset();
4743475c8125Smatthias.ringwald }
4744475c8125Smatthias.ringwald 
47454688f216SMatthias Ringwald void hci_deinit(void){
4746b02cfc15SMatthias Ringwald     btstack_run_loop_remove_timer(&hci_stack->timeout);
47474688f216SMatthias Ringwald #ifdef HAVE_MALLOC
47484688f216SMatthias Ringwald     if (hci_stack) {
47494688f216SMatthias Ringwald         free(hci_stack);
47504688f216SMatthias Ringwald     }
47514688f216SMatthias Ringwald #endif
47524688f216SMatthias Ringwald     hci_stack = NULL;
4753b5bbcbf4SMatthias Ringwald 
4754b5bbcbf4SMatthias Ringwald #ifdef ENABLE_CLASSIC
47554688f216SMatthias Ringwald     disable_l2cap_timeouts = 0;
4756b5bbcbf4SMatthias Ringwald #endif
47574688f216SMatthias Ringwald }
47584688f216SMatthias Ringwald 
47593fb36a29SMatthias Ringwald /**
47603fb36a29SMatthias Ringwald  * @brief Configure Bluetooth chipset driver. Has to be called before power on, or right after receiving the local version information
47613fb36a29SMatthias Ringwald  */
47623fb36a29SMatthias Ringwald void hci_set_chipset(const btstack_chipset_t *chipset_driver){
47633fb36a29SMatthias Ringwald     hci_stack->chipset = chipset_driver;
47643fb36a29SMatthias Ringwald 
47653fb36a29SMatthias Ringwald     // reset chipset driver - init is also called on power_up
47663fb36a29SMatthias Ringwald     if (hci_stack->chipset && hci_stack->chipset->init){
47673fb36a29SMatthias Ringwald         hci_stack->chipset->init(hci_stack->config);
47683fb36a29SMatthias Ringwald     }
47693fb36a29SMatthias Ringwald }
47703fb36a29SMatthias Ringwald 
47716fe16221SMatthias Ringwald void hci_enable_custom_pre_init(void){
47726fe16221SMatthias Ringwald     hci_stack->chipset_pre_init = true;
47736fe16221SMatthias Ringwald }
47746fe16221SMatthias Ringwald 
4775fb55bd0aSMatthias Ringwald /**
4776d0b87befSMatthias Ringwald  * @brief Configure Bluetooth hardware control. Has to be called after hci_init() but before power on.
4777fb55bd0aSMatthias Ringwald  */
4778fb55bd0aSMatthias Ringwald void hci_set_control(const btstack_control_t *hardware_control){
4779fb55bd0aSMatthias Ringwald     // references to used control implementation
4780fb55bd0aSMatthias Ringwald     hci_stack->control = hardware_control;
4781d0b87befSMatthias Ringwald     // init with transport config
4782d0b87befSMatthias Ringwald     hardware_control->init(hci_stack->config);
4783fb55bd0aSMatthias Ringwald }
4784fb55bd0aSMatthias Ringwald 
47851f9eb2ccSMatthias Ringwald static void hci_discard_connections(void){
4786346f8c2cSMatthias Ringwald     btstack_linked_list_iterator_t it;
4787346f8c2cSMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->connections);
4788346f8c2cSMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
47891f9eb2ccSMatthias Ringwald         // cancel all l2cap connections by emitting dicsconnection complete before shutdown (free) connection
4790346f8c2cSMatthias Ringwald         hci_connection_t * connection = (hci_connection_t*) btstack_linked_list_iterator_next(&it);
47911f9eb2ccSMatthias Ringwald         hci_emit_disconnection_complete(connection->con_handle, 0x16); // terminated by local host
47921f9eb2ccSMatthias Ringwald         hci_shutdown_connection(connection);
47931f9eb2ccSMatthias Ringwald     }
4794346f8c2cSMatthias Ringwald #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
4795346f8c2cSMatthias Ringwald     while (hci_stack->iso_streams != NULL){
4796346f8c2cSMatthias Ringwald         hci_iso_stream_finalize((hci_iso_stream_t *) hci_stack->iso_streams);
4797346f8c2cSMatthias Ringwald     }
4798346f8c2cSMatthias Ringwald #endif
47991f9eb2ccSMatthias Ringwald }
48001f9eb2ccSMatthias Ringwald 
480171de195eSMatthias Ringwald void hci_close(void){
4802e6d6524dSMatthias Ringwald 
4803e6d6524dSMatthias Ringwald #ifdef ENABLE_CLASSIC
4804404843c1Smatthias.ringwald     // close remote device db
4805a98592bcSMatthias Ringwald     if (hci_stack->link_key_db) {
4806a98592bcSMatthias Ringwald         hci_stack->link_key_db->close();
4807404843c1Smatthias.ringwald     }
4808e6d6524dSMatthias Ringwald #endif
48097224be7eSMatthias Ringwald 
48101f9eb2ccSMatthias Ringwald     hci_discard_connections();
48117224be7eSMatthias Ringwald 
4812f5454fc6Smatthias.ringwald     hci_power_control(HCI_POWER_OFF);
48133a9fb326S[email protected] 
48143a9fb326S[email protected] #ifdef HAVE_MALLOC
48153a9fb326S[email protected]     free(hci_stack);
48163a9fb326S[email protected] #endif
48173a9fb326S[email protected]     hci_stack = NULL;
4818404843c1Smatthias.ringwald }
4819404843c1Smatthias.ringwald 
4820cb70c5abSMatthias Ringwald #ifdef HAVE_SCO_TRANSPORT
4821cb70c5abSMatthias Ringwald void hci_set_sco_transport(const btstack_sco_transport_t *sco_transport){
4822cb70c5abSMatthias Ringwald     hci_stack->sco_transport = sco_transport;
4823cb70c5abSMatthias Ringwald     sco_transport->register_packet_handler(&packet_handler);
4824cb70c5abSMatthias Ringwald }
4825cb70c5abSMatthias Ringwald #endif
4826cb70c5abSMatthias Ringwald 
482735454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
4828170fafaeSMatthias Ringwald void gap_set_required_encryption_key_size(uint8_t encryption_key_size){
4829170fafaeSMatthias Ringwald     // validate ranage and set
4830170fafaeSMatthias Ringwald     if (encryption_key_size < 7)  return;
4831170fafaeSMatthias Ringwald     if (encryption_key_size > 16) return;
4832170fafaeSMatthias Ringwald     hci_stack->gap_required_encyrption_key_size = encryption_key_size;
4833170fafaeSMatthias Ringwald }
483478315a58SMatthias Ringwald 
4835137715ebSMatthias Ringwald uint8_t gap_set_security_mode(gap_security_mode_t security_mode){
4836137715ebSMatthias Ringwald     if ((security_mode == GAP_SECURITY_MODE_4) || (security_mode == GAP_SECURITY_MODE_2)){
48375dbec6b3SMatthias Ringwald         hci_stack->gap_security_mode = security_mode;
4838137715ebSMatthias Ringwald         return ERROR_CODE_SUCCESS;
4839137715ebSMatthias Ringwald     } else {
4840137715ebSMatthias Ringwald         return ERROR_CODE_UNSUPPORTED_FEATURE_OR_PARAMETER_VALUE;
4841137715ebSMatthias Ringwald     }
48425dbec6b3SMatthias Ringwald }
48435dbec6b3SMatthias Ringwald 
48445dbec6b3SMatthias Ringwald gap_security_mode_t gap_get_security_mode(void){
48455dbec6b3SMatthias Ringwald     return hci_stack->gap_security_mode;
48465dbec6b3SMatthias Ringwald }
48475dbec6b3SMatthias Ringwald 
484878315a58SMatthias Ringwald void gap_set_security_level(gap_security_level_t security_level){
484978315a58SMatthias Ringwald     hci_stack->gap_security_level = security_level;
485078315a58SMatthias Ringwald }
485178315a58SMatthias Ringwald 
485278315a58SMatthias Ringwald gap_security_level_t gap_get_security_level(void){
4853d7387af3SMatthias Ringwald     if (hci_stack->gap_secure_connections_only_mode){
4854d7387af3SMatthias Ringwald         return LEVEL_4;
4855d7387af3SMatthias Ringwald     }
485678315a58SMatthias Ringwald     return hci_stack->gap_security_level;
485778315a58SMatthias Ringwald }
485830cdf3c6SMatthias Ringwald 
48598ad4dfffSMatthias Ringwald void gap_set_minimal_service_security_level(gap_security_level_t security_level){
48608ad4dfffSMatthias Ringwald     hci_stack->gap_minimal_service_security_level = security_level;
48618ad4dfffSMatthias Ringwald }
48628ad4dfffSMatthias Ringwald 
486330cdf3c6SMatthias Ringwald void gap_set_secure_connections_only_mode(bool enable){
486430cdf3c6SMatthias Ringwald     hci_stack->gap_secure_connections_only_mode = enable;
486530cdf3c6SMatthias Ringwald }
486630cdf3c6SMatthias Ringwald 
486730cdf3c6SMatthias Ringwald bool gap_get_secure_connections_only_mode(void){
486830cdf3c6SMatthias Ringwald     return hci_stack->gap_secure_connections_only_mode;
486930cdf3c6SMatthias Ringwald }
4870170fafaeSMatthias Ringwald #endif
4871170fafaeSMatthias Ringwald 
4872170fafaeSMatthias Ringwald #ifdef ENABLE_CLASSIC
487360b9e82fSMatthias Ringwald void gap_set_class_of_device(uint32_t class_of_device){
48749e61646fS[email protected]     hci_stack->class_of_device = class_of_device;
4875baa4881eSMatthias Ringwald     hci_stack->gap_tasks_classic |= GAP_TASK_SET_CLASS_OF_DEVICE;
487659d59ecfSMatthias Ringwald     hci_run();
48779e61646fS[email protected] }
487876f27cffSMatthias Ringwald 
4879c33e56d3SMatthias Ringwald void gap_set_default_link_policy_settings(uint16_t default_link_policy_settings){
4880c33e56d3SMatthias Ringwald     hci_stack->default_link_policy_settings = default_link_policy_settings;
4881baa4881eSMatthias Ringwald     hci_stack->gap_tasks_classic |= GAP_TASK_SET_DEFAULT_LINK_POLICY;
488259d59ecfSMatthias Ringwald     hci_run();
4883c33e56d3SMatthias Ringwald }
4884c33e56d3SMatthias Ringwald 
4885b4eb4420SMatthias Ringwald void gap_set_allow_role_switch(bool allow_role_switch){
4886b4eb4420SMatthias Ringwald     hci_stack->allow_role_switch = allow_role_switch ? 1 : 0;
4887b4eb4420SMatthias Ringwald }
4888b4eb4420SMatthias Ringwald 
4889b4eb4420SMatthias Ringwald uint8_t hci_get_allow_role_switch(void){
4890b4eb4420SMatthias Ringwald     return  hci_stack->allow_role_switch;
4891b4eb4420SMatthias Ringwald }
4892b4eb4420SMatthias Ringwald 
48930c3eb48dSMatthias Ringwald void gap_set_link_supervision_timeout(uint16_t link_supervision_timeout){
48940c3eb48dSMatthias Ringwald     hci_stack->link_supervision_timeout = link_supervision_timeout;
48950c3eb48dSMatthias Ringwald }
48960c3eb48dSMatthias Ringwald 
48979afaa4d4SMatthias Ringwald void gap_enable_link_watchdog(uint16_t timeout_ms){
48989afaa4d4SMatthias Ringwald     hci_stack->automatic_flush_timeout = btstack_min(timeout_ms, 1280) * 8 / 5; // divide by 0.625
48999afaa4d4SMatthias Ringwald }
49009afaa4d4SMatthias Ringwald 
49019afaa4d4SMatthias Ringwald uint16_t hci_automatic_flush_timeout(void){
49029afaa4d4SMatthias Ringwald     return hci_stack->automatic_flush_timeout;
49039afaa4d4SMatthias Ringwald }
49049afaa4d4SMatthias Ringwald 
490576f27cffSMatthias Ringwald void hci_disable_l2cap_timeout_check(void){
490676f27cffSMatthias Ringwald     disable_l2cap_timeouts = 1;
490776f27cffSMatthias Ringwald }
490835454696SMatthias Ringwald #endif
49099e61646fS[email protected] 
49106fad2c37SMatthias Ringwald #ifndef HAVE_HOST_CONTROLLER_API
4911f456b2d0S[email protected] // Set Public BD ADDR - passed on to Bluetooth chipset if supported in bt_control_h
4912f456b2d0S[email protected] void hci_set_bd_addr(bd_addr_t addr){
49136535961aSMatthias Ringwald     (void)memcpy(hci_stack->custom_bd_addr, addr, 6);
4914f456b2d0S[email protected]     hci_stack->custom_bd_addr_set = 1;
4915f456b2d0S[email protected] }
491676f27cffSMatthias Ringwald #endif
4917f456b2d0S[email protected] 
49188d213e1aSmatthias.ringwald // State-Module-Driver overview
49198d213e1aSmatthias.ringwald // state                    module  low-level
49208d213e1aSmatthias.ringwald // HCI_STATE_OFF             off      close
49218d213e1aSmatthias.ringwald // HCI_STATE_INITIALIZING,   on       open
49228d213e1aSmatthias.ringwald // HCI_STATE_WORKING,        on       open
49238d213e1aSmatthias.ringwald // HCI_STATE_HALTING,        on       open
4924d661ed19Smatthias.ringwald // HCI_STATE_SLEEPING,    off/sleep   close
4925d661ed19Smatthias.ringwald // HCI_STATE_FALLING_ASLEEP  on       open
4926c7e0c5f6Smatthias.ringwald 
492740d1c7a4Smatthias.ringwald static int hci_power_control_on(void){
49287301ad89Smatthias.ringwald 
4929038bc64cSmatthias.ringwald     // power on
4930f9a30166Smatthias.ringwald     int err = 0;
49313a9fb326S[email protected]     if (hci_stack->control && hci_stack->control->on){
4932d0b87befSMatthias Ringwald         err = (*hci_stack->control->on)();
4933f9a30166Smatthias.ringwald     }
4934038bc64cSmatthias.ringwald     if (err){
49359da54300S[email protected]         log_error( "POWER_ON failed");
4936038bc64cSmatthias.ringwald         hci_emit_hci_open_failed();
4937038bc64cSmatthias.ringwald         return err;
4938038bc64cSmatthias.ringwald     }
4939038bc64cSmatthias.ringwald 
494024b3c629SMatthias Ringwald     // int chipset driver
49413fb36a29SMatthias Ringwald     if (hci_stack->chipset && hci_stack->chipset->init){
49423fb36a29SMatthias Ringwald         hci_stack->chipset->init(hci_stack->config);
49433fb36a29SMatthias Ringwald     }
49443fb36a29SMatthias Ringwald 
494524b3c629SMatthias Ringwald     // init transport
494624b3c629SMatthias Ringwald     if (hci_stack->hci_transport->init){
494724b3c629SMatthias Ringwald         hci_stack->hci_transport->init(hci_stack->config);
494824b3c629SMatthias Ringwald     }
494924b3c629SMatthias Ringwald 
495024b3c629SMatthias Ringwald     // open transport
495124b3c629SMatthias Ringwald     err = hci_stack->hci_transport->open();
4952038bc64cSmatthias.ringwald     if (err){
49539da54300S[email protected]         log_error( "HCI_INIT failed, turning Bluetooth off again");
49543a9fb326S[email protected]         if (hci_stack->control && hci_stack->control->off){
4955d0b87befSMatthias Ringwald             (*hci_stack->control->off)();
4956f9a30166Smatthias.ringwald         }
4957038bc64cSmatthias.ringwald         hci_emit_hci_open_failed();
4958038bc64cSmatthias.ringwald         return err;
4959038bc64cSmatthias.ringwald     }
49608d213e1aSmatthias.ringwald     return 0;
49618d213e1aSmatthias.ringwald }
4962038bc64cSmatthias.ringwald 
496340d1c7a4Smatthias.ringwald static void hci_power_control_off(void){
49648d213e1aSmatthias.ringwald 
49659da54300S[email protected]     log_info("hci_power_control_off");
49669418f9c9Smatthias.ringwald 
49678d213e1aSmatthias.ringwald     // close low-level device
496824b3c629SMatthias Ringwald     hci_stack->hci_transport->close();
49698d213e1aSmatthias.ringwald 
49709da54300S[email protected]     log_info("hci_power_control_off - hci_transport closed");
49719418f9c9Smatthias.ringwald 
49728d213e1aSmatthias.ringwald     // power off
49733a9fb326S[email protected]     if (hci_stack->control && hci_stack->control->off){
4974d0b87befSMatthias Ringwald         (*hci_stack->control->off)();
49758d213e1aSmatthias.ringwald     }
49769418f9c9Smatthias.ringwald 
49779da54300S[email protected]     log_info("hci_power_control_off - control closed");
49789418f9c9Smatthias.ringwald 
49793a9fb326S[email protected]     hci_stack->state = HCI_STATE_OFF;
498072ea5239Smatthias.ringwald }
498172ea5239Smatthias.ringwald 
498240d1c7a4Smatthias.ringwald static void hci_power_control_sleep(void){
498372ea5239Smatthias.ringwald 
49849da54300S[email protected]     log_info("hci_power_control_sleep");
49853144bce4Smatthias.ringwald 
4986b429b9b7Smatthias.ringwald #if 0
4987b429b9b7Smatthias.ringwald     // don't close serial port during sleep
4988b429b9b7Smatthias.ringwald 
498972ea5239Smatthias.ringwald     // close low-level device
49903a9fb326S[email protected]     hci_stack->hci_transport->close(hci_stack->config);
4991b429b9b7Smatthias.ringwald #endif
499272ea5239Smatthias.ringwald 
499372ea5239Smatthias.ringwald     // sleep mode
49943a9fb326S[email protected]     if (hci_stack->control && hci_stack->control->sleep){
4995d0b87befSMatthias Ringwald         (*hci_stack->control->sleep)();
499672ea5239Smatthias.ringwald     }
4997b429b9b7Smatthias.ringwald 
49983a9fb326S[email protected]     hci_stack->state = HCI_STATE_SLEEPING;
49998d213e1aSmatthias.ringwald }
50008d213e1aSmatthias.ringwald 
500140d1c7a4Smatthias.ringwald static int hci_power_control_wake(void){
5002b429b9b7Smatthias.ringwald 
50039da54300S[email protected]     log_info("hci_power_control_wake");
5004b429b9b7Smatthias.ringwald 
5005b429b9b7Smatthias.ringwald     // wake on
50063a9fb326S[email protected]     if (hci_stack->control && hci_stack->control->wake){
5007d0b87befSMatthias Ringwald         (*hci_stack->control->wake)();
5008b429b9b7Smatthias.ringwald     }
5009b429b9b7Smatthias.ringwald 
5010b429b9b7Smatthias.ringwald #if 0
5011b429b9b7Smatthias.ringwald     // open low-level device
50123a9fb326S[email protected]     int err = hci_stack->hci_transport->open(hci_stack->config);
5013b429b9b7Smatthias.ringwald     if (err){
50149da54300S[email protected]         log_error( "HCI_INIT failed, turning Bluetooth off again");
50153a9fb326S[email protected]         if (hci_stack->control && hci_stack->control->off){
5016d0b87befSMatthias Ringwald             (*hci_stack->control->off)();
5017b429b9b7Smatthias.ringwald         }
5018b429b9b7Smatthias.ringwald         hci_emit_hci_open_failed();
5019b429b9b7Smatthias.ringwald         return err;
5020b429b9b7Smatthias.ringwald     }
5021b429b9b7Smatthias.ringwald #endif
5022b429b9b7Smatthias.ringwald 
5023b429b9b7Smatthias.ringwald     return 0;
5024b429b9b7Smatthias.ringwald }
5025b429b9b7Smatthias.ringwald 
50260c88d5efSMatthias Ringwald static void hci_power_enter_initializing_state(void){
502744935e40S[email protected]     // set up state machine
502844935e40S[email protected]     hci_stack->num_cmd_packets = 1; // assume that one cmd can be sent
502902c7fc01SMatthias Ringwald     hci_stack->hci_packet_buffer_reserved = false;
503044935e40S[email protected]     hci_stack->state = HCI_STATE_INITIALIZING;
50316fe16221SMatthias Ringwald 
50320535e08cSMatthias Ringwald #ifndef HAVE_HOST_CONTROLLER_API
50336fe16221SMatthias Ringwald     if (hci_stack->chipset_pre_init) {
50346fe16221SMatthias Ringwald         hci_stack->substate = HCI_INIT_CUSTOM_PRE_INIT;
50350535e08cSMatthias Ringwald     } else
50360535e08cSMatthias Ringwald #endif
50370535e08cSMatthias Ringwald     {
50385c363727SMatthias Ringwald         hci_stack->substate = HCI_INIT_SEND_RESET;
503944935e40S[email protected]     }
50406fe16221SMatthias Ringwald }
5041b429b9b7Smatthias.ringwald 
50420c88d5efSMatthias Ringwald static void hci_power_enter_halting_state(void){
50430c88d5efSMatthias Ringwald #ifdef ENABLE_BLE
50441e907691SMatthias Ringwald     // drop entries scheduled for removal, mark others for re-adding
50451e907691SMatthias Ringwald     btstack_linked_list_iterator_t it;
50461e907691SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->le_whitelist);
50471e907691SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
50481e907691SMatthias Ringwald         whitelist_entry_t * entry = (whitelist_entry_t*) btstack_linked_list_iterator_next(&it);
50491e907691SMatthias Ringwald         if ((entry->state & (LE_WHITELIST_REMOVE_FROM_CONTROLLER | LE_WHITELIST_ADD_TO_CONTROLLER)) == LE_WHITELIST_REMOVE_FROM_CONTROLLER){
50501e907691SMatthias Ringwald             btstack_linked_list_iterator_remove(&it);
50511e907691SMatthias Ringwald             btstack_memory_whitelist_entry_free(entry);
50521e907691SMatthias Ringwald         } else {
50531e907691SMatthias Ringwald             entry->state = LE_WHITELIST_ADD_TO_CONTROLLER;
50541e907691SMatthias Ringwald         }
50551e907691SMatthias Ringwald     }
5056a2c9d908SMatthias Ringwald #ifdef ENABLE_LE_PERIODIC_ADVERTISING
5057e8d160b3SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->le_periodic_advertiser_list);
5058e8d160b3SMatthias Ringwald     const uint8_t mask = LE_PERIODIC_ADVERTISER_LIST_ENTRY_REMOVE_FROM_CONTROLLER | LE_PERIODIC_ADVERTISER_LIST_ENTRY_REMOVE_FROM_CONTROLLER;
5059e8d160b3SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
5060e8d160b3SMatthias Ringwald         periodic_advertiser_list_entry_t * entry = (periodic_advertiser_list_entry_t*) btstack_linked_list_iterator_next(&it);
5061e8d160b3SMatthias Ringwald         if ((entry->state & mask) == LE_PERIODIC_ADVERTISER_LIST_ENTRY_REMOVE_FROM_CONTROLLER) {
5062e8d160b3SMatthias Ringwald             btstack_linked_list_iterator_remove(&it);
5063e8d160b3SMatthias Ringwald             btstack_memory_periodic_advertiser_list_entry_free(entry);
5064e8d160b3SMatthias Ringwald         } else {
5065e8d160b3SMatthias Ringwald             entry->state |= LE_PERIODIC_ADVERTISER_LIST_ENTRY_ADD_TO_CONTROLLER;
5066e8d160b3SMatthias Ringwald             continue;
5067e8d160b3SMatthias Ringwald         }
5068e8d160b3SMatthias Ringwald     }
5069a2c9d908SMatthias Ringwald #endif
50700c88d5efSMatthias Ringwald #endif
5071184dbe2fSMatthias Ringwald     // see hci_run
5072184dbe2fSMatthias Ringwald     hci_stack->state = HCI_STATE_HALTING;
50730c88d5efSMatthias Ringwald     hci_stack->substate = HCI_HALTING_CLASSIC_STOP;
5074184dbe2fSMatthias Ringwald     // setup watchdog timer for disconnect - only triggers if Controller does not respond anymore
5075184dbe2fSMatthias Ringwald     btstack_run_loop_set_timer(&hci_stack->timeout, 1000);
5076184dbe2fSMatthias Ringwald     btstack_run_loop_set_timer_handler(&hci_stack->timeout, hci_halting_timeout_handler);
5077184dbe2fSMatthias Ringwald     btstack_run_loop_add_timer(&hci_stack->timeout);
5078184dbe2fSMatthias Ringwald }
5079184dbe2fSMatthias Ringwald 
508042bd3d77SMatthias Ringwald // returns error
508142bd3d77SMatthias Ringwald static int hci_power_control_state_off(HCI_POWER_MODE power_mode){
508242bd3d77SMatthias Ringwald     int err;
50838d213e1aSmatthias.ringwald     switch (power_mode){
50848d213e1aSmatthias.ringwald         case HCI_POWER_ON:
50858d213e1aSmatthias.ringwald             err = hci_power_control_on();
508642bd3d77SMatthias Ringwald             if (err != 0) {
5087f04a0c31SMatthias Ringwald                 log_error("hci_power_control_on() error %d", err);
508897b61c7bS[email protected]                 return err;
508997b61c7bS[email protected]             }
50900c88d5efSMatthias Ringwald             hci_power_enter_initializing_state();
50918d213e1aSmatthias.ringwald             break;
50928d213e1aSmatthias.ringwald         case HCI_POWER_OFF:
50938d213e1aSmatthias.ringwald             // do nothing
50948d213e1aSmatthias.ringwald             break;
50958d213e1aSmatthias.ringwald         case HCI_POWER_SLEEP:
5096b546ac54Smatthias.ringwald             // do nothing (with SLEEP == OFF)
50978d213e1aSmatthias.ringwald             break;
50987bbeb3adSMilanka Ringwald         default:
50997bbeb3adSMilanka Ringwald             btstack_assert(false);
51007bbeb3adSMilanka Ringwald             break;
51018d213e1aSmatthias.ringwald     }
510242bd3d77SMatthias Ringwald     return ERROR_CODE_SUCCESS;
510342bd3d77SMatthias Ringwald }
51047301ad89Smatthias.ringwald 
510542bd3d77SMatthias Ringwald static int hci_power_control_state_initializing(HCI_POWER_MODE power_mode){
51068d213e1aSmatthias.ringwald     switch (power_mode){
51078d213e1aSmatthias.ringwald         case HCI_POWER_ON:
51088d213e1aSmatthias.ringwald             // do nothing
51098d213e1aSmatthias.ringwald             break;
51108d213e1aSmatthias.ringwald         case HCI_POWER_OFF:
51118d213e1aSmatthias.ringwald             // no connections yet, just turn it off
51128d213e1aSmatthias.ringwald             hci_power_control_off();
51138d213e1aSmatthias.ringwald             break;
51148d213e1aSmatthias.ringwald         case HCI_POWER_SLEEP:
5115b546ac54Smatthias.ringwald             // no connections yet, just turn it off
511672ea5239Smatthias.ringwald             hci_power_control_sleep();
51178d213e1aSmatthias.ringwald             break;
51187bbeb3adSMilanka Ringwald         default:
51197bbeb3adSMilanka Ringwald             btstack_assert(false);
51207bbeb3adSMilanka Ringwald             break;
51218d213e1aSmatthias.ringwald     }
512242bd3d77SMatthias Ringwald     return ERROR_CODE_SUCCESS;
512342bd3d77SMatthias Ringwald }
51247301ad89Smatthias.ringwald 
512542bd3d77SMatthias Ringwald static int hci_power_control_state_working(HCI_POWER_MODE power_mode) {
51268d213e1aSmatthias.ringwald     switch (power_mode){
51278d213e1aSmatthias.ringwald         case HCI_POWER_ON:
51288d213e1aSmatthias.ringwald             // do nothing
51298d213e1aSmatthias.ringwald             break;
51308d213e1aSmatthias.ringwald         case HCI_POWER_OFF:
51310c88d5efSMatthias Ringwald             hci_power_enter_halting_state();
51328d213e1aSmatthias.ringwald             break;
51338d213e1aSmatthias.ringwald         case HCI_POWER_SLEEP:
5134b546ac54Smatthias.ringwald             // see hci_run
51353a9fb326S[email protected]             hci_stack->state = HCI_STATE_FALLING_ASLEEP;
513674b323a9SMatthias Ringwald             hci_stack->substate = HCI_FALLING_ASLEEP_DISCONNECT;
51378d213e1aSmatthias.ringwald             break;
51387bbeb3adSMilanka Ringwald         default:
51397bbeb3adSMilanka Ringwald             btstack_assert(false);
51407bbeb3adSMilanka Ringwald             break;
51418d213e1aSmatthias.ringwald     }
514242bd3d77SMatthias Ringwald     return ERROR_CODE_SUCCESS;
514342bd3d77SMatthias Ringwald }
51447301ad89Smatthias.ringwald 
514542bd3d77SMatthias Ringwald static int hci_power_control_state_halting(HCI_POWER_MODE power_mode) {
51468d213e1aSmatthias.ringwald     switch (power_mode){
51478d213e1aSmatthias.ringwald         case HCI_POWER_ON:
51480c88d5efSMatthias Ringwald             hci_power_enter_initializing_state();
51498d213e1aSmatthias.ringwald             break;
51508d213e1aSmatthias.ringwald         case HCI_POWER_OFF:
51518d213e1aSmatthias.ringwald             // do nothing
51528d213e1aSmatthias.ringwald             break;
51538d213e1aSmatthias.ringwald         case HCI_POWER_SLEEP:
5154b546ac54Smatthias.ringwald             // see hci_run
51553a9fb326S[email protected]             hci_stack->state = HCI_STATE_FALLING_ASLEEP;
515674b323a9SMatthias Ringwald             hci_stack->substate = HCI_FALLING_ASLEEP_DISCONNECT;
51578d213e1aSmatthias.ringwald             break;
51587bbeb3adSMilanka Ringwald         default:
51597bbeb3adSMilanka Ringwald             btstack_assert(false);
51607bbeb3adSMilanka Ringwald             break;
51618d213e1aSmatthias.ringwald     }
516200278272SMatthias Ringwald     return ERROR_CODE_SUCCESS;
516342bd3d77SMatthias Ringwald }
51648d213e1aSmatthias.ringwald 
516542bd3d77SMatthias Ringwald static int hci_power_control_state_falling_asleep(HCI_POWER_MODE power_mode) {
51668d213e1aSmatthias.ringwald     switch (power_mode){
51678d213e1aSmatthias.ringwald         case HCI_POWER_ON:
51680c88d5efSMatthias Ringwald             hci_power_enter_initializing_state();
51698d213e1aSmatthias.ringwald             break;
51708d213e1aSmatthias.ringwald         case HCI_POWER_OFF:
51710c88d5efSMatthias Ringwald             hci_power_enter_halting_state();
51728d213e1aSmatthias.ringwald             break;
51738d213e1aSmatthias.ringwald         case HCI_POWER_SLEEP:
5174b546ac54Smatthias.ringwald             // do nothing
51758d213e1aSmatthias.ringwald             break;
51767bbeb3adSMilanka Ringwald         default:
51777bbeb3adSMilanka Ringwald             btstack_assert(false);
51787bbeb3adSMilanka Ringwald             break;
51798d213e1aSmatthias.ringwald     }
518042bd3d77SMatthias Ringwald     return ERROR_CODE_SUCCESS;
518142bd3d77SMatthias Ringwald }
51828d213e1aSmatthias.ringwald 
518342bd3d77SMatthias Ringwald static int hci_power_control_state_sleeping(HCI_POWER_MODE power_mode) {
518442bd3d77SMatthias Ringwald     int err;
51858d213e1aSmatthias.ringwald     switch (power_mode){
51868d213e1aSmatthias.ringwald         case HCI_POWER_ON:
51873144bce4Smatthias.ringwald             err = hci_power_control_wake();
51883144bce4Smatthias.ringwald             if (err) return err;
51890c88d5efSMatthias Ringwald             hci_power_enter_initializing_state();
51908d213e1aSmatthias.ringwald             break;
51918d213e1aSmatthias.ringwald         case HCI_POWER_OFF:
51920c88d5efSMatthias Ringwald             hci_power_enter_halting_state();
51938d213e1aSmatthias.ringwald             break;
51948d213e1aSmatthias.ringwald         case HCI_POWER_SLEEP:
5195b546ac54Smatthias.ringwald             // do nothing
51968d213e1aSmatthias.ringwald             break;
51977bbeb3adSMilanka Ringwald         default:
51987bbeb3adSMilanka Ringwald             btstack_assert(false);
51997bbeb3adSMilanka Ringwald             break;
52008d213e1aSmatthias.ringwald     }
520142bd3d77SMatthias Ringwald     return ERROR_CODE_SUCCESS;
520242bd3d77SMatthias Ringwald }
52037bbeb3adSMilanka Ringwald 
520442bd3d77SMatthias Ringwald int hci_power_control(HCI_POWER_MODE power_mode){
520542bd3d77SMatthias Ringwald     log_info("hci_power_control: %d, current mode %u", power_mode, hci_stack->state);
5206bef627f1SMatthias Ringwald     btstack_run_loop_remove_timer(&hci_stack->timeout);
520724f87726SMatthias Ringwald     int err = 0;
520842bd3d77SMatthias Ringwald     switch (hci_stack->state){
520942bd3d77SMatthias Ringwald         case HCI_STATE_OFF:
521042bd3d77SMatthias Ringwald             err = hci_power_control_state_off(power_mode);
521142bd3d77SMatthias Ringwald             break;
521242bd3d77SMatthias Ringwald         case HCI_STATE_INITIALIZING:
521342bd3d77SMatthias Ringwald             err = hci_power_control_state_initializing(power_mode);
521442bd3d77SMatthias Ringwald             break;
521542bd3d77SMatthias Ringwald         case HCI_STATE_WORKING:
521642bd3d77SMatthias Ringwald             err = hci_power_control_state_working(power_mode);
521742bd3d77SMatthias Ringwald             break;
521842bd3d77SMatthias Ringwald         case HCI_STATE_HALTING:
521942bd3d77SMatthias Ringwald             err = hci_power_control_state_halting(power_mode);
522042bd3d77SMatthias Ringwald             break;
522142bd3d77SMatthias Ringwald         case HCI_STATE_FALLING_ASLEEP:
522242bd3d77SMatthias Ringwald             err = hci_power_control_state_falling_asleep(power_mode);
522342bd3d77SMatthias Ringwald             break;
522442bd3d77SMatthias Ringwald         case HCI_STATE_SLEEPING:
522542bd3d77SMatthias Ringwald             err = hci_power_control_state_sleeping(power_mode);
522642bd3d77SMatthias Ringwald             break;
52277bbeb3adSMilanka Ringwald         default:
52287bbeb3adSMilanka Ringwald             btstack_assert(false);
52297bbeb3adSMilanka Ringwald             break;
523011e23e5fSmatthias.ringwald     }
523124f87726SMatthias Ringwald     if (err != 0){
523242bd3d77SMatthias Ringwald         return err;
523342bd3d77SMatthias Ringwald     }
523468d92d03Smatthias.ringwald 
5235038bc64cSmatthias.ringwald     // create internal event
5236ee8bf225Smatthias.ringwald 	hci_emit_state();
5237ee8bf225Smatthias.ringwald 
523868d92d03Smatthias.ringwald 	// trigger next/first action
523968d92d03Smatthias.ringwald 	hci_run();
524068d92d03Smatthias.ringwald 
5241475c8125Smatthias.ringwald     return 0;
5242475c8125Smatthias.ringwald }
5243475c8125Smatthias.ringwald 
524435454696SMatthias Ringwald 
5245091e35e3SMatthias Ringwald static void hci_halting_run(void) {
5246091e35e3SMatthias Ringwald 
5247091e35e3SMatthias Ringwald     log_info("HCI_STATE_HALTING, substate %x\n", hci_stack->substate);
5248091e35e3SMatthias Ringwald 
5249091e35e3SMatthias Ringwald     hci_connection_t *connection;
5250d5f71a7eSMatthias Ringwald #ifdef ENABLE_BLE
5251d5f71a7eSMatthias Ringwald #ifdef ENABLE_LE_PERIPHERAL
5252911801caSMatthias Ringwald     bool stop_advertismenets;
5253d5f71a7eSMatthias Ringwald #endif
5254d5f71a7eSMatthias Ringwald #endif
5255091e35e3SMatthias Ringwald 
5256091e35e3SMatthias Ringwald     switch (hci_stack->substate) {
52570c88d5efSMatthias Ringwald         case HCI_HALTING_CLASSIC_STOP:
52580c88d5efSMatthias Ringwald #ifdef ENABLE_CLASSIC
5259911801caSMatthias Ringwald             if (!hci_can_send_command_packet_now()) return;
5260911801caSMatthias Ringwald 
52610c88d5efSMatthias Ringwald             if (hci_stack->connectable || hci_stack->discoverable){
52620c88d5efSMatthias Ringwald                 hci_stack->substate = HCI_HALTING_LE_ADV_STOP;
52630c88d5efSMatthias Ringwald                 hci_send_cmd(&hci_write_scan_enable, 0);
52640c88d5efSMatthias Ringwald                 return;
52650c88d5efSMatthias Ringwald             }
52660c88d5efSMatthias Ringwald #endif
52670c88d5efSMatthias Ringwald             /* fall through */
52680c88d5efSMatthias Ringwald 
52690c88d5efSMatthias Ringwald         case HCI_HALTING_LE_ADV_STOP:
52700c88d5efSMatthias Ringwald             hci_stack->substate = HCI_HALTING_LE_ADV_STOP;
52710c88d5efSMatthias Ringwald 
52720c88d5efSMatthias Ringwald #ifdef ENABLE_BLE
52730c88d5efSMatthias Ringwald #ifdef ENABLE_LE_PERIPHERAL
5274911801caSMatthias Ringwald             if (!hci_can_send_command_packet_now()) return;
5275911801caSMatthias Ringwald 
5276911801caSMatthias Ringwald             stop_advertismenets = (hci_stack->le_advertisements_state & LE_ADVERTISEMENT_STATE_ACTIVE) != 0;
5277911801caSMatthias Ringwald 
5278911801caSMatthias Ringwald #ifdef ENABLE_LE_EXTENDED_ADVERTISING
5279911801caSMatthias Ringwald             if (hci_extended_advertising_supported()){
5280c814a904SMatthias Ringwald #ifdef ENABLE_LE_PERIODIC_ADVERTISING
5281911801caSMatthias Ringwald                 btstack_linked_list_iterator_t it;
5282911801caSMatthias Ringwald                 btstack_linked_list_iterator_init(&it, &hci_stack->le_advertising_sets);
5283911801caSMatthias Ringwald                 // stop all periodic advertisements and check if an extended set is active
5284911801caSMatthias Ringwald                 while (btstack_linked_list_iterator_has_next(&it)){
5285911801caSMatthias Ringwald                     le_advertising_set_t * advertising_set = (le_advertising_set_t*) btstack_linked_list_iterator_next(&it);
5286911801caSMatthias Ringwald                     if ((advertising_set->state & LE_ADVERTISEMENT_STATE_PERIODIC_ACTIVE) != 0) {
5287911801caSMatthias Ringwald                         advertising_set->state &= ~LE_ADVERTISEMENT_STATE_PERIODIC_ACTIVE;
5288911801caSMatthias Ringwald                         hci_send_cmd(&hci_le_set_periodic_advertising_enable, 0, advertising_set->advertising_handle);
52890c88d5efSMatthias Ringwald                         return;
52900c88d5efSMatthias Ringwald                     }
5291911801caSMatthias Ringwald                     if ((advertising_set->state & LE_ADVERTISEMENT_STATE_ACTIVE) != 0) {
5292911801caSMatthias Ringwald                         stop_advertismenets = true;
5293911801caSMatthias Ringwald                         advertising_set->state &= ~LE_ADVERTISEMENT_STATE_ACTIVE;
5294911801caSMatthias Ringwald                     }
5295911801caSMatthias Ringwald                 }
5296c814a904SMatthias Ringwald #endif /* ENABLE_LE_PERIODIC_ADVERTISING */
5297911801caSMatthias Ringwald                 if (stop_advertismenets){
5298911801caSMatthias Ringwald                     hci_stack->le_advertisements_state &= ~LE_ADVERTISEMENT_STATE_ACTIVE;
5299911801caSMatthias Ringwald                     hci_send_cmd(&hci_le_set_extended_advertising_enable, 0, 0, NULL, NULL, NULL);
5300911801caSMatthias Ringwald                     return;
5301911801caSMatthias Ringwald                 }
5302d935373dSMatthias Ringwald             } else
5303a2c9d908SMatthias Ringwald #else /* ENABLE_LE_PERIPHERAL */
5304911801caSMatthias Ringwald             {
5305911801caSMatthias Ringwald                 if (stop_advertismenets) {
5306911801caSMatthias Ringwald                     hci_stack->le_advertisements_state &= ~LE_ADVERTISEMENT_STATE_ACTIVE;
5307911801caSMatthias Ringwald                     hci_send_cmd(&hci_le_set_advertise_enable, 0);
5308911801caSMatthias Ringwald                     return;
5309911801caSMatthias Ringwald                 }
5310911801caSMatthias Ringwald             }
5311911801caSMatthias Ringwald #endif  /* ENABLE_LE_EXTENDED_ADVERTISING*/
5312911801caSMatthias Ringwald #endif  /* ENABLE_LE_PERIPHERAL */
5313911801caSMatthias Ringwald #endif  /* ENABLE_BLE */
5314911801caSMatthias Ringwald 
53150c88d5efSMatthias Ringwald             /* fall through */
53160c88d5efSMatthias Ringwald 
53170c88d5efSMatthias Ringwald         case HCI_HALTING_LE_SCAN_STOP:
53180c88d5efSMatthias Ringwald             hci_stack->substate = HCI_HALTING_LE_SCAN_STOP;
5319911801caSMatthias Ringwald             if (!hci_can_send_command_packet_now()) return;
5320091e35e3SMatthias Ringwald 
5321091e35e3SMatthias Ringwald #ifdef ENABLE_BLE
5322091e35e3SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
53230c88d5efSMatthias Ringwald             if (hci_stack->le_scanning_active){
5324c42da3bcSMatthias Ringwald                 hci_le_scan_stop();
53250c88d5efSMatthias Ringwald                 hci_stack->substate = HCI_HALTING_DISCONNECT_ALL;
53260c88d5efSMatthias Ringwald                 return;
53270c88d5efSMatthias Ringwald             }
5328091e35e3SMatthias Ringwald #endif
5329091e35e3SMatthias Ringwald #endif
53300c88d5efSMatthias Ringwald 
53310c88d5efSMatthias Ringwald             /* fall through */
53320c88d5efSMatthias Ringwald 
53330c88d5efSMatthias Ringwald         case HCI_HALTING_DISCONNECT_ALL:
53340c88d5efSMatthias Ringwald             hci_stack->substate = HCI_HALTING_DISCONNECT_ALL;
5335911801caSMatthias Ringwald             if (!hci_can_send_command_packet_now()) return;
53360c88d5efSMatthias Ringwald 
5337091e35e3SMatthias Ringwald             // close all open connections
5338091e35e3SMatthias Ringwald             connection = (hci_connection_t *) hci_stack->connections;
5339091e35e3SMatthias Ringwald             if (connection) {
5340091e35e3SMatthias Ringwald                 hci_con_handle_t con_handle = (uint16_t) connection->con_handle;
5341091e35e3SMatthias Ringwald 
534203270f05SMatthias Ringwald                 log_info("HCI_STATE_HALTING, connection %p, handle %u, state %u", connection, con_handle, connection->state);
5343091e35e3SMatthias Ringwald 
534403270f05SMatthias Ringwald                 // check state
534503270f05SMatthias Ringwald                 switch(connection->state) {
534603270f05SMatthias Ringwald                     case SENT_DISCONNECT:
534703270f05SMatthias Ringwald                     case RECEIVED_DISCONNECTION_COMPLETE:
534803270f05SMatthias Ringwald                         // wait until connection is gone
534903270f05SMatthias Ringwald                         return;
535003270f05SMatthias Ringwald                     default:
535103270f05SMatthias Ringwald                         break;
535203270f05SMatthias Ringwald                 }
5353091e35e3SMatthias Ringwald 
5354091e35e3SMatthias Ringwald                 // finally, send the disconnect command
535503270f05SMatthias Ringwald                 connection->state = SENT_DISCONNECT;
5356091e35e3SMatthias Ringwald                 hci_send_cmd(&hci_disconnect, con_handle, ERROR_CODE_REMOTE_USER_TERMINATED_CONNECTION);
5357091e35e3SMatthias Ringwald                 return;
5358091e35e3SMatthias Ringwald             }
5359091e35e3SMatthias Ringwald 
5360346f8c2cSMatthias Ringwald #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
5361346f8c2cSMatthias Ringwald             // stop BIGs and BIG Syncs
5362346f8c2cSMatthias Ringwald             if (hci_stack->le_audio_bigs != NULL){
5363346f8c2cSMatthias Ringwald                 le_audio_big_t * big = (le_audio_big_t*) hci_stack->le_audio_bigs;
5364346f8c2cSMatthias Ringwald                 if (big->state == LE_AUDIO_BIG_STATE_W4_TERMINATED) return;
5365346f8c2cSMatthias Ringwald                 big->state = LE_AUDIO_BIG_STATE_W4_TERMINATED;
5366346f8c2cSMatthias Ringwald                 hci_send_cmd(&hci_le_terminate_big, big->big_handle);
5367346f8c2cSMatthias Ringwald                 return;
5368346f8c2cSMatthias Ringwald             }
5369346f8c2cSMatthias Ringwald             if (hci_stack->le_audio_big_syncs != NULL){
5370346f8c2cSMatthias Ringwald                 le_audio_big_sync_t * big_sync = (le_audio_big_sync_t*) hci_stack->le_audio_big_syncs;
5371346f8c2cSMatthias Ringwald                 if (big_sync->state == LE_AUDIO_BIG_STATE_W4_TERMINATED) return;
5372346f8c2cSMatthias Ringwald                 big_sync->state = LE_AUDIO_BIG_STATE_W4_TERMINATED;
5373346f8c2cSMatthias Ringwald                 hci_send_cmd(&hci_le_big_terminate_sync, big_sync->big_handle);
5374346f8c2cSMatthias Ringwald                 return;
5375346f8c2cSMatthias Ringwald             }
5376346f8c2cSMatthias Ringwald #endif
5377346f8c2cSMatthias Ringwald 
5378091e35e3SMatthias Ringwald             btstack_run_loop_remove_timer(&hci_stack->timeout);
5379091e35e3SMatthias Ringwald 
5380091e35e3SMatthias Ringwald             // no connections left, wait a bit to assert that btstack_cyrpto isn't waiting for an HCI event
5381091e35e3SMatthias Ringwald             log_info("HCI_STATE_HALTING: wait 50 ms");
53820c88d5efSMatthias Ringwald             hci_stack->substate = HCI_HALTING_W4_CLOSE_TIMER;
5383091e35e3SMatthias Ringwald             btstack_run_loop_set_timer(&hci_stack->timeout, 50);
5384091e35e3SMatthias Ringwald             btstack_run_loop_set_timer_handler(&hci_stack->timeout, hci_halting_timeout_handler);
5385091e35e3SMatthias Ringwald             btstack_run_loop_add_timer(&hci_stack->timeout);
5386091e35e3SMatthias Ringwald             break;
5387091e35e3SMatthias Ringwald 
5388b188b5fcSMatthias Ringwald         case HCI_HALTING_W4_CLOSE_TIMER:
5389b188b5fcSMatthias Ringwald             // keep waiting
5390b188b5fcSMatthias Ringwald             break;
5391b188b5fcSMatthias Ringwald 
5392091e35e3SMatthias Ringwald         case HCI_HALTING_CLOSE:
5393091e35e3SMatthias Ringwald             // close left over connections (that had not been properly closed before)
5394b188b5fcSMatthias Ringwald             hci_stack->substate = HCI_HALTING_CLOSE_DISCARDING_CONNECTIONS;
5395091e35e3SMatthias Ringwald             hci_discard_connections();
5396091e35e3SMatthias Ringwald 
5397091e35e3SMatthias Ringwald             log_info("HCI_STATE_HALTING, calling off");
5398091e35e3SMatthias Ringwald 
5399091e35e3SMatthias Ringwald             // switch mode
5400091e35e3SMatthias Ringwald             hci_power_control_off();
5401091e35e3SMatthias Ringwald 
5402091e35e3SMatthias Ringwald             log_info("HCI_STATE_HALTING, emitting state");
5403091e35e3SMatthias Ringwald             hci_emit_state();
5404091e35e3SMatthias Ringwald             log_info("HCI_STATE_HALTING, done");
5405091e35e3SMatthias Ringwald             break;
5406091e35e3SMatthias Ringwald 
5407091e35e3SMatthias Ringwald         default:
5408091e35e3SMatthias Ringwald             break;
5409091e35e3SMatthias Ringwald     }
5410091e35e3SMatthias Ringwald };
5411091e35e3SMatthias Ringwald 
5412091e35e3SMatthias Ringwald static void hci_falling_asleep_run(void){
5413091e35e3SMatthias Ringwald     hci_connection_t * connection;
5414091e35e3SMatthias Ringwald     switch(hci_stack->substate) {
5415091e35e3SMatthias Ringwald         case HCI_FALLING_ASLEEP_DISCONNECT:
5416091e35e3SMatthias Ringwald             log_info("HCI_STATE_FALLING_ASLEEP");
5417091e35e3SMatthias Ringwald             // close all open connections
5418091e35e3SMatthias Ringwald             connection =  (hci_connection_t *) hci_stack->connections;
5419091e35e3SMatthias Ringwald             if (connection){
5420091e35e3SMatthias Ringwald 
5421091e35e3SMatthias Ringwald                 // send disconnect
5422091e35e3SMatthias Ringwald                 if (!hci_can_send_command_packet_now()) return;
5423091e35e3SMatthias Ringwald 
5424091e35e3SMatthias Ringwald                 log_info("HCI_STATE_FALLING_ASLEEP, connection %p, handle %u", connection, (uint16_t)connection->con_handle);
5425091e35e3SMatthias Ringwald                 hci_send_cmd(&hci_disconnect, connection->con_handle, ERROR_CODE_REMOTE_USER_TERMINATED_CONNECTION);
5426091e35e3SMatthias Ringwald 
5427091e35e3SMatthias Ringwald                 // send disconnected event right away - causes higher layer connections to get closed, too.
5428091e35e3SMatthias Ringwald                 hci_shutdown_connection(connection);
5429091e35e3SMatthias Ringwald                 return;
5430091e35e3SMatthias Ringwald             }
5431091e35e3SMatthias Ringwald 
5432091e35e3SMatthias Ringwald             if (hci_classic_supported()){
5433091e35e3SMatthias Ringwald                 // disable page and inquiry scan
5434091e35e3SMatthias Ringwald                 if (!hci_can_send_command_packet_now()) return;
5435091e35e3SMatthias Ringwald 
5436091e35e3SMatthias Ringwald                 log_info("HCI_STATE_HALTING, disabling inq scans");
5437091e35e3SMatthias Ringwald                 hci_send_cmd(&hci_write_scan_enable, hci_stack->connectable << 1); // drop inquiry scan but keep page scan
5438091e35e3SMatthias Ringwald 
5439091e35e3SMatthias Ringwald                 // continue in next sub state
5440091e35e3SMatthias Ringwald                 hci_stack->substate = HCI_FALLING_ASLEEP_W4_WRITE_SCAN_ENABLE;
5441091e35e3SMatthias Ringwald                 break;
5442091e35e3SMatthias Ringwald             }
5443091e35e3SMatthias Ringwald 
5444091e35e3SMatthias Ringwald             /* fall through */
5445091e35e3SMatthias Ringwald 
5446091e35e3SMatthias Ringwald             case HCI_FALLING_ASLEEP_COMPLETE:
5447091e35e3SMatthias Ringwald                 log_info("HCI_STATE_HALTING, calling sleep");
5448091e35e3SMatthias Ringwald                 // switch mode
5449091e35e3SMatthias Ringwald                 hci_power_control_sleep();  // changes hci_stack->state to SLEEP
5450091e35e3SMatthias Ringwald                 hci_emit_state();
5451091e35e3SMatthias Ringwald                 break;
5452091e35e3SMatthias Ringwald 
5453091e35e3SMatthias Ringwald                 default:
5454091e35e3SMatthias Ringwald                     break;
5455091e35e3SMatthias Ringwald     }
5456091e35e3SMatthias Ringwald }
5457091e35e3SMatthias Ringwald 
545835454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
545935454696SMatthias Ringwald 
5460758b46ceSmatthias.ringwald static void hci_update_scan_enable(void){
5461758b46ceSmatthias.ringwald     // 2 = page scan, 1 = inq scan
5462a1df452eSMatthias Ringwald     hci_stack->new_scan_enable_value  = (hci_stack->connectable << 1) | hci_stack->discoverable;
5463baa4881eSMatthias Ringwald     hci_stack->gap_tasks_classic |= GAP_TASK_WRITE_SCAN_ENABLE;
5464758b46ceSmatthias.ringwald     hci_run();
5465758b46ceSmatthias.ringwald }
5466758b46ceSmatthias.ringwald 
546715a95bd5SMatthias Ringwald void gap_discoverable_control(uint8_t enable){
5468381fbed8Smatthias.ringwald     if (enable) enable = 1; // normalize argument
5469381fbed8Smatthias.ringwald 
54703a9fb326S[email protected]     if (hci_stack->discoverable == enable){
547171fd255dSMatthias Ringwald         hci_emit_scan_mode_changed(hci_stack->discoverable, hci_stack->connectable);
5472381fbed8Smatthias.ringwald         return;
5473381fbed8Smatthias.ringwald     }
5474381fbed8Smatthias.ringwald 
54753a9fb326S[email protected]     hci_stack->discoverable = enable;
5476758b46ceSmatthias.ringwald     hci_update_scan_enable();
5477758b46ceSmatthias.ringwald }
5478b031bebbSmatthias.ringwald 
547915a95bd5SMatthias Ringwald void gap_connectable_control(uint8_t enable){
5480758b46ceSmatthias.ringwald     if (enable) enable = 1; // normalize argument
5481758b46ceSmatthias.ringwald 
5482758b46ceSmatthias.ringwald     // don't emit event
54833a9fb326S[email protected]     if (hci_stack->connectable == enable) return;
5484758b46ceSmatthias.ringwald 
54853a9fb326S[email protected]     hci_stack->connectable = enable;
5486758b46ceSmatthias.ringwald     hci_update_scan_enable();
5487381fbed8Smatthias.ringwald }
548835454696SMatthias Ringwald #endif
5489381fbed8Smatthias.ringwald 
549015a95bd5SMatthias Ringwald void gap_local_bd_addr(bd_addr_t address_buffer){
54916535961aSMatthias Ringwald     (void)memcpy(address_buffer, hci_stack->local_bd_addr, 6);
54925061f3afS[email protected] }
54935061f3afS[email protected] 
54942b838201SMatthias Ringwald #ifdef ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL
54952b838201SMatthias Ringwald static void hci_host_num_completed_packets(void){
54962b838201SMatthias Ringwald 
54972b838201SMatthias Ringwald     // create packet manually as arrays are not supported and num_commands should not get reduced
54982b838201SMatthias Ringwald     hci_reserve_packet_buffer();
54992b838201SMatthias Ringwald     uint8_t * packet = hci_get_outgoing_packet_buffer();
55002b838201SMatthias Ringwald 
55012b838201SMatthias Ringwald     uint16_t size = 0;
55022b838201SMatthias Ringwald     uint16_t num_handles = 0;
55032b838201SMatthias Ringwald     packet[size++] = 0x35;
55042b838201SMatthias Ringwald     packet[size++] = 0x0c;
55052b838201SMatthias Ringwald     size++;  // skip param len
55062b838201SMatthias Ringwald     size++;  // skip num handles
55072b838201SMatthias Ringwald 
55082b838201SMatthias Ringwald     // add { handle, packets } entries
55092b838201SMatthias Ringwald     btstack_linked_item_t * it;
55102b838201SMatthias Ringwald     for (it = (btstack_linked_item_t *) hci_stack->connections; it ; it = it->next){
55112b838201SMatthias Ringwald         hci_connection_t * connection = (hci_connection_t *) it;
55122b838201SMatthias Ringwald         if (connection->num_packets_completed){
55132b838201SMatthias Ringwald             little_endian_store_16(packet, size, connection->con_handle);
55142b838201SMatthias Ringwald             size += 2;
55152b838201SMatthias Ringwald             little_endian_store_16(packet, size, connection->num_packets_completed);
55162b838201SMatthias Ringwald             size += 2;
55172b838201SMatthias Ringwald             //
55182b838201SMatthias Ringwald             num_handles++;
55192b838201SMatthias Ringwald             connection->num_packets_completed = 0;
55202b838201SMatthias Ringwald         }
55212b838201SMatthias Ringwald     }
55222b838201SMatthias Ringwald 
55232b838201SMatthias Ringwald     packet[2] = size - 3;
55242b838201SMatthias Ringwald     packet[3] = num_handles;
55252b838201SMatthias Ringwald 
55262b838201SMatthias Ringwald     hci_stack->host_completed_packets = 0;
55272b838201SMatthias Ringwald 
55282b838201SMatthias Ringwald     hci_dump_packet(HCI_COMMAND_DATA_PACKET, 0, packet, size);
55292b838201SMatthias Ringwald     hci_stack->hci_transport->send_packet(HCI_COMMAND_DATA_PACKET, packet, size);
55302b838201SMatthias Ringwald 
55312b838201SMatthias Ringwald     // release packet buffer for synchronous transport implementations
55322b838201SMatthias Ringwald     if (hci_transport_synchronous()){
5533e2d22487SMatthias Ringwald         hci_release_packet_buffer();
5534068b8592SMatthias Ringwald         hci_emit_transport_packet_sent();
55352b838201SMatthias Ringwald     }
55362b838201SMatthias Ringwald }
55372b838201SMatthias Ringwald #endif
55382b838201SMatthias Ringwald 
553926fe9592SMatthias Ringwald static void hci_halting_timeout_handler(btstack_timer_source_t * ds){
554026fe9592SMatthias Ringwald     UNUSED(ds);
554126fe9592SMatthias Ringwald     hci_stack->substate = HCI_HALTING_CLOSE;
5542f021201aSMatthias Ringwald     hci_halting_run();
554326fe9592SMatthias Ringwald }
554426fe9592SMatthias Ringwald 
5545f30077b7SMatthias Ringwald static bool hci_run_acl_fragments(void){
55464ea43905SMatthias Ringwald     if (hci_stack->acl_fragmentation_total_size > 0u) {
5547b5d8b22bS[email protected]         hci_con_handle_t con_handle = READ_ACL_CONNECTION_HANDLE(hci_stack->hci_packet_buffer);
5548b5d8b22bS[email protected]         hci_connection_t *connection = hci_connection_for_handle(con_handle);
5549b5d8b22bS[email protected]         if (connection) {
555028a0332dSMatthias Ringwald             if (hci_can_send_prepared_acl_packet_now(con_handle)){
5551b5d8b22bS[email protected]                 hci_send_acl_packet_fragments(connection);
5552f30077b7SMatthias Ringwald                 return true;
5553b5d8b22bS[email protected]             }
555428a0332dSMatthias Ringwald         } else {
5555b5d8b22bS[email protected]             // connection gone -> discard further fragments
555628a0332dSMatthias Ringwald             log_info("hci_run: fragmented ACL packet no connection -> discard fragment");
5557b5d8b22bS[email protected]             hci_stack->acl_fragmentation_total_size = 0;
5558b5d8b22bS[email protected]             hci_stack->acl_fragmentation_pos = 0;
5559b5d8b22bS[email protected]         }
5560b5d8b22bS[email protected]     }
5561f30077b7SMatthias Ringwald     return false;
55622b838201SMatthias Ringwald }
5563b031bebbSmatthias.ringwald 
556468ab6207SMatthias Ringwald #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
556568ab6207SMatthias Ringwald static bool hci_run_iso_fragments(void){
556668ab6207SMatthias Ringwald     if (hci_stack->iso_fragmentation_total_size > 0u) {
556768ab6207SMatthias Ringwald         // TODO: flow control
556868ab6207SMatthias Ringwald         if (hci_transport_can_send_prepared_packet_now(HCI_ISO_DATA_PACKET)){
556968ab6207SMatthias Ringwald             hci_send_iso_packet_fragments();
557068ab6207SMatthias Ringwald             return true;
557168ab6207SMatthias Ringwald         }
557268ab6207SMatthias Ringwald     }
557368ab6207SMatthias Ringwald     return false;
557468ab6207SMatthias Ringwald }
557568ab6207SMatthias Ringwald #endif
557668ab6207SMatthias Ringwald 
557735454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
55786c0d5426SMatthias Ringwald 
55796c0d5426SMatthias Ringwald #ifdef ENABLE_HCI_SERIALIZED_CONTROLLER_OPERATIONS
55806c0d5426SMatthias Ringwald static bool hci_classic_operation_active(void) {
55816c0d5426SMatthias Ringwald     if (hci_stack->inquiry_state >= GAP_INQUIRY_STATE_W4_ACTIVE){
55826c0d5426SMatthias Ringwald         return true;
55836c0d5426SMatthias Ringwald     }
55846c0d5426SMatthias Ringwald     if (hci_stack->remote_name_state == GAP_REMOTE_NAME_STATE_W4_COMPLETE){
55856c0d5426SMatthias Ringwald         return true;
55866c0d5426SMatthias Ringwald     }
55876c0d5426SMatthias Ringwald     btstack_linked_item_t * it;
55886c0d5426SMatthias Ringwald     for (it = (btstack_linked_item_t *) hci_stack->connections; it != NULL; it = it->next) {
55896c0d5426SMatthias Ringwald         hci_connection_t *connection = (hci_connection_t *) it;
55906c0d5426SMatthias Ringwald         switch (connection->state) {
55916c0d5426SMatthias Ringwald             case SENT_CREATE_CONNECTION:
55926c0d5426SMatthias Ringwald             case SENT_CANCEL_CONNECTION:
55936c0d5426SMatthias Ringwald             case SENT_DISCONNECT:
55946c0d5426SMatthias Ringwald                 return true;
55956c0d5426SMatthias Ringwald             default:
55966c0d5426SMatthias Ringwald                 break;
55976c0d5426SMatthias Ringwald         }
55986c0d5426SMatthias Ringwald     }
55996c0d5426SMatthias Ringwald     return false;
56006c0d5426SMatthias Ringwald }
56016c0d5426SMatthias Ringwald #endif
56026c0d5426SMatthias Ringwald 
5603f30077b7SMatthias Ringwald static bool hci_run_general_gap_classic(void){
5604f30077b7SMatthias Ringwald 
560559d59ecfSMatthias Ringwald     // assert stack is working and classic is active
560659d59ecfSMatthias Ringwald     if (hci_classic_supported() == false)      return false;
560759d59ecfSMatthias Ringwald     if (hci_stack->state != HCI_STATE_WORKING) return false;
560859d59ecfSMatthias Ringwald 
5609b031bebbSmatthias.ringwald     // decline incoming connections
56103a9fb326S[email protected]     if (hci_stack->decline_reason){
56113a9fb326S[email protected]         uint8_t reason = hci_stack->decline_reason;
56123a9fb326S[email protected]         hci_stack->decline_reason = 0;
56133a9fb326S[email protected]         hci_send_cmd(&hci_reject_connection_request, hci_stack->decline_addr, reason);
5614f30077b7SMatthias Ringwald         return true;
5615ce4c8fabSmatthias.ringwald     }
561659d59ecfSMatthias Ringwald 
5617baa4881eSMatthias Ringwald     if (hci_stack->gap_tasks_classic != 0){
5618ab4831a3SMatthias Ringwald         hci_run_gap_tasks_classic();
5619f30077b7SMatthias Ringwald         return true;
5620b031bebbSmatthias.ringwald     }
562127741fe7SMatthias Ringwald 
5622f5875de5SMatthias Ringwald     // start/stop inquiry
5623a1df452eSMatthias Ringwald     if ((hci_stack->inquiry_state >= GAP_INQUIRY_DURATION_MIN) && (hci_stack->inquiry_state <= GAP_INQUIRY_DURATION_MAX)){
56246c0d5426SMatthias Ringwald #ifdef ENABLE_HCI_SERIALIZED_CONTROLLER_OPERATIONS
56256c0d5426SMatthias Ringwald         if (hci_classic_operation_active() == false)
56266c0d5426SMatthias Ringwald #endif
56276c0d5426SMatthias Ringwald         {
5628f5875de5SMatthias Ringwald             uint8_t duration = hci_stack->inquiry_state;
5629beb3c81dSMatthias Ringwald             hci_stack->inquiry_state = GAP_INQUIRY_STATE_W4_ACTIVE;
563030199e24SMatthias Ringwald             if (hci_stack->inquiry_max_period_length != 0){
563130199e24SMatthias Ringwald                 hci_send_cmd(&hci_periodic_inquiry_mode, hci_stack->inquiry_max_period_length, hci_stack->inquiry_min_period_length, hci_stack->inquiry_lap, duration, 0);
563230199e24SMatthias Ringwald             } else {
5633496bb884SMatthias Ringwald                 hci_send_cmd(&hci_inquiry, hci_stack->inquiry_lap, duration, 0);
563430199e24SMatthias Ringwald             }
5635f30077b7SMatthias Ringwald             return true;
5636f5875de5SMatthias Ringwald         }
56376c0d5426SMatthias Ringwald     }
5638f5875de5SMatthias Ringwald     if (hci_stack->inquiry_state == GAP_INQUIRY_STATE_W2_CANCEL){
5639f5875de5SMatthias Ringwald         hci_stack->inquiry_state = GAP_INQUIRY_STATE_W4_CANCELLED;
5640f5875de5SMatthias Ringwald         hci_send_cmd(&hci_inquiry_cancel);
5641f30077b7SMatthias Ringwald         return true;
5642f5875de5SMatthias Ringwald     }
564330199e24SMatthias Ringwald 
564430199e24SMatthias Ringwald     if (hci_stack->inquiry_state == GAP_INQUIRY_STATE_W2_EXIT_PERIODIC){
5645bc06f564SMatthias Ringwald         hci_stack->inquiry_state = GAP_INQUIRY_STATE_W4_CANCELLED;
564630199e24SMatthias Ringwald         hci_send_cmd(&hci_exit_periodic_inquiry_mode);
564730199e24SMatthias Ringwald         return true;
564830199e24SMatthias Ringwald     }
564930199e24SMatthias Ringwald 
5650b7f1ee76SMatthias Ringwald     // remote name request
5651b7f1ee76SMatthias Ringwald     if (hci_stack->remote_name_state == GAP_REMOTE_NAME_STATE_W2_SEND){
56526c0d5426SMatthias Ringwald #ifdef ENABLE_HCI_SERIALIZED_CONTROLLER_OPERATIONS
56536c0d5426SMatthias Ringwald         if (hci_classic_operation_active() == false)
56546c0d5426SMatthias Ringwald #endif
56556c0d5426SMatthias Ringwald         {
5656b7f1ee76SMatthias Ringwald             hci_stack->remote_name_state = GAP_REMOTE_NAME_STATE_W4_COMPLETE;
5657b7f1ee76SMatthias Ringwald             hci_send_cmd(&hci_remote_name_request, hci_stack->remote_name_addr,
5658ee8a36c8SMatthias Ringwald                          hci_stack->remote_name_page_scan_repetition_mode, 0, hci_stack->remote_name_clock_offset);
5659f30077b7SMatthias Ringwald             return true;
5660b7f1ee76SMatthias Ringwald         }
56616c0d5426SMatthias Ringwald     }
5662cf01e888SMatthias Ringwald #ifdef ENABLE_CLASSIC_PAIRING_OOB
5663cf01e888SMatthias Ringwald     // Local OOB data
566459d59ecfSMatthias Ringwald     if (hci_stack->classic_read_local_oob_data){
5665cf01e888SMatthias Ringwald         hci_stack->classic_read_local_oob_data = false;
56661e83575aSMatthias Ringwald         if (hci_command_supported(SUPPORTED_HCI_COMMAND_READ_LOCAL_OOB_EXTENDED_DATA_COMMAND)){
5667cf01e888SMatthias Ringwald             hci_send_cmd(&hci_read_local_extended_oob_data);
5668cf01e888SMatthias Ringwald         } else {
5669cf01e888SMatthias Ringwald             hci_send_cmd(&hci_read_local_oob_data);
5670cf01e888SMatthias Ringwald         }
5671cf01e888SMatthias Ringwald     }
5672cf01e888SMatthias Ringwald #endif
56730a51f88bSMatthias Ringwald     // pairing
56740a51f88bSMatthias Ringwald     if (hci_stack->gap_pairing_state != GAP_PAIRING_STATE_IDLE){
56750a51f88bSMatthias Ringwald         uint8_t state = hci_stack->gap_pairing_state;
56763f659ee4SMilanka Ringwald         uint8_t pin_code[16];
56770a51f88bSMatthias Ringwald         switch (state){
56780a51f88bSMatthias Ringwald             case GAP_PAIRING_STATE_SEND_PIN:
5679cc15bb2cSMatthias Ringwald                 hci_stack->gap_pairing_state = GAP_PAIRING_STATE_IDLE;
56803f659ee4SMilanka Ringwald                 memset(pin_code, 0, 16);
56813f659ee4SMilanka Ringwald                 memcpy(pin_code, hci_stack->gap_pairing_input.gap_pairing_pin, hci_stack->gap_pairing_pin_len);
56823f659ee4SMilanka Ringwald                 hci_send_cmd(&hci_pin_code_request_reply, hci_stack->gap_pairing_addr, hci_stack->gap_pairing_pin_len, pin_code);
56830a51f88bSMatthias Ringwald                 break;
56840a51f88bSMatthias Ringwald             case GAP_PAIRING_STATE_SEND_PIN_NEGATIVE:
5685cc15bb2cSMatthias Ringwald                 hci_stack->gap_pairing_state = GAP_PAIRING_STATE_WAIT_FOR_COMMAND_COMPLETE;
56860a51f88bSMatthias Ringwald                 hci_send_cmd(&hci_pin_code_request_negative_reply, hci_stack->gap_pairing_addr);
56870a51f88bSMatthias Ringwald                 break;
56880a51f88bSMatthias Ringwald             case GAP_PAIRING_STATE_SEND_PASSKEY:
5689cc15bb2cSMatthias Ringwald                 hci_stack->gap_pairing_state = GAP_PAIRING_STATE_IDLE;
5690d504181aSMatthias Ringwald                 hci_send_cmd(&hci_user_passkey_request_reply, hci_stack->gap_pairing_addr, hci_stack->gap_pairing_input.gap_pairing_passkey);
56910a51f88bSMatthias Ringwald                 break;
56920a51f88bSMatthias Ringwald             case GAP_PAIRING_STATE_SEND_PASSKEY_NEGATIVE:
5693cc15bb2cSMatthias Ringwald                 hci_stack->gap_pairing_state = GAP_PAIRING_STATE_WAIT_FOR_COMMAND_COMPLETE;
56940a51f88bSMatthias Ringwald                 hci_send_cmd(&hci_user_passkey_request_negative_reply, hci_stack->gap_pairing_addr);
56950a51f88bSMatthias Ringwald                 break;
56960a51f88bSMatthias Ringwald             case GAP_PAIRING_STATE_SEND_CONFIRMATION:
5697cc15bb2cSMatthias Ringwald                 hci_stack->gap_pairing_state = GAP_PAIRING_STATE_IDLE;
56980a51f88bSMatthias Ringwald                 hci_send_cmd(&hci_user_confirmation_request_reply, hci_stack->gap_pairing_addr);
56990a51f88bSMatthias Ringwald                 break;
57000a51f88bSMatthias Ringwald             case GAP_PAIRING_STATE_SEND_CONFIRMATION_NEGATIVE:
5701cc15bb2cSMatthias Ringwald                 hci_stack->gap_pairing_state = GAP_PAIRING_STATE_WAIT_FOR_COMMAND_COMPLETE;
57020a51f88bSMatthias Ringwald                 hci_send_cmd(&hci_user_confirmation_request_negative_reply, hci_stack->gap_pairing_addr);
57030a51f88bSMatthias Ringwald                 break;
57040a51f88bSMatthias Ringwald             default:
57050a51f88bSMatthias Ringwald                 break;
57060a51f88bSMatthias Ringwald         }
5707f30077b7SMatthias Ringwald         return true;
5708f30077b7SMatthias Ringwald     }
5709f30077b7SMatthias Ringwald     return false;
57100a51f88bSMatthias Ringwald }
571135454696SMatthias Ringwald #endif
5712b031bebbSmatthias.ringwald 
5713a9a4c409SMatthias Ringwald #ifdef ENABLE_BLE
5714be7ef9d8SMatthias Ringwald 
57157eb5b27eSMatthias Ringwald #ifdef ENABLE_LE_EXTENDED_ADVERTISING
57167eb5b27eSMatthias Ringwald static uint8_t hci_le_num_phys(uint8_t phys){
57177eb5b27eSMatthias Ringwald     const uint8_t num_bits_set[] = { 0, 1, 1, 2, 1, 2, 2, 3 };
57187eb5b27eSMatthias Ringwald     btstack_assert(phys);
57197eb5b27eSMatthias Ringwald     return num_bits_set[phys];
57207eb5b27eSMatthias Ringwald }
57217eb5b27eSMatthias Ringwald #endif
57227eb5b27eSMatthias Ringwald 
5723c42da3bcSMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
5724c42da3bcSMatthias Ringwald static void hci_le_scan_stop(void){
5725c42da3bcSMatthias Ringwald #ifdef ENABLE_LE_EXTENDED_ADVERTISING
5726c42da3bcSMatthias Ringwald     if (hci_extended_advertising_supported()) {
5727c42da3bcSMatthias Ringwald             hci_send_cmd(&hci_le_set_extended_scan_enable, 0, 0, 0, 0);
5728c42da3bcSMatthias Ringwald     } else
5729c42da3bcSMatthias Ringwald #endif
5730c42da3bcSMatthias Ringwald     {
5731c42da3bcSMatthias Ringwald         hci_send_cmd(&hci_le_set_scan_enable, 0, 0);
5732c42da3bcSMatthias Ringwald     }
5733c42da3bcSMatthias Ringwald }
5734327f7f07SMatthias Ringwald 
5735f346015eSMatthias Ringwald static void
5736f346015eSMatthias Ringwald hci_send_le_create_connection(uint8_t initiator_filter_policy, bd_addr_type_t address_type, uint8_t *address) {
5737327f7f07SMatthias Ringwald #ifdef ENABLE_LE_EXTENDED_ADVERTISING
5738327f7f07SMatthias Ringwald     if (hci_extended_advertising_supported()) {
57397eb5b27eSMatthias Ringwald         // prepare arrays for all phys (LE Coded, LE 1M, LE 2M PHY)
57407eb5b27eSMatthias Ringwald         uint16_t le_connection_scan_interval[3];
57417eb5b27eSMatthias Ringwald         uint16_t le_connection_scan_window[3];
57427eb5b27eSMatthias Ringwald         uint16_t le_connection_interval_min[3];
57437eb5b27eSMatthias Ringwald         uint16_t le_connection_interval_max[3];
57447eb5b27eSMatthias Ringwald         uint16_t le_connection_latency[3];
57457eb5b27eSMatthias Ringwald         uint16_t le_supervision_timeout[3];
57467eb5b27eSMatthias Ringwald         uint16_t le_minimum_ce_length[3];
57477eb5b27eSMatthias Ringwald         uint16_t le_maximum_ce_length[3];
57487eb5b27eSMatthias Ringwald 
57497eb5b27eSMatthias Ringwald         uint8_t i;
57507eb5b27eSMatthias Ringwald         uint8_t num_phys = hci_le_num_phys(hci_stack->le_connection_phys);
57517eb5b27eSMatthias Ringwald         for (i=0;i<num_phys;i++){
57527eb5b27eSMatthias Ringwald             le_connection_scan_interval[i] = hci_stack->le_connection_scan_interval;
57537eb5b27eSMatthias Ringwald             le_connection_scan_window[i]   = hci_stack->le_connection_scan_window;
57547eb5b27eSMatthias Ringwald             le_connection_interval_min[i]  = hci_stack->le_connection_interval_min;
57557eb5b27eSMatthias Ringwald             le_connection_interval_max[i]  = hci_stack->le_connection_interval_max;
57567eb5b27eSMatthias Ringwald             le_connection_latency[i]       = hci_stack->le_connection_latency;
57577eb5b27eSMatthias Ringwald             le_supervision_timeout[i]      = hci_stack->le_supervision_timeout;
57587eb5b27eSMatthias Ringwald             le_minimum_ce_length[i]        = hci_stack->le_minimum_ce_length;
57597eb5b27eSMatthias Ringwald             le_maximum_ce_length[i]        = hci_stack->le_maximum_ce_length;
57607eb5b27eSMatthias Ringwald         }
5761327f7f07SMatthias Ringwald         hci_send_cmd(&hci_le_extended_create_connection,
5762f346015eSMatthias Ringwald                      initiator_filter_policy,
5763327f7f07SMatthias Ringwald                      hci_stack->le_connection_own_addr_type,   // our addr type:
5764f346015eSMatthias Ringwald                      address_type,                  // peer address type
5765f346015eSMatthias Ringwald                      address,                       // peer bd addr
57667eb5b27eSMatthias Ringwald                      hci_stack->le_connection_phys, // initiating PHY
5767327f7f07SMatthias Ringwald                      le_connection_scan_interval,   // conn scan interval
5768327f7f07SMatthias Ringwald                      le_connection_scan_window,     // conn scan windows
5769327f7f07SMatthias Ringwald                      le_connection_interval_min,    // conn interval min
5770327f7f07SMatthias Ringwald                      le_connection_interval_max,    // conn interval max
5771327f7f07SMatthias Ringwald                      le_connection_latency,         // conn latency
5772327f7f07SMatthias Ringwald                      le_supervision_timeout,        // conn latency
5773327f7f07SMatthias Ringwald                      le_minimum_ce_length,          // min ce length
5774327f7f07SMatthias Ringwald                      le_maximum_ce_length           // max ce length
5775327f7f07SMatthias Ringwald         );
5776d935373dSMatthias Ringwald     } else
5777327f7f07SMatthias Ringwald #endif
5778327f7f07SMatthias Ringwald     {
5779327f7f07SMatthias Ringwald         hci_send_cmd(&hci_le_create_connection,
5780327f7f07SMatthias Ringwald                      hci_stack->le_connection_scan_interval,  // conn scan interval
5781327f7f07SMatthias Ringwald                      hci_stack->le_connection_scan_window,    // conn scan windows
5782f346015eSMatthias Ringwald                      initiator_filter_policy,                 // don't use whitelist
5783f346015eSMatthias Ringwald                      address_type,                            // peer address type
5784f346015eSMatthias Ringwald                      address,                                 // peer bd addr
5785327f7f07SMatthias Ringwald                      hci_stack->le_connection_own_addr_type,  // our addr type:
5786327f7f07SMatthias Ringwald                      hci_stack->le_connection_interval_min,   // conn interval min
5787327f7f07SMatthias Ringwald                      hci_stack->le_connection_interval_max,   // conn interval max
5788327f7f07SMatthias Ringwald                      hci_stack->le_connection_latency,        // conn latency
5789327f7f07SMatthias Ringwald                      hci_stack->le_supervision_timeout,       // conn latency
5790327f7f07SMatthias Ringwald                      hci_stack->le_minimum_ce_length,         // min ce length
5791327f7f07SMatthias Ringwald                      hci_stack->le_maximum_ce_length          // max ce length
5792327f7f07SMatthias Ringwald         );
5793327f7f07SMatthias Ringwald     }
5794327f7f07SMatthias Ringwald }
5795c42da3bcSMatthias Ringwald #endif
5796c42da3bcSMatthias Ringwald 
5797be7ef9d8SMatthias Ringwald #ifdef ENABLE_LE_PERIPHERAL
5798be7ef9d8SMatthias Ringwald #ifdef ENABLE_LE_EXTENDED_ADVERTISING
5799be7ef9d8SMatthias Ringwald uint8_t hci_le_extended_advertising_operation_for_chunk(uint16_t pos, uint16_t len){
5800be7ef9d8SMatthias Ringwald     uint8_t  operation = 0;
5801be7ef9d8SMatthias Ringwald     if (pos == 0){
5802be7ef9d8SMatthias Ringwald         // first fragment or complete data
5803be7ef9d8SMatthias Ringwald         operation |= 1;
5804be7ef9d8SMatthias Ringwald     }
5805be7ef9d8SMatthias Ringwald     if (pos + LE_EXTENDED_ADVERTISING_MAX_CHUNK_LEN >= len){
5806be7ef9d8SMatthias Ringwald         // last fragment or complete data
5807be7ef9d8SMatthias Ringwald         operation |= 2;
5808be7ef9d8SMatthias Ringwald     }
5809be7ef9d8SMatthias Ringwald     return operation;
5810be7ef9d8SMatthias Ringwald }
5811be7ef9d8SMatthias Ringwald #endif
5812be7ef9d8SMatthias Ringwald #endif
5813be7ef9d8SMatthias Ringwald 
5814f30077b7SMatthias Ringwald static bool hci_run_general_gap_le(void){
5815f30077b7SMatthias Ringwald 
5816f40c73b4SMatthias Ringwald     btstack_linked_list_iterator_t lit;
5817f40c73b4SMatthias Ringwald 
5818a41310b7SMatthias Ringwald     // Phase 1: collect what to stop
5819a41310b7SMatthias Ringwald 
582049a6c69cSMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
5821a41310b7SMatthias Ringwald     bool scanning_stop = false;
5822a41310b7SMatthias Ringwald     bool connecting_stop = false;
5823be7ef9d8SMatthias Ringwald #ifdef ENABLE_LE_EXTENDED_ADVERTISING
5824c814a904SMatthias Ringwald #ifdef ENABLE_LE_PERIODIC_ADVERTISING
58254bafedd5SMatthias Ringwald     bool periodic_sync_stop = false;
58264bafedd5SMatthias Ringwald #endif
5827be7ef9d8SMatthias Ringwald #endif
5828c814a904SMatthias Ringwald #endif
5829be7ef9d8SMatthias Ringwald 
583049a6c69cSMatthias Ringwald #ifdef ENABLE_LE_PERIPHERAL
583149a6c69cSMatthias Ringwald     bool advertising_stop = false;
583249a6c69cSMatthias Ringwald #ifdef ENABLE_LE_EXTENDED_ADVERTISING
583349a6c69cSMatthias Ringwald     le_advertising_set_t * advertising_stop_set = NULL;
583449a6c69cSMatthias Ringwald #ifdef ENABLE_LE_PERIODIC_ADVERTISING
583549a6c69cSMatthias Ringwald     bool periodic_advertising_stop = false;
5836a41310b7SMatthias Ringwald #endif
583749a6c69cSMatthias Ringwald #endif
5838a41310b7SMatthias Ringwald #endif
5839a41310b7SMatthias Ringwald 
58409136bde8SMatthias Ringwald     // check if own address changes
58419ce6dfa1SMatthias Ringwald     uint8_t address_change_mask = LE_ADVERTISEMENT_TASKS_SET_ADDRESS | LE_ADVERTISEMENT_TASKS_SET_ADDRESS_SET_0;
58429ce6dfa1SMatthias Ringwald     bool random_address_change = (hci_stack->le_advertisements_todo & address_change_mask) != 0;
58439136bde8SMatthias Ringwald 
584429c24bebSMatthias Ringwald     // check if whitelist needs modification
584529c24bebSMatthias Ringwald     bool whitelist_modification_pending = false;
584629c24bebSMatthias Ringwald     btstack_linked_list_iterator_init(&lit, &hci_stack->le_whitelist);
584729c24bebSMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&lit)){
584829c24bebSMatthias Ringwald         whitelist_entry_t * entry = (whitelist_entry_t*) btstack_linked_list_iterator_next(&lit);
584929c24bebSMatthias Ringwald         if (entry->state & (LE_WHITELIST_REMOVE_FROM_CONTROLLER | LE_WHITELIST_ADD_TO_CONTROLLER)){
585029c24bebSMatthias Ringwald             whitelist_modification_pending = true;
585129c24bebSMatthias Ringwald             break;
585229c24bebSMatthias Ringwald         }
585329c24bebSMatthias Ringwald     }
5854f40c73b4SMatthias Ringwald 
585521debf25SMatthias Ringwald     // check if resolving list needs modification
585621debf25SMatthias Ringwald     bool resolving_list_modification_pending = false;
585721debf25SMatthias Ringwald #ifdef ENABLE_LE_PRIVACY_ADDRESS_RESOLUTION
58581ffa425cSMatthias Ringwald     bool resolving_list_supported = hci_command_supported(SUPPORTED_HCI_COMMAND_LE_SET_ADDRESS_RESOLUTION_ENABLE);
5859ea151974SMatthias Ringwald 	if (resolving_list_supported && hci_stack->le_resolving_list_state != LE_RESOLVING_LIST_DONE){
586021debf25SMatthias Ringwald         resolving_list_modification_pending = true;
586121debf25SMatthias Ringwald     }
586221debf25SMatthias Ringwald #endif
586329c24bebSMatthias Ringwald 
5864f40c73b4SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
586549a6c69cSMatthias Ringwald 
5866f40c73b4SMatthias Ringwald #ifdef ENABLE_LE_EXTENDED_ADVERTISING
586749a6c69cSMatthias Ringwald     // check if periodic advertiser list needs modification
5868f40c73b4SMatthias Ringwald     bool periodic_list_modification_pending = false;
5869f40c73b4SMatthias Ringwald     btstack_linked_list_iterator_init(&lit, &hci_stack->le_periodic_advertiser_list);
5870f40c73b4SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&lit)){
5871f40c73b4SMatthias Ringwald         periodic_advertiser_list_entry_t * entry = (periodic_advertiser_list_entry_t*) btstack_linked_list_iterator_next(&lit);
5872f40c73b4SMatthias Ringwald         if (entry->state & (LE_PERIODIC_ADVERTISER_LIST_ENTRY_ADD_TO_CONTROLLER | LE_PERIODIC_ADVERTISER_LIST_ENTRY_REMOVE_FROM_CONTROLLER)){
5873f40c73b4SMatthias Ringwald             periodic_list_modification_pending = true;
5874f40c73b4SMatthias Ringwald             break;
5875f40c73b4SMatthias Ringwald         }
5876f40c73b4SMatthias Ringwald     }
5877f40c73b4SMatthias Ringwald #endif
5878f40c73b4SMatthias Ringwald 
5879fde725feSMatthias Ringwald     // scanning control
58803251a108SMatthias Ringwald     if (hci_stack->le_scanning_active) {
588129c24bebSMatthias Ringwald         // stop if:
588229c24bebSMatthias Ringwald         // - parameter change required
588329c24bebSMatthias Ringwald         // - it's disabled
588429c24bebSMatthias Ringwald         // - whitelist change required but used for scanning
588521debf25SMatthias Ringwald         // - resolving list modified
588651e51a58SMatthias Ringwald         // - own address changes
588729c24bebSMatthias Ringwald         bool scanning_uses_whitelist = (hci_stack->le_scan_filter_policy & 1) == 1;
588821debf25SMatthias Ringwald         if ((hci_stack->le_scanning_param_update) ||
588921debf25SMatthias Ringwald             !hci_stack->le_scanning_enabled ||
5890d54b2c94SMatthias Ringwald             (scanning_uses_whitelist && whitelist_modification_pending) ||
589151e51a58SMatthias Ringwald             resolving_list_modification_pending ||
589251e51a58SMatthias Ringwald             random_address_change){
589321debf25SMatthias Ringwald 
58942d5c2a27SMatthias Ringwald             scanning_stop = true;
5895fde725feSMatthias Ringwald         }
5896fde725feSMatthias Ringwald     }
5897fde725feSMatthias Ringwald 
589829c24bebSMatthias Ringwald     // connecting control
5899f496d06eSMatthias Ringwald     bool connecting_with_whitelist;
5900f496d06eSMatthias Ringwald     switch (hci_stack->le_connecting_state){
5901f496d06eSMatthias Ringwald         case LE_CONNECTING_DIRECT:
5902f496d06eSMatthias Ringwald         case LE_CONNECTING_WHITELIST:
5903af64f147SMatthias Ringwald             // stop connecting if:
5904af64f147SMatthias Ringwald             // - connecting uses white and whitelist modification pending
5905af64f147SMatthias Ringwald             // - if it got disabled
590621debf25SMatthias Ringwald             // - resolving list modified
590751e51a58SMatthias Ringwald             // - own address changes
5908f496d06eSMatthias Ringwald             connecting_with_whitelist = hci_stack->le_connecting_state == LE_CONNECTING_WHITELIST;
5909f496d06eSMatthias Ringwald             if ((connecting_with_whitelist && whitelist_modification_pending) ||
591021debf25SMatthias Ringwald                 (hci_stack->le_connecting_request == LE_CONNECTING_IDLE) ||
591151e51a58SMatthias Ringwald                 resolving_list_modification_pending ||
591251e51a58SMatthias Ringwald                 random_address_change) {
591321debf25SMatthias Ringwald 
591429c24bebSMatthias Ringwald                 connecting_stop = true;
591529c24bebSMatthias Ringwald             }
5916f496d06eSMatthias Ringwald             break;
5917f496d06eSMatthias Ringwald         default:
5918f496d06eSMatthias Ringwald             break;
591929c24bebSMatthias Ringwald     }
592049a6c69cSMatthias Ringwald 
59214bafedd5SMatthias Ringwald #ifdef ENABLE_LE_EXTENDED_ADVERTISING
592249a6c69cSMatthias Ringwald #ifdef ENABLE_LE_PERIODIC_ADVERTISING
59234bafedd5SMatthias Ringwald     // periodic sync control
59244bafedd5SMatthias Ringwald     bool sync_with_advertiser_list;
59254bafedd5SMatthias Ringwald     switch(hci_stack->le_periodic_sync_state){
59264bafedd5SMatthias Ringwald         case LE_CONNECTING_DIRECT:
59274bafedd5SMatthias Ringwald         case LE_CONNECTING_WHITELIST:
592849a6c69cSMatthias Ringwald             // stop sync if:
59294bafedd5SMatthias Ringwald             // - sync with advertiser list and advertiser list modification pending
593049a6c69cSMatthias Ringwald             // - if it got disabled
59314bafedd5SMatthias Ringwald             sync_with_advertiser_list = hci_stack->le_periodic_sync_state == LE_CONNECTING_WHITELIST;
59324bafedd5SMatthias Ringwald             if ((sync_with_advertiser_list && periodic_list_modification_pending) ||
59334bafedd5SMatthias Ringwald                     (hci_stack->le_periodic_sync_request == LE_CONNECTING_IDLE)){
59344bafedd5SMatthias Ringwald                 periodic_sync_stop = true;
59354bafedd5SMatthias Ringwald             }
59364bafedd5SMatthias Ringwald             break;
59374bafedd5SMatthias Ringwald         default:
59384bafedd5SMatthias Ringwald             break;
59394bafedd5SMatthias Ringwald     }
59404bafedd5SMatthias Ringwald #endif
5941d70217a2SMatthias Ringwald #endif
594229c24bebSMatthias Ringwald 
594349a6c69cSMatthias Ringwald #endif /* ENABLE_LE_CENTRAL */
594449a6c69cSMatthias Ringwald 
5945d70217a2SMatthias Ringwald #ifdef ENABLE_LE_PERIPHERAL
594645c102fdSMatthias Ringwald     // le advertisement control
5947935aa76eSMatthias Ringwald     if ((hci_stack->le_advertisements_state & LE_ADVERTISEMENT_STATE_ACTIVE) != 0){
594829c24bebSMatthias Ringwald         // stop if:
594929c24bebSMatthias Ringwald         // - parameter change required
59509136bde8SMatthias Ringwald         // - random address used in advertising and changes
595129c24bebSMatthias Ringwald         // - it's disabled
5952ba44ad41SMatthias Ringwald         // - whitelist change required but used for advertisement filter policy
595321debf25SMatthias Ringwald         // - resolving list modified
595451e51a58SMatthias Ringwald         // - own address changes
5955a61834b6SMatthias Ringwald         bool advertising_uses_whitelist = hci_stack->le_advertisements_filter_policy != 0;
59569136bde8SMatthias Ringwald         bool advertising_uses_random_address = hci_stack->le_own_addr_type != BD_ADDR_TYPE_LE_PUBLIC;
59574e5d21eaSMatthias Ringwald         bool advertising_change    = (hci_stack->le_advertisements_todo & LE_ADVERTISEMENT_TASKS_SET_PARAMS)  != 0;
5958a61834b6SMatthias Ringwald         if (advertising_change ||
59599136bde8SMatthias Ringwald             (advertising_uses_random_address && random_address_change) ||
5960a61834b6SMatthias Ringwald             (hci_stack->le_advertisements_enabled_for_current_roles == 0) ||
59619136bde8SMatthias Ringwald             (advertising_uses_whitelist && whitelist_modification_pending) ||
596251e51a58SMatthias Ringwald             resolving_list_modification_pending ||
596351e51a58SMatthias Ringwald             random_address_change) {
596421debf25SMatthias Ringwald 
5965fde725feSMatthias Ringwald             advertising_stop = true;
5966fde725feSMatthias Ringwald         }
5967fde725feSMatthias Ringwald     }
5968be7ef9d8SMatthias Ringwald 
5969be7ef9d8SMatthias Ringwald #ifdef ENABLE_LE_EXTENDED_ADVERTISING
5970be7ef9d8SMatthias Ringwald     if (hci_extended_advertising_supported() && (advertising_stop == false)){
5971be7ef9d8SMatthias Ringwald         btstack_linked_list_iterator_t it;
5972be7ef9d8SMatthias Ringwald         btstack_linked_list_iterator_init(&it, &hci_stack->le_advertising_sets);
5973be7ef9d8SMatthias Ringwald         while (btstack_linked_list_iterator_has_next(&it)){
5974be7ef9d8SMatthias Ringwald             le_advertising_set_t * advertising_set = (le_advertising_set_t*) btstack_linked_list_iterator_next(&it);
597553f240c0SMatthias Ringwald             if ((advertising_set->state & LE_ADVERTISEMENT_STATE_ACTIVE) != 0) {
5976be7ef9d8SMatthias Ringwald                 // stop if:
5977be7ef9d8SMatthias Ringwald                 // - parameter change required
5978be7ef9d8SMatthias Ringwald                 // - random address used in connectable advertising and changes
5979be7ef9d8SMatthias Ringwald                 // - it's disabled
5980be7ef9d8SMatthias Ringwald                 // - whitelist change required but used for advertisement filter policy
5981be7ef9d8SMatthias Ringwald                 // - resolving list modified
5982be7ef9d8SMatthias Ringwald                 // - own address changes
5983be7ef9d8SMatthias Ringwald                 // - advertisement set will be removed
598457a04237SMatthias Ringwald                 bool advertising_uses_whitelist = advertising_set->extended_params.advertising_filter_policy != 0;
598557a04237SMatthias Ringwald                 bool advertising_connectable = (advertising_set->extended_params.advertising_event_properties & 1) != 0;
598653f240c0SMatthias Ringwald                 bool advertising_uses_random_address =
598753f240c0SMatthias Ringwald                         (advertising_set->extended_params.own_address_type != BD_ADDR_TYPE_LE_PUBLIC) &&
598853f240c0SMatthias Ringwald                         advertising_connectable;
5989be7ef9d8SMatthias Ringwald                 bool advertising_parameter_change = (advertising_set->tasks & LE_ADVERTISEMENT_TASKS_SET_PARAMS) != 0;
5990be7ef9d8SMatthias Ringwald                 bool advertising_enabled = (advertising_set->state & LE_ADVERTISEMENT_STATE_ENABLED) != 0;
599153f240c0SMatthias Ringwald                 bool advertising_set_random_address_change =
599253f240c0SMatthias Ringwald                         (advertising_set->tasks & LE_ADVERTISEMENT_TASKS_SET_ADDRESS) != 0;
599353f240c0SMatthias Ringwald                 bool advertising_set_will_be_removed =
599453f240c0SMatthias Ringwald                         (advertising_set->state & LE_ADVERTISEMENT_TASKS_REMOVE_SET) != 0;
5995be7ef9d8SMatthias Ringwald                 if (advertising_parameter_change ||
5996be7ef9d8SMatthias Ringwald                     (advertising_uses_random_address && advertising_set_random_address_change) ||
5997be7ef9d8SMatthias Ringwald                     (advertising_enabled == false) ||
5998be7ef9d8SMatthias Ringwald                     (advertising_uses_whitelist && whitelist_modification_pending) ||
5999be7ef9d8SMatthias Ringwald                     resolving_list_modification_pending ||
6000be7ef9d8SMatthias Ringwald                     advertising_set_will_be_removed) {
6001be7ef9d8SMatthias Ringwald 
6002be7ef9d8SMatthias Ringwald                     advertising_stop = true;
6003be7ef9d8SMatthias Ringwald                     advertising_stop_set = advertising_set;
6004be7ef9d8SMatthias Ringwald                     break;
6005be7ef9d8SMatthias Ringwald                 }
6006be7ef9d8SMatthias Ringwald             }
6007c814a904SMatthias Ringwald #ifdef ENABLE_LE_PERIODIC_ADVERTISING
600853f240c0SMatthias Ringwald             if ((advertising_set->state & LE_ADVERTISEMENT_STATE_PERIODIC_ACTIVE) != 0) {
600953f240c0SMatthias Ringwald                 // stop if:
601053f240c0SMatthias Ringwald                 // - it's disabled
601153f240c0SMatthias Ringwald                 // - parameter change required
601253f240c0SMatthias Ringwald                 bool periodic_enabled = (advertising_set->state & LE_ADVERTISEMENT_STATE_PERIODIC_ENABLED) != 0;
601353f240c0SMatthias Ringwald                 bool periodic_parameter_change = (advertising_set->tasks & LE_ADVERTISEMENT_TASKS_SET_PERIODIC_PARAMS) != 0;
601453f240c0SMatthias Ringwald                 if ((periodic_enabled == false) || periodic_parameter_change){
601549a6c69cSMatthias Ringwald                     periodic_advertising_stop = true;
601653f240c0SMatthias Ringwald                     advertising_stop_set = advertising_set;
601753f240c0SMatthias Ringwald                 }
601853f240c0SMatthias Ringwald             }
601949a6c69cSMatthias Ringwald #endif /* ENABLE_LE_PERIODIC_ADVERTISING */
602053f240c0SMatthias Ringwald         }
6021be7ef9d8SMatthias Ringwald     }
6022be7ef9d8SMatthias Ringwald #endif
6023be7ef9d8SMatthias Ringwald 
6024a41310b7SMatthias Ringwald #endif
6025fde725feSMatthias Ringwald 
6026a41310b7SMatthias Ringwald 
6027a41310b7SMatthias Ringwald     // Phase 2: stop everything that should be off during modifications
6028a41310b7SMatthias Ringwald 
6029131d4778SMatthias Ringwald 
6030131d4778SMatthias Ringwald     // 2.1 Outgoing connection
6031131d4778SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
6032131d4778SMatthias Ringwald     if (connecting_stop){
6033131d4778SMatthias Ringwald         hci_send_cmd(&hci_le_create_connection_cancel);
6034131d4778SMatthias Ringwald         return true;
6035131d4778SMatthias Ringwald     }
6036131d4778SMatthias Ringwald #endif
6037131d4778SMatthias Ringwald 
6038131d4778SMatthias Ringwald     // 2.2 Scanning
6039a41310b7SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
6040a41310b7SMatthias Ringwald     if (scanning_stop){
60415226d7f2SMatthias Ringwald         hci_stack->le_scanning_active = false;
6042c42da3bcSMatthias Ringwald         hci_le_scan_stop();
6043a41310b7SMatthias Ringwald         return true;
6044a41310b7SMatthias Ringwald     }
6045a41310b7SMatthias Ringwald 
6046131d4778SMatthias Ringwald     // 2.3 Periodic Sync
60474bafedd5SMatthias Ringwald #ifdef ENABLE_LE_EXTENDED_ADVERTISING
604849a6c69cSMatthias Ringwald     if (hci_stack->le_periodic_terminate_sync_handle != HCI_CON_HANDLE_INVALID){
604949a6c69cSMatthias Ringwald         uint16_t sync_handle = hci_stack->le_periodic_terminate_sync_handle;
605049a6c69cSMatthias Ringwald         hci_stack->le_periodic_terminate_sync_handle = HCI_CON_HANDLE_INVALID;
605149a6c69cSMatthias Ringwald         hci_send_cmd(&hci_le_periodic_advertising_terminate_sync, sync_handle);
605249a6c69cSMatthias Ringwald         return true;
605349a6c69cSMatthias Ringwald     }
605449a6c69cSMatthias Ringwald #ifdef ENABLE_LE_PERIODIC_ADVERTISING
60554bafedd5SMatthias Ringwald     if (periodic_sync_stop){
60564bafedd5SMatthias Ringwald         hci_stack->le_periodic_sync_state = LE_CONNECTING_CANCEL;
60574bafedd5SMatthias Ringwald         hci_send_cmd(&hci_le_periodic_advertising_create_sync_cancel);
60584bafedd5SMatthias Ringwald         return true;
60594bafedd5SMatthias Ringwald     }
606049a6c69cSMatthias Ringwald #endif /* ENABLE_LE_PERIODIC_ADVERTISING */
6061a8016f96SMatthias Ringwald #endif /* ENABLE_LE_EXTENDED_ADVERTISING */
6062a8016f96SMatthias Ringwald #endif /* ENABLE_LE_CENTRAL */
6063a41310b7SMatthias Ringwald 
6064131d4778SMatthias Ringwald     // 2.4 Advertising: legacy, extended, periodic
6065a41310b7SMatthias Ringwald #ifdef ENABLE_LE_PERIPHERAL
6066fde725feSMatthias Ringwald     if (advertising_stop){
6067e464cd48SMatthias Ringwald #ifdef ENABLE_LE_EXTENDED_ADVERTISING
6068e464cd48SMatthias Ringwald         if (hci_extended_advertising_supported()) {
6069be7ef9d8SMatthias Ringwald             uint8_t advertising_stop_handle;
6070be7ef9d8SMatthias Ringwald             if (advertising_stop_set != NULL){
6071be7ef9d8SMatthias Ringwald                 advertising_stop_handle = advertising_stop_set->advertising_handle;
6072be7ef9d8SMatthias Ringwald                 advertising_stop_set->state &= ~LE_ADVERTISEMENT_STATE_ACTIVE;
6073be7ef9d8SMatthias Ringwald             } else {
6074be7ef9d8SMatthias Ringwald                 advertising_stop_handle = 0;
6075be7ef9d8SMatthias Ringwald                 hci_stack->le_advertisements_state &= ~LE_ADVERTISEMENT_STATE_ACTIVE;
6076be7ef9d8SMatthias Ringwald             }
6077be7ef9d8SMatthias Ringwald             const uint8_t advertising_handles[] = { advertising_stop_handle };
6078e464cd48SMatthias Ringwald             const uint16_t durations[] = { 0 };
6079e464cd48SMatthias Ringwald             const uint16_t max_events[] = { 0 };
6080e464cd48SMatthias Ringwald             hci_send_cmd(&hci_le_set_extended_advertising_enable, 0, 1, advertising_handles, durations, max_events);
6081e464cd48SMatthias Ringwald         } else
6082e464cd48SMatthias Ringwald #endif
6083e464cd48SMatthias Ringwald         {
6084be7ef9d8SMatthias Ringwald             hci_stack->le_advertisements_state &= ~LE_ADVERTISEMENT_STATE_ACTIVE;
608545c102fdSMatthias Ringwald             hci_send_cmd(&hci_le_set_advertise_enable, 0);
6086e464cd48SMatthias Ringwald         }
6087f30077b7SMatthias Ringwald         return true;
608845c102fdSMatthias Ringwald     }
608953f240c0SMatthias Ringwald #ifdef ENABLE_LE_EXTENDED_ADVERTISING
6090c814a904SMatthias Ringwald #ifdef ENABLE_LE_PERIODIC_ADVERTISING
609149a6c69cSMatthias Ringwald     if (periodic_advertising_stop){
609253f240c0SMatthias Ringwald         advertising_stop_set->state &= ~LE_ADVERTISEMENT_STATE_PERIODIC_ACTIVE;
609353f240c0SMatthias Ringwald         hci_send_cmd(&hci_le_set_periodic_advertising_enable, 0, advertising_stop_set->advertising_handle);
609453f240c0SMatthias Ringwald         return true;
609553f240c0SMatthias Ringwald     }
6096c814a904SMatthias Ringwald #endif /* ENABLE_LE_PERIODIC_ADVERTISING */
6097c814a904SMatthias Ringwald #endif /* ENABLE_LE_EXTENDED_ADVERTISING */
6098a8016f96SMatthias Ringwald #endif /* ENABLE_LE_PERIPHERAL */
6099fde725feSMatthias Ringwald 
6100131d4778SMatthias Ringwald 
6101a41310b7SMatthias Ringwald     // Phase 3: modify
6102a41310b7SMatthias Ringwald 
610364f9dabaSMatthias Ringwald     if (hci_stack->le_advertisements_todo & LE_ADVERTISEMENT_TASKS_SET_ADDRESS){
61049136bde8SMatthias Ringwald         hci_stack->le_advertisements_todo &= ~LE_ADVERTISEMENT_TASKS_SET_ADDRESS;
61059136bde8SMatthias Ringwald         hci_send_cmd(&hci_le_set_random_address, hci_stack->le_random_address);
6106ae35a99cSMatthias Ringwald #ifdef ENABLE_LE_SET_ADV_PARAMS_ON_RANDOM_ADDRESS_CHANGE
6107ae35a99cSMatthias Ringwald         // workaround: on some Controllers, address in advertisements is updated only after next dv params set
6108ae35a99cSMatthias Ringwald         hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_SET_PARAMS;
6109ae35a99cSMatthias Ringwald #endif
61109136bde8SMatthias Ringwald         return true;
61119136bde8SMatthias Ringwald     }
61129136bde8SMatthias Ringwald 
6113a41310b7SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
6114a41310b7SMatthias Ringwald     if (hci_stack->le_scanning_param_update){
6115a41310b7SMatthias Ringwald         hci_stack->le_scanning_param_update = false;
611663671e69SMatthias Ringwald #ifdef ENABLE_LE_EXTENDED_ADVERTISING
611763671e69SMatthias Ringwald         if (hci_extended_advertising_supported()){
61187eb5b27eSMatthias Ringwald             // prepare arrays for all phys (LE Coded and LE 1M PHY)
61197eb5b27eSMatthias Ringwald             uint8_t  scan_types[2];
61207eb5b27eSMatthias Ringwald             uint16_t scan_intervals[2];
61217eb5b27eSMatthias Ringwald             uint16_t scan_windows[2];
61227eb5b27eSMatthias Ringwald 
61237eb5b27eSMatthias Ringwald             uint8_t i;
61247eb5b27eSMatthias Ringwald             uint8_t num_phys = hci_le_num_phys(hci_stack->le_scan_phys);
61257eb5b27eSMatthias Ringwald             for (i=0;i<num_phys;i++){
61267eb5b27eSMatthias Ringwald                 scan_types[i]     = hci_stack->le_scan_type;
61277eb5b27eSMatthias Ringwald                 scan_intervals[i] = hci_stack->le_scan_interval;
61287eb5b27eSMatthias Ringwald                 scan_windows[i]   = hci_stack->le_scan_window;
61297eb5b27eSMatthias Ringwald             }
613063671e69SMatthias Ringwald             hci_send_cmd(&hci_le_set_extended_scan_parameters, hci_stack->le_own_addr_type,
61317eb5b27eSMatthias Ringwald                          hci_stack->le_scan_filter_policy, hci_stack->le_scan_phys, scan_types, scan_intervals, scan_windows);
613263671e69SMatthias Ringwald         } else
613363671e69SMatthias Ringwald #endif
613463671e69SMatthias Ringwald         {
6135a41310b7SMatthias Ringwald             hci_send_cmd(&hci_le_set_scan_parameters, hci_stack->le_scan_type, hci_stack->le_scan_interval, hci_stack->le_scan_window,
6136a41310b7SMatthias Ringwald                          hci_stack->le_own_addr_type, hci_stack->le_scan_filter_policy);
613763671e69SMatthias Ringwald         }
6138a41310b7SMatthias Ringwald         return true;
6139a41310b7SMatthias Ringwald     }
6140a41310b7SMatthias Ringwald #endif
6141a41310b7SMatthias Ringwald 
6142a41310b7SMatthias Ringwald #ifdef ENABLE_LE_PERIPHERAL
614345c102fdSMatthias Ringwald     if (hci_stack->le_advertisements_todo & LE_ADVERTISEMENT_TASKS_SET_PARAMS){
614445c102fdSMatthias Ringwald         hci_stack->le_advertisements_todo &= ~LE_ADVERTISEMENT_TASKS_SET_PARAMS;
61456bcfa632SMatthias Ringwald         hci_stack->le_advertisements_own_addr_type = hci_stack->le_own_addr_type;
6146e464cd48SMatthias Ringwald #ifdef ENABLE_LE_EXTENDED_ADVERTISING
6147e464cd48SMatthias Ringwald         if (hci_extended_advertising_supported()){
6148e464cd48SMatthias Ringwald             // map advertisment type to advertising event properties
6149e464cd48SMatthias Ringwald             uint16_t adv_event_properties = 0;
6150e464cd48SMatthias Ringwald             const uint16_t mapping[] = { 0b00010011, 0b00010101, 0b00011101, 0b00010010, 0b00010000};
6151e464cd48SMatthias Ringwald             if (hci_stack->le_advertisements_type < (sizeof(mapping)/sizeof(uint16_t))){
6152e464cd48SMatthias Ringwald                 adv_event_properties = mapping[hci_stack->le_advertisements_type];
6153e464cd48SMatthias Ringwald             }
6154174b4d21SMatthias Ringwald             hci_stack->le_advertising_set_in_current_command = 0;
6155e464cd48SMatthias Ringwald             hci_send_cmd(&hci_le_set_extended_advertising_parameters,
6156e464cd48SMatthias Ringwald                          0,
6157e464cd48SMatthias Ringwald                          adv_event_properties,
6158e464cd48SMatthias Ringwald                          hci_stack->le_advertisements_interval_min,
6159e464cd48SMatthias Ringwald                          hci_stack->le_advertisements_interval_max,
6160e464cd48SMatthias Ringwald                          hci_stack->le_advertisements_channel_map,
6161e464cd48SMatthias Ringwald                          hci_stack->le_advertisements_own_addr_type,
6162e464cd48SMatthias Ringwald                          hci_stack->le_advertisements_direct_address_type,
6163e464cd48SMatthias Ringwald                          hci_stack->le_advertisements_direct_address,
6164e464cd48SMatthias Ringwald                          hci_stack->le_advertisements_filter_policy,
6165e464cd48SMatthias Ringwald                          0x7f,  // tx power: no preference
6166e464cd48SMatthias Ringwald                          0x01,  // primary adv phy: LE 1M
6167e464cd48SMatthias Ringwald                          0,     // secondary adv max skip
6168e464cd48SMatthias Ringwald                          0,     // secondary adv phy
6169e464cd48SMatthias Ringwald                          0,     // adv sid
6170e464cd48SMatthias Ringwald                          0      // scan request notification
6171e464cd48SMatthias Ringwald                          );
6172d935373dSMatthias Ringwald         } else
6173e464cd48SMatthias Ringwald #endif
6174e464cd48SMatthias Ringwald         {
617545c102fdSMatthias Ringwald             hci_send_cmd(&hci_le_set_advertising_parameters,
617645c102fdSMatthias Ringwald                          hci_stack->le_advertisements_interval_min,
617745c102fdSMatthias Ringwald                          hci_stack->le_advertisements_interval_max,
617845c102fdSMatthias Ringwald                          hci_stack->le_advertisements_type,
61796bcfa632SMatthias Ringwald                          hci_stack->le_advertisements_own_addr_type,
618045c102fdSMatthias Ringwald                          hci_stack->le_advertisements_direct_address_type,
618145c102fdSMatthias Ringwald                          hci_stack->le_advertisements_direct_address,
618245c102fdSMatthias Ringwald                          hci_stack->le_advertisements_channel_map,
618345c102fdSMatthias Ringwald                          hci_stack->le_advertisements_filter_policy);
6184e464cd48SMatthias Ringwald         }
6185f30077b7SMatthias Ringwald         return true;
618645c102fdSMatthias Ringwald     }
6187be7ef9d8SMatthias Ringwald 
61889ce6dfa1SMatthias Ringwald #ifdef ENABLE_LE_EXTENDED_ADVERTISING
61899ce6dfa1SMatthias Ringwald     // assumption: only set if extended advertising is supported
61909ce6dfa1SMatthias Ringwald     if ((hci_stack->le_advertisements_todo & LE_ADVERTISEMENT_TASKS_SET_ADDRESS_SET_0) != 0){
61919ce6dfa1SMatthias Ringwald         hci_stack->le_advertisements_todo &= ~LE_ADVERTISEMENT_TASKS_SET_ADDRESS_SET_0;
61929ce6dfa1SMatthias Ringwald         hci_send_cmd(&hci_le_set_advertising_set_random_address, 0, hci_stack->le_random_address);
61939ce6dfa1SMatthias Ringwald         return true;
61949ce6dfa1SMatthias Ringwald     }
61959ce6dfa1SMatthias Ringwald #endif
61969ce6dfa1SMatthias Ringwald 
6197501f56b3SMatthias Ringwald     if (hci_stack->le_advertisements_todo & LE_ADVERTISEMENT_TASKS_SET_ADV_DATA){
6198501f56b3SMatthias Ringwald         hci_stack->le_advertisements_todo &= ~LE_ADVERTISEMENT_TASKS_SET_ADV_DATA;
61997a85e4f5SMatthias Ringwald         uint8_t adv_data_clean[31];
62007a85e4f5SMatthias Ringwald         memset(adv_data_clean, 0, sizeof(adv_data_clean));
62016535961aSMatthias Ringwald         (void)memcpy(adv_data_clean, hci_stack->le_advertisements_data,
62026535961aSMatthias Ringwald                      hci_stack->le_advertisements_data_len);
62033c9da642SMatthias Ringwald         btstack_replace_bd_addr_placeholder(adv_data_clean, hci_stack->le_advertisements_data_len, hci_stack->local_bd_addr);
6204e464cd48SMatthias Ringwald #ifdef ENABLE_LE_EXTENDED_ADVERTISING
6205e464cd48SMatthias Ringwald         if (hci_extended_advertising_supported()){
6206174b4d21SMatthias Ringwald             hci_stack->le_advertising_set_in_current_command = 0;
6207e464cd48SMatthias Ringwald             hci_send_cmd(&hci_le_set_extended_advertising_data, 0, 0x03, 0x01, hci_stack->le_advertisements_data_len, adv_data_clean);
6208e464cd48SMatthias Ringwald         } else
6209e464cd48SMatthias Ringwald #endif
6210e464cd48SMatthias Ringwald         {
62117a85e4f5SMatthias Ringwald             hci_send_cmd(&hci_le_set_advertising_data, hci_stack->le_advertisements_data_len, adv_data_clean);
6212e464cd48SMatthias Ringwald         }
6213f30077b7SMatthias Ringwald         return true;
621445c102fdSMatthias Ringwald     }
6215be7ef9d8SMatthias Ringwald 
6216501f56b3SMatthias Ringwald     if (hci_stack->le_advertisements_todo & LE_ADVERTISEMENT_TASKS_SET_SCAN_DATA){
6217501f56b3SMatthias Ringwald         hci_stack->le_advertisements_todo &= ~LE_ADVERTISEMENT_TASKS_SET_SCAN_DATA;
6218f868b059SMatthias Ringwald         uint8_t scan_data_clean[31];
6219f868b059SMatthias Ringwald         memset(scan_data_clean, 0, sizeof(scan_data_clean));
62206535961aSMatthias Ringwald         (void)memcpy(scan_data_clean, hci_stack->le_scan_response_data,
62216535961aSMatthias Ringwald                      hci_stack->le_scan_response_data_len);
62223c9da642SMatthias Ringwald         btstack_replace_bd_addr_placeholder(scan_data_clean, hci_stack->le_scan_response_data_len, hci_stack->local_bd_addr);
6223e464cd48SMatthias Ringwald #ifdef ENABLE_LE_EXTENDED_ADVERTISING
6224e464cd48SMatthias Ringwald         if (hci_extended_advertising_supported()){
6225174b4d21SMatthias Ringwald             hci_stack->le_advertising_set_in_current_command = 0;
6226e464cd48SMatthias Ringwald             hci_send_cmd(&hci_le_set_extended_scan_response_data, 0, 0x03, 0x01, hci_stack->le_scan_response_data_len, scan_data_clean);
6227e464cd48SMatthias Ringwald         } else
6228e464cd48SMatthias Ringwald #endif
6229e464cd48SMatthias Ringwald         {
6230214bfd60SMatthias Ringwald             hci_send_cmd(&hci_le_set_scan_response_data, hci_stack->le_scan_response_data_len, scan_data_clean);
6231e464cd48SMatthias Ringwald         }
6232f30077b7SMatthias Ringwald         return true;
6233501f56b3SMatthias Ringwald     }
6234be7ef9d8SMatthias Ringwald 
6235be7ef9d8SMatthias Ringwald #ifdef ENABLE_LE_EXTENDED_ADVERTISING
6236be7ef9d8SMatthias Ringwald     if (hci_extended_advertising_supported()) {
6237be7ef9d8SMatthias Ringwald         btstack_linked_list_iterator_t it;
6238be7ef9d8SMatthias Ringwald         btstack_linked_list_iterator_init(&it, &hci_stack->le_advertising_sets);
6239be7ef9d8SMatthias Ringwald         while (btstack_linked_list_iterator_has_next(&it)){
6240be7ef9d8SMatthias Ringwald             le_advertising_set_t * advertising_set = (le_advertising_set_t*) btstack_linked_list_iterator_next(&it);
6241be7ef9d8SMatthias Ringwald             if ((advertising_set->tasks & LE_ADVERTISEMENT_TASKS_REMOVE_SET) != 0) {
6242be7ef9d8SMatthias Ringwald                 advertising_set->tasks &= ~LE_ADVERTISEMENT_TASKS_REMOVE_SET;
6243174b4d21SMatthias Ringwald                 hci_stack->le_advertising_set_in_current_command = advertising_set->advertising_handle;
6244be7ef9d8SMatthias Ringwald                 hci_send_cmd(&hci_le_remove_advertising_set, advertising_set->advertising_handle);
6245be7ef9d8SMatthias Ringwald                 return true;
6246be7ef9d8SMatthias Ringwald             }
6247be7ef9d8SMatthias Ringwald             if ((advertising_set->tasks & LE_ADVERTISEMENT_TASKS_SET_PARAMS) != 0){
6248be7ef9d8SMatthias Ringwald                 advertising_set->tasks &= ~LE_ADVERTISEMENT_TASKS_SET_PARAMS;
6249174b4d21SMatthias Ringwald                 hci_stack->le_advertising_set_in_current_command = advertising_set->advertising_handle;
6250be7ef9d8SMatthias Ringwald                 hci_send_cmd(&hci_le_set_extended_advertising_parameters,
6251be7ef9d8SMatthias Ringwald                              advertising_set->advertising_handle,
625257a04237SMatthias Ringwald                              advertising_set->extended_params.advertising_event_properties,
625357a04237SMatthias Ringwald                              advertising_set->extended_params.primary_advertising_interval_min,
625457a04237SMatthias Ringwald                              advertising_set->extended_params.primary_advertising_interval_max,
625557a04237SMatthias Ringwald                              advertising_set->extended_params.primary_advertising_channel_map,
625657a04237SMatthias Ringwald                              advertising_set->extended_params.own_address_type,
625757a04237SMatthias Ringwald                              advertising_set->extended_params.peer_address_type,
625857a04237SMatthias Ringwald                              advertising_set->extended_params.peer_address,
625957a04237SMatthias Ringwald                              advertising_set->extended_params.advertising_filter_policy,
626057a04237SMatthias Ringwald                              advertising_set->extended_params.advertising_tx_power,
626157a04237SMatthias Ringwald                              advertising_set->extended_params.primary_advertising_phy,
626257a04237SMatthias Ringwald                              advertising_set->extended_params.secondary_advertising_max_skip,
626357a04237SMatthias Ringwald                              advertising_set->extended_params.secondary_advertising_phy,
626457a04237SMatthias Ringwald                              advertising_set->extended_params.advertising_sid,
626557a04237SMatthias Ringwald                              advertising_set->extended_params.scan_request_notification_enable
6266be7ef9d8SMatthias Ringwald                 );
6267be7ef9d8SMatthias Ringwald                 return true;
6268be7ef9d8SMatthias Ringwald             }
62690f54aa8dSMatthias Ringwald             if ((advertising_set->tasks & LE_ADVERTISEMENT_TASKS_SET_ADDRESS) != 0){
62700f54aa8dSMatthias Ringwald                 advertising_set->tasks &= ~LE_ADVERTISEMENT_TASKS_SET_ADDRESS;
62710f54aa8dSMatthias Ringwald                 hci_send_cmd(&hci_le_set_advertising_set_random_address, advertising_set->advertising_handle, advertising_set->random_address);
62720f54aa8dSMatthias Ringwald                 return true;
62730f54aa8dSMatthias Ringwald             }
6274be7ef9d8SMatthias Ringwald             if ((advertising_set->tasks & LE_ADVERTISEMENT_TASKS_SET_ADV_DATA) != 0) {
6275be7ef9d8SMatthias Ringwald                 uint16_t pos = advertising_set->adv_data_pos;
6276be7ef9d8SMatthias Ringwald                 uint8_t  operation = hci_le_extended_advertising_operation_for_chunk(pos, advertising_set->adv_data_len);
6277be7ef9d8SMatthias Ringwald                 uint16_t data_to_upload = btstack_min(advertising_set->adv_data_len - pos, LE_EXTENDED_ADVERTISING_MAX_CHUNK_LEN);
6278be7ef9d8SMatthias Ringwald                 if ((operation & 0x02) != 0){
6279be7ef9d8SMatthias Ringwald                     // last fragment or complete data
6280be7ef9d8SMatthias Ringwald                     operation |= 2;
6281be7ef9d8SMatthias Ringwald                     advertising_set->adv_data_pos = 0;
6282be7ef9d8SMatthias Ringwald                     advertising_set->tasks &= ~LE_ADVERTISEMENT_TASKS_SET_ADV_DATA;
6283be7ef9d8SMatthias Ringwald                 } else {
6284be7ef9d8SMatthias Ringwald                     advertising_set->adv_data_pos += data_to_upload;
6285be7ef9d8SMatthias Ringwald                 }
6286174b4d21SMatthias Ringwald                 hci_stack->le_advertising_set_in_current_command = advertising_set->advertising_handle;
62870cbe4690SMatthias Ringwald                 hci_send_cmd(&hci_le_set_extended_advertising_data, advertising_set->advertising_handle, operation, 0x01, data_to_upload, &advertising_set->adv_data[pos]);
6288be7ef9d8SMatthias Ringwald                 return true;
6289be7ef9d8SMatthias Ringwald             }
6290be7ef9d8SMatthias Ringwald             if ((advertising_set->tasks & LE_ADVERTISEMENT_TASKS_SET_SCAN_DATA) != 0) {
6291be7ef9d8SMatthias Ringwald                 uint16_t pos = advertising_set->scan_data_pos;
6292be7ef9d8SMatthias Ringwald                 uint8_t  operation = hci_le_extended_advertising_operation_for_chunk(pos, advertising_set->scan_data_len);
6293be7ef9d8SMatthias Ringwald                 uint16_t data_to_upload = btstack_min(advertising_set->scan_data_len - pos, LE_EXTENDED_ADVERTISING_MAX_CHUNK_LEN);
6294be7ef9d8SMatthias Ringwald                 if ((operation & 0x02) != 0){
6295be7ef9d8SMatthias Ringwald                     advertising_set->scan_data_pos = 0;
6296be7ef9d8SMatthias Ringwald                     advertising_set->tasks &= ~LE_ADVERTISEMENT_TASKS_SET_SCAN_DATA;
6297be7ef9d8SMatthias Ringwald                 } else {
6298be7ef9d8SMatthias Ringwald                     advertising_set->scan_data_pos += data_to_upload;
6299be7ef9d8SMatthias Ringwald                 }
6300174b4d21SMatthias Ringwald                 hci_stack->le_advertising_set_in_current_command = advertising_set->advertising_handle;
63018ef6d15fSMatthias Ringwald                 hci_send_cmd(&hci_le_set_extended_scan_response_data, advertising_set->advertising_handle, operation, 0x01, data_to_upload, &advertising_set->scan_data[pos]);
6302be7ef9d8SMatthias Ringwald                 return true;
6303be7ef9d8SMatthias Ringwald             }
6304c814a904SMatthias Ringwald #ifdef ENABLE_LE_PERIODIC_ADVERTISING
630553f240c0SMatthias Ringwald             if ((advertising_set->tasks & LE_ADVERTISEMENT_TASKS_SET_PERIODIC_PARAMS) != 0){
630653f240c0SMatthias Ringwald                 advertising_set->tasks &= ~LE_ADVERTISEMENT_TASKS_SET_PERIODIC_PARAMS;
630753f240c0SMatthias Ringwald                 hci_stack->le_advertising_set_in_current_command = advertising_set->advertising_handle;
630853f240c0SMatthias Ringwald                 hci_send_cmd(&hci_le_set_periodic_advertising_parameters,
630953f240c0SMatthias Ringwald                              advertising_set->advertising_handle,
631053f240c0SMatthias Ringwald                              advertising_set->periodic_params.periodic_advertising_interval_min,
631153f240c0SMatthias Ringwald                              advertising_set->periodic_params.periodic_advertising_interval_max,
631253f240c0SMatthias Ringwald                              advertising_set->periodic_params.periodic_advertising_properties);
631353f240c0SMatthias Ringwald                 return true;
631453f240c0SMatthias Ringwald             }
631553f240c0SMatthias Ringwald             if ((advertising_set->tasks & LE_ADVERTISEMENT_TASKS_SET_PERIODIC_DATA) != 0) {
63160cbe4690SMatthias Ringwald                 uint16_t pos = advertising_set->periodic_data_pos;
631753f240c0SMatthias Ringwald                 uint8_t  operation = hci_le_extended_advertising_operation_for_chunk(pos, advertising_set->periodic_data_len);
631853f240c0SMatthias Ringwald                 uint16_t data_to_upload = btstack_min(advertising_set->periodic_data_len - pos, LE_EXTENDED_ADVERTISING_MAX_CHUNK_LEN);
631953f240c0SMatthias Ringwald                 if ((operation & 0x02) != 0){
632053f240c0SMatthias Ringwald                     // last fragment or complete data
632153f240c0SMatthias Ringwald                     operation |= 2;
63220cbe4690SMatthias Ringwald                     advertising_set->periodic_data_pos = 0;
632353f240c0SMatthias Ringwald                     advertising_set->tasks &= ~LE_ADVERTISEMENT_TASKS_SET_PERIODIC_DATA;
632453f240c0SMatthias Ringwald                 } else {
63250cbe4690SMatthias Ringwald                     advertising_set->periodic_data_pos += data_to_upload;
632653f240c0SMatthias Ringwald                 }
632753f240c0SMatthias Ringwald                 hci_stack->le_advertising_set_in_current_command = advertising_set->advertising_handle;
63280cbe4690SMatthias Ringwald                 hci_send_cmd(&hci_le_set_periodic_advertising_data, advertising_set->advertising_handle, operation, data_to_upload, &advertising_set->periodic_data[pos]);
632953f240c0SMatthias Ringwald                 return true;
633053f240c0SMatthias Ringwald             }
6331c814a904SMatthias Ringwald #endif /* ENABLE_LE_PERIODIC_ADVERTISING */
6332be7ef9d8SMatthias Ringwald         }
6333be7ef9d8SMatthias Ringwald     }
6334be7ef9d8SMatthias Ringwald #endif
6335be7ef9d8SMatthias Ringwald 
6336d70217a2SMatthias Ringwald #endif
63379956955bSMatthias Ringwald 
6338057ab60cSMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
6339a41310b7SMatthias Ringwald     // if connect with whitelist was active and is not cancelled yet, wait until next time
6340a41310b7SMatthias Ringwald     if (hci_stack->le_connecting_state == LE_CONNECTING_CANCEL) return false;
63414bafedd5SMatthias Ringwald #ifdef ENABLE_LE_EXTENDED_ADVERTISING
63424bafedd5SMatthias Ringwald     // if periodic sync with advertiser list was active and is not cancelled yet, wait until next time
63434bafedd5SMatthias Ringwald     if (hci_stack->le_periodic_sync_state == LE_CONNECTING_CANCEL) return false;
63444bafedd5SMatthias Ringwald #endif
6345057ab60cSMatthias Ringwald #endif
6346057ab60cSMatthias Ringwald 
6347a41310b7SMatthias Ringwald     // LE Whitelist Management
6348a41310b7SMatthias Ringwald     if (whitelist_modification_pending){
63499956955bSMatthias Ringwald         // add/remove entries
6350665d90f2SMatthias Ringwald         btstack_linked_list_iterator_init(&lit, &hci_stack->le_whitelist);
6351665d90f2SMatthias Ringwald         while (btstack_linked_list_iterator_has_next(&lit)){
6352665d90f2SMatthias Ringwald             whitelist_entry_t * entry = (whitelist_entry_t*) btstack_linked_list_iterator_next(&lit);
6353453459ddSMatthias Ringwald 			if (entry->state & LE_WHITELIST_REMOVE_FROM_CONTROLLER){
6354453459ddSMatthias Ringwald 				entry->state &= ~LE_WHITELIST_REMOVE_FROM_CONTROLLER;
6355453459ddSMatthias Ringwald 				hci_send_cmd(&hci_le_remove_device_from_white_list, entry->address_type, entry->address);
6356453459ddSMatthias Ringwald 				return true;
6357453459ddSMatthias Ringwald 			}
63589956955bSMatthias Ringwald             if (entry->state & LE_WHITELIST_ADD_TO_CONTROLLER){
6359453459ddSMatthias Ringwald 				entry->state &= ~LE_WHITELIST_ADD_TO_CONTROLLER;
6360453459ddSMatthias Ringwald                 entry->state |= LE_WHITELIST_ON_CONTROLLER;
63619956955bSMatthias Ringwald                 hci_send_cmd(&hci_le_add_device_to_white_list, entry->address_type, entry->address);
6362f30077b7SMatthias Ringwald                 return true;
63639956955bSMatthias Ringwald             }
6364453459ddSMatthias Ringwald             if ((entry->state & LE_WHITELIST_ON_CONTROLLER) == 0){
6365665d90f2SMatthias Ringwald 				btstack_linked_list_remove(&hci_stack->le_whitelist, (btstack_linked_item_t *) entry);
63669956955bSMatthias Ringwald 				btstack_memory_whitelist_entry_free(entry);
63679956955bSMatthias Ringwald             }
63689956955bSMatthias Ringwald         }
636991915b0bSMatthias Ringwald     }
63709956955bSMatthias Ringwald 
637121debf25SMatthias Ringwald #ifdef ENABLE_LE_PRIVACY_ADDRESS_RESOLUTION
637221debf25SMatthias Ringwald     // LE Resolving List Management
6373ea151974SMatthias Ringwald     if (resolving_list_supported) {
637421debf25SMatthias Ringwald 		uint16_t i;
637521debf25SMatthias Ringwald 		switch (hci_stack->le_resolving_list_state) {
637621debf25SMatthias Ringwald 			case LE_RESOLVING_LIST_SEND_ENABLE_ADDRESS_RESOLUTION:
637721debf25SMatthias Ringwald 				hci_stack->le_resolving_list_state = LE_RESOLVING_LIST_READ_SIZE;
637821debf25SMatthias Ringwald 				hci_send_cmd(&hci_le_set_address_resolution_enabled, 1);
637921debf25SMatthias Ringwald 				return true;
638021debf25SMatthias Ringwald 			case LE_RESOLVING_LIST_READ_SIZE:
638121debf25SMatthias Ringwald 				hci_stack->le_resolving_list_state = LE_RESOLVING_LIST_SEND_CLEAR;
638221debf25SMatthias Ringwald 				hci_send_cmd(&hci_le_read_resolving_list_size);
638321debf25SMatthias Ringwald 				return true;
638421debf25SMatthias Ringwald 			case LE_RESOLVING_LIST_SEND_CLEAR:
63855f3ccd83SMatthias Ringwald 				hci_stack->le_resolving_list_state = LE_RESOLVING_LIST_UPDATES_ENTRIES;
6386ea151974SMatthias Ringwald 				(void) memset(hci_stack->le_resolving_list_add_entries, 0xff,
6387ea151974SMatthias Ringwald 							  sizeof(hci_stack->le_resolving_list_add_entries));
6388e8ca66c6SMatthias Ringwald                 (void) memset(hci_stack->le_resolving_list_set_privacy_mode, 0xff,
6389e8ca66c6SMatthias Ringwald                               sizeof(hci_stack->le_resolving_list_set_privacy_mode));
6390ea151974SMatthias Ringwald 				(void) memset(hci_stack->le_resolving_list_remove_entries, 0,
6391ea151974SMatthias Ringwald 							  sizeof(hci_stack->le_resolving_list_remove_entries));
639221debf25SMatthias Ringwald 				hci_send_cmd(&hci_le_clear_resolving_list);
639321debf25SMatthias Ringwald 				return true;
63945f3ccd83SMatthias Ringwald 			case LE_RESOLVING_LIST_UPDATES_ENTRIES:
63955f3ccd83SMatthias Ringwald                 // first remove old entries
639602b02cffSMatthias Ringwald 				for (i = 0; i < MAX_NUM_RESOLVING_LIST_ENTRIES && i < le_device_db_max_count(); i++) {
639702b02cffSMatthias Ringwald 					uint8_t offset = i >> 3;
639802b02cffSMatthias Ringwald 					uint8_t mask = 1 << (i & 7);
639902b02cffSMatthias Ringwald 					if ((hci_stack->le_resolving_list_remove_entries[offset] & mask) == 0) continue;
640002b02cffSMatthias Ringwald 					hci_stack->le_resolving_list_remove_entries[offset] &= ~mask;
640102b02cffSMatthias Ringwald 					bd_addr_t peer_identity_addreses;
640202b02cffSMatthias Ringwald 					int peer_identity_addr_type = (int) BD_ADDR_TYPE_UNKNOWN;
640302b02cffSMatthias Ringwald 					sm_key_t peer_irk;
640402b02cffSMatthias Ringwald 					le_device_db_info(i, &peer_identity_addr_type, peer_identity_addreses, peer_irk);
640502b02cffSMatthias Ringwald 					if (peer_identity_addr_type == BD_ADDR_TYPE_UNKNOWN) continue;
6406f5228c62SMatthias Ringwald 
6407f5228c62SMatthias Ringwald #ifdef ENABLE_LE_WHITELIST_TOUCH_AFTER_RESOLVING_LIST_UPDATE
6408f5228c62SMatthias Ringwald 					// trigger whitelist entry 'update' (work around for controller bug)
6409f5228c62SMatthias Ringwald 					btstack_linked_list_iterator_init(&lit, &hci_stack->le_whitelist);
6410f5228c62SMatthias Ringwald 					while (btstack_linked_list_iterator_has_next(&lit)) {
6411f5228c62SMatthias Ringwald 						whitelist_entry_t *entry = (whitelist_entry_t *) btstack_linked_list_iterator_next(&lit);
6412f5228c62SMatthias Ringwald 						if (entry->address_type != peer_identity_addr_type) continue;
6413f5228c62SMatthias Ringwald 						if (memcmp(entry->address, peer_identity_addreses, 6) != 0) continue;
6414f5228c62SMatthias Ringwald 						log_info("trigger whitelist update %s", bd_addr_to_str(peer_identity_addreses));
6415f5228c62SMatthias Ringwald 						entry->state |= LE_WHITELIST_REMOVE_FROM_CONTROLLER | LE_WHITELIST_ADD_TO_CONTROLLER;
6416f5228c62SMatthias Ringwald 					}
6417f5228c62SMatthias Ringwald #endif
6418f5228c62SMatthias Ringwald 
6419ea151974SMatthias Ringwald 					hci_send_cmd(&hci_le_remove_device_from_resolving_list, peer_identity_addr_type,
6420ea151974SMatthias Ringwald 								 peer_identity_addreses);
642102b02cffSMatthias Ringwald 					return true;
642202b02cffSMatthias Ringwald 				}
642302b02cffSMatthias Ringwald 
64245f3ccd83SMatthias Ringwald                 // then add new entries
642521debf25SMatthias Ringwald 				for (i = 0; i < MAX_NUM_RESOLVING_LIST_ENTRIES && i < le_device_db_max_count(); i++) {
642621debf25SMatthias Ringwald 					uint8_t offset = i >> 3;
642721debf25SMatthias Ringwald 					uint8_t mask = 1 << (i & 7);
642802b02cffSMatthias Ringwald 					if ((hci_stack->le_resolving_list_add_entries[offset] & mask) == 0) continue;
642902b02cffSMatthias Ringwald 					hci_stack->le_resolving_list_add_entries[offset] &= ~mask;
643021debf25SMatthias Ringwald 					bd_addr_t peer_identity_addreses;
643121debf25SMatthias Ringwald 					int peer_identity_addr_type = (int) BD_ADDR_TYPE_UNKNOWN;
643221debf25SMatthias Ringwald 					sm_key_t peer_irk;
643321debf25SMatthias Ringwald 					le_device_db_info(i, &peer_identity_addr_type, peer_identity_addreses, peer_irk);
643421debf25SMatthias Ringwald 					if (peer_identity_addr_type == BD_ADDR_TYPE_UNKNOWN) continue;
6435e938c062SMatthias Ringwald                     if (btstack_is_null(peer_irk, 16)) continue;
643621debf25SMatthias Ringwald 					const uint8_t *local_irk = gap_get_persistent_irk();
643721debf25SMatthias Ringwald 					// command uses format specifier 'P' that stores 16-byte value without flip
643821debf25SMatthias Ringwald 					uint8_t local_irk_flipped[16];
643921debf25SMatthias Ringwald 					uint8_t peer_irk_flipped[16];
644021debf25SMatthias Ringwald 					reverse_128(local_irk, local_irk_flipped);
644121debf25SMatthias Ringwald 					reverse_128(peer_irk, peer_irk_flipped);
6442ea151974SMatthias Ringwald 					hci_send_cmd(&hci_le_add_device_to_resolving_list, peer_identity_addr_type, peer_identity_addreses,
6443ea151974SMatthias Ringwald 								 peer_irk_flipped, local_irk_flipped);
644421debf25SMatthias Ringwald 					return true;
644521debf25SMatthias Ringwald 				}
6446e8ca66c6SMatthias Ringwald 
6447e8ca66c6SMatthias Ringwald                 // finally, set privacy mode
6448e8ca66c6SMatthias Ringwald                 for (i = 0; i < MAX_NUM_RESOLVING_LIST_ENTRIES && i < le_device_db_max_count(); i++) {
6449e8ca66c6SMatthias Ringwald                     uint8_t offset = i >> 3;
6450e8ca66c6SMatthias Ringwald                     uint8_t mask = 1 << (i & 7);
6451e8ca66c6SMatthias Ringwald                     if ((hci_stack->le_resolving_list_set_privacy_mode[offset] & mask) == 0) continue;
6452e8ca66c6SMatthias Ringwald                     hci_stack->le_resolving_list_set_privacy_mode[offset] &= ~mask;
6453e8ca66c6SMatthias Ringwald                     if (hci_stack->le_privacy_mode == LE_PRIVACY_MODE_NETWORK) {
6454e8ca66c6SMatthias Ringwald                         // Network Privacy Mode is default
6455e8ca66c6SMatthias Ringwald                         continue;
6456e8ca66c6SMatthias Ringwald                     }
6457e8ca66c6SMatthias Ringwald                     bd_addr_t peer_identity_address;
6458e8ca66c6SMatthias Ringwald                     int peer_identity_addr_type = (int) BD_ADDR_TYPE_UNKNOWN;
6459e8ca66c6SMatthias Ringwald                     sm_key_t peer_irk;
6460e8ca66c6SMatthias Ringwald                     le_device_db_info(i, &peer_identity_addr_type, peer_identity_address, peer_irk);
6461e8ca66c6SMatthias Ringwald                     if (peer_identity_addr_type == BD_ADDR_TYPE_UNKNOWN) continue;
6462e8ca66c6SMatthias Ringwald                     if (btstack_is_null(peer_irk, 16)) continue;
6463e8ca66c6SMatthias Ringwald                     // command uses format specifier 'P' that stores 16-byte value without flip
6464e8ca66c6SMatthias Ringwald                     uint8_t peer_irk_flipped[16];
6465e8ca66c6SMatthias Ringwald                     reverse_128(peer_irk, peer_irk_flipped);
6466e8ca66c6SMatthias Ringwald                     hci_send_cmd(&hci_le_set_privacy_mode, peer_identity_addr_type, peer_identity_address, hci_stack->le_privacy_mode);
6467e8ca66c6SMatthias Ringwald                     return true;
6468e8ca66c6SMatthias Ringwald                 }
646902b02cffSMatthias Ringwald 				hci_stack->le_resolving_list_state = LE_RESOLVING_LIST_DONE;
647021debf25SMatthias Ringwald 				break;
647102b02cffSMatthias Ringwald 
647221debf25SMatthias Ringwald 			default:
647321debf25SMatthias Ringwald 				break;
647421debf25SMatthias Ringwald 		}
6475ea151974SMatthias Ringwald 	}
647621debf25SMatthias Ringwald     hci_stack->le_resolving_list_state = LE_RESOLVING_LIST_DONE;
647721debf25SMatthias Ringwald #endif
6478a41310b7SMatthias Ringwald 
6479f40c73b4SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
6480f40c73b4SMatthias Ringwald #ifdef ENABLE_LE_EXTENDED_ADVERTISING
6481f40c73b4SMatthias Ringwald     // LE Whitelist Management
6482f40c73b4SMatthias Ringwald     if (periodic_list_modification_pending){
6483f40c73b4SMatthias Ringwald         // add/remove entries
6484f40c73b4SMatthias Ringwald         btstack_linked_list_iterator_init(&lit, &hci_stack->le_periodic_advertiser_list);
6485f40c73b4SMatthias Ringwald         while (btstack_linked_list_iterator_has_next(&lit)){
6486f40c73b4SMatthias Ringwald             periodic_advertiser_list_entry_t * entry = (periodic_advertiser_list_entry_t*) btstack_linked_list_iterator_next(&lit);
6487f40c73b4SMatthias Ringwald             if (entry->state & LE_PERIODIC_ADVERTISER_LIST_ENTRY_REMOVE_FROM_CONTROLLER){
6488f40c73b4SMatthias Ringwald                 entry->state &= ~LE_PERIODIC_ADVERTISER_LIST_ENTRY_REMOVE_FROM_CONTROLLER;
6489f40c73b4SMatthias Ringwald                 hci_send_cmd(&hci_le_remove_device_from_periodic_advertiser_list, entry->address_type, entry->address);
6490f40c73b4SMatthias Ringwald                 return true;
6491f40c73b4SMatthias Ringwald             }
6492f40c73b4SMatthias Ringwald             if (entry->state & LE_PERIODIC_ADVERTISER_LIST_ENTRY_ADD_TO_CONTROLLER){
6493f40c73b4SMatthias Ringwald                 entry->state &= ~LE_PERIODIC_ADVERTISER_LIST_ENTRY_ADD_TO_CONTROLLER;
6494f40c73b4SMatthias Ringwald                 entry->state |= LE_PERIODIC_ADVERTISER_LIST_ENTRY_ON_CONTROLLER;
64959e88556bSMatthias Ringwald                 hci_send_cmd(&hci_le_add_device_to_periodic_advertiser_list, entry->address_type, entry->address, entry->sid);
6496f40c73b4SMatthias Ringwald                 return true;
6497f40c73b4SMatthias Ringwald             }
6498f40c73b4SMatthias Ringwald             if ((entry->state & LE_PERIODIC_ADVERTISER_LIST_ENTRY_ON_CONTROLLER) == 0){
6499f40c73b4SMatthias Ringwald                 btstack_linked_list_remove(&hci_stack->le_periodic_advertiser_list, (btstack_linked_item_t *) entry);
6500f40c73b4SMatthias Ringwald                 btstack_memory_periodic_advertiser_list_entry_free(entry);
6501f40c73b4SMatthias Ringwald             }
6502f40c73b4SMatthias Ringwald         }
6503f40c73b4SMatthias Ringwald     }
6504f40c73b4SMatthias Ringwald #endif
6505f40c73b4SMatthias Ringwald #endif
6506f40c73b4SMatthias Ringwald 
650798aa715fSMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
650898aa715fSMatthias Ringwald #ifdef ENABLE_LE_EXTENDED_ADVERTISING
650998aa715fSMatthias Ringwald #ifdef ENABLE_LE_PERIODIC_ADVERTISING
651098aa715fSMatthias Ringwald     if (hci_stack->le_past_set_default_params){
651198aa715fSMatthias Ringwald         hci_stack->le_past_set_default_params = false;
651298aa715fSMatthias Ringwald         hci_send_cmd(&hci_le_set_default_periodic_advertising_sync_transfer_parameters,
651398aa715fSMatthias Ringwald                      hci_stack->le_past_mode,
651498aa715fSMatthias Ringwald                      hci_stack->le_past_skip,
651598aa715fSMatthias Ringwald                      hci_stack->le_past_sync_timeout,
651698aa715fSMatthias Ringwald                      hci_stack->le_past_cte_type);
651798aa715fSMatthias Ringwald         return true;
651898aa715fSMatthias Ringwald     }
651998aa715fSMatthias Ringwald #endif
652098aa715fSMatthias Ringwald #endif
652198aa715fSMatthias Ringwald #endif
652298aa715fSMatthias Ringwald 
652373799937SMatthias Ringwald     // post-pone all actions until stack is fully working
652473799937SMatthias Ringwald     if (hci_stack->state != HCI_STATE_WORKING) return false;
652573799937SMatthias Ringwald 
652673799937SMatthias Ringwald     // advertisements, active scanning, and creating connections requires random address to be set if using private address
652773799937SMatthias Ringwald     if ( (hci_stack->le_own_addr_type != BD_ADDR_TYPE_LE_PUBLIC) && (hci_stack->le_random_address_set == 0u) ) return false;
652873799937SMatthias Ringwald 
6529a41310b7SMatthias Ringwald     // Phase 4: restore state
653029c24bebSMatthias Ringwald 
653129c24bebSMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
6532af64f147SMatthias Ringwald     // re-start scanning
653329c24bebSMatthias Ringwald     if ((hci_stack->le_scanning_enabled && !hci_stack->le_scanning_active)){
653429c24bebSMatthias Ringwald         hci_stack->le_scanning_active = true;
653563671e69SMatthias Ringwald #ifdef ENABLE_LE_EXTENDED_ADVERTISING
653663671e69SMatthias Ringwald         if (hci_extended_advertising_supported()){
65374856283bSMatthias Ringwald             hci_send_cmd(&hci_le_set_extended_scan_enable, 1, hci_stack->le_scan_filter_duplicates, 0, 0);
653863671e69SMatthias Ringwald         } else
653963671e69SMatthias Ringwald #endif
654063671e69SMatthias Ringwald         {
65414856283bSMatthias Ringwald             hci_send_cmd(&hci_le_set_scan_enable, 1, hci_stack->le_scan_filter_duplicates);
654263671e69SMatthias Ringwald         }
654329c24bebSMatthias Ringwald         return true;
654429c24bebSMatthias Ringwald     }
654529c24bebSMatthias Ringwald #endif
654629c24bebSMatthias Ringwald 
654713eb2a2eSMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
6548af64f147SMatthias Ringwald     // re-start connecting
6549af64f147SMatthias Ringwald     if ( (hci_stack->le_connecting_state == LE_CONNECTING_IDLE) && (hci_stack->le_connecting_request == LE_CONNECTING_WHITELIST)){
65509956955bSMatthias Ringwald         bd_addr_t null_addr;
65519956955bSMatthias Ringwald         memset(null_addr, 0, 6);
65526bcfa632SMatthias Ringwald         hci_stack->le_connection_own_addr_type =  hci_stack->le_own_addr_type;
65536bcfa632SMatthias Ringwald         hci_get_own_address_for_addr_type(hci_stack->le_connection_own_addr_type, hci_stack->le_connection_own_address);
65546f34e9d6SMatthias Ringwald         hci_send_le_create_connection(1, 0, null_addr);
6555f30077b7SMatthias Ringwald         return true;
65569956955bSMatthias Ringwald     }
65574bafedd5SMatthias Ringwald #ifdef ENABLE_LE_EXTENDED_ADVERTISING
65584bafedd5SMatthias Ringwald     if (hci_stack->le_periodic_sync_state == LE_CONNECTING_IDLE){
65594bafedd5SMatthias Ringwald         switch(hci_stack->le_periodic_sync_request){
65604bafedd5SMatthias Ringwald             case LE_CONNECTING_DIRECT:
65614bafedd5SMatthias Ringwald             case LE_CONNECTING_WHITELIST:
65624bafedd5SMatthias Ringwald                 hci_stack->le_periodic_sync_state = ((hci_stack->le_periodic_sync_options & 1) != 0) ? LE_CONNECTING_WHITELIST : LE_CONNECTING_DIRECT;
65634bafedd5SMatthias Ringwald                 hci_send_cmd(&hci_le_periodic_advertising_create_sync,
65644bafedd5SMatthias Ringwald                              hci_stack->le_periodic_sync_options,
65654bafedd5SMatthias Ringwald                              hci_stack->le_periodic_sync_advertising_sid,
65664bafedd5SMatthias Ringwald                              hci_stack->le_periodic_sync_advertiser_address_type,
65674bafedd5SMatthias Ringwald                              hci_stack->le_periodic_sync_advertiser_address,
65684bafedd5SMatthias Ringwald                              hci_stack->le_periodic_sync_skip,
65694bafedd5SMatthias Ringwald                              hci_stack->le_periodic_sync_timeout,
65704bafedd5SMatthias Ringwald                              hci_stack->le_periodic_sync_cte_type);
65714bafedd5SMatthias Ringwald                 return true;
65724bafedd5SMatthias Ringwald             default:
65734bafedd5SMatthias Ringwald                 break;
65744bafedd5SMatthias Ringwald         }
65754bafedd5SMatthias Ringwald     }
65764bafedd5SMatthias Ringwald #endif
6577d70217a2SMatthias Ringwald #endif
6578a41310b7SMatthias Ringwald 
6579a41310b7SMatthias Ringwald #ifdef ENABLE_LE_PERIPHERAL
6580a41310b7SMatthias Ringwald     // re-start advertising
6581935aa76eSMatthias Ringwald     if (hci_stack->le_advertisements_enabled_for_current_roles && ((hci_stack->le_advertisements_state & LE_ADVERTISEMENT_STATE_ACTIVE) == 0)){
6582a41310b7SMatthias Ringwald         // check if advertisements should be enabled given
6583935aa76eSMatthias Ringwald         hci_stack->le_advertisements_state |= LE_ADVERTISEMENT_STATE_ACTIVE;
6584b892db1cSMatthias Ringwald         hci_get_own_address_for_addr_type(hci_stack->le_advertisements_own_addr_type, hci_stack->le_advertisements_own_address);
6585e464cd48SMatthias Ringwald 
6586e464cd48SMatthias Ringwald #ifdef ENABLE_LE_EXTENDED_ADVERTISING
6587e464cd48SMatthias Ringwald         if (hci_extended_advertising_supported()){
6588e464cd48SMatthias Ringwald             const uint8_t advertising_handles[] = { 0 };
6589e464cd48SMatthias Ringwald             const uint16_t durations[] = { 0 };
6590e464cd48SMatthias Ringwald             const uint16_t max_events[] = { 0 };
6591e464cd48SMatthias Ringwald             hci_send_cmd(&hci_le_set_extended_advertising_enable, 1, 1, advertising_handles, durations, max_events);
6592e464cd48SMatthias Ringwald         } else
6593e464cd48SMatthias Ringwald #endif
6594e464cd48SMatthias Ringwald         {
6595a41310b7SMatthias Ringwald             hci_send_cmd(&hci_le_set_advertise_enable, 1);
6596e464cd48SMatthias Ringwald         }
6597a41310b7SMatthias Ringwald         return true;
6598a41310b7SMatthias Ringwald     }
6599be7ef9d8SMatthias Ringwald 
6600be7ef9d8SMatthias Ringwald #ifdef ENABLE_LE_EXTENDED_ADVERTISING
6601be7ef9d8SMatthias Ringwald     if (hci_extended_advertising_supported()) {
6602be7ef9d8SMatthias Ringwald         btstack_linked_list_iterator_t it;
6603be7ef9d8SMatthias Ringwald         btstack_linked_list_iterator_init(&it, &hci_stack->le_advertising_sets);
6604be7ef9d8SMatthias Ringwald         while (btstack_linked_list_iterator_has_next(&it)) {
6605be7ef9d8SMatthias Ringwald             le_advertising_set_t *advertising_set = (le_advertising_set_t *) btstack_linked_list_iterator_next(&it);
6606be7ef9d8SMatthias Ringwald             if (((advertising_set->state & LE_ADVERTISEMENT_STATE_ENABLED) != 0) && ((advertising_set->state & LE_ADVERTISEMENT_STATE_ACTIVE) == 0)){
66078caa405cSMatthias Ringwald                 advertising_set->state |= LE_ADVERTISEMENT_STATE_ACTIVE;
6608be7ef9d8SMatthias Ringwald                 const uint8_t advertising_handles[] = { advertising_set->advertising_handle };
6609be7ef9d8SMatthias Ringwald                 const uint16_t durations[] = { advertising_set->enable_timeout };
6610be7ef9d8SMatthias Ringwald                 const uint16_t max_events[] = { advertising_set->enable_max_scan_events };
6611be7ef9d8SMatthias Ringwald                 hci_send_cmd(&hci_le_set_extended_advertising_enable, 1, 1, advertising_handles, durations, max_events);
6612be7ef9d8SMatthias Ringwald                 return true;
6613be7ef9d8SMatthias Ringwald             }
6614c814a904SMatthias Ringwald #ifdef ENABLE_LE_PERIODIC_ADVERTISING
661553f240c0SMatthias Ringwald             if (((advertising_set->state & LE_ADVERTISEMENT_STATE_PERIODIC_ENABLED) != 0) && ((advertising_set->state & LE_ADVERTISEMENT_STATE_PERIODIC_ACTIVE) == 0)){
661653f240c0SMatthias Ringwald                 advertising_set->state |= LE_ADVERTISEMENT_STATE_PERIODIC_ACTIVE;
661753f240c0SMatthias Ringwald                 uint8_t enable = 1;
661853f240c0SMatthias Ringwald                 if (advertising_set->periodic_include_adi){
661953f240c0SMatthias Ringwald                     enable |= 2;
662053f240c0SMatthias Ringwald                 }
662153f240c0SMatthias Ringwald                 hci_send_cmd(&hci_le_set_periodic_advertising_enable, enable, advertising_set->advertising_handle);
662253f240c0SMatthias Ringwald                 return true;
662353f240c0SMatthias Ringwald             }
6624c814a904SMatthias Ringwald #endif /* ENABLE_LE_PERIODIC_ADVERTISING */
6625be7ef9d8SMatthias Ringwald         }
6626be7ef9d8SMatthias Ringwald     }
6627be7ef9d8SMatthias Ringwald #endif
6628a41310b7SMatthias Ringwald #endif
6629a41310b7SMatthias Ringwald 
6630f30077b7SMatthias Ringwald     return false;
66317bdc6798S[email protected] }
66327aa35f6aSMatthias Ringwald 
66337aa35f6aSMatthias Ringwald #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
66347aa35f6aSMatthias Ringwald static bool hci_run_iso_tasks(void){
66357aa35f6aSMatthias Ringwald     btstack_linked_list_iterator_t it;
66362a6c0f82SMatthias Ringwald 
663726b93350SMatthias Ringwald     if (hci_stack->iso_active_operation_type != HCI_ISO_TYPE_INVALID) {
663840f86dfdSMatthias Ringwald         return false;
663940f86dfdSMatthias Ringwald     }
664040f86dfdSMatthias Ringwald 
66412a6c0f82SMatthias Ringwald     // BIG
66427aa35f6aSMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->le_audio_bigs);
66437aa35f6aSMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
66447aa35f6aSMatthias Ringwald         le_audio_big_t * big = (le_audio_big_t *) btstack_linked_list_iterator_next(&it);
66457aa35f6aSMatthias Ringwald         switch (big->state){
66467aa35f6aSMatthias Ringwald             case LE_AUDIO_BIG_STATE_CREATE:
664740f86dfdSMatthias Ringwald                 hci_stack->iso_active_operation_group_id = big->params->big_handle;
664840f86dfdSMatthias Ringwald                 hci_stack->iso_active_operation_type = HCI_ISO_TYPE_BIS;
66497aa35f6aSMatthias Ringwald                 big->state = LE_AUDIO_BIG_STATE_W4_ESTABLISHED;
66507aa35f6aSMatthias Ringwald                 hci_send_cmd(&hci_le_create_big,
66517aa35f6aSMatthias Ringwald                              big->params->big_handle,
66527aa35f6aSMatthias Ringwald                              big->params->advertising_handle,
66537aa35f6aSMatthias Ringwald                              big->params->num_bis,
66547aa35f6aSMatthias Ringwald                              big->params->sdu_interval_us,
66557aa35f6aSMatthias Ringwald                              big->params->max_sdu,
66567aa35f6aSMatthias Ringwald                              big->params->max_transport_latency_ms,
66577aa35f6aSMatthias Ringwald                              big->params->rtn,
66587aa35f6aSMatthias Ringwald                              big->params->phy,
66597aa35f6aSMatthias Ringwald                              big->params->packing,
66607aa35f6aSMatthias Ringwald                              big->params->framing,
66617aa35f6aSMatthias Ringwald                              big->params->encryption,
66627aa35f6aSMatthias Ringwald                              big->params->broadcast_code);
66637aa35f6aSMatthias Ringwald                 return true;
66647aa35f6aSMatthias Ringwald             case LE_AUDIO_BIG_STATE_SETUP_ISO_PATH:
66657aa35f6aSMatthias Ringwald                 big->state = LE_AUDIO_BIG_STATE_W4_SETUP_ISO_PATH;
66667aa35f6aSMatthias Ringwald                 hci_send_cmd(&hci_le_setup_iso_data_path, big->bis_con_handles[big->state_vars.next_bis], 0, 0,  0, 0, 0,  0, 0, NULL);
66677aa35f6aSMatthias Ringwald                 return true;
66687aa35f6aSMatthias Ringwald             case LE_AUDIO_BIG_STATE_SETUP_ISO_PATHS_FAILED:
66697aa35f6aSMatthias Ringwald                 big->state = LE_AUDIO_BIG_STATE_W4_TERMINATED_AFTER_SETUP_FAILED;
66702a6c0f82SMatthias Ringwald                 hci_send_cmd(&hci_le_terminate_big, big->big_handle, big->state_vars.status);
6671c1f83111SMatthias Ringwald                 return true;
66727aa35f6aSMatthias Ringwald             case LE_AUDIO_BIG_STATE_TERMINATE:
66737aa35f6aSMatthias Ringwald                 big->state = LE_AUDIO_BIG_STATE_W4_TERMINATED;
66742a6c0f82SMatthias Ringwald                 hci_send_cmd(&hci_le_terminate_big, big->big_handle, ERROR_CODE_SUCCESS);
66757aa35f6aSMatthias Ringwald                 return true;
66767aa35f6aSMatthias Ringwald             default:
66777aa35f6aSMatthias Ringwald                 break;
66787aa35f6aSMatthias Ringwald         }
66797aa35f6aSMatthias Ringwald     }
66802a6c0f82SMatthias Ringwald 
66812a6c0f82SMatthias Ringwald     // BIG Sync
66822a6c0f82SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->le_audio_big_syncs);
66832a6c0f82SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
66842a6c0f82SMatthias Ringwald         le_audio_big_sync_t * big_sync = (le_audio_big_sync_t *) btstack_linked_list_iterator_next(&it);
66852a6c0f82SMatthias Ringwald         switch (big_sync->state){
66862a6c0f82SMatthias Ringwald             case LE_AUDIO_BIG_STATE_CREATE:
668740f86dfdSMatthias Ringwald                 hci_stack->iso_active_operation_group_id = big_sync->params->big_handle;
668840f86dfdSMatthias Ringwald                 hci_stack->iso_active_operation_type = HCI_ISO_TYPE_BIS;
66892a6c0f82SMatthias Ringwald                 big_sync->state = LE_AUDIO_BIG_STATE_W4_ESTABLISHED;
66902a6c0f82SMatthias Ringwald                 hci_send_cmd(&hci_le_big_create_sync,
66912a6c0f82SMatthias Ringwald                              big_sync->params->big_handle,
66922a6c0f82SMatthias Ringwald                              big_sync->params->sync_handle,
66932a6c0f82SMatthias Ringwald                              big_sync->params->encryption,
66942a6c0f82SMatthias Ringwald                              big_sync->params->broadcast_code,
66952a6c0f82SMatthias Ringwald                              big_sync->params->mse,
66962a6c0f82SMatthias Ringwald                              big_sync->params->big_sync_timeout_10ms,
66972a6c0f82SMatthias Ringwald                              big_sync->params->num_bis,
66982a6c0f82SMatthias Ringwald                              big_sync->params->bis_indices);
66992a6c0f82SMatthias Ringwald                 return true;
67002a6c0f82SMatthias Ringwald             case LE_AUDIO_BIG_STATE_SETUP_ISO_PATH:
67012a6c0f82SMatthias Ringwald                 big_sync->state = LE_AUDIO_BIG_STATE_W4_SETUP_ISO_PATH;
67022a6c0f82SMatthias Ringwald                 hci_send_cmd(&hci_le_setup_iso_data_path, big_sync->bis_con_handles[big_sync->state_vars.next_bis], 1, 0, 0, 0, 0, 0, 0, NULL);
67032a6c0f82SMatthias Ringwald                 return true;
67042a6c0f82SMatthias Ringwald             case LE_AUDIO_BIG_STATE_SETUP_ISO_PATHS_FAILED:
67052a6c0f82SMatthias Ringwald                 big_sync->state = LE_AUDIO_BIG_STATE_W4_TERMINATED_AFTER_SETUP_FAILED;
67062a6c0f82SMatthias Ringwald                 hci_send_cmd(&hci_le_big_terminate_sync, big_sync->big_handle);
6707c1f83111SMatthias Ringwald                 return true;
67082a6c0f82SMatthias Ringwald             case LE_AUDIO_BIG_STATE_TERMINATE:
67092a6c0f82SMatthias Ringwald                 big_sync->state = LE_AUDIO_BIG_STATE_W4_TERMINATED;
67102a6c0f82SMatthias Ringwald                 hci_send_cmd(&hci_le_big_terminate_sync, big_sync->big_handle);
67112a6c0f82SMatthias Ringwald                 return true;
67122a6c0f82SMatthias Ringwald             default:
67132a6c0f82SMatthias Ringwald                 break;
67142a6c0f82SMatthias Ringwald         }
67152a6c0f82SMatthias Ringwald     }
67162a6c0f82SMatthias Ringwald 
6717d3a89d91SMatthias Ringwald     // CIG
6718d3a89d91SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->le_audio_cigs);
6719d3a89d91SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)) {
6720d3a89d91SMatthias Ringwald         le_audio_cig_t *cig = (le_audio_cig_t *) btstack_linked_list_iterator_next(&it);
6721d3a89d91SMatthias Ringwald         uint8_t i;
6722444e371eSMatthias Ringwald         // Set CIG Parameters
6723d3a89d91SMatthias Ringwald         uint8_t cis_id[MAX_NR_CIS];
6724d3a89d91SMatthias Ringwald         uint16_t max_sdu_c_to_p[MAX_NR_CIS];
6725d3a89d91SMatthias Ringwald         uint16_t max_sdu_p_to_c[MAX_NR_CIS];
6726d3a89d91SMatthias Ringwald         uint8_t phy_c_to_p[MAX_NR_CIS];
6727d3a89d91SMatthias Ringwald         uint8_t phy_p_to_c[MAX_NR_CIS];
6728d3a89d91SMatthias Ringwald         uint8_t rtn_c_to_p[MAX_NR_CIS];
6729d3a89d91SMatthias Ringwald         uint8_t rtn_p_to_c[MAX_NR_CIS];
6730d3a89d91SMatthias Ringwald         switch (cig->state) {
6731d3a89d91SMatthias Ringwald             case LE_AUDIO_CIG_STATE_CREATE:
6732d3a89d91SMatthias Ringwald                 hci_stack->iso_active_operation_group_id = cig->params->cig_id;
6733d3a89d91SMatthias Ringwald                 hci_stack->iso_active_operation_type = HCI_ISO_TYPE_CIS;
6734d3a89d91SMatthias Ringwald                 cig->state = LE_AUDIO_CIG_STATE_W4_ESTABLISHED;
6735d3a89d91SMatthias Ringwald                 le_audio_cig_params_t * params = cig->params;
6736d3a89d91SMatthias Ringwald                 for (i = 0; i < params->num_cis; i++) {
6737d3a89d91SMatthias Ringwald                     le_audio_cis_params_t * cis_params = &cig->params->cis_params[i];
6738d3a89d91SMatthias Ringwald                     cis_id[i]         = cis_params->cis_id;
6739d3a89d91SMatthias Ringwald                     max_sdu_c_to_p[i] = cis_params->max_sdu_c_to_p;
6740d3a89d91SMatthias Ringwald                     max_sdu_p_to_c[i] = cis_params->max_sdu_p_to_c;
6741d3a89d91SMatthias Ringwald                     phy_c_to_p[i]     = cis_params->phy_c_to_p;
6742d3a89d91SMatthias Ringwald                     phy_p_to_c[i]     = cis_params->phy_p_to_c;
6743d3a89d91SMatthias Ringwald                     rtn_c_to_p[i]     = cis_params->rtn_c_to_p;
6744d3a89d91SMatthias Ringwald                     rtn_p_to_c[i]     = cis_params->rtn_p_to_c;
6745d3a89d91SMatthias Ringwald                 }
6746d3a89d91SMatthias Ringwald                 hci_send_cmd(&hci_le_set_cig_parameters,
6747d3a89d91SMatthias Ringwald                              cig->cig_id,
6748d3a89d91SMatthias Ringwald                              params->sdu_interval_c_to_p,
6749d3a89d91SMatthias Ringwald                              params->sdu_interval_p_to_c,
6750d3a89d91SMatthias Ringwald                              params->worst_case_sca,
6751d3a89d91SMatthias Ringwald                              params->packing,
6752d3a89d91SMatthias Ringwald                              params->framing,
6753d3a89d91SMatthias Ringwald                              params->max_transport_latency_c_to_p,
6754d3a89d91SMatthias Ringwald                              params->max_transport_latency_p_to_c,
6755d3a89d91SMatthias Ringwald                              params->num_cis,
6756d3a89d91SMatthias Ringwald                              cis_id,
6757d3a89d91SMatthias Ringwald                              max_sdu_c_to_p,
6758d3a89d91SMatthias Ringwald                              max_sdu_p_to_c,
6759d3a89d91SMatthias Ringwald                              phy_c_to_p,
6760d3a89d91SMatthias Ringwald                              phy_p_to_c,
6761d3a89d91SMatthias Ringwald                              rtn_c_to_p,
6762d3a89d91SMatthias Ringwald                              rtn_p_to_c
6763d3a89d91SMatthias Ringwald                 );
6764bb42b5c0SMatthias Ringwald                 return true;
6765444e371eSMatthias Ringwald             case LE_AUDIO_CIG_STATE_CREATE_CIS:
6766bb42b5c0SMatthias Ringwald                 hci_stack->iso_active_operation_group_id = cig->params->cig_id;
6767bb42b5c0SMatthias Ringwald                 hci_stack->iso_active_operation_type = HCI_ISO_TYPE_CIS;
6768444e371eSMatthias Ringwald                 cig->state = LE_AUDIO_CIG_STATE_W4_CREATE_CIS;
67693abcd16cSMatthias Ringwald                 for (i=0;i<cig->num_cis;i++){
67703abcd16cSMatthias Ringwald                     cig->cis_setup_active[i] = true;
67713abcd16cSMatthias Ringwald                 }
6772444e371eSMatthias Ringwald                 hci_send_cmd(&hci_le_create_cis, cig->num_cis, cig->cis_con_handles, cig->acl_con_handles);
6773bb42b5c0SMatthias Ringwald                 return true;
6774f9306a1aSMatthias Ringwald             case LE_AUDIO_CIG_STATE_SETUP_ISO_PATH:
6775f9306a1aSMatthias Ringwald                 while (cig->state_vars.next_cis < (cig->num_cis * 2)){
6776f9306a1aSMatthias Ringwald                     // find next path to setup
6777f9306a1aSMatthias Ringwald                     uint8_t cis_index = cig->state_vars.next_cis >> 1;
6778f9306a1aSMatthias Ringwald                     if (cig->cis_established[cis_index] == false) {
6779f9306a1aSMatthias Ringwald                         continue;
6780f9306a1aSMatthias Ringwald                     }
6781f9306a1aSMatthias Ringwald                     uint8_t cis_direction = cig->state_vars.next_cis & 1;
6782f9306a1aSMatthias Ringwald                     bool setup = true;
67838e58e4f7SMatthias Ringwald                     if (cis_direction == 0){
6784f9306a1aSMatthias Ringwald                         // 0 - input - host to controller
6785f9306a1aSMatthias Ringwald                         // we are central => central to peripheral
6786f9306a1aSMatthias Ringwald                         setup &= cig->params->cis_params[cis_index].max_sdu_c_to_p > 0;
6787f9306a1aSMatthias Ringwald                     } else {
6788f9306a1aSMatthias Ringwald                         // 1 - output - controller to host
6789f9306a1aSMatthias Ringwald                         // we are central => peripheral to central
6790f9306a1aSMatthias Ringwald                         setup &= cig->params->cis_params[cis_index].max_sdu_p_to_c > 0;
6791f9306a1aSMatthias Ringwald                     }
6792f9306a1aSMatthias Ringwald                     if (setup){
6793f9306a1aSMatthias Ringwald                         hci_stack->iso_active_operation_group_id = cig->params->cig_id;
6794f9306a1aSMatthias Ringwald                         hci_stack->iso_active_operation_type = HCI_ISO_TYPE_CIS;
6795f9306a1aSMatthias Ringwald                         cig->state = LE_AUDIO_CIG_STATE_W4_SETUP_ISO_PATH;
67968e58e4f7SMatthias Ringwald                         hci_send_cmd(&hci_le_setup_iso_data_path, cig->cis_con_handles[cis_index], cis_direction, 0, 0, 0, 0, 0, 0, NULL);
6797f9306a1aSMatthias Ringwald                         return true;
6798f9306a1aSMatthias Ringwald                     }
67998e58e4f7SMatthias Ringwald                     cig->state_vars.next_cis++;
6800f9306a1aSMatthias Ringwald                 }
6801f9306a1aSMatthias Ringwald                 // emit done
6802f9306a1aSMatthias Ringwald                 cig->state = LE_AUDIO_CIG_STATE_ACTIVE;
6803d3a89d91SMatthias Ringwald             default:
6804d3a89d91SMatthias Ringwald                 break;
6805d3a89d91SMatthias Ringwald         }
6806d3a89d91SMatthias Ringwald     }
6807d3a89d91SMatthias Ringwald 
680826b93350SMatthias Ringwald     // CIS Accept/Reject
680926b93350SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->iso_streams);
681026b93350SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)) {
681126b93350SMatthias Ringwald         hci_iso_stream_t *iso_stream = (hci_iso_stream_t *) btstack_linked_list_iterator_next(&it);
681226b93350SMatthias Ringwald         hci_con_handle_t con_handle;
681326b93350SMatthias Ringwald         switch (iso_stream->state){
681426b93350SMatthias Ringwald             case HCI_ISO_STREAM_W2_ACCEPT:
681526b93350SMatthias Ringwald                 iso_stream->state = HCI_ISO_STREAM_STATE_W4_ESTABLISHED;
681626b93350SMatthias Ringwald                 hci_stack->iso_active_operation_type = HCI_ISO_TYPE_CIS;
681726b93350SMatthias Ringwald                 hci_stack->iso_active_operation_group_id = HCI_ISO_GROUP_ID_SINGLE_CIS;
6818969d876aSMatthias Ringwald                 hci_send_cmd(&hci_le_accept_cis_request, iso_stream->cis_handle);
681926b93350SMatthias Ringwald                 return true;
682026b93350SMatthias Ringwald             case HCI_ISO_STREAM_W2_REJECT:
6821969d876aSMatthias Ringwald                 con_handle = iso_stream->cis_handle;
682226b93350SMatthias Ringwald                 hci_stack->iso_active_operation_type = HCI_ISO_TYPE_CIS;
682326b93350SMatthias Ringwald                 hci_stack->iso_active_operation_group_id = HCI_ISO_GROUP_ID_SINGLE_CIS;
682426b93350SMatthias Ringwald                 hci_iso_stream_finalize(iso_stream);
682526b93350SMatthias Ringwald                 hci_send_cmd(&hci_le_reject_cis_request, con_handle, ERROR_CODE_REMOTE_DEVICE_TERMINATED_CONNECTION_DUE_TO_LOW_RESOURCES);
682626b93350SMatthias Ringwald                 return true;
682726b93350SMatthias Ringwald             case HCI_ISO_STREAM_STATE_W2_SETUP_ISO_INPUT:
682826b93350SMatthias Ringwald                 hci_stack->iso_active_operation_group_id = HCI_ISO_GROUP_ID_SINGLE_CIS;
682926b93350SMatthias Ringwald                 hci_stack->iso_active_operation_type = HCI_ISO_TYPE_CIS;
683026b93350SMatthias Ringwald                 iso_stream->state = HCI_ISO_STREAM_STATE_W4_ISO_SETUP_INPUT;
6831969d876aSMatthias Ringwald                 hci_send_cmd(&hci_le_setup_iso_data_path, iso_stream->cis_handle, 0, 0, 0, 0, 0, 0, 0, NULL);
683226b93350SMatthias Ringwald                 break;
683326b93350SMatthias Ringwald             case HCI_ISO_STREAM_STATE_W2_SETUP_ISO_OUTPUT:
683426b93350SMatthias Ringwald                 hci_stack->iso_active_operation_group_id = HCI_ISO_GROUP_ID_SINGLE_CIS;
683526b93350SMatthias Ringwald                 hci_stack->iso_active_operation_type = HCI_ISO_TYPE_CIS;
683626b93350SMatthias Ringwald                 iso_stream->state = HCI_ISO_STREAM_STATE_W4_ISO_SETUP_OUTPUT;
6837969d876aSMatthias Ringwald                 hci_send_cmd(&hci_le_setup_iso_data_path, iso_stream->cis_handle, 1, 0, 0, 0, 0, 0, 0, NULL);
683826b93350SMatthias Ringwald                 break;
683926b93350SMatthias Ringwald             default:
684026b93350SMatthias Ringwald                 break;
684126b93350SMatthias Ringwald         }
684226b93350SMatthias Ringwald     }
684326b93350SMatthias Ringwald 
68447aa35f6aSMatthias Ringwald     return false;
68457aa35f6aSMatthias Ringwald }
68467aa35f6aSMatthias Ringwald #endif /* ENABLE_LE_ISOCHRONOUS_STREAMS */
6847b2f949feS[email protected] #endif
68487bdc6798S[email protected] 
684988a03c8dSMatthias Ringwald static bool hci_run_general_pending_commands(void){
6850f30077b7SMatthias Ringwald     btstack_linked_item_t * it;
6851a0da043fSMatthias Ringwald     for (it = (btstack_linked_item_t *) hci_stack->connections; it != NULL; it = it->next){
685205ae8de3SMatthias Ringwald         hci_connection_t * connection = (hci_connection_t *) it;
685332ab9390Smatthias.ringwald 
68540bf6344aS[email protected]         switch(connection->state){
68550bf6344aS[email protected]             case SEND_CREATE_CONNECTION:
68564f3229d8S[email protected]                 switch(connection->address_type){
685735454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
6858f16129ceSMatthias Ringwald                     case BD_ADDR_TYPE_ACL:
68599da54300S[email protected]                         log_info("sending hci_create_connection");
6860b4eb4420SMatthias Ringwald                         hci_send_cmd(&hci_create_connection, connection->address, hci_usable_acl_packet_types(), 0, 0, 0, hci_stack->allow_role_switch);
68614f3229d8S[email protected]                         break;
686235454696SMatthias Ringwald #endif
68634f3229d8S[email protected]                     default:
6864a9a4c409SMatthias Ringwald #ifdef ENABLE_BLE
6865d70217a2SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
68669da54300S[email protected]                         log_info("sending hci_le_create_connection");
68676bcfa632SMatthias Ringwald                         hci_stack->le_connection_own_addr_type =  hci_stack->le_own_addr_type;
68686bcfa632SMatthias Ringwald                         hci_get_own_address_for_addr_type(hci_stack->le_connection_own_addr_type, hci_stack->le_connection_own_address);
6869f346015eSMatthias Ringwald                         hci_send_le_create_connection(0, connection->address_type, connection->address);
68704f3229d8S[email protected]                         connection->state = SENT_CREATE_CONNECTION;
6871b2f949feS[email protected] #endif
6872d70217a2SMatthias Ringwald #endif
68734f3229d8S[email protected]                         break;
68744f3229d8S[email protected]                 }
6875f30077b7SMatthias Ringwald                 return true;
6876ad83dc6aS[email protected] 
687735454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
68780bf6344aS[email protected]             case RECEIVED_CONNECTION_REQUEST:
6879f16129ceSMatthias Ringwald                 if (connection->address_type == BD_ADDR_TYPE_ACL){
688076ccfb2aSMatthias Ringwald                     log_info("sending hci_accept_connection_request");
6881895f6685SMilanka Ringwald                     connection->state = ACCEPTED_CONNECTION_REQUEST;
6882c4c88f1bSJakob Krantz                     hci_send_cmd(&hci_accept_connection_request, connection->address, hci_stack->master_slave_policy);
6883f30077b7SMatthias Ringwald                     return true;
6884ee025741SMatthias Ringwald                 }
6885ee025741SMatthias Ringwald                 break;
688635454696SMatthias Ringwald #endif
68870bf6344aS[email protected]             case SEND_DISCONNECT:
68880bf6344aS[email protected]                 connection->state = SENT_DISCONNECT;
68896ef3696aSMatthias Ringwald                 hci_send_cmd(&hci_disconnect, connection->con_handle, ERROR_CODE_REMOTE_USER_TERMINATED_CONNECTION);
6890f30077b7SMatthias Ringwald                 return true;
68910bf6344aS[email protected] 
68920bf6344aS[email protected]             default:
68930bf6344aS[email protected]                 break;
6894c7e0c5f6Smatthias.ringwald         }
6895c7e0c5f6Smatthias.ringwald 
6896cabf004eSMatthias Ringwald         // no further commands if connection is about to get shut down
6897cabf004eSMatthias Ringwald         if (connection->state == SENT_DISCONNECT) continue;
6898cabf004eSMatthias Ringwald 
689994418890SMatthias Ringwald #ifdef ENABLE_CLASSIC
690094418890SMatthias Ringwald 
6901ad20f0c8SMatthias Ringwald         // Handling link key request requires remote supported features
690250f49832SMatthias Ringwald         if (((connection->authentication_flags & AUTH_FLAG_HANDLE_LINK_KEY_REQUEST) != 0)){
6903608f51bbSMatthias Ringwald             log_info("responding to link key request, have link key db: %u", hci_stack->link_key_db != NULL);
69048daf94bcSMatthias Ringwald             connectionClearAuthenticationFlags(connection, AUTH_FLAG_HANDLE_LINK_KEY_REQUEST);
690530e72d78SMatthias Ringwald 
6906e9f98c4aSMatthias Ringwald             bool have_link_key = connection->link_key_type != INVALID_LINK_KEY;
6907e9f98c4aSMatthias Ringwald             bool security_level_sufficient = have_link_key && (gap_security_level_for_link_key_type(connection->link_key_type) >= connection->requested_security_level);
690830e72d78SMatthias Ringwald             if (have_link_key && security_level_sufficient){
6909e9f98c4aSMatthias Ringwald                 hci_send_cmd(&hci_link_key_request_reply, connection->address, &connection->link_key);
691032ab9390Smatthias.ringwald             } else {
691132ab9390Smatthias.ringwald                 hci_send_cmd(&hci_link_key_request_negative_reply, connection->address);
691232ab9390Smatthias.ringwald             }
6913f30077b7SMatthias Ringwald             return true;
691432ab9390Smatthias.ringwald         }
69151d6b20aeS[email protected] 
69168daf94bcSMatthias Ringwald         if (connection->authentication_flags & AUTH_FLAG_DENY_PIN_CODE_REQUEST){
69179da54300S[email protected]             log_info("denying to pin request");
69188daf94bcSMatthias Ringwald             connectionClearAuthenticationFlags(connection, AUTH_FLAG_DENY_PIN_CODE_REQUEST);
691934d2123cS[email protected]             hci_send_cmd(&hci_pin_code_request_negative_reply, connection->address);
6920f30077b7SMatthias Ringwald             return true;
69214c57c146S[email protected]         }
69224c57c146S[email protected] 
6923c950c316SMatthias Ringwald         // security assessment requires remote features
69242dd8985bSMatthias Ringwald         if ((connection->authentication_flags & AUTH_FLAG_RECV_IO_CAPABILITIES_REQUEST) != 0){
6925c950c316SMatthias Ringwald             connectionClearAuthenticationFlags(connection, AUTH_FLAG_RECV_IO_CAPABILITIES_REQUEST);
6926c950c316SMatthias Ringwald             hci_ssp_assess_security_on_io_cap_request(connection);
6927c950c316SMatthias 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
6928c950c316SMatthias Ringwald         }
6929c950c316SMatthias Ringwald 
69308daf94bcSMatthias Ringwald         if (connection->authentication_flags & AUTH_FLAG_SEND_IO_CAPABILITIES_REPLY){
69318daf94bcSMatthias Ringwald             connectionClearAuthenticationFlags(connection, AUTH_FLAG_SEND_IO_CAPABILITIES_REPLY);
6932a8d20135SMatthias Ringwald             // set authentication requirements:
6933a8d20135SMatthias Ringwald             // - MITM = ssp_authentication_requirement (USER) | requested_security_level (dynamic)
6934532454f9SMatthias Ringwald             // - BONDING MODE: dedicated if requested, bondable otherwise. Drop bondable if not set for remote
6935a8d20135SMatthias Ringwald             uint8_t authreq = hci_stack->ssp_authentication_requirement & 1;
69369faad3abS[email protected]             if (gap_mitm_protection_required_for_security_level(connection->requested_security_level)){
69379faad3abS[email protected]                 authreq |= 1;
6938106d6d11S[email protected]             }
6939532454f9SMatthias Ringwald             bool bonding = hci_stack->bondable;
69408daf94bcSMatthias Ringwald             if (connection->authentication_flags & AUTH_FLAG_RECV_IO_CAPABILITIES_RESPONSE){
6941532454f9SMatthias Ringwald                 // if we have received IO Cap Response, we're in responder role
6942532454f9SMatthias Ringwald                 bool remote_bonding = connection->io_cap_response_auth_req >= SSP_IO_AUTHREQ_MITM_PROTECTION_NOT_REQUIRED_DEDICATED_BONDING;
6943532454f9SMatthias Ringwald                 if (bonding && !remote_bonding){
6944532454f9SMatthias Ringwald                     log_info("Remote not bonding, dropping local flag");
6945532454f9SMatthias Ringwald                     bonding = false;
6946532454f9SMatthias Ringwald                 }
6947532454f9SMatthias Ringwald             }
6948532454f9SMatthias Ringwald             if (bonding){
6949a8d20135SMatthias Ringwald                 if (connection->bonding_flags & BONDING_DEDICATED){
6950a8d20135SMatthias Ringwald                     authreq |= SSP_IO_AUTHREQ_MITM_PROTECTION_NOT_REQUIRED_DEDICATED_BONDING;
6951532454f9SMatthias Ringwald                 } else {
6952a8d20135SMatthias Ringwald                     authreq |= SSP_IO_AUTHREQ_MITM_PROTECTION_NOT_REQUIRED_GENERAL_BONDING;
6953a8d20135SMatthias Ringwald                 }
6954532454f9SMatthias Ringwald             }
69551849becdSMatthias Ringwald             uint8_t have_oob_data = 0;
69561849becdSMatthias Ringwald #ifdef ENABLE_CLASSIC_PAIRING_OOB
69571849becdSMatthias Ringwald             if (connection->classic_oob_c_192 != NULL){
69581849becdSMatthias Ringwald                     have_oob_data |= 1;
69591849becdSMatthias Ringwald             }
69601849becdSMatthias Ringwald             if (connection->classic_oob_c_256 != NULL){
69611849becdSMatthias Ringwald                 have_oob_data |= 2;
69621849becdSMatthias Ringwald             }
69631849becdSMatthias Ringwald #endif
69641849becdSMatthias Ringwald             hci_send_cmd(&hci_io_capability_request_reply, &connection->address, hci_stack->ssp_io_capability, have_oob_data, authreq);
696511b03efaSMatthias Ringwald             return true;
6966f8fb5f6eS[email protected]         }
696711b03efaSMatthias Ringwald 
69688daf94bcSMatthias Ringwald         if (connection->authentication_flags & AUTH_FLAG_SEND_IO_CAPABILITIES_NEGATIVE_REPLY) {
69698daf94bcSMatthias Ringwald             connectionClearAuthenticationFlags(connection, AUTH_FLAG_SEND_IO_CAPABILITIES_NEGATIVE_REPLY);
697011b03efaSMatthias Ringwald             hci_send_cmd(&hci_io_capability_request_negative_reply, &connection->address, ERROR_CODE_PAIRING_NOT_ALLOWED);
6971f30077b7SMatthias Ringwald             return true;
697232ab9390Smatthias.ringwald         }
697332ab9390Smatthias.ringwald 
69741849becdSMatthias Ringwald #ifdef ENABLE_CLASSIC_PAIRING_OOB
69757ca4a7edSMatthias Ringwald         if (connection->authentication_flags & AUTH_FLAG_SEND_REMOTE_OOB_DATA_REPLY){
69767ca4a7edSMatthias Ringwald             connectionClearAuthenticationFlags(connection, AUTH_FLAG_SEND_REMOTE_OOB_DATA_REPLY);
69771849becdSMatthias Ringwald             const uint8_t zero[16] = { 0 };
69781849becdSMatthias Ringwald             const uint8_t * r_192 = zero;
69791849becdSMatthias Ringwald             const uint8_t * c_192 = zero;
69801849becdSMatthias Ringwald             const uint8_t * r_256 = zero;
69811849becdSMatthias Ringwald             const uint8_t * c_256 = zero;
69821849becdSMatthias Ringwald             // verify P-256 OOB
69831e83575aSMatthias Ringwald             if ((connection->classic_oob_c_256 != NULL) && hci_command_supported(SUPPORTED_HCI_COMMAND_REMOTE_OOB_EXTENDED_DATA_REQUEST_REPLY)) {
69841849becdSMatthias Ringwald                 c_256 = connection->classic_oob_c_256;
69851849becdSMatthias Ringwald                 if (connection->classic_oob_r_256 != NULL) {
69861849becdSMatthias Ringwald                     r_256 = connection->classic_oob_r_256;
69871849becdSMatthias Ringwald                 }
69881849becdSMatthias Ringwald             }
69891849becdSMatthias Ringwald             // verify P-192 OOB
69901849becdSMatthias Ringwald             if ((connection->classic_oob_c_192 != NULL)) {
69911849becdSMatthias Ringwald                 c_192 = connection->classic_oob_c_192;
69921849becdSMatthias Ringwald                 if (connection->classic_oob_r_192 != NULL) {
69931849becdSMatthias Ringwald                     r_192 = connection->classic_oob_r_192;
69941849becdSMatthias Ringwald                 }
69951849becdSMatthias Ringwald             }
69967ca4a7edSMatthias Ringwald 
69977ca4a7edSMatthias Ringwald             // assess security
69987ca4a7edSMatthias Ringwald             bool need_level_4 = hci_stack->gap_secure_connections_only_mode || (connection->requested_security_level == LEVEL_4);
69997ca4a7edSMatthias Ringwald             bool can_reach_level_4 = hci_remote_sc_enabled(connection) && (c_256 != NULL);
70007ca4a7edSMatthias Ringwald             if (need_level_4 && !can_reach_level_4){
70017ca4a7edSMatthias Ringwald                 log_info("Level 4 required, but not possible -> abort");
70027ca4a7edSMatthias Ringwald                 hci_pairing_complete(connection, ERROR_CODE_INSUFFICIENT_SECURITY);
70037ca4a7edSMatthias Ringwald                 // send oob negative reply
70047ca4a7edSMatthias Ringwald                 c_256 = NULL;
70057ca4a7edSMatthias Ringwald                 c_192 = NULL;
70067ca4a7edSMatthias Ringwald             }
70077ca4a7edSMatthias Ringwald 
70081849becdSMatthias Ringwald             // Reply
70091849becdSMatthias Ringwald             if (c_256 != zero) {
70101849becdSMatthias Ringwald                 hci_send_cmd(&hci_remote_oob_extended_data_request_reply, &connection->address, c_192, r_192, c_256, r_256);
70111849becdSMatthias Ringwald             } else if (c_192 != zero){
70121849becdSMatthias Ringwald                 hci_send_cmd(&hci_remote_oob_data_request_reply, &connection->address, c_192, r_192);
70131849becdSMatthias Ringwald             } else {
70141ae74bf3SMatthias Ringwald                 hci_stack->classic_oob_con_handle = connection->con_handle;
70151849becdSMatthias Ringwald                 hci_send_cmd(&hci_remote_oob_data_request_negative_reply, &connection->address);
70161849becdSMatthias Ringwald             }
70171849becdSMatthias Ringwald             return true;
70181849becdSMatthias Ringwald         }
70191849becdSMatthias Ringwald #endif
70201849becdSMatthias Ringwald 
70218daf94bcSMatthias Ringwald         if (connection->authentication_flags & AUTH_FLAG_SEND_USER_CONFIRM_REPLY){
70228daf94bcSMatthias Ringwald             connectionClearAuthenticationFlags(connection, AUTH_FLAG_SEND_USER_CONFIRM_REPLY);
702334d2123cS[email protected]             hci_send_cmd(&hci_user_confirmation_request_reply, &connection->address);
7024f30077b7SMatthias Ringwald             return true;
7025dbe1a790S[email protected]         }
7026dbe1a790S[email protected] 
7027367aedc0SMatthias Ringwald         if (connection->authentication_flags & AUTH_FLAG_SEND_USER_CONFIRM_NEGATIVE_REPLY){
7028367aedc0SMatthias Ringwald             connectionClearAuthenticationFlags(connection, AUTH_FLAG_SEND_USER_CONFIRM_NEGATIVE_REPLY);
7029367aedc0SMatthias Ringwald             hci_send_cmd(&hci_user_confirmation_request_negative_reply, &connection->address);
7030367aedc0SMatthias Ringwald             return true;
7031367aedc0SMatthias Ringwald         }
7032367aedc0SMatthias Ringwald 
70338daf94bcSMatthias Ringwald         if (connection->authentication_flags & AUTH_FLAG_SEND_USER_PASSKEY_REPLY){
70348daf94bcSMatthias Ringwald             connectionClearAuthenticationFlags(connection, AUTH_FLAG_SEND_USER_PASSKEY_REPLY);
703534d2123cS[email protected]             hci_send_cmd(&hci_user_passkey_request_reply, &connection->address, 000000);
7036f30077b7SMatthias Ringwald             return true;
7037dbe1a790S[email protected]         }
7038afd4e962S[email protected] 
7039ab0c69a9SMatthias Ringwald         if ((connection->bonding_flags & (BONDING_DISCONNECT_DEDICATED_DONE | BONDING_DEDICATED_DEFER_DISCONNECT)) == BONDING_DISCONNECT_DEDICATED_DONE){
7040ad83dc6aS[email protected]             connection->bonding_flags &= ~BONDING_DISCONNECT_DEDICATED_DONE;
70411bd5283dS[email protected]             connection->bonding_flags |= BONDING_EMIT_COMPLETE_ON_DISCONNECT;
70426ef3696aSMatthias Ringwald             connection->state = SENT_DISCONNECT;
70436ef3696aSMatthias Ringwald             hci_send_cmd(&hci_disconnect, connection->con_handle, ERROR_CODE_REMOTE_USER_TERMINATED_CONNECTION);
7044f30077b7SMatthias Ringwald             return true;
7045ad83dc6aS[email protected]         }
704676f27cffSMatthias Ringwald 
70472a75353aSMatthias Ringwald         if ((connection->bonding_flags & BONDING_SEND_AUTHENTICATE_REQUEST) && ((connection->bonding_flags & BONDING_RECEIVED_REMOTE_FEATURES) != 0)){
704834d2123cS[email protected]             connection->bonding_flags &= ~BONDING_SEND_AUTHENTICATE_REQUEST;
7049abdad579SMatthias Ringwald             connection->bonding_flags |= BONDING_SENT_AUTHENTICATE_REQUEST;
705034d2123cS[email protected]             hci_send_cmd(&hci_authentication_requested, connection->con_handle);
7051f30077b7SMatthias Ringwald             return true;
7052afd4e962S[email protected]         }
705376f27cffSMatthias Ringwald 
7054dce78009S[email protected]         if (connection->bonding_flags & BONDING_SEND_ENCRYPTION_REQUEST){
7055dce78009S[email protected]             connection->bonding_flags &= ~BONDING_SEND_ENCRYPTION_REQUEST;
7056dce78009S[email protected]             hci_send_cmd(&hci_set_connection_encryption, connection->con_handle, 1);
7057f30077b7SMatthias Ringwald             return true;
7058dce78009S[email protected]         }
7059447016ffSMatthias Ringwald 
7060573897a0SMatthias Ringwald         if (connection->bonding_flags & BONDING_SEND_READ_ENCRYPTION_KEY_SIZE){
7061573897a0SMatthias Ringwald             connection->bonding_flags &= ~BONDING_SEND_READ_ENCRYPTION_KEY_SIZE;
7062573897a0SMatthias Ringwald             hci_send_cmd(&hci_read_encryption_key_size, connection->con_handle, 1);
7063f30077b7SMatthias Ringwald             return true;
7064573897a0SMatthias Ringwald         }
7065447016ffSMatthias Ringwald 
7066447016ffSMatthias Ringwald         if (connection->bonding_flags & BONDING_REQUEST_REMOTE_FEATURES_PAGE_0){
7067447016ffSMatthias Ringwald             connection->bonding_flags &= ~BONDING_REQUEST_REMOTE_FEATURES_PAGE_0;
7068447016ffSMatthias Ringwald             hci_send_cmd(&hci_read_remote_supported_features_command, connection->con_handle);
7069447016ffSMatthias Ringwald             return true;
7070447016ffSMatthias Ringwald         }
7071447016ffSMatthias Ringwald 
7072447016ffSMatthias Ringwald         if (connection->bonding_flags & BONDING_REQUEST_REMOTE_FEATURES_PAGE_1){
7073447016ffSMatthias Ringwald             connection->bonding_flags &= ~BONDING_REQUEST_REMOTE_FEATURES_PAGE_1;
7074447016ffSMatthias Ringwald             hci_send_cmd(&hci_read_remote_extended_features_command, connection->con_handle, 1);
7075447016ffSMatthias Ringwald             return true;
7076447016ffSMatthias Ringwald         }
7077447016ffSMatthias Ringwald 
7078447016ffSMatthias Ringwald         if (connection->bonding_flags & BONDING_REQUEST_REMOTE_FEATURES_PAGE_2){
7079447016ffSMatthias Ringwald             connection->bonding_flags &= ~BONDING_REQUEST_REMOTE_FEATURES_PAGE_2;
7080447016ffSMatthias Ringwald             hci_send_cmd(&hci_read_remote_extended_features_command, connection->con_handle, 2);
7081447016ffSMatthias Ringwald             return true;
7082447016ffSMatthias Ringwald         }
708376f27cffSMatthias Ringwald #endif
708476f27cffSMatthias Ringwald 
708576f27cffSMatthias Ringwald         if (connection->bonding_flags & BONDING_DISCONNECT_SECURITY_BLOCK){
708676f27cffSMatthias Ringwald             connection->bonding_flags &= ~BONDING_DISCONNECT_SECURITY_BLOCK;
70871714cbbdSMatthias Ringwald #ifdef ENABLE_CLASSIC
70881714cbbdSMatthias Ringwald             hci_pairing_complete(connection, ERROR_CODE_CONNECTION_REJECTED_DUE_TO_SECURITY_REASONS);
70891714cbbdSMatthias Ringwald #endif
70906ef3696aSMatthias Ringwald             if (connection->state != SENT_DISCONNECT){
70916ef3696aSMatthias Ringwald                 connection->state = SENT_DISCONNECT;
70926ef3696aSMatthias Ringwald                 hci_send_cmd(&hci_disconnect, connection->con_handle, ERROR_CODE_AUTHENTICATION_FAILURE);
7093f30077b7SMatthias Ringwald                 return true;
709476f27cffSMatthias Ringwald             }
70956ef3696aSMatthias Ringwald         }
7096da886c03S[email protected] 
70976cdc2862SMatthias Ringwald #ifdef ENABLE_CLASSIC
7098f8ee3071SMatthias Ringwald         uint16_t sniff_min_interval;
7099f8ee3071SMatthias Ringwald         switch (connection->sniff_min_interval){
7100f8ee3071SMatthias Ringwald             case 0:
7101f8ee3071SMatthias Ringwald                 break;
7102f8ee3071SMatthias Ringwald             case 0xffff:
7103f8ee3071SMatthias Ringwald                 connection->sniff_min_interval = 0;
7104f8ee3071SMatthias Ringwald                 hci_send_cmd(&hci_exit_sniff_mode, connection->con_handle);
7105f30077b7SMatthias Ringwald                 return true;
7106f8ee3071SMatthias Ringwald             default:
7107f8ee3071SMatthias Ringwald                 sniff_min_interval = connection->sniff_min_interval;
7108f8ee3071SMatthias Ringwald                 connection->sniff_min_interval = 0;
7109f8ee3071SMatthias Ringwald                 hci_send_cmd(&hci_sniff_mode, connection->con_handle, connection->sniff_max_interval, sniff_min_interval, connection->sniff_attempt, connection->sniff_timeout);
7110f30077b7SMatthias Ringwald                 return true;
7111f8ee3071SMatthias Ringwald         }
711288a03c8dSMatthias Ringwald 
7113140c0557SMatthias Ringwald         if (connection->sniff_subrating_max_latency != 0xffff){
7114140c0557SMatthias Ringwald             uint16_t max_latency = connection->sniff_subrating_max_latency;
7115140c0557SMatthias Ringwald             connection->sniff_subrating_max_latency = 0;
7116140c0557SMatthias Ringwald             hci_send_cmd(&hci_sniff_subrating, connection->con_handle, max_latency, connection->sniff_subrating_min_remote_timeout, connection->sniff_subrating_min_local_timeout);
7117140c0557SMatthias Ringwald             return true;
7118140c0557SMatthias Ringwald         }
7119140c0557SMatthias Ringwald 
7120965a4ccfSMatthias Ringwald         if (connection->qos_service_type != HCI_SERVICE_TYPE_INVALID){
7121278ff8a9SMatthias Ringwald             uint8_t service_type = (uint8_t) connection->qos_service_type;
7122965a4ccfSMatthias Ringwald             connection->qos_service_type = HCI_SERVICE_TYPE_INVALID;
7123278ff8a9SMatthias 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);
7124278ff8a9SMatthias Ringwald             return true;
7125278ff8a9SMatthias Ringwald         }
7126278ff8a9SMatthias Ringwald 
712788a03c8dSMatthias Ringwald         if (connection->request_role != HCI_ROLE_INVALID){
712888a03c8dSMatthias Ringwald             hci_role_t role = connection->request_role;
712988a03c8dSMatthias Ringwald             connection->request_role = HCI_ROLE_INVALID;
713088a03c8dSMatthias Ringwald             hci_send_cmd(&hci_switch_role_command, connection->address, role);
713188a03c8dSMatthias Ringwald             return true;
713288a03c8dSMatthias Ringwald         }
713322df2fe2SMatthias Ringwald #endif
71349afaa4d4SMatthias Ringwald 
71359afaa4d4SMatthias Ringwald         if (connection->gap_connection_tasks != 0){
713622df2fe2SMatthias Ringwald #ifdef ENABLE_CLASSIC
71379afaa4d4SMatthias Ringwald             if ((connection->gap_connection_tasks & GAP_CONNECTION_TASK_WRITE_AUTOMATIC_FLUSH_TIMEOUT) != 0){
71389afaa4d4SMatthias Ringwald                 connection->gap_connection_tasks &= ~GAP_CONNECTION_TASK_WRITE_AUTOMATIC_FLUSH_TIMEOUT;
71399afaa4d4SMatthias Ringwald                 hci_send_cmd(&hci_write_automatic_flush_timeout, connection->con_handle, hci_stack->automatic_flush_timeout);
71409afaa4d4SMatthias Ringwald                 return true;
71419afaa4d4SMatthias Ringwald             }
714222df2fe2SMatthias Ringwald             if (connection->gap_connection_tasks & GAP_CONNECTION_TASK_WRITE_SUPERVISION_TIMEOUT){
714322df2fe2SMatthias Ringwald                 connection->gap_connection_tasks &= ~GAP_CONNECTION_TASK_WRITE_SUPERVISION_TIMEOUT;
714422df2fe2SMatthias Ringwald                 hci_send_cmd(&hci_write_link_supervision_timeout, connection->con_handle, hci_stack->link_supervision_timeout);
714522df2fe2SMatthias Ringwald                 return true;
71469afaa4d4SMatthias Ringwald             }
71476cdc2862SMatthias Ringwald #endif
714822df2fe2SMatthias Ringwald             if (connection->gap_connection_tasks & GAP_CONNECTION_TASK_READ_RSSI){
714922df2fe2SMatthias Ringwald                 connection->gap_connection_tasks &= ~GAP_CONNECTION_TASK_READ_RSSI;
715022df2fe2SMatthias Ringwald                 hci_send_cmd(&hci_read_rssi, connection->con_handle);
715122df2fe2SMatthias Ringwald                 return true;
715222df2fe2SMatthias Ringwald             }
7153ac0f6b83SMatthias Ringwald #ifdef ENABLE_BLE
7154ac0f6b83SMatthias Ringwald             if (connection->gap_connection_tasks & GAP_CONNECTION_TASK_LE_READ_REMOTE_FEATURES){
7155ac0f6b83SMatthias Ringwald                 connection->gap_connection_tasks &= ~GAP_CONNECTION_TASK_LE_READ_REMOTE_FEATURES;
7156ac0f6b83SMatthias Ringwald                 hci_send_cmd(&hci_le_read_remote_used_features, connection->con_handle);
7157ac0f6b83SMatthias Ringwald                 return true;
7158ac0f6b83SMatthias Ringwald             }
7159ac0f6b83SMatthias Ringwald #endif
716022df2fe2SMatthias Ringwald         }
7161f8ee3071SMatthias Ringwald 
7162a9a4c409SMatthias Ringwald #ifdef ENABLE_BLE
716373cd8a2aSMatthias Ringwald         switch (connection->le_con_parameter_update_state){
716473cd8a2aSMatthias Ringwald             // response to L2CAP CON PARAMETER UPDATE REQUEST
716573cd8a2aSMatthias Ringwald             case CON_PARAMETER_UPDATE_CHANGE_HCI_CON_PARAMETERS:
7166da886c03S[email protected]                 connection->le_con_parameter_update_state = CON_PARAMETER_UPDATE_NONE;
716773cd8a2aSMatthias Ringwald                 hci_send_cmd(&hci_le_connection_update, connection->con_handle, connection->le_conn_interval_min,
7168c37a3166S[email protected]                              connection->le_conn_interval_max, connection->le_conn_latency, connection->le_supervision_timeout,
7169d4876126SMatthias Ringwald                              hci_stack->le_minimum_ce_length, hci_stack->le_maximum_ce_length);
7170f30077b7SMatthias Ringwald                 return true;
717173cd8a2aSMatthias Ringwald             case CON_PARAMETER_UPDATE_REPLY:
717273cd8a2aSMatthias Ringwald                 connection->le_con_parameter_update_state = CON_PARAMETER_UPDATE_NONE;
717373cd8a2aSMatthias Ringwald                 hci_send_cmd(&hci_le_remote_connection_parameter_request_reply, connection->con_handle, connection->le_conn_interval_min,
717473cd8a2aSMatthias Ringwald                              connection->le_conn_interval_max, connection->le_conn_latency, connection->le_supervision_timeout,
7175d4876126SMatthias Ringwald                              hci_stack->le_minimum_ce_length, hci_stack->le_maximum_ce_length);
7176f30077b7SMatthias Ringwald                 return true;
717773cd8a2aSMatthias Ringwald             case CON_PARAMETER_UPDATE_NEGATIVE_REPLY:
717873cd8a2aSMatthias Ringwald                 connection->le_con_parameter_update_state = CON_PARAMETER_UPDATE_NONE;
71791e0338ebSMatthias Ringwald                 hci_send_cmd(&hci_le_remote_connection_parameter_request_negative_reply, connection->con_handle,
71801e0338ebSMatthias Ringwald                              ERROR_CODE_UNACCEPTABLE_CONNECTION_PARAMETERS);
7181f30077b7SMatthias Ringwald                 return true;
718273cd8a2aSMatthias Ringwald             default:
718373cd8a2aSMatthias Ringwald                 break;
7184c37a3166S[email protected]         }
71854ea43905SMatthias Ringwald         if (connection->le_phy_update_all_phys != 0xffu){
7186b90f6e0aSMatthias Ringwald             uint8_t all_phys = connection->le_phy_update_all_phys;
7187b90f6e0aSMatthias Ringwald             connection->le_phy_update_all_phys = 0xff;
7188b90f6e0aSMatthias 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);
7189f30077b7SMatthias Ringwald             return true;
7190b90f6e0aSMatthias Ringwald         }
71913bd96807SMatthias Ringwald #ifdef ENABLE_LE_PERIODIC_ADVERTISING
71923bd96807SMatthias Ringwald         if (connection->le_past_sync_handle != HCI_CON_HANDLE_INVALID){
71933bd96807SMatthias Ringwald             hci_con_handle_t sync_handle = connection->le_past_sync_handle;
71943bd96807SMatthias Ringwald             connection->le_past_sync_handle = HCI_CON_HANDLE_INVALID;
71953bd96807SMatthias Ringwald             hci_send_cmd(&hci_le_periodic_advertising_sync_transfer, connection->con_handle, connection->le_past_service_data, sync_handle);
71963bd96807SMatthias Ringwald             return true;
71973bd96807SMatthias Ringwald         }
71983bd96807SMatthias Ringwald #endif
7199c37a3166S[email protected] #endif
7200dbe1a790S[email protected]     }
7201f30077b7SMatthias Ringwald     return false;
7202f30077b7SMatthias Ringwald }
7203c7e0c5f6Smatthias.ringwald 
7204f30077b7SMatthias Ringwald static void hci_run(void){
7205f30077b7SMatthias Ringwald 
7206df9e2780SMatthias Ringwald     // stack state sub statemachines
7207df9e2780SMatthias Ringwald     switch (hci_stack->state) {
7208df9e2780SMatthias Ringwald         case HCI_STATE_INITIALIZING:
7209df9e2780SMatthias Ringwald             hci_initializing_run();
7210d0dea5fbSMatthias Ringwald             break;
7211df9e2780SMatthias Ringwald         case HCI_STATE_HALTING:
7212df9e2780SMatthias Ringwald             hci_halting_run();
7213d0dea5fbSMatthias Ringwald             break;
7214df9e2780SMatthias Ringwald         case HCI_STATE_FALLING_ASLEEP:
7215df9e2780SMatthias Ringwald             hci_falling_asleep_run();
7216d0dea5fbSMatthias Ringwald             break;
7217df9e2780SMatthias Ringwald         default:
7218df9e2780SMatthias Ringwald             break;
7219df9e2780SMatthias Ringwald     }
7220df9e2780SMatthias Ringwald 
7221d0dea5fbSMatthias Ringwald     // allow to run after initialization to working transition
7222d0dea5fbSMatthias Ringwald     if (hci_stack->state != HCI_STATE_WORKING){
7223d0dea5fbSMatthias Ringwald         return;
7224d0dea5fbSMatthias Ringwald     }
7225d0dea5fbSMatthias Ringwald 
7226f30077b7SMatthias Ringwald     bool done;
7227f30077b7SMatthias Ringwald 
7228f30077b7SMatthias Ringwald     // send continuation fragments first, as they block the prepared packet buffer
7229f30077b7SMatthias Ringwald     done = hci_run_acl_fragments();
7230f30077b7SMatthias Ringwald     if (done) return;
7231f30077b7SMatthias Ringwald 
723268ab6207SMatthias Ringwald #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
723368ab6207SMatthias Ringwald     done = hci_run_iso_fragments();
723468ab6207SMatthias Ringwald     if (done) return;
723568ab6207SMatthias Ringwald #endif
723668ab6207SMatthias Ringwald 
7237f30077b7SMatthias Ringwald #ifdef ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL
7238f30077b7SMatthias Ringwald     // send host num completed packets next as they don't require num_cmd_packets > 0
7239f30077b7SMatthias Ringwald     if (!hci_can_send_comand_packet_transport()) return;
7240f30077b7SMatthias Ringwald     if (hci_stack->host_completed_packets){
7241f30077b7SMatthias Ringwald         hci_host_num_completed_packets();
7242f30077b7SMatthias Ringwald         return;
7243f30077b7SMatthias Ringwald     }
7244f30077b7SMatthias Ringwald #endif
7245f30077b7SMatthias Ringwald 
7246f30077b7SMatthias Ringwald     if (!hci_can_send_command_packet_now()) return;
7247f30077b7SMatthias Ringwald 
7248f30077b7SMatthias Ringwald     // global/non-connection oriented commands
7249f30077b7SMatthias Ringwald 
7250f30077b7SMatthias Ringwald 
7251f30077b7SMatthias Ringwald #ifdef ENABLE_CLASSIC
7252f30077b7SMatthias Ringwald     // general gap classic
7253f30077b7SMatthias Ringwald     done = hci_run_general_gap_classic();
7254f30077b7SMatthias Ringwald     if (done) return;
7255f30077b7SMatthias Ringwald #endif
7256f30077b7SMatthias Ringwald 
7257f30077b7SMatthias Ringwald #ifdef ENABLE_BLE
7258f30077b7SMatthias Ringwald     // general gap le
7259f30077b7SMatthias Ringwald     done = hci_run_general_gap_le();
7260f30077b7SMatthias Ringwald     if (done) return;
72617aa35f6aSMatthias Ringwald 
72627aa35f6aSMatthias Ringwald #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
72637aa35f6aSMatthias Ringwald     // ISO related tasks, e.g. BIG create/terminate/sync
72647aa35f6aSMatthias Ringwald     done = hci_run_iso_tasks();
72657aa35f6aSMatthias Ringwald     if (done) return;
72667aa35f6aSMatthias Ringwald #endif
7267f30077b7SMatthias Ringwald #endif
7268f30077b7SMatthias Ringwald 
7269f30077b7SMatthias Ringwald     // send pending HCI commands
7270df9e2780SMatthias Ringwald     hci_run_general_pending_commands();
72713429f56bSmatthias.ringwald }
727216833f0aSmatthias.ringwald 
72733e2050f7SMatthias Ringwald uint8_t hci_send_cmd_packet(uint8_t *packet, int size){
727435454696SMatthias Ringwald     // house-keeping
727535454696SMatthias Ringwald 
727635454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
7277c8e4258aSmatthias.ringwald     bd_addr_t addr;
7278c8e4258aSmatthias.ringwald     hci_connection_t * conn;
7279c123d999SMatthias Ringwald #endif
7280c123d999SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
72816f35bb46SMatthias Ringwald     uint8_t initiator_filter_policy;
72829cbd2215SMatthias Ringwald #endif
7283c8e4258aSmatthias.ringwald 
72846f35bb46SMatthias Ringwald     uint16_t opcode = little_endian_read_16(packet, 0);
72856f35bb46SMatthias Ringwald     switch (opcode) {
72869cbd2215SMatthias Ringwald         case HCI_OPCODE_HCI_WRITE_LOOPBACK_MODE:
72879cbd2215SMatthias Ringwald             hci_stack->loopback_mode = packet[3];
72889cbd2215SMatthias Ringwald             break;
72899cbd2215SMatthias Ringwald 
72909cbd2215SMatthias Ringwald #ifdef ENABLE_CLASSIC
72916f35bb46SMatthias Ringwald         case HCI_OPCODE_HCI_CREATE_CONNECTION:
7292724d70a2SMatthias Ringwald             reverse_bd_addr(&packet[3], addr);
72939da54300S[email protected]             log_info("Create_connection to %s", bd_addr_to_str(addr));
7294c8e4258aSmatthias.ringwald 
729572cf8859SMatthias Ringwald             // CVE-2020-26555: reject outgoing connection to device with same BD ADDR
729672cf8859SMatthias Ringwald             if (memcmp(hci_stack->local_bd_addr, addr, 6) == 0) {
729779e0fa07SMatthias Ringwald                 hci_emit_connection_complete(addr, 0, ERROR_CODE_CONNECTION_REJECTED_DUE_TO_UNACCEPTABLE_BD_ADDR);
72983e2050f7SMatthias Ringwald                 return ERROR_CODE_CONNECTION_REJECTED_DUE_TO_UNACCEPTABLE_BD_ADDR;
729972cf8859SMatthias Ringwald             }
730072cf8859SMatthias Ringwald 
7301f16129ceSMatthias Ringwald             conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
7302ad83dc6aS[email protected]             if (!conn) {
730388f925b1SMatthias Ringwald                 conn = create_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL, HCI_ROLE_MASTER);
730417f1ba2aSmatthias.ringwald                 if (!conn) {
730517f1ba2aSmatthias.ringwald                     // notify client that alloc failed
73062deddeceSMatthias Ringwald                     hci_emit_connection_complete(addr, 0, BTSTACK_MEMORY_ALLOC_FAILED);
73073e2050f7SMatthias Ringwald                     return BTSTACK_MEMORY_ALLOC_FAILED; // packet not sent to controller
730817f1ba2aSmatthias.ringwald                 }
7309ad83dc6aS[email protected]                 conn->state = SEND_CREATE_CONNECTION;
7310ad83dc6aS[email protected]             }
7311aee5d5c1SMatthias Ringwald 
7312ad83dc6aS[email protected]             log_info("conn state %u", conn->state);
73133e2050f7SMatthias Ringwald             // TODO: L2CAP should not send create connection command, instead a (new) gap function should be used
7314ad83dc6aS[email protected]             switch (conn->state) {
7315ad83dc6aS[email protected]                 // if connection active exists
7316ad83dc6aS[email protected]                 case OPEN:
7317f5e5741dSMatthias Ringwald                     // and OPEN, emit connection complete command
731872cf8859SMatthias Ringwald                     hci_emit_connection_complete(addr, conn->con_handle, ERROR_CODE_SUCCESS);
73193e2050f7SMatthias Ringwald                     // packet not sent to controller
73203e2050f7SMatthias Ringwald                     return ERROR_CODE_ACL_CONNECTION_ALREADY_EXISTS;
7321672e36abSMatthias Ringwald                 case RECEIVED_DISCONNECTION_COMPLETE:
7322672e36abSMatthias Ringwald                     // create connection triggered in disconnect complete event, let's do it now
7323672e36abSMatthias Ringwald                     break;
7324ad83dc6aS[email protected]                 case SEND_CREATE_CONNECTION:
73256c0d5426SMatthias Ringwald #ifdef ENABLE_HCI_SERIALIZED_CONTROLLER_OPERATIONS
73266c0d5426SMatthias Ringwald                     if (hci_classic_operation_active()){
73276c0d5426SMatthias Ringwald                         return ERROR_CODE_SUCCESS;
73286c0d5426SMatthias Ringwald                     }
73296c0d5426SMatthias Ringwald #endif
7330532f91a5SMatthias Ringwald                     // connection created by hci, e.g. dedicated bonding, but not executed yet, let's do it now
7331532f91a5SMatthias Ringwald                     break;
7332ad83dc6aS[email protected]                 default:
7333ad83dc6aS[email protected]                     // otherwise, just ignore as it is already in the open process
73343e2050f7SMatthias Ringwald                     // packet not sent to controller
73353e2050f7SMatthias Ringwald                     return ERROR_CODE_ACL_CONNECTION_ALREADY_EXISTS;
7336ad83dc6aS[email protected]             }
7337c8e4258aSmatthias.ringwald             conn->state = SENT_CREATE_CONNECTION;
7338229331c6SMatthias Ringwald 
7339229331c6SMatthias Ringwald             // track outgoing connection
7340f16129ceSMatthias Ringwald             hci_stack->outgoing_addr_type = BD_ADDR_TYPE_ACL;
73416535961aSMatthias Ringwald             (void) memcpy(hci_stack->outgoing_addr, addr, 6);
73426f35bb46SMatthias Ringwald             break;
7343ee752bb8SMatthias Ringwald 
73445b7087c7SMatthias Ringwald #if defined (ENABLE_SCO_OVER_HCI) || defined (HAVE_SCO_TRANSPORT)
73456f35bb46SMatthias Ringwald         case HCI_OPCODE_HCI_SETUP_SYNCHRONOUS_CONNECTION:
73469071873aSMatthias Ringwald             conn = hci_connection_for_handle(little_endian_read_16(packet, 3));
73479071873aSMatthias Ringwald             if (conn == NULL) {
73489071873aSMatthias Ringwald                 // neither SCO nor ACL connection for con handle
73499071873aSMatthias Ringwald                 return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
73509071873aSMatthias Ringwald             } else {
73519071873aSMatthias Ringwald                 switch (conn->address_type){
73529071873aSMatthias Ringwald                     case BD_ADDR_TYPE_ACL:
73539071873aSMatthias Ringwald                         // assert SCO connection does not exit
7354d9290e95SMatthias Ringwald                         if (hci_connection_for_bd_addr_and_type(conn->address, BD_ADDR_TYPE_SCO) != NULL){
73559071873aSMatthias Ringwald                             return ERROR_CODE_COMMAND_DISALLOWED;
73569071873aSMatthias Ringwald                         }
73579071873aSMatthias Ringwald                         // allocate connection struct
735888f925b1SMatthias Ringwald                         conn = create_connection_for_bd_addr_and_type(conn->address, BD_ADDR_TYPE_SCO,
735988f925b1SMatthias Ringwald                                                                       HCI_ROLE_MASTER);
73609071873aSMatthias Ringwald                         if (!conn) {
73619071873aSMatthias Ringwald                             return ERROR_CODE_MEMORY_CAPACITY_EXCEEDED;
73629071873aSMatthias Ringwald                         }
73639071873aSMatthias Ringwald                         break;
73649071873aSMatthias Ringwald                     case BD_ADDR_TYPE_SCO:
73659071873aSMatthias Ringwald                         // update of existing SCO connection
73669071873aSMatthias Ringwald                         break;
73679071873aSMatthias Ringwald                     default:
73689071873aSMatthias Ringwald                         return ERROR_CODE_INVALID_HCI_COMMAND_PARAMETERS;
73699071873aSMatthias Ringwald                 }
73709071873aSMatthias Ringwald             }
7371d9290e95SMatthias Ringwald 
7372d9290e95SMatthias Ringwald             // conn refers to hci connection of type sco now
7373d9290e95SMatthias Ringwald 
73749071873aSMatthias Ringwald             conn->state = SENT_CREATE_CONNECTION;
73759071873aSMatthias Ringwald 
73769071873aSMatthias Ringwald             // track outgoing connection to handle command status with error
73779071873aSMatthias Ringwald             hci_stack->outgoing_addr_type = BD_ADDR_TYPE_SCO;
73789071873aSMatthias Ringwald             (void) memcpy(hci_stack->outgoing_addr, addr, 6);
73799071873aSMatthias Ringwald 
7380ee752bb8SMatthias Ringwald             // setup_synchronous_connection? Voice setting at offset 22
7381ee752bb8SMatthias Ringwald             // TODO: compare to current setting if sco connection already active
7382ee752bb8SMatthias Ringwald             hci_stack->sco_voice_setting_active = little_endian_read_16(packet, 15);
73836f35bb46SMatthias Ringwald             break;
73849071873aSMatthias Ringwald 
73856f35bb46SMatthias Ringwald         case HCI_OPCODE_HCI_ACCEPT_SYNCHRONOUS_CONNECTION:
73869071873aSMatthias Ringwald             // get SCO connection
73879071873aSMatthias Ringwald             reverse_bd_addr(&packet[3], addr);
73889071873aSMatthias Ringwald             conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_SCO);
73899071873aSMatthias Ringwald             if (conn == NULL){
73909071873aSMatthias Ringwald                 return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
73919071873aSMatthias Ringwald             }
73929071873aSMatthias Ringwald 
73939071873aSMatthias Ringwald             conn->state = ACCEPTED_CONNECTION_REQUEST;
73949071873aSMatthias Ringwald 
73959071873aSMatthias Ringwald             // track outgoing connection to handle command status with error
73969071873aSMatthias Ringwald             hci_stack->outgoing_addr_type = BD_ADDR_TYPE_SCO;
73979071873aSMatthias Ringwald             (void) memcpy(hci_stack->outgoing_addr, addr, 6);
73989071873aSMatthias Ringwald 
7399c91e6e4fSMatthias Ringwald             // accept_synchronous_connection? Voice setting at offset 18
7400ee752bb8SMatthias Ringwald             // TODO: compare to current setting if sco connection already active
7401ee752bb8SMatthias Ringwald             hci_stack->sco_voice_setting_active = little_endian_read_16(packet, 19);
74026f35bb46SMatthias Ringwald             break;
7403ee752bb8SMatthias Ringwald #endif
740435454696SMatthias Ringwald #endif
74054b3e1e19SMatthias Ringwald 
7406a9a4c409SMatthias Ringwald #ifdef ENABLE_BLE
7407d70217a2SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
74086f35bb46SMatthias Ringwald         case HCI_OPCODE_HCI_LE_CREATE_CONNECTION:
7409b04dfa37SMatthias Ringwald             // white list used?
74106f35bb46SMatthias Ringwald             initiator_filter_policy = packet[7];
7411b04dfa37SMatthias Ringwald             switch (initiator_filter_policy) {
7412b04dfa37SMatthias Ringwald                 case 0:
7413b04dfa37SMatthias Ringwald                     // whitelist not used
7414b04dfa37SMatthias Ringwald                     hci_stack->le_connecting_state = LE_CONNECTING_DIRECT;
7415b04dfa37SMatthias Ringwald                     break;
7416b04dfa37SMatthias Ringwald                 case 1:
7417b04dfa37SMatthias Ringwald                     hci_stack->le_connecting_state = LE_CONNECTING_WHITELIST;
7418b04dfa37SMatthias Ringwald                     break;
7419b04dfa37SMatthias Ringwald                 default:
7420b04dfa37SMatthias Ringwald                     log_error("Invalid initiator_filter_policy in LE Create Connection %u", initiator_filter_policy);
7421b04dfa37SMatthias Ringwald                     break;
7422b04dfa37SMatthias Ringwald             }
7423c163146eSMatthias Ringwald             // track outgoing connection
74248f7da641SMatthias Ringwald             hci_stack->outgoing_addr_type = (bd_addr_type_t) packet[8]; // peer address type
7425c163146eSMatthias Ringwald             reverse_bd_addr( &packet[9], hci_stack->outgoing_addr); // peer address
74266f35bb46SMatthias Ringwald             break;
74278f7da641SMatthias Ringwald #ifdef ENABLE_LE_EXTENDED_ADVERTISING
74288f7da641SMatthias Ringwald         case HCI_OPCODE_HCI_LE_EXTENDED_CREATE_CONNECTION:
74298f7da641SMatthias Ringwald             // white list used?
74308f7da641SMatthias Ringwald             initiator_filter_policy = packet[3];
74318f7da641SMatthias Ringwald             switch (initiator_filter_policy) {
74328f7da641SMatthias Ringwald                 case 0:
74338f7da641SMatthias Ringwald                     // whitelist not used
74348f7da641SMatthias Ringwald                     hci_stack->le_connecting_state = LE_CONNECTING_DIRECT;
74358f7da641SMatthias Ringwald                     break;
74368f7da641SMatthias Ringwald                 case 1:
74378f7da641SMatthias Ringwald                     hci_stack->le_connecting_state = LE_CONNECTING_WHITELIST;
74388f7da641SMatthias Ringwald                     break;
74398f7da641SMatthias Ringwald                 default:
74408f7da641SMatthias Ringwald                     log_error("Invalid initiator_filter_policy in LE Create Connection %u", initiator_filter_policy);
74418f7da641SMatthias Ringwald                     break;
74428f7da641SMatthias Ringwald             }
74438f7da641SMatthias Ringwald             // track outgoing connection
74448f7da641SMatthias Ringwald             hci_stack->outgoing_addr_type = (bd_addr_type_t) packet[5]; // peer address type
74458f7da641SMatthias Ringwald             reverse_bd_addr( &packet[6], hci_stack->outgoing_addr); // peer address
74468f7da641SMatthias Ringwald             break;
74478f7da641SMatthias Ringwald #endif
74486f35bb46SMatthias Ringwald         case HCI_OPCODE_HCI_LE_CREATE_CONNECTION_CANCEL:
74496ea9315cSMatthias Ringwald             hci_stack->le_connecting_state = LE_CONNECTING_CANCEL;
74506f35bb46SMatthias Ringwald             break;
74519cbd2215SMatthias Ringwald #endif
74524ae8623eSMatthias Ringwald #endif /* ENABLE_BLE */
74536f35bb46SMatthias Ringwald         default:
74546f35bb46SMatthias Ringwald             break;
7455b04dfa37SMatthias Ringwald     }
745669a97523S[email protected] 
74573a9fb326S[email protected]     hci_stack->num_cmd_packets--;
74585bb5bc3eS[email protected] 
74595bb5bc3eS[email protected]     hci_dump_packet(HCI_COMMAND_DATA_PACKET, 0, packet, size);
74603e2050f7SMatthias Ringwald     int err = hci_stack->hci_transport->send_packet(HCI_COMMAND_DATA_PACKET, packet, size);
74613e2050f7SMatthias Ringwald     if (err != 0){
74623e2050f7SMatthias Ringwald         return ERROR_CODE_HARDWARE_FAILURE;
74633e2050f7SMatthias Ringwald     }
74643e2050f7SMatthias Ringwald     return ERROR_CODE_SUCCESS;
746531452debSmatthias.ringwald }
74668adf0ddaSmatthias.ringwald 
74672bd8b7e7S[email protected] // disconnect because of security block
74682bd8b7e7S[email protected] void hci_disconnect_security_block(hci_con_handle_t con_handle){
74692bd8b7e7S[email protected]     hci_connection_t * connection = hci_connection_for_handle(con_handle);
74702bd8b7e7S[email protected]     if (!connection) return;
74712bd8b7e7S[email protected]     connection->bonding_flags |= BONDING_DISCONNECT_SECURITY_BLOCK;
74722bd8b7e7S[email protected] }
74732bd8b7e7S[email protected] 
74742bd8b7e7S[email protected] 
7475dbe1a790S[email protected] // Configure Secure Simple Pairing
7476dbe1a790S[email protected] 
747735454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
747835454696SMatthias Ringwald 
7479dbe1a790S[email protected] // enable will enable SSP during init
748015a95bd5SMatthias Ringwald void gap_ssp_set_enable(int enable){
74813a9fb326S[email protected]     hci_stack->ssp_enable = enable;
7482dbe1a790S[email protected] }
7483dbe1a790S[email protected] 
748495d71764SMatthias Ringwald static int hci_local_ssp_activated(void){
748515a95bd5SMatthias Ringwald     return gap_ssp_supported() && hci_stack->ssp_enable;
74862bd8b7e7S[email protected] }
74872bd8b7e7S[email protected] 
7488dbe1a790S[email protected] // if set, BTstack will respond to io capability request using authentication requirement
748915a95bd5SMatthias Ringwald void gap_ssp_set_io_capability(int io_capability){
74903a9fb326S[email protected]     hci_stack->ssp_io_capability = io_capability;
7491dbe1a790S[email protected] }
749215a95bd5SMatthias Ringwald void gap_ssp_set_authentication_requirement(int authentication_requirement){
74933a9fb326S[email protected]     hci_stack->ssp_authentication_requirement = authentication_requirement;
7494dbe1a790S[email protected] }
7495dbe1a790S[email protected] 
7496dbe1a790S[email protected] // if set, BTstack will confirm a numberic comparion and enter '000000' if requested
749715a95bd5SMatthias Ringwald void gap_ssp_set_auto_accept(int auto_accept){
74983a9fb326S[email protected]     hci_stack->ssp_auto_accept = auto_accept;
7499dbe1a790S[email protected] }
75005d23aae8SMatthias Ringwald 
75015d23aae8SMatthias Ringwald void gap_secure_connections_enable(bool enable){
75025d23aae8SMatthias Ringwald     hci_stack->secure_connections_enable = enable;
75035d23aae8SMatthias Ringwald }
750422d445d8SMatthias Ringwald bool gap_secure_connections_active(void){
7505eaf85bc8SMatthias Ringwald     return hci_stack->secure_connections_active;
750622d445d8SMatthias Ringwald }
75075d23aae8SMatthias Ringwald 
750835454696SMatthias Ringwald #endif
7509dbe1a790S[email protected] 
751094be1a66SMatthias Ringwald // va_list part of hci_send_cmd
75113e2050f7SMatthias Ringwald uint8_t hci_send_cmd_va_arg(const hci_cmd_t * cmd, va_list argptr){
7512d94d3cafS[email protected]     if (!hci_can_send_command_packet_now()){
75139d14b626S[email protected]         log_error("hci_send_cmd called but cannot send packet now");
75143e2050f7SMatthias Ringwald         return ERROR_CODE_COMMAND_DISALLOWED;
75159d14b626S[email protected]     }
75169d14b626S[email protected] 
75175127cc62S[email protected]     // for HCI INITIALIZATION
75189da54300S[email protected]     // log_info("hci_send_cmd: opcode %04x", cmd->opcode);
75195127cc62S[email protected]     hci_stack->last_cmd_opcode = cmd->opcode;
75205127cc62S[email protected] 
75219d14b626S[email protected]     hci_reserve_packet_buffer();
75229d14b626S[email protected]     uint8_t * packet = hci_stack->hci_packet_buffer;
752394be1a66SMatthias Ringwald     uint16_t size = hci_cmd_create_from_template(packet, cmd, argptr);
75243e2050f7SMatthias Ringwald     uint8_t status = hci_send_cmd_packet(packet, size);
7525bfea0222SMatthias Ringwald 
7526593702caSMatthias Ringwald     // release packet buffer on error or for synchronous transport implementations
75273e2050f7SMatthias Ringwald     if ((status != ERROR_CODE_SUCCESS) || hci_transport_synchronous()){
7528e2d22487SMatthias Ringwald         hci_release_packet_buffer();
7529068b8592SMatthias Ringwald         hci_emit_transport_packet_sent();
7530bfea0222SMatthias Ringwald     }
7531bfea0222SMatthias Ringwald 
75323e2050f7SMatthias Ringwald     return status;
753394be1a66SMatthias Ringwald }
75349d14b626S[email protected] 
753594be1a66SMatthias Ringwald /**
753694be1a66SMatthias Ringwald  * pre: numcmds >= 0 - it's allowed to send a command to the controller
753794be1a66SMatthias Ringwald  */
75383e2050f7SMatthias Ringwald uint8_t hci_send_cmd(const hci_cmd_t * cmd, ...){
75391cd208adSmatthias.ringwald     va_list argptr;
75401cd208adSmatthias.ringwald     va_start(argptr, cmd);
75413e2050f7SMatthias Ringwald     uint8_t status = hci_send_cmd_va_arg(cmd, argptr);
75421cd208adSmatthias.ringwald     va_end(argptr);
75433e2050f7SMatthias Ringwald     return status;
754493b8dc03Smatthias.ringwald }
7545c8e4258aSmatthias.ringwald 
7546ee091cf1Smatthias.ringwald // Create various non-HCI events.
7547ee091cf1Smatthias.ringwald // TODO: generalize, use table similar to hci_create_command
7548ee091cf1Smatthias.ringwald 
7549d6b06661SMatthias Ringwald static void hci_emit_event(uint8_t * event, uint16_t size, int dump){
7550fb37a842SMatthias Ringwald     // dump packet
7551d6b06661SMatthias Ringwald     if (dump) {
755292da54c4SMatthias Ringwald         hci_dump_packet( HCI_EVENT_PACKET, 1, event, size);
7553d6b06661SMatthias Ringwald     }
75541ef6bb52SMatthias Ringwald 
7555fb37a842SMatthias Ringwald     // dispatch to all event handlers
75561ef6bb52SMatthias Ringwald     btstack_linked_list_iterator_t it;
75571ef6bb52SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->event_handlers);
75581ef6bb52SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
75591ef6bb52SMatthias Ringwald         btstack_packet_callback_registration_t * entry = (btstack_packet_callback_registration_t*) btstack_linked_list_iterator_next(&it);
7560d9a7306aSMatthias Ringwald         entry->callback(HCI_EVENT_PACKET, 0, event, size);
75611ef6bb52SMatthias Ringwald     }
7562d6b06661SMatthias Ringwald }
7563d6b06661SMatthias Ringwald 
7564d6b06661SMatthias Ringwald static void hci_emit_acl_packet(uint8_t * packet, uint16_t size){
7565fb37a842SMatthias Ringwald     if (!hci_stack->acl_packet_handler) return;
75663d50b4baSMatthias Ringwald     hci_stack->acl_packet_handler(HCI_ACL_DATA_PACKET, 0, packet, size);
7567d6b06661SMatthias Ringwald }
7568d6b06661SMatthias Ringwald 
756935454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
7570701e3307SMatthias Ringwald static void hci_notify_if_sco_can_send_now(void){
75713bc639ceSMatthias Ringwald     // notify SCO sender if waiting
7572701e3307SMatthias Ringwald     if (!hci_stack->sco_waiting_for_can_send_now) return;
7573701e3307SMatthias Ringwald     if (hci_can_send_sco_packet_now()){
75743bc639ceSMatthias Ringwald         hci_stack->sco_waiting_for_can_send_now = 0;
7575701e3307SMatthias Ringwald         uint8_t event[2] = { HCI_EVENT_SCO_CAN_SEND_NOW, 0 };
7576701e3307SMatthias Ringwald         hci_dump_packet(HCI_EVENT_PACKET, 1, event, sizeof(event));
75773d50b4baSMatthias Ringwald         hci_stack->sco_packet_handler(HCI_EVENT_PACKET, 0, event, sizeof(event));
75783bc639ceSMatthias Ringwald     }
75793bc639ceSMatthias Ringwald }
75801cfb383eSMatthias Ringwald 
75811cfb383eSMatthias Ringwald // parsing end emitting has been merged to reduce code size
75829784dac1SMatthias Ringwald static void gap_inquiry_explode(uint8_t *packet, uint16_t size) {
7583ac9136ccSMatthias Ringwald     uint8_t event[28+GAP_INQUIRY_MAX_NAME_LEN];
75841cfb383eSMatthias Ringwald 
75851cfb383eSMatthias Ringwald     uint8_t * eir_data;
75861cfb383eSMatthias Ringwald     ad_context_t context;
75871cfb383eSMatthias Ringwald     const uint8_t * name;
75881cfb383eSMatthias Ringwald     uint8_t         name_len;
75891cfb383eSMatthias Ringwald 
75909784dac1SMatthias Ringwald     if (size < 3) return;
75919784dac1SMatthias Ringwald 
75921cfb383eSMatthias Ringwald     int event_type = hci_event_packet_get_type(packet);
7593a1df452eSMatthias Ringwald     int num_reserved_fields = (event_type == HCI_EVENT_INQUIRY_RESULT) ? 2 : 1;    // 2 for old event, 1 otherwise
75941cfb383eSMatthias Ringwald     int num_responses       = hci_event_inquiry_result_get_num_responses(packet);
75951cfb383eSMatthias Ringwald 
75969784dac1SMatthias Ringwald     switch (event_type){
75979784dac1SMatthias Ringwald         case HCI_EVENT_INQUIRY_RESULT:
75989784dac1SMatthias Ringwald         case HCI_EVENT_INQUIRY_RESULT_WITH_RSSI:
75999784dac1SMatthias Ringwald             if (size != (3 + (num_responses * 14))) return;
76009784dac1SMatthias Ringwald             break;
76019784dac1SMatthias Ringwald         case HCI_EVENT_EXTENDED_INQUIRY_RESPONSE:
76029784dac1SMatthias Ringwald             if (size != 257) return;
76039784dac1SMatthias Ringwald             if (num_responses != 1) return;
76049784dac1SMatthias Ringwald             break;
76059784dac1SMatthias Ringwald         default:
76069784dac1SMatthias Ringwald             return;
76079784dac1SMatthias Ringwald     }
76089784dac1SMatthias Ringwald 
76091cfb383eSMatthias Ringwald     // event[1] is set at the end
76101cfb383eSMatthias Ringwald     int i;
76111cfb383eSMatthias Ringwald     for (i=0; i<num_responses;i++){
76121cfb383eSMatthias Ringwald         memset(event, 0, sizeof(event));
76131cfb383eSMatthias Ringwald         event[0] = GAP_EVENT_INQUIRY_RESULT;
7614ac973fd6SMatthias Ringwald         uint8_t event_size = 27;    // if name is not set by EIR
76151cfb383eSMatthias Ringwald 
76166535961aSMatthias Ringwald         (void)memcpy(&event[2], &packet[3 + (i * 6)], 6); // bd_addr
76170e588213SMatthias Ringwald         event[8] =          packet[3 + (num_responses*(6))                         + (i*1)];     // page_scan_repetition_mode
76186535961aSMatthias Ringwald         (void)memcpy(&event[9],
76196535961aSMatthias Ringwald                      &packet[3 + (num_responses * (6 + 1 + num_reserved_fields)) + (i * 3)],
76206535961aSMatthias Ringwald                      3); // class of device
76216535961aSMatthias Ringwald         (void)memcpy(&event[12],
76226535961aSMatthias Ringwald                      &packet[3 + (num_responses * (6 + 1 + num_reserved_fields + 3)) + (i * 2)],
76236535961aSMatthias Ringwald                      2); // clock offset
76241cfb383eSMatthias Ringwald 
76251cfb383eSMatthias Ringwald         switch (event_type){
76261cfb383eSMatthias Ringwald             case HCI_EVENT_INQUIRY_RESULT:
76271cfb383eSMatthias Ringwald                 // 14,15,16,17 = 0, size 18
76281cfb383eSMatthias Ringwald                 break;
76291cfb383eSMatthias Ringwald             case HCI_EVENT_INQUIRY_RESULT_WITH_RSSI:
76301cfb383eSMatthias Ringwald                 event[14] = 1;
7631a1df452eSMatthias Ringwald                 event[15] = packet [3 + (num_responses*(6+1+num_reserved_fields+3+2)) + (i*1)]; // rssi
76321cfb383eSMatthias Ringwald                 // 16,17 = 0, size 18
76331cfb383eSMatthias Ringwald                 break;
76341cfb383eSMatthias Ringwald             case HCI_EVENT_EXTENDED_INQUIRY_RESPONSE:
76351cfb383eSMatthias Ringwald                 event[14] = 1;
7636a1df452eSMatthias Ringwald                 event[15] = packet [3 + (num_responses*(6+1+num_reserved_fields+3+2)) + (i*1)]; // rssi
763779186815SMatthias Ringwald                 // EIR packets only contain a single inquiry response
76381cfb383eSMatthias Ringwald                 eir_data = &packet[3 + (6+1+num_reserved_fields+3+2+1)];
76391cfb383eSMatthias Ringwald                 name = NULL;
7640a8c4e5adSMatthias Ringwald                 // Iterate over EIR data
7641a8c4e5adSMatthias Ringwald                 for (ad_iterator_init(&context, EXTENDED_INQUIRY_RESPONSE_DATA_LEN, eir_data) ; ad_iterator_has_more(&context) ; ad_iterator_next(&context)){
76421cfb383eSMatthias Ringwald                     uint8_t data_type    = ad_iterator_get_data_type(&context);
76431cfb383eSMatthias Ringwald                     uint8_t data_size    = ad_iterator_get_data_len(&context);
76441cfb383eSMatthias Ringwald                     const uint8_t * data = ad_iterator_get_data(&context);
7645ac9136ccSMatthias Ringwald                     // Prefer Complete Local Name over Shortened Local Name
76461cfb383eSMatthias Ringwald                     switch (data_type){
76471cfb383eSMatthias Ringwald                         case BLUETOOTH_DATA_TYPE_SHORTENED_LOCAL_NAME:
76481cfb383eSMatthias Ringwald                             if (name) continue;
7649cf373d3aSMatthias Ringwald                             /* fall through */
76501cfb383eSMatthias Ringwald                         case BLUETOOTH_DATA_TYPE_COMPLETE_LOCAL_NAME:
76511cfb383eSMatthias Ringwald                             name = data;
76521cfb383eSMatthias Ringwald                             name_len = data_size;
76531cfb383eSMatthias Ringwald                             break;
7654ac9136ccSMatthias Ringwald                         case BLUETOOTH_DATA_TYPE_DEVICE_ID:
7655ac9136ccSMatthias Ringwald                             if (data_size != 8) break;
7656ac9136ccSMatthias Ringwald                             event[16] = 1;
76573c0c7fefSMatthias Ringwald                             memcpy(&event[17], data, 8);
7658ac9136ccSMatthias Ringwald                             break;
76591cfb383eSMatthias Ringwald                         default:
76601cfb383eSMatthias Ringwald                             break;
76611cfb383eSMatthias Ringwald                     }
76621cfb383eSMatthias Ringwald                 }
76631cfb383eSMatthias Ringwald                 if (name){
7664ac9136ccSMatthias Ringwald                     event[25] = 1;
76651cfb383eSMatthias Ringwald                     // truncate name if needed
76661cfb383eSMatthias Ringwald                     int len = btstack_min(name_len, GAP_INQUIRY_MAX_NAME_LEN);
7667ac9136ccSMatthias Ringwald                     event[26] = len;
7668ac9136ccSMatthias Ringwald                     (void)memcpy(&event[27], name, len);
76691cfb383eSMatthias Ringwald                     event_size += len;
76701cfb383eSMatthias Ringwald                 }
76711cfb383eSMatthias Ringwald                 break;
76727bbeb3adSMilanka Ringwald             default:
76737bbeb3adSMilanka Ringwald                 return;
76741cfb383eSMatthias Ringwald         }
76751cfb383eSMatthias Ringwald         event[1] = event_size - 2;
76761cfb383eSMatthias Ringwald         hci_emit_event(event, event_size, 1);
76771cfb383eSMatthias Ringwald     }
76781cfb383eSMatthias Ringwald }
767935454696SMatthias Ringwald #endif
76803bc639ceSMatthias Ringwald 
768171de195eSMatthias Ringwald void hci_emit_state(void){
76823a9fb326S[email protected]     log_info("BTSTACK_EVENT_STATE %u", hci_stack->state);
7683425d1371Smatthias.ringwald     uint8_t event[3];
768480d52d6bSmatthias.ringwald     event[0] = BTSTACK_EVENT_STATE;
76854ea43905SMatthias Ringwald     event[1] = sizeof(event) - 2u;
76863a9fb326S[email protected]     event[2] = hci_stack->state;
7687d6b06661SMatthias Ringwald     hci_emit_event(event, sizeof(event), 1);
7688c8e4258aSmatthias.ringwald }
7689c8e4258aSmatthias.ringwald 
769035454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
76912deddeceSMatthias Ringwald static void hci_emit_connection_complete(bd_addr_t address, hci_con_handle_t con_handle, uint8_t status){
7692425d1371Smatthias.ringwald     uint8_t event[13];
7693c8e4258aSmatthias.ringwald     event[0] = HCI_EVENT_CONNECTION_COMPLETE;
7694425d1371Smatthias.ringwald     event[1] = sizeof(event) - 2;
769517f1ba2aSmatthias.ringwald     event[2] = status;
76962deddeceSMatthias Ringwald     little_endian_store_16(event, 3, con_handle);
76972deddeceSMatthias Ringwald     reverse_bd_addr(address, &event[5]);
7698c8e4258aSmatthias.ringwald     event[11] = 1; // ACL connection
7699c8e4258aSmatthias.ringwald     event[12] = 0; // encryption disabled
7700d6b06661SMatthias Ringwald     hci_emit_event(event, sizeof(event), 1);
7701c8e4258aSmatthias.ringwald }
770252db98b2SMatthias Ringwald static void hci_emit_l2cap_check_timeout(hci_connection_t *conn){
770352db98b2SMatthias Ringwald     if (disable_l2cap_timeouts) return;
770452db98b2SMatthias Ringwald     log_info("L2CAP_EVENT_TIMEOUT_CHECK");
770552db98b2SMatthias Ringwald     uint8_t event[4];
770652db98b2SMatthias Ringwald     event[0] = L2CAP_EVENT_TIMEOUT_CHECK;
770752db98b2SMatthias Ringwald     event[1] = sizeof(event) - 2;
770852db98b2SMatthias Ringwald     little_endian_store_16(event, 2, conn->con_handle);
770952db98b2SMatthias Ringwald     hci_emit_event(event, sizeof(event), 1);
771052db98b2SMatthias Ringwald }
771135454696SMatthias Ringwald #endif
7712c8e4258aSmatthias.ringwald 
771335454696SMatthias Ringwald #ifdef ENABLE_BLE
7714d70217a2SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
7715667ba9d1SMatthias 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){
77164f3229d8S[email protected]     uint8_t event[21];
77174f3229d8S[email protected]     event[0] = HCI_EVENT_LE_META;
77184ea43905SMatthias Ringwald     event[1] = sizeof(event) - 2u;
77194f3229d8S[email protected]     event[2] = HCI_SUBEVENT_LE_CONNECTION_COMPLETE;
77204f3229d8S[email protected]     event[3] = status;
7721fc64f94aSMatthias Ringwald     little_endian_store_16(event, 4, con_handle);
77224f3229d8S[email protected]     event[6] = 0; // TODO: role
77236e2e9a6bS[email protected]     event[7] = address_type;
7724724d70a2SMatthias Ringwald     reverse_bd_addr(address, &event[8]);
7725f8fbdce0SMatthias Ringwald     little_endian_store_16(event, 14, 0); // interval
7726f8fbdce0SMatthias Ringwald     little_endian_store_16(event, 16, 0); // latency
7727f8fbdce0SMatthias Ringwald     little_endian_store_16(event, 18, 0); // supervision timeout
77284f3229d8S[email protected]     event[20] = 0; // master clock accuracy
7729d6b06661SMatthias Ringwald     hci_emit_event(event, sizeof(event), 1);
77304f3229d8S[email protected] }
773135454696SMatthias Ringwald #endif
7732d70217a2SMatthias Ringwald #endif
77334f3229d8S[email protected] 
7734fd43c0e0SMatthias Ringwald static void hci_emit_transport_packet_sent(void){
7735fd43c0e0SMatthias Ringwald     // notify upper stack that it might be possible to send again
7736fd43c0e0SMatthias Ringwald     uint8_t event[] = { HCI_EVENT_TRANSPORT_PACKET_SENT, 0};
7737fd43c0e0SMatthias Ringwald     hci_emit_event(&event[0], sizeof(event), 0);  // don't dump
7738fd43c0e0SMatthias Ringwald }
7739fd43c0e0SMatthias Ringwald 
7740fc64f94aSMatthias Ringwald static void hci_emit_disconnection_complete(hci_con_handle_t con_handle, uint8_t reason){
7741425d1371Smatthias.ringwald     uint8_t event[6];
77423c4d4b90Smatthias.ringwald     event[0] = HCI_EVENT_DISCONNECTION_COMPLETE;
77434ea43905SMatthias Ringwald     event[1] = sizeof(event) - 2u;
77443c4d4b90Smatthias.ringwald     event[2] = 0; // status = OK
7745fc64f94aSMatthias Ringwald     little_endian_store_16(event, 3, con_handle);
77463c4d4b90Smatthias.ringwald     event[5] = reason;
7747d6b06661SMatthias Ringwald     hci_emit_event(event, sizeof(event), 1);
77483c4d4b90Smatthias.ringwald }
77493c4d4b90Smatthias.ringwald 
7750b83d5eabSMatthias Ringwald static void hci_emit_nr_connections_changed(void){
7751e0abb8e7S[email protected]     log_info("BTSTACK_EVENT_NR_CONNECTIONS_CHANGED %u", nr_hci_connections());
7752425d1371Smatthias.ringwald     uint8_t event[3];
775380d52d6bSmatthias.ringwald     event[0] = BTSTACK_EVENT_NR_CONNECTIONS_CHANGED;
77544ea43905SMatthias Ringwald     event[1] = sizeof(event) - 2u;
775543bfb1bdSmatthias.ringwald     event[2] = nr_hci_connections();
7756d6b06661SMatthias Ringwald     hci_emit_event(event, sizeof(event), 1);
775743bfb1bdSmatthias.ringwald }
7758038bc64cSmatthias.ringwald 
7759b83d5eabSMatthias Ringwald static void hci_emit_hci_open_failed(void){
7760e0abb8e7S[email protected]     log_info("BTSTACK_EVENT_POWERON_FAILED");
7761425d1371Smatthias.ringwald     uint8_t event[2];
776280d52d6bSmatthias.ringwald     event[0] = BTSTACK_EVENT_POWERON_FAILED;
77634ea43905SMatthias Ringwald     event[1] = sizeof(event) - 2u;
7764d6b06661SMatthias Ringwald     hci_emit_event(event, sizeof(event), 1);
7765038bc64cSmatthias.ringwald }
77661b0e3922Smatthias.ringwald 
776735454696SMatthias Ringwald static void hci_emit_dedicated_bonding_result(bd_addr_t address, uint8_t status){
776835454696SMatthias Ringwald     log_info("hci_emit_dedicated_bonding_result %u ", status);
776935454696SMatthias Ringwald     uint8_t event[9];
777035454696SMatthias Ringwald     int pos = 0;
777135454696SMatthias Ringwald     event[pos++] = GAP_EVENT_DEDICATED_BONDING_COMPLETED;
77724ea43905SMatthias Ringwald     event[pos++] = sizeof(event) - 2u;
777335454696SMatthias Ringwald     event[pos++] = status;
777435454696SMatthias Ringwald     reverse_bd_addr(address, &event[pos]);
7775d6b06661SMatthias Ringwald     hci_emit_event(event, sizeof(event), 1);
7776381fbed8Smatthias.ringwald }
7777458bf4e8S[email protected] 
777835454696SMatthias Ringwald 
777935454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
778035454696SMatthias Ringwald 
7781b83d5eabSMatthias Ringwald static void hci_emit_security_level(hci_con_handle_t con_handle, gap_security_level_t level){
7782df3354fcS[email protected]     log_info("hci_emit_security_level %u for handle %x", level, con_handle);
7783a00031e2S[email protected]     uint8_t event[5];
7784e00caf9cS[email protected]     int pos = 0;
77855611a760SMatthias Ringwald     event[pos++] = GAP_EVENT_SECURITY_LEVEL;
7786e00caf9cS[email protected]     event[pos++] = sizeof(event) - 2;
7787f8fbdce0SMatthias Ringwald     little_endian_store_16(event, 2, con_handle);
7788e00caf9cS[email protected]     pos += 2;
7789e00caf9cS[email protected]     event[pos++] = level;
7790d6b06661SMatthias Ringwald     hci_emit_event(event, sizeof(event), 1);
7791e00caf9cS[email protected] }
7792e00caf9cS[email protected] 
779335454696SMatthias Ringwald static gap_security_level_t gap_security_level_for_connection(hci_connection_t * connection){
779435454696SMatthias Ringwald     if (!connection) return LEVEL_0;
77958daf94bcSMatthias Ringwald     if ((connection->authentication_flags & AUTH_FLAG_CONNECTION_ENCRYPTED) == 0) return LEVEL_0;
7796fcaf38b9SMatthias Ringwald     // BIAS: we only consider Authenticated if the connection is already encrypted, which requires that both sides have link key
77978daf94bcSMatthias Ringwald     if ((connection->authentication_flags & AUTH_FLAG_CONNECTION_AUTHENTICATED) == 0) return LEVEL_0;
7798170fafaeSMatthias Ringwald     if (connection->encryption_key_size < hci_stack->gap_required_encyrption_key_size) return LEVEL_0;
77994051b7ffSMatthias Ringwald     gap_security_level_t security_level = gap_security_level_for_link_key_type(connection->link_key_type);
7800170fafaeSMatthias Ringwald     // LEVEL 4 always requires 128 bit encrytion key size
78010e588213SMatthias Ringwald     if ((security_level == LEVEL_4) && (connection->encryption_key_size < 16)){
7802170fafaeSMatthias Ringwald         security_level = LEVEL_3;
7803170fafaeSMatthias Ringwald     }
7804170fafaeSMatthias Ringwald     return security_level;
780535454696SMatthias Ringwald }
780635454696SMatthias Ringwald 
780771fd255dSMatthias Ringwald static void hci_emit_scan_mode_changed(uint8_t discoverable, uint8_t connectable){
780871fd255dSMatthias Ringwald     uint8_t event[4];
780971fd255dSMatthias Ringwald     event[0] = BTSTACK_EVENT_SCAN_MODE_CHANGED;
781035454696SMatthias Ringwald     event[1] = sizeof(event) - 2;
781171fd255dSMatthias Ringwald     event[2] = discoverable;
781271fd255dSMatthias Ringwald     event[3] = connectable;
7813d6b06661SMatthias Ringwald     hci_emit_event(event, sizeof(event), 1);
7814ad83dc6aS[email protected] }
7815ad83dc6aS[email protected] 
781698a2fd1cSMatthias Ringwald // query if remote side supports eSCO
781720dcdd22SMatthias Ringwald bool hci_remote_esco_supported(hci_con_handle_t con_handle){
781898a2fd1cSMatthias Ringwald     hci_connection_t * connection = hci_connection_for_handle(con_handle);
781920dcdd22SMatthias Ringwald     if (!connection) return false;
782076ccfb2aSMatthias Ringwald     return (connection->remote_supported_features[0] & 1) != 0;
782198a2fd1cSMatthias Ringwald }
782298a2fd1cSMatthias Ringwald 
782367aae551SMatthias Ringwald static bool hci_ssp_supported(hci_connection_t * connection){
782467aae551SMatthias Ringwald     const uint8_t mask = BONDING_REMOTE_SUPPORTS_SSP_CONTROLLER | BONDING_REMOTE_SUPPORTS_SSP_HOST;
782567aae551SMatthias Ringwald     return (connection->bonding_flags & mask) == mask;
782667aae551SMatthias Ringwald }
782767aae551SMatthias Ringwald 
78282bd8b7e7S[email protected] // query if remote side supports SSP
782920dcdd22SMatthias Ringwald bool hci_remote_ssp_supported(hci_con_handle_t con_handle){
78302bd8b7e7S[email protected]     hci_connection_t * connection = hci_connection_for_handle(con_handle);
783120dcdd22SMatthias Ringwald     if (!connection) return false;
783267aae551SMatthias Ringwald     return hci_ssp_supported(connection) ? 1 : 0;
78332bd8b7e7S[email protected] }
78342bd8b7e7S[email protected] 
783520dcdd22SMatthias Ringwald bool gap_ssp_supported_on_both_sides(hci_con_handle_t handle){
7836df3354fcS[email protected]     return hci_local_ssp_activated() && hci_remote_ssp_supported(handle);
7837df3354fcS[email protected] }
7838df3354fcS[email protected] 
78396ffc78ceSMatthias Ringwald /**
78406ffc78ceSMatthias Ringwald  * Check if remote supported features query has completed
78416ffc78ceSMatthias Ringwald  */
78426ffc78ceSMatthias Ringwald bool hci_remote_features_available(hci_con_handle_t handle){
78436ffc78ceSMatthias Ringwald     hci_connection_t * connection = hci_connection_for_handle(handle);
78446ffc78ceSMatthias Ringwald     if (!connection) return false;
78456ffc78ceSMatthias Ringwald     return (connection->bonding_flags & BONDING_RECEIVED_REMOTE_FEATURES) != 0;
78466ffc78ceSMatthias Ringwald }
78476ffc78ceSMatthias Ringwald 
7848d6596031SMatthias Ringwald /**
7849d6596031SMatthias Ringwald  * Trigger remote supported features query
7850d6596031SMatthias Ringwald  */
7851c9742cd1SMatthias Ringwald 
7852c9742cd1SMatthias Ringwald static void hci_trigger_remote_features_for_connection(hci_connection_t * connection){
7853c9742cd1SMatthias Ringwald     if ((connection->bonding_flags & (BONDING_REMOTE_FEATURES_QUERY_ACTIVE | BONDING_RECEIVED_REMOTE_FEATURES)) == 0){
7854c9742cd1SMatthias Ringwald         connection->bonding_flags |= BONDING_REMOTE_FEATURES_QUERY_ACTIVE | BONDING_REQUEST_REMOTE_FEATURES_PAGE_0;
7855c9742cd1SMatthias Ringwald     }
7856c9742cd1SMatthias Ringwald }
7857c9742cd1SMatthias Ringwald 
7858d6596031SMatthias Ringwald void hci_remote_features_query(hci_con_handle_t con_handle){
7859d6596031SMatthias Ringwald     hci_connection_t * connection = hci_connection_for_handle(con_handle);
7860d6596031SMatthias Ringwald     if (!connection) return;
7861c9742cd1SMatthias Ringwald     hci_trigger_remote_features_for_connection(connection);
7862d6596031SMatthias Ringwald     hci_run();
7863d6596031SMatthias Ringwald }
7864d6596031SMatthias Ringwald 
7865458bf4e8S[email protected] // GAP API
7866458bf4e8S[email protected] /**
7867458bf4e8S[email protected]  * @bbrief enable/disable bonding. default is enabled
7868458bf4e8S[email protected]  * @praram enabled
7869458bf4e8S[email protected]  */
78704c57c146S[email protected] void gap_set_bondable_mode(int enable){
78713a9fb326S[email protected]     hci_stack->bondable = enable ? 1 : 0;
7872458bf4e8S[email protected] }
78734ef6443cSMatthias Ringwald /**
78744ef6443cSMatthias Ringwald  * @brief Get bondable mode.
78754ef6443cSMatthias Ringwald  * @return 1 if bondable
78764ef6443cSMatthias Ringwald  */
78774ef6443cSMatthias Ringwald int gap_get_bondable_mode(void){
78784ef6443cSMatthias Ringwald     return hci_stack->bondable;
78794ef6443cSMatthias Ringwald }
7880cb230b9dS[email protected] 
7881cb230b9dS[email protected] /**
788234d2123cS[email protected]  * @brief map link keys to security levels
7883cb230b9dS[email protected]  */
788434d2123cS[email protected] gap_security_level_t gap_security_level_for_link_key_type(link_key_type_t link_key_type){
788534d2123cS[email protected]     switch (link_key_type){
78863c68dfa9S[email protected]         case AUTHENTICATED_COMBINATION_KEY_GENERATED_FROM_P256:
78873c68dfa9S[email protected]             return LEVEL_4;
78883c68dfa9S[email protected]         case COMBINATION_KEY:
78893c68dfa9S[email protected]         case AUTHENTICATED_COMBINATION_KEY_GENERATED_FROM_P192:
78903c68dfa9S[email protected]             return LEVEL_3;
78913c68dfa9S[email protected]         default:
78923c68dfa9S[email protected]             return LEVEL_2;
78933c68dfa9S[email protected]     }
7894cb230b9dS[email protected] }
7895cb230b9dS[email protected] 
78968b35e16aSMatthias Ringwald /**
78978b35e16aSMatthias Ringwald  * @brief map link keys to secure connection yes/no
78988b35e16aSMatthias Ringwald  */
789936c3546bSMatthias Ringwald bool gap_secure_connection_for_link_key_type(link_key_type_t link_key_type){
79008b35e16aSMatthias Ringwald     switch (link_key_type){
79018b35e16aSMatthias Ringwald         case AUTHENTICATED_COMBINATION_KEY_GENERATED_FROM_P256:
79028b35e16aSMatthias Ringwald         case UNAUTHENTICATED_COMBINATION_KEY_GENERATED_FROM_P256:
790336c3546bSMatthias Ringwald             return true;
79048b35e16aSMatthias Ringwald         default:
790536c3546bSMatthias Ringwald             return false;
79068b35e16aSMatthias Ringwald     }
79078b35e16aSMatthias Ringwald }
79088b35e16aSMatthias Ringwald 
79098b35e16aSMatthias Ringwald /**
79108b35e16aSMatthias Ringwald  * @brief map link keys to authenticated
79118b35e16aSMatthias Ringwald  */
79127040ba26SMatthias Ringwald bool gap_authenticated_for_link_key_type(link_key_type_t link_key_type){
79138b35e16aSMatthias Ringwald     switch (link_key_type){
79148b35e16aSMatthias Ringwald         case AUTHENTICATED_COMBINATION_KEY_GENERATED_FROM_P256:
79158b35e16aSMatthias Ringwald         case AUTHENTICATED_COMBINATION_KEY_GENERATED_FROM_P192:
79167040ba26SMatthias Ringwald             return true;
79178b35e16aSMatthias Ringwald         default:
79187040ba26SMatthias Ringwald             return false;
79198b35e16aSMatthias Ringwald     }
79208b35e16aSMatthias Ringwald }
79218b35e16aSMatthias Ringwald 
7922552b9260SMatthias Ringwald bool gap_mitm_protection_required_for_security_level(gap_security_level_t level){
79235127cc62S[email protected]     log_info("gap_mitm_protection_required_for_security_level %u", level);
7924106d6d11S[email protected]     return level > LEVEL_2;
7925106d6d11S[email protected] }
7926106d6d11S[email protected] 
792734d2123cS[email protected] /**
792834d2123cS[email protected]  * @brief get current security level
792934d2123cS[email protected]  */
793034d2123cS[email protected] gap_security_level_t gap_security_level(hci_con_handle_t con_handle){
793134d2123cS[email protected]     hci_connection_t * connection = hci_connection_for_handle(con_handle);
793234d2123cS[email protected]     if (!connection) return LEVEL_0;
793334d2123cS[email protected]     return gap_security_level_for_connection(connection);
793434d2123cS[email protected] }
793534d2123cS[email protected] 
7936cb230b9dS[email protected] /**
7937cb230b9dS[email protected]  * @brief request connection to device to
7938cb230b9dS[email protected]  * @result GAP_AUTHENTICATION_RESULT
7939cb230b9dS[email protected]  */
794034d2123cS[email protected] void gap_request_security_level(hci_con_handle_t con_handle, gap_security_level_t requested_level){
794134d2123cS[email protected]     hci_connection_t * connection = hci_connection_for_handle(con_handle);
794234d2123cS[email protected]     if (!connection){
7943a00031e2S[email protected]         hci_emit_security_level(con_handle, LEVEL_0);
794434d2123cS[email protected]         return;
794534d2123cS[email protected]     }
7946defbf200SMatthias Ringwald 
7947defbf200SMatthias Ringwald     btstack_assert(hci_is_le_connection(connection) == false);
7948defbf200SMatthias Ringwald 
7949bc00e12cSMatthias 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)
7950bc00e12cSMatthias Ringwald     // available on the BR/EDR physical transport require Security Mode 4, Level 4 "
7951bc00e12cSMatthias Ringwald     if (hci_stack->gap_secure_connections_only_mode && (requested_level != LEVEL_0)){
7952bc00e12cSMatthias Ringwald         requested_level = LEVEL_4;
7953bc00e12cSMatthias Ringwald     }
7954bc00e12cSMatthias Ringwald 
795534d2123cS[email protected]     gap_security_level_t current_level = gap_security_level(con_handle);
795683d08d7cSMatthias Ringwald     log_info("gap_request_security_level requested level %u, planned level %u, current level %u",
795783d08d7cSMatthias Ringwald         requested_level, connection->requested_security_level, current_level);
795883d08d7cSMatthias Ringwald 
7959dbd5dcc3SMatthias Ringwald     // authentication active if authentication request was sent or planned level > 0
7960dbd5dcc3SMatthias Ringwald     bool authentication_active = ((connection->bonding_flags & BONDING_SENT_AUTHENTICATE_REQUEST) != 0) || (connection->requested_security_level > LEVEL_0);
7961dbd5dcc3SMatthias Ringwald     if (authentication_active){
79621cf0a6c8SMatthias Ringwald         // authentication already active
796383d08d7cSMatthias Ringwald         if (connection->requested_security_level < requested_level){
796483d08d7cSMatthias Ringwald             // increase requested level as new level is higher
796583d08d7cSMatthias Ringwald             // TODO: handle re-authentication when done
796683d08d7cSMatthias Ringwald             connection->requested_security_level = requested_level;
796783d08d7cSMatthias Ringwald         }
79681cf0a6c8SMatthias Ringwald     } else {
796983d08d7cSMatthias Ringwald         // no request active, notify if security sufficient
797083d08d7cSMatthias Ringwald         if (requested_level <= current_level){
7971a00031e2S[email protected]             hci_emit_security_level(con_handle, current_level);
797234d2123cS[email protected]             return;
797334d2123cS[email protected]         }
7974a00031e2S[email protected] 
7975e060c07dSMatthias Ringwald         // store request
797634d2123cS[email protected]         connection->requested_security_level = requested_level;
7977a00031e2S[email protected] 
79781cf0a6c8SMatthias Ringwald         // start to authenticate connection
79791eb2563eS[email protected]         connection->bonding_flags |= BONDING_SEND_AUTHENTICATE_REQUEST;
79807fdbaf79SMatthias Ringwald 
79817fdbaf79SMatthias Ringwald         // request remote features if not already active, also trigger hci_run
79827fdbaf79SMatthias Ringwald         hci_remote_features_query(con_handle);
7983e00caf9cS[email protected]     }
79841cf0a6c8SMatthias Ringwald }
7985ad83dc6aS[email protected] 
7986ad83dc6aS[email protected] /**
7987ad83dc6aS[email protected]  * @brief start dedicated bonding with device. disconnect after bonding
7988ad83dc6aS[email protected]  * @param device
7989ad83dc6aS[email protected]  * @param request MITM protection
7990ad83dc6aS[email protected]  * @result GAP_DEDICATED_BONDING_COMPLETE
7991ad83dc6aS[email protected]  */
7992ad83dc6aS[email protected] int gap_dedicated_bonding(bd_addr_t device, int mitm_protection_required){
7993ad83dc6aS[email protected] 
7994ad83dc6aS[email protected]     // create connection state machine
799588f925b1SMatthias Ringwald     hci_connection_t * connection = create_connection_for_bd_addr_and_type(device, BD_ADDR_TYPE_ACL, HCI_ROLE_MASTER);
7996ad83dc6aS[email protected] 
7997ad83dc6aS[email protected]     if (!connection){
7998ad83dc6aS[email protected]         return BTSTACK_MEMORY_ALLOC_FAILED;
7999ad83dc6aS[email protected]     }
8000ad83dc6aS[email protected] 
80014cd03f8aSMatthias Ringwald     // delete link key
800215a95bd5SMatthias Ringwald     gap_drop_link_key_for_bd_addr(device);
8003ad83dc6aS[email protected] 
8004ad83dc6aS[email protected]     // configure LEVEL_2/3, dedicated bonding
8005ad83dc6aS[email protected]     connection->state = SEND_CREATE_CONNECTION;
8006ad83dc6aS[email protected]     connection->requested_security_level = mitm_protection_required ? LEVEL_3 : LEVEL_2;
8007f04a0c31SMatthias Ringwald     log_info("gap_dedicated_bonding, mitm %d -> level %u", mitm_protection_required, connection->requested_security_level);
8008ad83dc6aS[email protected]     connection->bonding_flags = BONDING_DEDICATED;
8009ad83dc6aS[email protected] 
8010ad83dc6aS[email protected]     hci_run();
8011ad83dc6aS[email protected] 
8012ad83dc6aS[email protected]     return 0;
8013ad83dc6aS[email protected] }
80148e618f72S[email protected] 
8015f82b8f4bSMatthias Ringwald uint8_t hci_dedicated_bonding_defer_disconnect(hci_con_handle_t con_handle, bool defer){
8016ab0c69a9SMatthias Ringwald     hci_connection_t * connection = hci_connection_for_handle(con_handle);
8017ab0c69a9SMatthias Ringwald     if (connection == NULL){
8018ab0c69a9SMatthias Ringwald         return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
8019ab0c69a9SMatthias Ringwald     }
8020ab0c69a9SMatthias Ringwald     if (defer){
8021ab0c69a9SMatthias Ringwald         connection->bonding_flags |= BONDING_DEDICATED_DEFER_DISCONNECT;
8022ab0c69a9SMatthias Ringwald     } else {
8023ab0c69a9SMatthias Ringwald         connection->bonding_flags &= ~BONDING_DEDICATED_DEFER_DISCONNECT;
8024ab0c69a9SMatthias Ringwald         // trigger disconnect
8025ab0c69a9SMatthias Ringwald         hci_run();
8026ab0c69a9SMatthias Ringwald     }
8027ab0c69a9SMatthias Ringwald     return ERROR_CODE_SUCCESS;
8028ab0c69a9SMatthias Ringwald }
8029ab0c69a9SMatthias Ringwald 
80308e618f72S[email protected] void gap_set_local_name(const char * local_name){
80318e618f72S[email protected]     hci_stack->local_name = local_name;
8032baa4881eSMatthias Ringwald     hci_stack->gap_tasks_classic |= GAP_TASK_SET_LOCAL_NAME;
803359d59ecfSMatthias Ringwald     // also update EIR if not set by user
803459d59ecfSMatthias Ringwald     if (hci_stack->eir_data == NULL){
8035baa4881eSMatthias Ringwald         hci_stack->gap_tasks_classic |= GAP_TASK_SET_EIR_DATA;
803659d59ecfSMatthias Ringwald     }
803759d59ecfSMatthias Ringwald     hci_run();
80388e618f72S[email protected] }
80391aeec2ebSMatthias Ringwald #endif
80408e618f72S[email protected] 
804135454696SMatthias Ringwald 
804235454696SMatthias Ringwald #ifdef ENABLE_BLE
804335454696SMatthias Ringwald 
8044d70217a2SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
8045d8e8f12aSMatthias Ringwald void gap_start_scan(void){
8046fde725feSMatthias Ringwald     hci_stack->le_scanning_enabled = true;
80477bdc6798S[email protected]     hci_run();
80487bdc6798S[email protected] }
80498e618f72S[email protected] 
8050d8e8f12aSMatthias Ringwald void gap_stop_scan(void){
8051fde725feSMatthias Ringwald     hci_stack->le_scanning_enabled = false;
80527bdc6798S[email protected]     hci_run();
80537bdc6798S[email protected] }
80544f3229d8S[email protected] 
8055a7a719e9SMatthias Ringwald void gap_set_scan_params(uint8_t scan_type, uint16_t scan_interval, uint16_t scan_window, uint8_t scanning_filter_policy){
8056ef11999fSmatthias.ringwald     hci_stack->le_scan_type          = scan_type;
8057a7a719e9SMatthias Ringwald     hci_stack->le_scan_filter_policy = scanning_filter_policy;
8058ef11999fSmatthias.ringwald     hci_stack->le_scan_interval      = scan_interval;
8059ef11999fSmatthias.ringwald     hci_stack->le_scan_window        = scan_window;
80608b69e4c7SMatthias Ringwald     hci_stack->le_scanning_param_update = true;
8061ef11999fSmatthias.ringwald     hci_run();
8062ef11999fSmatthias.ringwald }
80634f3229d8S[email protected] 
8064a7a719e9SMatthias Ringwald void gap_set_scan_parameters(uint8_t scan_type, uint16_t scan_interval, uint16_t scan_window){
8065a7a719e9SMatthias Ringwald     gap_set_scan_params(scan_type, scan_interval, scan_window, 0);
8066a7a719e9SMatthias Ringwald }
8067a7a719e9SMatthias Ringwald 
80684856283bSMatthias Ringwald void gap_set_scan_duplicate_filter(bool enabled){
80694856283bSMatthias Ringwald     hci_stack->le_scan_filter_duplicates = enabled ? 1 : 0;
80704856283bSMatthias Ringwald }
80714856283bSMatthias Ringwald 
80727eb5b27eSMatthias Ringwald void gap_set_scan_phys(uint8_t phys){
80737eb5b27eSMatthias Ringwald     // LE Coded and LE 1M PHY
80747eb5b27eSMatthias Ringwald     hci_stack->le_scan_phys = phys & 0x05;
80757eb5b27eSMatthias Ringwald }
80767eb5b27eSMatthias Ringwald 
8077667ba9d1SMatthias Ringwald uint8_t gap_connect(const bd_addr_t addr, bd_addr_type_t addr_type){
80784f3229d8S[email protected]     hci_connection_t * conn = hci_connection_for_bd_addr_and_type(addr, addr_type);
80794f3229d8S[email protected]     if (!conn){
8080d32b3f05SMatthias Ringwald         // disallow if le connection is already outgoing
8081d32b3f05SMatthias Ringwald         if (hci_is_le_connection_type(addr_type) && hci_stack->le_connecting_request != LE_CONNECTING_IDLE){
8082d32b3f05SMatthias Ringwald             log_error("le connection already active");
8083d32b3f05SMatthias Ringwald             return ERROR_CODE_COMMAND_DISALLOWED;
8084d32b3f05SMatthias Ringwald         }
8085d32b3f05SMatthias Ringwald 
8086d8e8f12aSMatthias Ringwald         log_info("gap_connect: no connection exists yet, creating context");
808788f925b1SMatthias Ringwald         conn = create_connection_for_bd_addr_and_type(addr, addr_type, HCI_ROLE_MASTER);
80884f3229d8S[email protected]         if (!conn){
80894f3229d8S[email protected]             // notify client that alloc failed
80906e2e9a6bS[email protected]             hci_emit_le_connection_complete(addr_type, addr, 0, BTSTACK_MEMORY_ALLOC_FAILED);
8091d8e8f12aSMatthias Ringwald             log_info("gap_connect: failed to alloc hci_connection_t");
8092472a5742SMatthias Ringwald             return GATT_CLIENT_NOT_CONNECTED; // don't sent packet to controller
80934f3229d8S[email protected]         }
8094d5b1a89eSMatthias Ringwald 
8095d5b1a89eSMatthias Ringwald         // set le connecting state
8096d5b1a89eSMatthias Ringwald         if (hci_is_le_connection_type(addr_type)){
8097d5b1a89eSMatthias Ringwald             hci_stack->le_connecting_request = LE_CONNECTING_DIRECT;
8098d5b1a89eSMatthias Ringwald         }
8099d5b1a89eSMatthias Ringwald 
81004f3229d8S[email protected]         conn->state = SEND_CREATE_CONNECTION;
8101d8e8f12aSMatthias Ringwald         log_info("gap_connect: send create connection next");
8102564fca32S[email protected]         hci_run();
8103b0136355SMatthias Ringwald         return ERROR_CODE_SUCCESS;
81044f3229d8S[email protected]     }
81050bf6344aS[email protected] 
81060bf6344aS[email protected]     if (!hci_is_le_connection(conn) ||
8107a1df452eSMatthias Ringwald         (conn->state == SEND_CREATE_CONNECTION) ||
81080e588213SMatthias Ringwald         (conn->state == SENT_CREATE_CONNECTION)) {
81092e77e513S[email protected]         hci_emit_le_connection_complete(conn->address_type, conn->address, 0, ERROR_CODE_COMMAND_DISALLOWED);
8110d8e8f12aSMatthias Ringwald         log_error("gap_connect: classic connection or connect is already being created");
8111616edd56SMatthias Ringwald         return GATT_CLIENT_IN_WRONG_STATE;
81120bf6344aS[email protected]     }
81130bf6344aS[email protected] 
8114b0136355SMatthias Ringwald     // check if connection was just disconnected
8115b0136355SMatthias Ringwald     if (conn->state == RECEIVED_DISCONNECTION_COMPLETE){
8116b0136355SMatthias Ringwald         log_info("gap_connect: send create connection (again)");
8117b0136355SMatthias Ringwald         conn->state = SEND_CREATE_CONNECTION;
8118b0136355SMatthias Ringwald         hci_run();
8119b0136355SMatthias Ringwald         return ERROR_CODE_SUCCESS;
8120b0136355SMatthias Ringwald     }
8121b0136355SMatthias Ringwald 
8122d8e8f12aSMatthias Ringwald     log_info("gap_connect: context exists with state %u", conn->state);
8123d5b1a89eSMatthias Ringwald     hci_emit_le_connection_complete(conn->address_type, conn->address, conn->con_handle, ERROR_CODE_SUCCESS);
81244f3229d8S[email protected]     hci_run();
8125b0136355SMatthias Ringwald     return ERROR_CODE_SUCCESS;
81264f3229d8S[email protected] }
81274f3229d8S[email protected] 
81287851196eSmatthias.ringwald // @assumption: only a single outgoing LE Connection exists
8129d8e8f12aSMatthias Ringwald static hci_connection_t * gap_get_outgoing_connection(void){
8130665d90f2SMatthias Ringwald     btstack_linked_item_t *it;
8131a0da043fSMatthias Ringwald     for (it = (btstack_linked_item_t *) hci_stack->connections; it != NULL; it = it->next){
81320bf6344aS[email protected]         hci_connection_t * conn = (hci_connection_t *) it;
81330bf6344aS[email protected]         if (!hci_is_le_connection(conn)) continue;
81340bf6344aS[email protected]         switch (conn->state){
8135a6725849S[email protected]             case SEND_CREATE_CONNECTION:
81367851196eSmatthias.ringwald             case SENT_CREATE_CONNECTION:
81377851196eSmatthias.ringwald                 return conn;
81387851196eSmatthias.ringwald             default:
81397851196eSmatthias.ringwald                 break;
81407851196eSmatthias.ringwald         };
81417851196eSmatthias.ringwald     }
81427851196eSmatthias.ringwald     return NULL;
81437851196eSmatthias.ringwald }
81447851196eSmatthias.ringwald 
8145d8e8f12aSMatthias Ringwald uint8_t gap_connect_cancel(void){
814614f2d8f0SMatthias Ringwald     hci_connection_t * conn;
814714f2d8f0SMatthias Ringwald     switch (hci_stack->le_connecting_request){
814814f2d8f0SMatthias Ringwald         case LE_CONNECTING_IDLE:
814914f2d8f0SMatthias Ringwald             break;
815014f2d8f0SMatthias Ringwald         case LE_CONNECTING_WHITELIST:
815114f2d8f0SMatthias Ringwald             hci_stack->le_connecting_request = LE_CONNECTING_IDLE;
815214f2d8f0SMatthias Ringwald             hci_run();
815314f2d8f0SMatthias Ringwald             break;
815414f2d8f0SMatthias Ringwald         case LE_CONNECTING_DIRECT:
815514f2d8f0SMatthias Ringwald             hci_stack->le_connecting_request = LE_CONNECTING_IDLE;
815614f2d8f0SMatthias Ringwald             conn = gap_get_outgoing_connection();
815714f2d8f0SMatthias Ringwald             if (conn == NULL){
815814f2d8f0SMatthias Ringwald                 hci_run();
815914f2d8f0SMatthias Ringwald             } else {
81607851196eSmatthias.ringwald                 switch (conn->state){
81617851196eSmatthias.ringwald                     case SEND_CREATE_CONNECTION:
81627851196eSmatthias.ringwald                         // skip sending create connection and emit event instead
81632e77e513S[email protected]                         hci_emit_le_connection_complete(conn->address_type, conn->address, 0, ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER);
8164665d90f2SMatthias Ringwald                         btstack_linked_list_remove(&hci_stack->connections, (btstack_linked_item_t *) conn);
81657851196eSmatthias.ringwald                         btstack_memory_hci_connection_free( conn );
81660bf6344aS[email protected]                         break;
8167a6725849S[email protected]                     case SENT_CREATE_CONNECTION:
8168ea04fbd8SMatthias Ringwald                         // let hci_run_general_gap_le cancel outgoing connection
81690bf6344aS[email protected]                         hci_run();
81700bf6344aS[email protected]                         break;
81710bf6344aS[email protected]                     default:
81720bf6344aS[email protected]                         break;
81730bf6344aS[email protected]                 }
817414f2d8f0SMatthias Ringwald             }
817514f2d8f0SMatthias Ringwald             break;
817643dfd98aSMatthias Ringwald         default:
817714f2d8f0SMatthias Ringwald             btstack_unreachable();
817814f2d8f0SMatthias Ringwald             break;
817914f2d8f0SMatthias Ringwald     }
818014f2d8f0SMatthias Ringwald     return ERROR_CODE_SUCCESS;
8181e31f89a7S[email protected] }
81824f3229d8S[email protected] 
8183c37a3166S[email protected] /**
81846012052bSMatthias Ringwald  * @brief Set connection parameters for outgoing connections
8185cbe54ab2SJakob Krantz  * @param conn_scan_interval (unit: 0.625 msec), default: 60 ms
8186cbe54ab2SJakob Krantz  * @param conn_scan_window (unit: 0.625 msec), default: 30 ms
81876012052bSMatthias Ringwald  * @param conn_interval_min (unit: 1.25ms), default: 10 ms
81886012052bSMatthias Ringwald  * @param conn_interval_max (unit: 1.25ms), default: 30 ms
81896012052bSMatthias Ringwald  * @param conn_latency, default: 4
81906012052bSMatthias Ringwald  * @param supervision_timeout (unit: 10ms), default: 720 ms
81916012052bSMatthias Ringwald  * @param min_ce_length (unit: 0.625ms), default: 10 ms
81926012052bSMatthias Ringwald  * @param max_ce_length (unit: 0.625ms), default: 30 ms
81936012052bSMatthias Ringwald  */
81946012052bSMatthias Ringwald 
81950c2c5f79SMatthias Ringwald void gap_set_connection_phys(uint8_t phys){
81960c2c5f79SMatthias Ringwald     // LE Coded, LE 1M, LE 2M PHY
81970c2c5f79SMatthias Ringwald     hci_stack->le_connection_phys = phys & 7;
81980c2c5f79SMatthias Ringwald }
81990c2c5f79SMatthias Ringwald 
82000c2c5f79SMatthias Ringwald #endif
82010c2c5f79SMatthias Ringwald 
8202cbe54ab2SJakob Krantz void gap_set_connection_parameters(uint16_t conn_scan_interval, uint16_t conn_scan_window,
8203cbe54ab2SJakob Krantz                                    uint16_t conn_interval_min, uint16_t conn_interval_max, uint16_t conn_latency,
8204cbe54ab2SJakob Krantz                                    uint16_t supervision_timeout, uint16_t min_ce_length, uint16_t max_ce_length){
8205cbe54ab2SJakob Krantz     hci_stack->le_connection_scan_interval = conn_scan_interval;
8206cbe54ab2SJakob Krantz     hci_stack->le_connection_scan_window = conn_scan_window;
82076012052bSMatthias Ringwald     hci_stack->le_connection_interval_min = conn_interval_min;
82086012052bSMatthias Ringwald     hci_stack->le_connection_interval_max = conn_interval_max;
82096012052bSMatthias Ringwald     hci_stack->le_connection_latency = conn_latency;
82106012052bSMatthias Ringwald     hci_stack->le_supervision_timeout = supervision_timeout;
82116012052bSMatthias Ringwald     hci_stack->le_minimum_ce_length = min_ce_length;
82126012052bSMatthias Ringwald     hci_stack->le_maximum_ce_length = max_ce_length;
82136012052bSMatthias Ringwald }
82147eb5b27eSMatthias Ringwald 
82156012052bSMatthias Ringwald /**
8216c37a3166S[email protected]  * @brief Updates the connection parameters for a given LE connection
8217c37a3166S[email protected]  * @param handle
8218c37a3166S[email protected]  * @param conn_interval_min (unit: 1.25ms)
8219c37a3166S[email protected]  * @param conn_interval_max (unit: 1.25ms)
8220c37a3166S[email protected]  * @param conn_latency
8221c37a3166S[email protected]  * @param supervision_timeout (unit: 10ms)
82226b65794dSMilanka Ringwald  * @return 0 if ok
8223c37a3166S[email protected]  */
8224c37a3166S[email protected] int gap_update_connection_parameters(hci_con_handle_t con_handle, uint16_t conn_interval_min,
8225c37a3166S[email protected]     uint16_t conn_interval_max, uint16_t conn_latency, uint16_t supervision_timeout){
8226c37a3166S[email protected]     hci_connection_t * connection = hci_connection_for_handle(con_handle);
8227c37a3166S[email protected]     if (!connection) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
8228c37a3166S[email protected]     connection->le_conn_interval_min = conn_interval_min;
8229c37a3166S[email protected]     connection->le_conn_interval_max = conn_interval_max;
8230c37a3166S[email protected]     connection->le_conn_latency = conn_latency;
8231c37a3166S[email protected]     connection->le_supervision_timeout = supervision_timeout;
823284cf6d83SMatthias Ringwald     connection->le_con_parameter_update_state = CON_PARAMETER_UPDATE_CHANGE_HCI_CON_PARAMETERS;
8233cfc59f1bSMatthias Ringwald     hci_run();
8234c37a3166S[email protected]     return 0;
8235c37a3166S[email protected] }
8236c37a3166S[email protected] 
823745c102fdSMatthias Ringwald /**
8238b68d7bc3SMatthias Ringwald  * @brief Request an update of the connection parameter for a given LE connection
8239b68d7bc3SMatthias Ringwald  * @param handle
8240b68d7bc3SMatthias Ringwald  * @param conn_interval_min (unit: 1.25ms)
8241b68d7bc3SMatthias Ringwald  * @param conn_interval_max (unit: 1.25ms)
8242b68d7bc3SMatthias Ringwald  * @param conn_latency
8243b68d7bc3SMatthias Ringwald  * @param supervision_timeout (unit: 10ms)
82446b65794dSMilanka Ringwald  * @return 0 if ok
8245b68d7bc3SMatthias Ringwald  */
8246b68d7bc3SMatthias Ringwald int gap_request_connection_parameter_update(hci_con_handle_t con_handle, uint16_t conn_interval_min,
8247b68d7bc3SMatthias Ringwald     uint16_t conn_interval_max, uint16_t conn_latency, uint16_t supervision_timeout){
8248b68d7bc3SMatthias Ringwald     hci_connection_t * connection = hci_connection_for_handle(con_handle);
8249b68d7bc3SMatthias Ringwald     if (!connection) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
8250b68d7bc3SMatthias Ringwald     connection->le_conn_interval_min = conn_interval_min;
8251b68d7bc3SMatthias Ringwald     connection->le_conn_interval_max = conn_interval_max;
8252b68d7bc3SMatthias Ringwald     connection->le_conn_latency = conn_latency;
8253b68d7bc3SMatthias Ringwald     connection->le_supervision_timeout = supervision_timeout;
8254b68d7bc3SMatthias Ringwald     connection->le_con_parameter_update_state = CON_PARAMETER_UPDATE_SEND_REQUEST;
825509c9c963SMatthias Ringwald     uint8_t l2cap_trigger_run_event[2] = { L2CAP_EVENT_TRIGGER_RUN, 0};
825609c9c963SMatthias Ringwald     hci_emit_event(l2cap_trigger_run_event, sizeof(l2cap_trigger_run_event), 0);
8257b68d7bc3SMatthias Ringwald     return 0;
8258b68d7bc3SMatthias Ringwald }
8259b68d7bc3SMatthias Ringwald 
8260d70217a2SMatthias Ringwald #ifdef ENABLE_LE_PERIPHERAL
8261d70217a2SMatthias Ringwald 
8262b68d7bc3SMatthias Ringwald /**
826345c102fdSMatthias Ringwald  * @brief Set Advertisement Data
826445c102fdSMatthias Ringwald  * @param advertising_data_length
826545c102fdSMatthias Ringwald  * @param advertising_data (max 31 octets)
826645c102fdSMatthias Ringwald  * @note data is not copied, pointer has to stay valid
826745c102fdSMatthias Ringwald  */
826845c102fdSMatthias Ringwald void gap_advertisements_set_data(uint8_t advertising_data_length, uint8_t * advertising_data){
826945c102fdSMatthias Ringwald     hci_stack->le_advertisements_data_len = advertising_data_length;
827045c102fdSMatthias Ringwald     hci_stack->le_advertisements_data = advertising_data;
8271501f56b3SMatthias Ringwald     hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_SET_ADV_DATA;
8272bbc366e6SMatthias Ringwald     hci_run();
827345c102fdSMatthias Ringwald }
8274501f56b3SMatthias Ringwald 
8275501f56b3SMatthias Ringwald /**
8276501f56b3SMatthias Ringwald  * @brief Set Scan Response Data
8277501f56b3SMatthias Ringwald  * @param advertising_data_length
8278501f56b3SMatthias Ringwald  * @param advertising_data (max 31 octets)
8279501f56b3SMatthias Ringwald  * @note data is not copied, pointer has to stay valid
8280501f56b3SMatthias Ringwald  */
8281501f56b3SMatthias Ringwald void gap_scan_response_set_data(uint8_t scan_response_data_length, uint8_t * scan_response_data){
8282501f56b3SMatthias Ringwald     hci_stack->le_scan_response_data_len = scan_response_data_length;
8283501f56b3SMatthias Ringwald     hci_stack->le_scan_response_data = scan_response_data;
8284501f56b3SMatthias Ringwald     hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_SET_SCAN_DATA;
8285bbc366e6SMatthias Ringwald     hci_run();
828645c102fdSMatthias Ringwald }
828745c102fdSMatthias Ringwald 
828845c102fdSMatthias Ringwald /**
828945c102fdSMatthias Ringwald  * @brief Set Advertisement Parameters
829045c102fdSMatthias Ringwald  * @param adv_int_min
829145c102fdSMatthias Ringwald  * @param adv_int_max
829245c102fdSMatthias Ringwald  * @param adv_type
829345c102fdSMatthias Ringwald  * @param direct_address_type
829445c102fdSMatthias Ringwald  * @param direct_address
829545c102fdSMatthias Ringwald  * @param channel_map
829645c102fdSMatthias Ringwald  * @param filter_policy
829745c102fdSMatthias Ringwald  *
829845c102fdSMatthias Ringwald  * @note internal use. use gap_advertisements_set_params from gap_le.h instead.
829945c102fdSMatthias Ringwald  */
830045c102fdSMatthias Ringwald  void hci_le_advertisements_set_params(uint16_t adv_int_min, uint16_t adv_int_max, uint8_t adv_type,
8301b95a5a35SMatthias Ringwald     uint8_t direct_address_typ, bd_addr_t direct_address,
830245c102fdSMatthias Ringwald     uint8_t channel_map, uint8_t filter_policy) {
830345c102fdSMatthias Ringwald 
830445c102fdSMatthias Ringwald     hci_stack->le_advertisements_interval_min = adv_int_min;
830545c102fdSMatthias Ringwald     hci_stack->le_advertisements_interval_max = adv_int_max;
830645c102fdSMatthias Ringwald     hci_stack->le_advertisements_type = adv_type;
830745c102fdSMatthias Ringwald     hci_stack->le_advertisements_direct_address_type = direct_address_typ;
830845c102fdSMatthias Ringwald     hci_stack->le_advertisements_channel_map = channel_map;
830945c102fdSMatthias Ringwald     hci_stack->le_advertisements_filter_policy = filter_policy;
83106535961aSMatthias Ringwald     (void)memcpy(hci_stack->le_advertisements_direct_address, direct_address,
83116535961aSMatthias Ringwald                  6);
831245c102fdSMatthias Ringwald 
83136bf435a6SMatthias Ringwald     hci_stack->le_advertisements_todo  |= LE_ADVERTISEMENT_TASKS_SET_PARAMS;
83146bf435a6SMatthias Ringwald     hci_stack->le_advertisements_state |= LE_ADVERTISEMENT_STATE_PARAMS_SET;
8315bbc366e6SMatthias Ringwald     hci_run();
831645c102fdSMatthias Ringwald  }
831745c102fdSMatthias Ringwald 
831845c102fdSMatthias Ringwald /**
831945c102fdSMatthias Ringwald  * @brief Enable/Disable Advertisements
832045c102fdSMatthias Ringwald  * @param enabled
832145c102fdSMatthias Ringwald  */
832245c102fdSMatthias Ringwald void gap_advertisements_enable(int enabled){
8323a408e724SMatthias Ringwald     if (enabled == 0){
8324a408e724SMatthias Ringwald         hci_stack->le_advertisements_state &= ~LE_ADVERTISEMENT_STATE_ENABLED;
8325a408e724SMatthias Ringwald     } else {
8326a408e724SMatthias Ringwald         hci_stack->le_advertisements_state |= LE_ADVERTISEMENT_STATE_ENABLED;
8327a408e724SMatthias Ringwald     }
8328bbc366e6SMatthias Ringwald     hci_update_advertisements_enabled_for_current_roles();
8329cfc59f1bSMatthias Ringwald     hci_run();
833045c102fdSMatthias Ringwald }
833145c102fdSMatthias Ringwald 
8332a5770ecbSMatthias Ringwald #ifdef ENABLE_LE_EXTENDED_ADVERTISING
8333a5770ecbSMatthias Ringwald static le_advertising_set_t * hci_advertising_set_for_handle(uint8_t advertising_handle){
8334a5770ecbSMatthias Ringwald     btstack_linked_list_iterator_t it;
8335a5770ecbSMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->le_advertising_sets);
8336a5770ecbSMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
8337a5770ecbSMatthias Ringwald         le_advertising_set_t * item = (le_advertising_set_t *) btstack_linked_list_iterator_next(&it);
8338a5770ecbSMatthias Ringwald         if ( item->advertising_handle == advertising_handle ) {
8339a5770ecbSMatthias Ringwald             return item;
8340a5770ecbSMatthias Ringwald         }
8341a5770ecbSMatthias Ringwald     }
8342a5770ecbSMatthias Ringwald     return NULL;
8343a5770ecbSMatthias Ringwald }
8344a5770ecbSMatthias Ringwald 
8345a5770ecbSMatthias Ringwald uint8_t gap_extended_advertising_setup(le_advertising_set_t * storage, const le_extended_advertising_parameters_t * advertising_parameters, uint8_t * out_advertising_handle){
8346a5770ecbSMatthias Ringwald     // find free advertisement handle
8347a5770ecbSMatthias Ringwald     uint8_t advertisement_handle;
8348a5770ecbSMatthias Ringwald     for (advertisement_handle = 1; advertisement_handle <= LE_EXTENDED_ADVERTISING_MAX_HANDLE; advertisement_handle++){
8349a5770ecbSMatthias Ringwald         if (hci_advertising_set_for_handle(advertisement_handle) == NULL) break;
8350a5770ecbSMatthias Ringwald     }
8351a5770ecbSMatthias Ringwald     if (advertisement_handle > LE_EXTENDED_ADVERTISING_MAX_HANDLE) return ERROR_CODE_MEMORY_CAPACITY_EXCEEDED;
8352a5770ecbSMatthias Ringwald     // clear
8353a5770ecbSMatthias Ringwald     memset(storage, 0, sizeof(le_advertising_set_t));
8354a5770ecbSMatthias Ringwald     // copy params
83550cbe4690SMatthias Ringwald     storage->advertising_handle = advertisement_handle;
835657a04237SMatthias Ringwald     memcpy(&storage->extended_params, advertising_parameters, sizeof(le_extended_advertising_parameters_t));
8357a5770ecbSMatthias Ringwald     // add to list
8358a5770ecbSMatthias Ringwald     bool add_ok = btstack_linked_list_add(&hci_stack->le_advertising_sets, (btstack_linked_item_t *) storage);
8359a5770ecbSMatthias Ringwald     if (!add_ok) return ERROR_CODE_ACL_CONNECTION_ALREADY_EXISTS;
83600cbe4690SMatthias Ringwald     *out_advertising_handle = advertisement_handle;
8361a5770ecbSMatthias Ringwald     // set tasks and start
8362a5770ecbSMatthias Ringwald     storage->tasks = LE_ADVERTISEMENT_TASKS_SET_PARAMS;
8363a5770ecbSMatthias Ringwald     hci_run();
8364a5770ecbSMatthias Ringwald     return ERROR_CODE_SUCCESS;
8365a5770ecbSMatthias Ringwald }
8366a5770ecbSMatthias Ringwald 
8367a5770ecbSMatthias Ringwald uint8_t gap_extended_advertising_set_params(uint8_t advertising_handle, const le_extended_advertising_parameters_t * advertising_parameters){
8368a5770ecbSMatthias Ringwald     le_advertising_set_t * advertising_set = hci_advertising_set_for_handle(advertising_handle);
8369a5770ecbSMatthias Ringwald     if (advertising_set == NULL) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
837057a04237SMatthias Ringwald     memcpy(&advertising_set->extended_params, advertising_parameters, sizeof(le_extended_advertising_parameters_t));
8371a5770ecbSMatthias Ringwald     // set tasks and start
8372a5770ecbSMatthias Ringwald     advertising_set->tasks |= LE_ADVERTISEMENT_TASKS_SET_PARAMS;
8373a5770ecbSMatthias Ringwald     hci_run();
8374a5770ecbSMatthias Ringwald     return ERROR_CODE_SUCCESS;
8375a5770ecbSMatthias Ringwald }
8376a5770ecbSMatthias Ringwald 
8377a5770ecbSMatthias Ringwald uint8_t gap_extended_advertising_get_params(uint8_t advertising_handle, le_extended_advertising_parameters_t * advertising_parameters){
8378a5770ecbSMatthias Ringwald     le_advertising_set_t * advertising_set = hci_advertising_set_for_handle(advertising_handle);
8379a5770ecbSMatthias Ringwald     if (advertising_set == NULL) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
838057a04237SMatthias Ringwald     memcpy(advertising_parameters, &advertising_set->extended_params, sizeof(le_extended_advertising_parameters_t));
8381a5770ecbSMatthias Ringwald     return ERROR_CODE_SUCCESS;
8382a5770ecbSMatthias Ringwald }
8383a5770ecbSMatthias Ringwald 
8384a5770ecbSMatthias Ringwald uint8_t gap_extended_advertising_set_random_address(uint8_t advertising_handle, bd_addr_t random_address){
8385a5770ecbSMatthias Ringwald     le_advertising_set_t * advertising_set = hci_advertising_set_for_handle(advertising_handle);
8386a5770ecbSMatthias Ringwald     if (advertising_set == NULL) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
8387a5770ecbSMatthias Ringwald     memcpy(advertising_set->random_address, random_address, 6);
8388a5770ecbSMatthias Ringwald     // set tasks and start
8389a5770ecbSMatthias Ringwald     advertising_set->tasks |= LE_ADVERTISEMENT_TASKS_SET_ADDRESS;
8390a5770ecbSMatthias Ringwald     hci_run();
8391a5770ecbSMatthias Ringwald     return ERROR_CODE_SUCCESS;
8392a5770ecbSMatthias Ringwald }
8393a5770ecbSMatthias Ringwald 
83942e4aaf70SMatthias Ringwald uint8_t gap_extended_advertising_set_adv_data(uint8_t advertising_handle, uint16_t advertising_data_length, const uint8_t * advertising_data){
8395a5770ecbSMatthias Ringwald     le_advertising_set_t * advertising_set = hci_advertising_set_for_handle(advertising_handle);
8396a5770ecbSMatthias Ringwald     if (advertising_set == NULL) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
8397a5770ecbSMatthias Ringwald     advertising_set->adv_data = advertising_data;
8398a5770ecbSMatthias Ringwald     advertising_set->adv_data_len = advertising_data_length;
8399a5770ecbSMatthias Ringwald     // set tasks and start
8400a5770ecbSMatthias Ringwald     advertising_set->tasks |= LE_ADVERTISEMENT_TASKS_SET_ADV_DATA;
8401a5770ecbSMatthias Ringwald     hci_run();
8402a5770ecbSMatthias Ringwald     return ERROR_CODE_SUCCESS;
8403a5770ecbSMatthias Ringwald }
8404a5770ecbSMatthias Ringwald 
84052e4aaf70SMatthias Ringwald uint8_t gap_extended_advertising_set_scan_response_data(uint8_t advertising_handle, uint16_t scan_response_data_length, const uint8_t * scan_response_data){
8406a5770ecbSMatthias Ringwald     le_advertising_set_t * advertising_set = hci_advertising_set_for_handle(advertising_handle);
8407a5770ecbSMatthias Ringwald     if (advertising_set == NULL) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
8408a5770ecbSMatthias Ringwald     advertising_set->scan_data = scan_response_data;
8409a5770ecbSMatthias Ringwald     advertising_set->scan_data_len = scan_response_data_length;
8410a5770ecbSMatthias Ringwald     // set tasks and start
8411a5770ecbSMatthias Ringwald     advertising_set->tasks |= LE_ADVERTISEMENT_TASKS_SET_SCAN_DATA;
8412a5770ecbSMatthias Ringwald     hci_run();
8413a5770ecbSMatthias Ringwald     return ERROR_CODE_SUCCESS;
8414a5770ecbSMatthias Ringwald }
8415a5770ecbSMatthias Ringwald 
8416a5770ecbSMatthias Ringwald uint8_t gap_extended_advertising_start(uint8_t advertising_handle, uint16_t timeout, uint8_t num_extended_advertising_events){
8417a5770ecbSMatthias Ringwald     le_advertising_set_t * advertising_set = hci_advertising_set_for_handle(advertising_handle);
8418a5770ecbSMatthias Ringwald     if (advertising_set == NULL) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
8419a5770ecbSMatthias Ringwald     advertising_set->enable_timeout = timeout;
8420a5770ecbSMatthias Ringwald     advertising_set->enable_max_scan_events = num_extended_advertising_events;
8421a5770ecbSMatthias Ringwald     // set tasks and start
8422a5770ecbSMatthias Ringwald     advertising_set->state |= LE_ADVERTISEMENT_STATE_ENABLED;
8423a5770ecbSMatthias Ringwald     hci_run();
8424a5770ecbSMatthias Ringwald     return ERROR_CODE_SUCCESS;
8425a5770ecbSMatthias Ringwald }
8426a5770ecbSMatthias Ringwald 
8427a5770ecbSMatthias Ringwald uint8_t gap_extended_advertising_stop(uint8_t advertising_handle){
8428a5770ecbSMatthias Ringwald     le_advertising_set_t * advertising_set = hci_advertising_set_for_handle(advertising_handle);
8429a5770ecbSMatthias Ringwald     if (advertising_set == NULL) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
8430a5770ecbSMatthias Ringwald     // set tasks and start
8431a5770ecbSMatthias Ringwald     advertising_set->state &= ~LE_ADVERTISEMENT_STATE_ENABLED;
8432a5770ecbSMatthias Ringwald     hci_run();
8433a5770ecbSMatthias Ringwald     return ERROR_CODE_SUCCESS;
8434a5770ecbSMatthias Ringwald }
8435a5770ecbSMatthias Ringwald 
8436c814a904SMatthias Ringwald uint8_t gap_extended_advertising_remove(uint8_t advertising_handle){
8437c814a904SMatthias Ringwald     le_advertising_set_t * advertising_set = hci_advertising_set_for_handle(advertising_handle);
8438c814a904SMatthias Ringwald     if (advertising_set == NULL) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
8439c814a904SMatthias Ringwald     // set tasks and start
8440c814a904SMatthias Ringwald     advertising_set->tasks |= LE_ADVERTISEMENT_TASKS_REMOVE_SET;
8441c814a904SMatthias Ringwald     hci_run();
8442c814a904SMatthias Ringwald     return ERROR_CODE_SUCCESS;
8443c814a904SMatthias Ringwald }
8444c814a904SMatthias Ringwald 
8445c814a904SMatthias Ringwald #ifdef ENABLE_LE_PERIODIC_ADVERTISING
8446c814a904SMatthias Ringwald uint8_t gap_periodic_advertising_set_params(uint8_t advertising_handle, const le_periodic_advertising_parameters_t * advertising_parameters){
8447c814a904SMatthias Ringwald     le_advertising_set_t * advertising_set = hci_advertising_set_for_handle(advertising_handle);
8448c814a904SMatthias Ringwald     if (advertising_set == NULL) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
8449c814a904SMatthias Ringwald     // periodic advertising requires neither connectable, scannable, legacy or anonymous
8450c814a904SMatthias Ringwald     if ((advertising_set->extended_params.advertising_event_properties & 0x1f) != 0) return ERROR_CODE_INVALID_HCI_COMMAND_PARAMETERS;
8451c814a904SMatthias Ringwald     memcpy(&advertising_set->periodic_params, advertising_parameters, sizeof(le_periodic_advertising_parameters_t));
8452c814a904SMatthias Ringwald     // set tasks and start
8453c814a904SMatthias Ringwald     advertising_set->tasks |= LE_ADVERTISEMENT_TASKS_SET_PERIODIC_PARAMS;
8454c814a904SMatthias Ringwald     hci_run();
8455c814a904SMatthias Ringwald     return ERROR_CODE_SUCCESS;
8456c814a904SMatthias Ringwald }
8457c814a904SMatthias Ringwald 
8458c814a904SMatthias Ringwald uint8_t gap_periodic_advertising_get_params(uint8_t advertising_handle, le_periodic_advertising_parameters_t * advertising_parameters){
8459c814a904SMatthias Ringwald     le_advertising_set_t * advertising_set = hci_advertising_set_for_handle(advertising_handle);
8460c814a904SMatthias Ringwald     if (advertising_set == NULL) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
8461c814a904SMatthias Ringwald     memcpy(advertising_parameters, &advertising_set->extended_params, sizeof(le_periodic_advertising_parameters_t));
8462c814a904SMatthias Ringwald     return ERROR_CODE_SUCCESS;
8463c814a904SMatthias Ringwald }
8464c814a904SMatthias Ringwald 
8465c814a904SMatthias Ringwald uint8_t gap_periodic_advertising_set_data(uint8_t advertising_handle, uint16_t periodic_data_length, const uint8_t * periodic_data){
8466c814a904SMatthias Ringwald     le_advertising_set_t * advertising_set = hci_advertising_set_for_handle(advertising_handle);
8467c814a904SMatthias Ringwald     if (advertising_set == NULL) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
8468c814a904SMatthias Ringwald     advertising_set->periodic_data = periodic_data;
8469c814a904SMatthias Ringwald     advertising_set->periodic_data_len = periodic_data_length;
8470c814a904SMatthias Ringwald     // set tasks and start
8471c814a904SMatthias Ringwald     advertising_set->tasks |= LE_ADVERTISEMENT_TASKS_SET_PERIODIC_DATA;
8472c814a904SMatthias Ringwald     hci_run();
8473c814a904SMatthias Ringwald     return ERROR_CODE_SUCCESS;
8474c814a904SMatthias Ringwald }
8475c814a904SMatthias Ringwald 
847653f240c0SMatthias Ringwald uint8_t gap_periodic_advertising_start(uint8_t advertising_handle, bool include_adi){
847753f240c0SMatthias Ringwald     le_advertising_set_t * advertising_set = hci_advertising_set_for_handle(advertising_handle);
847853f240c0SMatthias Ringwald     if (advertising_set == NULL) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
847953f240c0SMatthias Ringwald     // set tasks and start
848053f240c0SMatthias Ringwald     advertising_set->periodic_include_adi = include_adi;
848153f240c0SMatthias Ringwald     advertising_set->state |= LE_ADVERTISEMENT_STATE_PERIODIC_ENABLED;
848253f240c0SMatthias Ringwald     hci_run();
848353f240c0SMatthias Ringwald     return ERROR_CODE_SUCCESS;
848453f240c0SMatthias Ringwald }
848553f240c0SMatthias Ringwald 
848653f240c0SMatthias Ringwald uint8_t gap_periodic_advertising_stop(uint8_t advertising_handle){
848753f240c0SMatthias Ringwald     le_advertising_set_t * advertising_set = hci_advertising_set_for_handle(advertising_handle);
848853f240c0SMatthias Ringwald     if (advertising_set == NULL) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
848953f240c0SMatthias Ringwald     // set tasks and start
849053f240c0SMatthias Ringwald     advertising_set->state &= ~LE_ADVERTISEMENT_STATE_PERIODIC_ENABLED;
849153f240c0SMatthias Ringwald     hci_run();
849253f240c0SMatthias Ringwald     return ERROR_CODE_SUCCESS;
849353f240c0SMatthias Ringwald }
849498aa715fSMatthias Ringwald 
849598aa715fSMatthias Ringwald uint8_t gap_periodic_advertising_sync_transfer_set_default_parameters(uint8_t mode, uint16_t skip, uint16_t sync_timeout, uint8_t cte_type){
849698aa715fSMatthias Ringwald     hci_stack->le_past_mode = mode;
849798aa715fSMatthias Ringwald     hci_stack->le_past_skip = skip;
849898aa715fSMatthias Ringwald     hci_stack->le_past_sync_timeout = sync_timeout;
849998aa715fSMatthias Ringwald     hci_stack->le_past_cte_type = cte_type;
850098aa715fSMatthias Ringwald     hci_stack->le_past_set_default_params = true;
850198aa715fSMatthias Ringwald     hci_run();
850298aa715fSMatthias Ringwald     return ERROR_CODE_SUCCESS;
850398aa715fSMatthias Ringwald }
850498aa715fSMatthias Ringwald 
85053bd96807SMatthias Ringwald uint8_t gap_periodic_advertising_sync_transfer_send(hci_con_handle_t con_handle, uint16_t service_data, hci_con_handle_t sync_handle){
85063bd96807SMatthias Ringwald     hci_connection_t * hci_connection = hci_connection_for_handle(con_handle);
85073bd96807SMatthias Ringwald     if (hci_connection == NULL){
85083bd96807SMatthias Ringwald         return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
85093bd96807SMatthias Ringwald     }
85103bd96807SMatthias Ringwald     hci_connection->le_past_sync_handle = sync_handle;
85113bd96807SMatthias Ringwald     hci_connection->le_past_service_data = service_data;
85123bd96807SMatthias Ringwald     hci_run();
85133bd96807SMatthias Ringwald     return ERROR_CODE_SUCCESS;
85143bd96807SMatthias Ringwald }
85153bd96807SMatthias Ringwald 
8516c814a904SMatthias Ringwald #endif /* ENABLE_LE_PERIODIC_ADVERTISING */
851753f240c0SMatthias Ringwald 
8518a5770ecbSMatthias Ringwald #endif
8519a5770ecbSMatthias Ringwald 
852035454696SMatthias Ringwald #endif
852106e5cf96SMatthias Ringwald 
852206e5cf96SMatthias Ringwald void hci_le_set_own_address_type(uint8_t own_address_type){
852306e5cf96SMatthias Ringwald     log_info("hci_le_set_own_address_type: old %u, new %u", hci_stack->le_own_addr_type, own_address_type);
852406e5cf96SMatthias Ringwald     if (own_address_type == hci_stack->le_own_addr_type) return;
852506e5cf96SMatthias Ringwald     hci_stack->le_own_addr_type = own_address_type;
852606e5cf96SMatthias Ringwald 
852764068776SMatthias Ringwald #ifdef ENABLE_LE_PERIPHERAL
852806e5cf96SMatthias Ringwald     // update advertisement parameters, too
852906e5cf96SMatthias Ringwald     hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_SET_PARAMS;
8530bbc366e6SMatthias Ringwald     hci_run();
853164068776SMatthias Ringwald #endif
853264068776SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
853306e5cf96SMatthias Ringwald     // note: we don't update scan parameters or modify ongoing connection attempts
853464068776SMatthias Ringwald #endif
853506e5cf96SMatthias Ringwald }
853606e5cf96SMatthias Ringwald 
85379136bde8SMatthias Ringwald void hci_le_random_address_set(const bd_addr_t random_address){
85389136bde8SMatthias Ringwald     memcpy(hci_stack->le_random_address, random_address, 6);
85399136bde8SMatthias Ringwald     hci_stack->le_random_address_set = true;
85409136bde8SMatthias Ringwald     hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_SET_ADDRESS;
85419ce6dfa1SMatthias Ringwald #ifdef ENABLE_LE_EXTENDED_ADVERTISING
85429ce6dfa1SMatthias Ringwald     if (hci_extended_advertising_supported()){
85439ce6dfa1SMatthias Ringwald         // force advertising set creation for LE Set Advertising Set Random Address
85449ce6dfa1SMatthias Ringwald         if ((hci_stack->le_advertisements_state & LE_ADVERTISEMENT_STATE_PARAMS_SET) == 0){
85459ce6dfa1SMatthias Ringwald             hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_SET_PARAMS;
85469ce6dfa1SMatthias Ringwald         }
85479ce6dfa1SMatthias Ringwald         hci_stack->le_advertisements_todo |= LE_ADVERTISEMENT_TASKS_SET_ADDRESS_SET_0;
85489ce6dfa1SMatthias Ringwald     }
85499ce6dfa1SMatthias Ringwald #endif
85509136bde8SMatthias Ringwald     hci_run();
85519136bde8SMatthias Ringwald }
85529136bde8SMatthias Ringwald 
8553d70217a2SMatthias Ringwald #endif
855445c102fdSMatthias Ringwald 
8555616edd56SMatthias Ringwald uint8_t gap_disconnect(hci_con_handle_t handle){
85565917a5c5S[email protected]     hci_connection_t * conn = hci_connection_for_handle(handle);
85575917a5c5S[email protected]     if (!conn){
85587851196eSmatthias.ringwald         hci_emit_disconnection_complete(handle, 0);
8559616edd56SMatthias Ringwald         return 0;
85605917a5c5S[email protected]     }
85617fd7aa6fSMatthias Ringwald     // ignore if already disconnected
85627fd7aa6fSMatthias Ringwald     if (conn->state == RECEIVED_DISCONNECTION_COMPLETE){
85637fd7aa6fSMatthias Ringwald         return 0;
85647fd7aa6fSMatthias Ringwald     }
85655917a5c5S[email protected]     conn->state = SEND_DISCONNECT;
85665917a5c5S[email protected]     hci_run();
8567616edd56SMatthias Ringwald     return 0;
85684f3229d8S[email protected] }
856904a6ef8cSmatthias.ringwald 
8570228e430cSMatthias Ringwald int gap_read_rssi(hci_con_handle_t con_handle){
8571228e430cSMatthias Ringwald     hci_connection_t * hci_connection = hci_connection_for_handle(con_handle);
8572228e430cSMatthias Ringwald     if (hci_connection == NULL) return 0;
857322df2fe2SMatthias Ringwald     hci_connection->gap_connection_tasks |= GAP_CONNECTION_TASK_READ_RSSI;
8574228e430cSMatthias Ringwald     hci_run();
8575228e430cSMatthias Ringwald     return 1;
8576228e430cSMatthias Ringwald }
8577228e430cSMatthias Ringwald 
8578a1bf5ae7SMatthias Ringwald /**
8579a1bf5ae7SMatthias Ringwald  * @brief Get connection type
8580a1bf5ae7SMatthias Ringwald  * @param con_handle
8581a1bf5ae7SMatthias Ringwald  * @result connection_type
8582a1bf5ae7SMatthias Ringwald  */
8583a1bf5ae7SMatthias Ringwald gap_connection_type_t gap_get_connection_type(hci_con_handle_t connection_handle){
8584a1bf5ae7SMatthias Ringwald     hci_connection_t * conn = hci_connection_for_handle(connection_handle);
8585a1bf5ae7SMatthias Ringwald     if (!conn) return GAP_CONNECTION_INVALID;
8586a1bf5ae7SMatthias Ringwald     switch (conn->address_type){
8587a1bf5ae7SMatthias Ringwald         case BD_ADDR_TYPE_LE_PUBLIC:
8588a1bf5ae7SMatthias Ringwald         case BD_ADDR_TYPE_LE_RANDOM:
8589a1bf5ae7SMatthias Ringwald             return GAP_CONNECTION_LE;
8590a1bf5ae7SMatthias Ringwald         case BD_ADDR_TYPE_SCO:
8591a1bf5ae7SMatthias Ringwald             return GAP_CONNECTION_SCO;
8592f16129ceSMatthias Ringwald         case BD_ADDR_TYPE_ACL:
8593a1bf5ae7SMatthias Ringwald             return GAP_CONNECTION_ACL;
8594a1bf5ae7SMatthias Ringwald         default:
8595a1bf5ae7SMatthias Ringwald             return GAP_CONNECTION_INVALID;
8596a1bf5ae7SMatthias Ringwald     }
8597a1bf5ae7SMatthias Ringwald }
8598a1bf5ae7SMatthias Ringwald 
85992dceb1d6SMatthias Ringwald hci_role_t gap_get_role(hci_con_handle_t connection_handle){
86002dceb1d6SMatthias Ringwald     hci_connection_t * conn = hci_connection_for_handle(connection_handle);
86012dceb1d6SMatthias Ringwald     if (!conn) return HCI_ROLE_INVALID;
86022dceb1d6SMatthias Ringwald     return (hci_role_t) conn->role;
86032dceb1d6SMatthias Ringwald }
86042dceb1d6SMatthias Ringwald 
86052dceb1d6SMatthias Ringwald 
860644f858f3SMatthias Ringwald #ifdef ENABLE_CLASSIC
8607667ba9d1SMatthias Ringwald uint8_t gap_request_role(const bd_addr_t addr, hci_role_t role){
860888a03c8dSMatthias Ringwald     hci_connection_t * conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
860988a03c8dSMatthias Ringwald     if (!conn) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
861088a03c8dSMatthias Ringwald     conn->request_role = role;
861188a03c8dSMatthias Ringwald     hci_run();
8612d04a455eSMatthias Ringwald     return ERROR_CODE_SUCCESS;
861388a03c8dSMatthias Ringwald }
861444f858f3SMatthias Ringwald #endif
861588a03c8dSMatthias Ringwald 
8616a9a4c409SMatthias Ringwald #ifdef ENABLE_BLE
86174f551432SMatthias Ringwald 
8618b45b7749SMilanka 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){
8619b45b7749SMilanka Ringwald     hci_connection_t * conn = hci_connection_for_handle(con_handle);
8620b90f6e0aSMatthias Ringwald     if (!conn) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
8621b90f6e0aSMatthias Ringwald 
8622b90f6e0aSMatthias Ringwald     conn->le_phy_update_all_phys    = all_phys;
8623b90f6e0aSMatthias Ringwald     conn->le_phy_update_tx_phys     = tx_phys;
8624b90f6e0aSMatthias Ringwald     conn->le_phy_update_rx_phys     = rx_phys;
8625b90f6e0aSMatthias Ringwald     conn->le_phy_update_phy_options = phy_options;
8626b90f6e0aSMatthias Ringwald 
8627b90f6e0aSMatthias Ringwald     hci_run();
8628b90f6e0aSMatthias Ringwald 
8629b90f6e0aSMatthias Ringwald     return 0;
8630b90f6e0aSMatthias Ringwald }
8631b90f6e0aSMatthias Ringwald 
8632667ba9d1SMatthias Ringwald static uint8_t hci_whitelist_add(bd_addr_type_t address_type, const bd_addr_t address){
86337a92a9dbSMatthias Ringwald     // check if already in list
86347a92a9dbSMatthias Ringwald     btstack_linked_list_iterator_t it;
86357a92a9dbSMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->le_whitelist);
86367a92a9dbSMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)) {
86377a92a9dbSMatthias Ringwald         whitelist_entry_t *entry = (whitelist_entry_t *) btstack_linked_list_iterator_next(&it);
86387a92a9dbSMatthias Ringwald         if (entry->address_type != address_type) {
86397a92a9dbSMatthias Ringwald             continue;
86407a92a9dbSMatthias Ringwald         }
86417a92a9dbSMatthias Ringwald         if (memcmp(entry->address, address, 6) != 0) {
86427a92a9dbSMatthias Ringwald             continue;
86437a92a9dbSMatthias Ringwald         }
8644caaf5151SMilanka Ringwald 
8645caaf5151SMilanka Ringwald         // if already on controller:
8646caaf5151SMilanka Ringwald         if ((entry->state & LE_WHITELIST_ON_CONTROLLER) != 0){
8647caaf5151SMilanka Ringwald             if ((entry->state & LE_WHITELIST_REMOVE_FROM_CONTROLLER) != 0){
8648caaf5151SMilanka Ringwald                 // drop remove request
8649caaf5151SMilanka Ringwald                 entry->state = LE_WHITELIST_ON_CONTROLLER;
8650caaf5151SMilanka Ringwald                 return ERROR_CODE_SUCCESS;
8651caaf5151SMilanka Ringwald             } else {
8652caaf5151SMilanka Ringwald                 // disallow as already on controller
86537a92a9dbSMatthias Ringwald                 return ERROR_CODE_COMMAND_DISALLOWED;
86547a92a9dbSMatthias Ringwald             }
8655287379ccSMatthias Ringwald         }
8656caaf5151SMilanka Ringwald 
8657caaf5151SMilanka Ringwald         // assume scheduled to add
8658caaf5151SMilanka Ringwald 		return ERROR_CODE_COMMAND_DISALLOWED;
8659caaf5151SMilanka Ringwald     }
8660caaf5151SMilanka Ringwald 
86617a92a9dbSMatthias Ringwald     // alloc and add to list
8662e83201bcSMatthias Ringwald     whitelist_entry_t * entry = btstack_memory_whitelist_entry_get();
8663e83201bcSMatthias Ringwald     if (!entry) return BTSTACK_MEMORY_ALLOC_FAILED;
8664e83201bcSMatthias Ringwald     entry->address_type = address_type;
86656535961aSMatthias Ringwald     (void)memcpy(entry->address, address, 6);
8666e83201bcSMatthias Ringwald     entry->state = LE_WHITELIST_ADD_TO_CONTROLLER;
8667665d90f2SMatthias Ringwald     btstack_linked_list_add(&hci_stack->le_whitelist, (btstack_linked_item_t*) entry);
8668226db5efSMatthias Ringwald     return ERROR_CODE_SUCCESS;
8669ac9c45e0SMatthias Ringwald }
8670ac9c45e0SMatthias Ringwald 
8671667ba9d1SMatthias Ringwald static uint8_t hci_whitelist_remove(bd_addr_type_t address_type, const bd_addr_t address){
8672665d90f2SMatthias Ringwald     btstack_linked_list_iterator_t it;
8673665d90f2SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->le_whitelist);
8674665d90f2SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
8675665d90f2SMatthias Ringwald         whitelist_entry_t * entry = (whitelist_entry_t*) btstack_linked_list_iterator_next(&it);
86767a92a9dbSMatthias Ringwald         if (entry->address_type != address_type) {
86777a92a9dbSMatthias Ringwald             continue;
86787a92a9dbSMatthias Ringwald         }
86797a92a9dbSMatthias Ringwald         if (memcmp(entry->address, address, 6) != 0) {
86807a92a9dbSMatthias Ringwald             continue;
86817a92a9dbSMatthias Ringwald         }
8682e83201bcSMatthias Ringwald         if (entry->state & LE_WHITELIST_ON_CONTROLLER){
8683e83201bcSMatthias Ringwald             // remove from controller if already present
8684e83201bcSMatthias Ringwald             entry->state |= LE_WHITELIST_REMOVE_FROM_CONTROLLER;
8685a3b69fdeSMatthias Ringwald         }  else {
8686226db5efSMatthias Ringwald             // directly remove entry from whitelist
8687665d90f2SMatthias Ringwald             btstack_linked_list_iterator_remove(&it);
8688e83201bcSMatthias Ringwald             btstack_memory_whitelist_entry_free(entry);
8689e83201bcSMatthias Ringwald         }
8690a3b69fdeSMatthias Ringwald         return ERROR_CODE_SUCCESS;
8691a3b69fdeSMatthias Ringwald     }
8692a3b69fdeSMatthias Ringwald     return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
869342ff5ba1SMatthias Ringwald }
869442ff5ba1SMatthias Ringwald 
8695226db5efSMatthias Ringwald static void hci_whitelist_clear(void){
8696665d90f2SMatthias Ringwald     btstack_linked_list_iterator_t it;
8697665d90f2SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->le_whitelist);
8698665d90f2SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
8699665d90f2SMatthias Ringwald         whitelist_entry_t * entry = (whitelist_entry_t*) btstack_linked_list_iterator_next(&it);
8700e83201bcSMatthias Ringwald         if (entry->state & LE_WHITELIST_ON_CONTROLLER){
8701e83201bcSMatthias Ringwald             // remove from controller if already present
8702e83201bcSMatthias Ringwald             entry->state |= LE_WHITELIST_REMOVE_FROM_CONTROLLER;
8703e83201bcSMatthias Ringwald             continue;
8704e83201bcSMatthias Ringwald         }
870591915b0bSMatthias Ringwald         // directly remove entry from whitelist
8706665d90f2SMatthias Ringwald         btstack_linked_list_iterator_remove(&it);
8707e83201bcSMatthias Ringwald         btstack_memory_whitelist_entry_free(entry);
8708e83201bcSMatthias Ringwald     }
8709226db5efSMatthias Ringwald }
8710226db5efSMatthias Ringwald 
8711a3b69fdeSMatthias Ringwald /**
8712a3b69fdeSMatthias Ringwald  * @brief Clear Whitelist
87136b65794dSMilanka Ringwald  * @return 0 if ok
8714a3b69fdeSMatthias Ringwald  */
8715a3b69fdeSMatthias Ringwald uint8_t gap_whitelist_clear(void){
8716a3b69fdeSMatthias Ringwald     hci_whitelist_clear();
8717a3b69fdeSMatthias Ringwald     hci_run();
8718a3b69fdeSMatthias Ringwald     return ERROR_CODE_SUCCESS;
8719a3b69fdeSMatthias Ringwald }
8720a3b69fdeSMatthias Ringwald 
8721a3b69fdeSMatthias Ringwald /**
8722a3b69fdeSMatthias Ringwald  * @brief Add Device to Whitelist
8723a3b69fdeSMatthias Ringwald  * @param address_typ
8724a3b69fdeSMatthias Ringwald  * @param address
87256b65794dSMilanka Ringwald  * @return 0 if ok
8726a3b69fdeSMatthias Ringwald  */
8727667ba9d1SMatthias Ringwald uint8_t gap_whitelist_add(bd_addr_type_t address_type, const bd_addr_t address){
8728a3b69fdeSMatthias Ringwald     uint8_t status = hci_whitelist_add(address_type, address);
8729a3b69fdeSMatthias Ringwald     if (status){
8730a3b69fdeSMatthias Ringwald         return status;
8731a3b69fdeSMatthias Ringwald     }
8732a3b69fdeSMatthias Ringwald     hci_run();
8733a3b69fdeSMatthias Ringwald     return ERROR_CODE_SUCCESS;
8734a3b69fdeSMatthias Ringwald }
8735a3b69fdeSMatthias Ringwald 
8736a3b69fdeSMatthias Ringwald /**
8737a3b69fdeSMatthias Ringwald  * @brief Remove Device from Whitelist
8738a3b69fdeSMatthias Ringwald  * @param address_typ
8739a3b69fdeSMatthias Ringwald  * @param address
87406b65794dSMilanka Ringwald  * @return 0 if ok
8741a3b69fdeSMatthias Ringwald  */
8742667ba9d1SMatthias Ringwald uint8_t gap_whitelist_remove(bd_addr_type_t address_type, const bd_addr_t address){
8743a3b69fdeSMatthias Ringwald     uint8_t status = hci_whitelist_remove(address_type, address);
8744a3b69fdeSMatthias Ringwald     if (status){
8745a3b69fdeSMatthias Ringwald         return status;
8746a3b69fdeSMatthias Ringwald     }
8747a3b69fdeSMatthias Ringwald     hci_run();
8748a3b69fdeSMatthias Ringwald     return ERROR_CODE_SUCCESS;
8749a3b69fdeSMatthias Ringwald }
8750a3b69fdeSMatthias Ringwald 
8751226db5efSMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
8752226db5efSMatthias Ringwald /**
875395e257d9SMatthias Ringwald  * @brief Connect with Whitelist
875495e257d9SMatthias Ringwald  * @note Explicit whitelist management and this connect with whitelist replace deprecated gap_auto_connection_* functions
87556b65794dSMilanka Ringwald  * @return - if ok
875695e257d9SMatthias Ringwald  */
875795e257d9SMatthias Ringwald uint8_t gap_connect_with_whitelist(void){
875895e257d9SMatthias Ringwald     if (hci_stack->le_connecting_request != LE_CONNECTING_IDLE){
875995e257d9SMatthias Ringwald         return ERROR_CODE_COMMAND_DISALLOWED;
876095e257d9SMatthias Ringwald     }
876195e257d9SMatthias Ringwald     hci_stack->le_connecting_request = LE_CONNECTING_WHITELIST;
876295e257d9SMatthias Ringwald     hci_run();
876395e257d9SMatthias Ringwald     return ERROR_CODE_SUCCESS;
876495e257d9SMatthias Ringwald }
876595e257d9SMatthias Ringwald 
876695e257d9SMatthias Ringwald /**
8767226db5efSMatthias Ringwald  * @brief Auto Connection Establishment - Start Connecting to device
8768226db5efSMatthias Ringwald  * @param address_typ
8769226db5efSMatthias Ringwald  * @param address
87706b65794dSMilanka Ringwald  * @return 0 if ok
8771226db5efSMatthias Ringwald  */
8772667ba9d1SMatthias Ringwald uint8_t gap_auto_connection_start(bd_addr_type_t address_type, const bd_addr_t address){
877395e257d9SMatthias Ringwald     if (hci_stack->le_connecting_request == LE_CONNECTING_DIRECT){
8774226db5efSMatthias Ringwald         return ERROR_CODE_COMMAND_DISALLOWED;
8775226db5efSMatthias Ringwald     }
8776226db5efSMatthias Ringwald 
8777226db5efSMatthias Ringwald     uint8_t status = hci_whitelist_add(address_type, address);
877863f2efc9SMatthias Ringwald     if (status == BTSTACK_MEMORY_ALLOC_FAILED) {
8779226db5efSMatthias Ringwald         return status;
8780226db5efSMatthias Ringwald     }
8781226db5efSMatthias Ringwald 
8782226db5efSMatthias Ringwald     hci_stack->le_connecting_request = LE_CONNECTING_WHITELIST;
8783226db5efSMatthias Ringwald 
8784226db5efSMatthias Ringwald     hci_run();
878595e257d9SMatthias Ringwald     return ERROR_CODE_SUCCESS;
8786226db5efSMatthias Ringwald }
8787226db5efSMatthias Ringwald 
8788226db5efSMatthias Ringwald /**
8789226db5efSMatthias Ringwald  * @brief Auto Connection Establishment - Stop Connecting to device
8790226db5efSMatthias Ringwald  * @param address_typ
8791226db5efSMatthias Ringwald  * @param address
87926b65794dSMilanka Ringwald  * @return 0 if ok
8793226db5efSMatthias Ringwald  */
8794667ba9d1SMatthias Ringwald uint8_t gap_auto_connection_stop(bd_addr_type_t address_type, const bd_addr_t address){
879595e257d9SMatthias Ringwald     if (hci_stack->le_connecting_request == LE_CONNECTING_DIRECT){
879695e257d9SMatthias Ringwald         return ERROR_CODE_COMMAND_DISALLOWED;
879795e257d9SMatthias Ringwald     }
879895e257d9SMatthias Ringwald 
8799226db5efSMatthias Ringwald     hci_whitelist_remove(address_type, address);
880095e257d9SMatthias Ringwald     if (btstack_linked_list_empty(&hci_stack->le_whitelist)){
880195e257d9SMatthias Ringwald         hci_stack->le_connecting_request = LE_CONNECTING_IDLE;
880295e257d9SMatthias Ringwald     }
8803226db5efSMatthias Ringwald     hci_run();
8804226db5efSMatthias Ringwald     return 0;
8805226db5efSMatthias Ringwald }
8806226db5efSMatthias Ringwald 
8807226db5efSMatthias Ringwald /**
8808226db5efSMatthias Ringwald  * @brief Auto Connection Establishment - Stop everything
8809226db5efSMatthias Ringwald  * @note  Convenience function to stop all active auto connection attempts
8810226db5efSMatthias Ringwald  */
881195e257d9SMatthias Ringwald uint8_t gap_auto_connection_stop_all(void){
881295e257d9SMatthias Ringwald     if (hci_stack->le_connecting_request == LE_CONNECTING_DIRECT) {
881395e257d9SMatthias Ringwald         return ERROR_CODE_COMMAND_DISALLOWED;
881495e257d9SMatthias Ringwald     }
8815226db5efSMatthias Ringwald     hci_whitelist_clear();
8816226db5efSMatthias Ringwald     hci_stack->le_connecting_request = LE_CONNECTING_IDLE;
8817e83201bcSMatthias Ringwald     hci_run();
881895e257d9SMatthias Ringwald     return ERROR_CODE_SUCCESS;
8819ac9c45e0SMatthias Ringwald }
8820c9db5c21SMilanka Ringwald 
8821b45b7749SMilanka Ringwald uint16_t gap_le_connection_interval(hci_con_handle_t con_handle){
8822b45b7749SMilanka Ringwald     hci_connection_t * conn = hci_connection_for_handle(con_handle);
8823c9db5c21SMilanka Ringwald     if (!conn) return 0;
8824c9db5c21SMilanka Ringwald     return conn->le_connection_interval;
8825c9db5c21SMilanka Ringwald }
8826d70217a2SMatthias Ringwald #endif
88274f551432SMatthias Ringwald #endif
88284f551432SMatthias Ringwald 
882935454696SMatthias Ringwald #ifdef ENABLE_CLASSIC
8830ac9c45e0SMatthias Ringwald /**
8831ff00ed1cSMatthias Ringwald  * @brief Set Extended Inquiry Response data
8832a8c4e5adSMatthias Ringwald  * @param eir_data size HCI_EXTENDED_INQUIRY_RESPONSE_DATA_LEN (240) bytes, is not copied make sure memory is accessible during stack startup
8833ff00ed1cSMatthias Ringwald  * @note has to be done before stack starts up
8834ff00ed1cSMatthias Ringwald  */
8835ff00ed1cSMatthias Ringwald void gap_set_extended_inquiry_response(const uint8_t * data){
8836ff00ed1cSMatthias Ringwald     hci_stack->eir_data = data;
8837baa4881eSMatthias Ringwald     hci_stack->gap_tasks_classic |= GAP_TASK_SET_EIR_DATA;
883859d59ecfSMatthias Ringwald     hci_run();
8839ff00ed1cSMatthias Ringwald }
8840ff00ed1cSMatthias Ringwald 
8841ff00ed1cSMatthias Ringwald /**
8842f5875de5SMatthias Ringwald  * @brief Start GAP Classic Inquiry
8843f5875de5SMatthias Ringwald  * @param duration in 1.28s units
8844f5875de5SMatthias Ringwald  * @return 0 if ok
8845f5875de5SMatthias Ringwald  * @events: GAP_EVENT_INQUIRY_RESULT, GAP_EVENT_INQUIRY_COMPLETE
8846f5875de5SMatthias Ringwald  */
8847f5875de5SMatthias Ringwald int gap_inquiry_start(uint8_t duration_in_1280ms_units){
884899449554SMatthias Ringwald     if (hci_stack->state != HCI_STATE_WORKING) return ERROR_CODE_COMMAND_DISALLOWED;
8849f5875de5SMatthias Ringwald     if (hci_stack->inquiry_state != GAP_INQUIRY_STATE_IDLE) return ERROR_CODE_COMMAND_DISALLOWED;
8850a1df452eSMatthias Ringwald     if ((duration_in_1280ms_units < GAP_INQUIRY_DURATION_MIN) || (duration_in_1280ms_units > GAP_INQUIRY_DURATION_MAX)){
8851f5875de5SMatthias Ringwald         return ERROR_CODE_INVALID_HCI_COMMAND_PARAMETERS;
8852f5875de5SMatthias Ringwald     }
8853f5875de5SMatthias Ringwald     hci_stack->inquiry_state = duration_in_1280ms_units;
885430199e24SMatthias Ringwald     hci_stack->inquiry_max_period_length = 0;
885530199e24SMatthias Ringwald     hci_stack->inquiry_min_period_length = 0;
885630199e24SMatthias Ringwald     hci_run();
885730199e24SMatthias Ringwald     return 0;
885830199e24SMatthias Ringwald }
885930199e24SMatthias Ringwald 
886030199e24SMatthias Ringwald uint8_t gap_inquiry_periodic_start(uint8_t duration, uint16_t max_period_length, uint16_t min_period_length){
886130199e24SMatthias Ringwald     if (hci_stack->state != HCI_STATE_WORKING)                return ERROR_CODE_COMMAND_DISALLOWED;
886230199e24SMatthias Ringwald     if (hci_stack->inquiry_state != GAP_INQUIRY_STATE_IDLE)   return ERROR_CODE_COMMAND_DISALLOWED;
886330199e24SMatthias Ringwald     if (duration < GAP_INQUIRY_DURATION_MIN)                  return ERROR_CODE_INVALID_HCI_COMMAND_PARAMETERS;
886430199e24SMatthias Ringwald     if (duration > GAP_INQUIRY_DURATION_MAX)                  return ERROR_CODE_INVALID_HCI_COMMAND_PARAMETERS;
886530199e24SMatthias Ringwald     if (max_period_length < GAP_INQUIRY_MAX_PERIODIC_LEN_MIN) return ERROR_CODE_INVALID_HCI_COMMAND_PARAMETERS;;
886630199e24SMatthias Ringwald     if (min_period_length < GAP_INQUIRY_MIN_PERIODIC_LEN_MIN) return ERROR_CODE_INVALID_HCI_COMMAND_PARAMETERS;;
886730199e24SMatthias Ringwald 
886830199e24SMatthias Ringwald     hci_stack->inquiry_state = duration;
886930199e24SMatthias Ringwald     hci_stack->inquiry_max_period_length = max_period_length;
887030199e24SMatthias Ringwald     hci_stack->inquiry_min_period_length = min_period_length;
8871f5875de5SMatthias Ringwald     hci_run();
8872f5875de5SMatthias Ringwald     return 0;
8873f5875de5SMatthias Ringwald }
8874f5875de5SMatthias Ringwald 
8875f5875de5SMatthias Ringwald /**
8876f5875de5SMatthias Ringwald  * @brief Stop GAP Classic Inquiry
88776b65794dSMilanka Ringwald  * @return 0 if ok
8878f5875de5SMatthias Ringwald  */
8879f5875de5SMatthias Ringwald int gap_inquiry_stop(void){
8880a1df452eSMatthias Ringwald     if ((hci_stack->inquiry_state >= GAP_INQUIRY_DURATION_MIN) && (hci_stack->inquiry_state <= GAP_INQUIRY_DURATION_MAX)) {
8881f5875de5SMatthias Ringwald         // emit inquiry complete event, before it even started
8882f5875de5SMatthias Ringwald         uint8_t event[] = { GAP_EVENT_INQUIRY_COMPLETE, 1, 0};
8883f5875de5SMatthias Ringwald         hci_emit_event(event, sizeof(event), 1);
8884f5875de5SMatthias Ringwald         return 0;
8885f5875de5SMatthias Ringwald     }
888630199e24SMatthias Ringwald     switch (hci_stack->inquiry_state){
888730199e24SMatthias Ringwald         case GAP_INQUIRY_STATE_ACTIVE:
8888f5875de5SMatthias Ringwald             hci_stack->inquiry_state = GAP_INQUIRY_STATE_W2_CANCEL;
8889f5875de5SMatthias Ringwald             hci_run();
889030199e24SMatthias Ringwald             return ERROR_CODE_SUCCESS;
889130199e24SMatthias Ringwald         case GAP_INQUIRY_STATE_PERIODIC:
889230199e24SMatthias Ringwald             hci_stack->inquiry_state = GAP_INQUIRY_STATE_W2_EXIT_PERIODIC;
889330199e24SMatthias Ringwald             hci_run();
889430199e24SMatthias Ringwald             return ERROR_CODE_SUCCESS;
889530199e24SMatthias Ringwald         default:
889630199e24SMatthias Ringwald             return ERROR_CODE_COMMAND_DISALLOWED;
889730199e24SMatthias Ringwald     }
8898f5875de5SMatthias Ringwald }
8899f5875de5SMatthias Ringwald 
8900496bb884SMatthias Ringwald void gap_inquiry_set_lap(uint32_t lap){
8901496bb884SMatthias Ringwald     hci_stack->inquiry_lap = lap;
8902496bb884SMatthias Ringwald }
8903496bb884SMatthias Ringwald 
89041dc973e7SMatthias Ringwald void gap_inquiry_set_scan_activity(uint16_t inquiry_scan_interval, uint16_t inquiry_scan_window){
8905c0c8a829SMatthias Ringwald     hci_stack->inquiry_scan_interval = inquiry_scan_interval;
8906c0c8a829SMatthias Ringwald     hci_stack->inquiry_scan_window   = inquiry_scan_window;
8907baa4881eSMatthias Ringwald     hci_stack->gap_tasks_classic |= GAP_TASK_WRITE_INQUIRY_SCAN_ACTIVITY;
8908c0c8a829SMatthias Ringwald     hci_run();
8909c0c8a829SMatthias Ringwald }
8910c0c8a829SMatthias Ringwald 
8911b7f1ee76SMatthias Ringwald 
8912b7f1ee76SMatthias Ringwald /**
8913b7f1ee76SMatthias Ringwald  * @brief Remote Name Request
8914b7f1ee76SMatthias Ringwald  * @param addr
8915b7f1ee76SMatthias Ringwald  * @param page_scan_repetition_mode
8916b7f1ee76SMatthias Ringwald  * @param clock_offset only used when bit 15 is set
8917b7f1ee76SMatthias Ringwald  * @events: HCI_EVENT_REMOTE_NAME_REQUEST_COMPLETE
8918b7f1ee76SMatthias Ringwald  */
8919667ba9d1SMatthias Ringwald int gap_remote_name_request(const bd_addr_t addr, uint8_t page_scan_repetition_mode, uint16_t clock_offset){
8920b7f1ee76SMatthias Ringwald     if (hci_stack->remote_name_state != GAP_REMOTE_NAME_STATE_IDLE) return ERROR_CODE_COMMAND_DISALLOWED;
89216535961aSMatthias Ringwald     (void)memcpy(hci_stack->remote_name_addr, addr, 6);
8922b7f1ee76SMatthias Ringwald     hci_stack->remote_name_page_scan_repetition_mode = page_scan_repetition_mode;
8923b7f1ee76SMatthias Ringwald     hci_stack->remote_name_clock_offset = clock_offset;
8924b7f1ee76SMatthias Ringwald     hci_stack->remote_name_state = GAP_REMOTE_NAME_STATE_W2_SEND;
8925b7f1ee76SMatthias Ringwald     hci_run();
8926b7f1ee76SMatthias Ringwald     return 0;
8927b7f1ee76SMatthias Ringwald }
8928b7f1ee76SMatthias Ringwald 
8929667ba9d1SMatthias Ringwald static int gap_pairing_set_state_and_run(const bd_addr_t addr, uint8_t state){
89300a51f88bSMatthias Ringwald     hci_stack->gap_pairing_state = state;
89316535961aSMatthias Ringwald     (void)memcpy(hci_stack->gap_pairing_addr, addr, 6);
89320a51f88bSMatthias Ringwald     hci_run();
89330a51f88bSMatthias Ringwald     return 0;
89340a51f88bSMatthias Ringwald }
89350a51f88bSMatthias Ringwald 
89360a51f88bSMatthias Ringwald /**
8937aad97216SMatthias Ringwald  * @brief Legacy Pairing Pin Code Response for binary data / non-strings
8938aad97216SMatthias Ringwald  * @param addr
8939aad97216SMatthias Ringwald  * @param pin_data
8940aad97216SMatthias Ringwald  * @param pin_len
8941aad97216SMatthias Ringwald  * @return 0 if ok
8942aad97216SMatthias Ringwald  */
8943667ba9d1SMatthias Ringwald int gap_pin_code_response_binary(const bd_addr_t addr, const uint8_t * pin_data, uint8_t pin_len){
8944aad97216SMatthias Ringwald     if (hci_stack->gap_pairing_state != GAP_PAIRING_STATE_IDLE) return ERROR_CODE_COMMAND_DISALLOWED;
8945aad97216SMatthias Ringwald     hci_stack->gap_pairing_input.gap_pairing_pin = pin_data;
8946aad97216SMatthias Ringwald     hci_stack->gap_pairing_pin_len = pin_len;
8947aad97216SMatthias Ringwald     return gap_pairing_set_state_and_run(addr, GAP_PAIRING_STATE_SEND_PIN);
8948aad97216SMatthias Ringwald }
8949aad97216SMatthias Ringwald 
8950aad97216SMatthias Ringwald /**
89510a51f88bSMatthias Ringwald  * @brief Legacy Pairing Pin Code Response
89520a51f88bSMatthias Ringwald  * @param addr
89530a51f88bSMatthias Ringwald  * @param pin
89540a51f88bSMatthias Ringwald  * @return 0 if ok
89550a51f88bSMatthias Ringwald  */
8956667ba9d1SMatthias Ringwald int gap_pin_code_response(const bd_addr_t addr, const char * pin){
89579d78a7ecSMatthias Ringwald     return gap_pin_code_response_binary(addr, (const uint8_t*) pin, (uint8_t) strlen(pin));
89580a51f88bSMatthias Ringwald }
89590a51f88bSMatthias Ringwald 
89600a51f88bSMatthias Ringwald /**
89610a51f88bSMatthias Ringwald  * @brief Abort Legacy Pairing
89620a51f88bSMatthias Ringwald  * @param addr
89630a51f88bSMatthias Ringwald  * @param pin
89640a51f88bSMatthias Ringwald  * @return 0 if ok
89650a51f88bSMatthias Ringwald  */
89660a51f88bSMatthias Ringwald int gap_pin_code_negative(bd_addr_t addr){
8967cd74063aSMatthias Ringwald     if (hci_stack->gap_pairing_state != GAP_PAIRING_STATE_IDLE) return ERROR_CODE_COMMAND_DISALLOWED;
89680a51f88bSMatthias Ringwald     return gap_pairing_set_state_and_run(addr, GAP_PAIRING_STATE_SEND_PIN_NEGATIVE);
89690a51f88bSMatthias Ringwald }
89700a51f88bSMatthias Ringwald 
89710a51f88bSMatthias Ringwald /**
89720a51f88bSMatthias Ringwald  * @brief SSP Passkey Response
89730a51f88bSMatthias Ringwald  * @param addr
89740a51f88bSMatthias Ringwald  * @param passkey
89750a51f88bSMatthias Ringwald  * @return 0 if ok
89760a51f88bSMatthias Ringwald  */
8977667ba9d1SMatthias Ringwald int gap_ssp_passkey_response(const bd_addr_t addr, uint32_t passkey){
8978cd74063aSMatthias Ringwald     if (hci_stack->gap_pairing_state != GAP_PAIRING_STATE_IDLE) return ERROR_CODE_COMMAND_DISALLOWED;
8979d504181aSMatthias Ringwald     hci_stack->gap_pairing_input.gap_pairing_passkey = passkey;
89800a51f88bSMatthias Ringwald     return gap_pairing_set_state_and_run(addr, GAP_PAIRING_STATE_SEND_PASSKEY);
89810a51f88bSMatthias Ringwald }
89820a51f88bSMatthias Ringwald 
89830a51f88bSMatthias Ringwald /**
89840a51f88bSMatthias Ringwald  * @brief Abort SSP Passkey Entry/Pairing
89850a51f88bSMatthias Ringwald  * @param addr
89860a51f88bSMatthias Ringwald  * @param pin
89870a51f88bSMatthias Ringwald  * @return 0 if ok
89880a51f88bSMatthias Ringwald  */
8989667ba9d1SMatthias Ringwald int gap_ssp_passkey_negative(const bd_addr_t addr){
8990cd74063aSMatthias Ringwald     if (hci_stack->gap_pairing_state != GAP_PAIRING_STATE_IDLE) return ERROR_CODE_COMMAND_DISALLOWED;
89910a51f88bSMatthias Ringwald     return gap_pairing_set_state_and_run(addr, GAP_PAIRING_STATE_SEND_PASSKEY_NEGATIVE);
89920a51f88bSMatthias Ringwald }
89930a51f88bSMatthias Ringwald 
89940a51f88bSMatthias Ringwald /**
89950a51f88bSMatthias Ringwald  * @brief Accept SSP Numeric Comparison
89960a51f88bSMatthias Ringwald  * @param addr
89970a51f88bSMatthias Ringwald  * @param passkey
89980a51f88bSMatthias Ringwald  * @return 0 if ok
89990a51f88bSMatthias Ringwald  */
9000667ba9d1SMatthias Ringwald int gap_ssp_confirmation_response(const bd_addr_t addr){
9001cd74063aSMatthias Ringwald     if (hci_stack->gap_pairing_state != GAP_PAIRING_STATE_IDLE) return ERROR_CODE_COMMAND_DISALLOWED;
90020a51f88bSMatthias Ringwald     return gap_pairing_set_state_and_run(addr, GAP_PAIRING_STATE_SEND_CONFIRMATION);
90030a51f88bSMatthias Ringwald }
90040a51f88bSMatthias Ringwald 
90050a51f88bSMatthias Ringwald /**
90060a51f88bSMatthias Ringwald  * @brief Abort SSP Numeric Comparison/Pairing
90070a51f88bSMatthias Ringwald  * @param addr
90080a51f88bSMatthias Ringwald  * @param pin
90090a51f88bSMatthias Ringwald  * @return 0 if ok
90100a51f88bSMatthias Ringwald  */
9011667ba9d1SMatthias Ringwald int gap_ssp_confirmation_negative(const bd_addr_t addr){
9012cd74063aSMatthias Ringwald     if (hci_stack->gap_pairing_state != GAP_PAIRING_STATE_IDLE) return ERROR_CODE_COMMAND_DISALLOWED;
90130a51f88bSMatthias Ringwald     return gap_pairing_set_state_and_run(addr, GAP_PAIRING_STATE_SEND_CONFIRMATION_NEGATIVE);
90140a51f88bSMatthias Ringwald }
90150a51f88bSMatthias Ringwald 
9016308eeaffSMatthias Ringwald #if defined(ENABLE_EXPLICIT_IO_CAPABILITIES_REPLY) || defined(ENABLE_EXPLICIT_LINK_KEY_REPLY)
901744565b0cSMatthias Ringwald static uint8_t gap_set_auth_flag_and_run(const bd_addr_t addr, hci_authentication_flags_t flag){
901844565b0cSMatthias Ringwald     hci_connection_t * conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
901944565b0cSMatthias Ringwald     if (!conn) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
902044565b0cSMatthias Ringwald     connectionSetAuthenticationFlags(conn, flag);
902144565b0cSMatthias Ringwald     hci_run();
902244565b0cSMatthias Ringwald     return ERROR_CODE_SUCCESS;
902344565b0cSMatthias Ringwald }
9024308eeaffSMatthias Ringwald #endif
902544565b0cSMatthias Ringwald 
9026308eeaffSMatthias Ringwald #ifdef ENABLE_EXPLICIT_IO_CAPABILITIES_REPLY
902744565b0cSMatthias Ringwald uint8_t gap_ssp_io_capabilities_response(const bd_addr_t addr){
90287ca4a7edSMatthias Ringwald     return gap_set_auth_flag_and_run(addr, AUTH_FLAG_SEND_IO_CAPABILITIES_REPLY);
902944565b0cSMatthias Ringwald }
903044565b0cSMatthias Ringwald 
903144565b0cSMatthias Ringwald uint8_t gap_ssp_io_capabilities_negative(const bd_addr_t addr){
90327ca4a7edSMatthias Ringwald     return gap_set_auth_flag_and_run(addr, AUTH_FLAG_SEND_IO_CAPABILITIES_NEGATIVE_REPLY);
903344565b0cSMatthias Ringwald }
903444565b0cSMatthias Ringwald #endif
903544565b0cSMatthias Ringwald 
90361849becdSMatthias Ringwald #ifdef ENABLE_CLASSIC_PAIRING_OOB
90371849becdSMatthias Ringwald /**
90381849becdSMatthias Ringwald  * @brief Report Remote OOB Data
90391849becdSMatthias Ringwald  * @param bd_addr
90401849becdSMatthias Ringwald  * @param c_192 Simple Pairing Hash C derived from P-192 public key
90411849becdSMatthias Ringwald  * @param r_192 Simple Pairing Randomizer derived from P-192 public key
90421849becdSMatthias Ringwald  * @param c_256 Simple Pairing Hash C derived from P-256 public key
90431849becdSMatthias Ringwald  * @param r_256 Simple Pairing Randomizer derived from P-256 public key
90441849becdSMatthias Ringwald  */
90451849becdSMatthias 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){
90461849becdSMatthias Ringwald     hci_connection_t * connection = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
90471849becdSMatthias Ringwald     if (connection == NULL) {
90481849becdSMatthias Ringwald         return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
90491849becdSMatthias Ringwald     }
90501849becdSMatthias Ringwald     connection->classic_oob_c_192 = c_192;
90511849becdSMatthias Ringwald     connection->classic_oob_r_192 = r_192;
9052204e8f1dSMatthias Ringwald 
9053204e8f1dSMatthias Ringwald     // ignore P-256 if not supported by us
9054204e8f1dSMatthias Ringwald     if (hci_stack->secure_connections_active){
90551849becdSMatthias Ringwald         connection->classic_oob_c_256 = c_256;
90561849becdSMatthias Ringwald         connection->classic_oob_r_256 = r_256;
9057204e8f1dSMatthias Ringwald     }
9058204e8f1dSMatthias Ringwald 
90591849becdSMatthias Ringwald     return ERROR_CODE_SUCCESS;
90601849becdSMatthias Ringwald }
9061cf01e888SMatthias Ringwald /**
9062cf01e888SMatthias Ringwald  * @brief Generate new OOB data
9063cf01e888SMatthias Ringwald  * @note OOB data will be provided in GAP_EVENT_LOCAL_OOB_DATA and be used in future pairing procedures
9064cf01e888SMatthias Ringwald  */
9065cf01e888SMatthias Ringwald void gap_ssp_generate_oob_data(void){
9066cf01e888SMatthias Ringwald     hci_stack->classic_read_local_oob_data = true;
9067cf01e888SMatthias Ringwald     hci_run();
9068cf01e888SMatthias Ringwald }
9069cf01e888SMatthias Ringwald 
90701849becdSMatthias Ringwald #endif
90711849becdSMatthias Ringwald 
9072308eeaffSMatthias Ringwald #ifdef ENABLE_EXPLICIT_LINK_KEY_REPLY
9073308eeaffSMatthias Ringwald uint8_t gap_send_link_key_response(const bd_addr_t addr, link_key_t link_key, link_key_type_t type){
9074308eeaffSMatthias Ringwald     hci_connection_t * connection = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL);
9075308eeaffSMatthias Ringwald     if (connection == NULL) {
9076308eeaffSMatthias Ringwald         return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
9077308eeaffSMatthias Ringwald     }
9078308eeaffSMatthias Ringwald 
9079308eeaffSMatthias Ringwald     memcpy(connection->link_key, link_key, sizeof(link_key_t));
9080308eeaffSMatthias Ringwald     connection->link_key_type = type;
9081308eeaffSMatthias Ringwald 
9082308eeaffSMatthias Ringwald     return gap_set_auth_flag_and_run(addr, AUTH_FLAG_HANDLE_LINK_KEY_REQUEST);
9083308eeaffSMatthias Ringwald }
9084308eeaffSMatthias Ringwald 
9085308eeaffSMatthias Ringwald #endif // ENABLE_EXPLICIT_LINK_KEY_REPLY
9086f5875de5SMatthias Ringwald /**
9087f6858d14SMatthias Ringwald  * @brief Set inquiry mode: standard, with RSSI, with RSSI + Extended Inquiry Results. Has to be called before power on.
9088f5875de5SMatthias Ringwald  * @param inquiry_mode see bluetooth_defines.h
9089f6858d14SMatthias Ringwald  */
9090b45b7749SMilanka Ringwald void hci_set_inquiry_mode(inquiry_mode_t inquiry_mode){
9091b45b7749SMilanka Ringwald     hci_stack->inquiry_mode = inquiry_mode;
9092f6858d14SMatthias Ringwald }
9093f6858d14SMatthias Ringwald 
9094f6858d14SMatthias Ringwald /**
9095d950d659SMatthias Ringwald  * @brief Configure Voice Setting for use with SCO data in HSP/HFP
9096d950d659SMatthias Ringwald  */
9097d950d659SMatthias Ringwald void hci_set_sco_voice_setting(uint16_t voice_setting){
9098d950d659SMatthias Ringwald     hci_stack->sco_voice_setting = voice_setting;
9099d950d659SMatthias Ringwald }
9100d950d659SMatthias Ringwald 
9101d950d659SMatthias Ringwald /**
9102d950d659SMatthias Ringwald  * @brief Get SCO Voice Setting
9103d950d659SMatthias Ringwald  * @return current voice setting
9104d950d659SMatthias Ringwald  */
91050cb5b971SMatthias Ringwald uint16_t hci_get_sco_voice_setting(void){
9106d950d659SMatthias Ringwald     return hci_stack->sco_voice_setting;
9107d950d659SMatthias Ringwald }
9108d950d659SMatthias Ringwald 
9109400ff5abSMatthias Ringwald static int hci_have_usb_transport(void){
9110400ff5abSMatthias Ringwald     if (!hci_stack->hci_transport) return 0;
9111400ff5abSMatthias Ringwald     const char * transport_name = hci_stack->hci_transport->name;
9112400ff5abSMatthias Ringwald     if (!transport_name) return 0;
9113400ff5abSMatthias Ringwald     return (transport_name[0] == 'H') && (transport_name[1] == '2');
9114400ff5abSMatthias Ringwald }
9115400ff5abSMatthias Ringwald 
9116b3aad8daSMatthias Ringwald /** @brief Get SCO packet length for current SCO Voice setting
9117b3aad8daSMatthias Ringwald  *  @note  Using SCO packets of the exact length is required for USB transfer
9118b3aad8daSMatthias Ringwald  *  @return Length of SCO packets in bytes (not audio frames)
9119b3aad8daSMatthias Ringwald  */
912020dcdd22SMatthias Ringwald uint16_t hci_get_sco_packet_length(void){
912120dcdd22SMatthias Ringwald     uint16_t sco_packet_length = 0;
9122cf119f3bSMatthias Ringwald 
91231e20a53eSMatthias Ringwald #ifdef ENABLE_SCO_OVER_HCI
91246f28d2eeSMatthias Ringwald     // Transparent = mSBC => 1, CVSD with 16-bit samples requires twice as much bytes
912573f498e7SMatthias Ringwald     int multiplier;
912673f498e7SMatthias Ringwald     if (((hci_stack->sco_voice_setting_active & 0x03) != 0x03) &&
912773f498e7SMatthias Ringwald         ((hci_stack->sco_voice_setting_active & 0x20) == 0x20)) {
912873f498e7SMatthias Ringwald         multiplier = 2;
912973f498e7SMatthias Ringwald     } else {
913073f498e7SMatthias Ringwald         multiplier = 1;
913173f498e7SMatthias Ringwald     }
913273f498e7SMatthias Ringwald 
9133cf119f3bSMatthias Ringwald 
9134400ff5abSMatthias Ringwald     if (hci_have_usb_transport()){
9135400ff5abSMatthias Ringwald         // see Core Spec for H2 USB Transfer.
9136cf119f3bSMatthias Ringwald         // 3 byte SCO header + 24 bytes per connection
913752e46257SMatthias Ringwald         int num_sco_connections = btstack_max(1, hci_number_sco_connections());
913852e46257SMatthias Ringwald         sco_packet_length = 3 + 24 * num_sco_connections * multiplier;
9139400ff5abSMatthias Ringwald     } else {
9140400ff5abSMatthias Ringwald         // 3 byte SCO header + SCO packet size over the air (60 bytes)
9141400ff5abSMatthias Ringwald         sco_packet_length = 3 + 60 * multiplier;
9142d966a453SMatthias Ringwald         // assert that it still fits inside an SCO buffer
9143ad915196SMatthias Ringwald         if (sco_packet_length > (hci_stack->sco_data_packet_length + 3)){
9144d966a453SMatthias Ringwald             sco_packet_length = 3 + 60;
9145d966a453SMatthias Ringwald         }
9146400ff5abSMatthias Ringwald     }
9147a3069afeSMatthias Ringwald #endif
91485b7087c7SMatthias Ringwald 
91495b7087c7SMatthias Ringwald #ifdef HAVE_SCO_TRANSPORT
91505b7087c7SMatthias Ringwald     // Transparent = mSBC => 1, CVSD with 16-bit samples requires twice as much bytes
91511e20a53eSMatthias Ringwald     int multiplier = ((hci_stack->sco_voice_setting_active & 0x03) == 0x03) ? 1 : 2;
91525b7087c7SMatthias Ringwald     sco_packet_length = 3 + 60 * multiplier;
91535b7087c7SMatthias Ringwald #endif
9154a3069afeSMatthias Ringwald     return sco_packet_length;
9155b3aad8daSMatthias Ringwald }
9156b3aad8daSMatthias Ringwald 
9157c4c88f1bSJakob Krantz /**
9158c4c88f1bSJakob Krantz * @brief Sets the master/slave policy
9159c4c88f1bSJakob Krantz * @param policy (0: attempt to become master, 1: let connecting device decide)
9160c4c88f1bSJakob Krantz */
9161c4c88f1bSJakob Krantz void hci_set_master_slave_policy(uint8_t policy){
9162c4c88f1bSJakob Krantz     hci_stack->master_slave_policy = policy;
9163c4c88f1bSJakob Krantz }
9164c4c88f1bSJakob Krantz 
9165c4c88f1bSJakob Krantz #endif
9166ec111c8bSMatthias Ringwald 
9167ec111c8bSMatthias Ringwald HCI_STATE hci_get_state(void){
9168ec111c8bSMatthias Ringwald     return hci_stack->state;
9169ec111c8bSMatthias Ringwald }
9170ec111c8bSMatthias Ringwald 
917107e010b6SMilanka Ringwald #ifdef ENABLE_CLASSIC
91725e91d96cSMatthias Ringwald void gap_register_classic_connection_filter(int (*accept_callback)(bd_addr_t addr, hci_link_type_t link_type)){
917307e010b6SMilanka Ringwald     hci_stack->gap_classic_accept_callback = accept_callback;
917407e010b6SMilanka Ringwald }
917507e010b6SMilanka Ringwald #endif
9176ec111c8bSMatthias Ringwald 
9177d950d659SMatthias Ringwald /**
9178d23838ecSMatthias Ringwald  * @brief Set callback for Bluetooth Hardware Error
9179d23838ecSMatthias Ringwald  */
9180c2e1fa60SMatthias Ringwald void hci_set_hardware_error_callback(void (*fn)(uint8_t error)){
9181d23838ecSMatthias Ringwald     hci_stack->hardware_error_callback = fn;
9182d23838ecSMatthias Ringwald }
9183d23838ecSMatthias Ringwald 
918471de195eSMatthias Ringwald void hci_disconnect_all(void){
9185665d90f2SMatthias Ringwald     btstack_linked_list_iterator_t it;
9186665d90f2SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->connections);
9187665d90f2SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
9188665d90f2SMatthias Ringwald         hci_connection_t * con = (hci_connection_t*) btstack_linked_list_iterator_next(&it);
918904a6ef8cSmatthias.ringwald         if (con->state == SENT_DISCONNECT) continue;
919004a6ef8cSmatthias.ringwald         con->state = SEND_DISCONNECT;
919104a6ef8cSmatthias.ringwald     }
9192d31fba26S[email protected]     hci_run();
919304a6ef8cSmatthias.ringwald }
919433373e40SMatthias Ringwald 
919533373e40SMatthias Ringwald uint16_t hci_get_manufacturer(void){
919633373e40SMatthias Ringwald     return hci_stack->manufacturer;
919733373e40SMatthias Ringwald }
91989c6e867eSMatthias Ringwald 
91993e329ddfSandryblack #ifdef ENABLE_BLE
92009c6e867eSMatthias Ringwald static sm_connection_t * sm_get_connection_for_handle(hci_con_handle_t con_handle){
92019c6e867eSMatthias Ringwald     hci_connection_t * hci_con = hci_connection_for_handle(con_handle);
92029c6e867eSMatthias Ringwald     if (!hci_con) return NULL;
92039c6e867eSMatthias Ringwald     return &hci_con->sm_connection;
92049c6e867eSMatthias Ringwald }
92059c6e867eSMatthias Ringwald 
92069c6e867eSMatthias Ringwald // extracted from sm.c to allow enabling of l2cap le data channels without adding sm.c to the build
92079c6e867eSMatthias Ringwald // without sm.c default values from create_connection_for_bd_addr_and_type() resulg in non-encrypted, not-authenticated
92086a79f6baSMatthias Ringwald #endif
92099c6e867eSMatthias Ringwald 
92106d105c71SMatthias Ringwald uint8_t gap_encryption_key_size(hci_con_handle_t con_handle){
9211c5fb5ca4SMatthias Ringwald     hci_connection_t * hci_connection = hci_connection_for_handle(con_handle);
9212c5fb5ca4SMatthias Ringwald     if (hci_connection == NULL) return 0;
9213c5fb5ca4SMatthias Ringwald     if (hci_is_le_connection(hci_connection)){
92146a79f6baSMatthias Ringwald #ifdef ENABLE_BLE
9215c5fb5ca4SMatthias Ringwald         sm_connection_t * sm_conn = &hci_connection->sm_connection;
9216c5fb5ca4SMatthias Ringwald         if (sm_conn->sm_connection_encrypted) {
92179c6e867eSMatthias Ringwald             return sm_conn->sm_actual_encryption_key_size;
92189c6e867eSMatthias Ringwald         }
92196a79f6baSMatthias Ringwald #endif
92206a79f6baSMatthias Ringwald     } else {
9221c5fb5ca4SMatthias Ringwald #ifdef ENABLE_CLASSIC
92228daf94bcSMatthias Ringwald         if ((hci_connection->authentication_flags & AUTH_FLAG_CONNECTION_ENCRYPTED)){
9223c5fb5ca4SMatthias Ringwald             return hci_connection->encryption_key_size;
9224c5fb5ca4SMatthias Ringwald         }
9225c5fb5ca4SMatthias Ringwald #endif
92266a79f6baSMatthias Ringwald     }
9227c5fb5ca4SMatthias Ringwald     return 0;
9228c5fb5ca4SMatthias Ringwald }
92299c6e867eSMatthias Ringwald 
9230ff3f1026SMatthias Ringwald bool gap_authenticated(hci_con_handle_t con_handle){
9231c5fb5ca4SMatthias Ringwald     hci_connection_t * hci_connection = hci_connection_for_handle(con_handle);
9232ff3f1026SMatthias Ringwald     if (hci_connection == NULL) return false;
92335f3981bfSMatthias Ringwald 
9234c5fb5ca4SMatthias Ringwald     switch (hci_connection->address_type){
92356a79f6baSMatthias Ringwald #ifdef ENABLE_BLE
92365f3981bfSMatthias Ringwald         case BD_ADDR_TYPE_LE_PUBLIC:
92375f3981bfSMatthias Ringwald         case BD_ADDR_TYPE_LE_RANDOM:
9238c5fb5ca4SMatthias Ringwald             if (hci_connection->sm_connection.sm_connection_encrypted == 0) return 0; // unencrypted connection cannot be authenticated
9239ff3f1026SMatthias Ringwald             return hci_connection->sm_connection.sm_connection_authenticated != 0;
92406a79f6baSMatthias Ringwald #endif
924159a1a47aSMatthias Ringwald #ifdef ENABLE_CLASSIC
92425f3981bfSMatthias Ringwald         case BD_ADDR_TYPE_SCO:
9243f16129ceSMatthias Ringwald         case BD_ADDR_TYPE_ACL:
9244ff3f1026SMatthias Ringwald             return gap_authenticated_for_link_key_type(hci_connection->link_key_type);
924559a1a47aSMatthias Ringwald #endif
92465f3981bfSMatthias Ringwald         default:
9247ff3f1026SMatthias Ringwald             return false;
92485f3981bfSMatthias Ringwald     }
92499c6e867eSMatthias Ringwald }
92509c6e867eSMatthias Ringwald 
9251f461b3dfSMatthias Ringwald bool gap_secure_connection(hci_con_handle_t con_handle){
9252c5fb5ca4SMatthias Ringwald     hci_connection_t * hci_connection = hci_connection_for_handle(con_handle);
9253c5fb5ca4SMatthias Ringwald     if (hci_connection == NULL) return 0;
92548b35e16aSMatthias Ringwald 
9255c5fb5ca4SMatthias Ringwald     switch (hci_connection->address_type){
92566a79f6baSMatthias Ringwald #ifdef ENABLE_BLE
92578b35e16aSMatthias Ringwald         case BD_ADDR_TYPE_LE_PUBLIC:
92588b35e16aSMatthias Ringwald         case BD_ADDR_TYPE_LE_RANDOM:
9259f461b3dfSMatthias Ringwald             if (hci_connection->sm_connection.sm_connection_encrypted == 0) return false; // unencrypted connection cannot be authenticated
9260f461b3dfSMatthias Ringwald             return hci_connection->sm_connection.sm_connection_sc != 0;
92616a79f6baSMatthias Ringwald #endif
926259a1a47aSMatthias Ringwald #ifdef ENABLE_CLASSIC
92638b35e16aSMatthias Ringwald         case BD_ADDR_TYPE_SCO:
9264f16129ceSMatthias Ringwald         case BD_ADDR_TYPE_ACL:
9265f461b3dfSMatthias Ringwald             return gap_secure_connection_for_link_key_type(hci_connection->link_key_type);
926659a1a47aSMatthias Ringwald #endif
92678b35e16aSMatthias Ringwald         default:
9268f461b3dfSMatthias Ringwald             return false;
92698b35e16aSMatthias Ringwald     }
9270f1dfbe18SMatthias Ringwald }
9271f1dfbe18SMatthias Ringwald 
92721e122704SMatthias Ringwald bool gap_bonded(hci_con_handle_t con_handle){
92731e122704SMatthias Ringwald 	hci_connection_t * hci_connection = hci_connection_for_handle(con_handle);
92741e122704SMatthias Ringwald 	if (hci_connection == NULL) return 0;
92751e122704SMatthias Ringwald 
927648f33f37SMatthias Ringwald #ifdef ENABLE_CLASSIC
92771e122704SMatthias Ringwald 	link_key_t link_key;
92781e122704SMatthias Ringwald 	link_key_type_t link_key_type;
927948f33f37SMatthias Ringwald #endif
92801e122704SMatthias Ringwald 	switch (hci_connection->address_type){
92816a79f6baSMatthias Ringwald #ifdef ENABLE_BLE
92821e122704SMatthias Ringwald 		case BD_ADDR_TYPE_LE_PUBLIC:
92831e122704SMatthias Ringwald 		case BD_ADDR_TYPE_LE_RANDOM:
92841e122704SMatthias Ringwald 			return hci_connection->sm_connection.sm_le_db_index >= 0;
92856a79f6baSMatthias Ringwald #endif
92861e122704SMatthias Ringwald #ifdef ENABLE_CLASSIC
92871e122704SMatthias Ringwald 		case BD_ADDR_TYPE_SCO:
92881e122704SMatthias Ringwald 		case BD_ADDR_TYPE_ACL:
92891e122704SMatthias Ringwald 			return hci_stack->link_key_db && hci_stack->link_key_db->get_link_key(hci_connection->address, link_key, &link_key_type);
92901e122704SMatthias Ringwald #endif
92911e122704SMatthias Ringwald 		default:
92921e122704SMatthias Ringwald 			return false;
92931e122704SMatthias Ringwald 	}
92941e122704SMatthias Ringwald }
92951e122704SMatthias Ringwald 
92966a79f6baSMatthias Ringwald #ifdef ENABLE_BLE
92979c6e867eSMatthias Ringwald authorization_state_t gap_authorization_state(hci_con_handle_t con_handle){
92989c6e867eSMatthias Ringwald     sm_connection_t * sm_conn = sm_get_connection_for_handle(con_handle);
92999c6e867eSMatthias Ringwald     if (!sm_conn) return AUTHORIZATION_UNKNOWN;     // wrong connection
93009c6e867eSMatthias Ringwald     if (!sm_conn->sm_connection_encrypted)               return AUTHORIZATION_UNKNOWN; // unencrypted connection cannot be authorized
93019c6e867eSMatthias Ringwald     if (!sm_conn->sm_connection_authenticated)           return AUTHORIZATION_UNKNOWN; // unauthenticatd connection cannot be authorized
93029c6e867eSMatthias Ringwald     return sm_conn->sm_connection_authorization_state;
93039c6e867eSMatthias Ringwald }
93049c6e867eSMatthias Ringwald #endif
9305f8ee3071SMatthias Ringwald 
9306f8ee3071SMatthias Ringwald #ifdef ENABLE_CLASSIC
9307f8ee3071SMatthias 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){
9308f8ee3071SMatthias Ringwald     hci_connection_t * conn = hci_connection_for_handle(con_handle);
93097f839e2cSMatthias Ringwald     if (!conn) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
9310f8ee3071SMatthias Ringwald     conn->sniff_min_interval = sniff_min_interval;
9311f8ee3071SMatthias Ringwald     conn->sniff_max_interval = sniff_max_interval;
9312f8ee3071SMatthias Ringwald     conn->sniff_attempt = sniff_attempt;
9313f8ee3071SMatthias Ringwald     conn->sniff_timeout = sniff_timeout;
9314f8ee3071SMatthias Ringwald     hci_run();
9315f8ee3071SMatthias Ringwald     return 0;
9316f8ee3071SMatthias Ringwald }
9317f8ee3071SMatthias Ringwald 
9318f8ee3071SMatthias Ringwald /**
9319f8ee3071SMatthias Ringwald  * @brief Exit Sniff mode
9320f8ee3071SMatthias Ringwald  * @param con_handle
9321f8ee3071SMatthias Ringwald  @ @return 0 if ok
9322f8ee3071SMatthias Ringwald  */
9323f8ee3071SMatthias Ringwald uint8_t gap_sniff_mode_exit(hci_con_handle_t con_handle){
9324f8ee3071SMatthias Ringwald     hci_connection_t * conn = hci_connection_for_handle(con_handle);
93257f839e2cSMatthias Ringwald     if (!conn) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
9326f8ee3071SMatthias Ringwald     conn->sniff_min_interval = 0xffff;
9327f8ee3071SMatthias Ringwald     hci_run();
9328f8ee3071SMatthias Ringwald     return 0;
9329f8ee3071SMatthias Ringwald }
9330bea424a5SMatthias Ringwald 
9331140c0557SMatthias 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){
9332140c0557SMatthias Ringwald     hci_connection_t * conn = hci_connection_for_handle(con_handle);
93337f839e2cSMatthias Ringwald     if (!conn) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
9334140c0557SMatthias Ringwald     conn->sniff_subrating_max_latency = max_latency;
9335140c0557SMatthias Ringwald     conn->sniff_subrating_min_remote_timeout = min_remote_timeout;
9336140c0557SMatthias Ringwald     conn->sniff_subrating_min_local_timeout = min_local_timeout;
9337140c0557SMatthias Ringwald     hci_run();
9338dc8d5bd3SMatthias Ringwald     return ERROR_CODE_SUCCESS;
9339140c0557SMatthias Ringwald }
9340140c0557SMatthias Ringwald 
9341278ff8a9SMatthias 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){
9342278ff8a9SMatthias Ringwald     hci_connection_t * conn = hci_connection_for_handle(con_handle);
93437f839e2cSMatthias Ringwald     if (!conn) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
9344278ff8a9SMatthias Ringwald     conn->qos_service_type = service_type;
9345278ff8a9SMatthias Ringwald     conn->qos_token_rate = token_rate;
9346278ff8a9SMatthias Ringwald     conn->qos_peak_bandwidth = peak_bandwidth;
9347278ff8a9SMatthias Ringwald     conn->qos_latency = latency;
9348278ff8a9SMatthias Ringwald     conn->qos_delay_variation = delay_variation;
9349278ff8a9SMatthias Ringwald     hci_run();
9350278ff8a9SMatthias Ringwald     return ERROR_CODE_SUCCESS;
9351278ff8a9SMatthias Ringwald }
9352278ff8a9SMatthias Ringwald 
9353bea424a5SMatthias Ringwald void gap_set_page_scan_activity(uint16_t page_scan_interval, uint16_t page_scan_window){
9354bea424a5SMatthias Ringwald     hci_stack->new_page_scan_interval = page_scan_interval;
9355bea424a5SMatthias Ringwald     hci_stack->new_page_scan_window = page_scan_window;
9356baa4881eSMatthias Ringwald     hci_stack->gap_tasks_classic |= GAP_TASK_WRITE_PAGE_SCAN_ACTIVITY;
9357bea424a5SMatthias Ringwald     hci_run();
9358bea424a5SMatthias Ringwald }
9359bea424a5SMatthias Ringwald 
9360bea424a5SMatthias Ringwald void gap_set_page_scan_type(page_scan_type_t page_scan_type){
9361bea424a5SMatthias Ringwald     hci_stack->new_page_scan_type = (uint8_t) page_scan_type;
9362baa4881eSMatthias Ringwald     hci_stack->gap_tasks_classic |= GAP_TASK_WRITE_PAGE_SCAN_TYPE;
9363bea424a5SMatthias Ringwald     hci_run();
9364bea424a5SMatthias Ringwald }
9365bea424a5SMatthias Ringwald 
936632a12730SMatthias Ringwald void gap_set_page_timeout(uint16_t page_timeout){
936732a12730SMatthias Ringwald     hci_stack->page_timeout = page_timeout;
9368baa4881eSMatthias Ringwald     hci_stack->gap_tasks_classic |= GAP_TASK_WRITE_PAGE_TIMEOUT;
936932a12730SMatthias Ringwald     hci_run();
937032a12730SMatthias Ringwald }
937132a12730SMatthias Ringwald 
9372f8ee3071SMatthias Ringwald #endif
9373beceeddeSMatthias Ringwald 
937421debf25SMatthias Ringwald #ifdef ENABLE_LE_PRIVACY_ADDRESS_RESOLUTION
937521debf25SMatthias Ringwald void hci_load_le_device_db_entry_into_resolving_list(uint16_t le_device_db_index){
937621debf25SMatthias Ringwald     if (le_device_db_index >= MAX_NUM_RESOLVING_LIST_ENTRIES) return;
937721debf25SMatthias Ringwald     if (le_device_db_index >= le_device_db_max_count()) return;
937821debf25SMatthias Ringwald     uint8_t offset = le_device_db_index >> 3;
937921debf25SMatthias Ringwald     uint8_t mask = 1 << (le_device_db_index & 7);
938002b02cffSMatthias Ringwald     hci_stack->le_resolving_list_add_entries[offset] |= mask;
9381e8ca66c6SMatthias Ringwald     hci_stack->le_resolving_list_set_privacy_mode[offset] |= mask;
938221debf25SMatthias Ringwald     if (hci_stack->le_resolving_list_state == LE_RESOLVING_LIST_DONE){
938302b02cffSMatthias Ringwald     	// note: go back to remove entries, otherwise, a remove + add will skip the add
93845f3ccd83SMatthias Ringwald         hci_stack->le_resolving_list_state = LE_RESOLVING_LIST_UPDATES_ENTRIES;
938502b02cffSMatthias Ringwald     }
938602b02cffSMatthias Ringwald }
938702b02cffSMatthias Ringwald 
938802b02cffSMatthias Ringwald void hci_remove_le_device_db_entry_from_resolving_list(uint16_t le_device_db_index){
938902b02cffSMatthias Ringwald 	if (le_device_db_index >= MAX_NUM_RESOLVING_LIST_ENTRIES) return;
939002b02cffSMatthias Ringwald 	if (le_device_db_index >= le_device_db_max_count()) return;
939102b02cffSMatthias Ringwald 	uint8_t offset = le_device_db_index >> 3;
939202b02cffSMatthias Ringwald 	uint8_t mask = 1 << (le_device_db_index & 7);
939302b02cffSMatthias Ringwald 	hci_stack->le_resolving_list_remove_entries[offset] |= mask;
939402b02cffSMatthias Ringwald 	if (hci_stack->le_resolving_list_state == LE_RESOLVING_LIST_DONE){
93955f3ccd83SMatthias Ringwald 		hci_stack->le_resolving_list_state = LE_RESOLVING_LIST_UPDATES_ENTRIES;
939621debf25SMatthias Ringwald 	}
939721debf25SMatthias Ringwald }
9398cf38a091SMatthias Ringwald 
9399cf38a091SMatthias Ringwald uint8_t gap_load_resolving_list_from_le_device_db(void){
94001ffa425cSMatthias Ringwald     if (hci_command_supported(SUPPORTED_HCI_COMMAND_LE_SET_ADDRESS_RESOLUTION_ENABLE) == false){
9401cf38a091SMatthias Ringwald 		return ERROR_CODE_UNSUPPORTED_FEATURE_OR_PARAMETER_VALUE;
9402cf38a091SMatthias Ringwald 	}
9403cf38a091SMatthias Ringwald 	if (hci_stack->le_resolving_list_state != LE_RESOLVING_LIST_SEND_ENABLE_ADDRESS_RESOLUTION){
9404cf38a091SMatthias Ringwald 		// restart le resolving list update
9405cf38a091SMatthias Ringwald 		hci_stack->le_resolving_list_state = LE_RESOLVING_LIST_READ_SIZE;
9406cf38a091SMatthias Ringwald 	}
9407cf38a091SMatthias Ringwald 	return ERROR_CODE_SUCCESS;
9408cf38a091SMatthias Ringwald }
9409c3d19a30SMatthias Ringwald 
9410c3d19a30SMatthias Ringwald void gap_set_peer_privacy_mode(le_privacy_mode_t privacy_mode ){
9411c3d19a30SMatthias Ringwald     hci_stack->le_privacy_mode = privacy_mode;
9412c3d19a30SMatthias Ringwald }
941321debf25SMatthias Ringwald #endif
941421debf25SMatthias Ringwald 
9415f40c73b4SMatthias Ringwald #ifdef ENABLE_BLE
9416f40c73b4SMatthias Ringwald #ifdef ENABLE_LE_CENTRAL
9417f40c73b4SMatthias Ringwald #ifdef ENABLE_LE_EXTENDED_ADVERTISING
9418f40c73b4SMatthias Ringwald 
9419f40c73b4SMatthias Ringwald static uint8_t hci_periodic_advertiser_list_add(bd_addr_type_t address_type, const bd_addr_t address, uint8_t advertising_sid){
9420f40c73b4SMatthias Ringwald     // check if already in list
9421f40c73b4SMatthias Ringwald     btstack_linked_list_iterator_t it;
9422f40c73b4SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->le_periodic_advertiser_list);
9423f40c73b4SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)) {
9424f40c73b4SMatthias Ringwald         periodic_advertiser_list_entry_t *entry = (periodic_advertiser_list_entry_t *) btstack_linked_list_iterator_next(&it);
9425f40c73b4SMatthias Ringwald         if (entry->sid != advertising_sid) {
9426f40c73b4SMatthias Ringwald             continue;
9427f40c73b4SMatthias Ringwald         }
9428f40c73b4SMatthias Ringwald         if (entry->address_type != address_type) {
9429f40c73b4SMatthias Ringwald             continue;
9430f40c73b4SMatthias Ringwald         }
9431f40c73b4SMatthias Ringwald         if (memcmp(entry->address, address, 6) != 0) {
9432f40c73b4SMatthias Ringwald             continue;
9433f40c73b4SMatthias Ringwald         }
9434f40c73b4SMatthias Ringwald         // disallow if already scheduled to add
9435f40c73b4SMatthias Ringwald         if ((entry->state & LE_PERIODIC_ADVERTISER_LIST_ENTRY_ADD_TO_CONTROLLER) != 0){
9436f40c73b4SMatthias Ringwald             return ERROR_CODE_COMMAND_DISALLOWED;
9437f40c73b4SMatthias Ringwald         }
9438f40c73b4SMatthias Ringwald         // still on controller, but scheduled to remove -> re-add
9439f40c73b4SMatthias Ringwald         entry->state |= LE_PERIODIC_ADVERTISER_LIST_ENTRY_ADD_TO_CONTROLLER;
9440f40c73b4SMatthias Ringwald         return ERROR_CODE_SUCCESS;
9441f40c73b4SMatthias Ringwald     }
9442f40c73b4SMatthias Ringwald     // alloc and add to list
9443f40c73b4SMatthias Ringwald     periodic_advertiser_list_entry_t * entry = btstack_memory_periodic_advertiser_list_entry_get();
9444f40c73b4SMatthias Ringwald     if (!entry) return BTSTACK_MEMORY_ALLOC_FAILED;
9445f40c73b4SMatthias Ringwald     entry->sid = advertising_sid;
9446f40c73b4SMatthias Ringwald     entry->address_type = address_type;
9447f40c73b4SMatthias Ringwald     (void)memcpy(entry->address, address, 6);
9448f40c73b4SMatthias Ringwald     entry->state = LE_PERIODIC_ADVERTISER_LIST_ENTRY_ADD_TO_CONTROLLER;
9449f40c73b4SMatthias Ringwald     btstack_linked_list_add(&hci_stack->le_periodic_advertiser_list, (btstack_linked_item_t*) entry);
9450f40c73b4SMatthias Ringwald     return ERROR_CODE_SUCCESS;
9451f40c73b4SMatthias Ringwald }
9452f40c73b4SMatthias Ringwald 
9453f40c73b4SMatthias Ringwald static uint8_t hci_periodic_advertiser_list_remove(bd_addr_type_t address_type, const bd_addr_t address, uint8_t advertising_sid){
9454f40c73b4SMatthias Ringwald     btstack_linked_list_iterator_t it;
9455f40c73b4SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->le_periodic_advertiser_list);
9456f40c73b4SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
9457f40c73b4SMatthias Ringwald         periodic_advertiser_list_entry_t * entry = (periodic_advertiser_list_entry_t*) btstack_linked_list_iterator_next(&it);
9458f40c73b4SMatthias Ringwald         if (entry->sid != advertising_sid) {
9459f40c73b4SMatthias Ringwald             continue;
9460f40c73b4SMatthias Ringwald         }
9461f40c73b4SMatthias Ringwald         if (entry->address_type != address_type) {
9462f40c73b4SMatthias Ringwald             continue;
9463f40c73b4SMatthias Ringwald         }
9464f40c73b4SMatthias Ringwald         if (memcmp(entry->address, address, 6) != 0) {
9465f40c73b4SMatthias Ringwald             continue;
9466f40c73b4SMatthias Ringwald         }
9467f40c73b4SMatthias Ringwald         if (entry->state & LE_PERIODIC_ADVERTISER_LIST_ENTRY_ON_CONTROLLER){
9468f40c73b4SMatthias Ringwald             // remove from controller if already present
9469f40c73b4SMatthias Ringwald             entry->state |= LE_PERIODIC_ADVERTISER_LIST_ENTRY_REMOVE_FROM_CONTROLLER;
9470f40c73b4SMatthias Ringwald         }  else {
9471f40c73b4SMatthias Ringwald             // directly remove entry from whitelist
9472f40c73b4SMatthias Ringwald             btstack_linked_list_iterator_remove(&it);
9473f40c73b4SMatthias Ringwald             btstack_memory_periodic_advertiser_list_entry_free(entry);
9474f40c73b4SMatthias Ringwald         }
9475f40c73b4SMatthias Ringwald         return ERROR_CODE_SUCCESS;
9476f40c73b4SMatthias Ringwald     }
9477f40c73b4SMatthias Ringwald     return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
9478f40c73b4SMatthias Ringwald }
9479f40c73b4SMatthias Ringwald 
9480f40c73b4SMatthias Ringwald static void hci_periodic_advertiser_list_clear(void){
9481f40c73b4SMatthias Ringwald     btstack_linked_list_iterator_t it;
9482f40c73b4SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->le_periodic_advertiser_list);
9483f40c73b4SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
9484f40c73b4SMatthias Ringwald         periodic_advertiser_list_entry_t * entry = (periodic_advertiser_list_entry_t*) btstack_linked_list_iterator_next(&it);
9485f40c73b4SMatthias Ringwald         if (entry->state & LE_PERIODIC_ADVERTISER_LIST_ENTRY_ON_CONTROLLER){
9486f40c73b4SMatthias Ringwald             // remove from controller if already present
9487f40c73b4SMatthias Ringwald             entry->state |= LE_PERIODIC_ADVERTISER_LIST_ENTRY_REMOVE_FROM_CONTROLLER;
9488f40c73b4SMatthias Ringwald             continue;
9489f40c73b4SMatthias Ringwald         }
9490f40c73b4SMatthias Ringwald         // directly remove entry from whitelist
9491f40c73b4SMatthias Ringwald         btstack_linked_list_iterator_remove(&it);
9492f40c73b4SMatthias Ringwald         btstack_memory_periodic_advertiser_list_entry_free(entry);
9493f40c73b4SMatthias Ringwald     }
9494f40c73b4SMatthias Ringwald }
9495f40c73b4SMatthias Ringwald 
9496f40c73b4SMatthias Ringwald uint8_t gap_periodic_advertiser_list_clear(void){
9497f40c73b4SMatthias Ringwald     hci_periodic_advertiser_list_clear();
9498f40c73b4SMatthias Ringwald     hci_run();
9499f40c73b4SMatthias Ringwald     return ERROR_CODE_SUCCESS;
9500f40c73b4SMatthias Ringwald }
9501f40c73b4SMatthias Ringwald 
9502f40c73b4SMatthias Ringwald uint8_t gap_periodic_advertiser_list_add(bd_addr_type_t address_type, const bd_addr_t address, uint8_t advertising_sid){
9503f40c73b4SMatthias Ringwald     uint8_t status = hci_periodic_advertiser_list_add(address_type, address, advertising_sid);
9504f40c73b4SMatthias Ringwald     if (status){
9505f40c73b4SMatthias Ringwald         return status;
9506f40c73b4SMatthias Ringwald     }
9507f40c73b4SMatthias Ringwald     hci_run();
9508f40c73b4SMatthias Ringwald     return ERROR_CODE_SUCCESS;
9509f40c73b4SMatthias Ringwald }
9510f40c73b4SMatthias Ringwald 
9511f40c73b4SMatthias Ringwald uint8_t gap_periodic_advertiser_list_remove(bd_addr_type_t address_type, const bd_addr_t address, uint8_t advertising_sid){
9512f40c73b4SMatthias Ringwald     uint8_t status = hci_periodic_advertiser_list_remove(address_type, address, advertising_sid);
9513f40c73b4SMatthias Ringwald     if (status){
9514f40c73b4SMatthias Ringwald         return status;
9515f40c73b4SMatthias Ringwald     }
9516f40c73b4SMatthias Ringwald     hci_run();
9517f40c73b4SMatthias Ringwald     return ERROR_CODE_SUCCESS;
9518f40c73b4SMatthias Ringwald }
95194bafedd5SMatthias Ringwald 
95204bafedd5SMatthias Ringwald uint8_t gap_periodic_advertising_create_sync(uint8_t options, uint8_t advertising_sid, bd_addr_type_t advertiser_address_type,
95214bafedd5SMatthias Ringwald                                              bd_addr_t advertiser_address, uint16_t skip, uint16_t sync_timeout, uint8_t sync_cte_type){
95224bafedd5SMatthias Ringwald     // abort if already active
95234bafedd5SMatthias Ringwald     if (hci_stack->le_periodic_sync_request != LE_CONNECTING_IDLE) {
95244bafedd5SMatthias Ringwald         return ERROR_CODE_COMMAND_DISALLOWED;
95254bafedd5SMatthias Ringwald     }
95264bafedd5SMatthias Ringwald     // store request
95274bafedd5SMatthias Ringwald     hci_stack->le_periodic_sync_request = ((options & 0) != 0) ? LE_CONNECTING_WHITELIST : LE_CONNECTING_DIRECT;
95284bafedd5SMatthias Ringwald     hci_stack->le_periodic_sync_options = options;
95294bafedd5SMatthias Ringwald     hci_stack->le_periodic_sync_advertising_sid = advertising_sid;
95304bafedd5SMatthias Ringwald     hci_stack->le_periodic_sync_advertiser_address_type = advertiser_address_type;
95314bafedd5SMatthias Ringwald     memcpy(hci_stack->le_periodic_sync_advertiser_address, advertiser_address, 6);
95324bafedd5SMatthias Ringwald     hci_stack->le_periodic_sync_skip = skip;
95334bafedd5SMatthias Ringwald     hci_stack->le_periodic_sync_timeout = sync_timeout;
95344bafedd5SMatthias Ringwald     hci_stack->le_periodic_sync_cte_type = sync_cte_type;
95354bafedd5SMatthias Ringwald 
95364bafedd5SMatthias Ringwald     hci_run();
95374bafedd5SMatthias Ringwald     return ERROR_CODE_SUCCESS;
95384bafedd5SMatthias Ringwald }
95394bafedd5SMatthias Ringwald 
95404bafedd5SMatthias Ringwald uint8_t gap_periodic_advertising_create_sync_cancel(void){
95414bafedd5SMatthias Ringwald     // abort if not requested
95424bafedd5SMatthias Ringwald     if (hci_stack->le_periodic_sync_request == LE_CONNECTING_IDLE) {
95434bafedd5SMatthias Ringwald         return ERROR_CODE_COMMAND_DISALLOWED;
95444bafedd5SMatthias Ringwald     }
95454bafedd5SMatthias Ringwald     hci_stack->le_periodic_sync_request = LE_CONNECTING_IDLE;
95464bafedd5SMatthias Ringwald     hci_run();
95474bafedd5SMatthias Ringwald     return ERROR_CODE_SUCCESS;
95484bafedd5SMatthias Ringwald }
95494bafedd5SMatthias Ringwald 
95504bafedd5SMatthias Ringwald uint8_t gap_periodic_advertising_terminate_sync(uint16_t sync_handle){
955149a6c69cSMatthias Ringwald     if (hci_stack->le_periodic_terminate_sync_handle != HCI_CON_HANDLE_INVALID){
955249a6c69cSMatthias Ringwald         return ERROR_CODE_COMMAND_DISALLOWED;
955349a6c69cSMatthias Ringwald     }
955449a6c69cSMatthias Ringwald     hci_stack->le_periodic_terminate_sync_handle = sync_handle;
955549a6c69cSMatthias Ringwald     hci_run();
955649a6c69cSMatthias Ringwald     return ERROR_CODE_SUCCESS;
95574bafedd5SMatthias Ringwald }
95584bafedd5SMatthias Ringwald 
9559f40c73b4SMatthias Ringwald #endif
9560f40c73b4SMatthias Ringwald #endif
95614ae8623eSMatthias Ringwald #ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
9562969d876aSMatthias Ringwald static hci_iso_stream_t *
9563969d876aSMatthias Ringwald hci_iso_stream_create(hci_iso_type_t iso_type, hci_iso_stream_state_t state, uint8_t group_id, uint8_t stream_id) {
95644ae8623eSMatthias Ringwald     hci_iso_stream_t * iso_stream = btstack_memory_hci_iso_stream_get();
9565969d876aSMatthias Ringwald     if (iso_stream != NULL){
95668d72db10SMatthias Ringwald         iso_stream->iso_type = iso_type;
956726b93350SMatthias Ringwald         iso_stream->state = state;
95688d72db10SMatthias Ringwald         iso_stream->group_id = group_id;
9569969d876aSMatthias Ringwald         iso_stream->stream_id = stream_id;
9570969d876aSMatthias Ringwald         iso_stream->cis_handle = HCI_CON_HANDLE_INVALID;
9571969d876aSMatthias Ringwald         iso_stream->acl_handle = HCI_CON_HANDLE_INVALID;
95724ae8623eSMatthias Ringwald         btstack_linked_list_add(&hci_stack->iso_streams, (btstack_linked_item_t*) iso_stream);
95734ae8623eSMatthias Ringwald     }
9574969d876aSMatthias Ringwald     return iso_stream;
95754ae8623eSMatthias Ringwald }
95764ae8623eSMatthias Ringwald 
957715a15be3SMatthias Ringwald static hci_iso_stream_t * hci_iso_stream_for_con_handle(hci_con_handle_t con_handle){
95784ae8623eSMatthias Ringwald     btstack_linked_list_iterator_t it;
95794ae8623eSMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->iso_streams);
95804ae8623eSMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
95814ae8623eSMatthias Ringwald         hci_iso_stream_t * iso_stream = (hci_iso_stream_t *) btstack_linked_list_iterator_next(&it);
9582969d876aSMatthias Ringwald         if (iso_stream->cis_handle == con_handle ) {
95834ae8623eSMatthias Ringwald             return iso_stream;
95844ae8623eSMatthias Ringwald         }
95854ae8623eSMatthias Ringwald     }
95864ae8623eSMatthias Ringwald     return NULL;
95874ae8623eSMatthias Ringwald }
95884ae8623eSMatthias Ringwald 
95894ae8623eSMatthias Ringwald static void hci_iso_stream_finalize(hci_iso_stream_t * iso_stream){
9590969d876aSMatthias Ringwald     log_info("hci_iso_stream_finalize con_handle 0x%04x, group_id 0x%02x", iso_stream->cis_handle, iso_stream->group_id);
95914ae8623eSMatthias Ringwald     btstack_linked_list_remove(&hci_stack->iso_streams, (btstack_linked_item_t*) iso_stream);
95924ae8623eSMatthias Ringwald     btstack_memory_hci_iso_stream_free(iso_stream);
95934ae8623eSMatthias Ringwald }
95944ae8623eSMatthias Ringwald 
9595778463d0SMatthias Ringwald static void hci_iso_stream_finalize_by_type_and_group_id(hci_iso_type_t iso_type, uint8_t group_id) {
9596778463d0SMatthias Ringwald     btstack_linked_list_iterator_t it;
9597778463d0SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->iso_streams);
9598778463d0SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
9599778463d0SMatthias Ringwald         hci_iso_stream_t * iso_stream = (hci_iso_stream_t *) btstack_linked_list_iterator_next(&it);
9600778463d0SMatthias Ringwald         if ((iso_stream->group_id == group_id) &&
9601778463d0SMatthias Ringwald             (iso_stream->iso_type == iso_type)){
9602778463d0SMatthias Ringwald             btstack_linked_list_iterator_remove(&it);
9603778463d0SMatthias Ringwald             btstack_memory_hci_iso_stream_free(iso_stream);
9604778463d0SMatthias Ringwald         }
9605778463d0SMatthias Ringwald     }
9606778463d0SMatthias Ringwald }
9607778463d0SMatthias Ringwald 
96088d72db10SMatthias Ringwald static void hci_iso_stream_requested_finalize(uint8_t group_id) {
96094ae8623eSMatthias Ringwald     btstack_linked_list_iterator_t it;
96104ae8623eSMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->iso_streams);
96114ae8623eSMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
96124ae8623eSMatthias Ringwald         hci_iso_stream_t * iso_stream = (hci_iso_stream_t *) btstack_linked_list_iterator_next(&it);
9613a90016deSMatthias Ringwald         if ((iso_stream->state == HCI_ISO_STREAM_STATE_REQUESTED ) &&
96148d72db10SMatthias Ringwald             (iso_stream->group_id == group_id)){
96154ae8623eSMatthias Ringwald             btstack_linked_list_iterator_remove(&it);
96164ae8623eSMatthias Ringwald             btstack_memory_hci_iso_stream_free(iso_stream);
96174ae8623eSMatthias Ringwald         }
96184ae8623eSMatthias Ringwald     }
96194ae8623eSMatthias Ringwald }
9620a90016deSMatthias Ringwald static void hci_iso_stream_requested_confirm(uint8_t big_handle){
96214ae8623eSMatthias Ringwald     btstack_linked_list_iterator_t it;
96224ae8623eSMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->iso_streams);
96234ae8623eSMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
96244ae8623eSMatthias Ringwald         hci_iso_stream_t * iso_stream = (hci_iso_stream_t *) btstack_linked_list_iterator_next(&it);
96254ae8623eSMatthias Ringwald         if ( iso_stream->state == HCI_ISO_STREAM_STATE_REQUESTED ) {
96264ae8623eSMatthias Ringwald             iso_stream->state = HCI_ISO_STREAM_STATE_W4_ESTABLISHED;
96274ae8623eSMatthias Ringwald         }
96284ae8623eSMatthias Ringwald     }
96294ae8623eSMatthias Ringwald }
9630d39e4f95SMatthias Ringwald 
9631d39e4f95SMatthias Ringwald static bool hci_iso_sdu_complete(uint8_t * packet, uint16_t size){
9632d39e4f95SMatthias Ringwald     uint8_t  sdu_ts_flag = (packet[1] >> 6) & 1;
9633d39e4f95SMatthias Ringwald     uint16_t sdu_len_offset = 6 + (sdu_ts_flag * 4);
9634d39e4f95SMatthias Ringwald     uint16_t sdu_len = little_endian_read_16(packet, sdu_len_offset) & 0x0fff;
9635d39e4f95SMatthias Ringwald     return (sdu_len_offset + 2 + sdu_len) == size;
9636d39e4f95SMatthias Ringwald }
9637d39e4f95SMatthias Ringwald 
9638d39e4f95SMatthias Ringwald static void hci_iso_packet_handler(uint8_t * packet, uint16_t size){
9639d39e4f95SMatthias Ringwald     if (hci_stack->iso_packet_handler == NULL) {
9640d39e4f95SMatthias Ringwald         return;
9641d39e4f95SMatthias Ringwald     }
9642d39e4f95SMatthias Ringwald     if (size < 4) {
9643d39e4f95SMatthias Ringwald         return;
9644d39e4f95SMatthias Ringwald     }
9645d39e4f95SMatthias Ringwald 
9646d39e4f95SMatthias Ringwald     // parse header
9647d39e4f95SMatthias Ringwald     uint16_t conn_handle_and_flags = little_endian_read_16(packet, 0);
9648d39e4f95SMatthias Ringwald     uint16_t iso_data_len = little_endian_read_16(packet, 2);
9649d39e4f95SMatthias Ringwald     hci_con_handle_t cis_handle = (hci_con_handle_t) (conn_handle_and_flags & 0xfff);
965015a15be3SMatthias Ringwald     hci_iso_stream_t * iso_stream = hci_iso_stream_for_con_handle(cis_handle);
9651d39e4f95SMatthias Ringwald     uint8_t pb_flag = (conn_handle_and_flags >> 12) & 3;
9652d39e4f95SMatthias Ringwald 
9653d39e4f95SMatthias Ringwald     // assert packet is complete
9654d39e4f95SMatthias Ringwald     if ((iso_data_len + 4u) != size){
9655d39e4f95SMatthias Ringwald         return;
9656d39e4f95SMatthias Ringwald     }
9657d39e4f95SMatthias Ringwald 
9658d39e4f95SMatthias Ringwald     if ((pb_flag & 0x01) == 0){
9659d39e4f95SMatthias Ringwald         if (pb_flag == 0x02){
9660d39e4f95SMatthias Ringwald             // The ISO_Data_Load field contains a header and a complete SDU.
9661d39e4f95SMatthias Ringwald             if (hci_iso_sdu_complete(packet, size)) {
9662d39e4f95SMatthias Ringwald                 (hci_stack->iso_packet_handler)(HCI_ISO_DATA_PACKET, 0, packet, size);
9663d39e4f95SMatthias Ringwald             }
9664d39e4f95SMatthias Ringwald         } else {
9665d39e4f95SMatthias Ringwald             // The ISO_Data_Load field contains a header and the first fragment of a fragmented SDU.
9666d39e4f95SMatthias Ringwald             if (iso_stream == NULL){
9667d39e4f95SMatthias Ringwald                 return;
9668d39e4f95SMatthias Ringwald             }
9669d39e4f95SMatthias Ringwald             if (size > HCI_ISO_PAYLOAD_SIZE){
9670d39e4f95SMatthias Ringwald                 return;
9671d39e4f95SMatthias Ringwald             }
9672d39e4f95SMatthias Ringwald             memcpy(iso_stream->reassembly_buffer, packet, size);
9673d39e4f95SMatthias Ringwald             // fix pb_flag
9674d39e4f95SMatthias Ringwald             iso_stream->reassembly_buffer[1] = (iso_stream->reassembly_buffer[1] & 0xcf) | 0x20;
9675d39e4f95SMatthias Ringwald             iso_stream->reassembly_pos = size;
9676d39e4f95SMatthias Ringwald         }
9677d39e4f95SMatthias Ringwald     } else {
9678d39e4f95SMatthias Ringwald         // iso_data_load contains continuation or last fragment of an SDU
9679d39e4f95SMatthias Ringwald         uint8_t  ts_flag = (conn_handle_and_flags >> 14) & 1;
9680d39e4f95SMatthias Ringwald         if (ts_flag != 0){
9681d39e4f95SMatthias Ringwald            return;
9682d39e4f95SMatthias Ringwald         }
9683d39e4f95SMatthias Ringwald         // append fragment
9684d39e4f95SMatthias Ringwald         if (iso_stream == NULL){
9685d39e4f95SMatthias Ringwald             return;
9686d39e4f95SMatthias Ringwald         }
9687d39e4f95SMatthias Ringwald         if (iso_stream->reassembly_pos == 0){
9688d39e4f95SMatthias Ringwald             return;
9689d39e4f95SMatthias Ringwald         }
9690d39e4f95SMatthias Ringwald         if ((iso_stream->reassembly_pos + iso_data_len) > size){
9691d39e4f95SMatthias Ringwald             // reset reassembly buffer
9692d39e4f95SMatthias Ringwald             iso_stream->reassembly_pos = 0;
9693d39e4f95SMatthias Ringwald             return;
9694d39e4f95SMatthias Ringwald         }
9695d39e4f95SMatthias Ringwald         memcpy(&iso_stream->reassembly_buffer[iso_stream->reassembly_pos], &packet[4], iso_data_len);
9696d39e4f95SMatthias Ringwald         iso_stream->reassembly_pos += iso_data_len;
9697d39e4f95SMatthias Ringwald 
9698d39e4f95SMatthias Ringwald         // deliver if last fragment and SDU complete
9699d39e4f95SMatthias Ringwald         if (pb_flag == 0x03){
9700d39e4f95SMatthias Ringwald             if (hci_iso_sdu_complete(iso_stream->reassembly_buffer, iso_stream->reassembly_pos)){
9701d39e4f95SMatthias Ringwald                 (hci_stack->iso_packet_handler)(HCI_ISO_DATA_PACKET, 0, iso_stream->reassembly_buffer, iso_stream->reassembly_pos);
9702d39e4f95SMatthias Ringwald             }
9703d39e4f95SMatthias Ringwald             iso_stream->reassembly_pos = 0;
9704d39e4f95SMatthias Ringwald         }
9705d39e4f95SMatthias Ringwald     }
9706d39e4f95SMatthias Ringwald }
9707d39e4f95SMatthias Ringwald 
97087aa35f6aSMatthias Ringwald static void hci_emit_big_created(const le_audio_big_t * big, uint8_t status){
97097aa35f6aSMatthias Ringwald     uint8_t event [6 + (MAX_NR_BIS * 2)];
97107aa35f6aSMatthias Ringwald     uint16_t pos = 0;
97117aa35f6aSMatthias Ringwald     event[pos++] = HCI_EVENT_META_GAP;
97127aa35f6aSMatthias Ringwald     event[pos++] = 4 + (2 * big->num_bis);
97137aa35f6aSMatthias Ringwald     event[pos++] = GAP_SUBEVENT_BIG_CREATED;
97147aa35f6aSMatthias Ringwald     event[pos++] = status;
97157aa35f6aSMatthias Ringwald     event[pos++] = big->big_handle;
97167aa35f6aSMatthias Ringwald     event[pos++] = big->num_bis;
97177aa35f6aSMatthias Ringwald     uint8_t i;
97187aa35f6aSMatthias Ringwald     for (i=0;i<big->num_bis;i++){
97197aa35f6aSMatthias Ringwald         little_endian_store_16(event, pos, big->bis_con_handles[i]);
97207aa35f6aSMatthias Ringwald         pos += 2;
97217aa35f6aSMatthias Ringwald     }
97227aa35f6aSMatthias Ringwald     hci_emit_event(event, pos, 0);
97237aa35f6aSMatthias Ringwald }
97247aa35f6aSMatthias Ringwald 
9725d3a89d91SMatthias Ringwald static void hci_emit_cig_created(const le_audio_cig_t * cig, uint8_t status){
9726d3a89d91SMatthias Ringwald     uint8_t event [6 + (MAX_NR_CIS * 2)];
9727d3a89d91SMatthias Ringwald     uint16_t pos = 0;
9728d3a89d91SMatthias Ringwald     event[pos++] = HCI_EVENT_META_GAP;
9729d3a89d91SMatthias Ringwald     event[pos++] = 4 + (2 * cig->num_cis);
9730d3a89d91SMatthias Ringwald     event[pos++] = GAP_SUBEVENT_CIG_CREATED;
9731d3a89d91SMatthias Ringwald     event[pos++] = status;
9732d3a89d91SMatthias Ringwald     event[pos++] = cig->cig_id;
9733d3a89d91SMatthias Ringwald     event[pos++] = cig->num_cis;
9734d3a89d91SMatthias Ringwald     uint8_t i;
9735d3a89d91SMatthias Ringwald     for (i=0;i<cig->num_cis;i++){
9736d3a89d91SMatthias Ringwald         little_endian_store_16(event, pos, cig->cis_con_handles[i]);
9737d3a89d91SMatthias Ringwald         pos += 2;
9738d3a89d91SMatthias Ringwald     }
9739d3a89d91SMatthias Ringwald     hci_emit_event(event, pos, 0);
9740d3a89d91SMatthias Ringwald }
9741f06bb90fSMatthias Ringwald 
974214045fdbSMatthias Ringwald static void hci_emit_cis_created(uint8_t status, uint8_t cig_id, uint8_t cis_id, hci_con_handle_t cis_con_handle,
9743532211feSMatthias Ringwald                      hci_con_handle_t acl_con_handle) {
9744cf439c63SMatthias Ringwald     uint8_t event [10];
9745f06bb90fSMatthias Ringwald     uint16_t pos = 0;
9746f06bb90fSMatthias Ringwald     event[pos++] = HCI_EVENT_META_GAP;
9747cf439c63SMatthias Ringwald     event[pos++] = 8;
9748f06bb90fSMatthias Ringwald     event[pos++] = GAP_SUBEVENT_CIS_CREATED;
9749f06bb90fSMatthias Ringwald     event[pos++] = status;
97503abcd16cSMatthias Ringwald     event[pos++] = cig_id;
9751cf439c63SMatthias Ringwald     event[pos++] = cis_id;
97523abcd16cSMatthias Ringwald     little_endian_store_16(event, pos, cis_con_handle);
9753f06bb90fSMatthias Ringwald     pos += 2;
9754cf439c63SMatthias Ringwald     little_endian_store_16(event, pos, acl_con_handle);
9755cf439c63SMatthias Ringwald     pos += 2;
9756f06bb90fSMatthias Ringwald     hci_emit_event(event, pos, 0);
9757f06bb90fSMatthias Ringwald }
9758f06bb90fSMatthias Ringwald 
975914045fdbSMatthias Ringwald // emits GAP_SUBEVENT_CIS_CREATED after calling hci_iso_finalize
976014045fdbSMatthias Ringwald static void hci_cis_handle_created(hci_iso_stream_t * iso_stream, uint8_t status){
976114045fdbSMatthias Ringwald     // cache data before finalizing struct
976214045fdbSMatthias Ringwald     uint8_t cig_id              = iso_stream->group_id;
976314045fdbSMatthias Ringwald     uint8_t cis_id              = iso_stream->stream_id;
976414045fdbSMatthias Ringwald     hci_con_handle_t cis_handle = iso_stream->cis_handle;
976514045fdbSMatthias Ringwald     hci_con_handle_t acl_handle = iso_stream->acl_handle;
976614045fdbSMatthias Ringwald     if (status != ERROR_CODE_SUCCESS){
976714045fdbSMatthias Ringwald         hci_iso_stream_finalize(iso_stream);
976814045fdbSMatthias Ringwald     }
976914045fdbSMatthias Ringwald     hci_emit_cis_created(status, cig_id, cis_id, cis_handle, acl_handle);
977014045fdbSMatthias Ringwald }
977114045fdbSMatthias Ringwald 
97727aa35f6aSMatthias Ringwald static void hci_emit_big_terminated(const le_audio_big_t * big){
97737aa35f6aSMatthias Ringwald     uint8_t event [4];
97747aa35f6aSMatthias Ringwald     uint16_t pos = 0;
97757aa35f6aSMatthias Ringwald     event[pos++] = HCI_EVENT_META_GAP;
97767aa35f6aSMatthias Ringwald     event[pos++] = 2;
97777aa35f6aSMatthias Ringwald     event[pos++] = GAP_SUBEVENT_BIG_TERMINATED;
97787aa35f6aSMatthias Ringwald     event[pos++] = big->big_handle;
97797aa35f6aSMatthias Ringwald     hci_emit_event(event, pos, 0);
97807aa35f6aSMatthias Ringwald }
97817aa35f6aSMatthias Ringwald 
97822a6c0f82SMatthias Ringwald static void hci_emit_big_sync_created(const le_audio_big_sync_t * big_sync, uint8_t status){
97832a6c0f82SMatthias Ringwald     uint8_t event [6 + (MAX_NR_BIS * 2)];
97842a6c0f82SMatthias Ringwald     uint16_t pos = 0;
97852a6c0f82SMatthias Ringwald     event[pos++] = HCI_EVENT_META_GAP;
97862a6c0f82SMatthias Ringwald     event[pos++] = 4;
97872a6c0f82SMatthias Ringwald     event[pos++] = GAP_SUBEVENT_BIG_SYNC_CREATED;
97882a6c0f82SMatthias Ringwald     event[pos++] = status;
97892a6c0f82SMatthias Ringwald     event[pos++] = big_sync->big_handle;
97902a6c0f82SMatthias Ringwald     event[pos++] = big_sync->num_bis;
97912a6c0f82SMatthias Ringwald     uint8_t i;
97922a6c0f82SMatthias Ringwald     for (i=0;i<big_sync->num_bis;i++){
97932a6c0f82SMatthias Ringwald         little_endian_store_16(event, pos, big_sync->bis_con_handles[i]);
97942a6c0f82SMatthias Ringwald         pos += 2;
97952a6c0f82SMatthias Ringwald     }
97962a6c0f82SMatthias Ringwald     hci_emit_event(event, pos, 0);
97972a6c0f82SMatthias Ringwald }
97982a6c0f82SMatthias Ringwald 
9799d04a9afcSMatthias Ringwald static void hci_emit_big_sync_stopped(uint8_t big_handle){
98002a6c0f82SMatthias Ringwald     uint8_t event [4];
98012a6c0f82SMatthias Ringwald     uint16_t pos = 0;
98022a6c0f82SMatthias Ringwald     event[pos++] = HCI_EVENT_META_GAP;
98032a6c0f82SMatthias Ringwald     event[pos++] = 2;
98042a6c0f82SMatthias Ringwald     event[pos++] = GAP_SUBEVENT_BIG_SYNC_STOPPED;
9805d04a9afcSMatthias Ringwald     event[pos++] = big_handle;
98062a6c0f82SMatthias Ringwald     hci_emit_event(event, pos, 0);
98072a6c0f82SMatthias Ringwald }
98082a6c0f82SMatthias Ringwald 
98095ade6657SMatthias Ringwald static void hci_emit_bis_can_send_now(const le_audio_big_t *big, uint8_t bis_index) {
98105ade6657SMatthias Ringwald     uint8_t event[6];
98115ade6657SMatthias Ringwald     uint16_t pos = 0;
98125ade6657SMatthias Ringwald     event[pos++] = HCI_EVENT_BIS_CAN_SEND_NOW;
98135ade6657SMatthias Ringwald     event[pos++] = sizeof(event) - 2;
98145ade6657SMatthias Ringwald     event[pos++] = big->big_handle;
98155ade6657SMatthias Ringwald     event[pos++] = bis_index;
98165ade6657SMatthias Ringwald     little_endian_store_16(event, pos, big->bis_con_handles[bis_index]);
98175ade6657SMatthias Ringwald     hci_emit_event(&event[0], sizeof(event), 0);  // don't dump
98185ade6657SMatthias Ringwald }
98195ade6657SMatthias Ringwald 
98202c077771SMatthias Ringwald static void hci_emit_cis_can_send_now(hci_con_handle_t cis_con_handle) {
98212c077771SMatthias Ringwald     uint8_t event[4];
98222c077771SMatthias Ringwald     uint16_t pos = 0;
98232c077771SMatthias Ringwald     event[pos++] = HCI_EVENT_CIS_CAN_SEND_NOW;
98242c077771SMatthias Ringwald     event[pos++] = sizeof(event) - 2;
98252c077771SMatthias Ringwald     little_endian_store_16(event, pos, cis_con_handle);
98262c077771SMatthias Ringwald     hci_emit_event(&event[0], sizeof(event), 0);  // don't dump
98272c077771SMatthias Ringwald }
98282c077771SMatthias Ringwald 
98297aa35f6aSMatthias Ringwald static le_audio_big_t * hci_big_for_handle(uint8_t big_handle){
98307aa35f6aSMatthias Ringwald     btstack_linked_list_iterator_t it;
98317aa35f6aSMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->le_audio_bigs);
98327aa35f6aSMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
98337aa35f6aSMatthias Ringwald         le_audio_big_t * big = (le_audio_big_t *) btstack_linked_list_iterator_next(&it);
98347aa35f6aSMatthias Ringwald         if ( big->big_handle == big_handle ) {
98357aa35f6aSMatthias Ringwald             return big;
98367aa35f6aSMatthias Ringwald         }
98377aa35f6aSMatthias Ringwald     }
98387aa35f6aSMatthias Ringwald     return NULL;
98397aa35f6aSMatthias Ringwald }
98407aa35f6aSMatthias Ringwald 
98412a6c0f82SMatthias Ringwald static le_audio_big_sync_t * hci_big_sync_for_handle(uint8_t big_handle){
98422a6c0f82SMatthias Ringwald     btstack_linked_list_iterator_t it;
98432a6c0f82SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->le_audio_big_syncs);
98442a6c0f82SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
98452a6c0f82SMatthias Ringwald         le_audio_big_sync_t * big_sync = (le_audio_big_sync_t *) btstack_linked_list_iterator_next(&it);
98462a6c0f82SMatthias Ringwald         if ( big_sync->big_handle == big_handle ) {
98472a6c0f82SMatthias Ringwald             return big_sync;
98482a6c0f82SMatthias Ringwald         }
98492a6c0f82SMatthias Ringwald     }
98502a6c0f82SMatthias Ringwald     return NULL;
98512a6c0f82SMatthias Ringwald }
98522a6c0f82SMatthias Ringwald 
985301d4f05fSMatthias Ringwald void hci_set_num_iso_packets_to_queue(uint8_t num_packets){
985401d4f05fSMatthias Ringwald     hci_stack->iso_packets_to_queue = num_packets;
985501d4f05fSMatthias Ringwald }
985601d4f05fSMatthias Ringwald 
9857d3a89d91SMatthias Ringwald static le_audio_cig_t * hci_cig_for_id(uint8_t cig_id){
9858d3a89d91SMatthias Ringwald     btstack_linked_list_iterator_t it;
9859d3a89d91SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->le_audio_cigs);
9860d3a89d91SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
9861d3a89d91SMatthias Ringwald         le_audio_cig_t * cig = (le_audio_cig_t *) btstack_linked_list_iterator_next(&it);
9862d3a89d91SMatthias Ringwald         if ( cig->cig_id == cig_id ) {
9863d3a89d91SMatthias Ringwald             return cig;
9864d3a89d91SMatthias Ringwald         }
9865d3a89d91SMatthias Ringwald     }
9866d3a89d91SMatthias Ringwald     return NULL;
9867d3a89d91SMatthias Ringwald }
9868d3a89d91SMatthias Ringwald 
98695ade6657SMatthias Ringwald static void hci_iso_notify_can_send_now(void){
98702c077771SMatthias Ringwald 
98712c077771SMatthias Ringwald     // BIG
98722c077771SMatthias Ringwald 
98735ade6657SMatthias Ringwald     btstack_linked_list_iterator_t it;
98745ade6657SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->le_audio_bigs);
98755ade6657SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
98765ade6657SMatthias Ringwald         le_audio_big_t * big = (le_audio_big_t *) btstack_linked_list_iterator_next(&it);
9877aacb1081SMatthias Ringwald         // track number completed packet timestamps
9878aacb1081SMatthias Ringwald         if (big->num_completed_timestamp_current_valid){
9879aacb1081SMatthias Ringwald             big->num_completed_timestamp_current_valid = false;
9880aacb1081SMatthias Ringwald             if (big->num_completed_timestamp_previous_valid){
9881aacb1081SMatthias Ringwald                 // detect delayed sending of all BIS: tolerate up to 50% delayed event handling
9882aacb1081SMatthias Ringwald                 uint32_t iso_interval_missed_threshold_ms = big->params->sdu_interval_us * 3 / 2000;
9883aacb1081SMatthias Ringwald                 int32_t  num_completed_timestamp_delta_ms = btstack_time_delta(big->num_completed_timestamp_current_ms,
9884aacb1081SMatthias Ringwald                                                                                big->num_completed_timestamp_previous_ms);
9885aacb1081SMatthias Ringwald                 if (num_completed_timestamp_delta_ms > iso_interval_missed_threshold_ms){
9886aacb1081SMatthias Ringwald                     // to catch up, skip packet on all BIS
9887aacb1081SMatthias Ringwald                     uint8_t i;
9888aacb1081SMatthias Ringwald                     for (i=0;i<big->num_bis;i++){
9889aacb1081SMatthias Ringwald                         hci_iso_stream_t * iso_stream = hci_iso_stream_for_con_handle(big->bis_con_handles[i]);
9890aacb1081SMatthias Ringwald                         if (iso_stream){
9891aacb1081SMatthias Ringwald                             iso_stream->num_packets_to_skip++;
9892aacb1081SMatthias Ringwald                         }
9893aacb1081SMatthias Ringwald                     }
9894aacb1081SMatthias Ringwald                 }
9895aacb1081SMatthias Ringwald             }
9896aacb1081SMatthias Ringwald             big->num_completed_timestamp_previous_valid = true;
9897aacb1081SMatthias Ringwald             big->num_completed_timestamp_previous_ms = big->num_completed_timestamp_current_ms;
9898aacb1081SMatthias Ringwald         }
9899aacb1081SMatthias Ringwald 
99005ade6657SMatthias Ringwald         if (big->can_send_now_requested){
9901d4e5d4faSMatthias Ringwald             // check if no outgoing iso packets pending and no can send now have to be emitted
99025ade6657SMatthias Ringwald             uint8_t i;
99035ade6657SMatthias Ringwald             bool can_send = true;
9904aacb1081SMatthias Ringwald             uint8_t num_iso_queued_minimum = 0;
99055ade6657SMatthias Ringwald             for (i=0;i<big->num_bis;i++){
99065ade6657SMatthias Ringwald                 hci_iso_stream_t * iso_stream = hci_iso_stream_for_con_handle(big->bis_con_handles[i]);
9907aacb1081SMatthias Ringwald                 if (iso_stream == NULL) continue;
9908aacb1081SMatthias Ringwald                 // handle case where individual ISO packet was sent too late:
9909aacb1081SMatthias Ringwald                 // for each additionally queued packet, a new one needs to get skipped
9910aacb1081SMatthias Ringwald                 if (i==0){
9911aacb1081SMatthias Ringwald                     num_iso_queued_minimum = iso_stream->num_packets_sent;
9912aacb1081SMatthias Ringwald                 } else if (iso_stream->num_packets_sent > num_iso_queued_minimum){
9913aacb1081SMatthias Ringwald                     uint8_t num_packets_to_skip = iso_stream->num_packets_sent - num_iso_queued_minimum;
9914aacb1081SMatthias Ringwald                     iso_stream->num_packets_to_skip += num_packets_to_skip;
9915aacb1081SMatthias Ringwald                     iso_stream->num_packets_sent    -= num_packets_to_skip;
9916aacb1081SMatthias Ringwald                 }
9917aacb1081SMatthias Ringwald                 // check if we can send now
9918aacb1081SMatthias Ringwald                 if  ((iso_stream->num_packets_sent >= hci_stack->iso_packets_to_queue) || (iso_stream->emit_ready_to_send)){
99195ade6657SMatthias Ringwald                     can_send = false;
99205ade6657SMatthias Ringwald                     break;
99215ade6657SMatthias Ringwald                 }
99225ade6657SMatthias Ringwald             }
99235ade6657SMatthias Ringwald             if (can_send){
99245ade6657SMatthias Ringwald                 // propagate can send now to individual streams
99255ade6657SMatthias Ringwald                 big->can_send_now_requested = false;
99265ade6657SMatthias Ringwald                 for (i=0;i<big->num_bis;i++){
99275ade6657SMatthias Ringwald                     hci_iso_stream_t * iso_stream = hci_iso_stream_for_con_handle(big->bis_con_handles[i]);
99285ade6657SMatthias Ringwald                     iso_stream->emit_ready_to_send = true;
99295ade6657SMatthias Ringwald                 }
99305ade6657SMatthias Ringwald             }
99315ade6657SMatthias Ringwald         }
99325ade6657SMatthias Ringwald     }
99335ade6657SMatthias Ringwald 
99345ade6657SMatthias Ringwald     if (hci_stack->hci_packet_buffer_reserved) return;
99355ade6657SMatthias Ringwald 
99365ade6657SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->le_audio_bigs);
99375ade6657SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
99385ade6657SMatthias Ringwald         le_audio_big_t * big = (le_audio_big_t *) btstack_linked_list_iterator_next(&it);
99395ade6657SMatthias Ringwald         // report bis ready
99405ade6657SMatthias Ringwald         uint8_t i;
99415ade6657SMatthias Ringwald         for (i=0;i<big->num_bis;i++){
99425ade6657SMatthias Ringwald             hci_iso_stream_t * iso_stream = hci_iso_stream_for_con_handle(big->bis_con_handles[i]);
99435ade6657SMatthias Ringwald             if ((iso_stream != NULL) && iso_stream->emit_ready_to_send){
99445ade6657SMatthias Ringwald                 iso_stream->emit_ready_to_send = false;
99455ade6657SMatthias Ringwald                 hci_emit_bis_can_send_now(big, i);
99465ade6657SMatthias Ringwald                 break;
99475ade6657SMatthias Ringwald             }
99485ade6657SMatthias Ringwald         }
99495ade6657SMatthias Ringwald     }
99502c077771SMatthias Ringwald 
99512c077771SMatthias Ringwald     // CIS
99522c077771SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->iso_streams);
99532c077771SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)) {
99542c077771SMatthias Ringwald         hci_iso_stream_t *iso_stream = (hci_iso_stream_t *) btstack_linked_list_iterator_next(&it);
99552c077771SMatthias Ringwald         if ((iso_stream->can_send_now_requested) &&
99562c077771SMatthias Ringwald             (iso_stream->num_packets_sent < hci_stack->iso_packets_to_queue)){
99572c077771SMatthias Ringwald             iso_stream->can_send_now_requested = false;
9958969d876aSMatthias Ringwald             hci_emit_cis_can_send_now(iso_stream->cis_handle);
99592c077771SMatthias Ringwald         }
99602c077771SMatthias Ringwald     }
99615ade6657SMatthias Ringwald }
99625ade6657SMatthias Ringwald 
99637aa35f6aSMatthias Ringwald uint8_t gap_big_create(le_audio_big_t * storage, le_audio_big_params_t * big_params){
99647aa35f6aSMatthias Ringwald     if (hci_big_for_handle(big_params->big_handle) != NULL){
99657aa35f6aSMatthias Ringwald         return ERROR_CODE_ACL_CONNECTION_ALREADY_EXISTS;
99667aa35f6aSMatthias Ringwald     }
99677aa35f6aSMatthias Ringwald     if (big_params->num_bis == 0){
99687aa35f6aSMatthias Ringwald         return ERROR_CODE_INVALID_HCI_COMMAND_PARAMETERS;
99697aa35f6aSMatthias Ringwald     }
99707aa35f6aSMatthias Ringwald     if (big_params->num_bis > MAX_NR_BIS){
99717aa35f6aSMatthias Ringwald         return ERROR_CODE_INVALID_HCI_COMMAND_PARAMETERS;
99727aa35f6aSMatthias Ringwald     }
99737aa35f6aSMatthias Ringwald 
9974fb16346aSMatthias Ringwald     // reserve ISO Streams
9975fb16346aSMatthias Ringwald     uint8_t i;
9976fb16346aSMatthias Ringwald     uint8_t status = ERROR_CODE_SUCCESS;
9977fb16346aSMatthias Ringwald     for (i=0;i<big_params->num_bis;i++){
9978969d876aSMatthias Ringwald         hci_iso_stream_t * iso_stream = hci_iso_stream_create(HCI_ISO_TYPE_BIS, HCI_ISO_STREAM_STATE_REQUESTED, big_params->big_handle, i);
9979969d876aSMatthias Ringwald         if (iso_stream == NULL) {
9980969d876aSMatthias Ringwald             status = ERROR_CODE_MEMORY_CAPACITY_EXCEEDED;
9981fb16346aSMatthias Ringwald             break;
9982fb16346aSMatthias Ringwald         }
9983fb16346aSMatthias Ringwald     }
9984fb16346aSMatthias Ringwald 
9985fb16346aSMatthias Ringwald     // free structs on error
9986fb16346aSMatthias Ringwald     if (status != ERROR_CODE_SUCCESS){
9987778463d0SMatthias Ringwald         hci_iso_stream_finalize_by_type_and_group_id(HCI_ISO_TYPE_BIS, big_params->big_handle);
9988fb16346aSMatthias Ringwald         return status;
9989fb16346aSMatthias Ringwald     }
9990fb16346aSMatthias Ringwald 
99917aa35f6aSMatthias Ringwald     le_audio_big_t * big = storage;
99927aa35f6aSMatthias Ringwald     big->big_handle = big_params->big_handle;
99937aa35f6aSMatthias Ringwald     big->params = big_params;
99947aa35f6aSMatthias Ringwald     big->state = LE_AUDIO_BIG_STATE_CREATE;
99957aa35f6aSMatthias Ringwald     big->num_bis = big_params->num_bis;
99967aa35f6aSMatthias Ringwald     btstack_linked_list_add(&hci_stack->le_audio_bigs, (btstack_linked_item_t *) big);
99977aa35f6aSMatthias Ringwald 
99987aa35f6aSMatthias Ringwald     hci_run();
99997aa35f6aSMatthias Ringwald 
100007aa35f6aSMatthias Ringwald     return ERROR_CODE_SUCCESS;
100017aa35f6aSMatthias Ringwald }
100027aa35f6aSMatthias Ringwald 
100032a6c0f82SMatthias Ringwald uint8_t gap_big_sync_create(le_audio_big_sync_t * storage, le_audio_big_sync_params_t * big_sync_params){
100042a6c0f82SMatthias Ringwald     if (hci_big_sync_for_handle(big_sync_params->big_handle) != NULL){
100052a6c0f82SMatthias Ringwald         return ERROR_CODE_ACL_CONNECTION_ALREADY_EXISTS;
100062a6c0f82SMatthias Ringwald     }
100072a6c0f82SMatthias Ringwald     if (big_sync_params->num_bis == 0){
100082a6c0f82SMatthias Ringwald         return ERROR_CODE_INVALID_HCI_COMMAND_PARAMETERS;
100092a6c0f82SMatthias Ringwald     }
100102a6c0f82SMatthias Ringwald     if (big_sync_params->num_bis > MAX_NR_BIS){
100112a6c0f82SMatthias Ringwald         return ERROR_CODE_INVALID_HCI_COMMAND_PARAMETERS;
100122a6c0f82SMatthias Ringwald     }
100132a6c0f82SMatthias Ringwald 
100142a6c0f82SMatthias Ringwald     le_audio_big_sync_t * big_sync = storage;
100152a6c0f82SMatthias Ringwald     big_sync->big_handle = big_sync_params->big_handle;
100162a6c0f82SMatthias Ringwald     big_sync->params = big_sync_params;
100172a6c0f82SMatthias Ringwald     big_sync->state = LE_AUDIO_BIG_STATE_CREATE;
100182a6c0f82SMatthias Ringwald     big_sync->num_bis = big_sync_params->num_bis;
100192a6c0f82SMatthias Ringwald     btstack_linked_list_add(&hci_stack->le_audio_big_syncs, (btstack_linked_item_t *) big_sync);
100202a6c0f82SMatthias Ringwald 
100212a6c0f82SMatthias Ringwald     hci_run();
100222a6c0f82SMatthias Ringwald 
100232a6c0f82SMatthias Ringwald     return ERROR_CODE_SUCCESS;
100242a6c0f82SMatthias Ringwald }
100252a6c0f82SMatthias Ringwald 
100267aa35f6aSMatthias Ringwald uint8_t gap_big_terminate(uint8_t big_handle){
100277aa35f6aSMatthias Ringwald     le_audio_big_t * big = hci_big_for_handle(big_handle);
100287aa35f6aSMatthias Ringwald     if (big == NULL){
100297aa35f6aSMatthias Ringwald         return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
100307aa35f6aSMatthias Ringwald     }
100317aa35f6aSMatthias Ringwald     switch (big->state){
100327aa35f6aSMatthias Ringwald         case LE_AUDIO_BIG_STATE_CREATE:
100337aa35f6aSMatthias Ringwald             btstack_linked_list_remove(&hci_stack->le_audio_bigs, (btstack_linked_item_t *) big);
100342a6c0f82SMatthias Ringwald             hci_emit_big_terminated(big);
100352a6c0f82SMatthias Ringwald             break;
100362a6c0f82SMatthias Ringwald         case LE_AUDIO_BIG_STATE_W4_SETUP_ISO_PATH:
100372a6c0f82SMatthias Ringwald             big->state = LE_AUDIO_BIG_STATE_W4_SETUP_ISO_PATH_THEN_TERMINATE;
100387aa35f6aSMatthias Ringwald             break;
100397aa35f6aSMatthias Ringwald         case LE_AUDIO_BIG_STATE_W4_ESTABLISHED:
100407aa35f6aSMatthias Ringwald         case LE_AUDIO_BIG_STATE_SETUP_ISO_PATH:
100417aa35f6aSMatthias Ringwald         case LE_AUDIO_BIG_STATE_ACTIVE:
100427aa35f6aSMatthias Ringwald             big->state = LE_AUDIO_BIG_STATE_TERMINATE;
100437aa35f6aSMatthias Ringwald             hci_run();
100447aa35f6aSMatthias Ringwald             break;
100452a6c0f82SMatthias Ringwald         default:
100462a6c0f82SMatthias Ringwald             return ERROR_CODE_COMMAND_DISALLOWED;
100472a6c0f82SMatthias Ringwald     }
100482a6c0f82SMatthias Ringwald     return ERROR_CODE_SUCCESS;
100492a6c0f82SMatthias Ringwald }
100502a6c0f82SMatthias Ringwald 
100512a6c0f82SMatthias Ringwald uint8_t gap_big_sync_terminate(uint8_t big_handle){
100522a6c0f82SMatthias Ringwald     le_audio_big_sync_t * big_sync = hci_big_sync_for_handle(big_handle);
100532a6c0f82SMatthias Ringwald     if (big_sync == NULL){
100542a6c0f82SMatthias Ringwald         return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
100552a6c0f82SMatthias Ringwald     }
100562a6c0f82SMatthias Ringwald     switch (big_sync->state){
100572a6c0f82SMatthias Ringwald         case LE_AUDIO_BIG_STATE_CREATE:
100582a6c0f82SMatthias Ringwald             btstack_linked_list_remove(&hci_stack->le_audio_big_syncs, (btstack_linked_item_t *) big_sync);
10059d04a9afcSMatthias Ringwald             hci_emit_big_sync_stopped(big_handle);
100602a6c0f82SMatthias Ringwald             break;
100617aa35f6aSMatthias Ringwald         case LE_AUDIO_BIG_STATE_W4_SETUP_ISO_PATH:
100622a6c0f82SMatthias Ringwald             big_sync->state = LE_AUDIO_BIG_STATE_W4_SETUP_ISO_PATH_THEN_TERMINATE;
100632a6c0f82SMatthias Ringwald             break;
100642a6c0f82SMatthias Ringwald         case LE_AUDIO_BIG_STATE_W4_ESTABLISHED:
100652a6c0f82SMatthias Ringwald         case LE_AUDIO_BIG_STATE_SETUP_ISO_PATH:
100662a6c0f82SMatthias Ringwald         case LE_AUDIO_BIG_STATE_ACTIVE:
100672a6c0f82SMatthias Ringwald             big_sync->state = LE_AUDIO_BIG_STATE_TERMINATE;
100682a6c0f82SMatthias Ringwald             hci_run();
100697aa35f6aSMatthias Ringwald             break;
100707aa35f6aSMatthias Ringwald         default:
100717aa35f6aSMatthias Ringwald             return ERROR_CODE_COMMAND_DISALLOWED;
100727aa35f6aSMatthias Ringwald     }
100737aa35f6aSMatthias Ringwald     return ERROR_CODE_SUCCESS;
100747aa35f6aSMatthias Ringwald }
10075d39e4f95SMatthias Ringwald 
100765ade6657SMatthias Ringwald uint8_t hci_request_bis_can_send_now_events(uint8_t big_handle){
100775ade6657SMatthias Ringwald     le_audio_big_t * big = hci_big_for_handle(big_handle);
100785ade6657SMatthias Ringwald     if (big == NULL){
100795ade6657SMatthias Ringwald         return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
100805ade6657SMatthias Ringwald     }
100815ade6657SMatthias Ringwald     if (big->state != LE_AUDIO_BIG_STATE_ACTIVE){
100825ade6657SMatthias Ringwald         return ERROR_CODE_COMMAND_DISALLOWED;
100835ade6657SMatthias Ringwald     }
100845ade6657SMatthias Ringwald     big->can_send_now_requested = true;
100855ade6657SMatthias Ringwald     hci_iso_notify_can_send_now();
100865ade6657SMatthias Ringwald     return ERROR_CODE_SUCCESS;
100875ade6657SMatthias Ringwald }
10088d3a89d91SMatthias Ringwald 
100892c077771SMatthias Ringwald uint8_t hci_request_cis_can_send_now_events(hci_con_handle_t cis_con_handle){
100902c077771SMatthias Ringwald     hci_iso_stream_t * iso_stream = hci_iso_stream_for_con_handle(cis_con_handle);
100912c077771SMatthias Ringwald     if (iso_stream == NULL){
100922c077771SMatthias Ringwald         return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
100932c077771SMatthias Ringwald     }
100942c077771SMatthias Ringwald     if ((iso_stream->iso_type != HCI_ISO_TYPE_CIS) && (iso_stream->state != HCI_ISO_STREAM_STATE_ESTABLISHED)) {
100952c077771SMatthias Ringwald         return ERROR_CODE_COMMAND_DISALLOWED;
100962c077771SMatthias Ringwald     }
100972c077771SMatthias Ringwald     iso_stream->can_send_now_requested = true;
100982c077771SMatthias Ringwald     hci_iso_notify_can_send_now();
100992c077771SMatthias Ringwald     return ERROR_CODE_SUCCESS;
101002c077771SMatthias Ringwald }
101012c077771SMatthias Ringwald 
10102d3a89d91SMatthias Ringwald uint8_t gap_cig_create(le_audio_cig_t * storage, le_audio_cig_params_t * cig_params){
10103d3a89d91SMatthias Ringwald     if (hci_cig_for_id(cig_params->cig_id) != NULL){
10104d3a89d91SMatthias Ringwald         return ERROR_CODE_ACL_CONNECTION_ALREADY_EXISTS;
10105d3a89d91SMatthias Ringwald     }
10106d3a89d91SMatthias Ringwald     if (cig_params->num_cis == 0){
10107d3a89d91SMatthias Ringwald         return ERROR_CODE_INVALID_HCI_COMMAND_PARAMETERS;
10108d3a89d91SMatthias Ringwald     }
10109d3a89d91SMatthias Ringwald     if (cig_params->num_cis > MAX_NR_BIS){
10110d3a89d91SMatthias Ringwald         return ERROR_CODE_INVALID_HCI_COMMAND_PARAMETERS;
10111d3a89d91SMatthias Ringwald     }
10112d3a89d91SMatthias Ringwald 
10113d3a89d91SMatthias Ringwald     // reserve ISO Streams
10114d3a89d91SMatthias Ringwald     uint8_t i;
10115d3a89d91SMatthias Ringwald     uint8_t status = ERROR_CODE_SUCCESS;
10116d3a89d91SMatthias Ringwald     for (i=0;i<cig_params->num_cis;i++){
10117969d876aSMatthias Ringwald         hci_iso_stream_t * iso_stream = hci_iso_stream_create(HCI_ISO_TYPE_CIS,HCI_ISO_STREAM_STATE_REQUESTED, cig_params->cig_id, i);
1011836468e6fSMatthias Ringwald         if (iso_stream == NULL) {
10119969d876aSMatthias Ringwald             status = ERROR_CODE_MEMORY_CAPACITY_EXCEEDED;
10120d3a89d91SMatthias Ringwald             break;
10121d3a89d91SMatthias Ringwald         }
10122d3a89d91SMatthias Ringwald     }
10123d3a89d91SMatthias Ringwald 
10124d3a89d91SMatthias Ringwald     // free structs on error
10125d3a89d91SMatthias Ringwald     if (status != ERROR_CODE_SUCCESS){
10126d3a89d91SMatthias Ringwald         hci_iso_stream_finalize_by_type_and_group_id(HCI_ISO_TYPE_CIS, cig_params->cig_id);
10127d3a89d91SMatthias Ringwald         return status;
10128d3a89d91SMatthias Ringwald     }
10129d3a89d91SMatthias Ringwald 
10130d3a89d91SMatthias Ringwald     le_audio_cig_t * cig = storage;
10131d3a89d91SMatthias Ringwald     cig->cig_id = cig_params->cig_id;
10132d3a89d91SMatthias Ringwald     cig->num_cis = cig_params->num_cis;
10133d3a89d91SMatthias Ringwald     cig->params = cig_params;
10134d3a89d91SMatthias Ringwald     cig->state = LE_AUDIO_CIG_STATE_CREATE;
10135444e371eSMatthias Ringwald     for (i=0;i<cig->num_cis;i++){
10136444e371eSMatthias Ringwald         cig->cis_con_handles[i] = HCI_CON_HANDLE_INVALID;
10137444e371eSMatthias Ringwald         cig->acl_con_handles[i] = HCI_CON_HANDLE_INVALID;
101380f0ba168SMatthias Ringwald         cig->cis_setup_active[i] = false;
101390f0ba168SMatthias Ringwald         cig->cis_established[i] = false;
10140444e371eSMatthias Ringwald     }
10141d3a89d91SMatthias Ringwald     btstack_linked_list_add(&hci_stack->le_audio_cigs, (btstack_linked_item_t *) cig);
10142d3a89d91SMatthias Ringwald 
10143d3a89d91SMatthias Ringwald     hci_run();
10144d3a89d91SMatthias Ringwald 
10145d3a89d91SMatthias Ringwald     return ERROR_CODE_SUCCESS;
10146d3a89d91SMatthias Ringwald }
10147d3a89d91SMatthias Ringwald 
10148444e371eSMatthias Ringwald uint8_t gap_cis_create(uint8_t cig_handle, hci_con_handle_t cis_con_handles [], hci_con_handle_t acl_con_handles []){
10149444e371eSMatthias Ringwald     le_audio_cig_t * cig = hci_cig_for_id(cig_handle);
10150444e371eSMatthias Ringwald     if (cig == NULL){
10151444e371eSMatthias Ringwald         return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
10152444e371eSMatthias Ringwald     }
10153444e371eSMatthias Ringwald 
10154444e371eSMatthias Ringwald     if (cig->state != LE_AUDIO_CIG_STATE_W4_CIS_REQUEST){
10155444e371eSMatthias Ringwald         return ERROR_CODE_COMMAND_DISALLOWED;
10156444e371eSMatthias Ringwald     }
10157444e371eSMatthias Ringwald 
10158444e371eSMatthias Ringwald     // store ACL Connection Handles
10159444e371eSMatthias Ringwald     uint8_t i;
10160444e371eSMatthias Ringwald     for (i=0;i<cig->num_cis;i++){
1016156bd2ec0SMatthias Ringwald         // check that all con handles exist and store
10162444e371eSMatthias Ringwald         hci_con_handle_t cis_handle = cis_con_handles[i];
1016336468e6fSMatthias Ringwald         if (cis_handle == HCI_CON_HANDLE_INVALID){
1016436468e6fSMatthias Ringwald             return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
1016536468e6fSMatthias Ringwald         }
10166444e371eSMatthias Ringwald         uint8_t j;
10167444e371eSMatthias Ringwald         bool found = false;
10168444e371eSMatthias Ringwald         for (j=0;j<cig->num_cis;j++){
10169444e371eSMatthias Ringwald             if (cig->cis_con_handles[j] == cis_handle){
10170444e371eSMatthias Ringwald                 cig->acl_con_handles[j] = acl_con_handles[j];
1017156bd2ec0SMatthias Ringwald                 hci_iso_stream_t * iso_stream = hci_iso_stream_for_con_handle(cis_handle);
1017256bd2ec0SMatthias Ringwald                 btstack_assert(iso_stream != NULL);
1017356bd2ec0SMatthias Ringwald                 iso_stream->acl_handle = acl_con_handles[j];
1017436468e6fSMatthias Ringwald                 found = true;
10175444e371eSMatthias Ringwald                 break;
10176444e371eSMatthias Ringwald             }
10177444e371eSMatthias Ringwald         }
10178444e371eSMatthias Ringwald         if (!found){
10179444e371eSMatthias Ringwald             return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
10180444e371eSMatthias Ringwald         }
10181444e371eSMatthias Ringwald     }
10182444e371eSMatthias Ringwald 
10183444e371eSMatthias Ringwald     cig->state = LE_AUDIO_CIG_STATE_CREATE_CIS;
10184444e371eSMatthias Ringwald     hci_run();
10185444e371eSMatthias Ringwald 
10186444e371eSMatthias Ringwald     return ERROR_CODE_SUCCESS;
10187444e371eSMatthias Ringwald }
10188444e371eSMatthias Ringwald 
10189969d876aSMatthias Ringwald static uint8_t hci_cis_accept_or_reject(hci_con_handle_t cis_handle, hci_iso_stream_state_t state){
10190969d876aSMatthias Ringwald     hci_iso_stream_t * iso_stream = hci_iso_stream_for_con_handle(cis_handle);
101916fd1d2c8SMatthias Ringwald     if (iso_stream == NULL){
101926fd1d2c8SMatthias Ringwald         // if we got a CIS Request but fail to allocate a hci_iso_stream_t object, we won't find it here
10193969d876aSMatthias Ringwald         return ERROR_CODE_MEMORY_CAPACITY_EXCEEDED;
1019426b93350SMatthias Ringwald     }
1019526b93350SMatthias Ringwald 
101966fd1d2c8SMatthias Ringwald     // set next state and continue
101976fd1d2c8SMatthias Ringwald     iso_stream->state = state;
1019826b93350SMatthias Ringwald     hci_run();
1019926b93350SMatthias Ringwald     return ERROR_CODE_SUCCESS;
1020026b93350SMatthias Ringwald }
1020126b93350SMatthias Ringwald 
1020226b93350SMatthias Ringwald uint8_t gap_cis_accept(hci_con_handle_t cis_con_handle){
1020326b93350SMatthias Ringwald     return hci_cis_accept_or_reject(cis_con_handle, HCI_ISO_STREAM_W2_ACCEPT);
1020426b93350SMatthias Ringwald }
1020526b93350SMatthias Ringwald 
1020626b93350SMatthias Ringwald uint8_t gap_cis_reject(hci_con_handle_t cis_con_handle){
1020726b93350SMatthias Ringwald     return hci_cis_accept_or_reject(cis_con_handle, HCI_ISO_STREAM_W2_REJECT);
1020826b93350SMatthias Ringwald }
1020926b93350SMatthias Ringwald 
1021026b93350SMatthias Ringwald 
10211f40c73b4SMatthias Ringwald #endif
102124ae8623eSMatthias Ringwald #endif /* ENABLE_BLE */
10213f40c73b4SMatthias Ringwald 
10214eddac615SMatthias Ringwald #ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
1021518976c74SMatthias Ringwald void hci_setup_test_connections_fuzz(void){
1021618976c74SMatthias Ringwald     hci_connection_t * conn;
1021718976c74SMatthias Ringwald 
1021818976c74SMatthias Ringwald     // default address: 66:55:44:33:00:01
1021918976c74SMatthias Ringwald     bd_addr_t addr = { 0x66, 0x55, 0x44, 0x33, 0x00, 0x00};
1022018976c74SMatthias Ringwald 
102217d33cb26SMilanka Ringwald     // setup Controller info
102227d33cb26SMilanka Ringwald     hci_stack->num_cmd_packets = 255;
102237d33cb26SMilanka Ringwald     hci_stack->acl_packets_total_num = 255;
102247d33cb26SMilanka Ringwald 
1022518976c74SMatthias Ringwald     // setup incoming Classic ACL connection with con handle 0x0001, 66:55:44:33:22:01
1022618976c74SMatthias Ringwald     addr[5] = 0x01;
1022717ab8643SMatthias Ringwald     conn = create_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL, HCI_ROLE_SLAVE);
1022818976c74SMatthias Ringwald     conn->con_handle = addr[5];
1022918976c74SMatthias Ringwald     conn->state = RECEIVED_CONNECTION_REQUEST;
102307d33cb26SMilanka Ringwald     conn->sm_connection.sm_role = HCI_ROLE_SLAVE;
1023118976c74SMatthias Ringwald 
1023218976c74SMatthias Ringwald     // setup incoming Classic SCO connection with con handle 0x0002
1023318976c74SMatthias Ringwald     addr[5] = 0x02;
1023417ab8643SMatthias Ringwald     conn = create_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_SCO, HCI_ROLE_SLAVE);
1023518976c74SMatthias Ringwald     conn->con_handle = addr[5];
1023618976c74SMatthias Ringwald     conn->state = RECEIVED_CONNECTION_REQUEST;
102377d33cb26SMilanka Ringwald     conn->sm_connection.sm_role = HCI_ROLE_SLAVE;
1023818976c74SMatthias Ringwald 
1023918976c74SMatthias Ringwald     // setup ready Classic ACL connection with con handle 0x0003
1024018976c74SMatthias Ringwald     addr[5] = 0x03;
1024117ab8643SMatthias Ringwald     conn = create_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_ACL, HCI_ROLE_SLAVE);
1024218976c74SMatthias Ringwald     conn->con_handle = addr[5];
1024318976c74SMatthias Ringwald     conn->state = OPEN;
102447d33cb26SMilanka Ringwald     conn->sm_connection.sm_role = HCI_ROLE_SLAVE;
1024518976c74SMatthias Ringwald 
1024618976c74SMatthias Ringwald     // setup ready Classic SCO connection with con handle 0x0004
1024718976c74SMatthias Ringwald     addr[5] = 0x04;
1024817ab8643SMatthias Ringwald     conn = create_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_SCO, HCI_ROLE_SLAVE);
1024918976c74SMatthias Ringwald     conn->con_handle = addr[5];
1025018976c74SMatthias Ringwald     conn->state = OPEN;
102517d33cb26SMilanka Ringwald     conn->sm_connection.sm_role = HCI_ROLE_SLAVE;
1025218976c74SMatthias Ringwald 
1025318976c74SMatthias Ringwald     // setup ready LE ACL connection with con handle 0x005 and public address
1025418976c74SMatthias Ringwald     addr[5] = 0x05;
1025517ab8643SMatthias Ringwald     conn = create_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_LE_PUBLIC, HCI_ROLE_SLAVE);
1025618976c74SMatthias Ringwald     conn->con_handle = addr[5];
1025718976c74SMatthias Ringwald     conn->state = OPEN;
102587d33cb26SMilanka Ringwald     conn->sm_connection.sm_role = HCI_ROLE_SLAVE;
102598046a24aSMatthias Ringwald     conn->sm_connection.sm_connection_encrypted = 1;
1026018976c74SMatthias Ringwald }
1026118976c74SMatthias Ringwald 
10262eddac615SMatthias Ringwald void hci_free_connections_fuzz(void){
10263eddac615SMatthias Ringwald     btstack_linked_list_iterator_t it;
10264eddac615SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &hci_stack->connections);
10265eddac615SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
10266eddac615SMatthias Ringwald         hci_connection_t * con = (hci_connection_t*) btstack_linked_list_iterator_next(&it);
10267eddac615SMatthias Ringwald         btstack_linked_list_iterator_remove(&it);
10268eddac615SMatthias Ringwald         btstack_memory_hci_connection_free(con);
10269eddac615SMatthias Ringwald     }
10270eddac615SMatthias Ringwald }
102711470db0cSMatthias Ringwald void hci_simulate_working_fuzz(void){
10272b6ffb67fSMatthias Ringwald     hci_stack->le_scanning_param_update = false;
102731470db0cSMatthias Ringwald     hci_init_done();
102741470db0cSMatthias Ringwald     hci_stack->num_cmd_packets = 255;
102751470db0cSMatthias Ringwald }
10276eddac615SMatthias Ringwald #endif
10277