xref: /btstack/src/hci.c (revision 4696bddb902db60ae3029da0a039e2141e40e925)
11f504dbdSmatthias.ringwald /*
2a0c35809S[email protected]  * Copyright (C) 2014 BlueKitchen GmbH
31713bceaSmatthias.ringwald  *
41713bceaSmatthias.ringwald  * Redistribution and use in source and binary forms, with or without
51713bceaSmatthias.ringwald  * modification, are permitted provided that the following conditions
61713bceaSmatthias.ringwald  * are met:
71713bceaSmatthias.ringwald  *
81713bceaSmatthias.ringwald  * 1. Redistributions of source code must retain the above copyright
91713bceaSmatthias.ringwald  *    notice, this list of conditions and the following disclaimer.
101713bceaSmatthias.ringwald  * 2. Redistributions in binary form must reproduce the above copyright
111713bceaSmatthias.ringwald  *    notice, this list of conditions and the following disclaimer in the
121713bceaSmatthias.ringwald  *    documentation and/or other materials provided with the distribution.
131713bceaSmatthias.ringwald  * 3. Neither the name of the copyright holders nor the names of
141713bceaSmatthias.ringwald  *    contributors may be used to endorse or promote products derived
151713bceaSmatthias.ringwald  *    from this software without specific prior written permission.
166b64433eSmatthias.ringwald  * 4. Any redistribution, use, or modification is done solely for
176b64433eSmatthias.ringwald  *    personal benefit and not for any commercial purpose or for
186b64433eSmatthias.ringwald  *    monetary gain.
191713bceaSmatthias.ringwald  *
20a0c35809S[email protected]  * THIS SOFTWARE IS PROVIDED BY BLUEKITCHEN GMBH AND CONTRIBUTORS
211713bceaSmatthias.ringwald  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
221713bceaSmatthias.ringwald  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
231713bceaSmatthias.ringwald  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL MATTHIAS
241713bceaSmatthias.ringwald  * RINGWALD OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
251713bceaSmatthias.ringwald  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
261713bceaSmatthias.ringwald  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
271713bceaSmatthias.ringwald  * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
281713bceaSmatthias.ringwald  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
291713bceaSmatthias.ringwald  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
301713bceaSmatthias.ringwald  * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
311713bceaSmatthias.ringwald  * SUCH DAMAGE.
321713bceaSmatthias.ringwald  *
33a0c35809S[email protected]  * Please inquire about commercial licensing options at
34a0c35809S[email protected]  * [email protected]
356b64433eSmatthias.ringwald  *
361713bceaSmatthias.ringwald  */
371713bceaSmatthias.ringwald 
381713bceaSmatthias.ringwald /*
391f504dbdSmatthias.ringwald  *  hci.c
401f504dbdSmatthias.ringwald  *
411f504dbdSmatthias.ringwald  *  Created by Matthias Ringwald on 4/29/09.
421f504dbdSmatthias.ringwald  *
431f504dbdSmatthias.ringwald  */
441f504dbdSmatthias.ringwald 
45bde315ceS[email protected] #include "btstack-config.h"
4628171530Smatthias.ringwald 
477f2435e6Smatthias.ringwald #include "hci.h"
484c57c146S[email protected] #include "gap.h"
497f2435e6Smatthias.ringwald 
5093b8dc03Smatthias.ringwald #include <stdarg.h>
5193b8dc03Smatthias.ringwald #include <string.h>
5256fe0872Smatthias.ringwald #include <stdio.h>
537f2435e6Smatthias.ringwald 
54549e6ebeSmatthias.ringwald #ifndef EMBEDDED
55fe475138S[email protected] #ifdef _WIN32
56fe475138S[email protected] #include "Winsock2.h"
57fe475138S[email protected] #else
58549e6ebeSmatthias.ringwald #include <unistd.h> // gethostbyname
59fe475138S[email protected] #endif
6009ba8edeSmatthias.ringwald #include <btstack/version.h>
61549e6ebeSmatthias.ringwald #endif
62549e6ebeSmatthias.ringwald 
63a3b02b71Smatthias.ringwald #include "btstack_memory.h"
647f2435e6Smatthias.ringwald #include "debug.h"
65d8905019Smatthias.ringwald #include "hci_dump.h"
6693b8dc03Smatthias.ringwald 
67da886c03S[email protected] #include <btstack/linked_list.h>
68ae1fd9f3Smatthias.ringwald #include <btstack/hci_cmds.h>
691b0e3922Smatthias.ringwald 
70169f8b28Smatthias.ringwald #define HCI_CONNECTION_TIMEOUT_MS 10000
71ee091cf1Smatthias.ringwald 
7228171530Smatthias.ringwald #ifdef USE_BLUETOOL
733d7a3f67S[email protected] #include "../platforms/ios/src/bt_control_iphone.h"
7428171530Smatthias.ringwald #endif
7528171530Smatthias.ringwald 
76758b46ceSmatthias.ringwald static void hci_update_scan_enable(void);
77a00031e2S[email protected] static gap_security_level_t gap_security_level_for_connection(hci_connection_t * connection);
7896a45072S[email protected] static void hci_connection_timeout_handler(timer_source_t *timer);
7996a45072S[email protected] static void hci_connection_timestamp(hci_connection_t *connection);
807586ee35S[email protected] static int  hci_power_control_on(void);
817586ee35S[email protected] static void hci_power_control_off(void);
826155b3d3S[email protected] static void hci_state_reset();
83758b46ceSmatthias.ringwald 
8406b35ec0Smatthias.ringwald // the STACK is here
853a9fb326S[email protected] #ifndef HAVE_MALLOC
863a9fb326S[email protected] static hci_stack_t   hci_stack_static;
873a9fb326S[email protected] #endif
883a9fb326S[email protected] static hci_stack_t * hci_stack = NULL;
8916833f0aSmatthias.ringwald 
9066fb9560S[email protected] // test helper
9166fb9560S[email protected] static uint8_t disable_l2cap_timeouts = 0;
9266fb9560S[email protected] 
9396a45072S[email protected] /**
9496a45072S[email protected]  * create connection for given address
9596a45072S[email protected]  *
9696a45072S[email protected]  * @return connection OR NULL, if no memory left
9796a45072S[email protected]  */
9896a45072S[email protected] static hci_connection_t * create_connection_for_bd_addr_and_type(bd_addr_t addr, bd_addr_type_t addr_type){
991a06f663S[email protected]     log_info("create_connection_for_addr %s, type %x", bd_addr_to_str(addr), addr_type);
100bb69aaaeS[email protected]     hci_connection_t * conn = btstack_memory_hci_connection_get();
10196a45072S[email protected]     if (!conn) return NULL;
102c91d150bS[email protected]     memset(conn, 0, sizeof(hci_connection_t));
10396a45072S[email protected]     BD_ADDR_COPY(conn->address, addr);
10496a45072S[email protected]     conn->address_type = addr_type;
10596a45072S[email protected]     conn->con_handle = 0xffff;
10696a45072S[email protected]     conn->authentication_flags = AUTH_FLAGS_NONE;
10796a45072S[email protected]     conn->bonding_flags = 0;
10896a45072S[email protected]     conn->requested_security_level = LEVEL_0;
10996a45072S[email protected]     linked_item_set_user(&conn->timeout.item, conn);
11096a45072S[email protected]     conn->timeout.process = hci_connection_timeout_handler;
11196a45072S[email protected]     hci_connection_timestamp(conn);
11296a45072S[email protected]     conn->acl_recombination_length = 0;
11396a45072S[email protected]     conn->acl_recombination_pos = 0;
11496a45072S[email protected]     conn->num_acl_packets_sent = 0;
1151a06f663S[email protected]     conn->num_sco_packets_sent = 0;
116da886c03S[email protected]     conn->le_con_parameter_update_state = CON_PARAMETER_UPDATE_NONE;
11796a45072S[email protected]     linked_list_add(&hci_stack->connections, (linked_item_t *) conn);
11896a45072S[email protected]     return conn;
11996a45072S[email protected] }
12066fb9560S[email protected] 
121da886c03S[email protected] 
122da886c03S[email protected] /**
123da886c03S[email protected]  * get le connection parameter range
124da886c03S[email protected] *
125da886c03S[email protected]  * @return le connection parameter range struct
126da886c03S[email protected]  */
127da886c03S[email protected] le_connection_parameter_range_t gap_le_get_connection_parameter_range(){
128da886c03S[email protected]     return hci_stack->le_connection_parameter_range;
129da886c03S[email protected] }
130da886c03S[email protected] 
131da886c03S[email protected] /**
132da886c03S[email protected]  * set le connection parameter range
133da886c03S[email protected]  *
134da886c03S[email protected]  */
135da886c03S[email protected] 
136da886c03S[email protected] void gap_le_set_connection_parameter_range(le_connection_parameter_range_t range){
137da886c03S[email protected]     hci_stack->le_connection_parameter_range.le_conn_interval_min = range.le_conn_interval_min;
138da886c03S[email protected]     hci_stack->le_connection_parameter_range.le_conn_interval_max = range.le_conn_interval_max;
139da886c03S[email protected]     hci_stack->le_connection_parameter_range.le_conn_interval_min = range.le_conn_latency_min;
140da886c03S[email protected]     hci_stack->le_connection_parameter_range.le_conn_interval_max = range.le_conn_latency_max;
141da886c03S[email protected]     hci_stack->le_connection_parameter_range.le_supervision_timeout_min = range.le_supervision_timeout_min;
142da886c03S[email protected]     hci_stack->le_connection_parameter_range.le_supervision_timeout_max = range.le_supervision_timeout_max;
143da886c03S[email protected] }
144da886c03S[email protected] 
145da886c03S[email protected] /**
146da886c03S[email protected]  * get hci connections iterator
147da886c03S[email protected]  *
148da886c03S[email protected]  * @return hci connections iterator
149da886c03S[email protected]  */
150da886c03S[email protected] 
151da886c03S[email protected] void hci_connections_get_iterator(linked_list_iterator_t *it){
152da886c03S[email protected]     linked_list_iterator_init(it, &hci_stack->connections);
153da886c03S[email protected] }
154da886c03S[email protected] 
15597addcc5Smatthias.ringwald /**
156ee091cf1Smatthias.ringwald  * get connection for a given handle
157ee091cf1Smatthias.ringwald  *
158ee091cf1Smatthias.ringwald  * @return connection OR NULL, if not found
159ee091cf1Smatthias.ringwald  */
1605061f3afS[email protected] hci_connection_t * hci_connection_for_handle(hci_con_handle_t con_handle){
161da886c03S[email protected]     linked_list_iterator_t it;
162da886c03S[email protected]     linked_list_iterator_init(&it, &hci_stack->connections);
163da886c03S[email protected]     while (linked_list_iterator_has_next(&it)){
164da886c03S[email protected]         hci_connection_t * item = (hci_connection_t *) linked_list_iterator_next(&it);
1653ac2fe56S[email protected]         if ( item->con_handle == con_handle ) {
166da886c03S[email protected]             return item;
167ee091cf1Smatthias.ringwald         }
168ee091cf1Smatthias.ringwald     }
169ee091cf1Smatthias.ringwald     return NULL;
170ee091cf1Smatthias.ringwald }
171ee091cf1Smatthias.ringwald 
17296a45072S[email protected] /**
17396a45072S[email protected]  * get connection for given address
17496a45072S[email protected]  *
17596a45072S[email protected]  * @return connection OR NULL, if not found
17696a45072S[email protected]  */
1772e77e513S[email protected] hci_connection_t * hci_connection_for_bd_addr_and_type(bd_addr_t  addr, bd_addr_type_t addr_type){
178da886c03S[email protected]     linked_list_iterator_t it;
179da886c03S[email protected]     linked_list_iterator_init(&it, &hci_stack->connections);
180da886c03S[email protected]     while (linked_list_iterator_has_next(&it)){
181da886c03S[email protected]         hci_connection_t * connection = (hci_connection_t *) linked_list_iterator_next(&it);
18296a45072S[email protected]         if (connection->address_type != addr_type)  continue;
18396a45072S[email protected]         if (memcmp(addr, connection->address, 6) != 0) continue;
18462bda3fbS[email protected]         return connection;
18562bda3fbS[email protected]     }
18662bda3fbS[email protected]     return NULL;
18762bda3fbS[email protected] }
18862bda3fbS[email protected] 
1892b12a0b9Smatthias.ringwald static void hci_connection_timeout_handler(timer_source_t *timer){
19028ca2b46S[email protected]     hci_connection_t * connection = (hci_connection_t *) linked_item_get_user(&timer->item);
191c785ef68Smatthias.ringwald #ifdef HAVE_TIME
192ee091cf1Smatthias.ringwald     struct timeval tv;
193ee091cf1Smatthias.ringwald     gettimeofday(&tv, NULL);
194c21e6239Smatthias.ringwald     if (tv.tv_sec >= connection->timestamp.tv_sec + HCI_CONNECTION_TIMEOUT_MS/1000) {
195ee091cf1Smatthias.ringwald         // connections might be timed out
196ee091cf1Smatthias.ringwald         hci_emit_l2cap_check_timeout(connection);
197ee091cf1Smatthias.ringwald     }
1982b12a0b9Smatthias.ringwald #endif
199e5780900Smatthias.ringwald #ifdef HAVE_TICK
200c785ef68Smatthias.ringwald     if (embedded_get_ticks() > connection->timestamp + embedded_ticks_for_ms(HCI_CONNECTION_TIMEOUT_MS)){
201c785ef68Smatthias.ringwald         // connections might be timed out
202c785ef68Smatthias.ringwald         hci_emit_l2cap_check_timeout(connection);
203c785ef68Smatthias.ringwald     }
204c785ef68Smatthias.ringwald #endif
205c785ef68Smatthias.ringwald     run_loop_set_timer(timer, HCI_CONNECTION_TIMEOUT_MS);
206c785ef68Smatthias.ringwald     run_loop_add_timer(timer);
207c785ef68Smatthias.ringwald }
208ee091cf1Smatthias.ringwald 
209ee091cf1Smatthias.ringwald static void hci_connection_timestamp(hci_connection_t *connection){
210c7492964Smatthias.ringwald #ifdef HAVE_TIME
211ee091cf1Smatthias.ringwald     gettimeofday(&connection->timestamp, NULL);
212c7492964Smatthias.ringwald #endif
213e5780900Smatthias.ringwald #ifdef HAVE_TICK
214c785ef68Smatthias.ringwald     connection->timestamp = embedded_get_ticks();
215c785ef68Smatthias.ringwald #endif
216ee091cf1Smatthias.ringwald }
217ee091cf1Smatthias.ringwald 
21806b35ec0Smatthias.ringwald 
21928ca2b46S[email protected] inline static void connectionSetAuthenticationFlags(hci_connection_t * conn, hci_authentication_flags_t flags){
22028ca2b46S[email protected]     conn->authentication_flags = (hci_authentication_flags_t)(conn->authentication_flags | flags);
22128ca2b46S[email protected] }
22228ca2b46S[email protected] 
22328ca2b46S[email protected] inline static void connectionClearAuthenticationFlags(hci_connection_t * conn, hci_authentication_flags_t flags){
22428ca2b46S[email protected]     conn->authentication_flags = (hci_authentication_flags_t)(conn->authentication_flags & ~flags);
22528ca2b46S[email protected] }
22628ca2b46S[email protected] 
22728ca2b46S[email protected] 
22843bfb1bdSmatthias.ringwald /**
22980ca58a0Smatthias.ringwald  * add authentication flags and reset timer
23096a45072S[email protected]  * @note: assumes classic connection
2312e77e513S[email protected]  * @note: bd_addr is passed in as litle endian uint8_t * as it is called from parsing packets
2327fde4af9Smatthias.ringwald  */
2337fde4af9Smatthias.ringwald static void hci_add_connection_flags_for_flipped_bd_addr(uint8_t *bd_addr, hci_authentication_flags_t flags){
2347fde4af9Smatthias.ringwald     bd_addr_t addr;
2352e77e513S[email protected]     bt_flip_addr(addr, bd_addr);
2362e77e513S[email protected]     hci_connection_t * conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_CLASSIC);
2377fde4af9Smatthias.ringwald     if (conn) {
23828ca2b46S[email protected]         connectionSetAuthenticationFlags(conn, flags);
23980ca58a0Smatthias.ringwald         hci_connection_timestamp(conn);
2407fde4af9Smatthias.ringwald     }
2417fde4af9Smatthias.ringwald }
2427fde4af9Smatthias.ringwald 
24380ca58a0Smatthias.ringwald int  hci_authentication_active_for_handle(hci_con_handle_t handle){
2445061f3afS[email protected]     hci_connection_t * conn = hci_connection_for_handle(handle);
24580ca58a0Smatthias.ringwald     if (!conn) return 0;
2466724cd9eS[email protected]     if (conn->authentication_flags & LEGACY_PAIRING_ACTIVE) return 1;
2476724cd9eS[email protected]     if (conn->authentication_flags & SSP_PAIRING_ACTIVE) return 1;
2486724cd9eS[email protected]     return 0;
24980ca58a0Smatthias.ringwald }
25080ca58a0Smatthias.ringwald 
2512e77e513S[email protected] void hci_drop_link_key_for_bd_addr(bd_addr_t addr){
2523a9fb326S[email protected]     if (hci_stack->remote_device_db) {
2533a9fb326S[email protected]         hci_stack->remote_device_db->delete_link_key(addr);
254c12e46e7Smatthias.ringwald     }
255c12e46e7Smatthias.ringwald }
256c12e46e7Smatthias.ringwald 
2570bf6344aS[email protected] int hci_is_le_connection(hci_connection_t * connection){
2580bf6344aS[email protected]     return  connection->address_type == BD_ADDR_TYPE_LE_PUBLIC ||
2590bf6344aS[email protected]     connection->address_type == BD_ADDR_TYPE_LE_RANDOM;
2600bf6344aS[email protected] }
2610bf6344aS[email protected] 
2627fde4af9Smatthias.ringwald 
2637fde4af9Smatthias.ringwald /**
26443bfb1bdSmatthias.ringwald  * count connections
26543bfb1bdSmatthias.ringwald  */
26640d1c7a4Smatthias.ringwald static int nr_hci_connections(void){
26756c253c9Smatthias.ringwald     int count = 0;
26843bfb1bdSmatthias.ringwald     linked_item_t *it;
2693a9fb326S[email protected]     for (it = (linked_item_t *) hci_stack->connections; it ; it = it->next, count++);
27043bfb1bdSmatthias.ringwald     return count;
27143bfb1bdSmatthias.ringwald }
272c8e4258aSmatthias.ringwald 
27397addcc5Smatthias.ringwald /**
274ba681a6cSmatthias.ringwald  * Dummy handler called by HCI
27516833f0aSmatthias.ringwald  */
2762718e2e7Smatthias.ringwald static void dummy_handler(uint8_t packet_type, uint8_t *packet, uint16_t size){
27716833f0aSmatthias.ringwald }
27816833f0aSmatthias.ringwald 
279998906cdSmatthias.ringwald uint8_t hci_number_outgoing_packets(hci_con_handle_t handle){
2805061f3afS[email protected]     hci_connection_t * connection = hci_connection_for_handle(handle);
281998906cdSmatthias.ringwald     if (!connection) {
2829da54300S[email protected]         log_error("hci_number_outgoing_packets: connection for handle %u does not exist!", handle);
283998906cdSmatthias.ringwald         return 0;
284998906cdSmatthias.ringwald     }
285998906cdSmatthias.ringwald     return connection->num_acl_packets_sent;
286998906cdSmatthias.ringwald }
287998906cdSmatthias.ringwald 
288e79abdd6S[email protected] uint8_t hci_number_free_acl_slots_for_handle(hci_con_handle_t con_handle){
289ee303eddS[email protected] 
290ee303eddS[email protected]     int num_packets_sent_classic = 0;
291ee303eddS[email protected]     int num_packets_sent_le = 0;
292ee303eddS[email protected] 
293ee303eddS[email protected]     bd_addr_type_t address_type = BD_ADDR_TYPE_UNKNOWN;
294ee303eddS[email protected] 
295998906cdSmatthias.ringwald     linked_item_t *it;
2963a9fb326S[email protected]     for (it = (linked_item_t *) hci_stack->connections; it ; it = it->next){
297998906cdSmatthias.ringwald         hci_connection_t * connection = (hci_connection_t *) it;
298ee303eddS[email protected]         if (connection->address_type == BD_ADDR_TYPE_CLASSIC){
299ee303eddS[email protected]             num_packets_sent_classic += connection->num_acl_packets_sent;
300ee303eddS[email protected]         } else {
301ee303eddS[email protected]             num_packets_sent_le += connection->num_acl_packets_sent;
302ee303eddS[email protected]         }
303ccda6e14S[email protected]         // ignore connections that are not open, e.g., in state RECEIVED_DISCONNECTION_COMPLETE
304ccda6e14S[email protected]         if (connection->con_handle == con_handle && connection->state == OPEN){
305ee303eddS[email protected]             address_type = connection->address_type;
306ee303eddS[email protected]         }
307ee303eddS[email protected]     }
308ee303eddS[email protected] 
309ee303eddS[email protected]     int free_slots_classic = hci_stack->acl_packets_total_num - num_packets_sent_classic;
310ee303eddS[email protected]     int free_slots_le = 0;
311ee303eddS[email protected] 
312ee303eddS[email protected]     if (free_slots_classic < 0){
3139da54300S[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);
314998906cdSmatthias.ringwald         return 0;
315998906cdSmatthias.ringwald     }
316ee303eddS[email protected] 
317ee303eddS[email protected]     if (hci_stack->le_acl_packets_total_num){
318ee303eddS[email protected]         // if we have LE slots, they are used
319ee303eddS[email protected]         free_slots_le = hci_stack->le_acl_packets_total_num - num_packets_sent_le;
320ee303eddS[email protected]         if (free_slots_le < 0){
3219da54300S[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);
322ee303eddS[email protected]             return 0;
323998906cdSmatthias.ringwald         }
324ee303eddS[email protected]     } else {
325ee303eddS[email protected]         // otherwise, classic slots are used for LE, too
326ee303eddS[email protected]         free_slots_classic -= num_packets_sent_le;
327ee303eddS[email protected]         if (free_slots_classic < 0){
3289da54300S[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);
329ee303eddS[email protected]             return 0;
330ee303eddS[email protected]         }
331ee303eddS[email protected]     }
332ee303eddS[email protected] 
333ee303eddS[email protected]     switch (address_type){
334ee303eddS[email protected]         case BD_ADDR_TYPE_UNKNOWN:
3359da54300S[email protected]             log_error("hci_number_free_acl_slots: handle 0x%04x not in connection list", con_handle);
336ee303eddS[email protected]             return 0;
337ee303eddS[email protected] 
338ee303eddS[email protected]         case BD_ADDR_TYPE_CLASSIC:
339ee303eddS[email protected]             return free_slots_classic;
340ee303eddS[email protected] 
341ee303eddS[email protected]         default:
342cb00d3aaS[email protected]            if (hci_stack->le_acl_packets_total_num){
343ee303eddS[email protected]                return free_slots_le;
344ee303eddS[email protected]            }
345cb00d3aaS[email protected]            return free_slots_classic;
346cb00d3aaS[email protected]     }
347998906cdSmatthias.ringwald }
348998906cdSmatthias.ringwald 
34944d0e3d5S[email protected] int hci_number_free_sco_slots_for_handle(hci_con_handle_t handle){
350e35edcc1S[email protected]     int num_sco_packets_sent = 0;
351e35edcc1S[email protected]     linked_item_t *it;
352e35edcc1S[email protected]     for (it = (linked_item_t *) hci_stack->connections; it ; it = it->next){
353e35edcc1S[email protected]         hci_connection_t * connection = (hci_connection_t *) it;
354e35edcc1S[email protected]         num_sco_packets_sent += connection->num_sco_packets_sent;
355e35edcc1S[email protected]     }
356e35edcc1S[email protected]     if (num_sco_packets_sent > hci_stack->sco_packets_total_num){
357e35edcc1S[email protected]         log_info("hci_number_free_sco_slots_for_handle: outgoing packets (%u) > total packets ()", num_sco_packets_sent, hci_stack->sco_packets_total_num);
35844d0e3d5S[email protected]         return 0;
35944d0e3d5S[email protected]     }
360e35edcc1S[email protected]     return hci_stack->sco_packets_total_num - num_sco_packets_sent;
361e35edcc1S[email protected] }
36244d0e3d5S[email protected] 
363ac928cc2S[email protected] // new functions replacing hci_can_send_packet_now[_using_packet_buffer]
364ac928cc2S[email protected] int hci_can_send_command_packet_now(void){
365ac928cc2S[email protected]     if (hci_stack->hci_packet_buffer_reserved) return 0;
366ac928cc2S[email protected] 
367ac928cc2S[email protected]     // check for async hci transport implementations
368ac928cc2S[email protected]     if (hci_stack->hci_transport->can_send_packet_now){
369ac928cc2S[email protected]         if (!hci_stack->hci_transport->can_send_packet_now(HCI_COMMAND_DATA_PACKET)){
370ac928cc2S[email protected]             return 0;
371ac928cc2S[email protected]         }
372ac928cc2S[email protected]     }
373ac928cc2S[email protected] 
374ac928cc2S[email protected]     return hci_stack->num_cmd_packets > 0;
375ac928cc2S[email protected] }
376ac928cc2S[email protected] 
377ac928cc2S[email protected] int hci_can_send_prepared_acl_packet_now(hci_con_handle_t con_handle) {
378ac928cc2S[email protected]     // check for async hci transport implementations
379ac928cc2S[email protected]     if (hci_stack->hci_transport->can_send_packet_now){
380ac928cc2S[email protected]         if (!hci_stack->hci_transport->can_send_packet_now(HCI_ACL_DATA_PACKET)){
381ac928cc2S[email protected]             return 0;
382ac928cc2S[email protected]         }
383ac928cc2S[email protected]     }
384e79abdd6S[email protected]     return hci_number_free_acl_slots_for_handle(con_handle) > 0;
385ac928cc2S[email protected] }
386ac928cc2S[email protected] 
387ac928cc2S[email protected] int hci_can_send_acl_packet_now(hci_con_handle_t con_handle){
388ac928cc2S[email protected]     if (hci_stack->hci_packet_buffer_reserved) return 0;
389ac928cc2S[email protected]     return hci_can_send_prepared_acl_packet_now(con_handle);
3906b4af23dS[email protected] }
3916b4af23dS[email protected] 
39244d0e3d5S[email protected] int hci_can_send_prepared_sco_packet_now(hci_con_handle_t con_handle){
39344d0e3d5S[email protected]     if (hci_stack->hci_transport->can_send_packet_now){
39444d0e3d5S[email protected]         if (!hci_stack->hci_transport->can_send_packet_now(HCI_SCO_DATA_PACKET)){
39544d0e3d5S[email protected]             return 0;
39644d0e3d5S[email protected]         }
39744d0e3d5S[email protected]     }
39844d0e3d5S[email protected]     return hci_number_free_sco_slots_for_handle(con_handle) > 0;
39944d0e3d5S[email protected] }
40044d0e3d5S[email protected] 
40144d0e3d5S[email protected] int hci_can_send_sco_packet_now(hci_con_handle_t con_handle){
40244d0e3d5S[email protected]     if (hci_stack->hci_packet_buffer_reserved) return 0;
40344d0e3d5S[email protected]     return hci_can_send_prepared_sco_packet_now(con_handle);
40444d0e3d5S[email protected] }
40544d0e3d5S[email protected] 
406c8b9416aS[email protected] // used for internal checks in l2cap[-le].c
407c8b9416aS[email protected] int hci_is_packet_buffer_reserved(void){
408c8b9416aS[email protected]     return hci_stack->hci_packet_buffer_reserved;
409c8b9416aS[email protected] }
410c8b9416aS[email protected] 
4116b4af23dS[email protected] // reserves outgoing packet buffer. @returns 1 if successful
4126b4af23dS[email protected] int hci_reserve_packet_buffer(void){
4139d14b626S[email protected]     if (hci_stack->hci_packet_buffer_reserved) {
4149d14b626S[email protected]         log_error("hci_reserve_packet_buffer called but buffer already reserved");
4159d14b626S[email protected]         return 0;
4169d14b626S[email protected]     }
4176b4af23dS[email protected]     hci_stack->hci_packet_buffer_reserved = 1;
4186b4af23dS[email protected]     return 1;
4196b4af23dS[email protected] }
4206b4af23dS[email protected] 
42168a0fcf7S[email protected] void hci_release_packet_buffer(void){
42268a0fcf7S[email protected]     hci_stack->hci_packet_buffer_reserved = 0;
42368a0fcf7S[email protected] }
42468a0fcf7S[email protected] 
4256b4af23dS[email protected] // assumption: synchronous implementations don't provide can_send_packet_now as they don't keep the buffer after the call
4266b4af23dS[email protected] int hci_transport_synchronous(void){
4276b4af23dS[email protected]     return hci_stack->hci_transport->can_send_packet_now == NULL;
4286b4af23dS[email protected] }
4296b4af23dS[email protected] 
4306c26b087S[email protected] uint16_t hci_max_acl_le_data_packet_length(void){
4316c26b087S[email protected]     return hci_stack->le_data_packets_length > 0 ? hci_stack->le_data_packets_length : hci_stack->acl_data_packet_length;
4326c26b087S[email protected] }
4336c26b087S[email protected] 
434452cf3bbS[email protected] static int hci_send_acl_packet_fragments(hci_connection_t *connection){
435452cf3bbS[email protected] 
436452cf3bbS[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);
437452cf3bbS[email protected] 
438452cf3bbS[email protected]     // max ACL data packet length depends on connection type (LE vs. Classic) and available buffers
439452cf3bbS[email protected]     uint16_t max_acl_data_packet_length = hci_stack->acl_data_packet_length;
440452cf3bbS[email protected]     if (hci_is_le_connection(connection) && hci_stack->le_data_packets_length > 0){
441452cf3bbS[email protected]         max_acl_data_packet_length = hci_stack->le_data_packets_length;
442452cf3bbS[email protected]     }
443452cf3bbS[email protected] 
444452cf3bbS[email protected]     // testing: reduce buffer to minimum
445452cf3bbS[email protected]     // max_acl_data_packet_length = 52;
446452cf3bbS[email protected] 
447452cf3bbS[email protected]     int err;
448452cf3bbS[email protected]     // multiple packets could be send on a synchronous HCI transport
449452cf3bbS[email protected]     while (1){
450452cf3bbS[email protected] 
451452cf3bbS[email protected]         // get current data
452452cf3bbS[email protected]         const uint16_t acl_header_pos = hci_stack->acl_fragmentation_pos - 4;
453452cf3bbS[email protected]         int current_acl_data_packet_length = hci_stack->acl_fragmentation_total_size - hci_stack->acl_fragmentation_pos;
454452cf3bbS[email protected]         int more_fragments = 0;
455452cf3bbS[email protected] 
456452cf3bbS[email protected]         // if ACL packet is larger than Bluetooth packet buffer, only send max_acl_data_packet_length
457452cf3bbS[email protected]         if (current_acl_data_packet_length > max_acl_data_packet_length){
458452cf3bbS[email protected]             more_fragments = 1;
459452cf3bbS[email protected]             current_acl_data_packet_length = max_acl_data_packet_length;
460452cf3bbS[email protected]         }
461452cf3bbS[email protected] 
462452cf3bbS[email protected]         // copy handle_and_flags if not first fragment and update packet boundary flags to be 01 (continuing fragmnent)
463452cf3bbS[email protected]         if (acl_header_pos > 0){
464452cf3bbS[email protected]             uint16_t handle_and_flags = READ_BT_16(hci_stack->hci_packet_buffer, 0);
465452cf3bbS[email protected]             handle_and_flags = (handle_and_flags & 0xcfff) | (1 << 12);
466452cf3bbS[email protected]             bt_store_16(hci_stack->hci_packet_buffer, acl_header_pos, handle_and_flags);
467452cf3bbS[email protected]         }
468452cf3bbS[email protected] 
469452cf3bbS[email protected]         // update header len
470452cf3bbS[email protected]         bt_store_16(hci_stack->hci_packet_buffer, acl_header_pos + 2, current_acl_data_packet_length);
471452cf3bbS[email protected] 
472452cf3bbS[email protected]         // count packet
473452cf3bbS[email protected]         connection->num_acl_packets_sent++;
474452cf3bbS[email protected] 
475452cf3bbS[email protected]         // send packet
476452cf3bbS[email protected]         uint8_t * packet = &hci_stack->hci_packet_buffer[acl_header_pos];
477452cf3bbS[email protected]         const int size = current_acl_data_packet_length + 4;
4785bb5bc3eS[email protected]         hci_dump_packet(HCI_ACL_DATA_PACKET, 0, packet, size);
479452cf3bbS[email protected]         err = hci_stack->hci_transport->send_packet(HCI_ACL_DATA_PACKET, packet, size);
480452cf3bbS[email protected] 
481452cf3bbS[email protected]         // done yet?
482452cf3bbS[email protected]         if (!more_fragments) break;
483452cf3bbS[email protected] 
484452cf3bbS[email protected]         // update start of next fragment to send
485452cf3bbS[email protected]         hci_stack->acl_fragmentation_pos += current_acl_data_packet_length;
486452cf3bbS[email protected] 
487452cf3bbS[email protected]         // can send more?
488452cf3bbS[email protected]         if (!hci_can_send_prepared_acl_packet_now(connection->con_handle)) return err;
489452cf3bbS[email protected]     }
490452cf3bbS[email protected] 
491452cf3bbS[email protected]     // done
492452cf3bbS[email protected]     hci_stack->acl_fragmentation_pos = 0;
493452cf3bbS[email protected]     hci_stack->acl_fragmentation_total_size = 0;
494452cf3bbS[email protected] 
495d051460cS[email protected]     // release buffer now for synchronous transport
496203bace6S[email protected]     if (hci_transport_synchronous()){
497452cf3bbS[email protected]         hci_release_packet_buffer();
498690bd0baS[email protected]         // notify upper stack that iit might be possible to send again
499690bd0baS[email protected]         uint8_t event[] = { DAEMON_EVENT_HCI_PACKET_SENT, 0};
500690bd0baS[email protected]         hci_stack->packet_handler(HCI_EVENT_PACKET, &event[0], sizeof(event));
501452cf3bbS[email protected]     }
502452cf3bbS[email protected] 
503452cf3bbS[email protected]     return err;
504452cf3bbS[email protected] }
505452cf3bbS[email protected] 
506826f7347S[email protected] // pre: caller has reserved the packet buffer
507826f7347S[email protected] int hci_send_acl_packet_buffer(int size){
5087856c818Smatthias.ringwald 
509452cf3bbS[email protected]     // log_info("hci_send_acl_packet_buffer size %u", size);
510452cf3bbS[email protected] 
511826f7347S[email protected]     if (!hci_stack->hci_packet_buffer_reserved) {
512826f7347S[email protected]         log_error("hci_send_acl_packet_buffer called without reserving packet buffer");
513826f7347S[email protected]         return 0;
514826f7347S[email protected]     }
515826f7347S[email protected] 
516d713a683S[email protected]     uint8_t * packet = hci_stack->hci_packet_buffer;
517d713a683S[email protected]     hci_con_handle_t con_handle = READ_ACL_CONNECTION_HANDLE(packet);
518d713a683S[email protected] 
519826f7347S[email protected]     // check for free places on Bluetooth module
520d713a683S[email protected]     if (!hci_can_send_prepared_acl_packet_now(con_handle)) {
521826f7347S[email protected]         log_error("hci_send_acl_packet_buffer called but no free ACL buffers on controller");
52297b61c7bS[email protected]         hci_release_packet_buffer();
52397b61c7bS[email protected]         return BTSTACK_ACL_BUFFERS_FULL;
52497b61c7bS[email protected]     }
5256218e6f1Smatthias.ringwald 
5265061f3afS[email protected]     hci_connection_t *connection = hci_connection_for_handle( con_handle);
52797b61c7bS[email protected]     if (!connection) {
5285fa0b7cfS[email protected]         log_error("hci_send_acl_packet_buffer called but no connection for handle 0x%04x", con_handle);
52997b61c7bS[email protected]         hci_release_packet_buffer();
53097b61c7bS[email protected]         return 0;
53197b61c7bS[email protected]     }
53256cf178bSmatthias.ringwald     hci_connection_timestamp(connection);
53356cf178bSmatthias.ringwald 
534452cf3bbS[email protected]     // hci_dump_packet( HCI_ACL_DATA_PACKET, 0, packet, size);
5357856c818Smatthias.ringwald 
536452cf3bbS[email protected]     // setup data
537452cf3bbS[email protected]     hci_stack->acl_fragmentation_total_size = size;
538452cf3bbS[email protected]     hci_stack->acl_fragmentation_pos = 4;   // start of L2CAP packet
5396218e6f1Smatthias.ringwald 
540452cf3bbS[email protected]     return hci_send_acl_packet_fragments(connection);
541ee091cf1Smatthias.ringwald }
542ee091cf1Smatthias.ringwald 
54344d0e3d5S[email protected] // pre: caller has reserved the packet buffer
54444d0e3d5S[email protected] int hci_send_sco_packet_buffer(int size){
54544d0e3d5S[email protected] 
54644d0e3d5S[email protected]     // log_info("hci_send_acl_packet_buffer size %u", size);
54744d0e3d5S[email protected] 
54844d0e3d5S[email protected]     if (!hci_stack->hci_packet_buffer_reserved) {
54944d0e3d5S[email protected]         log_error("hci_send_acl_packet_buffer called without reserving packet buffer");
55044d0e3d5S[email protected]         return 0;
55144d0e3d5S[email protected]     }
55244d0e3d5S[email protected] 
55344d0e3d5S[email protected]     uint8_t * packet = hci_stack->hci_packet_buffer;
55444d0e3d5S[email protected]     hci_con_handle_t con_handle = READ_ACL_CONNECTION_HANDLE(packet);   // same for ACL and SCO
55544d0e3d5S[email protected] 
55644d0e3d5S[email protected]     // check for free places on Bluetooth module
55744d0e3d5S[email protected]     if (!hci_can_send_prepared_sco_packet_now(con_handle)) {
55844d0e3d5S[email protected]         log_error("hci_send_sco_packet_buffer called but no free ACL buffers on controller");
55944d0e3d5S[email protected]         hci_release_packet_buffer();
56044d0e3d5S[email protected]         return BTSTACK_ACL_BUFFERS_FULL;
56144d0e3d5S[email protected]     }
56244d0e3d5S[email protected] 
563e35edcc1S[email protected]     // track send packet in connection struct
564e35edcc1S[email protected]     hci_connection_t *connection = hci_connection_for_handle( con_handle);
565e35edcc1S[email protected]     if (!connection) {
566e35edcc1S[email protected]         log_error("hci_send_sco_packet_buffer called but no connection for handle 0x%04x", con_handle);
567e35edcc1S[email protected]         hci_release_packet_buffer();
568e35edcc1S[email protected]         return 0;
569e35edcc1S[email protected]     }
570e35edcc1S[email protected]     connection->num_sco_packets_sent++;
57144d0e3d5S[email protected] 
57244d0e3d5S[email protected]     hci_dump_packet( HCI_SCO_DATA_PACKET, 0, packet, size);
57344d0e3d5S[email protected]     return hci_stack->hci_transport->send_packet(HCI_SCO_DATA_PACKET, packet, size);
57444d0e3d5S[email protected] }
57544d0e3d5S[email protected] 
57616833f0aSmatthias.ringwald static void acl_handler(uint8_t *packet, int size){
5777856c818Smatthias.ringwald 
578e76a89eeS[email protected]     // log_info("acl_handler: size %u", size);
579e76a89eeS[email protected] 
5807856c818Smatthias.ringwald     // get info
5817856c818Smatthias.ringwald     hci_con_handle_t con_handle = READ_ACL_CONNECTION_HANDLE(packet);
5825061f3afS[email protected]     hci_connection_t *conn      = hci_connection_for_handle(con_handle);
5837856c818Smatthias.ringwald     uint8_t  acl_flags          = READ_ACL_FLAGS(packet);
5847856c818Smatthias.ringwald     uint16_t acl_length         = READ_ACL_LENGTH(packet);
5857856c818Smatthias.ringwald 
5867856c818Smatthias.ringwald     // ignore non-registered handle
5877856c818Smatthias.ringwald     if (!conn){
5889da54300S[email protected]         log_error( "hci.c: acl_handler called with non-registered handle %u!" , con_handle);
5897856c818Smatthias.ringwald         return;
5907856c818Smatthias.ringwald     }
5917856c818Smatthias.ringwald 
592e76a89eeS[email protected]     // assert packet is complete
5939ecc3e17S[email protected]     if (acl_length + 4 != size){
594e76a89eeS[email protected]         log_error("hci.c: acl_handler called with ACL packet of wrong size %u, expected %u => dropping packet", size, acl_length + 4);
595e76a89eeS[email protected]         return;
596e76a89eeS[email protected]     }
597e76a89eeS[email protected] 
5987856c818Smatthias.ringwald     // update idle timestamp
5997856c818Smatthias.ringwald     hci_connection_timestamp(conn);
6007856c818Smatthias.ringwald 
6017856c818Smatthias.ringwald     // handle different packet types
6027856c818Smatthias.ringwald     switch (acl_flags & 0x03) {
6037856c818Smatthias.ringwald 
6047856c818Smatthias.ringwald         case 0x01: // continuation fragment
6057856c818Smatthias.ringwald 
6060ca847afS[email protected]             // sanity checks
6077856c818Smatthias.ringwald             if (conn->acl_recombination_pos == 0) {
6089da54300S[email protected]                 log_error( "ACL Cont Fragment but no first fragment for handle 0x%02x", con_handle);
6097856c818Smatthias.ringwald                 return;
6107856c818Smatthias.ringwald             }
6110ca847afS[email protected]             if (conn->acl_recombination_pos + acl_length > 4 + HCI_ACL_BUFFER_SIZE){
6120ca847afS[email protected]                 log_error( "ACL Cont Fragment to large: combined packet %u > buffer size %u for handle 0x%02x",
6130ca847afS[email protected]                     conn->acl_recombination_pos + acl_length, 4 + HCI_ACL_BUFFER_SIZE, con_handle);
6140ca847afS[email protected]                 conn->acl_recombination_pos = 0;
6150ca847afS[email protected]                 return;
6160ca847afS[email protected]             }
6177856c818Smatthias.ringwald 
6187856c818Smatthias.ringwald             // append fragment payload (header already stored)
619ec6321eeS[email protected]             memcpy(&conn->acl_recombination_buffer[HCI_INCOMING_PRE_BUFFER_SIZE + conn->acl_recombination_pos], &packet[4], acl_length );
6207856c818Smatthias.ringwald             conn->acl_recombination_pos += acl_length;
6217856c818Smatthias.ringwald 
6229da54300S[email protected]             // log_error( "ACL Cont Fragment: acl_len %u, combined_len %u, l2cap_len %u", acl_length,
623decc01a8Smatthias.ringwald             //        conn->acl_recombination_pos, conn->acl_recombination_length);
6247856c818Smatthias.ringwald 
6257856c818Smatthias.ringwald             // forward complete L2CAP packet if complete.
6267856c818Smatthias.ringwald             if (conn->acl_recombination_pos >= conn->acl_recombination_length + 4 + 4){ // pos already incl. ACL header
6277856c818Smatthias.ringwald 
628ec6321eeS[email protected]                 hci_stack->packet_handler(HCI_ACL_DATA_PACKET, &conn->acl_recombination_buffer[HCI_INCOMING_PRE_BUFFER_SIZE], conn->acl_recombination_pos);
6297856c818Smatthias.ringwald                 // reset recombination buffer
6307856c818Smatthias.ringwald                 conn->acl_recombination_length = 0;
6317856c818Smatthias.ringwald                 conn->acl_recombination_pos = 0;
6327856c818Smatthias.ringwald             }
6337856c818Smatthias.ringwald             break;
6347856c818Smatthias.ringwald 
6357856c818Smatthias.ringwald         case 0x02: { // first fragment
6367856c818Smatthias.ringwald 
63723a77e1aS[email protected]             // sanity check
63823a77e1aS[email protected]             if (conn->acl_recombination_pos) {
63923a77e1aS[email protected]                 log_error( "ACL First Fragment but data in buffer for handle 0x%02x, dropping stale fragments", con_handle);
64023a77e1aS[email protected]                 conn->acl_recombination_pos = 0;
64123a77e1aS[email protected]             }
64223a77e1aS[email protected] 
6437856c818Smatthias.ringwald             // peek into L2CAP packet!
6447856c818Smatthias.ringwald             uint16_t l2cap_length = READ_L2CAP_LENGTH( packet );
6457856c818Smatthias.ringwald 
6469da54300S[email protected]             // log_info( "ACL First Fragment: acl_len %u, l2cap_len %u", acl_length, l2cap_length);
647decc01a8Smatthias.ringwald 
6487856c818Smatthias.ringwald             // compare fragment size to L2CAP packet size
6497856c818Smatthias.ringwald             if (acl_length >= l2cap_length + 4){
6507856c818Smatthias.ringwald 
6517856c818Smatthias.ringwald                 // forward fragment as L2CAP packet
6523a9fb326S[email protected]                 hci_stack->packet_handler(HCI_ACL_DATA_PACKET, packet, acl_length + 4);
6537856c818Smatthias.ringwald 
6547856c818Smatthias.ringwald             } else {
6550ca847afS[email protected] 
6560ca847afS[email protected]                 if (acl_length > HCI_ACL_BUFFER_SIZE){
6570ca847afS[email protected]                     log_error( "ACL First Fragment to large: fragment %u > buffer size %u for handle 0x%02x",
6580ca847afS[email protected]                         4 + acl_length, 4 + HCI_ACL_BUFFER_SIZE, con_handle);
6590ca847afS[email protected]                     return;
6600ca847afS[email protected]                 }
6610ca847afS[email protected] 
6627856c818Smatthias.ringwald                 // store first fragment and tweak acl length for complete package
663ec6321eeS[email protected]                 memcpy(&conn->acl_recombination_buffer[HCI_INCOMING_PRE_BUFFER_SIZE], packet, acl_length + 4);
6647856c818Smatthias.ringwald                 conn->acl_recombination_pos    = acl_length + 4;
6657856c818Smatthias.ringwald                 conn->acl_recombination_length = l2cap_length;
666ec6321eeS[email protected]                 bt_store_16(conn->acl_recombination_buffer, HCI_INCOMING_PRE_BUFFER_SIZE + 2, l2cap_length +4);
6677856c818Smatthias.ringwald             }
6687856c818Smatthias.ringwald             break;
6697856c818Smatthias.ringwald 
6707856c818Smatthias.ringwald         }
6717856c818Smatthias.ringwald         default:
6729da54300S[email protected]             log_error( "hci.c: acl_handler called with invalid packet boundary flags %u", acl_flags & 0x03);
6737856c818Smatthias.ringwald             return;
6747856c818Smatthias.ringwald     }
67594ab26f8Smatthias.ringwald 
67694ab26f8Smatthias.ringwald     // execute main loop
67794ab26f8Smatthias.ringwald     hci_run();
67816833f0aSmatthias.ringwald }
67922909952Smatthias.ringwald 
68067a3e8ecSmatthias.ringwald static void hci_shutdown_connection(hci_connection_t *conn){
6819da54300S[email protected]     log_info("Connection closed: handle 0x%x, %s", conn->con_handle, bd_addr_to_str(conn->address));
6823c4d4b90Smatthias.ringwald 
683c7e0c5f6Smatthias.ringwald     run_loop_remove_timer(&conn->timeout);
684c785ef68Smatthias.ringwald 
6853a9fb326S[email protected]     linked_list_remove(&hci_stack->connections, (linked_item_t *) conn);
686a3b02b71Smatthias.ringwald     btstack_memory_hci_connection_free( conn );
6873c4d4b90Smatthias.ringwald 
6883c4d4b90Smatthias.ringwald     // now it's gone
689c7e0c5f6Smatthias.ringwald     hci_emit_nr_connections_changed();
690c7e0c5f6Smatthias.ringwald }
691c7e0c5f6Smatthias.ringwald 
6920c042179S[email protected] static const uint16_t packet_type_sizes[] = {
6938f8108aaSmatthias.ringwald     0, HCI_ACL_2DH1_SIZE, HCI_ACL_3DH1_SIZE, HCI_ACL_DM1_SIZE,
6948f8108aaSmatthias.ringwald     HCI_ACL_DH1_SIZE, 0, 0, 0,
6958f8108aaSmatthias.ringwald     HCI_ACL_2DH3_SIZE, HCI_ACL_3DH3_SIZE, HCI_ACL_DM3_SIZE, HCI_ACL_DH3_SIZE,
6968f8108aaSmatthias.ringwald     HCI_ACL_2DH5_SIZE, HCI_ACL_3DH5_SIZE, HCI_ACL_DM5_SIZE, HCI_ACL_DH5_SIZE
6978f8108aaSmatthias.ringwald };
69865389bfcS[email protected] static const uint8_t  packet_type_feature_requirement_bit[] = {
69965389bfcS[email protected]      0, // 3 slot packets
70065389bfcS[email protected]      1, // 5 slot packets
70165389bfcS[email protected]     25, // EDR 2 mpbs
70265389bfcS[email protected]     26, // EDR 3 mbps
70365389bfcS[email protected]     39, // 3 slot EDR packts
70465389bfcS[email protected]     40, // 5 slot EDR packet
70565389bfcS[email protected] };
70665389bfcS[email protected] static const uint16_t packet_type_feature_packet_mask[] = {
70765389bfcS[email protected]     0x0f00, // 3 slot packets
70865389bfcS[email protected]     0xf000, // 5 slot packets
70965389bfcS[email protected]     0x1102, // EDR 2 mpbs
71065389bfcS[email protected]     0x2204, // EDR 3 mbps
71165389bfcS[email protected]     0x0300, // 3 slot EDR packts
71265389bfcS[email protected]     0x3000, // 5 slot EDR packet
71365389bfcS[email protected] };
7148f8108aaSmatthias.ringwald 
71565389bfcS[email protected] static uint16_t hci_acl_packet_types_for_buffer_size_and_local_features(uint16_t buffer_size, uint8_t * local_supported_features){
71665389bfcS[email protected]     // enable packet types based on size
7178f8108aaSmatthias.ringwald     uint16_t packet_types = 0;
718f16a69bbS[email protected]     unsigned int i;
7198f8108aaSmatthias.ringwald     for (i=0;i<16;i++){
7208f8108aaSmatthias.ringwald         if (packet_type_sizes[i] == 0) continue;
7218f8108aaSmatthias.ringwald         if (packet_type_sizes[i] <= buffer_size){
7228f8108aaSmatthias.ringwald             packet_types |= 1 << i;
7238f8108aaSmatthias.ringwald         }
7248f8108aaSmatthias.ringwald     }
72565389bfcS[email protected]     // disable packet types due to missing local supported features
72665389bfcS[email protected]     for (i=0;i<sizeof(packet_type_feature_requirement_bit);i++){
72765389bfcS[email protected]         int bit_idx = packet_type_feature_requirement_bit[i];
72865389bfcS[email protected]         int feature_set = (local_supported_features[bit_idx >> 3] & (1<<(bit_idx & 7))) != 0;
72965389bfcS[email protected]         if (feature_set) continue;
73065389bfcS[email protected]         log_info("Features bit %02u is not set, removing packet types 0x%04x", bit_idx, packet_type_feature_packet_mask[i]);
73165389bfcS[email protected]         packet_types &= ~packet_type_feature_packet_mask[i];
73265389bfcS[email protected]     }
7338f8108aaSmatthias.ringwald     // flip bits for "may not be used"
7348f8108aaSmatthias.ringwald     packet_types ^= 0x3306;
7358f8108aaSmatthias.ringwald     return packet_types;
7368f8108aaSmatthias.ringwald }
7378f8108aaSmatthias.ringwald 
7388f8108aaSmatthias.ringwald uint16_t hci_usable_acl_packet_types(void){
7393a9fb326S[email protected]     return hci_stack->packet_types;
7408f8108aaSmatthias.ringwald }
7418f8108aaSmatthias.ringwald 
742facf93fdS[email protected] uint8_t* hci_get_outgoing_packet_buffer(void){
7437dc17943Smatthias.ringwald     // hci packet buffer is >= acl data packet length
7443a9fb326S[email protected]     return hci_stack->hci_packet_buffer;
7457dc17943Smatthias.ringwald }
7467dc17943Smatthias.ringwald 
747f5d8d141S[email protected] uint16_t hci_max_acl_data_packet_length(void){
7483a9fb326S[email protected]     return hci_stack->acl_data_packet_length;
7497dc17943Smatthias.ringwald }
7507dc17943Smatthias.ringwald 
7516ac9a97eS[email protected] int hci_non_flushable_packet_boundary_flag_supported(void){
7526ac9a97eS[email protected]     // No. 54, byte 6, bit 6
7536ac9a97eS[email protected]     return (hci_stack->local_supported_features[6] & (1 << 6)) != 0;
7546ac9a97eS[email protected] }
7556ac9a97eS[email protected] 
756f5d8d141S[email protected] int hci_ssp_supported(void){
7576ac9a97eS[email protected]     // No. 51, byte 6, bit 3
7583a9fb326S[email protected]     return (hci_stack->local_supported_features[6] & (1 << 3)) != 0;
759f5d8d141S[email protected] }
760f5d8d141S[email protected] 
761f5d8d141S[email protected] int hci_classic_supported(void){
7626ac9a97eS[email protected]     // No. 37, byte 4, bit 5, = No BR/EDR Support
7633a9fb326S[email protected]     return (hci_stack->local_supported_features[4] & (1 << 5)) == 0;
764f5d8d141S[email protected] }
765f5d8d141S[email protected] 
766f5d8d141S[email protected] int hci_le_supported(void){
767f5d8d141S[email protected] #ifdef HAVE_BLE
7686ac9a97eS[email protected]     // No. 37, byte 4, bit 6 = LE Supported (Controller)
7693a9fb326S[email protected]     return (hci_stack->local_supported_features[4] & (1 << 6)) != 0;
770f5d8d141S[email protected] #else
771f5d8d141S[email protected]     return 0;
772f5d8d141S[email protected] #endif
773f5d8d141S[email protected] }
774f5d8d141S[email protected] 
77569a97523S[email protected] // get addr type and address used in advertisement packets
7762e77e513S[email protected] void hci_le_advertisement_address(uint8_t * addr_type, bd_addr_t  addr){
7773a9fb326S[email protected]     *addr_type = hci_stack->adv_addr_type;
7783a9fb326S[email protected]     if (hci_stack->adv_addr_type){
7793a9fb326S[email protected]         memcpy(addr, hci_stack->adv_address, 6);
78069a97523S[email protected]     } else {
7813a9fb326S[email protected]         memcpy(addr, hci_stack->local_bd_addr, 6);
78269a97523S[email protected]     }
78369a97523S[email protected] }
78469a97523S[email protected] 
785b2f949feS[email protected] #ifdef HAVE_BLE
786e01fe8b6S[email protected] void le_handle_advertisement_report(uint8_t *packet, int size){
787d1dc057bS[email protected]     int offset = 3;
788d1dc057bS[email protected]     int num_reports = packet[offset];
789d1dc057bS[email protected]     offset += 1;
790d1dc057bS[email protected] 
79157c9da5bS[email protected]     int i;
7924f4b43f3S[email protected]     log_info("HCI: handle adv report with num reports: %d", num_reports);
79303fbe9c6S[email protected]     uint8_t event[12 + LE_ADVERTISING_DATA_SIZE]; // use upper bound to avoid var size automatic var
79457c9da5bS[email protected]     for (i=0; i<num_reports;i++){
795210c6774S[email protected]         uint8_t data_length = packet[offset + 8];
796a0aac9c4S[email protected]         uint8_t event_size = 10 + data_length;
797d1dc057bS[email protected]         int pos = 0;
7982b552b23S[email protected]         event[pos++] = GAP_LE_ADVERTISING_REPORT;
79957c9da5bS[email protected]         event[pos++] = event_size;
800210c6774S[email protected]         memcpy(&event[pos], &packet[offset], 1+1+6); // event type + address type + address
801d1dc057bS[email protected]         offset += 8;
802d1dc057bS[email protected]         pos += 8;
803d1dc057bS[email protected]         event[pos++] = packet[offset + 1 + data_length]; // rssi
804d1dc057bS[email protected]         event[pos++] = packet[offset++]; //data_length;
805d1dc057bS[email protected]         memcpy(&event[pos], &packet[offset], data_length);
80657c9da5bS[email protected]         pos += data_length;
807d1dc057bS[email protected]         offset += data_length + 1; // rssi
80803fbe9c6S[email protected]         hci_dump_packet( HCI_EVENT_PACKET, 0, event, pos);
80903fbe9c6S[email protected]         hci_stack->packet_handler(HCI_EVENT_PACKET, event, pos);
81057c9da5bS[email protected]     }
81157c9da5bS[email protected] }
812b2f949feS[email protected] #endif
81357c9da5bS[email protected] 
8140305bdeaSMatthias Ringwald static void hci_initialization_timeout_handler(timer_source_t * ds){
8150305bdeaSMatthias Ringwald     switch (hci_stack->substate){
8160305bdeaSMatthias Ringwald         case HCI_INIT_W4_SEND_RESET:
8177b0d7667SMatthias Ringwald             log_info("Resend HCI Reset");
8180305bdeaSMatthias Ringwald             hci_stack->substate = HCI_INIT_SEND_RESET;
8197b0d7667SMatthias Ringwald             hci_stack->num_cmd_packets = 1;
8200305bdeaSMatthias Ringwald             hci_run();
8210305bdeaSMatthias Ringwald             break;
822e47e68c7SMatthias Ringwald         case HCI_INIT_W4_CUSTOM_INIT_CSR_WARM_BOOT:
823e47e68c7SMatthias Ringwald             log_info("Resend HCI Reset - CSR Warm Boot");
824e47e68c7SMatthias Ringwald             hci_stack->substate = HCI_INIT_SEND_RESET_CSR_WARM_BOOT;
825e47e68c7SMatthias Ringwald             hci_stack->num_cmd_packets = 1;
826e47e68c7SMatthias Ringwald             hci_run();
827*4696bddbSMatthias Ringwald         case HCI_INIT_W4_SEND_BAUD_CHANGE:
828*4696bddbSMatthias Ringwald             log_info("Local baud rate change to %u", ((hci_uart_config_t *)hci_stack->config)->baudrate_main);
829*4696bddbSMatthias Ringwald             hci_stack->hci_transport->set_baudrate(((hci_uart_config_t *)hci_stack->config)->baudrate_main);
830*4696bddbSMatthias Ringwald             break;
8310305bdeaSMatthias Ringwald         default:
8320305bdeaSMatthias Ringwald             break;
8330305bdeaSMatthias Ringwald     }
8340305bdeaSMatthias Ringwald }
8350305bdeaSMatthias Ringwald 
83655975f88SMatthias Ringwald static void hci_initializing_next_state(){
83774b323a9SMatthias Ringwald     hci_stack->substate = (hci_substate_t )( ((int) hci_stack->substate) + 1);
83874b323a9SMatthias Ringwald }
83974b323a9SMatthias Ringwald 
84074b323a9SMatthias Ringwald // assumption: hci_can_send_command_packet_now() == true
84174b323a9SMatthias Ringwald static void hci_initializing_run(){
842db8bc6ffSMatthias Ringwald     log_info("hci_initializing_run: substate %u", hci_stack->substate);
84374b323a9SMatthias Ringwald     switch (hci_stack->substate){
84474b323a9SMatthias Ringwald         case HCI_INIT_SEND_RESET:
84574b323a9SMatthias Ringwald             hci_state_reset();
8460305bdeaSMatthias Ringwald             // prepare reset if command complete not received in 100ms
8470305bdeaSMatthias Ringwald             run_loop_set_timer(&hci_stack->timeout, 100);
8480305bdeaSMatthias Ringwald             run_loop_set_timer_handler(&hci_stack->timeout, hci_initialization_timeout_handler);
8490305bdeaSMatthias Ringwald             run_loop_add_timer(&hci_stack->timeout);
8500305bdeaSMatthias Ringwald             // send command
85174b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_SEND_RESET;
8520305bdeaSMatthias Ringwald             hci_send_cmd(&hci_reset);
85374b323a9SMatthias Ringwald             break;
85476fcb19bSMatthias Ringwald         case HCI_INIT_SEND_READ_LOCAL_VERSION_INFORMATION:
85576fcb19bSMatthias Ringwald             hci_send_cmd(&hci_read_local_version_information);
85676fcb19bSMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_SEND_READ_LOCAL_VERSION_INFORMATION;
85776fcb19bSMatthias Ringwald             break;
858e47e68c7SMatthias Ringwald         case HCI_INIT_SEND_RESET_CSR_WARM_BOOT:
859e47e68c7SMatthias Ringwald             hci_state_reset();
860e47e68c7SMatthias Ringwald             // prepare reset if command complete not received in 100ms
861e47e68c7SMatthias Ringwald             run_loop_set_timer(&hci_stack->timeout, 100);
862e47e68c7SMatthias Ringwald             run_loop_set_timer_handler(&hci_stack->timeout, hci_initialization_timeout_handler);
863e47e68c7SMatthias Ringwald             run_loop_add_timer(&hci_stack->timeout);
864e47e68c7SMatthias Ringwald             // send command
865e47e68c7SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_CUSTOM_INIT_CSR_WARM_BOOT;
866e47e68c7SMatthias Ringwald             hci_send_cmd(&hci_reset);
867e47e68c7SMatthias Ringwald             break;
86874b323a9SMatthias Ringwald         case HCI_INIT_SEND_BAUD_CHANGE:
86974b323a9SMatthias Ringwald             hci_stack->control->baudrate_cmd(hci_stack->config, ((hci_uart_config_t *)hci_stack->config)->baudrate_main, hci_stack->hci_packet_buffer);
87074b323a9SMatthias Ringwald             hci_stack->last_cmd_opcode = READ_BT_16(hci_stack->hci_packet_buffer, 0);
87174b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_SEND_BAUD_CHANGE;
8720305bdeaSMatthias Ringwald             hci_send_cmd_packet(hci_stack->hci_packet_buffer, 3 + hci_stack->hci_packet_buffer[2]);
873*4696bddbSMatthias Ringwald             // STLC25000D: baudrate change happens within 0.5 s after command was send,
874*4696bddbSMatthias Ringwald             // use timer to update baud rate after 100 ms (knowing exactly, when command was sent is non-trivial)
875*4696bddbSMatthias Ringwald             if (hci_stack->manufacturer == 0x0030){
876*4696bddbSMatthias Ringwald                 run_loop_set_timer(&hci_stack->timeout, 100);
877*4696bddbSMatthias Ringwald                 run_loop_add_timer(&hci_stack->timeout);
878*4696bddbSMatthias Ringwald             }
87974b323a9SMatthias Ringwald             break;
88074b323a9SMatthias Ringwald         case HCI_INIT_SET_BD_ADDR:
88174b323a9SMatthias Ringwald             log_info("Set Public BD ADDR to %s", bd_addr_to_str(hci_stack->custom_bd_addr));
88274b323a9SMatthias Ringwald             hci_stack->control->set_bd_addr_cmd(hci_stack->config, hci_stack->custom_bd_addr, hci_stack->hci_packet_buffer);
88374b323a9SMatthias Ringwald             hci_stack->last_cmd_opcode = READ_BT_16(hci_stack->hci_packet_buffer, 0);
88474b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_SET_BD_ADDR;
8850305bdeaSMatthias Ringwald             hci_send_cmd_packet(hci_stack->hci_packet_buffer, 3 + hci_stack->hci_packet_buffer[2]);
88674b323a9SMatthias Ringwald             break;
88774b323a9SMatthias Ringwald         case HCI_INIT_CUSTOM_INIT:
88874b323a9SMatthias Ringwald             log_info("Custom init");
88974b323a9SMatthias Ringwald             // Custom initialization
89074b323a9SMatthias Ringwald             if (hci_stack->control && hci_stack->control->next_cmd){
89174b323a9SMatthias Ringwald                 int valid_cmd = (*hci_stack->control->next_cmd)(hci_stack->config, hci_stack->hci_packet_buffer);
89274b323a9SMatthias Ringwald                 if (valid_cmd){
89374b323a9SMatthias Ringwald                     int size = 3 + hci_stack->hci_packet_buffer[2];
89474b323a9SMatthias Ringwald                     hci_stack->last_cmd_opcode = READ_BT_16(hci_stack->hci_packet_buffer, 0);
89574b323a9SMatthias Ringwald                     hci_dump_packet(HCI_COMMAND_DATA_PACKET, 0, hci_stack->hci_packet_buffer, size);
896e47e68c7SMatthias Ringwald                     switch (valid_cmd) {
897e47e68c7SMatthias Ringwald                         case 1:
898e47e68c7SMatthias Ringwald                         default:
899e47e68c7SMatthias Ringwald                             hci_stack->substate = HCI_INIT_W4_CUSTOM_INIT;
900e47e68c7SMatthias Ringwald                             break;
901e47e68c7SMatthias Ringwald                         case 2: // CSR Warm Boot: Wait a bit, then send HCI Reset until HCI Command Complete
902e47e68c7SMatthias Ringwald                             log_info("CSR Warm Boot");
903e47e68c7SMatthias Ringwald                             run_loop_set_timer(&hci_stack->timeout, 100);
904e47e68c7SMatthias Ringwald                             run_loop_set_timer_handler(&hci_stack->timeout, hci_initialization_timeout_handler);
905e47e68c7SMatthias Ringwald                             run_loop_add_timer(&hci_stack->timeout);
906e47e68c7SMatthias Ringwald                             hci_stack->substate = HCI_INIT_W4_CUSTOM_INIT_CSR_WARM_BOOT;
907e47e68c7SMatthias Ringwald                             break;
908e47e68c7SMatthias Ringwald                     }
9090305bdeaSMatthias Ringwald                     hci_stack->hci_transport->send_packet(HCI_COMMAND_DATA_PACKET, hci_stack->hci_packet_buffer, size);
91074b323a9SMatthias Ringwald                     break;
91174b323a9SMatthias Ringwald                 }
91274b323a9SMatthias Ringwald                log_info("hci_run: init script done");
91374b323a9SMatthias Ringwald             }
91474b323a9SMatthias Ringwald             // otherwise continue
91574b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_READ_BD_ADDR;
9160305bdeaSMatthias Ringwald             hci_send_cmd(&hci_read_bd_addr);
91774b323a9SMatthias Ringwald             break;
91874b323a9SMatthias Ringwald         case HCI_INIT_READ_BUFFER_SIZE:
91974b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_READ_BUFFER_SIZE;
9200305bdeaSMatthias Ringwald             hci_send_cmd(&hci_read_buffer_size);
92174b323a9SMatthias Ringwald             break;
92274b323a9SMatthias Ringwald         case HCI_INIT_READ_LOCAL_SUPPORTED_FEATUES:
92374b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_READ_LOCAL_SUPPORTED_FEATUES;
9240305bdeaSMatthias Ringwald             hci_send_cmd(&hci_read_local_supported_features);
92574b323a9SMatthias Ringwald             break;
92674b323a9SMatthias Ringwald         case HCI_INIT_SET_EVENT_MASK:
9270305bdeaSMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_SET_EVENT_MASK;
92874b323a9SMatthias Ringwald             if (hci_le_supported()){
92974b323a9SMatthias Ringwald                 hci_send_cmd(&hci_set_event_mask,0xffffffff, 0x3FFFFFFF);
93074b323a9SMatthias Ringwald             } else {
93174b323a9SMatthias Ringwald                 // Kensington Bluetooth 2.1 USB Dongle (CSR Chipset) returns an error for 0xffff...
93274b323a9SMatthias Ringwald                 hci_send_cmd(&hci_set_event_mask,0xffffffff, 0x1FFFFFFF);
93374b323a9SMatthias Ringwald             }
93474b323a9SMatthias Ringwald             break;
93574b323a9SMatthias Ringwald         case HCI_INIT_WRITE_SIMPLE_PAIRING_MODE:
93674b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_WRITE_SIMPLE_PAIRING_MODE;
9370305bdeaSMatthias Ringwald             hci_send_cmd(&hci_write_simple_pairing_mode, hci_stack->ssp_enable);
93874b323a9SMatthias Ringwald             break;
93974b323a9SMatthias Ringwald         case HCI_INIT_WRITE_PAGE_TIMEOUT:
94074b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_WRITE_PAGE_TIMEOUT;
9410305bdeaSMatthias Ringwald             hci_send_cmd(&hci_write_page_timeout, 0x6000);  // ca. 15 sec
94274b323a9SMatthias Ringwald             break;
94374b323a9SMatthias Ringwald         case HCI_INIT_WRITE_CLASS_OF_DEVICE:
94474b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_WRITE_CLASS_OF_DEVICE;
9450305bdeaSMatthias Ringwald             hci_send_cmd(&hci_write_class_of_device, hci_stack->class_of_device);
94674b323a9SMatthias Ringwald             break;
94774b323a9SMatthias Ringwald         case HCI_INIT_WRITE_LOCAL_NAME:
9480305bdeaSMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_WRITE_LOCAL_NAME;
94974b323a9SMatthias Ringwald             if (hci_stack->local_name){
95074b323a9SMatthias Ringwald                 hci_send_cmd(&hci_write_local_name, hci_stack->local_name);
95174b323a9SMatthias Ringwald             } else {
95274b323a9SMatthias Ringwald                 char hostname[30];
95374b323a9SMatthias Ringwald #ifdef EMBEDDED
95474b323a9SMatthias Ringwald                 // BTstack-11:22:33:44:55:66
95574b323a9SMatthias Ringwald                 strcpy(hostname, "BTstack ");
95674b323a9SMatthias Ringwald                 strcat(hostname, bd_addr_to_str(hci_stack->local_bd_addr));
95774b323a9SMatthias Ringwald                 log_info("---> Name %s", hostname);
95874b323a9SMatthias Ringwald #else
95974b323a9SMatthias Ringwald                 // hostname for POSIX systems
96074b323a9SMatthias Ringwald                 gethostname(hostname, 30);
96174b323a9SMatthias Ringwald                 hostname[29] = '\0';
96274b323a9SMatthias Ringwald #endif
96374b323a9SMatthias Ringwald                 hci_send_cmd(&hci_write_local_name, hostname);
96474b323a9SMatthias Ringwald             }
96574b323a9SMatthias Ringwald             break;
96674b323a9SMatthias Ringwald         case HCI_INIT_WRITE_SCAN_ENABLE:
96774b323a9SMatthias Ringwald             hci_send_cmd(&hci_write_scan_enable, (hci_stack->connectable << 1) | hci_stack->discoverable); // page scan
96874b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_WRITE_SCAN_ENABLE;
96974b323a9SMatthias Ringwald             break;
97074b323a9SMatthias Ringwald #ifdef HAVE_BLE
97174b323a9SMatthias Ringwald         // LE INIT
97274b323a9SMatthias Ringwald         case HCI_INIT_LE_READ_BUFFER_SIZE:
97374b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_LE_READ_BUFFER_SIZE;
9740305bdeaSMatthias Ringwald             hci_send_cmd(&hci_le_read_buffer_size);
97574b323a9SMatthias Ringwald             break;
97674b323a9SMatthias Ringwald         case HCI_INIT_WRITE_LE_HOST_SUPPORTED:
97774b323a9SMatthias Ringwald             // LE Supported Host = 1, Simultaneous Host = 0
97874b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_WRITE_LE_HOST_SUPPORTED;
9790305bdeaSMatthias Ringwald             hci_send_cmd(&hci_write_le_host_supported, 1, 0);
98074b323a9SMatthias Ringwald             break;
98174b323a9SMatthias Ringwald         case HCI_INIT_LE_SET_SCAN_PARAMETERS:
98274b323a9SMatthias Ringwald             // LE Scan Parameters: active scanning, 300 ms interval, 30 ms window, public address, accept all advs
98374b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_W4_LE_SET_SCAN_PARAMETERS;
9840305bdeaSMatthias Ringwald             hci_send_cmd(&hci_le_set_scan_parameters, 1, 0x1e0, 0x30, 0, 0);
98574b323a9SMatthias Ringwald             break;
98674b323a9SMatthias Ringwald #endif
98774b323a9SMatthias Ringwald         // DONE
98874b323a9SMatthias Ringwald         case HCI_INIT_DONE:
98974b323a9SMatthias Ringwald             // done.
99074b323a9SMatthias Ringwald             hci_stack->state = HCI_STATE_WORKING;
99174b323a9SMatthias Ringwald             hci_emit_state();
99274b323a9SMatthias Ringwald             return;
99374b323a9SMatthias Ringwald         default:
99474b323a9SMatthias Ringwald             return;
99574b323a9SMatthias Ringwald     }
99655975f88SMatthias Ringwald }
99755975f88SMatthias Ringwald 
9986155b3d3S[email protected] static void hci_initializing_event_handler(uint8_t * packet, uint16_t size){
999a2481739S[email protected]     uint8_t command_completed = 0;
1000c4633093SMatthias Ringwald 
10016155b3d3S[email protected]     if (packet[0] == HCI_EVENT_COMMAND_COMPLETE){
10026155b3d3S[email protected]         uint16_t opcode = READ_BT_16(packet,3);
10036155b3d3S[email protected]         if (opcode == hci_stack->last_cmd_opcode){
1004a2481739S[email protected]             command_completed = 1;
100576fcb19bSMatthias Ringwald             log_info("Command complete for expected opcode %04x at substate %u", opcode, hci_stack->substate);
10066155b3d3S[email protected]         } else {
10076155b3d3S[email protected]             log_info("Command complete for opcode %04x, expected %04x", opcode, hci_stack->last_cmd_opcode);
10086155b3d3S[email protected]         }
10096155b3d3S[email protected]     }
10106155b3d3S[email protected]     if (packet[0] == HCI_EVENT_COMMAND_STATUS){
10116155b3d3S[email protected]         uint8_t  status = packet[2];
10126155b3d3S[email protected]         uint16_t opcode = READ_BT_16(packet,4);
10136155b3d3S[email protected]         if (opcode == hci_stack->last_cmd_opcode){
10146155b3d3S[email protected]             if (status){
1015a2481739S[email protected]                 command_completed = 1;
101676fcb19bSMatthias Ringwald                 log_error("Command status error 0x%02x for expected opcode %04x at substate %u", status, opcode, hci_stack->substate);
10176155b3d3S[email protected]             } else {
10186155b3d3S[email protected]                 log_info("Command status OK for expected opcode %04x, waiting for command complete", opcode);
10196155b3d3S[email protected]             }
10206155b3d3S[email protected]         } else {
10216155b3d3S[email protected]             log_info("Command status for opcode %04x, expected %04x", opcode, hci_stack->last_cmd_opcode);
10226155b3d3S[email protected]         }
10236155b3d3S[email protected]     }
1024e47e68c7SMatthias Ringwald     // Vendor == CSR
10250d3b00a2SMatthias Ringwald     if (hci_stack->substate == HCI_INIT_W4_CUSTOM_INIT && packet[0] == HCI_EVENT_VENDOR_SPECIFIC){
1026e47e68c7SMatthias Ringwald         // TODO: track actual command
1027e47e68c7SMatthias Ringwald         command_completed = 1;
1028e47e68c7SMatthias Ringwald     }
1029a2481739S[email protected] 
1030a2481739S[email protected]     if (!command_completed) return;
1031a2481739S[email protected] 
1032db8bc6ffSMatthias Ringwald     int need_baud_change = hci_stack->config
1033db8bc6ffSMatthias Ringwald                         && hci_stack->control
1034db8bc6ffSMatthias Ringwald                         && hci_stack->control->baudrate_cmd
1035db8bc6ffSMatthias Ringwald                         && hci_stack->hci_transport->set_baudrate
1036db8bc6ffSMatthias Ringwald                         && ((hci_uart_config_t *)hci_stack->config)->baudrate_main;
1037db8bc6ffSMatthias Ringwald 
1038db8bc6ffSMatthias Ringwald     int need_addr_change = hci_stack->custom_bd_addr_set
1039db8bc6ffSMatthias Ringwald                         && hci_stack->control
1040db8bc6ffSMatthias Ringwald                         && hci_stack->control->set_bd_addr_cmd;
1041a80162e9SMatthias Ringwald 
10425c363727SMatthias Ringwald     switch(hci_stack->substate){
104374b323a9SMatthias Ringwald         case HCI_INIT_W4_SEND_RESET:
10440305bdeaSMatthias Ringwald             run_loop_remove_timer(&hci_stack->timeout);
104576fcb19bSMatthias Ringwald             break;
104676fcb19bSMatthias Ringwald         case HCI_INIT_W4_SEND_READ_LOCAL_VERSION_INFORMATION:
1047a80162e9SMatthias Ringwald             if (need_baud_change){
1048a80162e9SMatthias Ringwald                 hci_stack->substate = HCI_INIT_SEND_BAUD_CHANGE;
1049a80162e9SMatthias Ringwald                 return;
1050a80162e9SMatthias Ringwald             }
1051a80162e9SMatthias Ringwald             // skipping baud change
1052a80162e9SMatthias Ringwald             if (need_addr_change){
105374b323a9SMatthias Ringwald                 hci_stack->substate = HCI_INIT_SET_BD_ADDR;
105474b323a9SMatthias Ringwald                 return;
1055a80162e9SMatthias Ringwald             }
1056a80162e9SMatthias Ringwald             // also skip set bd addr
105774b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_CUSTOM_INIT;
105874b323a9SMatthias Ringwald             return;
1059a80162e9SMatthias Ringwald         case HCI_INIT_W4_SEND_BAUD_CHANGE:
1060*4696bddbSMatthias Ringwald             // for STLC2500D, baud rate change already happened.
1061*4696bddbSMatthias Ringwald             // for CC256x, baud rate gets changed now
1062*4696bddbSMatthias Ringwald             if (hci_stack->manufacturer != 0x0030){
1063*4696bddbSMatthias Ringwald                 uint32_t new_baud = ((hci_uart_config_t *)hci_stack->config)->baudrate_main;
1064*4696bddbSMatthias Ringwald                 log_info("Local baud rate change to %u", new_baud);
1065*4696bddbSMatthias Ringwald                 hci_stack->hci_transport->set_baudrate(new_baud);
1066*4696bddbSMatthias Ringwald             }
1067c0c9aaccSMatthias Ringwald             if (need_addr_change){
106874b323a9SMatthias Ringwald                 hci_stack->substate = HCI_INIT_SET_BD_ADDR;
106974b323a9SMatthias Ringwald                 return;
1070c0c9aaccSMatthias Ringwald             }
1071c0c9aaccSMatthias Ringwald             // skipping addr change
107274b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_CUSTOM_INIT;
107374b323a9SMatthias Ringwald             return;
1074a80162e9SMatthias Ringwald         case HCI_INIT_W4_CUSTOM_INIT_CSR_WARM_BOOT:
1075a80162e9SMatthias Ringwald             run_loop_remove_timer(&hci_stack->timeout);
1076a80162e9SMatthias Ringwald             hci_stack->substate = HCI_INIT_CUSTOM_INIT;
1077a80162e9SMatthias Ringwald             return;
107874b323a9SMatthias Ringwald         case HCI_INIT_W4_CUSTOM_INIT:
107974b323a9SMatthias Ringwald             // repeat custom init
108074b323a9SMatthias Ringwald             hci_stack->substate = HCI_INIT_CUSTOM_INIT;
108174b323a9SMatthias Ringwald             return;
108274b323a9SMatthias Ringwald         case HCI_INIT_W4_SET_EVENT_MASK:
10836155b3d3S[email protected]             // skip Classic init commands for LE only chipsets
10846155b3d3S[email protected]             if (!hci_classic_supported()){
10856155b3d3S[email protected]                 if (hci_le_supported()){
108674b323a9SMatthias Ringwald                     hci_stack->substate = HCI_INIT_LE_READ_BUFFER_SIZE; // skip all classic command
108774b323a9SMatthias Ringwald                     return;
10886155b3d3S[email protected]                 } else {
10896155b3d3S[email protected]                     log_error("Neither BR/EDR nor LE supported");
109074b323a9SMatthias Ringwald                     hci_stack->substate = HCI_INIT_DONE; // skip all
109174b323a9SMatthias Ringwald                     return;
10926155b3d3S[email protected]                 }
10936155b3d3S[email protected]             }
109474b323a9SMatthias Ringwald             if (!hci_ssp_supported()){
10955c363727SMatthias Ringwald                 hci_stack->substate = HCI_INIT_WRITE_PAGE_TIMEOUT;
109674b323a9SMatthias Ringwald                 return;
10976155b3d3S[email protected]             }
10986155b3d3S[email protected]             break;
109974b323a9SMatthias Ringwald         case HCI_INIT_W4_WRITE_SCAN_ENABLE:
11006155b3d3S[email protected]             if (!hci_le_supported()){
11016155b3d3S[email protected]                 // SKIP LE init for Classic only configuration
110274b323a9SMatthias Ringwald                 hci_stack->substate = HCI_INIT_DONE;
110374b323a9SMatthias Ringwald                 return;
11046155b3d3S[email protected]             }
11056155b3d3S[email protected]         default:
110674b323a9SMatthias Ringwald             break;
11076155b3d3S[email protected]     }
110855975f88SMatthias Ringwald     hci_initializing_next_state();
11096155b3d3S[email protected] }
11106155b3d3S[email protected] 
111174b323a9SMatthias Ringwald 
111274ec757aSmatthias.ringwald // avoid huge local variables
1113223aafc1Smatthias.ringwald #ifndef EMBEDDED
111474ec757aSmatthias.ringwald static device_name_t device_name;
1115223aafc1Smatthias.ringwald #endif
111616833f0aSmatthias.ringwald static void event_handler(uint8_t *packet, int size){
1117e76a89eeS[email protected] 
1118e76a89eeS[email protected]     uint16_t event_length = packet[1];
1119e76a89eeS[email protected] 
1120e76a89eeS[email protected]     // assert packet is complete
1121e76a89eeS[email protected]     if (size != event_length + 2){
1122e76a89eeS[email protected]         log_error("hci.c: event_handler called with event packet of wrong size %u, expected %u => dropping packet", size, event_length + 2);
1123e76a89eeS[email protected]         return;
1124e76a89eeS[email protected]     }
1125e76a89eeS[email protected] 
11261281a47eSmatthias.ringwald     bd_addr_t addr;
112796a45072S[email protected]     bd_addr_type_t addr_type;
11282d00edd4Smatthias.ringwald     uint8_t link_type;
1129fe1ed1b8Smatthias.ringwald     hci_con_handle_t handle;
11301f7b95a1Smatthias.ringwald     hci_connection_t * conn;
113156cf178bSmatthias.ringwald     int i;
113222909952Smatthias.ringwald 
11339da54300S[email protected]     // log_info("HCI:EVENT:%02x", packet[0]);
11345909f7f2Smatthias.ringwald 
11356772a24cSmatthias.ringwald     switch (packet[0]) {
113622909952Smatthias.ringwald 
11376772a24cSmatthias.ringwald         case HCI_EVENT_COMMAND_COMPLETE:
11387ec5eeaaSmatthias.ringwald             // get num cmd packets
11399da54300S[email protected]             // log_info("HCI_EVENT_COMMAND_COMPLETE cmds old %u - new %u", hci_stack->num_cmd_packets, packet[2]);
11403a9fb326S[email protected]             hci_stack->num_cmd_packets = packet[2];
11417ec5eeaaSmatthias.ringwald 
1142e2edc0c3Smatthias.ringwald             if (COMMAND_COMPLETE_EVENT(packet, hci_read_buffer_size)){
1143e2edc0c3Smatthias.ringwald                 // from offset 5
1144e2edc0c3Smatthias.ringwald                 // status
11451d279b20Smatthias.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"
11463a9fb326S[email protected]                 hci_stack->acl_data_packet_length = READ_BT_16(packet, 6);
1147a8b12447S[email protected]                 hci_stack->sco_data_packet_length = packet[8];
11481a06f663S[email protected]                 hci_stack->acl_packets_total_num  = READ_BT_16(packet, 9);
11491a06f663S[email protected]                 hci_stack->sco_packets_total_num  = READ_BT_16(packet, 11);
1150a8b12447S[email protected] 
11513a9fb326S[email protected]                 if (hci_stack->state == HCI_STATE_INITIALIZING){
1152a7a04bd9Smatthias.ringwald                     // determine usable ACL payload size
11533a9fb326S[email protected]                     if (HCI_ACL_PAYLOAD_SIZE < hci_stack->acl_data_packet_length){
11543a9fb326S[email protected]                         hci_stack->acl_data_packet_length = HCI_ACL_PAYLOAD_SIZE;
11558f8108aaSmatthias.ringwald                     }
11561a06f663S[email protected]                     log_info("hci_read_buffer_size: acl used size %u, count %u / sco size %u, count %u",
11571a06f663S[email protected]                              hci_stack->acl_data_packet_length, hci_stack->acl_packets_total_num,
11581a06f663S[email protected]                              hci_stack->sco_data_packet_length, hci_stack->sco_packets_total_num);
1159e2edc0c3Smatthias.ringwald                 }
116056cf178bSmatthias.ringwald             }
116165a46ef3S[email protected] #ifdef HAVE_BLE
116265a46ef3S[email protected]             if (COMMAND_COMPLETE_EVENT(packet, hci_le_read_buffer_size)){
1163219eea5fS[email protected]                 hci_stack->le_data_packets_length = READ_BT_16(packet, 6);
1164ee303eddS[email protected]                 hci_stack->le_acl_packets_total_num  = packet[8];
11656c26b087S[email protected]                     // determine usable ACL payload size
11666c26b087S[email protected]                     if (HCI_ACL_PAYLOAD_SIZE < hci_stack->le_data_packets_length){
11676c26b087S[email protected]                         hci_stack->le_data_packets_length = HCI_ACL_PAYLOAD_SIZE;
11686c26b087S[email protected]                     }
11699da54300S[email protected]                 log_info("hci_le_read_buffer_size: size %u, count %u", hci_stack->le_data_packets_length, hci_stack->le_acl_packets_total_num);
117065a46ef3S[email protected]             }
117165a46ef3S[email protected] #endif
1172188981d2Smatthias.ringwald             // Dump local address
1173188981d2Smatthias.ringwald             if (COMMAND_COMPLETE_EVENT(packet, hci_read_bd_addr)) {
11743a9fb326S[email protected]                 bt_flip_addr(hci_stack->local_bd_addr, &packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE + 1]);
11759da54300S[email protected]                 log_info("Local Address, Status: 0x%02x: Addr: %s",
11763a9fb326S[email protected]                     packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE], bd_addr_to_str(hci_stack->local_bd_addr));
1177188981d2Smatthias.ringwald             }
1178381fbed8Smatthias.ringwald             if (COMMAND_COMPLETE_EVENT(packet, hci_write_scan_enable)){
11793a9fb326S[email protected]                 hci_emit_discoverable_enabled(hci_stack->discoverable);
1180381fbed8Smatthias.ringwald             }
118165389bfcS[email protected]             // Note: HCI init checks
1182559e517eS[email protected]             if (COMMAND_COMPLETE_EVENT(packet, hci_read_local_supported_features)){
11833a9fb326S[email protected]                 memcpy(hci_stack->local_supported_features, &packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE+1], 8);
1184559e517eS[email protected]                 log_info("Local Supported Features: 0x%02x%02x%02x%02x%02x%02x%02x%02x",
11853a9fb326S[email protected]                     hci_stack->local_supported_features[0], hci_stack->local_supported_features[1],
11863a9fb326S[email protected]                     hci_stack->local_supported_features[2], hci_stack->local_supported_features[3],
11873a9fb326S[email protected]                     hci_stack->local_supported_features[4], hci_stack->local_supported_features[5],
11883a9fb326S[email protected]                     hci_stack->local_supported_features[6], hci_stack->local_supported_features[7]);
118965389bfcS[email protected] 
1190a5a23fc2S[email protected]                 // determine usable ACL packet types based on host buffer size and supported features
1191a5a23fc2S[email protected]                 hci_stack->packet_types = hci_acl_packet_types_for_buffer_size_and_local_features(HCI_ACL_PAYLOAD_SIZE, &hci_stack->local_supported_features[0]);
11923a9fb326S[email protected]                 log_info("packet types %04x", hci_stack->packet_types);
1193f5d8d141S[email protected] 
1194f5d8d141S[email protected]                 // Classic/LE
1195f5d8d141S[email protected]                 log_info("BR/EDR support %u, LE support %u", hci_classic_supported(), hci_le_supported());
1196559e517eS[email protected]             }
1197*4696bddbSMatthias Ringwald             if (COMMAND_COMPLETE_EVENT(packet, hci_read_local_version_information)){
1198*4696bddbSMatthias Ringwald                 // hci_stack->hci_version    = READ_BT_16(packet, 4);
1199*4696bddbSMatthias Ringwald                 // hci_stack->hci_revision   = READ_BT_16(packet, 6);
1200*4696bddbSMatthias Ringwald                 // hci_stack->lmp_version    = READ_BT_16(packet, 8);
1201*4696bddbSMatthias Ringwald                 hci_stack->manufacturer   = READ_BT_16(packet, 10);
1202*4696bddbSMatthias Ringwald                 // hci_stack->lmp_subversion = READ_BT_16(packet, 12);
1203*4696bddbSMatthias Ringwald                 log_info("Manufacturer: 0x%04x", hci_stack->manufacturer);
1204*4696bddbSMatthias Ringwald             }
120556cf178bSmatthias.ringwald             break;
120656cf178bSmatthias.ringwald 
12077ec5eeaaSmatthias.ringwald         case HCI_EVENT_COMMAND_STATUS:
12087ec5eeaaSmatthias.ringwald             // get num cmd packets
12099da54300S[email protected]             // log_info("HCI_EVENT_COMMAND_STATUS cmds - old %u - new %u", hci_stack->num_cmd_packets, packet[3]);
12103a9fb326S[email protected]             hci_stack->num_cmd_packets = packet[3];
12117ec5eeaaSmatthias.ringwald             break;
12127ec5eeaaSmatthias.ringwald 
12132e440c8aS[email protected]         case HCI_EVENT_NUMBER_OF_COMPLETED_PACKETS:{
12142e440c8aS[email protected]             int offset = 3;
121556cf178bSmatthias.ringwald             for (i=0; i<packet[2];i++){
12162e440c8aS[email protected]                 handle = READ_BT_16(packet, offset);
12172e440c8aS[email protected]                 offset += 2;
12182e440c8aS[email protected]                 uint16_t num_packets = READ_BT_16(packet, offset);
12192e440c8aS[email protected]                 offset += 2;
12202e440c8aS[email protected] 
12215061f3afS[email protected]                 conn = hci_connection_for_handle(handle);
122256cf178bSmatthias.ringwald                 if (!conn){
12239da54300S[email protected]                     log_error("hci_number_completed_packet lists unused con handle %u", handle);
122456cf178bSmatthias.ringwald                     continue;
122556cf178bSmatthias.ringwald                 }
122623bed257S[email protected] 
1227e35edcc1S[email protected]                 if (conn->address_type == BD_ADDR_TYPE_SCO){
1228e35edcc1S[email protected]                     if (conn->num_sco_packets_sent >= num_packets){
1229e35edcc1S[email protected]                         conn->num_sco_packets_sent -= num_packets;
1230e35edcc1S[email protected]                     } else {
1231e35edcc1S[email protected]                         log_error("hci_number_completed_packets, more sco slots freed then sent.");
1232e35edcc1S[email protected]                         conn->num_sco_packets_sent = 0;
1233e35edcc1S[email protected]                     }
1234e35edcc1S[email protected] 
1235e35edcc1S[email protected]                 } else {
123623bed257S[email protected]                     if (conn->num_acl_packets_sent >= num_packets){
123756cf178bSmatthias.ringwald                         conn->num_acl_packets_sent -= num_packets;
123823bed257S[email protected]                     } else {
1239e35edcc1S[email protected]                         log_error("hci_number_completed_packets, more acl slots freed then sent.");
124023bed257S[email protected]                         conn->num_acl_packets_sent = 0;
124123bed257S[email protected]                     }
1242e35edcc1S[email protected]                 }
12439da54300S[email protected]                 // log_info("hci_number_completed_packet %u processed for handle %u, outstanding %u", num_packets, handle, conn->num_acl_packets_sent);
124456cf178bSmatthias.ringwald             }
12456772a24cSmatthias.ringwald             break;
12462e440c8aS[email protected]         }
12471f7b95a1Smatthias.ringwald         case HCI_EVENT_CONNECTION_REQUEST:
124837eaa4cfSmatthias.ringwald             bt_flip_addr(addr, &packet[2]);
124937eaa4cfSmatthias.ringwald             // TODO: eval COD 8-10
12502d00edd4Smatthias.ringwald             link_type = packet[11];
12519da54300S[email protected]             log_info("Connection_incoming: %s, type %u", bd_addr_to_str(addr), link_type);
1252e35edcc1S[email protected]             addr_type = link_type == 1 ? BD_ADDR_TYPE_CLASSIC : BD_ADDR_TYPE_SCO;
12532e77e513S[email protected]             conn = hci_connection_for_bd_addr_and_type(addr, addr_type);
12541f7b95a1Smatthias.ringwald             if (!conn) {
12555293c072S[email protected]                 conn = create_connection_for_bd_addr_and_type(addr, addr_type);
12561f7b95a1Smatthias.ringwald             }
1257ce4c8fabSmatthias.ringwald             if (!conn) {
1258ce4c8fabSmatthias.ringwald                 // CONNECTION REJECTED DUE TO LIMITED RESOURCES (0X0D)
12593a9fb326S[email protected]                 hci_stack->decline_reason = 0x0d;
12603a9fb326S[email protected]                 BD_ADDR_COPY(hci_stack->decline_addr, addr);
1261ce4c8fabSmatthias.ringwald                 break;
1262ce4c8fabSmatthias.ringwald             }
126332ab9390Smatthias.ringwald             conn->state = RECEIVED_CONNECTION_REQUEST;
126432ab9390Smatthias.ringwald             hci_run();
12651f7b95a1Smatthias.ringwald             break;
12661f7b95a1Smatthias.ringwald 
12676772a24cSmatthias.ringwald         case HCI_EVENT_CONNECTION_COMPLETE:
1268fe1ed1b8Smatthias.ringwald             // Connection management
1269fe1ed1b8Smatthias.ringwald             bt_flip_addr(addr, &packet[5]);
12709da54300S[email protected]             log_info("Connection_complete (status=%u) %s", packet[2], bd_addr_to_str(addr));
127196a45072S[email protected]             addr_type = BD_ADDR_TYPE_CLASSIC;
12722e77e513S[email protected]             conn = hci_connection_for_bd_addr_and_type(addr, addr_type);
1273fe1ed1b8Smatthias.ringwald             if (conn) {
1274b448a0e7Smatthias.ringwald                 if (!packet[2]){
1275c8e4258aSmatthias.ringwald                     conn->state = OPEN;
1276fe1ed1b8Smatthias.ringwald                     conn->con_handle = READ_BT_16(packet, 3);
1277ad83dc6aS[email protected]                     conn->bonding_flags |= BONDING_REQUEST_REMOTE_FEATURES;
1278ee091cf1Smatthias.ringwald 
1279c785ef68Smatthias.ringwald                     // restart timer
1280c21e6239Smatthias.ringwald                     run_loop_set_timer(&conn->timeout, HCI_CONNECTION_TIMEOUT_MS);
1281ee091cf1Smatthias.ringwald                     run_loop_add_timer(&conn->timeout);
1282c785ef68Smatthias.ringwald 
12839da54300S[email protected]                     log_info("New connection: handle %u, %s", conn->con_handle, bd_addr_to_str(conn->address));
128443bfb1bdSmatthias.ringwald 
128543bfb1bdSmatthias.ringwald                     hci_emit_nr_connections_changed();
1286b448a0e7Smatthias.ringwald                 } else {
12871bd5283dS[email protected]                     int notify_dedicated_bonding_failed = conn->bonding_flags & BONDING_DEDICATED;
12881bd5283dS[email protected]                     uint8_t status = packet[2];
12891bd5283dS[email protected]                     bd_addr_t bd_address;
12901bd5283dS[email protected]                     memcpy(&bd_address, conn->address, 6);
1291ad83dc6aS[email protected] 
1292b448a0e7Smatthias.ringwald                     // connection failed, remove entry
12933a9fb326S[email protected]                     linked_list_remove(&hci_stack->connections, (linked_item_t *) conn);
1294a3b02b71Smatthias.ringwald                     btstack_memory_hci_connection_free( conn );
1295c12e46e7Smatthias.ringwald 
12961bd5283dS[email protected]                     // notify client if dedicated bonding
12971bd5283dS[email protected]                     if (notify_dedicated_bonding_failed){
12981bd5283dS[email protected]                         log_info("hci notify_dedicated_bonding_failed");
12991bd5283dS[email protected]                         hci_emit_dedicated_bonding_result(bd_address, status);
13001bd5283dS[email protected]                     }
13011bd5283dS[email protected] 
1302c12e46e7Smatthias.ringwald                     // if authentication error, also delete link key
1303c12e46e7Smatthias.ringwald                     if (packet[2] == 0x05) {
13042e77e513S[email protected]                         hci_drop_link_key_for_bd_addr(addr);
1305c12e46e7Smatthias.ringwald                     }
1306fe1ed1b8Smatthias.ringwald                 }
1307fe1ed1b8Smatthias.ringwald             }
13086772a24cSmatthias.ringwald             break;
1309fe1ed1b8Smatthias.ringwald 
131044d0e3d5S[email protected]         case HCI_EVENT_SYNCHRONOUS_CONNECTION_COMPLETE:
131144d0e3d5S[email protected]             bt_flip_addr(addr, &packet[5]);
131244d0e3d5S[email protected]             log_info("Synchronous Connection Complete (status=%u) %s", packet[2], bd_addr_to_str(addr));
13131a06f663S[email protected]             if (packet[2]){
131444d0e3d5S[email protected]                 // connection failed
131544d0e3d5S[email protected]                 break;
131644d0e3d5S[email protected]             }
13172e77e513S[email protected]             conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_SCO);
1318e35edcc1S[email protected]             if (!conn) {
1319e35edcc1S[email protected]                 conn = create_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_SCO);
1320e35edcc1S[email protected]             }
1321e35edcc1S[email protected]             if (!conn) {
1322e35edcc1S[email protected]                 break;
1323e35edcc1S[email protected]             }
13241a06f663S[email protected]             conn->state = OPEN;
13251a06f663S[email protected]             conn->con_handle = READ_BT_16(packet, 3);
132644d0e3d5S[email protected]             break;
132744d0e3d5S[email protected] 
1328afd4e962S[email protected]         case HCI_EVENT_READ_REMOTE_SUPPORTED_FEATURES_COMPLETE:
1329afd4e962S[email protected]             handle = READ_BT_16(packet, 3);
1330afd4e962S[email protected]             conn = hci_connection_for_handle(handle);
1331afd4e962S[email protected]             if (!conn) break;
1332afd4e962S[email protected]             if (!packet[2]){
1333afd4e962S[email protected]                 uint8_t * features = &packet[5];
1334afd4e962S[email protected]                 if (features[6] & (1 << 3)){
1335afd4e962S[email protected]                     conn->bonding_flags |= BONDING_REMOTE_SUPPORTS_SSP;
1336afd4e962S[email protected]                 }
1337afd4e962S[email protected]             }
1338afd4e962S[email protected]             conn->bonding_flags |= BONDING_RECEIVED_REMOTE_FEATURES;
1339ad83dc6aS[email protected]             log_info("HCI_EVENT_READ_REMOTE_SUPPORTED_FEATURES_COMPLETE, bonding flags %x", conn->bonding_flags);
1340ad83dc6aS[email protected]             if (conn->bonding_flags & BONDING_DEDICATED){
1341ad83dc6aS[email protected]                 conn->bonding_flags |= BONDING_SEND_AUTHENTICATE_REQUEST;
1342ad83dc6aS[email protected]             }
1343afd4e962S[email protected]             break;
1344afd4e962S[email protected] 
13457fde4af9Smatthias.ringwald         case HCI_EVENT_LINK_KEY_REQUEST:
13469da54300S[email protected]             log_info("HCI_EVENT_LINK_KEY_REQUEST");
13477fde4af9Smatthias.ringwald             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], RECV_LINK_KEY_REQUEST);
134874d716b5S[email protected]             // non-bondable mode: link key negative reply will be sent by HANDLE_LINK_KEY_REQUEST
13493a9fb326S[email protected]             if (hci_stack->bondable && !hci_stack->remote_device_db) break;
135032ab9390Smatthias.ringwald             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], HANDLE_LINK_KEY_REQUEST);
135164472d52Smatthias.ringwald             hci_run();
1352d9a327f9Smatthias.ringwald             // request handled by hci_run() as HANDLE_LINK_KEY_REQUEST gets set
135329d53098Smatthias.ringwald             return;
13547fde4af9Smatthias.ringwald 
13559ab95c90S[email protected]         case HCI_EVENT_LINK_KEY_NOTIFICATION: {
135629d53098Smatthias.ringwald             bt_flip_addr(addr, &packet[2]);
13572e77e513S[email protected]             conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_CLASSIC);
13589ab95c90S[email protected]             if (!conn) break;
13599ab95c90S[email protected]             conn->authentication_flags |= RECV_LINK_KEY_NOTIFICATION;
13607bdc6798S[email protected]             link_key_type_t link_key_type = (link_key_type_t)packet[24];
13619ab95c90S[email protected]             // Change Connection Encryption keeps link key type
13629ab95c90S[email protected]             if (link_key_type != CHANGED_COMBINATION_KEY){
13639ab95c90S[email protected]                 conn->link_key_type = link_key_type;
13649ab95c90S[email protected]             }
13653a9fb326S[email protected]             if (!hci_stack->remote_device_db) break;
13662e77e513S[email protected]             hci_stack->remote_device_db->put_link_key(addr, &packet[8], conn->link_key_type);
136729d53098Smatthias.ringwald             // still forward event to allow dismiss of pairing dialog
13687fde4af9Smatthias.ringwald             break;
13699ab95c90S[email protected]         }
13707fde4af9Smatthias.ringwald 
13717fde4af9Smatthias.ringwald         case HCI_EVENT_PIN_CODE_REQUEST:
13726724cd9eS[email protected]             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], LEGACY_PAIRING_ACTIVE);
13734c57c146S[email protected]             // non-bondable mode: pin code negative reply will be sent
13743a9fb326S[email protected]             if (!hci_stack->bondable){
1375899283eaS[email protected]                 hci_add_connection_flags_for_flipped_bd_addr(&packet[2], DENY_PIN_CODE_REQUEST);
1376f8fb5f6eS[email protected]                 hci_run();
1377f8fb5f6eS[email protected]                 return;
13784c57c146S[email protected]             }
1379d9a327f9Smatthias.ringwald             // PIN CODE REQUEST means the link key request didn't succee -> delete stored link key
13803a9fb326S[email protected]             if (!hci_stack->remote_device_db) break;
1381d9a327f9Smatthias.ringwald             bt_flip_addr(addr, &packet[2]);
13822e77e513S[email protected]             hci_stack->remote_device_db->delete_link_key(addr);
13837fde4af9Smatthias.ringwald             break;
13847fde4af9Smatthias.ringwald 
13851d6b20aeS[email protected]         case HCI_EVENT_IO_CAPABILITY_REQUEST:
13861d6b20aeS[email protected]             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], RECV_IO_CAPABILITIES_REQUEST);
1387dbe1a790S[email protected]             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], SEND_IO_CAPABILITIES_REPLY);
1388dbe1a790S[email protected]             break;
1389dbe1a790S[email protected] 
1390dbe1a790S[email protected]         case HCI_EVENT_USER_CONFIRMATION_REQUEST:
13916724cd9eS[email protected]             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], SSP_PAIRING_ACTIVE);
13923a9fb326S[email protected]             if (!hci_stack->ssp_auto_accept) break;
1393dbe1a790S[email protected]             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], SEND_USER_CONFIRM_REPLY);
1394dbe1a790S[email protected]             break;
1395dbe1a790S[email protected] 
1396dbe1a790S[email protected]         case HCI_EVENT_USER_PASSKEY_REQUEST:
13976724cd9eS[email protected]             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], SSP_PAIRING_ACTIVE);
13983a9fb326S[email protected]             if (!hci_stack->ssp_auto_accept) break;
1399dbe1a790S[email protected]             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], SEND_USER_PASSKEY_REPLY);
14001d6b20aeS[email protected]             break;
14011d6b20aeS[email protected] 
1402f0944df2S[email protected]         case HCI_EVENT_ENCRYPTION_CHANGE:
1403f0944df2S[email protected]             handle = READ_BT_16(packet, 3);
1404f0944df2S[email protected]             conn = hci_connection_for_handle(handle);
1405f0944df2S[email protected]             if (!conn) break;
1406ad83dc6aS[email protected]             if (packet[2] == 0) {
1407f0944df2S[email protected]                 if (packet[5]){
1408f0944df2S[email protected]                     conn->authentication_flags |= CONNECTION_ENCRYPTED;
1409f0944df2S[email protected]                 } else {
1410536f9994S[email protected]                     conn->authentication_flags &= ~CONNECTION_ENCRYPTED;
1411f0944df2S[email protected]                 }
1412ad83dc6aS[email protected]             }
1413a00031e2S[email protected]             hci_emit_security_level(handle, gap_security_level_for_connection(conn));
1414f0944df2S[email protected]             break;
1415f0944df2S[email protected] 
14161eb2563eS[email protected]         case HCI_EVENT_AUTHENTICATION_COMPLETE_EVENT:
14171eb2563eS[email protected]             handle = READ_BT_16(packet, 3);
14181eb2563eS[email protected]             conn = hci_connection_for_handle(handle);
14191eb2563eS[email protected]             if (!conn) break;
1420ad83dc6aS[email protected] 
1421ad83dc6aS[email protected]             // dedicated bonding: send result and disconnect
1422ad83dc6aS[email protected]             if (conn->bonding_flags & BONDING_DEDICATED){
1423ad83dc6aS[email protected]                 conn->bonding_flags &= ~BONDING_DEDICATED;
1424ad83dc6aS[email protected]                 conn->bonding_flags |= BONDING_DISCONNECT_DEDICATED_DONE;
14251bd5283dS[email protected]                 conn->bonding_status = packet[2];
1426ad83dc6aS[email protected]                 break;
1427ad83dc6aS[email protected]             }
1428ad83dc6aS[email protected] 
1429b5cb6874S[email protected]             if (packet[2] == 0 && gap_security_level_for_link_key_type(conn->link_key_type) >= conn->requested_security_level){
14301eb2563eS[email protected]                 // link key sufficient for requested security
14311eb2563eS[email protected]                 conn->bonding_flags |= BONDING_SEND_ENCRYPTION_REQUEST;
1432ad83dc6aS[email protected]                 break;
1433ad83dc6aS[email protected]             }
14341eb2563eS[email protected]             // not enough
14351eb2563eS[email protected]             hci_emit_security_level(handle, gap_security_level_for_connection(conn));
14361eb2563eS[email protected]             break;
143734d2123cS[email protected] 
1438223aafc1Smatthias.ringwald #ifndef EMBEDDED
143974ec757aSmatthias.ringwald         case HCI_EVENT_REMOTE_NAME_REQUEST_COMPLETE:
14403a9fb326S[email protected]             if (!hci_stack->remote_device_db) break;
144174ec757aSmatthias.ringwald             if (packet[2]) break; // status not ok
144274ec757aSmatthias.ringwald             bt_flip_addr(addr, &packet[3]);
14435a06394aSmatthias.ringwald             // fix for invalid remote names - terminate on 0xff
14445a06394aSmatthias.ringwald             for (i=0; i<248;i++){
14455a06394aSmatthias.ringwald                 if (packet[9+i] == 0xff){
14465a06394aSmatthias.ringwald                     packet[9+i] = 0;
14475a06394aSmatthias.ringwald                     break;
1448cdc9101dSmatthias.ringwald                 }
14495a06394aSmatthias.ringwald             }
1450d2fe945cS[email protected]             memset(&device_name, 0, sizeof(device_name_t));
145174ec757aSmatthias.ringwald             strncpy((char*) device_name, (char*) &packet[9], 248);
14522e77e513S[email protected]             hci_stack->remote_device_db->put_name(addr, &device_name);
145374ec757aSmatthias.ringwald             break;
145474ec757aSmatthias.ringwald 
145574ec757aSmatthias.ringwald         case HCI_EVENT_INQUIRY_RESULT:
1456206a9031S[email protected]         case HCI_EVENT_INQUIRY_RESULT_WITH_RSSI:{
14573a9fb326S[email protected]             if (!hci_stack->remote_device_db) break;
145874ec757aSmatthias.ringwald             // first send inq result packet
14593a9fb326S[email protected]             hci_stack->packet_handler(HCI_EVENT_PACKET, packet, size);
146074ec757aSmatthias.ringwald             // then send cached remote names
1461206a9031S[email protected]             int offset = 3;
146274ec757aSmatthias.ringwald             for (i=0; i<packet[2];i++){
1463206a9031S[email protected]                 bt_flip_addr(addr, &packet[offset]);
1464206a9031S[email protected]                 offset += 14; // 6 + 1 + 1 + 1 + 3 + 2;
14652e77e513S[email protected]                 if (hci_stack->remote_device_db->get_name(addr, &device_name)){
14662e77e513S[email protected]                     hci_emit_remote_name_cached(addr, &device_name);
146774ec757aSmatthias.ringwald                 }
146874ec757aSmatthias.ringwald             }
146974ec757aSmatthias.ringwald             return;
1470206a9031S[email protected]         }
1471223aafc1Smatthias.ringwald #endif
147274ec757aSmatthias.ringwald 
147386805605S[email protected]         // HCI_EVENT_DISCONNECTION_COMPLETE
1474ccda6e14S[email protected]         // has been split, to first notify stack before shutting connection down
1475ccda6e14S[email protected]         // see end of function, too.
1476a4f30ec0S[email protected]         case HCI_EVENT_DISCONNECTION_COMPLETE:
1477a4f30ec0S[email protected]             if (packet[2]) break;   // status != 0
1478ccda6e14S[email protected]             handle = READ_BT_16(packet, 3);
1479ccda6e14S[email protected]             hci_connection_t * conn = hci_connection_for_handle(handle);
1480a4f30ec0S[email protected]             if (!conn) break;       // no conn struct anymore
1481ccda6e14S[email protected]             conn->state = RECEIVED_DISCONNECTION_COMPLETE;
1482ccda6e14S[email protected]             break;
14836772a24cSmatthias.ringwald 
1484c68bdf90Smatthias.ringwald         case HCI_EVENT_HARDWARE_ERROR:
14853a9fb326S[email protected]             if(hci_stack->control && hci_stack->control->hw_error){
14863a9fb326S[email protected]                 (*hci_stack->control->hw_error)();
14877586ee35S[email protected]             } else {
14887586ee35S[email protected]                 // if no special requests, just reboot stack
14897586ee35S[email protected]                 hci_power_control_off();
14907586ee35S[email protected]                 hci_power_control_on();
1491c68bdf90Smatthias.ringwald             }
1492c68bdf90Smatthias.ringwald             break;
1493c68bdf90Smatthias.ringwald 
14946b4af23dS[email protected]         case DAEMON_EVENT_HCI_PACKET_SENT:
1495d051460cS[email protected]             // release packet buffer only for asynchronous transport and if there are not further fragements
14964fa24b5fS[email protected]             if (hci_transport_synchronous()) {
14974fa24b5fS[email protected]                 log_error("Synchronous HCI Transport shouldn't send DAEMON_EVENT_HCI_PACKET_SENT");
14984fa24b5fS[email protected]                 return; // instead of break: to avoid re-entering hci_run()
14994fa24b5fS[email protected]             }
1500d051460cS[email protected]             if (hci_stack->acl_fragmentation_total_size) break;
1501d051460cS[email protected]             hci_release_packet_buffer();
15026b4af23dS[email protected]             break;
15036b4af23dS[email protected] 
15045909f7f2Smatthias.ringwald #ifdef HAVE_BLE
15055909f7f2Smatthias.ringwald         case HCI_EVENT_LE_META:
15065909f7f2Smatthias.ringwald             switch (packet[2]){
150757c9da5bS[email protected]                 case HCI_SUBEVENT_LE_ADVERTISING_REPORT:
15089da54300S[email protected]                     log_info("advertising report received");
15097bdc6798S[email protected]                     if (hci_stack->le_scanning_state != LE_SCANNING) break;
151057c9da5bS[email protected]                     le_handle_advertisement_report(packet, size);
15117bdc6798S[email protected]                     break;
15125909f7f2Smatthias.ringwald                 case HCI_SUBEVENT_LE_CONNECTION_COMPLETE:
15135909f7f2Smatthias.ringwald                     // Connection management
15145909f7f2Smatthias.ringwald                     bt_flip_addr(addr, &packet[8]);
15157bdc6798S[email protected]                     addr_type = (bd_addr_type_t)packet[7];
15169da54300S[email protected]                     log_info("LE Connection_complete (status=%u) type %u, %s", packet[3], addr_type, bd_addr_to_str(addr));
15175909f7f2Smatthias.ringwald                     // LE connections are auto-accepted, so just create a connection if there isn't one already
15182e77e513S[email protected]                     conn = hci_connection_for_bd_addr_and_type(addr, addr_type);
15195909f7f2Smatthias.ringwald                     if (packet[3]){
15205909f7f2Smatthias.ringwald                         if (conn){
15215909f7f2Smatthias.ringwald                             // outgoing connection failed, remove entry
15223a9fb326S[email protected]                             linked_list_remove(&hci_stack->connections, (linked_item_t *) conn);
15235909f7f2Smatthias.ringwald                             btstack_memory_hci_connection_free( conn );
15245909f7f2Smatthias.ringwald                         }
15255909f7f2Smatthias.ringwald                         // if authentication error, also delete link key
15265909f7f2Smatthias.ringwald                         if (packet[3] == 0x05) {
15272e77e513S[email protected]                             hci_drop_link_key_for_bd_addr(addr);
15285909f7f2Smatthias.ringwald                         }
15295909f7f2Smatthias.ringwald                         break;
15305909f7f2Smatthias.ringwald                     }
15315909f7f2Smatthias.ringwald                     if (!conn){
153296a45072S[email protected]                         conn = create_connection_for_bd_addr_and_type(addr, addr_type);
15335909f7f2Smatthias.ringwald                     }
15345909f7f2Smatthias.ringwald                     if (!conn){
15355909f7f2Smatthias.ringwald                         // no memory
15365909f7f2Smatthias.ringwald                         break;
15375909f7f2Smatthias.ringwald                     }
15385909f7f2Smatthias.ringwald 
15395909f7f2Smatthias.ringwald                     conn->state = OPEN;
15405909f7f2Smatthias.ringwald                     conn->con_handle = READ_BT_16(packet, 4);
15415909f7f2Smatthias.ringwald 
15425909f7f2Smatthias.ringwald                     // TODO: store - role, peer address type, conn_interval, conn_latency, supervision timeout, master clock
15435909f7f2Smatthias.ringwald 
15445909f7f2Smatthias.ringwald                     // restart timer
15455909f7f2Smatthias.ringwald                     // run_loop_set_timer(&conn->timeout, HCI_CONNECTION_TIMEOUT_MS);
15465909f7f2Smatthias.ringwald                     // run_loop_add_timer(&conn->timeout);
15475909f7f2Smatthias.ringwald 
15489da54300S[email protected]                     log_info("New connection: handle %u, %s", conn->con_handle, bd_addr_to_str(conn->address));
15495909f7f2Smatthias.ringwald 
15505909f7f2Smatthias.ringwald                     hci_emit_nr_connections_changed();
15515909f7f2Smatthias.ringwald                     break;
15525909f7f2Smatthias.ringwald 
15539da54300S[email protected]             // log_info("LE buffer size: %u, count %u", READ_BT_16(packet,6), packet[8]);
155465a46ef3S[email protected] 
15555909f7f2Smatthias.ringwald                 default:
15565909f7f2Smatthias.ringwald                     break;
15575909f7f2Smatthias.ringwald             }
15585909f7f2Smatthias.ringwald             break;
15595909f7f2Smatthias.ringwald #endif
15606772a24cSmatthias.ringwald         default:
15616772a24cSmatthias.ringwald             break;
1562fe1ed1b8Smatthias.ringwald     }
1563fe1ed1b8Smatthias.ringwald 
15643429f56bSmatthias.ringwald     // handle BT initialization
15653a9fb326S[email protected]     if (hci_stack->state == HCI_STATE_INITIALIZING){
15666155b3d3S[email protected]         hci_initializing_event_handler(packet, size);
1567c9af4d3fS[email protected]     }
156822909952Smatthias.ringwald 
156989db417bSmatthias.ringwald     // help with BT sleep
15703a9fb326S[email protected]     if (hci_stack->state == HCI_STATE_FALLING_ASLEEP
157174b323a9SMatthias Ringwald         && hci_stack->substate == HCI_FALLING_ASLEEP_W4_WRITE_SCAN_ENABLE
157289db417bSmatthias.ringwald         && COMMAND_COMPLETE_EVENT(packet, hci_write_scan_enable)){
157355975f88SMatthias Ringwald         hci_initializing_next_state();
157489db417bSmatthias.ringwald     }
157589db417bSmatthias.ringwald 
157686805605S[email protected]     // notify upper stack
15773a9fb326S[email protected]     hci_stack->packet_handler(HCI_EVENT_PACKET, packet, size);
157894ab26f8Smatthias.ringwald 
157986805605S[email protected]     // moved here to give upper stack a chance to close down everything with hci_connection_t intact
158086805605S[email protected]     if (packet[0] == HCI_EVENT_DISCONNECTION_COMPLETE){
158186805605S[email protected]         if (!packet[2]){
158286805605S[email protected]             handle = READ_BT_16(packet, 3);
158386805605S[email protected]             hci_connection_t * conn = hci_connection_for_handle(handle);
158486805605S[email protected]             if (conn) {
158586805605S[email protected]                 uint8_t status = conn->bonding_status;
1586bb820044S[email protected]                 uint16_t flags = conn->bonding_flags;
158786805605S[email protected]                 bd_addr_t bd_address;
158886805605S[email protected]                 memcpy(&bd_address, conn->address, 6);
158986805605S[email protected]                 hci_shutdown_connection(conn);
1590bb820044S[email protected]                 // connection struct is gone, don't access anymore
1591bb820044S[email protected]                 if (flags & BONDING_EMIT_COMPLETE_ON_DISCONNECT){
159286805605S[email protected]                     hci_emit_dedicated_bonding_result(bd_address, status);
159386805605S[email protected]                 }
159486805605S[email protected]             }
159586805605S[email protected]         }
159686805605S[email protected]     }
159786805605S[email protected] 
159894ab26f8Smatthias.ringwald 	// execute main loop
159994ab26f8Smatthias.ringwald 	hci_run();
160016833f0aSmatthias.ringwald }
160116833f0aSmatthias.ringwald 
1602c91d150bS[email protected] static void sco_handler(uint8_t * packet, uint16_t size){
1603c91d150bS[email protected]     // not handled yet
1604c91d150bS[email protected] }
1605c91d150bS[email protected] 
16060a57e69fSmatthias.ringwald static void packet_handler(uint8_t packet_type, uint8_t *packet, uint16_t size){
16075bb5bc3eS[email protected]     hci_dump_packet(packet_type, 1, packet, size);
160810e830c9Smatthias.ringwald     switch (packet_type) {
160910e830c9Smatthias.ringwald         case HCI_EVENT_PACKET:
161010e830c9Smatthias.ringwald             event_handler(packet, size);
161110e830c9Smatthias.ringwald             break;
161210e830c9Smatthias.ringwald         case HCI_ACL_DATA_PACKET:
161310e830c9Smatthias.ringwald             acl_handler(packet, size);
161410e830c9Smatthias.ringwald             break;
1615c91d150bS[email protected]         case HCI_SCO_DATA_PACKET:
1616c91d150bS[email protected]             sco_handler(packet, size);
161710e830c9Smatthias.ringwald         default:
161810e830c9Smatthias.ringwald             break;
161910e830c9Smatthias.ringwald     }
162010e830c9Smatthias.ringwald }
162110e830c9Smatthias.ringwald 
1622fcadd0caSmatthias.ringwald /** Register HCI packet handlers */
16232718e2e7Smatthias.ringwald void hci_register_packet_handler(void (*handler)(uint8_t packet_type, uint8_t *packet, uint16_t size)){
16243a9fb326S[email protected]     hci_stack->packet_handler = handler;
162516833f0aSmatthias.ringwald }
162616833f0aSmatthias.ringwald 
16276155b3d3S[email protected] static void hci_state_reset(){
1628595bdbfbS[email protected]     // no connections yet
1629595bdbfbS[email protected]     hci_stack->connections = NULL;
163074308b23Smatthias.ringwald 
163174308b23Smatthias.ringwald     // keep discoverable/connectable as this has been requested by the client(s)
163274308b23Smatthias.ringwald     // hci_stack->discoverable = 0;
163374308b23Smatthias.ringwald     // hci_stack->connectable = 0;
163474308b23Smatthias.ringwald     // hci_stack->bondable = 1;
1635595bdbfbS[email protected] 
163644935e40S[email protected]     // buffer is free
163744935e40S[email protected]     hci_stack->hci_packet_buffer_reserved = 0;
163844935e40S[email protected] 
1639595bdbfbS[email protected]     // no pending cmds
1640595bdbfbS[email protected]     hci_stack->decline_reason = 0;
1641595bdbfbS[email protected]     hci_stack->new_scan_enable_value = 0xff;
1642595bdbfbS[email protected] 
1643595bdbfbS[email protected]     // LE
1644595bdbfbS[email protected]     hci_stack->adv_addr_type = 0;
1645595bdbfbS[email protected]     memset(hci_stack->adv_address, 0, 6);
1646595bdbfbS[email protected]     hci_stack->le_scanning_state = LE_SCAN_IDLE;
1647e2602ea2Smatthias.ringwald     hci_stack->le_scan_type = 0xff;
1648da886c03S[email protected]     hci_stack->le_connection_parameter_range.le_conn_interval_min = 0x0006;
1649da886c03S[email protected]     hci_stack->le_connection_parameter_range.le_conn_interval_max = 0x0C80;
1650da886c03S[email protected]     hci_stack->le_connection_parameter_range.le_conn_latency_min = 0x0000;
1651da886c03S[email protected]     hci_stack->le_connection_parameter_range.le_conn_latency_max = 0x03E8;
1652da886c03S[email protected]     hci_stack->le_connection_parameter_range.le_supervision_timeout_min = 0x000A;
1653da886c03S[email protected]     hci_stack->le_connection_parameter_range.le_supervision_timeout_max = 0x0C80;
1654595bdbfbS[email protected] }
1655595bdbfbS[email protected] 
16564f4fc1dfSmatthias.ringwald void hci_init(hci_transport_t *transport, void *config, bt_control_t *control, remote_device_db_t const* remote_device_db){
1657475c8125Smatthias.ringwald 
16583a9fb326S[email protected] #ifdef HAVE_MALLOC
16593a9fb326S[email protected]     if (!hci_stack) {
16603a9fb326S[email protected]         hci_stack = (hci_stack_t*) malloc(sizeof(hci_stack_t));
16613a9fb326S[email protected]     }
16623a9fb326S[email protected] #else
16633a9fb326S[email protected]     hci_stack = &hci_stack_static;
16643a9fb326S[email protected] #endif
166566fb9560S[email protected]     memset(hci_stack, 0, sizeof(hci_stack_t));
16663a9fb326S[email protected] 
1667475c8125Smatthias.ringwald     // reference to use transport layer implementation
16683a9fb326S[email protected]     hci_stack->hci_transport = transport;
1669475c8125Smatthias.ringwald 
167011e23e5fSmatthias.ringwald     // references to used control implementation
16713a9fb326S[email protected]     hci_stack->control = control;
167211e23e5fSmatthias.ringwald 
167311e23e5fSmatthias.ringwald     // reference to used config
16743a9fb326S[email protected]     hci_stack->config = config;
167511e23e5fSmatthias.ringwald 
167616833f0aSmatthias.ringwald     // higher level handler
16773a9fb326S[email protected]     hci_stack->packet_handler = dummy_handler;
167816833f0aSmatthias.ringwald 
1679404843c1Smatthias.ringwald     // store and open remote device db
16803a9fb326S[email protected]     hci_stack->remote_device_db = remote_device_db;
16813a9fb326S[email protected]     if (hci_stack->remote_device_db) {
16823a9fb326S[email protected]         hci_stack->remote_device_db->open();
1683404843c1Smatthias.ringwald     }
168429d53098Smatthias.ringwald 
16858fcba05dSmatthias.ringwald     // max acl payload size defined in config.h
16863a9fb326S[email protected]     hci_stack->acl_data_packet_length = HCI_ACL_PAYLOAD_SIZE;
16878fcba05dSmatthias.ringwald 
168816833f0aSmatthias.ringwald     // register packet handlers with transport
168910e830c9Smatthias.ringwald     transport->register_packet_handler(&packet_handler);
1690f5454fc6Smatthias.ringwald 
16913a9fb326S[email protected]     hci_stack->state = HCI_STATE_OFF;
1692e2386ba1S[email protected] 
1693e2386ba1S[email protected]     // class of device
16943a9fb326S[email protected]     hci_stack->class_of_device = 0x007a020c; // Smartphone
1695a45d6b9fS[email protected] 
1696f20168b8Smatthias.ringwald     // bondable by default
1697f20168b8Smatthias.ringwald     hci_stack->bondable = 1;
1698f20168b8Smatthias.ringwald 
169963048403S[email protected]     // Secure Simple Pairing default: enable, no I/O capabilities, general bonding, mitm not required, auto accept
17003a9fb326S[email protected]     hci_stack->ssp_enable = 1;
17013a9fb326S[email protected]     hci_stack->ssp_io_capability = SSP_IO_CAPABILITY_NO_INPUT_NO_OUTPUT;
17023a9fb326S[email protected]     hci_stack->ssp_authentication_requirement = SSP_IO_AUTHREQ_MITM_PROTECTION_NOT_REQUIRED_GENERAL_BONDING;
17033a9fb326S[email protected]     hci_stack->ssp_auto_accept = 1;
170469a97523S[email protected] 
1705595bdbfbS[email protected]     hci_state_reset();
1706475c8125Smatthias.ringwald }
1707475c8125Smatthias.ringwald 
1708404843c1Smatthias.ringwald void hci_close(){
1709404843c1Smatthias.ringwald     // close remote device db
17103a9fb326S[email protected]     if (hci_stack->remote_device_db) {
17113a9fb326S[email protected]         hci_stack->remote_device_db->close();
1712404843c1Smatthias.ringwald     }
17133a9fb326S[email protected]     while (hci_stack->connections) {
1714bc68afe2S[email protected]         // cancel all l2cap connections
1715bc68afe2S[email protected]         hci_emit_disconnection_complete(((hci_connection_t *) hci_stack->connections)->con_handle, 0x16); // terminated by local host
17163a9fb326S[email protected]         hci_shutdown_connection((hci_connection_t *) hci_stack->connections);
1717f5454fc6Smatthias.ringwald     }
1718f5454fc6Smatthias.ringwald     hci_power_control(HCI_POWER_OFF);
17193a9fb326S[email protected] 
17203a9fb326S[email protected] #ifdef HAVE_MALLOC
17213a9fb326S[email protected]     free(hci_stack);
17223a9fb326S[email protected] #endif
17233a9fb326S[email protected]     hci_stack = NULL;
1724404843c1Smatthias.ringwald }
1725404843c1Smatthias.ringwald 
17269e61646fS[email protected] void hci_set_class_of_device(uint32_t class_of_device){
17279e61646fS[email protected]     hci_stack->class_of_device = class_of_device;
17289e61646fS[email protected] }
17299e61646fS[email protected] 
1730f456b2d0S[email protected] // Set Public BD ADDR - passed on to Bluetooth chipset if supported in bt_control_h
1731f456b2d0S[email protected] void hci_set_bd_addr(bd_addr_t addr){
1732f456b2d0S[email protected]     memcpy(hci_stack->custom_bd_addr, addr, 6);
1733f456b2d0S[email protected]     hci_stack->custom_bd_addr_set = 1;
1734f456b2d0S[email protected] }
1735f456b2d0S[email protected] 
173666fb9560S[email protected] void hci_disable_l2cap_timeout_check(){
173766fb9560S[email protected]     disable_l2cap_timeouts = 1;
173866fb9560S[email protected] }
17398d213e1aSmatthias.ringwald // State-Module-Driver overview
17408d213e1aSmatthias.ringwald // state                    module  low-level
17418d213e1aSmatthias.ringwald // HCI_STATE_OFF             off      close
17428d213e1aSmatthias.ringwald // HCI_STATE_INITIALIZING,   on       open
17438d213e1aSmatthias.ringwald // HCI_STATE_WORKING,        on       open
17448d213e1aSmatthias.ringwald // HCI_STATE_HALTING,        on       open
1745d661ed19Smatthias.ringwald // HCI_STATE_SLEEPING,    off/sleep   close
1746d661ed19Smatthias.ringwald // HCI_STATE_FALLING_ASLEEP  on       open
1747c7e0c5f6Smatthias.ringwald 
174840d1c7a4Smatthias.ringwald static int hci_power_control_on(void){
17497301ad89Smatthias.ringwald 
1750038bc64cSmatthias.ringwald     // power on
1751f9a30166Smatthias.ringwald     int err = 0;
17523a9fb326S[email protected]     if (hci_stack->control && hci_stack->control->on){
17533a9fb326S[email protected]         err = (*hci_stack->control->on)(hci_stack->config);
1754f9a30166Smatthias.ringwald     }
1755038bc64cSmatthias.ringwald     if (err){
17569da54300S[email protected]         log_error( "POWER_ON failed");
1757038bc64cSmatthias.ringwald         hci_emit_hci_open_failed();
1758038bc64cSmatthias.ringwald         return err;
1759038bc64cSmatthias.ringwald     }
1760038bc64cSmatthias.ringwald 
1761038bc64cSmatthias.ringwald     // open low-level device
17623a9fb326S[email protected]     err = hci_stack->hci_transport->open(hci_stack->config);
1763038bc64cSmatthias.ringwald     if (err){
17649da54300S[email protected]         log_error( "HCI_INIT failed, turning Bluetooth off again");
17653a9fb326S[email protected]         if (hci_stack->control && hci_stack->control->off){
17663a9fb326S[email protected]             (*hci_stack->control->off)(hci_stack->config);
1767f9a30166Smatthias.ringwald         }
1768038bc64cSmatthias.ringwald         hci_emit_hci_open_failed();
1769038bc64cSmatthias.ringwald         return err;
1770038bc64cSmatthias.ringwald     }
17718d213e1aSmatthias.ringwald     return 0;
17728d213e1aSmatthias.ringwald }
1773038bc64cSmatthias.ringwald 
177440d1c7a4Smatthias.ringwald static void hci_power_control_off(void){
17758d213e1aSmatthias.ringwald 
17769da54300S[email protected]     log_info("hci_power_control_off");
17779418f9c9Smatthias.ringwald 
17788d213e1aSmatthias.ringwald     // close low-level device
17793a9fb326S[email protected]     hci_stack->hci_transport->close(hci_stack->config);
17808d213e1aSmatthias.ringwald 
17819da54300S[email protected]     log_info("hci_power_control_off - hci_transport closed");
17829418f9c9Smatthias.ringwald 
17838d213e1aSmatthias.ringwald     // power off
17843a9fb326S[email protected]     if (hci_stack->control && hci_stack->control->off){
17853a9fb326S[email protected]         (*hci_stack->control->off)(hci_stack->config);
17868d213e1aSmatthias.ringwald     }
17879418f9c9Smatthias.ringwald 
17889da54300S[email protected]     log_info("hci_power_control_off - control closed");
17899418f9c9Smatthias.ringwald 
17903a9fb326S[email protected]     hci_stack->state = HCI_STATE_OFF;
179172ea5239Smatthias.ringwald }
179272ea5239Smatthias.ringwald 
179340d1c7a4Smatthias.ringwald static void hci_power_control_sleep(void){
179472ea5239Smatthias.ringwald 
17959da54300S[email protected]     log_info("hci_power_control_sleep");
17963144bce4Smatthias.ringwald 
1797b429b9b7Smatthias.ringwald #if 0
1798b429b9b7Smatthias.ringwald     // don't close serial port during sleep
1799b429b9b7Smatthias.ringwald 
180072ea5239Smatthias.ringwald     // close low-level device
18013a9fb326S[email protected]     hci_stack->hci_transport->close(hci_stack->config);
1802b429b9b7Smatthias.ringwald #endif
180372ea5239Smatthias.ringwald 
180472ea5239Smatthias.ringwald     // sleep mode
18053a9fb326S[email protected]     if (hci_stack->control && hci_stack->control->sleep){
18063a9fb326S[email protected]         (*hci_stack->control->sleep)(hci_stack->config);
180772ea5239Smatthias.ringwald     }
1808b429b9b7Smatthias.ringwald 
18093a9fb326S[email protected]     hci_stack->state = HCI_STATE_SLEEPING;
18108d213e1aSmatthias.ringwald }
18118d213e1aSmatthias.ringwald 
181240d1c7a4Smatthias.ringwald static int hci_power_control_wake(void){
1813b429b9b7Smatthias.ringwald 
18149da54300S[email protected]     log_info("hci_power_control_wake");
1815b429b9b7Smatthias.ringwald 
1816b429b9b7Smatthias.ringwald     // wake on
18173a9fb326S[email protected]     if (hci_stack->control && hci_stack->control->wake){
18183a9fb326S[email protected]         (*hci_stack->control->wake)(hci_stack->config);
1819b429b9b7Smatthias.ringwald     }
1820b429b9b7Smatthias.ringwald 
1821b429b9b7Smatthias.ringwald #if 0
1822b429b9b7Smatthias.ringwald     // open low-level device
18233a9fb326S[email protected]     int err = hci_stack->hci_transport->open(hci_stack->config);
1824b429b9b7Smatthias.ringwald     if (err){
18259da54300S[email protected]         log_error( "HCI_INIT failed, turning Bluetooth off again");
18263a9fb326S[email protected]         if (hci_stack->control && hci_stack->control->off){
18273a9fb326S[email protected]             (*hci_stack->control->off)(hci_stack->config);
1828b429b9b7Smatthias.ringwald         }
1829b429b9b7Smatthias.ringwald         hci_emit_hci_open_failed();
1830b429b9b7Smatthias.ringwald         return err;
1831b429b9b7Smatthias.ringwald     }
1832b429b9b7Smatthias.ringwald #endif
1833b429b9b7Smatthias.ringwald 
1834b429b9b7Smatthias.ringwald     return 0;
1835b429b9b7Smatthias.ringwald }
1836b429b9b7Smatthias.ringwald 
183744935e40S[email protected] static void hci_power_transition_to_initializing(void){
183844935e40S[email protected]     // set up state machine
183944935e40S[email protected]     hci_stack->num_cmd_packets = 1; // assume that one cmd can be sent
184044935e40S[email protected]     hci_stack->hci_packet_buffer_reserved = 0;
184144935e40S[email protected]     hci_stack->state = HCI_STATE_INITIALIZING;
18425c363727SMatthias Ringwald     hci_stack->substate = HCI_INIT_SEND_RESET;
184344935e40S[email protected] }
1844b429b9b7Smatthias.ringwald 
18458d213e1aSmatthias.ringwald int hci_power_control(HCI_POWER_MODE power_mode){
1846d661ed19Smatthias.ringwald 
18479da54300S[email protected]     log_info("hci_power_control: %u, current mode %u", power_mode, hci_stack->state);
1848d661ed19Smatthias.ringwald 
18498d213e1aSmatthias.ringwald     int err = 0;
18503a9fb326S[email protected]     switch (hci_stack->state){
18518d213e1aSmatthias.ringwald 
18528d213e1aSmatthias.ringwald         case HCI_STATE_OFF:
18538d213e1aSmatthias.ringwald             switch (power_mode){
18548d213e1aSmatthias.ringwald                 case HCI_POWER_ON:
18558d213e1aSmatthias.ringwald                     err = hci_power_control_on();
185697b61c7bS[email protected]                     if (err) {
185797b61c7bS[email protected]                         log_error("hci_power_control_on() error %u", err);
185897b61c7bS[email protected]                         return err;
185997b61c7bS[email protected]                     }
186044935e40S[email protected]                     hci_power_transition_to_initializing();
18618d213e1aSmatthias.ringwald                     break;
18628d213e1aSmatthias.ringwald                 case HCI_POWER_OFF:
18638d213e1aSmatthias.ringwald                     // do nothing
18648d213e1aSmatthias.ringwald                     break;
18658d213e1aSmatthias.ringwald                 case HCI_POWER_SLEEP:
1866b546ac54Smatthias.ringwald                     // do nothing (with SLEEP == OFF)
18678d213e1aSmatthias.ringwald                     break;
18688d213e1aSmatthias.ringwald             }
18698d213e1aSmatthias.ringwald             break;
18707301ad89Smatthias.ringwald 
18718d213e1aSmatthias.ringwald         case HCI_STATE_INITIALIZING:
18728d213e1aSmatthias.ringwald             switch (power_mode){
18738d213e1aSmatthias.ringwald                 case HCI_POWER_ON:
18748d213e1aSmatthias.ringwald                     // do nothing
18758d213e1aSmatthias.ringwald                     break;
18768d213e1aSmatthias.ringwald                 case HCI_POWER_OFF:
18778d213e1aSmatthias.ringwald                     // no connections yet, just turn it off
18788d213e1aSmatthias.ringwald                     hci_power_control_off();
18798d213e1aSmatthias.ringwald                     break;
18808d213e1aSmatthias.ringwald                 case HCI_POWER_SLEEP:
1881b546ac54Smatthias.ringwald                     // no connections yet, just turn it off
188272ea5239Smatthias.ringwald                     hci_power_control_sleep();
18838d213e1aSmatthias.ringwald                     break;
18848d213e1aSmatthias.ringwald             }
18858d213e1aSmatthias.ringwald             break;
18867301ad89Smatthias.ringwald 
18878d213e1aSmatthias.ringwald         case HCI_STATE_WORKING:
18888d213e1aSmatthias.ringwald             switch (power_mode){
18898d213e1aSmatthias.ringwald                 case HCI_POWER_ON:
18908d213e1aSmatthias.ringwald                     // do nothing
18918d213e1aSmatthias.ringwald                     break;
18928d213e1aSmatthias.ringwald                 case HCI_POWER_OFF:
1893c7e0c5f6Smatthias.ringwald                     // see hci_run
18943a9fb326S[email protected]                     hci_stack->state = HCI_STATE_HALTING;
18958d213e1aSmatthias.ringwald                     break;
18968d213e1aSmatthias.ringwald                 case HCI_POWER_SLEEP:
1897b546ac54Smatthias.ringwald                     // see hci_run
18983a9fb326S[email protected]                     hci_stack->state = HCI_STATE_FALLING_ASLEEP;
189974b323a9SMatthias Ringwald                     hci_stack->substate = HCI_FALLING_ASLEEP_DISCONNECT;
19008d213e1aSmatthias.ringwald                     break;
19018d213e1aSmatthias.ringwald             }
19028d213e1aSmatthias.ringwald             break;
19037301ad89Smatthias.ringwald 
19048d213e1aSmatthias.ringwald         case HCI_STATE_HALTING:
19058d213e1aSmatthias.ringwald             switch (power_mode){
19068d213e1aSmatthias.ringwald                 case HCI_POWER_ON:
190744935e40S[email protected]                     hci_power_transition_to_initializing();
19088d213e1aSmatthias.ringwald                     break;
19098d213e1aSmatthias.ringwald                 case HCI_POWER_OFF:
19108d213e1aSmatthias.ringwald                     // do nothing
19118d213e1aSmatthias.ringwald                     break;
19128d213e1aSmatthias.ringwald                 case HCI_POWER_SLEEP:
1913b546ac54Smatthias.ringwald                     // see hci_run
19143a9fb326S[email protected]                     hci_stack->state = HCI_STATE_FALLING_ASLEEP;
191574b323a9SMatthias Ringwald                     hci_stack->substate = HCI_FALLING_ASLEEP_DISCONNECT;
19168d213e1aSmatthias.ringwald                     break;
19178d213e1aSmatthias.ringwald             }
19188d213e1aSmatthias.ringwald             break;
19198d213e1aSmatthias.ringwald 
19208d213e1aSmatthias.ringwald         case HCI_STATE_FALLING_ASLEEP:
19218d213e1aSmatthias.ringwald             switch (power_mode){
19228d213e1aSmatthias.ringwald                 case HCI_POWER_ON:
192328171530Smatthias.ringwald 
192428171530Smatthias.ringwald #if defined(USE_POWERMANAGEMENT) && defined(USE_BLUETOOL)
192528171530Smatthias.ringwald                     // nothing to do, if H4 supports power management
192628171530Smatthias.ringwald                     if (bt_control_iphone_power_management_enabled()){
19273a9fb326S[email protected]                         hci_stack->state = HCI_STATE_INITIALIZING;
192874b323a9SMatthias Ringwald                         hci_stack->substate = HCI_INIT_WRITE_SCAN_ENABLE;   // init after sleep
192928171530Smatthias.ringwald                         break;
193028171530Smatthias.ringwald                     }
193128171530Smatthias.ringwald #endif
193244935e40S[email protected]                     hci_power_transition_to_initializing();
19338d213e1aSmatthias.ringwald                     break;
19348d213e1aSmatthias.ringwald                 case HCI_POWER_OFF:
1935b546ac54Smatthias.ringwald                     // see hci_run
19363a9fb326S[email protected]                     hci_stack->state = HCI_STATE_HALTING;
19378d213e1aSmatthias.ringwald                     break;
19388d213e1aSmatthias.ringwald                 case HCI_POWER_SLEEP:
1939b546ac54Smatthias.ringwald                     // do nothing
19408d213e1aSmatthias.ringwald                     break;
19418d213e1aSmatthias.ringwald             }
19428d213e1aSmatthias.ringwald             break;
19438d213e1aSmatthias.ringwald 
19448d213e1aSmatthias.ringwald         case HCI_STATE_SLEEPING:
19458d213e1aSmatthias.ringwald             switch (power_mode){
19468d213e1aSmatthias.ringwald                 case HCI_POWER_ON:
194728171530Smatthias.ringwald 
194828171530Smatthias.ringwald #if defined(USE_POWERMANAGEMENT) && defined(USE_BLUETOOL)
194928171530Smatthias.ringwald                     // nothing to do, if H4 supports power management
195028171530Smatthias.ringwald                     if (bt_control_iphone_power_management_enabled()){
19513a9fb326S[email protected]                         hci_stack->state = HCI_STATE_INITIALIZING;
19525c363727SMatthias Ringwald                         hci_stack->substate = HCI_INIT_AFTER_SLEEP;
1953758b46ceSmatthias.ringwald                         hci_update_scan_enable();
195428171530Smatthias.ringwald                         break;
195528171530Smatthias.ringwald                     }
195628171530Smatthias.ringwald #endif
19573144bce4Smatthias.ringwald                     err = hci_power_control_wake();
19583144bce4Smatthias.ringwald                     if (err) return err;
195944935e40S[email protected]                     hci_power_transition_to_initializing();
19608d213e1aSmatthias.ringwald                     break;
19618d213e1aSmatthias.ringwald                 case HCI_POWER_OFF:
19623a9fb326S[email protected]                     hci_stack->state = HCI_STATE_HALTING;
19638d213e1aSmatthias.ringwald                     break;
19648d213e1aSmatthias.ringwald                 case HCI_POWER_SLEEP:
1965b546ac54Smatthias.ringwald                     // do nothing
19668d213e1aSmatthias.ringwald                     break;
19678d213e1aSmatthias.ringwald             }
19688d213e1aSmatthias.ringwald             break;
196911e23e5fSmatthias.ringwald     }
197068d92d03Smatthias.ringwald 
1971038bc64cSmatthias.ringwald     // create internal event
1972ee8bf225Smatthias.ringwald 	hci_emit_state();
1973ee8bf225Smatthias.ringwald 
197468d92d03Smatthias.ringwald 	// trigger next/first action
197568d92d03Smatthias.ringwald 	hci_run();
197668d92d03Smatthias.ringwald 
1977475c8125Smatthias.ringwald     return 0;
1978475c8125Smatthias.ringwald }
1979475c8125Smatthias.ringwald 
1980758b46ceSmatthias.ringwald static void hci_update_scan_enable(void){
1981758b46ceSmatthias.ringwald     // 2 = page scan, 1 = inq scan
19823a9fb326S[email protected]     hci_stack->new_scan_enable_value  = hci_stack->connectable << 1 | hci_stack->discoverable;
1983758b46ceSmatthias.ringwald     hci_run();
1984758b46ceSmatthias.ringwald }
1985758b46ceSmatthias.ringwald 
1986381fbed8Smatthias.ringwald void hci_discoverable_control(uint8_t enable){
1987381fbed8Smatthias.ringwald     if (enable) enable = 1; // normalize argument
1988381fbed8Smatthias.ringwald 
19893a9fb326S[email protected]     if (hci_stack->discoverable == enable){
19903a9fb326S[email protected]         hci_emit_discoverable_enabled(hci_stack->discoverable);
1991381fbed8Smatthias.ringwald         return;
1992381fbed8Smatthias.ringwald     }
1993381fbed8Smatthias.ringwald 
19943a9fb326S[email protected]     hci_stack->discoverable = enable;
1995758b46ceSmatthias.ringwald     hci_update_scan_enable();
1996758b46ceSmatthias.ringwald }
1997b031bebbSmatthias.ringwald 
1998758b46ceSmatthias.ringwald void hci_connectable_control(uint8_t enable){
1999758b46ceSmatthias.ringwald     if (enable) enable = 1; // normalize argument
2000758b46ceSmatthias.ringwald 
2001758b46ceSmatthias.ringwald     // don't emit event
20023a9fb326S[email protected]     if (hci_stack->connectable == enable) return;
2003758b46ceSmatthias.ringwald 
20043a9fb326S[email protected]     hci_stack->connectable = enable;
2005758b46ceSmatthias.ringwald     hci_update_scan_enable();
2006381fbed8Smatthias.ringwald }
2007381fbed8Smatthias.ringwald 
2008690bd0baS[email protected] void hci_local_bd_addr(bd_addr_t address_buffer){
2009690bd0baS[email protected]     memcpy(address_buffer, hci_stack->local_bd_addr, 6);
20105061f3afS[email protected] }
20115061f3afS[email protected] 
201206b35ec0Smatthias.ringwald void hci_run(){
20138a485f27Smatthias.ringwald 
2014db8bc6ffSMatthias Ringwald     // log_info("hci_run: entered");
201532ab9390Smatthias.ringwald     hci_connection_t * connection;
201632ab9390Smatthias.ringwald     linked_item_t * it;
201732ab9390Smatthias.ringwald 
2018b5d8b22bS[email protected]     // send continuation fragments first, as they block the prepared packet buffer
2019b5d8b22bS[email protected]     if (hci_stack->acl_fragmentation_total_size > 0) {
2020b5d8b22bS[email protected]         hci_con_handle_t con_handle = READ_ACL_CONNECTION_HANDLE(hci_stack->hci_packet_buffer);
2021b5d8b22bS[email protected]         if (hci_can_send_prepared_acl_packet_now(con_handle)){
2022b5d8b22bS[email protected]             hci_connection_t *connection = hci_connection_for_handle(con_handle);
2023b5d8b22bS[email protected]             if (connection) {
2024b5d8b22bS[email protected]                 hci_send_acl_packet_fragments(connection);
2025b5d8b22bS[email protected]                 return;
2026b5d8b22bS[email protected]             }
2027b5d8b22bS[email protected]             // connection gone -> discard further fragments
2028b5d8b22bS[email protected]             hci_stack->acl_fragmentation_total_size = 0;
2029b5d8b22bS[email protected]             hci_stack->acl_fragmentation_pos = 0;
2030b5d8b22bS[email protected]         }
2031b5d8b22bS[email protected]     }
2032b5d8b22bS[email protected] 
2033d94d3cafS[email protected]     if (!hci_can_send_command_packet_now()) return;
2034ce4c8fabSmatthias.ringwald 
2035b031bebbSmatthias.ringwald     // global/non-connection oriented commands
2036b031bebbSmatthias.ringwald 
2037b031bebbSmatthias.ringwald     // decline incoming connections
20383a9fb326S[email protected]     if (hci_stack->decline_reason){
20393a9fb326S[email protected]         uint8_t reason = hci_stack->decline_reason;
20403a9fb326S[email protected]         hci_stack->decline_reason = 0;
20413a9fb326S[email protected]         hci_send_cmd(&hci_reject_connection_request, hci_stack->decline_addr, reason);
2042dbe1a790S[email protected]         return;
2043ce4c8fabSmatthias.ringwald     }
2044ce4c8fabSmatthias.ringwald 
2045b031bebbSmatthias.ringwald     // send scan enable
20463a9fb326S[email protected]     if (hci_stack->state == HCI_STATE_WORKING && hci_stack->new_scan_enable_value != 0xff && hci_classic_supported()){
20473a9fb326S[email protected]         hci_send_cmd(&hci_write_scan_enable, hci_stack->new_scan_enable_value);
20483a9fb326S[email protected]         hci_stack->new_scan_enable_value = 0xff;
2049dbe1a790S[email protected]         return;
2050b031bebbSmatthias.ringwald     }
2051b031bebbSmatthias.ringwald 
2052b2f949feS[email protected] #ifdef HAVE_BLE
20537bdc6798S[email protected]     // handle le scan
20547bdc6798S[email protected]     if (hci_stack->state == HCI_STATE_WORKING){
20557bdc6798S[email protected]         switch(hci_stack->le_scanning_state){
20567bdc6798S[email protected]             case LE_START_SCAN:
20577bdc6798S[email protected]                 hci_stack->le_scanning_state = LE_SCANNING;
20587bdc6798S[email protected]                 hci_send_cmd(&hci_le_set_scan_enable, 1, 0);
20597bdc6798S[email protected]                 return;
20607bdc6798S[email protected] 
20617bdc6798S[email protected]             case LE_STOP_SCAN:
20627bdc6798S[email protected]                 hci_stack->le_scanning_state = LE_SCAN_IDLE;
20637bdc6798S[email protected]                 hci_send_cmd(&hci_le_set_scan_enable, 0, 0);
20647bdc6798S[email protected]                 return;
20657bdc6798S[email protected]             default:
20667bdc6798S[email protected]                 break;
20677bdc6798S[email protected]         }
2068e2602ea2Smatthias.ringwald         if (hci_stack->le_scan_type != 0xff){
2069e2602ea2Smatthias.ringwald             // defaults: active scanning, accept all advertisement packets
2070e2602ea2Smatthias.ringwald             int scan_type = hci_stack->le_scan_type;
2071e2602ea2Smatthias.ringwald             hci_stack->le_scan_type = 0xff;
2072e2602ea2Smatthias.ringwald             hci_send_cmd(&hci_le_set_scan_parameters, scan_type, hci_stack->le_scan_interval, hci_stack->le_scan_window, hci_stack->adv_addr_type, 0);
2073e2602ea2Smatthias.ringwald             return;
2074e2602ea2Smatthias.ringwald         }
20757bdc6798S[email protected]     }
2076b2f949feS[email protected] #endif
20777bdc6798S[email protected] 
207832ab9390Smatthias.ringwald     // send pending HCI commands
20793a9fb326S[email protected]     for (it = (linked_item_t *) hci_stack->connections; it ; it = it->next){
2080b031bebbSmatthias.ringwald         connection = (hci_connection_t *) it;
208132ab9390Smatthias.ringwald 
20820bf6344aS[email protected]         switch(connection->state){
20830bf6344aS[email protected]             case SEND_CREATE_CONNECTION:
20844f3229d8S[email protected]                 switch(connection->address_type){
20854f3229d8S[email protected]                     case BD_ADDR_TYPE_CLASSIC:
20869da54300S[email protected]                         log_info("sending hci_create_connection");
2087ad83dc6aS[email protected]                         hci_send_cmd(&hci_create_connection, connection->address, hci_usable_acl_packet_types(), 0, 0, 0, 1);
20884f3229d8S[email protected]                         break;
20894f3229d8S[email protected]                     default:
2090b2f949feS[email protected] #ifdef HAVE_BLE
20919da54300S[email protected]                         log_info("sending hci_le_create_connection");
20924f3229d8S[email protected]                         hci_send_cmd(&hci_le_create_connection,
2093b2571179Smatthias.ringwald                                      0x0060,    // scan interval: 60 ms
2094b2571179Smatthias.ringwald                                      0x0030,    // scan interval: 30 ms
20954f3229d8S[email protected]                                      0,         // don't use whitelist
20964f3229d8S[email protected]                                      connection->address_type, // peer address type
20974f3229d8S[email protected]                                      connection->address,      // peer bd addr
2098b2571179Smatthias.ringwald                                      hci_stack->adv_addr_type, // our addr type:
2099b2571179Smatthias.ringwald                                      0x0008,    // conn interval min
2100b2571179Smatthias.ringwald                                      0x0018,    // conn interval max
21014f3229d8S[email protected]                                      0,         // conn latency
2102b2571179Smatthias.ringwald                                      0x0048,    // supervision timeout
2103b2571179Smatthias.ringwald                                      0x0001,    // min ce length
2104b2571179Smatthias.ringwald                                      0x0001     // max ce length
21054f3229d8S[email protected]                                      );
21064f3229d8S[email protected] 
21074f3229d8S[email protected]                         connection->state = SENT_CREATE_CONNECTION;
2108b2f949feS[email protected] #endif
21094f3229d8S[email protected]                         break;
21104f3229d8S[email protected]                 }
2111ad83dc6aS[email protected]                 return;
2112ad83dc6aS[email protected] 
21130bf6344aS[email protected]             case RECEIVED_CONNECTION_REQUEST:
21149da54300S[email protected]                 log_info("sending hci_accept_connection_request");
211532ab9390Smatthias.ringwald                 connection->state = ACCEPTED_CONNECTION_REQUEST;
2116e35edcc1S[email protected]                 if (connection->address_type == BD_ADDR_TYPE_CLASSIC){
211734d2123cS[email protected]                     hci_send_cmd(&hci_accept_connection_request, connection->address, 1);
2118e35edcc1S[email protected]                 } else {
2119e35edcc1S[email protected]                     // TODO: allows to customize synchronous connection parameters
2120e35edcc1S[email protected]                     hci_send_cmd(&hci_accept_synchronous_connection_command, connection->address, 8000, 8000, 0xFFFF, 0x0060, 0xFF, 0x003F);
2121e35edcc1S[email protected]                 }
2122dbe1a790S[email protected]                 return;
21230bf6344aS[email protected] 
2124a6725849S[email protected] #ifdef HAVE_BLE
21250bf6344aS[email protected]             case SEND_CANCEL_CONNECTION:
21260bf6344aS[email protected]                 connection->state = SENT_CANCEL_CONNECTION;
21270bf6344aS[email protected]                 hci_send_cmd(&hci_le_create_connection_cancel);
21280bf6344aS[email protected]                 return;
2129a6725849S[email protected] #endif
21300bf6344aS[email protected]             case SEND_DISCONNECT:
21310bf6344aS[email protected]                 connection->state = SENT_DISCONNECT;
21327851196eSmatthias.ringwald                 hci_send_cmd(&hci_disconnect, connection->con_handle, 0x13); // remote closed connection
21330bf6344aS[email protected]                 return;
21340bf6344aS[email protected] 
21350bf6344aS[email protected]             default:
21360bf6344aS[email protected]                 break;
2137c7e0c5f6Smatthias.ringwald         }
2138c7e0c5f6Smatthias.ringwald 
213932ab9390Smatthias.ringwald         if (connection->authentication_flags & HANDLE_LINK_KEY_REQUEST){
21409da54300S[email protected]             log_info("responding to link key request");
214134d2123cS[email protected]             connectionClearAuthenticationFlags(connection, HANDLE_LINK_KEY_REQUEST);
214232ab9390Smatthias.ringwald             link_key_t link_key;
2143c77e8838S[email protected]             link_key_type_t link_key_type;
21443a9fb326S[email protected]             if ( hci_stack->remote_device_db
21452e77e513S[email protected]               && hci_stack->remote_device_db->get_link_key(connection->address, link_key, &link_key_type)
214634d2123cS[email protected]               && gap_security_level_for_link_key_type(link_key_type) >= connection->requested_security_level){
21479ab95c90S[email protected]                connection->link_key_type = link_key_type;
214832ab9390Smatthias.ringwald                hci_send_cmd(&hci_link_key_request_reply, connection->address, &link_key);
214932ab9390Smatthias.ringwald             } else {
215032ab9390Smatthias.ringwald                hci_send_cmd(&hci_link_key_request_negative_reply, connection->address);
215132ab9390Smatthias.ringwald             }
2152dbe1a790S[email protected]             return;
215332ab9390Smatthias.ringwald         }
21541d6b20aeS[email protected] 
2155899283eaS[email protected]         if (connection->authentication_flags & DENY_PIN_CODE_REQUEST){
21569da54300S[email protected]             log_info("denying to pin request");
2157899283eaS[email protected]             connectionClearAuthenticationFlags(connection, DENY_PIN_CODE_REQUEST);
215834d2123cS[email protected]             hci_send_cmd(&hci_pin_code_request_negative_reply, connection->address);
21594c57c146S[email protected]             return;
21604c57c146S[email protected]         }
21614c57c146S[email protected] 
2162dbe1a790S[email protected]         if (connection->authentication_flags & SEND_IO_CAPABILITIES_REPLY){
216334d2123cS[email protected]             connectionClearAuthenticationFlags(connection, SEND_IO_CAPABILITIES_REPLY);
216482d8f825S[email protected]             log_info("IO Capability Request received, stack bondable %u, io cap %u", hci_stack->bondable, hci_stack->ssp_io_capability);
216582d8f825S[email protected]             if (hci_stack->bondable && (hci_stack->ssp_io_capability != SSP_IO_CAPABILITY_UNKNOWN)){
2166106d6d11S[email protected]                 // tweak authentication requirements
21673a9fb326S[email protected]                 uint8_t authreq = hci_stack->ssp_authentication_requirement;
2168106d6d11S[email protected]                 if (connection->bonding_flags & BONDING_DEDICATED){
21699faad3abS[email protected]                     authreq = SSP_IO_AUTHREQ_MITM_PROTECTION_NOT_REQUIRED_DEDICATED_BONDING;
21709faad3abS[email protected]                 }
21719faad3abS[email protected]                 if (gap_mitm_protection_required_for_security_level(connection->requested_security_level)){
21729faad3abS[email protected]                     authreq |= 1;
2173106d6d11S[email protected]                 }
21743a9fb326S[email protected]                 hci_send_cmd(&hci_io_capability_request_reply, &connection->address, hci_stack->ssp_io_capability, NULL, authreq);
2175f8fb5f6eS[email protected]             } else {
2176f8fb5f6eS[email protected]                 hci_send_cmd(&hci_io_capability_request_negative_reply, &connection->address, ERROR_CODE_PAIRING_NOT_ALLOWED);
2177f8fb5f6eS[email protected]             }
2178dbe1a790S[email protected]             return;
217932ab9390Smatthias.ringwald         }
218032ab9390Smatthias.ringwald 
2181dbe1a790S[email protected]         if (connection->authentication_flags & SEND_USER_CONFIRM_REPLY){
2182dbe1a790S[email protected]             connectionClearAuthenticationFlags(connection, SEND_USER_CONFIRM_REPLY);
218334d2123cS[email protected]             hci_send_cmd(&hci_user_confirmation_request_reply, &connection->address);
2184dbe1a790S[email protected]             return;
2185dbe1a790S[email protected]         }
2186dbe1a790S[email protected] 
2187dbe1a790S[email protected]         if (connection->authentication_flags & SEND_USER_PASSKEY_REPLY){
2188dbe1a790S[email protected]             connectionClearAuthenticationFlags(connection, SEND_USER_PASSKEY_REPLY);
218934d2123cS[email protected]             hci_send_cmd(&hci_user_passkey_request_reply, &connection->address, 000000);
2190dbe1a790S[email protected]             return;
2191dbe1a790S[email protected]         }
2192afd4e962S[email protected] 
2193afd4e962S[email protected]         if (connection->bonding_flags & BONDING_REQUEST_REMOTE_FEATURES){
2194afd4e962S[email protected]             connection->bonding_flags &= ~BONDING_REQUEST_REMOTE_FEATURES;
219534d2123cS[email protected]             hci_send_cmd(&hci_read_remote_supported_features_command, connection->con_handle);
21962bd8b7e7S[email protected]             return;
21972bd8b7e7S[email protected]         }
21982bd8b7e7S[email protected] 
21992bd8b7e7S[email protected]         if (connection->bonding_flags & BONDING_DISCONNECT_SECURITY_BLOCK){
22002bd8b7e7S[email protected]             connection->bonding_flags &= ~BONDING_DISCONNECT_SECURITY_BLOCK;
220134d2123cS[email protected]             hci_send_cmd(&hci_disconnect, connection->con_handle, 0x0005);  // authentication failure
220234d2123cS[email protected]             return;
220334d2123cS[email protected]         }
2204ad83dc6aS[email protected]         if (connection->bonding_flags & BONDING_DISCONNECT_DEDICATED_DONE){
2205ad83dc6aS[email protected]             connection->bonding_flags &= ~BONDING_DISCONNECT_DEDICATED_DONE;
22061bd5283dS[email protected]             connection->bonding_flags |= BONDING_EMIT_COMPLETE_ON_DISCONNECT;
220752d34f98S[email protected]             hci_send_cmd(&hci_disconnect, connection->con_handle, 0x13);  // authentication done
2208ad83dc6aS[email protected]             return;
2209ad83dc6aS[email protected]         }
221034d2123cS[email protected]         if (connection->bonding_flags & BONDING_SEND_AUTHENTICATE_REQUEST){
221134d2123cS[email protected]             connection->bonding_flags &= ~BONDING_SEND_AUTHENTICATE_REQUEST;
221234d2123cS[email protected]             hci_send_cmd(&hci_authentication_requested, connection->con_handle);
22132bd8b7e7S[email protected]             return;
2214afd4e962S[email protected]         }
2215dce78009S[email protected]         if (connection->bonding_flags & BONDING_SEND_ENCRYPTION_REQUEST){
2216dce78009S[email protected]             connection->bonding_flags &= ~BONDING_SEND_ENCRYPTION_REQUEST;
2217dce78009S[email protected]             hci_send_cmd(&hci_set_connection_encryption, connection->con_handle, 1);
2218dce78009S[email protected]             return;
2219dce78009S[email protected]         }
2220da886c03S[email protected] 
2221c37a3166S[email protected] #ifdef HAVE_BLE
2222da886c03S[email protected]         if (connection->le_con_parameter_update_state == CON_PARAMETER_UPDATE_CHANGE_HCI_CON_PARAMETERS){
2223da886c03S[email protected]             connection->le_con_parameter_update_state = CON_PARAMETER_UPDATE_NONE;
2224da886c03S[email protected] 
2225c37a3166S[email protected]             uint16_t connection_interval_min = connection->le_conn_interval_min;
2226c37a3166S[email protected]             connection->le_conn_interval_min = 0;
2227c37a3166S[email protected]             hci_send_cmd(&hci_le_connection_update, connection->con_handle, connection_interval_min,
2228c37a3166S[email protected]                 connection->le_conn_interval_max, connection->le_conn_latency, connection->le_supervision_timeout,
2229c37a3166S[email protected]                 0x0000, 0xffff);
2230c37a3166S[email protected]         }
2231c37a3166S[email protected] #endif
2232dbe1a790S[email protected]     }
2233c7e0c5f6Smatthias.ringwald 
22343a9fb326S[email protected]     switch (hci_stack->state){
22353429f56bSmatthias.ringwald         case HCI_STATE_INITIALIZING:
223674b323a9SMatthias Ringwald             hci_initializing_run();
22373429f56bSmatthias.ringwald             break;
2238c7e0c5f6Smatthias.ringwald 
2239c7e0c5f6Smatthias.ringwald         case HCI_STATE_HALTING:
2240c7e0c5f6Smatthias.ringwald 
22419da54300S[email protected]             log_info("HCI_STATE_HALTING");
2242c7e0c5f6Smatthias.ringwald             // close all open connections
22433a9fb326S[email protected]             connection =  (hci_connection_t *) hci_stack->connections;
2244c7e0c5f6Smatthias.ringwald             if (connection){
224532ab9390Smatthias.ringwald 
2246c7e0c5f6Smatthias.ringwald                 // send disconnect
2247d94d3cafS[email protected]                 if (!hci_can_send_command_packet_now()) return;
224832ab9390Smatthias.ringwald 
22499da54300S[email protected]                 log_info("HCI_STATE_HALTING, connection %p, handle %u", connection, (uint16_t)connection->con_handle);
22506ad890d3Smatthias.ringwald                 hci_send_cmd(&hci_disconnect, connection->con_handle, 0x13);  // remote closed connection
2251c7e0c5f6Smatthias.ringwald 
2252c7e0c5f6Smatthias.ringwald                 // send disconnected event right away - causes higher layer connections to get closed, too.
2253c7e0c5f6Smatthias.ringwald                 hci_shutdown_connection(connection);
2254c7e0c5f6Smatthias.ringwald                 return;
2255c7e0c5f6Smatthias.ringwald             }
22569da54300S[email protected]             log_info("HCI_STATE_HALTING, calling off");
2257c7e0c5f6Smatthias.ringwald 
225872ea5239Smatthias.ringwald             // switch mode
2259c7e0c5f6Smatthias.ringwald             hci_power_control_off();
22609418f9c9Smatthias.ringwald 
22619da54300S[email protected]             log_info("HCI_STATE_HALTING, emitting state");
226272ea5239Smatthias.ringwald             hci_emit_state();
22639da54300S[email protected]             log_info("HCI_STATE_HALTING, done");
226472ea5239Smatthias.ringwald             break;
2265c7e0c5f6Smatthias.ringwald 
226672ea5239Smatthias.ringwald         case HCI_STATE_FALLING_ASLEEP:
22673a9fb326S[email protected]             switch(hci_stack->substate) {
226874b323a9SMatthias Ringwald                 case HCI_FALLING_ASLEEP_DISCONNECT:
22699da54300S[email protected]                     log_info("HCI_STATE_FALLING_ASLEEP");
227072ea5239Smatthias.ringwald                     // close all open connections
22713a9fb326S[email protected]                     connection =  (hci_connection_t *) hci_stack->connections;
227266da7044Smatthias.ringwald 
227328171530Smatthias.ringwald #if defined(USE_POWERMANAGEMENT) && defined(USE_BLUETOOL)
227466da7044Smatthias.ringwald                     // don't close connections, if H4 supports power management
227566da7044Smatthias.ringwald                     if (bt_control_iphone_power_management_enabled()){
227666da7044Smatthias.ringwald                         connection = NULL;
227766da7044Smatthias.ringwald                     }
227866da7044Smatthias.ringwald #endif
227972ea5239Smatthias.ringwald                     if (connection){
228032ab9390Smatthias.ringwald 
228172ea5239Smatthias.ringwald                         // send disconnect
2282d94d3cafS[email protected]                         if (!hci_can_send_command_packet_now()) return;
228332ab9390Smatthias.ringwald 
22849da54300S[email protected]                         log_info("HCI_STATE_FALLING_ASLEEP, connection %p, handle %u", connection, (uint16_t)connection->con_handle);
22856ad890d3Smatthias.ringwald                         hci_send_cmd(&hci_disconnect, connection->con_handle, 0x13);  // remote closed connection
228672ea5239Smatthias.ringwald 
228772ea5239Smatthias.ringwald                         // send disconnected event right away - causes higher layer connections to get closed, too.
228872ea5239Smatthias.ringwald                         hci_shutdown_connection(connection);
228972ea5239Smatthias.ringwald                         return;
229072ea5239Smatthias.ringwald                     }
229172ea5239Smatthias.ringwald 
229292368cd3S[email protected]                     if (hci_classic_supported()){
229389db417bSmatthias.ringwald                         // disable page and inquiry scan
2294d94d3cafS[email protected]                         if (!hci_can_send_command_packet_now()) return;
229532ab9390Smatthias.ringwald 
22969da54300S[email protected]                         log_info("HCI_STATE_HALTING, disabling inq scans");
22973a9fb326S[email protected]                         hci_send_cmd(&hci_write_scan_enable, hci_stack->connectable << 1); // drop inquiry scan but keep page scan
229889db417bSmatthias.ringwald 
229989db417bSmatthias.ringwald                         // continue in next sub state
230074b323a9SMatthias Ringwald                         hci_stack->substate = HCI_FALLING_ASLEEP_W4_WRITE_SCAN_ENABLE;
230189db417bSmatthias.ringwald                         break;
230292368cd3S[email protected]                     }
230392368cd3S[email protected]                     // fall through for ble-only chips
230492368cd3S[email protected] 
230574b323a9SMatthias Ringwald                 case HCI_FALLING_ASLEEP_COMPLETE:
23069da54300S[email protected]                     log_info("HCI_STATE_HALTING, calling sleep");
230728171530Smatthias.ringwald #if defined(USE_POWERMANAGEMENT) && defined(USE_BLUETOOL)
230828171530Smatthias.ringwald                     // don't actually go to sleep, if H4 supports power management
230928171530Smatthias.ringwald                     if (bt_control_iphone_power_management_enabled()){
231028171530Smatthias.ringwald                         // SLEEP MODE reached
23113a9fb326S[email protected]                         hci_stack->state = HCI_STATE_SLEEPING;
231228171530Smatthias.ringwald                         hci_emit_state();
231328171530Smatthias.ringwald                         break;
231428171530Smatthias.ringwald                     }
231528171530Smatthias.ringwald #endif
231672ea5239Smatthias.ringwald                     // switch mode
23173a9fb326S[email protected]                     hci_power_control_sleep();  // changes hci_stack->state to SLEEP
2318c7e0c5f6Smatthias.ringwald                     hci_emit_state();
231928171530Smatthias.ringwald                     break;
232028171530Smatthias.ringwald 
232189db417bSmatthias.ringwald                 default:
232289db417bSmatthias.ringwald                     break;
232389db417bSmatthias.ringwald             }
2324c7e0c5f6Smatthias.ringwald             break;
2325c7e0c5f6Smatthias.ringwald 
23263429f56bSmatthias.ringwald         default:
23273429f56bSmatthias.ringwald             break;
23281f504dbdSmatthias.ringwald     }
23293429f56bSmatthias.ringwald }
233016833f0aSmatthias.ringwald 
233131452debSmatthias.ringwald int hci_send_cmd_packet(uint8_t *packet, int size){
2332c8e4258aSmatthias.ringwald     bd_addr_t addr;
2333c8e4258aSmatthias.ringwald     hci_connection_t * conn;
2334c8e4258aSmatthias.ringwald     // house-keeping
2335c8e4258aSmatthias.ringwald 
2336c8e4258aSmatthias.ringwald     // create_connection?
2337c8e4258aSmatthias.ringwald     if (IS_COMMAND(packet, hci_create_connection)){
2338c8e4258aSmatthias.ringwald         bt_flip_addr(addr, &packet[3]);
23399da54300S[email protected]         log_info("Create_connection to %s", bd_addr_to_str(addr));
2340c8e4258aSmatthias.ringwald 
23412e77e513S[email protected]         conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_CLASSIC);
2342ad83dc6aS[email protected]         if (!conn){
234396a45072S[email protected]             conn = create_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_CLASSIC);
234417f1ba2aSmatthias.ringwald             if (!conn){
234517f1ba2aSmatthias.ringwald                 // notify client that alloc failed
234617f1ba2aSmatthias.ringwald                 hci_emit_connection_complete(conn, BTSTACK_MEMORY_ALLOC_FAILED);
234717f1ba2aSmatthias.ringwald                 return 0; // don't sent packet to controller
234817f1ba2aSmatthias.ringwald             }
2349ad83dc6aS[email protected]             conn->state = SEND_CREATE_CONNECTION;
2350ad83dc6aS[email protected]         }
2351ad83dc6aS[email protected]         log_info("conn state %u", conn->state);
2352ad83dc6aS[email protected]         switch (conn->state){
2353ad83dc6aS[email protected]             // if connection active exists
2354ad83dc6aS[email protected]             case OPEN:
235562bda3fbS[email protected]                 // and OPEN, emit connection complete command, don't send to controller
2356ad83dc6aS[email protected]                 hci_emit_connection_complete(conn, 0);
235762bda3fbS[email protected]                 return 0;
2358ad83dc6aS[email protected]             case SEND_CREATE_CONNECTION:
2359ad83dc6aS[email protected]                 // connection created by hci, e.g. dedicated bonding
2360ad83dc6aS[email protected]                 break;
2361ad83dc6aS[email protected]             default:
2362ad83dc6aS[email protected]                 // otherwise, just ignore as it is already in the open process
2363ad83dc6aS[email protected]                 return 0;
2364ad83dc6aS[email protected]         }
2365c8e4258aSmatthias.ringwald         conn->state = SENT_CREATE_CONNECTION;
2366c8e4258aSmatthias.ringwald     }
23677fde4af9Smatthias.ringwald     if (IS_COMMAND(packet, hci_link_key_request_reply)){
23687fde4af9Smatthias.ringwald         hci_add_connection_flags_for_flipped_bd_addr(&packet[3], SENT_LINK_KEY_REPLY);
23697fde4af9Smatthias.ringwald     }
23707fde4af9Smatthias.ringwald     if (IS_COMMAND(packet, hci_link_key_request_negative_reply)){
23717fde4af9Smatthias.ringwald         hci_add_connection_flags_for_flipped_bd_addr(&packet[3], SENT_LINK_KEY_NEGATIVE_REQUEST);
23727fde4af9Smatthias.ringwald     }
23737fde4af9Smatthias.ringwald 
23748ef73945Smatthias.ringwald     if (IS_COMMAND(packet, hci_delete_stored_link_key)){
23753a9fb326S[email protected]         if (hci_stack->remote_device_db){
23768ef73945Smatthias.ringwald             bt_flip_addr(addr, &packet[3]);
23772e77e513S[email protected]             hci_stack->remote_device_db->delete_link_key(addr);
23788ef73945Smatthias.ringwald         }
23798ef73945Smatthias.ringwald     }
2380c8e4258aSmatthias.ringwald 
23816724cd9eS[email protected]     if (IS_COMMAND(packet, hci_pin_code_request_negative_reply)
23826724cd9eS[email protected]     ||  IS_COMMAND(packet, hci_pin_code_request_reply)){
23836724cd9eS[email protected]         bt_flip_addr(addr, &packet[3]);
23842e77e513S[email protected]         conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_CLASSIC);
23856724cd9eS[email protected]         if (conn){
23866724cd9eS[email protected]             connectionClearAuthenticationFlags(conn, LEGACY_PAIRING_ACTIVE);
23876724cd9eS[email protected]         }
23886724cd9eS[email protected]     }
23896724cd9eS[email protected] 
23906724cd9eS[email protected]     if (IS_COMMAND(packet, hci_user_confirmation_request_negative_reply)
23916724cd9eS[email protected]     ||  IS_COMMAND(packet, hci_user_confirmation_request_reply)
23926724cd9eS[email protected]     ||  IS_COMMAND(packet, hci_user_passkey_request_negative_reply)
23936724cd9eS[email protected]     ||  IS_COMMAND(packet, hci_user_passkey_request_reply)) {
23946724cd9eS[email protected]         bt_flip_addr(addr, &packet[3]);
23952e77e513S[email protected]         conn = hci_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_CLASSIC);
23966724cd9eS[email protected]         if (conn){
23976724cd9eS[email protected]             connectionClearAuthenticationFlags(conn, SSP_PAIRING_ACTIVE);
23986724cd9eS[email protected]         }
23996724cd9eS[email protected]     }
24006724cd9eS[email protected] 
240169a97523S[email protected] #ifdef HAVE_BLE
240269a97523S[email protected]     if (IS_COMMAND(packet, hci_le_set_advertising_parameters)){
24033a9fb326S[email protected]         hci_stack->adv_addr_type = packet[8];
240469a97523S[email protected]     }
240569a97523S[email protected]     if (IS_COMMAND(packet, hci_le_set_random_address)){
24063a9fb326S[email protected]         bt_flip_addr(hci_stack->adv_address, &packet[3]);
240769a97523S[email protected]     }
240869a97523S[email protected] #endif
240969a97523S[email protected] 
24103a9fb326S[email protected]     hci_stack->num_cmd_packets--;
24115bb5bc3eS[email protected] 
24125bb5bc3eS[email protected]     hci_dump_packet(HCI_COMMAND_DATA_PACKET, 0, packet, size);
24136b4af23dS[email protected]     int err = hci_stack->hci_transport->send_packet(HCI_COMMAND_DATA_PACKET, packet, size);
24146b4af23dS[email protected] 
2415d051460cS[email protected]     // release packet buffer for synchronous transport implementations
2416c8b9416aS[email protected]     if (hci_transport_synchronous() && (packet == hci_stack->hci_packet_buffer)){
24176b4af23dS[email protected]         hci_stack->hci_packet_buffer_reserved = 0;
24186b4af23dS[email protected]     }
24196b4af23dS[email protected] 
24206b4af23dS[email protected]     return err;
242131452debSmatthias.ringwald }
24228adf0ddaSmatthias.ringwald 
24232bd8b7e7S[email protected] // disconnect because of security block
24242bd8b7e7S[email protected] void hci_disconnect_security_block(hci_con_handle_t con_handle){
24252bd8b7e7S[email protected]     hci_connection_t * connection = hci_connection_for_handle(con_handle);
24262bd8b7e7S[email protected]     if (!connection) return;
24272bd8b7e7S[email protected]     connection->bonding_flags |= BONDING_DISCONNECT_SECURITY_BLOCK;
24282bd8b7e7S[email protected] }
24292bd8b7e7S[email protected] 
24302bd8b7e7S[email protected] 
2431dbe1a790S[email protected] // Configure Secure Simple Pairing
2432dbe1a790S[email protected] 
2433dbe1a790S[email protected] // enable will enable SSP during init
2434dbe1a790S[email protected] void hci_ssp_set_enable(int enable){
24353a9fb326S[email protected]     hci_stack->ssp_enable = enable;
2436dbe1a790S[email protected] }
2437dbe1a790S[email protected] 
24382bd8b7e7S[email protected] int hci_local_ssp_activated(){
24393a9fb326S[email protected]     return hci_ssp_supported() && hci_stack->ssp_enable;
24402bd8b7e7S[email protected] }
24412bd8b7e7S[email protected] 
2442dbe1a790S[email protected] // if set, BTstack will respond to io capability request using authentication requirement
2443dbe1a790S[email protected] void hci_ssp_set_io_capability(int io_capability){
24443a9fb326S[email protected]     hci_stack->ssp_io_capability = io_capability;
2445dbe1a790S[email protected] }
2446dbe1a790S[email protected] void hci_ssp_set_authentication_requirement(int authentication_requirement){
24473a9fb326S[email protected]     hci_stack->ssp_authentication_requirement = authentication_requirement;
2448dbe1a790S[email protected] }
2449dbe1a790S[email protected] 
2450dbe1a790S[email protected] // if set, BTstack will confirm a numberic comparion and enter '000000' if requested
2451dbe1a790S[email protected] void hci_ssp_set_auto_accept(int auto_accept){
24523a9fb326S[email protected]     hci_stack->ssp_auto_accept = auto_accept;
2453dbe1a790S[email protected] }
2454dbe1a790S[email protected] 
24551cd208adSmatthias.ringwald /**
24561cd208adSmatthias.ringwald  * pre: numcmds >= 0 - it's allowed to send a command to the controller
24571cd208adSmatthias.ringwald  */
2458fe35119dSmatthias.ringwald int hci_send_cmd(const hci_cmd_t *cmd, ...){
24595127cc62S[email protected] 
2460d94d3cafS[email protected]     if (!hci_can_send_command_packet_now()){
24619d14b626S[email protected]         log_error("hci_send_cmd called but cannot send packet now");
24629d14b626S[email protected]         return 0;
24639d14b626S[email protected]     }
24649d14b626S[email protected] 
24655127cc62S[email protected]     // for HCI INITIALIZATION
24669da54300S[email protected]     // log_info("hci_send_cmd: opcode %04x", cmd->opcode);
24675127cc62S[email protected]     hci_stack->last_cmd_opcode = cmd->opcode;
24685127cc62S[email protected] 
24699d14b626S[email protected]     hci_reserve_packet_buffer();
24709d14b626S[email protected]     uint8_t * packet = hci_stack->hci_packet_buffer;
24719d14b626S[email protected] 
24721cd208adSmatthias.ringwald     va_list argptr;
24731cd208adSmatthias.ringwald     va_start(argptr, cmd);
24749d14b626S[email protected]     uint16_t size = hci_create_cmd_internal(packet, cmd, argptr);
24751cd208adSmatthias.ringwald     va_end(argptr);
24769d14b626S[email protected] 
24779d14b626S[email protected]     return hci_send_cmd_packet(packet, size);
247893b8dc03Smatthias.ringwald }
2479c8e4258aSmatthias.ringwald 
2480ee091cf1Smatthias.ringwald // Create various non-HCI events.
2481ee091cf1Smatthias.ringwald // TODO: generalize, use table similar to hci_create_command
2482ee091cf1Smatthias.ringwald 
2483c8e4258aSmatthias.ringwald void hci_emit_state(){
24843a9fb326S[email protected]     log_info("BTSTACK_EVENT_STATE %u", hci_stack->state);
2485425d1371Smatthias.ringwald     uint8_t event[3];
248680d52d6bSmatthias.ringwald     event[0] = BTSTACK_EVENT_STATE;
2487425d1371Smatthias.ringwald     event[1] = sizeof(event) - 2;
24883a9fb326S[email protected]     event[2] = hci_stack->state;
2489425d1371Smatthias.ringwald     hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
24903a9fb326S[email protected]     hci_stack->packet_handler(HCI_EVENT_PACKET, event, sizeof(event));
2491c8e4258aSmatthias.ringwald }
2492c8e4258aSmatthias.ringwald 
249317f1ba2aSmatthias.ringwald void hci_emit_connection_complete(hci_connection_t *conn, uint8_t status){
2494425d1371Smatthias.ringwald     uint8_t event[13];
2495c8e4258aSmatthias.ringwald     event[0] = HCI_EVENT_CONNECTION_COMPLETE;
2496425d1371Smatthias.ringwald     event[1] = sizeof(event) - 2;
249717f1ba2aSmatthias.ringwald     event[2] = status;
2498c8e4258aSmatthias.ringwald     bt_store_16(event, 3, conn->con_handle);
2499c8e4258aSmatthias.ringwald     bt_flip_addr(&event[5], conn->address);
2500c8e4258aSmatthias.ringwald     event[11] = 1; // ACL connection
2501c8e4258aSmatthias.ringwald     event[12] = 0; // encryption disabled
2502425d1371Smatthias.ringwald     hci_dump_packet(HCI_EVENT_PACKET, 0, event, sizeof(event));
25033a9fb326S[email protected]     hci_stack->packet_handler(HCI_EVENT_PACKET, event, sizeof(event));
2504c8e4258aSmatthias.ringwald }
2505c8e4258aSmatthias.ringwald 
25062e77e513S[email protected] void hci_emit_le_connection_complete(uint8_t address_type, bd_addr_t address, uint16_t conn_handle, uint8_t status){
25074f3229d8S[email protected]     uint8_t event[21];
25084f3229d8S[email protected]     event[0] = HCI_EVENT_LE_META;
25094f3229d8S[email protected]     event[1] = sizeof(event) - 2;
25104f3229d8S[email protected]     event[2] = HCI_SUBEVENT_LE_CONNECTION_COMPLETE;
25114f3229d8S[email protected]     event[3] = status;
25126e2e9a6bS[email protected]     bt_store_16(event, 4, conn_handle);
25134f3229d8S[email protected]     event[6] = 0; // TODO: role
25146e2e9a6bS[email protected]     event[7] = address_type;
25152e77e513S[email protected]     bt_flip_addr(&event[8], address);
25164f3229d8S[email protected]     bt_store_16(event, 14, 0); // interval
25174f3229d8S[email protected]     bt_store_16(event, 16, 0); // latency
25184f3229d8S[email protected]     bt_store_16(event, 18, 0); // supervision timeout
25194f3229d8S[email protected]     event[20] = 0; // master clock accuracy
25204f3229d8S[email protected]     hci_dump_packet(HCI_EVENT_PACKET, 0, event, sizeof(event));
25214f3229d8S[email protected]     hci_stack->packet_handler(HCI_EVENT_PACKET, event, sizeof(event));
25224f3229d8S[email protected] }
25234f3229d8S[email protected] 
25243c4d4b90Smatthias.ringwald void hci_emit_disconnection_complete(uint16_t handle, uint8_t reason){
2525425d1371Smatthias.ringwald     uint8_t event[6];
25263c4d4b90Smatthias.ringwald     event[0] = HCI_EVENT_DISCONNECTION_COMPLETE;
2527e518c4b8Smatthias.ringwald     event[1] = sizeof(event) - 2;
25283c4d4b90Smatthias.ringwald     event[2] = 0; // status = OK
25293c4d4b90Smatthias.ringwald     bt_store_16(event, 3, handle);
25303c4d4b90Smatthias.ringwald     event[5] = reason;
2531425d1371Smatthias.ringwald     hci_dump_packet(HCI_EVENT_PACKET, 0, event, sizeof(event));
25323a9fb326S[email protected]     hci_stack->packet_handler(HCI_EVENT_PACKET, event, sizeof(event));
25333c4d4b90Smatthias.ringwald }
25343c4d4b90Smatthias.ringwald 
2535ee091cf1Smatthias.ringwald void hci_emit_l2cap_check_timeout(hci_connection_t *conn){
253666fb9560S[email protected]     if (disable_l2cap_timeouts) return;
2537e0abb8e7S[email protected]     log_info("L2CAP_EVENT_TIMEOUT_CHECK");
2538425d1371Smatthias.ringwald     uint8_t event[4];
253980d52d6bSmatthias.ringwald     event[0] = L2CAP_EVENT_TIMEOUT_CHECK;
2540425d1371Smatthias.ringwald     event[1] = sizeof(event) - 2;
2541ee091cf1Smatthias.ringwald     bt_store_16(event, 2, conn->con_handle);
2542425d1371Smatthias.ringwald     hci_dump_packet(HCI_EVENT_PACKET, 0, event, sizeof(event));
25433a9fb326S[email protected]     hci_stack->packet_handler(HCI_EVENT_PACKET, event, sizeof(event));
2544ee091cf1Smatthias.ringwald }
254543bfb1bdSmatthias.ringwald 
254643bfb1bdSmatthias.ringwald void hci_emit_nr_connections_changed(){
2547e0abb8e7S[email protected]     log_info("BTSTACK_EVENT_NR_CONNECTIONS_CHANGED %u", nr_hci_connections());
2548425d1371Smatthias.ringwald     uint8_t event[3];
254980d52d6bSmatthias.ringwald     event[0] = BTSTACK_EVENT_NR_CONNECTIONS_CHANGED;
2550425d1371Smatthias.ringwald     event[1] = sizeof(event) - 2;
255143bfb1bdSmatthias.ringwald     event[2] = nr_hci_connections();
2552425d1371Smatthias.ringwald     hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
25533a9fb326S[email protected]     hci_stack->packet_handler(HCI_EVENT_PACKET, event, sizeof(event));
255443bfb1bdSmatthias.ringwald }
2555038bc64cSmatthias.ringwald 
2556038bc64cSmatthias.ringwald void hci_emit_hci_open_failed(){
2557e0abb8e7S[email protected]     log_info("BTSTACK_EVENT_POWERON_FAILED");
2558425d1371Smatthias.ringwald     uint8_t event[2];
255980d52d6bSmatthias.ringwald     event[0] = BTSTACK_EVENT_POWERON_FAILED;
2560425d1371Smatthias.ringwald     event[1] = sizeof(event) - 2;
2561425d1371Smatthias.ringwald     hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
25623a9fb326S[email protected]     hci_stack->packet_handler(HCI_EVENT_PACKET, event, sizeof(event));
2563038bc64cSmatthias.ringwald }
25641b0e3922Smatthias.ringwald 
256509ba8edeSmatthias.ringwald #ifndef EMBEDDED
25661b0e3922Smatthias.ringwald void hci_emit_btstack_version() {
2567e0abb8e7S[email protected]     log_info("BTSTACK_EVENT_VERSION %u.%u", BTSTACK_MAJOR, BTSTACK_MINOR);
2568425d1371Smatthias.ringwald     uint8_t event[6];
25691b0e3922Smatthias.ringwald     event[0] = BTSTACK_EVENT_VERSION;
2570425d1371Smatthias.ringwald     event[1] = sizeof(event) - 2;
2571425d1371Smatthias.ringwald     event[2] = BTSTACK_MAJOR;
2572425d1371Smatthias.ringwald     event[3] = BTSTACK_MINOR;
25731ebf5f9cSMatthias Ringwald     bt_store_16(event, 4, 3257);    // last SVN commit on Google Code + 1
2574425d1371Smatthias.ringwald     hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
25753a9fb326S[email protected]     hci_stack->packet_handler(HCI_EVENT_PACKET, event, sizeof(event));
25761b0e3922Smatthias.ringwald }
257709ba8edeSmatthias.ringwald #endif
25781b0e3922Smatthias.ringwald 
25792ed6235cSmatthias.ringwald void hci_emit_system_bluetooth_enabled(uint8_t enabled){
2580e0abb8e7S[email protected]     log_info("BTSTACK_EVENT_SYSTEM_BLUETOOTH_ENABLED %u", enabled);
2581425d1371Smatthias.ringwald     uint8_t event[3];
25822ed6235cSmatthias.ringwald     event[0] = BTSTACK_EVENT_SYSTEM_BLUETOOTH_ENABLED;
2583425d1371Smatthias.ringwald     event[1] = sizeof(event) - 2;
25842ed6235cSmatthias.ringwald     event[2] = enabled;
2585425d1371Smatthias.ringwald     hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
25863a9fb326S[email protected]     hci_stack->packet_handler(HCI_EVENT_PACKET, event, sizeof(event));
25872ed6235cSmatthias.ringwald }
2588627c2f45Smatthias.ringwald 
25892e77e513S[email protected] void hci_emit_remote_name_cached(bd_addr_t addr, device_name_t *name){
2590e0abb8e7S[email protected]     uint8_t event[2+1+6+248+1]; // +1 for \0 in log_info
2591627c2f45Smatthias.ringwald     event[0] = BTSTACK_EVENT_REMOTE_NAME_CACHED;
2592e0abb8e7S[email protected]     event[1] = sizeof(event) - 2 - 1;
2593f653b6bdSmatthias.ringwald     event[2] = 0;   // just to be compatible with HCI_EVENT_REMOTE_NAME_REQUEST_COMPLETE
25942e77e513S[email protected]     bt_flip_addr(&event[3], addr);
2595f653b6bdSmatthias.ringwald     memcpy(&event[9], name, 248);
2596e0abb8e7S[email protected] 
2597e0abb8e7S[email protected]     event[9+248] = 0;   // assert \0 for log_info
25982e77e513S[email protected]     log_info("BTSTACK_EVENT_REMOTE_NAME_CACHED %s = '%s'", bd_addr_to_str(addr), &event[9]);
2599e0abb8e7S[email protected] 
2600e0abb8e7S[email protected]     hci_dump_packet(HCI_EVENT_PACKET, 0, event, sizeof(event)-1);
26013a9fb326S[email protected]     hci_stack->packet_handler(HCI_EVENT_PACKET, event, sizeof(event)-1);
2602627c2f45Smatthias.ringwald }
2603381fbed8Smatthias.ringwald 
2604381fbed8Smatthias.ringwald void hci_emit_discoverable_enabled(uint8_t enabled){
2605e0abb8e7S[email protected]     log_info("BTSTACK_EVENT_DISCOVERABLE_ENABLED %u", enabled);
2606425d1371Smatthias.ringwald     uint8_t event[3];
2607381fbed8Smatthias.ringwald     event[0] = BTSTACK_EVENT_DISCOVERABLE_ENABLED;
2608425d1371Smatthias.ringwald     event[1] = sizeof(event) - 2;
2609381fbed8Smatthias.ringwald     event[2] = enabled;
2610425d1371Smatthias.ringwald     hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
26113a9fb326S[email protected]     hci_stack->packet_handler(HCI_EVENT_PACKET, event, sizeof(event));
2612381fbed8Smatthias.ringwald }
2613458bf4e8S[email protected] 
2614a00031e2S[email protected] void hci_emit_security_level(hci_con_handle_t con_handle, gap_security_level_t level){
2615df3354fcS[email protected]     log_info("hci_emit_security_level %u for handle %x", level, con_handle);
2616a00031e2S[email protected]     uint8_t event[5];
2617e00caf9cS[email protected]     int pos = 0;
2618a00031e2S[email protected]     event[pos++] = GAP_SECURITY_LEVEL;
2619e00caf9cS[email protected]     event[pos++] = sizeof(event) - 2;
2620a00031e2S[email protected]     bt_store_16(event, 2, con_handle);
2621e00caf9cS[email protected]     pos += 2;
2622e00caf9cS[email protected]     event[pos++] = level;
2623e00caf9cS[email protected]     hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
26243a9fb326S[email protected]     hci_stack->packet_handler(HCI_EVENT_PACKET, event, sizeof(event));
2625e00caf9cS[email protected] }
2626e00caf9cS[email protected] 
26271bd5283dS[email protected] void hci_emit_dedicated_bonding_result(bd_addr_t address, uint8_t status){
2628ad83dc6aS[email protected]     log_info("hci_emit_dedicated_bonding_result %u ", status);
2629ad83dc6aS[email protected]     uint8_t event[9];
2630ad83dc6aS[email protected]     int pos = 0;
2631ad83dc6aS[email protected]     event[pos++] = GAP_DEDICATED_BONDING_COMPLETED;
2632ad83dc6aS[email protected]     event[pos++] = sizeof(event) - 2;
2633ad83dc6aS[email protected]     event[pos++] = status;
26342e77e513S[email protected]     bt_flip_addr( &event[pos], address);
2635ad83dc6aS[email protected]     pos += 6;
2636ad83dc6aS[email protected]     hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
26373a9fb326S[email protected]     hci_stack->packet_handler(HCI_EVENT_PACKET, event, sizeof(event));
2638ad83dc6aS[email protected] }
2639ad83dc6aS[email protected] 
26402bd8b7e7S[email protected] // query if remote side supports SSP
26412bd8b7e7S[email protected] int hci_remote_ssp_supported(hci_con_handle_t con_handle){
26422bd8b7e7S[email protected]     hci_connection_t * connection = hci_connection_for_handle(con_handle);
26432bd8b7e7S[email protected]     if (!connection) return 0;
26442bd8b7e7S[email protected]     return (connection->bonding_flags & BONDING_REMOTE_SUPPORTS_SSP) ? 1 : 0;
26452bd8b7e7S[email protected] }
26462bd8b7e7S[email protected] 
2647df3354fcS[email protected] int hci_ssp_supported_on_both_sides(hci_con_handle_t handle){
2648df3354fcS[email protected]     return hci_local_ssp_activated() && hci_remote_ssp_supported(handle);
2649df3354fcS[email protected] }
2650df3354fcS[email protected] 
2651458bf4e8S[email protected] // GAP API
2652458bf4e8S[email protected] /**
2653458bf4e8S[email protected]  * @bbrief enable/disable bonding. default is enabled
2654458bf4e8S[email protected]  * @praram enabled
2655458bf4e8S[email protected]  */
26564c57c146S[email protected] void gap_set_bondable_mode(int enable){
26573a9fb326S[email protected]     hci_stack->bondable = enable ? 1 : 0;
2658458bf4e8S[email protected] }
2659cb230b9dS[email protected] 
2660cb230b9dS[email protected] /**
266134d2123cS[email protected]  * @brief map link keys to security levels
2662cb230b9dS[email protected]  */
266334d2123cS[email protected] gap_security_level_t gap_security_level_for_link_key_type(link_key_type_t link_key_type){
266434d2123cS[email protected]     switch (link_key_type){
26653c68dfa9S[email protected]         case AUTHENTICATED_COMBINATION_KEY_GENERATED_FROM_P256:
26663c68dfa9S[email protected]             return LEVEL_4;
26673c68dfa9S[email protected]         case COMBINATION_KEY:
26683c68dfa9S[email protected]         case AUTHENTICATED_COMBINATION_KEY_GENERATED_FROM_P192:
26693c68dfa9S[email protected]             return LEVEL_3;
26703c68dfa9S[email protected]         default:
26713c68dfa9S[email protected]             return LEVEL_2;
26723c68dfa9S[email protected]     }
2673cb230b9dS[email protected] }
2674cb230b9dS[email protected] 
2675a00031e2S[email protected] static gap_security_level_t gap_security_level_for_connection(hci_connection_t * connection){
267634d2123cS[email protected]     if (!connection) return LEVEL_0;
267734d2123cS[email protected]     if ((connection->authentication_flags & CONNECTION_ENCRYPTED) == 0) return LEVEL_0;
267834d2123cS[email protected]     return gap_security_level_for_link_key_type(connection->link_key_type);
267934d2123cS[email protected] }
268034d2123cS[email protected] 
268134d2123cS[email protected] 
2682106d6d11S[email protected] int gap_mitm_protection_required_for_security_level(gap_security_level_t level){
26835127cc62S[email protected]     log_info("gap_mitm_protection_required_for_security_level %u", level);
2684106d6d11S[email protected]     return level > LEVEL_2;
2685106d6d11S[email protected] }
2686106d6d11S[email protected] 
268734d2123cS[email protected] /**
268834d2123cS[email protected]  * @brief get current security level
268934d2123cS[email protected]  */
269034d2123cS[email protected] gap_security_level_t gap_security_level(hci_con_handle_t con_handle){
269134d2123cS[email protected]     hci_connection_t * connection = hci_connection_for_handle(con_handle);
269234d2123cS[email protected]     if (!connection) return LEVEL_0;
269334d2123cS[email protected]     return gap_security_level_for_connection(connection);
269434d2123cS[email protected] }
269534d2123cS[email protected] 
2696cb230b9dS[email protected] /**
2697cb230b9dS[email protected]  * @brief request connection to device to
2698cb230b9dS[email protected]  * @result GAP_AUTHENTICATION_RESULT
2699cb230b9dS[email protected]  */
270034d2123cS[email protected] void gap_request_security_level(hci_con_handle_t con_handle, gap_security_level_t requested_level){
270134d2123cS[email protected]     hci_connection_t * connection = hci_connection_for_handle(con_handle);
270234d2123cS[email protected]     if (!connection){
2703a00031e2S[email protected]         hci_emit_security_level(con_handle, LEVEL_0);
270434d2123cS[email protected]         return;
270534d2123cS[email protected]     }
270634d2123cS[email protected]     gap_security_level_t current_level = gap_security_level(con_handle);
270734d2123cS[email protected]     log_info("gap_request_security_level %u, current level %u", requested_level, current_level);
270834d2123cS[email protected]     if (current_level >= requested_level){
2709a00031e2S[email protected]         hci_emit_security_level(con_handle, current_level);
271034d2123cS[email protected]         return;
271134d2123cS[email protected]     }
2712a00031e2S[email protected] 
271334d2123cS[email protected]     connection->requested_security_level = requested_level;
2714a00031e2S[email protected] 
271525bf5872S[email protected] #if 0
271625bf5872S[email protected]     // sending encryption request without a link key results in an error.
271725bf5872S[email protected]     // TODO: figure out how to use it properly
271825bf5872S[email protected] 
2719fb8ba0dbS[email protected]     // would enabling ecnryption suffice (>= LEVEL_2)?
27203a9fb326S[email protected]     if (hci_stack->remote_device_db){
2721a00031e2S[email protected]         link_key_type_t link_key_type;
2722a00031e2S[email protected]         link_key_t      link_key;
27233a9fb326S[email protected]         if (hci_stack->remote_device_db->get_link_key( &connection->address, &link_key, &link_key_type)){
2724a00031e2S[email protected]             if (gap_security_level_for_link_key_type(link_key_type) >= requested_level){
2725a00031e2S[email protected]                 connection->bonding_flags |= BONDING_SEND_ENCRYPTION_REQUEST;
2726a00031e2S[email protected]                 return;
2727a00031e2S[email protected]             }
2728a00031e2S[email protected]         }
2729a00031e2S[email protected]     }
273025bf5872S[email protected] #endif
2731a00031e2S[email protected] 
27321eb2563eS[email protected]     // try to authenticate connection
27331eb2563eS[email protected]     connection->bonding_flags |= BONDING_SEND_AUTHENTICATE_REQUEST;
2734e80b2cf9S[email protected]     hci_run();
2735e00caf9cS[email protected] }
2736ad83dc6aS[email protected] 
2737ad83dc6aS[email protected] /**
2738ad83dc6aS[email protected]  * @brief start dedicated bonding with device. disconnect after bonding
2739ad83dc6aS[email protected]  * @param device
2740ad83dc6aS[email protected]  * @param request MITM protection
2741ad83dc6aS[email protected]  * @result GAP_DEDICATED_BONDING_COMPLETE
2742ad83dc6aS[email protected]  */
2743ad83dc6aS[email protected] int gap_dedicated_bonding(bd_addr_t device, int mitm_protection_required){
2744ad83dc6aS[email protected] 
2745ad83dc6aS[email protected]     // create connection state machine
274696a45072S[email protected]     hci_connection_t * connection = create_connection_for_bd_addr_and_type(device, BD_ADDR_TYPE_CLASSIC);
2747ad83dc6aS[email protected] 
2748ad83dc6aS[email protected]     if (!connection){
2749ad83dc6aS[email protected]         return BTSTACK_MEMORY_ALLOC_FAILED;
2750ad83dc6aS[email protected]     }
2751ad83dc6aS[email protected] 
2752ad83dc6aS[email protected]     // delete linkn key
27532e77e513S[email protected]     hci_drop_link_key_for_bd_addr(device);
2754ad83dc6aS[email protected] 
2755ad83dc6aS[email protected]     // configure LEVEL_2/3, dedicated bonding
2756ad83dc6aS[email protected]     connection->state = SEND_CREATE_CONNECTION;
2757ad83dc6aS[email protected]     connection->requested_security_level = mitm_protection_required ? LEVEL_3 : LEVEL_2;
27585127cc62S[email protected]     log_info("gap_dedicated_bonding, mitm %u -> level %u", mitm_protection_required, connection->requested_security_level);
2759ad83dc6aS[email protected]     connection->bonding_flags = BONDING_DEDICATED;
2760ad83dc6aS[email protected] 
2761ad83dc6aS[email protected]     // wait for GAP Security Result and send GAP Dedicated Bonding complete
2762ad83dc6aS[email protected] 
2763ad83dc6aS[email protected]     // handle: connnection failure (connection complete != ok)
2764ad83dc6aS[email protected]     // handle: authentication failure
2765ad83dc6aS[email protected]     // handle: disconnect on done
2766ad83dc6aS[email protected] 
2767ad83dc6aS[email protected]     hci_run();
2768ad83dc6aS[email protected] 
2769ad83dc6aS[email protected]     return 0;
2770ad83dc6aS[email protected] }
27718e618f72S[email protected] 
27728e618f72S[email protected] void gap_set_local_name(const char * local_name){
27738e618f72S[email protected]     hci_stack->local_name = local_name;
27748e618f72S[email protected] }
27758e618f72S[email protected] 
27767bdc6798S[email protected] le_command_status_t le_central_start_scan(){
277736af3e18S[email protected]     if (hci_stack->le_scanning_state == LE_SCANNING) return BLE_PERIPHERAL_OK;
27787bdc6798S[email protected]     hci_stack->le_scanning_state = LE_START_SCAN;
27797bdc6798S[email protected]     hci_run();
27807bdc6798S[email protected]     return BLE_PERIPHERAL_OK;
27817bdc6798S[email protected] }
27828e618f72S[email protected] 
27837bdc6798S[email protected] le_command_status_t le_central_stop_scan(){
278436af3e18S[email protected]     if ( hci_stack->le_scanning_state == LE_SCAN_IDLE) return BLE_PERIPHERAL_OK;
27857bdc6798S[email protected]     hci_stack->le_scanning_state = LE_STOP_SCAN;
27867bdc6798S[email protected]     hci_run();
27877bdc6798S[email protected]     return BLE_PERIPHERAL_OK;
27887bdc6798S[email protected] }
27894f3229d8S[email protected] 
2790ef11999fSmatthias.ringwald void le_central_set_scan_parameters(uint8_t scan_type, uint16_t scan_interval, uint16_t scan_window){
2791ef11999fSmatthias.ringwald     hci_stack->le_scan_type     = scan_type;
2792ef11999fSmatthias.ringwald     hci_stack->le_scan_interval = scan_interval;
2793ef11999fSmatthias.ringwald     hci_stack->le_scan_window   = scan_window;
2794ef11999fSmatthias.ringwald     hci_run();
2795ef11999fSmatthias.ringwald }
27964f3229d8S[email protected] 
27972e77e513S[email protected] le_command_status_t le_central_connect(bd_addr_t  addr, bd_addr_type_t addr_type){
27984f3229d8S[email protected]     hci_connection_t * conn = hci_connection_for_bd_addr_and_type(addr, addr_type);
27994f3229d8S[email protected]     if (!conn){
28001f479f8cS[email protected]         log_info("le_central_connect: no connection exists yet, creating context");
28012e77e513S[email protected]         conn = create_connection_for_bd_addr_and_type(addr, addr_type);
28024f3229d8S[email protected]         if (!conn){
28034f3229d8S[email protected]             // notify client that alloc failed
28046e2e9a6bS[email protected]             hci_emit_le_connection_complete(addr_type, addr, 0, BTSTACK_MEMORY_ALLOC_FAILED);
28056e2e9a6bS[email protected]             log_info("le_central_connect: failed to alloc hci_connection_t");
28064f3229d8S[email protected]             return BLE_PERIPHERAL_NOT_CONNECTED; // don't sent packet to controller
28074f3229d8S[email protected]         }
28084f3229d8S[email protected]         conn->state = SEND_CREATE_CONNECTION;
28091f479f8cS[email protected]         log_info("le_central_connect: send create connection next");
2810564fca32S[email protected]         hci_run();
28114f3229d8S[email protected]         return BLE_PERIPHERAL_OK;
28124f3229d8S[email protected]     }
28130bf6344aS[email protected] 
28140bf6344aS[email protected]     if (!hci_is_le_connection(conn) ||
28150bf6344aS[email protected]         conn->state == SEND_CREATE_CONNECTION ||
28160bf6344aS[email protected]         conn->state == SENT_CREATE_CONNECTION) {
28172e77e513S[email protected]         hci_emit_le_connection_complete(conn->address_type, conn->address, 0, ERROR_CODE_COMMAND_DISALLOWED);
28181f479f8cS[email protected]         log_error("le_central_connect: classic connection or connect is already being created");
28190bf6344aS[email protected]         return BLE_PERIPHERAL_IN_WRONG_STATE;
28200bf6344aS[email protected]     }
28210bf6344aS[email protected] 
28221f479f8cS[email protected]     log_info("le_central_connect: context exists with state %u", conn->state);
28232e77e513S[email protected]     hci_emit_le_connection_complete(conn->address_type, conn->address, conn->con_handle, 0);
28244f3229d8S[email protected]     hci_run();
28254f3229d8S[email protected]     return BLE_PERIPHERAL_OK;
28264f3229d8S[email protected] }
28274f3229d8S[email protected] 
28287851196eSmatthias.ringwald // @assumption: only a single outgoing LE Connection exists
28297851196eSmatthias.ringwald static hci_connection_t * le_central_get_outgoing_connection(){
28300bf6344aS[email protected]     linked_item_t *it;
28310bf6344aS[email protected]     for (it = (linked_item_t *) hci_stack->connections; it ; it = it->next){
28320bf6344aS[email protected]         hci_connection_t * conn = (hci_connection_t *) it;
28330bf6344aS[email protected]         if (!hci_is_le_connection(conn)) continue;
28340bf6344aS[email protected]         switch (conn->state){
2835a6725849S[email protected]             case SEND_CREATE_CONNECTION:
28367851196eSmatthias.ringwald             case SENT_CREATE_CONNECTION:
28377851196eSmatthias.ringwald                 return conn;
28387851196eSmatthias.ringwald             default:
28397851196eSmatthias.ringwald                 break;
28407851196eSmatthias.ringwald         };
28417851196eSmatthias.ringwald     }
28427851196eSmatthias.ringwald     return NULL;
28437851196eSmatthias.ringwald }
28447851196eSmatthias.ringwald 
28457851196eSmatthias.ringwald le_command_status_t le_central_connect_cancel(){
28467851196eSmatthias.ringwald     hci_connection_t * conn = le_central_get_outgoing_connection();
28477851196eSmatthias.ringwald     switch (conn->state){
28487851196eSmatthias.ringwald         case SEND_CREATE_CONNECTION:
28497851196eSmatthias.ringwald             // skip sending create connection and emit event instead
28502e77e513S[email protected]             hci_emit_le_connection_complete(conn->address_type, conn->address, 0, ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER);
28517851196eSmatthias.ringwald             linked_list_remove(&hci_stack->connections, (linked_item_t *) conn);
28527851196eSmatthias.ringwald             btstack_memory_hci_connection_free( conn );
28530bf6344aS[email protected]             break;
2854a6725849S[email protected]         case SENT_CREATE_CONNECTION:
28557851196eSmatthias.ringwald             // request to send cancel connection
28560bf6344aS[email protected]             conn->state = SEND_CANCEL_CONNECTION;
28570bf6344aS[email protected]             hci_run();
28580bf6344aS[email protected]             break;
28590bf6344aS[email protected]         default:
28600bf6344aS[email protected]             break;
28610bf6344aS[email protected]     }
2862e31f89a7S[email protected]     return BLE_PERIPHERAL_OK;
2863e31f89a7S[email protected] }
28644f3229d8S[email protected] 
2865c37a3166S[email protected] /**
2866c37a3166S[email protected]  * @brief Updates the connection parameters for a given LE connection
2867c37a3166S[email protected]  * @param handle
2868c37a3166S[email protected]  * @param conn_interval_min (unit: 1.25ms)
2869c37a3166S[email protected]  * @param conn_interval_max (unit: 1.25ms)
2870c37a3166S[email protected]  * @param conn_latency
2871c37a3166S[email protected]  * @param supervision_timeout (unit: 10ms)
2872c37a3166S[email protected]  * @returns 0 if ok
2873c37a3166S[email protected]  */
2874c37a3166S[email protected] int gap_update_connection_parameters(hci_con_handle_t con_handle, uint16_t conn_interval_min,
2875c37a3166S[email protected]     uint16_t conn_interval_max, uint16_t conn_latency, uint16_t supervision_timeout){
2876c37a3166S[email protected]     hci_connection_t * connection = hci_connection_for_handle(con_handle);
2877c37a3166S[email protected]     if (!connection) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
2878c37a3166S[email protected]     connection->le_conn_interval_min = conn_interval_min;
2879c37a3166S[email protected]     connection->le_conn_interval_max = conn_interval_max;
2880c37a3166S[email protected]     connection->le_conn_latency = conn_latency;
2881c37a3166S[email protected]     connection->le_supervision_timeout = supervision_timeout;
2882c37a3166S[email protected]     return 0;
2883c37a3166S[email protected] }
2884c37a3166S[email protected] 
28855917a5c5S[email protected] le_command_status_t gap_disconnect(hci_con_handle_t handle){
28865917a5c5S[email protected]     hci_connection_t * conn = hci_connection_for_handle(handle);
28875917a5c5S[email protected]     if (!conn){
28887851196eSmatthias.ringwald         hci_emit_disconnection_complete(handle, 0);
28895917a5c5S[email protected]         return BLE_PERIPHERAL_OK;
28905917a5c5S[email protected]     }
28915917a5c5S[email protected]     conn->state = SEND_DISCONNECT;
28925917a5c5S[email protected]     hci_run();
28934f3229d8S[email protected]     return BLE_PERIPHERAL_OK;
28944f3229d8S[email protected] }
289504a6ef8cSmatthias.ringwald 
289604a6ef8cSmatthias.ringwald void hci_disconnect_all(){
289704a6ef8cSmatthias.ringwald     linked_list_iterator_t it;
289804a6ef8cSmatthias.ringwald     linked_list_iterator_init(&it, &hci_stack->connections);
289904a6ef8cSmatthias.ringwald     while (linked_list_iterator_has_next(&it)){
290004a6ef8cSmatthias.ringwald         hci_connection_t * con = (hci_connection_t*) linked_list_iterator_next(&it);
290104a6ef8cSmatthias.ringwald         if (con->state == SENT_DISCONNECT) continue;
290204a6ef8cSmatthias.ringwald         con->state = SEND_DISCONNECT;
290304a6ef8cSmatthias.ringwald     }
2904d31fba26S[email protected]     hci_run();
290504a6ef8cSmatthias.ringwald }
2906