xref: /btstack/src/hci.c (revision 210c67748066d81f4d745dc398a8f48e556aa3ba)
11f504dbdSmatthias.ringwald /*
26b64433eSmatthias.ringwald  * Copyright (C) 2009-2012 by Matthias Ringwald
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  *
201713bceaSmatthias.ringwald  * THIS SOFTWARE IS PROVIDED BY MATTHIAS RINGWALD 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  *
336b64433eSmatthias.ringwald  * Please inquire about commercial licensing options at [email protected]
346b64433eSmatthias.ringwald  *
351713bceaSmatthias.ringwald  */
361713bceaSmatthias.ringwald 
371713bceaSmatthias.ringwald /*
381f504dbdSmatthias.ringwald  *  hci.c
391f504dbdSmatthias.ringwald  *
401f504dbdSmatthias.ringwald  *  Created by Matthias Ringwald on 4/29/09.
411f504dbdSmatthias.ringwald  *
421f504dbdSmatthias.ringwald  */
431f504dbdSmatthias.ringwald 
44bde315ceS[email protected] #include "btstack-config.h"
4528171530Smatthias.ringwald 
467f2435e6Smatthias.ringwald #include "hci.h"
474c57c146S[email protected] #include "gap.h"
487f2435e6Smatthias.ringwald 
4993b8dc03Smatthias.ringwald #include <stdarg.h>
5093b8dc03Smatthias.ringwald #include <string.h>
5156fe0872Smatthias.ringwald #include <stdio.h>
527f2435e6Smatthias.ringwald 
53549e6ebeSmatthias.ringwald #ifndef EMBEDDED
54549e6ebeSmatthias.ringwald #include <unistd.h> // gethostbyname
5509ba8edeSmatthias.ringwald #include <btstack/version.h>
56549e6ebeSmatthias.ringwald #endif
57549e6ebeSmatthias.ringwald 
58a3b02b71Smatthias.ringwald #include "btstack_memory.h"
597f2435e6Smatthias.ringwald #include "debug.h"
60d8905019Smatthias.ringwald #include "hci_dump.h"
6193b8dc03Smatthias.ringwald 
62ae1fd9f3Smatthias.ringwald #include <btstack/hci_cmds.h>
631b0e3922Smatthias.ringwald 
64169f8b28Smatthias.ringwald #define HCI_CONNECTION_TIMEOUT_MS 10000
65ee091cf1Smatthias.ringwald 
66a45d6b9fS[email protected] #define HCI_INTIALIZING_SUBSTATE_AFTER_SLEEP 11
67da5275c5S[email protected] 
6828171530Smatthias.ringwald #ifdef USE_BLUETOOL
693d7a3f67S[email protected] #include "../platforms/ios/src/bt_control_iphone.h"
7028171530Smatthias.ringwald #endif
7128171530Smatthias.ringwald 
72758b46ceSmatthias.ringwald static void hci_update_scan_enable(void);
73a00031e2S[email protected] static gap_security_level_t gap_security_level_for_connection(hci_connection_t * connection);
7496a45072S[email protected] static void hci_connection_timeout_handler(timer_source_t *timer);
7596a45072S[email protected] static void hci_connection_timestamp(hci_connection_t *connection);
767586ee35S[email protected] static int  hci_power_control_on(void);
777586ee35S[email protected] static void hci_power_control_off(void);
786155b3d3S[email protected] static void hci_state_reset();
79758b46ceSmatthias.ringwald 
8006b35ec0Smatthias.ringwald // the STACK is here
813a9fb326S[email protected] #ifndef HAVE_MALLOC
823a9fb326S[email protected] static hci_stack_t   hci_stack_static;
833a9fb326S[email protected] #endif
843a9fb326S[email protected] static hci_stack_t * hci_stack = NULL;
8516833f0aSmatthias.ringwald 
8666fb9560S[email protected] // test helper
8766fb9560S[email protected] static uint8_t disable_l2cap_timeouts = 0;
8866fb9560S[email protected] 
8996a45072S[email protected] /**
9096a45072S[email protected]  * create connection for given address
9196a45072S[email protected]  *
9296a45072S[email protected]  * @return connection OR NULL, if no memory left
9396a45072S[email protected]  */
9496a45072S[email protected] static hci_connection_t * create_connection_for_bd_addr_and_type(bd_addr_t addr, bd_addr_type_t addr_type){
9596a45072S[email protected] 
965127cc62S[email protected]     log_info("create_connection_for_addr %s", bd_addr_to_str(addr));
97bb69aaaeS[email protected]     hci_connection_t * conn = btstack_memory_hci_connection_get();
9896a45072S[email protected]     if (!conn) return NULL;
9996a45072S[email protected]     BD_ADDR_COPY(conn->address, addr);
10096a45072S[email protected]     conn->address_type = addr_type;
10196a45072S[email protected]     conn->con_handle = 0xffff;
10296a45072S[email protected]     conn->authentication_flags = AUTH_FLAGS_NONE;
10396a45072S[email protected]     conn->bonding_flags = 0;
10496a45072S[email protected]     conn->requested_security_level = LEVEL_0;
10596a45072S[email protected]     linked_item_set_user(&conn->timeout.item, conn);
10696a45072S[email protected]     conn->timeout.process = hci_connection_timeout_handler;
10796a45072S[email protected]     hci_connection_timestamp(conn);
10896a45072S[email protected]     conn->acl_recombination_length = 0;
10996a45072S[email protected]     conn->acl_recombination_pos = 0;
11096a45072S[email protected]     conn->num_acl_packets_sent = 0;
11196a45072S[email protected]     linked_list_add(&hci_stack->connections, (linked_item_t *) conn);
11296a45072S[email protected]     return conn;
11396a45072S[email protected] }
11466fb9560S[email protected] 
11597addcc5Smatthias.ringwald /**
116ee091cf1Smatthias.ringwald  * get connection for a given handle
117ee091cf1Smatthias.ringwald  *
118ee091cf1Smatthias.ringwald  * @return connection OR NULL, if not found
119ee091cf1Smatthias.ringwald  */
1205061f3afS[email protected] hci_connection_t * hci_connection_for_handle(hci_con_handle_t con_handle){
121ee091cf1Smatthias.ringwald     linked_item_t *it;
1223a9fb326S[email protected]     for (it = (linked_item_t *) hci_stack->connections; it ; it = it->next){
123ee091cf1Smatthias.ringwald         if ( ((hci_connection_t *) it)->con_handle == con_handle){
124ee091cf1Smatthias.ringwald             return (hci_connection_t *) it;
125ee091cf1Smatthias.ringwald         }
126ee091cf1Smatthias.ringwald     }
127ee091cf1Smatthias.ringwald     return NULL;
128ee091cf1Smatthias.ringwald }
129ee091cf1Smatthias.ringwald 
13096a45072S[email protected] /**
13196a45072S[email protected]  * get connection for given address
13296a45072S[email protected]  *
13396a45072S[email protected]  * @return connection OR NULL, if not found
13496a45072S[email protected]  */
13596a45072S[email protected] hci_connection_t * hci_connection_for_bd_addr_and_type(bd_addr_t * addr, bd_addr_type_t addr_type){
13662bda3fbS[email protected]     linked_item_t *it;
13762bda3fbS[email protected]     for (it = (linked_item_t *) hci_stack->connections; it ; it = it->next){
13862bda3fbS[email protected]         hci_connection_t * connection = (hci_connection_t *) it;
13996a45072S[email protected]         if (connection->address_type != addr_type)  continue;
14096a45072S[email protected]         if (memcmp(addr, connection->address, 6) != 0) continue;
14162bda3fbS[email protected]         return connection;
14262bda3fbS[email protected]     }
14362bda3fbS[email protected]     return NULL;
14462bda3fbS[email protected] }
14562bda3fbS[email protected] 
1462b12a0b9Smatthias.ringwald static void hci_connection_timeout_handler(timer_source_t *timer){
14728ca2b46S[email protected]     hci_connection_t * connection = (hci_connection_t *) linked_item_get_user(&timer->item);
148c785ef68Smatthias.ringwald #ifdef HAVE_TIME
149ee091cf1Smatthias.ringwald     struct timeval tv;
150ee091cf1Smatthias.ringwald     gettimeofday(&tv, NULL);
151c21e6239Smatthias.ringwald     if (tv.tv_sec >= connection->timestamp.tv_sec + HCI_CONNECTION_TIMEOUT_MS/1000) {
152ee091cf1Smatthias.ringwald         // connections might be timed out
153ee091cf1Smatthias.ringwald         hci_emit_l2cap_check_timeout(connection);
154ee091cf1Smatthias.ringwald     }
1552b12a0b9Smatthias.ringwald #endif
156e5780900Smatthias.ringwald #ifdef HAVE_TICK
157c785ef68Smatthias.ringwald     if (embedded_get_ticks() > connection->timestamp + embedded_ticks_for_ms(HCI_CONNECTION_TIMEOUT_MS)){
158c785ef68Smatthias.ringwald         // connections might be timed out
159c785ef68Smatthias.ringwald         hci_emit_l2cap_check_timeout(connection);
160c785ef68Smatthias.ringwald     }
161c785ef68Smatthias.ringwald #endif
162c785ef68Smatthias.ringwald     run_loop_set_timer(timer, HCI_CONNECTION_TIMEOUT_MS);
163c785ef68Smatthias.ringwald     run_loop_add_timer(timer);
164c785ef68Smatthias.ringwald }
165ee091cf1Smatthias.ringwald 
166ee091cf1Smatthias.ringwald static void hci_connection_timestamp(hci_connection_t *connection){
167c7492964Smatthias.ringwald #ifdef HAVE_TIME
168ee091cf1Smatthias.ringwald     gettimeofday(&connection->timestamp, NULL);
169c7492964Smatthias.ringwald #endif
170e5780900Smatthias.ringwald #ifdef HAVE_TICK
171c785ef68Smatthias.ringwald     connection->timestamp = embedded_get_ticks();
172c785ef68Smatthias.ringwald #endif
173ee091cf1Smatthias.ringwald }
174ee091cf1Smatthias.ringwald 
17506b35ec0Smatthias.ringwald 
17628ca2b46S[email protected] inline static void connectionSetAuthenticationFlags(hci_connection_t * conn, hci_authentication_flags_t flags){
17728ca2b46S[email protected]     conn->authentication_flags = (hci_authentication_flags_t)(conn->authentication_flags | flags);
17828ca2b46S[email protected] }
17928ca2b46S[email protected] 
18028ca2b46S[email protected] inline static void connectionClearAuthenticationFlags(hci_connection_t * conn, hci_authentication_flags_t flags){
18128ca2b46S[email protected]     conn->authentication_flags = (hci_authentication_flags_t)(conn->authentication_flags & ~flags);
18228ca2b46S[email protected] }
18328ca2b46S[email protected] 
18428ca2b46S[email protected] 
18543bfb1bdSmatthias.ringwald /**
18680ca58a0Smatthias.ringwald  * add authentication flags and reset timer
18796a45072S[email protected]  * @note: assumes classic connection
1887fde4af9Smatthias.ringwald  */
1897fde4af9Smatthias.ringwald static void hci_add_connection_flags_for_flipped_bd_addr(uint8_t *bd_addr, hci_authentication_flags_t flags){
1907fde4af9Smatthias.ringwald     bd_addr_t addr;
1917fde4af9Smatthias.ringwald     bt_flip_addr(addr, *(bd_addr_t *) bd_addr);
19296a45072S[email protected]     hci_connection_t * conn = hci_connection_for_bd_addr_and_type(&addr, BD_ADDR_TYPE_CLASSIC);
1937fde4af9Smatthias.ringwald     if (conn) {
19428ca2b46S[email protected]         connectionSetAuthenticationFlags(conn, flags);
19580ca58a0Smatthias.ringwald         hci_connection_timestamp(conn);
1967fde4af9Smatthias.ringwald     }
1977fde4af9Smatthias.ringwald }
1987fde4af9Smatthias.ringwald 
19980ca58a0Smatthias.ringwald int  hci_authentication_active_for_handle(hci_con_handle_t handle){
2005061f3afS[email protected]     hci_connection_t * conn = hci_connection_for_handle(handle);
20180ca58a0Smatthias.ringwald     if (!conn) return 0;
2026724cd9eS[email protected]     if (conn->authentication_flags & LEGACY_PAIRING_ACTIVE) return 1;
2036724cd9eS[email protected]     if (conn->authentication_flags & SSP_PAIRING_ACTIVE) return 1;
2046724cd9eS[email protected]     return 0;
20580ca58a0Smatthias.ringwald }
20680ca58a0Smatthias.ringwald 
207c12e46e7Smatthias.ringwald void hci_drop_link_key_for_bd_addr(bd_addr_t *addr){
2083a9fb326S[email protected]     if (hci_stack->remote_device_db) {
2093a9fb326S[email protected]         hci_stack->remote_device_db->delete_link_key(addr);
210c12e46e7Smatthias.ringwald     }
211c12e46e7Smatthias.ringwald }
212c12e46e7Smatthias.ringwald 
2130bf6344aS[email protected] int hci_is_le_connection(hci_connection_t * connection){
2140bf6344aS[email protected]     return  connection->address_type == BD_ADDR_TYPE_LE_PUBLIC ||
2150bf6344aS[email protected]     connection->address_type == BD_ADDR_TYPE_LE_RANDOM;
2160bf6344aS[email protected] }
2170bf6344aS[email protected] 
2187fde4af9Smatthias.ringwald 
2197fde4af9Smatthias.ringwald /**
22043bfb1bdSmatthias.ringwald  * count connections
22143bfb1bdSmatthias.ringwald  */
22240d1c7a4Smatthias.ringwald static int nr_hci_connections(void){
22356c253c9Smatthias.ringwald     int count = 0;
22443bfb1bdSmatthias.ringwald     linked_item_t *it;
2253a9fb326S[email protected]     for (it = (linked_item_t *) hci_stack->connections; it ; it = it->next, count++);
22643bfb1bdSmatthias.ringwald     return count;
22743bfb1bdSmatthias.ringwald }
228c8e4258aSmatthias.ringwald 
22997addcc5Smatthias.ringwald /**
230ba681a6cSmatthias.ringwald  * Dummy handler called by HCI
23116833f0aSmatthias.ringwald  */
2322718e2e7Smatthias.ringwald static void dummy_handler(uint8_t packet_type, uint8_t *packet, uint16_t size){
23316833f0aSmatthias.ringwald }
23416833f0aSmatthias.ringwald 
235998906cdSmatthias.ringwald uint8_t hci_number_outgoing_packets(hci_con_handle_t handle){
2365061f3afS[email protected]     hci_connection_t * connection = hci_connection_for_handle(handle);
237998906cdSmatthias.ringwald     if (!connection) {
2389da54300S[email protected]         log_error("hci_number_outgoing_packets: connection for handle %u does not exist!", handle);
239998906cdSmatthias.ringwald         return 0;
240998906cdSmatthias.ringwald     }
241998906cdSmatthias.ringwald     return connection->num_acl_packets_sent;
242998906cdSmatthias.ringwald }
243998906cdSmatthias.ringwald 
244e79abdd6S[email protected] uint8_t hci_number_free_acl_slots_for_handle(hci_con_handle_t con_handle){
245ee303eddS[email protected] 
246ee303eddS[email protected]     int num_packets_sent_classic = 0;
247ee303eddS[email protected]     int num_packets_sent_le = 0;
248ee303eddS[email protected] 
249ee303eddS[email protected]     bd_addr_type_t address_type = BD_ADDR_TYPE_UNKNOWN;
250ee303eddS[email protected] 
251998906cdSmatthias.ringwald     linked_item_t *it;
2523a9fb326S[email protected]     for (it = (linked_item_t *) hci_stack->connections; it ; it = it->next){
253998906cdSmatthias.ringwald         hci_connection_t * connection = (hci_connection_t *) it;
254ee303eddS[email protected]         if (connection->address_type == BD_ADDR_TYPE_CLASSIC){
255ee303eddS[email protected]             num_packets_sent_classic += connection->num_acl_packets_sent;
256ee303eddS[email protected]         } else {
257ee303eddS[email protected]             num_packets_sent_le += connection->num_acl_packets_sent;
258ee303eddS[email protected]         }
259ee303eddS[email protected]         if (connection->con_handle == con_handle){
260ee303eddS[email protected]             address_type = connection->address_type;
261ee303eddS[email protected]         }
262ee303eddS[email protected]     }
263ee303eddS[email protected] 
264ee303eddS[email protected]     int free_slots_classic = hci_stack->acl_packets_total_num - num_packets_sent_classic;
265ee303eddS[email protected]     int free_slots_le = 0;
266ee303eddS[email protected] 
267ee303eddS[email protected]     if (free_slots_classic < 0){
2689da54300S[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);
269998906cdSmatthias.ringwald         return 0;
270998906cdSmatthias.ringwald     }
271ee303eddS[email protected] 
272ee303eddS[email protected]     if (hci_stack->le_acl_packets_total_num){
273ee303eddS[email protected]         // if we have LE slots, they are used
274ee303eddS[email protected]         free_slots_le = hci_stack->le_acl_packets_total_num - num_packets_sent_le;
275ee303eddS[email protected]         if (free_slots_le < 0){
2769da54300S[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);
277ee303eddS[email protected]             return 0;
278998906cdSmatthias.ringwald         }
279ee303eddS[email protected]     } else {
280ee303eddS[email protected]         // otherwise, classic slots are used for LE, too
281ee303eddS[email protected]         free_slots_classic -= num_packets_sent_le;
282ee303eddS[email protected]         if (free_slots_classic < 0){
2839da54300S[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);
284ee303eddS[email protected]             return 0;
285ee303eddS[email protected]         }
286ee303eddS[email protected]     }
287ee303eddS[email protected] 
288ee303eddS[email protected]     switch (address_type){
289ee303eddS[email protected]         case BD_ADDR_TYPE_UNKNOWN:
2909da54300S[email protected]             log_error("hci_number_free_acl_slots: handle 0x%04x not in connection list", con_handle);
291ee303eddS[email protected]             return 0;
292ee303eddS[email protected] 
293ee303eddS[email protected]         case BD_ADDR_TYPE_CLASSIC:
294ee303eddS[email protected]             return free_slots_classic;
295ee303eddS[email protected] 
296ee303eddS[email protected]         default:
297cb00d3aaS[email protected]            if (hci_stack->le_acl_packets_total_num){
298ee303eddS[email protected]                return free_slots_le;
299ee303eddS[email protected]            }
300cb00d3aaS[email protected]            return free_slots_classic;
301cb00d3aaS[email protected]     }
302998906cdSmatthias.ringwald }
303998906cdSmatthias.ringwald 
304ac928cc2S[email protected] 
305ac928cc2S[email protected] // @deprecated
306c24735b1Smatthias.ringwald int hci_can_send_packet_now(uint8_t packet_type){
307c24735b1Smatthias.ringwald     switch (packet_type) {
308c24735b1Smatthias.ringwald         case HCI_ACL_DATA_PACKET:
309ac928cc2S[email protected]             return hci_can_send_prepared_acl_packet_now(0);
310c24735b1Smatthias.ringwald         case HCI_COMMAND_DATA_PACKET:
311ac928cc2S[email protected]             return hci_can_send_command_packet_now();
312c24735b1Smatthias.ringwald         default:
313c24735b1Smatthias.ringwald             return 0;
314c24735b1Smatthias.ringwald     }
315c24735b1Smatthias.ringwald }
316c24735b1Smatthias.ringwald 
317ac928cc2S[email protected] // @deprecated
3186b4af23dS[email protected] // same as hci_can_send_packet_now, but also checks if packet buffer is free for use
3196b4af23dS[email protected] int hci_can_send_packet_now_using_packet_buffer(uint8_t packet_type){
320ac928cc2S[email protected] 
3216b4af23dS[email protected]     if (hci_stack->hci_packet_buffer_reserved) return 0;
322ac928cc2S[email protected] 
323ac928cc2S[email protected]     switch (packet_type) {
324ac928cc2S[email protected]         case HCI_ACL_DATA_PACKET:
325ac928cc2S[email protected]             return hci_can_send_acl_packet_now(0);
326ac928cc2S[email protected]         case HCI_COMMAND_DATA_PACKET:
327ac928cc2S[email protected]             return hci_can_send_command_packet_now();
328ac928cc2S[email protected]         default:
329ac928cc2S[email protected]             return 0;
330ac928cc2S[email protected]     }
331ac928cc2S[email protected] }
332ac928cc2S[email protected] 
333ac928cc2S[email protected] 
334ac928cc2S[email protected] // new functions replacing hci_can_send_packet_now[_using_packet_buffer]
335ac928cc2S[email protected] int hci_can_send_command_packet_now(void){
336ac928cc2S[email protected]     if (hci_stack->hci_packet_buffer_reserved) return 0;
337ac928cc2S[email protected] 
338ac928cc2S[email protected]     // check for async hci transport implementations
339ac928cc2S[email protected]     if (hci_stack->hci_transport->can_send_packet_now){
340ac928cc2S[email protected]         if (!hci_stack->hci_transport->can_send_packet_now(HCI_COMMAND_DATA_PACKET)){
341ac928cc2S[email protected]             return 0;
342ac928cc2S[email protected]         }
343ac928cc2S[email protected]     }
344ac928cc2S[email protected] 
345ac928cc2S[email protected]     return hci_stack->num_cmd_packets > 0;
346ac928cc2S[email protected] }
347ac928cc2S[email protected] 
348ac928cc2S[email protected] int hci_can_send_prepared_acl_packet_now(hci_con_handle_t con_handle) {
349ac928cc2S[email protected]     // check for async hci transport implementations
350ac928cc2S[email protected]     if (hci_stack->hci_transport->can_send_packet_now){
351ac928cc2S[email protected]         if (!hci_stack->hci_transport->can_send_packet_now(HCI_ACL_DATA_PACKET)){
352ac928cc2S[email protected]             return 0;
353ac928cc2S[email protected]         }
354ac928cc2S[email protected]     }
355e79abdd6S[email protected]     return hci_number_free_acl_slots_for_handle(con_handle) > 0;
356ac928cc2S[email protected] }
357ac928cc2S[email protected] 
358ac928cc2S[email protected] int hci_can_send_acl_packet_now(hci_con_handle_t con_handle){
359ac928cc2S[email protected]     if (hci_stack->hci_packet_buffer_reserved) return 0;
360ac928cc2S[email protected]     return hci_can_send_prepared_acl_packet_now(con_handle);
3616b4af23dS[email protected] }
3626b4af23dS[email protected] 
363c8b9416aS[email protected] // used for internal checks in l2cap[-le].c
364c8b9416aS[email protected] int hci_is_packet_buffer_reserved(void){
365c8b9416aS[email protected]     return hci_stack->hci_packet_buffer_reserved;
366c8b9416aS[email protected] }
367c8b9416aS[email protected] 
3686b4af23dS[email protected] // reserves outgoing packet buffer. @returns 1 if successful
3696b4af23dS[email protected] int hci_reserve_packet_buffer(void){
3709d14b626S[email protected]     if (hci_stack->hci_packet_buffer_reserved) {
3719d14b626S[email protected]         log_error("hci_reserve_packet_buffer called but buffer already reserved");
3729d14b626S[email protected]         return 0;
3739d14b626S[email protected]     }
3746b4af23dS[email protected]     hci_stack->hci_packet_buffer_reserved = 1;
3756b4af23dS[email protected]     return 1;
3766b4af23dS[email protected] }
3776b4af23dS[email protected] 
37868a0fcf7S[email protected] void hci_release_packet_buffer(void){
37968a0fcf7S[email protected]     hci_stack->hci_packet_buffer_reserved = 0;
38068a0fcf7S[email protected] }
38168a0fcf7S[email protected] 
3826b4af23dS[email protected] // assumption: synchronous implementations don't provide can_send_packet_now as they don't keep the buffer after the call
3836b4af23dS[email protected] int hci_transport_synchronous(void){
3846b4af23dS[email protected]     return hci_stack->hci_transport->can_send_packet_now == NULL;
3856b4af23dS[email protected] }
3866b4af23dS[email protected] 
387826f7347S[email protected] // pre: caller has reserved the packet buffer
388826f7347S[email protected] int hci_send_acl_packet_buffer(int size){
3897856c818Smatthias.ringwald 
390826f7347S[email protected]     if (!hci_stack->hci_packet_buffer_reserved) {
391826f7347S[email protected]         log_error("hci_send_acl_packet_buffer called without reserving packet buffer");
392826f7347S[email protected]         return 0;
393826f7347S[email protected]     }
394826f7347S[email protected] 
395d713a683S[email protected]     uint8_t * packet = hci_stack->hci_packet_buffer;
396d713a683S[email protected]     hci_con_handle_t con_handle = READ_ACL_CONNECTION_HANDLE(packet);
397d713a683S[email protected] 
398826f7347S[email protected]     // check for free places on Bluetooth module
399d713a683S[email protected]     if (!hci_can_send_prepared_acl_packet_now(con_handle)) {
400826f7347S[email protected]         log_error("hci_send_acl_packet_buffer called but no free ACL buffers on controller");
40197b61c7bS[email protected]         hci_release_packet_buffer();
40297b61c7bS[email protected]         return BTSTACK_ACL_BUFFERS_FULL;
40397b61c7bS[email protected]     }
4046218e6f1Smatthias.ringwald 
4055061f3afS[email protected]     hci_connection_t *connection = hci_connection_for_handle( con_handle);
40697b61c7bS[email protected]     if (!connection) {
4075fa0b7cfS[email protected]         log_error("hci_send_acl_packet_buffer called but no connection for handle 0x%04x", con_handle);
40897b61c7bS[email protected]         hci_release_packet_buffer();
40997b61c7bS[email protected]         return 0;
41097b61c7bS[email protected]     }
41156cf178bSmatthias.ringwald     hci_connection_timestamp(connection);
41256cf178bSmatthias.ringwald 
41356cf178bSmatthias.ringwald     // count packet
41456cf178bSmatthias.ringwald     connection->num_acl_packets_sent++;
4159da54300S[email protected]     // log_info("hci_send_acl_packet - handle %u, sent %u", connection->con_handle, connection->num_acl_packets_sent);
4167856c818Smatthias.ringwald 
41700d8e42eSmatthias.ringwald     // send packet
4183a9fb326S[email protected]     int err = hci_stack->hci_transport->send_packet(HCI_ACL_DATA_PACKET, packet, size);
4196218e6f1Smatthias.ringwald 
4206b4af23dS[email protected]     // free packet buffer for synchronous transport implementations
421826f7347S[email protected]     if (hci_transport_synchronous()){
42297b61c7bS[email protected]         hci_release_packet_buffer();
4236b4af23dS[email protected]     }
4246b4af23dS[email protected] 
42500d8e42eSmatthias.ringwald     return err;
426ee091cf1Smatthias.ringwald }
427ee091cf1Smatthias.ringwald 
42816833f0aSmatthias.ringwald static void acl_handler(uint8_t *packet, int size){
4297856c818Smatthias.ringwald 
430e76a89eeS[email protected]     // log_info("acl_handler: size %u", size);
431e76a89eeS[email protected] 
4327856c818Smatthias.ringwald     // get info
4337856c818Smatthias.ringwald     hci_con_handle_t con_handle = READ_ACL_CONNECTION_HANDLE(packet);
4345061f3afS[email protected]     hci_connection_t *conn      = hci_connection_for_handle(con_handle);
4357856c818Smatthias.ringwald     uint8_t  acl_flags          = READ_ACL_FLAGS(packet);
4367856c818Smatthias.ringwald     uint16_t acl_length         = READ_ACL_LENGTH(packet);
4377856c818Smatthias.ringwald 
4387856c818Smatthias.ringwald     // ignore non-registered handle
4397856c818Smatthias.ringwald     if (!conn){
4409da54300S[email protected]         log_error( "hci.c: acl_handler called with non-registered handle %u!" , con_handle);
4417856c818Smatthias.ringwald         return;
4427856c818Smatthias.ringwald     }
4437856c818Smatthias.ringwald 
444e76a89eeS[email protected]     // assert packet is complete
4459ecc3e17S[email protected]     if (acl_length + 4 != size){
446e76a89eeS[email protected]         log_error("hci.c: acl_handler called with ACL packet of wrong size %u, expected %u => dropping packet", size, acl_length + 4);
447e76a89eeS[email protected]         return;
448e76a89eeS[email protected]     }
449e76a89eeS[email protected] 
4507856c818Smatthias.ringwald     // update idle timestamp
4517856c818Smatthias.ringwald     hci_connection_timestamp(conn);
4527856c818Smatthias.ringwald 
4537856c818Smatthias.ringwald     // handle different packet types
4547856c818Smatthias.ringwald     switch (acl_flags & 0x03) {
4557856c818Smatthias.ringwald 
4567856c818Smatthias.ringwald         case 0x01: // continuation fragment
4577856c818Smatthias.ringwald 
4587856c818Smatthias.ringwald             // sanity check
4597856c818Smatthias.ringwald             if (conn->acl_recombination_pos == 0) {
4609da54300S[email protected]                 log_error( "ACL Cont Fragment but no first fragment for handle 0x%02x", con_handle);
4617856c818Smatthias.ringwald                 return;
4627856c818Smatthias.ringwald             }
4637856c818Smatthias.ringwald 
4647856c818Smatthias.ringwald             // append fragment payload (header already stored)
4657856c818Smatthias.ringwald             memcpy(&conn->acl_recombination_buffer[conn->acl_recombination_pos], &packet[4], acl_length );
4667856c818Smatthias.ringwald             conn->acl_recombination_pos += acl_length;
4677856c818Smatthias.ringwald 
4689da54300S[email protected]             // log_error( "ACL Cont Fragment: acl_len %u, combined_len %u, l2cap_len %u", acl_length,
469decc01a8Smatthias.ringwald             //        conn->acl_recombination_pos, conn->acl_recombination_length);
4707856c818Smatthias.ringwald 
4717856c818Smatthias.ringwald             // forward complete L2CAP packet if complete.
4727856c818Smatthias.ringwald             if (conn->acl_recombination_pos >= conn->acl_recombination_length + 4 + 4){ // pos already incl. ACL header
4737856c818Smatthias.ringwald 
4743a9fb326S[email protected]                 hci_stack->packet_handler(HCI_ACL_DATA_PACKET, conn->acl_recombination_buffer, conn->acl_recombination_pos);
4757856c818Smatthias.ringwald                 // reset recombination buffer
4767856c818Smatthias.ringwald                 conn->acl_recombination_length = 0;
4777856c818Smatthias.ringwald                 conn->acl_recombination_pos = 0;
4787856c818Smatthias.ringwald             }
4797856c818Smatthias.ringwald             break;
4807856c818Smatthias.ringwald 
4817856c818Smatthias.ringwald         case 0x02: { // first fragment
4827856c818Smatthias.ringwald 
4837856c818Smatthias.ringwald             // sanity check
4847856c818Smatthias.ringwald             if (conn->acl_recombination_pos) {
4859da54300S[email protected]                 log_error( "ACL First Fragment but data in buffer for handle 0x%02x", con_handle);
4867856c818Smatthias.ringwald                 return;
4877856c818Smatthias.ringwald             }
4887856c818Smatthias.ringwald 
4897856c818Smatthias.ringwald             // peek into L2CAP packet!
4907856c818Smatthias.ringwald             uint16_t l2cap_length = READ_L2CAP_LENGTH( packet );
4917856c818Smatthias.ringwald 
4929da54300S[email protected]             // log_info( "ACL First Fragment: acl_len %u, l2cap_len %u", acl_length, l2cap_length);
493decc01a8Smatthias.ringwald 
4947856c818Smatthias.ringwald             // compare fragment size to L2CAP packet size
4957856c818Smatthias.ringwald             if (acl_length >= l2cap_length + 4){
4967856c818Smatthias.ringwald 
4977856c818Smatthias.ringwald                 // forward fragment as L2CAP packet
4983a9fb326S[email protected]                 hci_stack->packet_handler(HCI_ACL_DATA_PACKET, packet, acl_length + 4);
4997856c818Smatthias.ringwald 
5007856c818Smatthias.ringwald             } else {
5017856c818Smatthias.ringwald                 // store first fragment and tweak acl length for complete package
5027856c818Smatthias.ringwald                 memcpy(conn->acl_recombination_buffer, packet, acl_length + 4);
5037856c818Smatthias.ringwald                 conn->acl_recombination_pos    = acl_length + 4;
5047856c818Smatthias.ringwald                 conn->acl_recombination_length = l2cap_length;
505decc01a8Smatthias.ringwald                 bt_store_16(conn->acl_recombination_buffer, 2, l2cap_length +4);
5067856c818Smatthias.ringwald             }
5077856c818Smatthias.ringwald             break;
5087856c818Smatthias.ringwald 
5097856c818Smatthias.ringwald         }
5107856c818Smatthias.ringwald         default:
5119da54300S[email protected]             log_error( "hci.c: acl_handler called with invalid packet boundary flags %u", acl_flags & 0x03);
5127856c818Smatthias.ringwald             return;
5137856c818Smatthias.ringwald     }
51494ab26f8Smatthias.ringwald 
51594ab26f8Smatthias.ringwald     // execute main loop
51694ab26f8Smatthias.ringwald     hci_run();
51716833f0aSmatthias.ringwald }
51822909952Smatthias.ringwald 
51967a3e8ecSmatthias.ringwald static void hci_shutdown_connection(hci_connection_t *conn){
5209da54300S[email protected]     log_info("Connection closed: handle 0x%x, %s", conn->con_handle, bd_addr_to_str(conn->address));
5213c4d4b90Smatthias.ringwald 
522c7e0c5f6Smatthias.ringwald     run_loop_remove_timer(&conn->timeout);
523c785ef68Smatthias.ringwald 
5243a9fb326S[email protected]     linked_list_remove(&hci_stack->connections, (linked_item_t *) conn);
525a3b02b71Smatthias.ringwald     btstack_memory_hci_connection_free( conn );
5263c4d4b90Smatthias.ringwald 
5273c4d4b90Smatthias.ringwald     // now it's gone
528c7e0c5f6Smatthias.ringwald     hci_emit_nr_connections_changed();
529c7e0c5f6Smatthias.ringwald }
530c7e0c5f6Smatthias.ringwald 
5310c042179S[email protected] static const uint16_t packet_type_sizes[] = {
5328f8108aaSmatthias.ringwald     0, HCI_ACL_2DH1_SIZE, HCI_ACL_3DH1_SIZE, HCI_ACL_DM1_SIZE,
5338f8108aaSmatthias.ringwald     HCI_ACL_DH1_SIZE, 0, 0, 0,
5348f8108aaSmatthias.ringwald     HCI_ACL_2DH3_SIZE, HCI_ACL_3DH3_SIZE, HCI_ACL_DM3_SIZE, HCI_ACL_DH3_SIZE,
5358f8108aaSmatthias.ringwald     HCI_ACL_2DH5_SIZE, HCI_ACL_3DH5_SIZE, HCI_ACL_DM5_SIZE, HCI_ACL_DH5_SIZE
5368f8108aaSmatthias.ringwald };
53765389bfcS[email protected] static const uint8_t  packet_type_feature_requirement_bit[] = {
53865389bfcS[email protected]      0, // 3 slot packets
53965389bfcS[email protected]      1, // 5 slot packets
54065389bfcS[email protected]     25, // EDR 2 mpbs
54165389bfcS[email protected]     26, // EDR 3 mbps
54265389bfcS[email protected]     39, // 3 slot EDR packts
54365389bfcS[email protected]     40, // 5 slot EDR packet
54465389bfcS[email protected] };
54565389bfcS[email protected] static const uint16_t packet_type_feature_packet_mask[] = {
54665389bfcS[email protected]     0x0f00, // 3 slot packets
54765389bfcS[email protected]     0xf000, // 5 slot packets
54865389bfcS[email protected]     0x1102, // EDR 2 mpbs
54965389bfcS[email protected]     0x2204, // EDR 3 mbps
55065389bfcS[email protected]     0x0300, // 3 slot EDR packts
55165389bfcS[email protected]     0x3000, // 5 slot EDR packet
55265389bfcS[email protected] };
5538f8108aaSmatthias.ringwald 
55465389bfcS[email protected] static uint16_t hci_acl_packet_types_for_buffer_size_and_local_features(uint16_t buffer_size, uint8_t * local_supported_features){
55565389bfcS[email protected]     // enable packet types based on size
5568f8108aaSmatthias.ringwald     uint16_t packet_types = 0;
5578f8108aaSmatthias.ringwald     int i;
5588f8108aaSmatthias.ringwald     for (i=0;i<16;i++){
5598f8108aaSmatthias.ringwald         if (packet_type_sizes[i] == 0) continue;
5608f8108aaSmatthias.ringwald         if (packet_type_sizes[i] <= buffer_size){
5618f8108aaSmatthias.ringwald             packet_types |= 1 << i;
5628f8108aaSmatthias.ringwald         }
5638f8108aaSmatthias.ringwald     }
56465389bfcS[email protected]     // disable packet types due to missing local supported features
56565389bfcS[email protected]     for (i=0;i<sizeof(packet_type_feature_requirement_bit);i++){
56665389bfcS[email protected]         int bit_idx = packet_type_feature_requirement_bit[i];
56765389bfcS[email protected]         int feature_set = (local_supported_features[bit_idx >> 3] & (1<<(bit_idx & 7))) != 0;
56865389bfcS[email protected]         if (feature_set) continue;
56965389bfcS[email protected]         log_info("Features bit %02u is not set, removing packet types 0x%04x", bit_idx, packet_type_feature_packet_mask[i]);
57065389bfcS[email protected]         packet_types &= ~packet_type_feature_packet_mask[i];
57165389bfcS[email protected]     }
5728f8108aaSmatthias.ringwald     // flip bits for "may not be used"
5738f8108aaSmatthias.ringwald     packet_types ^= 0x3306;
5748f8108aaSmatthias.ringwald     return packet_types;
5758f8108aaSmatthias.ringwald }
5768f8108aaSmatthias.ringwald 
5778f8108aaSmatthias.ringwald uint16_t hci_usable_acl_packet_types(void){
5783a9fb326S[email protected]     return hci_stack->packet_types;
5798f8108aaSmatthias.ringwald }
5808f8108aaSmatthias.ringwald 
581facf93fdS[email protected] uint8_t* hci_get_outgoing_packet_buffer(void){
5827dc17943Smatthias.ringwald     // hci packet buffer is >= acl data packet length
5833a9fb326S[email protected]     return hci_stack->hci_packet_buffer;
5847dc17943Smatthias.ringwald }
5857dc17943Smatthias.ringwald 
586f5d8d141S[email protected] uint16_t hci_max_acl_data_packet_length(void){
5873a9fb326S[email protected]     return hci_stack->acl_data_packet_length;
5887dc17943Smatthias.ringwald }
5897dc17943Smatthias.ringwald 
5906ac9a97eS[email protected] int hci_non_flushable_packet_boundary_flag_supported(void){
5916ac9a97eS[email protected]     // No. 54, byte 6, bit 6
5926ac9a97eS[email protected]     return (hci_stack->local_supported_features[6] & (1 << 6)) != 0;
5936ac9a97eS[email protected] }
5946ac9a97eS[email protected] 
595f5d8d141S[email protected] int hci_ssp_supported(void){
5966ac9a97eS[email protected]     // No. 51, byte 6, bit 3
5973a9fb326S[email protected]     return (hci_stack->local_supported_features[6] & (1 << 3)) != 0;
598f5d8d141S[email protected] }
599f5d8d141S[email protected] 
600f5d8d141S[email protected] int hci_classic_supported(void){
6016ac9a97eS[email protected]     // No. 37, byte 4, bit 5, = No BR/EDR Support
6023a9fb326S[email protected]     return (hci_stack->local_supported_features[4] & (1 << 5)) == 0;
603f5d8d141S[email protected] }
604f5d8d141S[email protected] 
605f5d8d141S[email protected] int hci_le_supported(void){
606f5d8d141S[email protected] #ifdef HAVE_BLE
6076ac9a97eS[email protected]     // No. 37, byte 4, bit 6 = LE Supported (Controller)
6083a9fb326S[email protected]     return (hci_stack->local_supported_features[4] & (1 << 6)) != 0;
609f5d8d141S[email protected] #else
610f5d8d141S[email protected]     return 0;
611f5d8d141S[email protected] #endif
612f5d8d141S[email protected] }
613f5d8d141S[email protected] 
61469a97523S[email protected] // get addr type and address used in advertisement packets
61518904abdS[email protected] void hci_le_advertisement_address(uint8_t * addr_type, bd_addr_t * addr){
6163a9fb326S[email protected]     *addr_type = hci_stack->adv_addr_type;
6173a9fb326S[email protected]     if (hci_stack->adv_addr_type){
6183a9fb326S[email protected]         memcpy(addr, hci_stack->adv_address, 6);
61969a97523S[email protected]     } else {
6203a9fb326S[email protected]         memcpy(addr, hci_stack->local_bd_addr, 6);
62169a97523S[email protected]     }
62269a97523S[email protected] }
62369a97523S[email protected] 
624b2f949feS[email protected] #ifdef HAVE_BLE
625e01fe8b6S[email protected] void le_handle_advertisement_report(uint8_t *packet, int size){
626d1dc057bS[email protected]     int offset = 3;
627d1dc057bS[email protected]     int num_reports = packet[offset];
628d1dc057bS[email protected]     offset += 1;
629d1dc057bS[email protected] 
63057c9da5bS[email protected]     int i;
6314f4b43f3S[email protected]     log_info("HCI: handle adv report with num reports: %d", num_reports);
63257c9da5bS[email protected]     for (i=0; i<num_reports;i++){
633*210c6774S[email protected]         uint8_t data_length = packet[offset + 8];
6342b552b23S[email protected]         uint8_t event_size = 10 + data_length;
6352b552b23S[email protected]         uint8_t event[2 + event_size ];
636d1dc057bS[email protected]         int pos = 0;
6372b552b23S[email protected]         event[pos++] = GAP_LE_ADVERTISING_REPORT;
63857c9da5bS[email protected]         event[pos++] = event_size;
639*210c6774S[email protected]         memcpy(&event[pos], &packet[offset], 1+1+6); // event type + address type + address
640d1dc057bS[email protected]         offset += 8;
641d1dc057bS[email protected]         pos += 8;
642d1dc057bS[email protected]         event[pos++] = packet[offset + 1 + data_length]; // rssi
643d1dc057bS[email protected]         event[pos++] = packet[offset++]; //data_length;
644d1dc057bS[email protected]         memcpy(&event[pos], &packet[offset], data_length);
64557c9da5bS[email protected]         pos += data_length;
646d1dc057bS[email protected]         offset += data_length + 1; // rssi
6474f4b43f3S[email protected]         hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
64857c9da5bS[email protected]         hci_stack->packet_handler(HCI_EVENT_PACKET, event, sizeof(event));
64957c9da5bS[email protected]     }
65057c9da5bS[email protected] }
651b2f949feS[email protected] #endif
65257c9da5bS[email protected] 
6536155b3d3S[email protected] static void hci_initializing_event_handler(uint8_t * packet, uint16_t size){
654a2481739S[email protected]     uint8_t command_completed = 0;
655a2481739S[email protected]     if ((hci_stack->substate % 2) == 0) return;
6566155b3d3S[email protected]     // odd: waiting for event
6576155b3d3S[email protected]     if (packet[0] == HCI_EVENT_COMMAND_COMPLETE){
6586155b3d3S[email protected]         uint16_t opcode = READ_BT_16(packet,3);
6596155b3d3S[email protected]         if (opcode == hci_stack->last_cmd_opcode){
660a2481739S[email protected]             command_completed = 1;
6616155b3d3S[email protected]             log_info("Command complete for expected opcode %04x -> new substate %u", opcode, hci_stack->substate);
6626155b3d3S[email protected]         } else {
6636155b3d3S[email protected]             log_info("Command complete for opcode %04x, expected %04x", opcode, hci_stack->last_cmd_opcode);
6646155b3d3S[email protected]         }
6656155b3d3S[email protected]     }
6666155b3d3S[email protected]     if (packet[0] == HCI_EVENT_COMMAND_STATUS){
6676155b3d3S[email protected]         uint8_t  status = packet[2];
6686155b3d3S[email protected]         uint16_t opcode = READ_BT_16(packet,4);
6696155b3d3S[email protected]         if (opcode == hci_stack->last_cmd_opcode){
6706155b3d3S[email protected]             if (status){
671a2481739S[email protected]                 command_completed = 1;
6726155b3d3S[email protected]                 log_error("Command status error 0x%02x for expected opcode %04x -> new substate %u", status, opcode, hci_stack->substate);
6736155b3d3S[email protected]             } else {
6746155b3d3S[email protected]                 log_info("Command status OK for expected opcode %04x, waiting for command complete", opcode);
6756155b3d3S[email protected]             }
6766155b3d3S[email protected]         } else {
6776155b3d3S[email protected]             log_info("Command status for opcode %04x, expected %04x", opcode, hci_stack->last_cmd_opcode);
6786155b3d3S[email protected]         }
6796155b3d3S[email protected]     }
680a2481739S[email protected] 
681a2481739S[email protected]     if (!command_completed) return;
682a2481739S[email protected] 
683a2481739S[email protected]     switch(hci_stack->substate >> 1){
684a2481739S[email protected]         default:
685a2481739S[email protected]             hci_stack->substate++;
686a2481739S[email protected]             break;
6876155b3d3S[email protected]     }
6886155b3d3S[email protected] }
6896155b3d3S[email protected] 
6906155b3d3S[email protected] static void hci_initializing_state_machine(){
6919da54300S[email protected]         // log_info("hci_init: substate %u", hci_stack->substate);
6926155b3d3S[email protected]     if (hci_stack->substate % 2) {
6936155b3d3S[email protected]         // odd: waiting for command completion
6946155b3d3S[email protected]         return;
6956155b3d3S[email protected]     }
6966155b3d3S[email protected]     switch (hci_stack->substate >> 1){
6976155b3d3S[email protected]         case 0: // RESET
6986155b3d3S[email protected]             hci_state_reset();
6996155b3d3S[email protected] 
7006155b3d3S[email protected]             hci_send_cmd(&hci_reset);
7016155b3d3S[email protected]             if (hci_stack->config == NULL || ((hci_uart_config_t *)hci_stack->config)->baudrate_main == 0){
7026155b3d3S[email protected]                 // skip baud change
7036155b3d3S[email protected]                 hci_stack->substate = 4; // >> 1 = 2
7046155b3d3S[email protected]             }
7056155b3d3S[email protected]             break;
7066155b3d3S[email protected]         case 1: // SEND BAUD CHANGE
7076155b3d3S[email protected]             hci_stack->control->baudrate_cmd(hci_stack->config, ((hci_uart_config_t *)hci_stack->config)->baudrate_main, hci_stack->hci_packet_buffer);
70888789c61Smatthias.ringwald             hci_stack->last_cmd_opcode = READ_BT_16(hci_stack->hci_packet_buffer, 0);
7096155b3d3S[email protected]             hci_send_cmd_packet(hci_stack->hci_packet_buffer, 3 + hci_stack->hci_packet_buffer[2]);
7106155b3d3S[email protected]             break;
7116155b3d3S[email protected]         case 2: // LOCAL BAUD CHANGE
7126155b3d3S[email protected]             log_info("Local baud rate change");
7136155b3d3S[email protected]             hci_stack->hci_transport->set_baudrate(((hci_uart_config_t *)hci_stack->config)->baudrate_main);
7146155b3d3S[email protected]             hci_stack->substate += 2;
7156155b3d3S[email protected]             // break missing here for fall through
7166155b3d3S[email protected] 
7176155b3d3S[email protected]         case 3:
7186155b3d3S[email protected]             log_info("Custom init");
7196155b3d3S[email protected]             // Custom initialization
7206155b3d3S[email protected]             if (hci_stack->control && hci_stack->control->next_cmd){
7216155b3d3S[email protected]                 int valid_cmd = (*hci_stack->control->next_cmd)(hci_stack->config, hci_stack->hci_packet_buffer);
7226155b3d3S[email protected]                 if (valid_cmd){
7236155b3d3S[email protected]                     int size = 3 + hci_stack->hci_packet_buffer[2];
7246155b3d3S[email protected]                     hci_stack->last_cmd_opcode = READ_BT_16(hci_stack->hci_packet_buffer, 0);
7256155b3d3S[email protected]                     hci_stack->hci_transport->send_packet(HCI_COMMAND_DATA_PACKET, hci_stack->hci_packet_buffer, size);
7266155b3d3S[email protected]                     hci_stack->substate = 4; // more init commands
7276155b3d3S[email protected]                     break;
7286155b3d3S[email protected]                 }
7299da54300S[email protected]                 log_info("hci_run: init script done");
7306155b3d3S[email protected]             }
7316155b3d3S[email protected]             // otherwise continue
7326155b3d3S[email protected]             hci_send_cmd(&hci_read_bd_addr);
7336155b3d3S[email protected]             break;
7346155b3d3S[email protected]         case 4:
7356155b3d3S[email protected]             hci_send_cmd(&hci_read_buffer_size);
7366155b3d3S[email protected]             break;
7376155b3d3S[email protected]         case 5:
7386155b3d3S[email protected]             hci_send_cmd(&hci_read_local_supported_features);
7396155b3d3S[email protected]             break;
7406155b3d3S[email protected]         case 6:
7416155b3d3S[email protected]             if (hci_le_supported()){
7426155b3d3S[email protected]                 hci_send_cmd(&hci_set_event_mask,0xffffffff, 0x3FFFFFFF);
7436155b3d3S[email protected]             } else {
7446155b3d3S[email protected]                 // Kensington Bluetoot 2.1 USB Dongle (CSR Chipset) returns an error for 0xffff...
7456155b3d3S[email protected]                 hci_send_cmd(&hci_set_event_mask,0xffffffff, 0x1FFFFFFF);
7466155b3d3S[email protected]             }
7476155b3d3S[email protected] 
7486155b3d3S[email protected]             // skip Classic init commands for LE only chipsets
7496155b3d3S[email protected]             if (!hci_classic_supported()){
7506155b3d3S[email protected]                 if (hci_le_supported()){
7516155b3d3S[email protected]                     hci_stack->substate = 11 << 1;    // skip all classic command
7526155b3d3S[email protected]                 } else {
7536155b3d3S[email protected]                     log_error("Neither BR/EDR nor LE supported");
7546155b3d3S[email protected]                     hci_stack->substate = 14 << 1;    // skip all
7556155b3d3S[email protected]                 }
7566155b3d3S[email protected]             }
7576155b3d3S[email protected]             break;
7586155b3d3S[email protected]         case 7:
7596155b3d3S[email protected]             if (hci_ssp_supported()){
7606155b3d3S[email protected]                 hci_send_cmd(&hci_write_simple_pairing_mode, hci_stack->ssp_enable);
7616155b3d3S[email protected]                 break;
7626155b3d3S[email protected]             }
7636155b3d3S[email protected]             hci_stack->substate += 2;
7646155b3d3S[email protected]             // break missing here for fall through
7656155b3d3S[email protected] 
7666155b3d3S[email protected]         case 8:
7676155b3d3S[email protected]             // ca. 15 sec
7686155b3d3S[email protected]             hci_send_cmd(&hci_write_page_timeout, 0x6000);
7696155b3d3S[email protected]             break;
7706155b3d3S[email protected]         case 9:
7716155b3d3S[email protected]             hci_send_cmd(&hci_write_class_of_device, hci_stack->class_of_device);
7726155b3d3S[email protected]             break;
7736155b3d3S[email protected]         case 10:
7746155b3d3S[email protected]             if (hci_stack->local_name){
7756155b3d3S[email protected]                 hci_send_cmd(&hci_write_local_name, hci_stack->local_name);
7766155b3d3S[email protected]             } else {
7776155b3d3S[email protected]                 char hostname[30];
7786155b3d3S[email protected] #ifdef EMBEDDED
7796155b3d3S[email protected]                 // BTstack-11:22:33:44:55:66
7806155b3d3S[email protected]                 strcpy(hostname, "BTstack ");
7816155b3d3S[email protected]                 strcat(hostname, bd_addr_to_str(hci_stack->local_bd_addr));
7826155b3d3S[email protected]                 log_info("---> Name %s", hostname);
7836155b3d3S[email protected] #else
7846155b3d3S[email protected]                 // hostname for POSIX systems
7856155b3d3S[email protected]                 gethostname(hostname, 30);
7866155b3d3S[email protected]                 hostname[29] = '\0';
7876155b3d3S[email protected] #endif
7886155b3d3S[email protected]                 hci_send_cmd(&hci_write_local_name, hostname);
7896155b3d3S[email protected]             }
7906155b3d3S[email protected]             break;
7916155b3d3S[email protected]         case 11:
7926155b3d3S[email protected]             hci_send_cmd(&hci_write_scan_enable, (hci_stack->connectable << 1) | hci_stack->discoverable); // page scan
7936155b3d3S[email protected]             if (!hci_le_supported()){
7946155b3d3S[email protected]                 // SKIP LE init for Classic only configuration
7956155b3d3S[email protected]                 hci_stack->substate = 14 << 1;
7966155b3d3S[email protected]             }
7976155b3d3S[email protected]             break;
7986155b3d3S[email protected] 
7996155b3d3S[email protected] #ifdef HAVE_BLE
8006155b3d3S[email protected]         // LE INIT
8016155b3d3S[email protected]         case 12:
8026155b3d3S[email protected]             hci_send_cmd(&hci_le_read_buffer_size);
8036155b3d3S[email protected]             break;
8046155b3d3S[email protected]         case 13:
8056155b3d3S[email protected]             // LE Supported Host = 1, Simultaneous Host = 0
8066155b3d3S[email protected]             hci_send_cmd(&hci_write_le_host_supported, 1, 0);
8076155b3d3S[email protected]             break;
8086155b3d3S[email protected]         case 14:
8096155b3d3S[email protected]             // LE Scan Parameters: active scanning, 300 ms interval, 30 ms window, public address, accept all advs
8106155b3d3S[email protected]             hci_send_cmd(&hci_le_set_scan_parameters, 1, 0x1e0, 0x30, 0, 0);
8116155b3d3S[email protected]             break;
8126155b3d3S[email protected] #endif
8136155b3d3S[email protected] 
8146155b3d3S[email protected]         // DONE
8156155b3d3S[email protected]         case 15:
8166155b3d3S[email protected]             // done.
8176155b3d3S[email protected]             hci_stack->state = HCI_STATE_WORKING;
8186155b3d3S[email protected]             hci_emit_state();
8196155b3d3S[email protected]             break;
8206155b3d3S[email protected]         default:
8216155b3d3S[email protected]             break;
8226155b3d3S[email protected]     }
8236155b3d3S[email protected]     hci_stack->substate++;
8246155b3d3S[email protected] }
8256155b3d3S[email protected] 
82674ec757aSmatthias.ringwald // avoid huge local variables
827223aafc1Smatthias.ringwald #ifndef EMBEDDED
82874ec757aSmatthias.ringwald static device_name_t device_name;
829223aafc1Smatthias.ringwald #endif
83016833f0aSmatthias.ringwald static void event_handler(uint8_t *packet, int size){
831e76a89eeS[email protected] 
832e76a89eeS[email protected]     uint16_t event_length = packet[1];
833e76a89eeS[email protected] 
834e76a89eeS[email protected]     // assert packet is complete
835e76a89eeS[email protected]     if (size != event_length + 2){
836e76a89eeS[email protected]         log_error("hci.c: event_handler called with event packet of wrong size %u, expected %u => dropping packet", size, event_length + 2);
837e76a89eeS[email protected]         return;
838e76a89eeS[email protected]     }
839e76a89eeS[email protected] 
8401281a47eSmatthias.ringwald     bd_addr_t addr;
84196a45072S[email protected]     bd_addr_type_t addr_type;
8422d00edd4Smatthias.ringwald     uint8_t link_type;
843fe1ed1b8Smatthias.ringwald     hci_con_handle_t handle;
8441f7b95a1Smatthias.ringwald     hci_connection_t * conn;
84556cf178bSmatthias.ringwald     int i;
84622909952Smatthias.ringwald 
8479da54300S[email protected]     // log_info("HCI:EVENT:%02x", packet[0]);
8485909f7f2Smatthias.ringwald 
8496772a24cSmatthias.ringwald     switch (packet[0]) {
85022909952Smatthias.ringwald 
8516772a24cSmatthias.ringwald         case HCI_EVENT_COMMAND_COMPLETE:
8527ec5eeaaSmatthias.ringwald             // get num cmd packets
8539da54300S[email protected]             // log_info("HCI_EVENT_COMMAND_COMPLETE cmds old %u - new %u", hci_stack->num_cmd_packets, packet[2]);
8543a9fb326S[email protected]             hci_stack->num_cmd_packets = packet[2];
8557ec5eeaaSmatthias.ringwald 
856e2edc0c3Smatthias.ringwald             if (COMMAND_COMPLETE_EVENT(packet, hci_read_buffer_size)){
857e2edc0c3Smatthias.ringwald                 // from offset 5
858e2edc0c3Smatthias.ringwald                 // status
8591d279b20Smatthias.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"
8603a9fb326S[email protected]                 hci_stack->acl_data_packet_length = READ_BT_16(packet, 6);
86156cf178bSmatthias.ringwald                 // ignore: SCO data packet len (8)
862ee303eddS[email protected]                 hci_stack->acl_packets_total_num  = packet[9];
86356cf178bSmatthias.ringwald                 // ignore: total num SCO packets
8643a9fb326S[email protected]                 if (hci_stack->state == HCI_STATE_INITIALIZING){
865a7a04bd9Smatthias.ringwald                     // determine usable ACL payload size
8663a9fb326S[email protected]                     if (HCI_ACL_PAYLOAD_SIZE < hci_stack->acl_data_packet_length){
8673a9fb326S[email protected]                         hci_stack->acl_data_packet_length = HCI_ACL_PAYLOAD_SIZE;
8688f8108aaSmatthias.ringwald                     }
8699da54300S[email protected]                     log_info("hci_read_buffer_size: used size %u, count %u",
870ee303eddS[email protected]                              hci_stack->acl_data_packet_length, hci_stack->acl_packets_total_num);
871e2edc0c3Smatthias.ringwald                 }
87256cf178bSmatthias.ringwald             }
87365a46ef3S[email protected] #ifdef HAVE_BLE
87465a46ef3S[email protected]             if (COMMAND_COMPLETE_EVENT(packet, hci_le_read_buffer_size)){
875219eea5fS[email protected]                 hci_stack->le_data_packets_length = READ_BT_16(packet, 6);
876ee303eddS[email protected]                 hci_stack->le_acl_packets_total_num  = packet[8];
8779da54300S[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);
87865a46ef3S[email protected]             }
87965a46ef3S[email protected] #endif
880188981d2Smatthias.ringwald             // Dump local address
881188981d2Smatthias.ringwald             if (COMMAND_COMPLETE_EVENT(packet, hci_read_bd_addr)) {
8823a9fb326S[email protected]                 bt_flip_addr(hci_stack->local_bd_addr, &packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE + 1]);
8839da54300S[email protected]                 log_info("Local Address, Status: 0x%02x: Addr: %s",
8843a9fb326S[email protected]                     packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE], bd_addr_to_str(hci_stack->local_bd_addr));
885188981d2Smatthias.ringwald             }
886381fbed8Smatthias.ringwald             if (COMMAND_COMPLETE_EVENT(packet, hci_write_scan_enable)){
8873a9fb326S[email protected]                 hci_emit_discoverable_enabled(hci_stack->discoverable);
888381fbed8Smatthias.ringwald             }
88965389bfcS[email protected]             // Note: HCI init checks
890559e517eS[email protected]             if (COMMAND_COMPLETE_EVENT(packet, hci_read_local_supported_features)){
8913a9fb326S[email protected]                 memcpy(hci_stack->local_supported_features, &packet[OFFSET_OF_DATA_IN_COMMAND_COMPLETE+1], 8);
892559e517eS[email protected]                 log_info("Local Supported Features: 0x%02x%02x%02x%02x%02x%02x%02x%02x",
8933a9fb326S[email protected]                     hci_stack->local_supported_features[0], hci_stack->local_supported_features[1],
8943a9fb326S[email protected]                     hci_stack->local_supported_features[2], hci_stack->local_supported_features[3],
8953a9fb326S[email protected]                     hci_stack->local_supported_features[4], hci_stack->local_supported_features[5],
8963a9fb326S[email protected]                     hci_stack->local_supported_features[6], hci_stack->local_supported_features[7]);
89765389bfcS[email protected] 
89865389bfcS[email protected]                 // determine usable ACL packet types based buffer size and supported features
8993a9fb326S[email protected]                 hci_stack->packet_types = hci_acl_packet_types_for_buffer_size_and_local_features(hci_stack->acl_data_packet_length, &hci_stack->local_supported_features[0]);
9003a9fb326S[email protected]                 log_info("packet types %04x", hci_stack->packet_types);
901f5d8d141S[email protected] 
902f5d8d141S[email protected]                 // Classic/LE
903f5d8d141S[email protected]                 log_info("BR/EDR support %u, LE support %u", hci_classic_supported(), hci_le_supported());
904559e517eS[email protected]             }
90556cf178bSmatthias.ringwald             break;
90656cf178bSmatthias.ringwald 
9077ec5eeaaSmatthias.ringwald         case HCI_EVENT_COMMAND_STATUS:
9087ec5eeaaSmatthias.ringwald             // get num cmd packets
9099da54300S[email protected]             // log_info("HCI_EVENT_COMMAND_STATUS cmds - old %u - new %u", hci_stack->num_cmd_packets, packet[3]);
9103a9fb326S[email protected]             hci_stack->num_cmd_packets = packet[3];
9117ec5eeaaSmatthias.ringwald             break;
9127ec5eeaaSmatthias.ringwald 
9132e440c8aS[email protected]         case HCI_EVENT_NUMBER_OF_COMPLETED_PACKETS:{
9142e440c8aS[email protected]             int offset = 3;
91556cf178bSmatthias.ringwald             for (i=0; i<packet[2];i++){
9162e440c8aS[email protected]                 handle = READ_BT_16(packet, offset);
9172e440c8aS[email protected]                 offset += 2;
9182e440c8aS[email protected]                 uint16_t num_packets = READ_BT_16(packet, offset);
9192e440c8aS[email protected]                 offset += 2;
9202e440c8aS[email protected] 
9215061f3afS[email protected]                 conn = hci_connection_for_handle(handle);
92256cf178bSmatthias.ringwald                 if (!conn){
9239da54300S[email protected]                     log_error("hci_number_completed_packet lists unused con handle %u", handle);
92456cf178bSmatthias.ringwald                     continue;
92556cf178bSmatthias.ringwald                 }
92623bed257S[email protected] 
92723bed257S[email protected]                 if (conn->num_acl_packets_sent >= num_packets){
92856cf178bSmatthias.ringwald                     conn->num_acl_packets_sent -= num_packets;
92923bed257S[email protected]                 } else {
93023bed257S[email protected]                     log_error("hci_number_completed_packets, more slots freed then sent.");
93123bed257S[email protected]                     conn->num_acl_packets_sent = 0;
93223bed257S[email protected]                 }
9339da54300S[email protected]                 // log_info("hci_number_completed_packet %u processed for handle %u, outstanding %u", num_packets, handle, conn->num_acl_packets_sent);
93456cf178bSmatthias.ringwald             }
9356772a24cSmatthias.ringwald             break;
9362e440c8aS[email protected]         }
9371f7b95a1Smatthias.ringwald         case HCI_EVENT_CONNECTION_REQUEST:
93837eaa4cfSmatthias.ringwald             bt_flip_addr(addr, &packet[2]);
93937eaa4cfSmatthias.ringwald             // TODO: eval COD 8-10
9402d00edd4Smatthias.ringwald             link_type = packet[11];
9419da54300S[email protected]             log_info("Connection_incoming: %s, type %u", bd_addr_to_str(addr), link_type);
94237eaa4cfSmatthias.ringwald             if (link_type == 1) { // ACL
94396a45072S[email protected]                 conn = hci_connection_for_bd_addr_and_type(&addr, BD_ADDR_TYPE_CLASSIC);
9441f7b95a1Smatthias.ringwald                 if (!conn) {
94596a45072S[email protected]                     conn = create_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_CLASSIC);
9461f7b95a1Smatthias.ringwald                 }
947ce4c8fabSmatthias.ringwald                 if (!conn) {
948ce4c8fabSmatthias.ringwald                     // CONNECTION REJECTED DUE TO LIMITED RESOURCES (0X0D)
9493a9fb326S[email protected]                     hci_stack->decline_reason = 0x0d;
9503a9fb326S[email protected]                     BD_ADDR_COPY(hci_stack->decline_addr, addr);
951ce4c8fabSmatthias.ringwald                     break;
952ce4c8fabSmatthias.ringwald                 }
95332ab9390Smatthias.ringwald                 conn->state = RECEIVED_CONNECTION_REQUEST;
95432ab9390Smatthias.ringwald                 hci_run();
95537eaa4cfSmatthias.ringwald             } else {
956ce4c8fabSmatthias.ringwald                 // SYNCHRONOUS CONNECTION LIMIT TO A DEVICE EXCEEDED (0X0A)
9573a9fb326S[email protected]                 hci_stack->decline_reason = 0x0a;
9583a9fb326S[email protected]                 BD_ADDR_COPY(hci_stack->decline_addr, addr);
95937eaa4cfSmatthias.ringwald             }
9601f7b95a1Smatthias.ringwald             break;
9611f7b95a1Smatthias.ringwald 
9626772a24cSmatthias.ringwald         case HCI_EVENT_CONNECTION_COMPLETE:
963fe1ed1b8Smatthias.ringwald             // Connection management
964fe1ed1b8Smatthias.ringwald             bt_flip_addr(addr, &packet[5]);
9659da54300S[email protected]             log_info("Connection_complete (status=%u) %s", packet[2], bd_addr_to_str(addr));
96696a45072S[email protected]             addr_type = BD_ADDR_TYPE_CLASSIC;
96796a45072S[email protected]             conn = hci_connection_for_bd_addr_and_type(&addr, addr_type);
968fe1ed1b8Smatthias.ringwald             if (conn) {
969b448a0e7Smatthias.ringwald                 if (!packet[2]){
970c8e4258aSmatthias.ringwald                     conn->state = OPEN;
971fe1ed1b8Smatthias.ringwald                     conn->con_handle = READ_BT_16(packet, 3);
972ad83dc6aS[email protected]                     conn->bonding_flags |= BONDING_REQUEST_REMOTE_FEATURES;
973ee091cf1Smatthias.ringwald 
974c785ef68Smatthias.ringwald                     // restart timer
975c21e6239Smatthias.ringwald                     run_loop_set_timer(&conn->timeout, HCI_CONNECTION_TIMEOUT_MS);
976ee091cf1Smatthias.ringwald                     run_loop_add_timer(&conn->timeout);
977c785ef68Smatthias.ringwald 
9789da54300S[email protected]                     log_info("New connection: handle %u, %s", conn->con_handle, bd_addr_to_str(conn->address));
97943bfb1bdSmatthias.ringwald 
98043bfb1bdSmatthias.ringwald                     hci_emit_nr_connections_changed();
981b448a0e7Smatthias.ringwald                 } else {
9821bd5283dS[email protected]                     int notify_dedicated_bonding_failed = conn->bonding_flags & BONDING_DEDICATED;
9831bd5283dS[email protected]                     uint8_t status = packet[2];
9841bd5283dS[email protected]                     bd_addr_t bd_address;
9851bd5283dS[email protected]                     memcpy(&bd_address, conn->address, 6);
986ad83dc6aS[email protected] 
987b448a0e7Smatthias.ringwald                     // connection failed, remove entry
9883a9fb326S[email protected]                     linked_list_remove(&hci_stack->connections, (linked_item_t *) conn);
989a3b02b71Smatthias.ringwald                     btstack_memory_hci_connection_free( conn );
990c12e46e7Smatthias.ringwald 
9911bd5283dS[email protected]                     // notify client if dedicated bonding
9921bd5283dS[email protected]                     if (notify_dedicated_bonding_failed){
9931bd5283dS[email protected]                         log_info("hci notify_dedicated_bonding_failed");
9941bd5283dS[email protected]                         hci_emit_dedicated_bonding_result(bd_address, status);
9951bd5283dS[email protected]                     }
9961bd5283dS[email protected] 
997c12e46e7Smatthias.ringwald                     // if authentication error, also delete link key
998c12e46e7Smatthias.ringwald                     if (packet[2] == 0x05) {
999c12e46e7Smatthias.ringwald                         hci_drop_link_key_for_bd_addr(&addr);
1000c12e46e7Smatthias.ringwald                     }
1001fe1ed1b8Smatthias.ringwald                 }
1002fe1ed1b8Smatthias.ringwald             }
10036772a24cSmatthias.ringwald             break;
1004fe1ed1b8Smatthias.ringwald 
1005afd4e962S[email protected]         case HCI_EVENT_READ_REMOTE_SUPPORTED_FEATURES_COMPLETE:
1006afd4e962S[email protected]             handle = READ_BT_16(packet, 3);
1007afd4e962S[email protected]             conn = hci_connection_for_handle(handle);
1008afd4e962S[email protected]             if (!conn) break;
1009afd4e962S[email protected]             if (!packet[2]){
1010afd4e962S[email protected]                 uint8_t * features = &packet[5];
1011afd4e962S[email protected]                 if (features[6] & (1 << 3)){
1012afd4e962S[email protected]                     conn->bonding_flags |= BONDING_REMOTE_SUPPORTS_SSP;
1013afd4e962S[email protected]                 }
1014afd4e962S[email protected]             }
1015afd4e962S[email protected]             conn->bonding_flags |= BONDING_RECEIVED_REMOTE_FEATURES;
1016ad83dc6aS[email protected]             log_info("HCI_EVENT_READ_REMOTE_SUPPORTED_FEATURES_COMPLETE, bonding flags %x", conn->bonding_flags);
1017ad83dc6aS[email protected]             if (conn->bonding_flags & BONDING_DEDICATED){
1018ad83dc6aS[email protected]                 conn->bonding_flags |= BONDING_SEND_AUTHENTICATE_REQUEST;
1019ad83dc6aS[email protected]             }
1020afd4e962S[email protected]             break;
1021afd4e962S[email protected] 
10227fde4af9Smatthias.ringwald         case HCI_EVENT_LINK_KEY_REQUEST:
10239da54300S[email protected]             log_info("HCI_EVENT_LINK_KEY_REQUEST");
10247fde4af9Smatthias.ringwald             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], RECV_LINK_KEY_REQUEST);
102574d716b5S[email protected]             // non-bondable mode: link key negative reply will be sent by HANDLE_LINK_KEY_REQUEST
10263a9fb326S[email protected]             if (hci_stack->bondable && !hci_stack->remote_device_db) break;
102732ab9390Smatthias.ringwald             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], HANDLE_LINK_KEY_REQUEST);
102864472d52Smatthias.ringwald             hci_run();
1029d9a327f9Smatthias.ringwald             // request handled by hci_run() as HANDLE_LINK_KEY_REQUEST gets set
103029d53098Smatthias.ringwald             return;
10317fde4af9Smatthias.ringwald 
10329ab95c90S[email protected]         case HCI_EVENT_LINK_KEY_NOTIFICATION: {
103329d53098Smatthias.ringwald             bt_flip_addr(addr, &packet[2]);
103496a45072S[email protected]             conn = hci_connection_for_bd_addr_and_type(&addr, BD_ADDR_TYPE_CLASSIC);
10359ab95c90S[email protected]             if (!conn) break;
10369ab95c90S[email protected]             conn->authentication_flags |= RECV_LINK_KEY_NOTIFICATION;
10377bdc6798S[email protected]             link_key_type_t link_key_type = (link_key_type_t)packet[24];
10389ab95c90S[email protected]             // Change Connection Encryption keeps link key type
10399ab95c90S[email protected]             if (link_key_type != CHANGED_COMBINATION_KEY){
10409ab95c90S[email protected]                 conn->link_key_type = link_key_type;
10419ab95c90S[email protected]             }
10423a9fb326S[email protected]             if (!hci_stack->remote_device_db) break;
10433a9fb326S[email protected]             hci_stack->remote_device_db->put_link_key(&addr, (link_key_t *) &packet[8], conn->link_key_type);
104429d53098Smatthias.ringwald             // still forward event to allow dismiss of pairing dialog
10457fde4af9Smatthias.ringwald             break;
10469ab95c90S[email protected]         }
10477fde4af9Smatthias.ringwald 
10487fde4af9Smatthias.ringwald         case HCI_EVENT_PIN_CODE_REQUEST:
10496724cd9eS[email protected]             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], LEGACY_PAIRING_ACTIVE);
10504c57c146S[email protected]             // non-bondable mode: pin code negative reply will be sent
10513a9fb326S[email protected]             if (!hci_stack->bondable){
1052899283eaS[email protected]                 hci_add_connection_flags_for_flipped_bd_addr(&packet[2], DENY_PIN_CODE_REQUEST);
1053f8fb5f6eS[email protected]                 hci_run();
1054f8fb5f6eS[email protected]                 return;
10554c57c146S[email protected]             }
1056d9a327f9Smatthias.ringwald             // PIN CODE REQUEST means the link key request didn't succee -> delete stored link key
10573a9fb326S[email protected]             if (!hci_stack->remote_device_db) break;
1058d9a327f9Smatthias.ringwald             bt_flip_addr(addr, &packet[2]);
10593a9fb326S[email protected]             hci_stack->remote_device_db->delete_link_key(&addr);
10607fde4af9Smatthias.ringwald             break;
10617fde4af9Smatthias.ringwald 
10621d6b20aeS[email protected]         case HCI_EVENT_IO_CAPABILITY_REQUEST:
10631d6b20aeS[email protected]             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], RECV_IO_CAPABILITIES_REQUEST);
1064dbe1a790S[email protected]             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], SEND_IO_CAPABILITIES_REPLY);
1065dbe1a790S[email protected]             break;
1066dbe1a790S[email protected] 
1067dbe1a790S[email protected]         case HCI_EVENT_USER_CONFIRMATION_REQUEST:
10686724cd9eS[email protected]             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], SSP_PAIRING_ACTIVE);
10693a9fb326S[email protected]             if (!hci_stack->ssp_auto_accept) break;
1070dbe1a790S[email protected]             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], SEND_USER_CONFIRM_REPLY);
1071dbe1a790S[email protected]             break;
1072dbe1a790S[email protected] 
1073dbe1a790S[email protected]         case HCI_EVENT_USER_PASSKEY_REQUEST:
10746724cd9eS[email protected]             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], SSP_PAIRING_ACTIVE);
10753a9fb326S[email protected]             if (!hci_stack->ssp_auto_accept) break;
1076dbe1a790S[email protected]             hci_add_connection_flags_for_flipped_bd_addr(&packet[2], SEND_USER_PASSKEY_REPLY);
10771d6b20aeS[email protected]             break;
10781d6b20aeS[email protected] 
1079f0944df2S[email protected]         case HCI_EVENT_ENCRYPTION_CHANGE:
1080f0944df2S[email protected]             handle = READ_BT_16(packet, 3);
1081f0944df2S[email protected]             conn = hci_connection_for_handle(handle);
1082f0944df2S[email protected]             if (!conn) break;
1083ad83dc6aS[email protected]             if (packet[2] == 0) {
1084f0944df2S[email protected]                 if (packet[5]){
1085f0944df2S[email protected]                     conn->authentication_flags |= CONNECTION_ENCRYPTED;
1086f0944df2S[email protected]                 } else {
1087536f9994S[email protected]                     conn->authentication_flags &= ~CONNECTION_ENCRYPTED;
1088f0944df2S[email protected]                 }
1089ad83dc6aS[email protected]             }
1090a00031e2S[email protected]             hci_emit_security_level(handle, gap_security_level_for_connection(conn));
1091f0944df2S[email protected]             break;
1092f0944df2S[email protected] 
10931eb2563eS[email protected]         case HCI_EVENT_AUTHENTICATION_COMPLETE_EVENT:
10941eb2563eS[email protected]             handle = READ_BT_16(packet, 3);
10951eb2563eS[email protected]             conn = hci_connection_for_handle(handle);
10961eb2563eS[email protected]             if (!conn) break;
1097ad83dc6aS[email protected] 
1098ad83dc6aS[email protected]             // dedicated bonding: send result and disconnect
1099ad83dc6aS[email protected]             if (conn->bonding_flags & BONDING_DEDICATED){
1100ad83dc6aS[email protected]                 conn->bonding_flags &= ~BONDING_DEDICATED;
1101ad83dc6aS[email protected]                 conn->bonding_flags |= BONDING_DISCONNECT_DEDICATED_DONE;
11021bd5283dS[email protected]                 conn->bonding_status = packet[2];
1103ad83dc6aS[email protected]                 break;
1104ad83dc6aS[email protected]             }
1105ad83dc6aS[email protected] 
1106b5cb6874S[email protected]             if (packet[2] == 0 && gap_security_level_for_link_key_type(conn->link_key_type) >= conn->requested_security_level){
11071eb2563eS[email protected]                 // link key sufficient for requested security
11081eb2563eS[email protected]                 conn->bonding_flags |= BONDING_SEND_ENCRYPTION_REQUEST;
1109ad83dc6aS[email protected]                 break;
1110ad83dc6aS[email protected]             }
11111eb2563eS[email protected]             // not enough
11121eb2563eS[email protected]             hci_emit_security_level(handle, gap_security_level_for_connection(conn));
11131eb2563eS[email protected]             break;
111434d2123cS[email protected] 
1115223aafc1Smatthias.ringwald #ifndef EMBEDDED
111674ec757aSmatthias.ringwald         case HCI_EVENT_REMOTE_NAME_REQUEST_COMPLETE:
11173a9fb326S[email protected]             if (!hci_stack->remote_device_db) break;
111874ec757aSmatthias.ringwald             if (packet[2]) break; // status not ok
111974ec757aSmatthias.ringwald             bt_flip_addr(addr, &packet[3]);
11205a06394aSmatthias.ringwald             // fix for invalid remote names - terminate on 0xff
11215a06394aSmatthias.ringwald             for (i=0; i<248;i++){
11225a06394aSmatthias.ringwald                 if (packet[9+i] == 0xff){
11235a06394aSmatthias.ringwald                     packet[9+i] = 0;
11245a06394aSmatthias.ringwald                     break;
1125cdc9101dSmatthias.ringwald                 }
11265a06394aSmatthias.ringwald             }
1127d2fe945cS[email protected]             memset(&device_name, 0, sizeof(device_name_t));
112874ec757aSmatthias.ringwald             strncpy((char*) device_name, (char*) &packet[9], 248);
11293a9fb326S[email protected]             hci_stack->remote_device_db->put_name(&addr, &device_name);
113074ec757aSmatthias.ringwald             break;
113174ec757aSmatthias.ringwald 
113274ec757aSmatthias.ringwald         case HCI_EVENT_INQUIRY_RESULT:
1133206a9031S[email protected]         case HCI_EVENT_INQUIRY_RESULT_WITH_RSSI:{
11343a9fb326S[email protected]             if (!hci_stack->remote_device_db) break;
113574ec757aSmatthias.ringwald             // first send inq result packet
11363a9fb326S[email protected]             hci_stack->packet_handler(HCI_EVENT_PACKET, packet, size);
113774ec757aSmatthias.ringwald             // then send cached remote names
1138206a9031S[email protected]             int offset = 3;
113974ec757aSmatthias.ringwald             for (i=0; i<packet[2];i++){
1140206a9031S[email protected]                 bt_flip_addr(addr, &packet[offset]);
1141206a9031S[email protected]                 offset += 14; // 6 + 1 + 1 + 1 + 3 + 2;
11423a9fb326S[email protected]                 if (hci_stack->remote_device_db->get_name(&addr, &device_name)){
114374ec757aSmatthias.ringwald                     hci_emit_remote_name_cached(&addr, &device_name);
114474ec757aSmatthias.ringwald                 }
114574ec757aSmatthias.ringwald             }
114674ec757aSmatthias.ringwald             return;
1147206a9031S[email protected]         }
1148223aafc1Smatthias.ringwald #endif
114974ec757aSmatthias.ringwald 
115086805605S[email protected]         // HCI_EVENT_DISCONNECTION_COMPLETE
115186805605S[email protected]         // has been moved down, to first notify stack before shutting connection down
11526772a24cSmatthias.ringwald 
1153c68bdf90Smatthias.ringwald         case HCI_EVENT_HARDWARE_ERROR:
11543a9fb326S[email protected]             if(hci_stack->control && hci_stack->control->hw_error){
11553a9fb326S[email protected]                 (*hci_stack->control->hw_error)();
11567586ee35S[email protected]             } else {
11577586ee35S[email protected]                 // if no special requests, just reboot stack
11587586ee35S[email protected]                 hci_power_control_off();
11597586ee35S[email protected]                 hci_power_control_on();
1160c68bdf90Smatthias.ringwald             }
1161c68bdf90Smatthias.ringwald             break;
1162c68bdf90Smatthias.ringwald 
11636b4af23dS[email protected]         case DAEMON_EVENT_HCI_PACKET_SENT:
11646b4af23dS[email protected]             // free packet buffer for asynchronous transport
11656b4af23dS[email protected]             if (hci_transport_synchronous()) break;
11666b4af23dS[email protected]             hci_stack->hci_packet_buffer_reserved = 0;
11676b4af23dS[email protected]             break;
11686b4af23dS[email protected] 
11695909f7f2Smatthias.ringwald #ifdef HAVE_BLE
11705909f7f2Smatthias.ringwald         case HCI_EVENT_LE_META:
11715909f7f2Smatthias.ringwald             switch (packet[2]){
117257c9da5bS[email protected]                 case HCI_SUBEVENT_LE_ADVERTISING_REPORT:
11739da54300S[email protected]                     log_info("advertising report received");
11747bdc6798S[email protected]                     if (hci_stack->le_scanning_state != LE_SCANNING) break;
117557c9da5bS[email protected]                     le_handle_advertisement_report(packet, size);
11767bdc6798S[email protected]                     break;
11775909f7f2Smatthias.ringwald                 case HCI_SUBEVENT_LE_CONNECTION_COMPLETE:
11785909f7f2Smatthias.ringwald                     // Connection management
11795909f7f2Smatthias.ringwald                     bt_flip_addr(addr, &packet[8]);
11807bdc6798S[email protected]                     addr_type = (bd_addr_type_t)packet[7];
11819da54300S[email protected]                     log_info("LE Connection_complete (status=%u) type %u, %s", packet[3], addr_type, bd_addr_to_str(addr));
11825909f7f2Smatthias.ringwald                     // LE connections are auto-accepted, so just create a connection if there isn't one already
118396a45072S[email protected]                     conn = hci_connection_for_bd_addr_and_type(&addr, addr_type);
11845909f7f2Smatthias.ringwald                     if (packet[3]){
11855909f7f2Smatthias.ringwald                         if (conn){
11865909f7f2Smatthias.ringwald                             // outgoing connection failed, remove entry
11873a9fb326S[email protected]                             linked_list_remove(&hci_stack->connections, (linked_item_t *) conn);
11885909f7f2Smatthias.ringwald                             btstack_memory_hci_connection_free( conn );
11895909f7f2Smatthias.ringwald                         }
11905909f7f2Smatthias.ringwald                         // if authentication error, also delete link key
11915909f7f2Smatthias.ringwald                         if (packet[3] == 0x05) {
11925909f7f2Smatthias.ringwald                             hci_drop_link_key_for_bd_addr(&addr);
11935909f7f2Smatthias.ringwald                         }
11945909f7f2Smatthias.ringwald                         break;
11955909f7f2Smatthias.ringwald                     }
11965909f7f2Smatthias.ringwald                     if (!conn){
119796a45072S[email protected]                         conn = create_connection_for_bd_addr_and_type(addr, addr_type);
11985909f7f2Smatthias.ringwald                     }
11995909f7f2Smatthias.ringwald                     if (!conn){
12005909f7f2Smatthias.ringwald                         // no memory
12015909f7f2Smatthias.ringwald                         break;
12025909f7f2Smatthias.ringwald                     }
12035909f7f2Smatthias.ringwald 
12045909f7f2Smatthias.ringwald                     conn->state = OPEN;
12055909f7f2Smatthias.ringwald                     conn->con_handle = READ_BT_16(packet, 4);
12065909f7f2Smatthias.ringwald 
12075909f7f2Smatthias.ringwald                     // TODO: store - role, peer address type, conn_interval, conn_latency, supervision timeout, master clock
12085909f7f2Smatthias.ringwald 
12095909f7f2Smatthias.ringwald                     // restart timer
12105909f7f2Smatthias.ringwald                     // run_loop_set_timer(&conn->timeout, HCI_CONNECTION_TIMEOUT_MS);
12115909f7f2Smatthias.ringwald                     // run_loop_add_timer(&conn->timeout);
12125909f7f2Smatthias.ringwald 
12139da54300S[email protected]                     log_info("New connection: handle %u, %s", conn->con_handle, bd_addr_to_str(conn->address));
12145909f7f2Smatthias.ringwald 
12155909f7f2Smatthias.ringwald                     hci_emit_nr_connections_changed();
12165909f7f2Smatthias.ringwald                     break;
12175909f7f2Smatthias.ringwald 
12189da54300S[email protected]             // log_info("LE buffer size: %u, count %u", READ_BT_16(packet,6), packet[8]);
121965a46ef3S[email protected] 
12205909f7f2Smatthias.ringwald                 default:
12215909f7f2Smatthias.ringwald                     break;
12225909f7f2Smatthias.ringwald             }
12235909f7f2Smatthias.ringwald             break;
12245909f7f2Smatthias.ringwald #endif
12256772a24cSmatthias.ringwald         default:
12266772a24cSmatthias.ringwald             break;
1227fe1ed1b8Smatthias.ringwald     }
1228fe1ed1b8Smatthias.ringwald 
12293429f56bSmatthias.ringwald     // handle BT initialization
12303a9fb326S[email protected]     if (hci_stack->state == HCI_STATE_INITIALIZING){
12316155b3d3S[email protected]         hci_initializing_event_handler(packet, size);
1232c9af4d3fS[email protected]     }
123322909952Smatthias.ringwald 
123489db417bSmatthias.ringwald     // help with BT sleep
12353a9fb326S[email protected]     if (hci_stack->state == HCI_STATE_FALLING_ASLEEP
12363a9fb326S[email protected]         && hci_stack->substate == 1
123789db417bSmatthias.ringwald         && COMMAND_COMPLETE_EVENT(packet, hci_write_scan_enable)){
12383a9fb326S[email protected]         hci_stack->substate++;
123989db417bSmatthias.ringwald     }
124089db417bSmatthias.ringwald 
124186805605S[email protected]     // notify upper stack
12423a9fb326S[email protected]     hci_stack->packet_handler(HCI_EVENT_PACKET, packet, size);
124394ab26f8Smatthias.ringwald 
124486805605S[email protected]     // moved here to give upper stack a chance to close down everything with hci_connection_t intact
124586805605S[email protected]     if (packet[0] == HCI_EVENT_DISCONNECTION_COMPLETE){
124686805605S[email protected]         if (!packet[2]){
124786805605S[email protected]             handle = READ_BT_16(packet, 3);
124886805605S[email protected]             hci_connection_t * conn = hci_connection_for_handle(handle);
124986805605S[email protected]             if (conn) {
125086805605S[email protected]                 uint8_t status = conn->bonding_status;
125186805605S[email protected]                 bd_addr_t bd_address;
125286805605S[email protected]                 memcpy(&bd_address, conn->address, 6);
125386805605S[email protected]                 hci_shutdown_connection(conn);
125486805605S[email protected]                 if (conn->bonding_flags & BONDING_EMIT_COMPLETE_ON_DISCONNECT){
125586805605S[email protected]                     hci_emit_dedicated_bonding_result(bd_address, status);
125686805605S[email protected]                 }
125786805605S[email protected]             }
125886805605S[email protected]         }
125986805605S[email protected]     }
126086805605S[email protected] 
126194ab26f8Smatthias.ringwald 	// execute main loop
126294ab26f8Smatthias.ringwald 	hci_run();
126316833f0aSmatthias.ringwald }
126416833f0aSmatthias.ringwald 
12650a57e69fSmatthias.ringwald static void packet_handler(uint8_t packet_type, uint8_t *packet, uint16_t size){
126610e830c9Smatthias.ringwald     switch (packet_type) {
126710e830c9Smatthias.ringwald         case HCI_EVENT_PACKET:
126810e830c9Smatthias.ringwald             event_handler(packet, size);
126910e830c9Smatthias.ringwald             break;
127010e830c9Smatthias.ringwald         case HCI_ACL_DATA_PACKET:
127110e830c9Smatthias.ringwald             acl_handler(packet, size);
127210e830c9Smatthias.ringwald             break;
127310e830c9Smatthias.ringwald         default:
127410e830c9Smatthias.ringwald             break;
127510e830c9Smatthias.ringwald     }
127610e830c9Smatthias.ringwald }
127710e830c9Smatthias.ringwald 
1278fcadd0caSmatthias.ringwald /** Register HCI packet handlers */
12792718e2e7Smatthias.ringwald void hci_register_packet_handler(void (*handler)(uint8_t packet_type, uint8_t *packet, uint16_t size)){
12803a9fb326S[email protected]     hci_stack->packet_handler = handler;
128116833f0aSmatthias.ringwald }
128216833f0aSmatthias.ringwald 
12836155b3d3S[email protected] static void hci_state_reset(){
1284595bdbfbS[email protected]     // no connections yet
1285595bdbfbS[email protected]     hci_stack->connections = NULL;
128674308b23Smatthias.ringwald 
128774308b23Smatthias.ringwald     // keep discoverable/connectable as this has been requested by the client(s)
128874308b23Smatthias.ringwald     // hci_stack->discoverable = 0;
128974308b23Smatthias.ringwald     // hci_stack->connectable = 0;
129074308b23Smatthias.ringwald     // hci_stack->bondable = 1;
1291595bdbfbS[email protected] 
129244935e40S[email protected]     // buffer is free
129344935e40S[email protected]     hci_stack->hci_packet_buffer_reserved = 0;
129444935e40S[email protected] 
1295595bdbfbS[email protected]     // no pending cmds
1296595bdbfbS[email protected]     hci_stack->decline_reason = 0;
1297595bdbfbS[email protected]     hci_stack->new_scan_enable_value = 0xff;
1298595bdbfbS[email protected] 
1299595bdbfbS[email protected]     // LE
1300595bdbfbS[email protected]     hci_stack->adv_addr_type = 0;
1301595bdbfbS[email protected]     memset(hci_stack->adv_address, 0, 6);
1302595bdbfbS[email protected]     hci_stack->le_scanning_state = LE_SCAN_IDLE;
1303e2602ea2Smatthias.ringwald     hci_stack->le_scan_type = 0xff;
1304595bdbfbS[email protected] }
1305595bdbfbS[email protected] 
13064f4fc1dfSmatthias.ringwald void hci_init(hci_transport_t *transport, void *config, bt_control_t *control, remote_device_db_t const* remote_device_db){
1307475c8125Smatthias.ringwald 
13083a9fb326S[email protected] #ifdef HAVE_MALLOC
13093a9fb326S[email protected]     if (!hci_stack) {
13103a9fb326S[email protected]         hci_stack = (hci_stack_t*) malloc(sizeof(hci_stack_t));
13113a9fb326S[email protected]     }
13123a9fb326S[email protected] #else
13133a9fb326S[email protected]     hci_stack = &hci_stack_static;
13143a9fb326S[email protected] #endif
131566fb9560S[email protected]     memset(hci_stack, 0, sizeof(hci_stack_t));
13163a9fb326S[email protected] 
1317475c8125Smatthias.ringwald     // reference to use transport layer implementation
13183a9fb326S[email protected]     hci_stack->hci_transport = transport;
1319475c8125Smatthias.ringwald 
132011e23e5fSmatthias.ringwald     // references to used control implementation
13213a9fb326S[email protected]     hci_stack->control = control;
132211e23e5fSmatthias.ringwald 
132311e23e5fSmatthias.ringwald     // reference to used config
13243a9fb326S[email protected]     hci_stack->config = config;
132511e23e5fSmatthias.ringwald 
132616833f0aSmatthias.ringwald     // higher level handler
13273a9fb326S[email protected]     hci_stack->packet_handler = dummy_handler;
132816833f0aSmatthias.ringwald 
1329404843c1Smatthias.ringwald     // store and open remote device db
13303a9fb326S[email protected]     hci_stack->remote_device_db = remote_device_db;
13313a9fb326S[email protected]     if (hci_stack->remote_device_db) {
13323a9fb326S[email protected]         hci_stack->remote_device_db->open();
1333404843c1Smatthias.ringwald     }
133429d53098Smatthias.ringwald 
13358fcba05dSmatthias.ringwald     // max acl payload size defined in config.h
13363a9fb326S[email protected]     hci_stack->acl_data_packet_length = HCI_ACL_PAYLOAD_SIZE;
13378fcba05dSmatthias.ringwald 
133816833f0aSmatthias.ringwald     // register packet handlers with transport
133910e830c9Smatthias.ringwald     transport->register_packet_handler(&packet_handler);
1340f5454fc6Smatthias.ringwald 
13413a9fb326S[email protected]     hci_stack->state = HCI_STATE_OFF;
1342e2386ba1S[email protected] 
1343e2386ba1S[email protected]     // class of device
13443a9fb326S[email protected]     hci_stack->class_of_device = 0x007a020c; // Smartphone
1345a45d6b9fS[email protected] 
1346f20168b8Smatthias.ringwald     // bondable by default
1347f20168b8Smatthias.ringwald     hci_stack->bondable = 1;
1348f20168b8Smatthias.ringwald 
134963048403S[email protected]     // Secure Simple Pairing default: enable, no I/O capabilities, general bonding, mitm not required, auto accept
13503a9fb326S[email protected]     hci_stack->ssp_enable = 1;
13513a9fb326S[email protected]     hci_stack->ssp_io_capability = SSP_IO_CAPABILITY_NO_INPUT_NO_OUTPUT;
13523a9fb326S[email protected]     hci_stack->ssp_authentication_requirement = SSP_IO_AUTHREQ_MITM_PROTECTION_NOT_REQUIRED_GENERAL_BONDING;
13533a9fb326S[email protected]     hci_stack->ssp_auto_accept = 1;
135469a97523S[email protected] 
1355595bdbfbS[email protected]     hci_state_reset();
1356475c8125Smatthias.ringwald }
1357475c8125Smatthias.ringwald 
1358404843c1Smatthias.ringwald void hci_close(){
1359404843c1Smatthias.ringwald     // close remote device db
13603a9fb326S[email protected]     if (hci_stack->remote_device_db) {
13613a9fb326S[email protected]         hci_stack->remote_device_db->close();
1362404843c1Smatthias.ringwald     }
13633a9fb326S[email protected]     while (hci_stack->connections) {
1364bc68afe2S[email protected]         // cancel all l2cap connections
1365bc68afe2S[email protected]         hci_emit_disconnection_complete(((hci_connection_t *) hci_stack->connections)->con_handle, 0x16); // terminated by local host
13663a9fb326S[email protected]         hci_shutdown_connection((hci_connection_t *) hci_stack->connections);
1367f5454fc6Smatthias.ringwald     }
1368f5454fc6Smatthias.ringwald     hci_power_control(HCI_POWER_OFF);
13693a9fb326S[email protected] 
13703a9fb326S[email protected] #ifdef HAVE_MALLOC
13713a9fb326S[email protected]     free(hci_stack);
13723a9fb326S[email protected] #endif
13733a9fb326S[email protected]     hci_stack = NULL;
1374404843c1Smatthias.ringwald }
1375404843c1Smatthias.ringwald 
13769e61646fS[email protected] void hci_set_class_of_device(uint32_t class_of_device){
13779e61646fS[email protected]     hci_stack->class_of_device = class_of_device;
13789e61646fS[email protected] }
13799e61646fS[email protected] 
138066fb9560S[email protected] void hci_disable_l2cap_timeout_check(){
138166fb9560S[email protected]     disable_l2cap_timeouts = 1;
138266fb9560S[email protected] }
13838d213e1aSmatthias.ringwald // State-Module-Driver overview
13848d213e1aSmatthias.ringwald // state                    module  low-level
13858d213e1aSmatthias.ringwald // HCI_STATE_OFF             off      close
13868d213e1aSmatthias.ringwald // HCI_STATE_INITIALIZING,   on       open
13878d213e1aSmatthias.ringwald // HCI_STATE_WORKING,        on       open
13888d213e1aSmatthias.ringwald // HCI_STATE_HALTING,        on       open
1389d661ed19Smatthias.ringwald // HCI_STATE_SLEEPING,    off/sleep   close
1390d661ed19Smatthias.ringwald // HCI_STATE_FALLING_ASLEEP  on       open
1391c7e0c5f6Smatthias.ringwald 
139240d1c7a4Smatthias.ringwald static int hci_power_control_on(void){
13937301ad89Smatthias.ringwald 
1394038bc64cSmatthias.ringwald     // power on
1395f9a30166Smatthias.ringwald     int err = 0;
13963a9fb326S[email protected]     if (hci_stack->control && hci_stack->control->on){
13973a9fb326S[email protected]         err = (*hci_stack->control->on)(hci_stack->config);
1398f9a30166Smatthias.ringwald     }
1399038bc64cSmatthias.ringwald     if (err){
14009da54300S[email protected]         log_error( "POWER_ON failed");
1401038bc64cSmatthias.ringwald         hci_emit_hci_open_failed();
1402038bc64cSmatthias.ringwald         return err;
1403038bc64cSmatthias.ringwald     }
1404038bc64cSmatthias.ringwald 
1405038bc64cSmatthias.ringwald     // open low-level device
14063a9fb326S[email protected]     err = hci_stack->hci_transport->open(hci_stack->config);
1407038bc64cSmatthias.ringwald     if (err){
14089da54300S[email protected]         log_error( "HCI_INIT failed, turning Bluetooth off again");
14093a9fb326S[email protected]         if (hci_stack->control && hci_stack->control->off){
14103a9fb326S[email protected]             (*hci_stack->control->off)(hci_stack->config);
1411f9a30166Smatthias.ringwald         }
1412038bc64cSmatthias.ringwald         hci_emit_hci_open_failed();
1413038bc64cSmatthias.ringwald         return err;
1414038bc64cSmatthias.ringwald     }
14158d213e1aSmatthias.ringwald     return 0;
14168d213e1aSmatthias.ringwald }
1417038bc64cSmatthias.ringwald 
141840d1c7a4Smatthias.ringwald static void hci_power_control_off(void){
14198d213e1aSmatthias.ringwald 
14209da54300S[email protected]     log_info("hci_power_control_off");
14219418f9c9Smatthias.ringwald 
14228d213e1aSmatthias.ringwald     // close low-level device
14233a9fb326S[email protected]     hci_stack->hci_transport->close(hci_stack->config);
14248d213e1aSmatthias.ringwald 
14259da54300S[email protected]     log_info("hci_power_control_off - hci_transport closed");
14269418f9c9Smatthias.ringwald 
14278d213e1aSmatthias.ringwald     // power off
14283a9fb326S[email protected]     if (hci_stack->control && hci_stack->control->off){
14293a9fb326S[email protected]         (*hci_stack->control->off)(hci_stack->config);
14308d213e1aSmatthias.ringwald     }
14319418f9c9Smatthias.ringwald 
14329da54300S[email protected]     log_info("hci_power_control_off - control closed");
14339418f9c9Smatthias.ringwald 
14343a9fb326S[email protected]     hci_stack->state = HCI_STATE_OFF;
143572ea5239Smatthias.ringwald }
143672ea5239Smatthias.ringwald 
143740d1c7a4Smatthias.ringwald static void hci_power_control_sleep(void){
143872ea5239Smatthias.ringwald 
14399da54300S[email protected]     log_info("hci_power_control_sleep");
14403144bce4Smatthias.ringwald 
1441b429b9b7Smatthias.ringwald #if 0
1442b429b9b7Smatthias.ringwald     // don't close serial port during sleep
1443b429b9b7Smatthias.ringwald 
144472ea5239Smatthias.ringwald     // close low-level device
14453a9fb326S[email protected]     hci_stack->hci_transport->close(hci_stack->config);
1446b429b9b7Smatthias.ringwald #endif
144772ea5239Smatthias.ringwald 
144872ea5239Smatthias.ringwald     // sleep mode
14493a9fb326S[email protected]     if (hci_stack->control && hci_stack->control->sleep){
14503a9fb326S[email protected]         (*hci_stack->control->sleep)(hci_stack->config);
145172ea5239Smatthias.ringwald     }
1452b429b9b7Smatthias.ringwald 
14533a9fb326S[email protected]     hci_stack->state = HCI_STATE_SLEEPING;
14548d213e1aSmatthias.ringwald }
14558d213e1aSmatthias.ringwald 
145640d1c7a4Smatthias.ringwald static int hci_power_control_wake(void){
1457b429b9b7Smatthias.ringwald 
14589da54300S[email protected]     log_info("hci_power_control_wake");
1459b429b9b7Smatthias.ringwald 
1460b429b9b7Smatthias.ringwald     // wake on
14613a9fb326S[email protected]     if (hci_stack->control && hci_stack->control->wake){
14623a9fb326S[email protected]         (*hci_stack->control->wake)(hci_stack->config);
1463b429b9b7Smatthias.ringwald     }
1464b429b9b7Smatthias.ringwald 
1465b429b9b7Smatthias.ringwald #if 0
1466b429b9b7Smatthias.ringwald     // open low-level device
14673a9fb326S[email protected]     int err = hci_stack->hci_transport->open(hci_stack->config);
1468b429b9b7Smatthias.ringwald     if (err){
14699da54300S[email protected]         log_error( "HCI_INIT failed, turning Bluetooth off again");
14703a9fb326S[email protected]         if (hci_stack->control && hci_stack->control->off){
14713a9fb326S[email protected]             (*hci_stack->control->off)(hci_stack->config);
1472b429b9b7Smatthias.ringwald         }
1473b429b9b7Smatthias.ringwald         hci_emit_hci_open_failed();
1474b429b9b7Smatthias.ringwald         return err;
1475b429b9b7Smatthias.ringwald     }
1476b429b9b7Smatthias.ringwald #endif
1477b429b9b7Smatthias.ringwald 
1478b429b9b7Smatthias.ringwald     return 0;
1479b429b9b7Smatthias.ringwald }
1480b429b9b7Smatthias.ringwald 
148144935e40S[email protected] static void hci_power_transition_to_initializing(void){
148244935e40S[email protected]     // set up state machine
148344935e40S[email protected]     hci_stack->num_cmd_packets = 1; // assume that one cmd can be sent
148444935e40S[email protected]     hci_stack->hci_packet_buffer_reserved = 0;
148544935e40S[email protected]     hci_stack->state = HCI_STATE_INITIALIZING;
148644935e40S[email protected]     hci_stack->substate = 0;
148744935e40S[email protected] }
1488b429b9b7Smatthias.ringwald 
14898d213e1aSmatthias.ringwald int hci_power_control(HCI_POWER_MODE power_mode){
1490d661ed19Smatthias.ringwald 
14919da54300S[email protected]     log_info("hci_power_control: %u, current mode %u", power_mode, hci_stack->state);
1492d661ed19Smatthias.ringwald 
14938d213e1aSmatthias.ringwald     int err = 0;
14943a9fb326S[email protected]     switch (hci_stack->state){
14958d213e1aSmatthias.ringwald 
14968d213e1aSmatthias.ringwald         case HCI_STATE_OFF:
14978d213e1aSmatthias.ringwald             switch (power_mode){
14988d213e1aSmatthias.ringwald                 case HCI_POWER_ON:
14998d213e1aSmatthias.ringwald                     err = hci_power_control_on();
150097b61c7bS[email protected]                     if (err) {
150197b61c7bS[email protected]                         log_error("hci_power_control_on() error %u", err);
150297b61c7bS[email protected]                         return err;
150397b61c7bS[email protected]                     }
150444935e40S[email protected]                     hci_power_transition_to_initializing();
15058d213e1aSmatthias.ringwald                     break;
15068d213e1aSmatthias.ringwald                 case HCI_POWER_OFF:
15078d213e1aSmatthias.ringwald                     // do nothing
15088d213e1aSmatthias.ringwald                     break;
15098d213e1aSmatthias.ringwald                 case HCI_POWER_SLEEP:
1510b546ac54Smatthias.ringwald                     // do nothing (with SLEEP == OFF)
15118d213e1aSmatthias.ringwald                     break;
15128d213e1aSmatthias.ringwald             }
15138d213e1aSmatthias.ringwald             break;
15147301ad89Smatthias.ringwald 
15158d213e1aSmatthias.ringwald         case HCI_STATE_INITIALIZING:
15168d213e1aSmatthias.ringwald             switch (power_mode){
15178d213e1aSmatthias.ringwald                 case HCI_POWER_ON:
15188d213e1aSmatthias.ringwald                     // do nothing
15198d213e1aSmatthias.ringwald                     break;
15208d213e1aSmatthias.ringwald                 case HCI_POWER_OFF:
15218d213e1aSmatthias.ringwald                     // no connections yet, just turn it off
15228d213e1aSmatthias.ringwald                     hci_power_control_off();
15238d213e1aSmatthias.ringwald                     break;
15248d213e1aSmatthias.ringwald                 case HCI_POWER_SLEEP:
1525b546ac54Smatthias.ringwald                     // no connections yet, just turn it off
152672ea5239Smatthias.ringwald                     hci_power_control_sleep();
15278d213e1aSmatthias.ringwald                     break;
15288d213e1aSmatthias.ringwald             }
15298d213e1aSmatthias.ringwald             break;
15307301ad89Smatthias.ringwald 
15318d213e1aSmatthias.ringwald         case HCI_STATE_WORKING:
15328d213e1aSmatthias.ringwald             switch (power_mode){
15338d213e1aSmatthias.ringwald                 case HCI_POWER_ON:
15348d213e1aSmatthias.ringwald                     // do nothing
15358d213e1aSmatthias.ringwald                     break;
15368d213e1aSmatthias.ringwald                 case HCI_POWER_OFF:
1537c7e0c5f6Smatthias.ringwald                     // see hci_run
15383a9fb326S[email protected]                     hci_stack->state = HCI_STATE_HALTING;
15398d213e1aSmatthias.ringwald                     break;
15408d213e1aSmatthias.ringwald                 case HCI_POWER_SLEEP:
1541b546ac54Smatthias.ringwald                     // see hci_run
15423a9fb326S[email protected]                     hci_stack->state = HCI_STATE_FALLING_ASLEEP;
15433a9fb326S[email protected]                     hci_stack->substate = 0;
15448d213e1aSmatthias.ringwald                     break;
15458d213e1aSmatthias.ringwald             }
15468d213e1aSmatthias.ringwald             break;
15477301ad89Smatthias.ringwald 
15488d213e1aSmatthias.ringwald         case HCI_STATE_HALTING:
15498d213e1aSmatthias.ringwald             switch (power_mode){
15508d213e1aSmatthias.ringwald                 case HCI_POWER_ON:
155144935e40S[email protected]                     hci_power_transition_to_initializing();
15528d213e1aSmatthias.ringwald                     break;
15538d213e1aSmatthias.ringwald                 case HCI_POWER_OFF:
15548d213e1aSmatthias.ringwald                     // do nothing
15558d213e1aSmatthias.ringwald                     break;
15568d213e1aSmatthias.ringwald                 case HCI_POWER_SLEEP:
1557b546ac54Smatthias.ringwald                     // see hci_run
15583a9fb326S[email protected]                     hci_stack->state = HCI_STATE_FALLING_ASLEEP;
15593a9fb326S[email protected]                     hci_stack->substate = 0;
15608d213e1aSmatthias.ringwald                     break;
15618d213e1aSmatthias.ringwald             }
15628d213e1aSmatthias.ringwald             break;
15638d213e1aSmatthias.ringwald 
15648d213e1aSmatthias.ringwald         case HCI_STATE_FALLING_ASLEEP:
15658d213e1aSmatthias.ringwald             switch (power_mode){
15668d213e1aSmatthias.ringwald                 case HCI_POWER_ON:
156728171530Smatthias.ringwald 
156828171530Smatthias.ringwald #if defined(USE_POWERMANAGEMENT) && defined(USE_BLUETOOL)
156928171530Smatthias.ringwald                     // nothing to do, if H4 supports power management
157028171530Smatthias.ringwald                     if (bt_control_iphone_power_management_enabled()){
15713a9fb326S[email protected]                         hci_stack->state = HCI_STATE_INITIALIZING;
15723a9fb326S[email protected]                         hci_stack->substate = HCI_INTIALIZING_SUBSTATE_AFTER_SLEEP;
157328171530Smatthias.ringwald                         break;
157428171530Smatthias.ringwald                     }
157528171530Smatthias.ringwald #endif
157644935e40S[email protected]                     hci_power_transition_to_initializing();
15778d213e1aSmatthias.ringwald                     break;
15788d213e1aSmatthias.ringwald                 case HCI_POWER_OFF:
1579b546ac54Smatthias.ringwald                     // see hci_run
15803a9fb326S[email protected]                     hci_stack->state = HCI_STATE_HALTING;
15818d213e1aSmatthias.ringwald                     break;
15828d213e1aSmatthias.ringwald                 case HCI_POWER_SLEEP:
1583b546ac54Smatthias.ringwald                     // do nothing
15848d213e1aSmatthias.ringwald                     break;
15858d213e1aSmatthias.ringwald             }
15868d213e1aSmatthias.ringwald             break;
15878d213e1aSmatthias.ringwald 
15888d213e1aSmatthias.ringwald         case HCI_STATE_SLEEPING:
15898d213e1aSmatthias.ringwald             switch (power_mode){
15908d213e1aSmatthias.ringwald                 case HCI_POWER_ON:
159128171530Smatthias.ringwald 
159228171530Smatthias.ringwald #if defined(USE_POWERMANAGEMENT) && defined(USE_BLUETOOL)
159328171530Smatthias.ringwald                     // nothing to do, if H4 supports power management
159428171530Smatthias.ringwald                     if (bt_control_iphone_power_management_enabled()){
15953a9fb326S[email protected]                         hci_stack->state = HCI_STATE_INITIALIZING;
15963a9fb326S[email protected]                         hci_stack->substate = HCI_INTIALIZING_SUBSTATE_AFTER_SLEEP;
1597758b46ceSmatthias.ringwald                         hci_update_scan_enable();
159828171530Smatthias.ringwald                         break;
159928171530Smatthias.ringwald                     }
160028171530Smatthias.ringwald #endif
16013144bce4Smatthias.ringwald                     err = hci_power_control_wake();
16023144bce4Smatthias.ringwald                     if (err) return err;
160344935e40S[email protected]                     hci_power_transition_to_initializing();
16048d213e1aSmatthias.ringwald                     break;
16058d213e1aSmatthias.ringwald                 case HCI_POWER_OFF:
16063a9fb326S[email protected]                     hci_stack->state = HCI_STATE_HALTING;
16078d213e1aSmatthias.ringwald                     break;
16088d213e1aSmatthias.ringwald                 case HCI_POWER_SLEEP:
1609b546ac54Smatthias.ringwald                     // do nothing
16108d213e1aSmatthias.ringwald                     break;
16118d213e1aSmatthias.ringwald             }
16128d213e1aSmatthias.ringwald             break;
161311e23e5fSmatthias.ringwald     }
161468d92d03Smatthias.ringwald 
1615038bc64cSmatthias.ringwald     // create internal event
1616ee8bf225Smatthias.ringwald 	hci_emit_state();
1617ee8bf225Smatthias.ringwald 
161868d92d03Smatthias.ringwald 	// trigger next/first action
161968d92d03Smatthias.ringwald 	hci_run();
162068d92d03Smatthias.ringwald 
1621475c8125Smatthias.ringwald     return 0;
1622475c8125Smatthias.ringwald }
1623475c8125Smatthias.ringwald 
1624758b46ceSmatthias.ringwald static void hci_update_scan_enable(void){
1625758b46ceSmatthias.ringwald     // 2 = page scan, 1 = inq scan
16263a9fb326S[email protected]     hci_stack->new_scan_enable_value  = hci_stack->connectable << 1 | hci_stack->discoverable;
1627758b46ceSmatthias.ringwald     hci_run();
1628758b46ceSmatthias.ringwald }
1629758b46ceSmatthias.ringwald 
1630381fbed8Smatthias.ringwald void hci_discoverable_control(uint8_t enable){
1631381fbed8Smatthias.ringwald     if (enable) enable = 1; // normalize argument
1632381fbed8Smatthias.ringwald 
16333a9fb326S[email protected]     if (hci_stack->discoverable == enable){
16343a9fb326S[email protected]         hci_emit_discoverable_enabled(hci_stack->discoverable);
1635381fbed8Smatthias.ringwald         return;
1636381fbed8Smatthias.ringwald     }
1637381fbed8Smatthias.ringwald 
16383a9fb326S[email protected]     hci_stack->discoverable = enable;
1639758b46ceSmatthias.ringwald     hci_update_scan_enable();
1640758b46ceSmatthias.ringwald }
1641b031bebbSmatthias.ringwald 
1642758b46ceSmatthias.ringwald void hci_connectable_control(uint8_t enable){
1643758b46ceSmatthias.ringwald     if (enable) enable = 1; // normalize argument
1644758b46ceSmatthias.ringwald 
1645758b46ceSmatthias.ringwald     // don't emit event
16463a9fb326S[email protected]     if (hci_stack->connectable == enable) return;
1647758b46ceSmatthias.ringwald 
16483a9fb326S[email protected]     hci_stack->connectable = enable;
1649758b46ceSmatthias.ringwald     hci_update_scan_enable();
1650381fbed8Smatthias.ringwald }
1651381fbed8Smatthias.ringwald 
16525061f3afS[email protected] bd_addr_t * hci_local_bd_addr(void){
16533a9fb326S[email protected]     return &hci_stack->local_bd_addr;
16545061f3afS[email protected] }
16555061f3afS[email protected] 
165606b35ec0Smatthias.ringwald void hci_run(){
16578a485f27Smatthias.ringwald 
165832ab9390Smatthias.ringwald     hci_connection_t * connection;
165932ab9390Smatthias.ringwald     linked_item_t * it;
166032ab9390Smatthias.ringwald 
1661d94d3cafS[email protected]     if (!hci_can_send_command_packet_now()) return;
1662ce4c8fabSmatthias.ringwald 
1663b031bebbSmatthias.ringwald     // global/non-connection oriented commands
1664b031bebbSmatthias.ringwald 
1665b031bebbSmatthias.ringwald     // decline incoming connections
16663a9fb326S[email protected]     if (hci_stack->decline_reason){
16673a9fb326S[email protected]         uint8_t reason = hci_stack->decline_reason;
16683a9fb326S[email protected]         hci_stack->decline_reason = 0;
16693a9fb326S[email protected]         hci_send_cmd(&hci_reject_connection_request, hci_stack->decline_addr, reason);
1670dbe1a790S[email protected]         return;
1671ce4c8fabSmatthias.ringwald     }
1672ce4c8fabSmatthias.ringwald 
1673b031bebbSmatthias.ringwald     // send scan enable
16743a9fb326S[email protected]     if (hci_stack->state == HCI_STATE_WORKING && hci_stack->new_scan_enable_value != 0xff && hci_classic_supported()){
16753a9fb326S[email protected]         hci_send_cmd(&hci_write_scan_enable, hci_stack->new_scan_enable_value);
16763a9fb326S[email protected]         hci_stack->new_scan_enable_value = 0xff;
1677dbe1a790S[email protected]         return;
1678b031bebbSmatthias.ringwald     }
1679b031bebbSmatthias.ringwald 
1680b2f949feS[email protected] #ifdef HAVE_BLE
16817bdc6798S[email protected]     // handle le scan
16827bdc6798S[email protected]     if (hci_stack->state == HCI_STATE_WORKING){
16837bdc6798S[email protected]         switch(hci_stack->le_scanning_state){
16847bdc6798S[email protected]             case LE_START_SCAN:
16857bdc6798S[email protected]                 hci_stack->le_scanning_state = LE_SCANNING;
16867bdc6798S[email protected]                 hci_send_cmd(&hci_le_set_scan_enable, 1, 0);
16877bdc6798S[email protected]                 return;
16887bdc6798S[email protected] 
16897bdc6798S[email protected]             case LE_STOP_SCAN:
16907bdc6798S[email protected]                 hci_stack->le_scanning_state = LE_SCAN_IDLE;
16917bdc6798S[email protected]                 hci_send_cmd(&hci_le_set_scan_enable, 0, 0);
16927bdc6798S[email protected]                 return;
16937bdc6798S[email protected]             default:
16947bdc6798S[email protected]                 break;
16957bdc6798S[email protected]         }
1696e2602ea2Smatthias.ringwald         if (hci_stack->le_scan_type != 0xff){
1697e2602ea2Smatthias.ringwald             // defaults: active scanning, accept all advertisement packets
1698e2602ea2Smatthias.ringwald             int scan_type = hci_stack->le_scan_type;
1699e2602ea2Smatthias.ringwald             hci_stack->le_scan_type = 0xff;
1700e2602ea2Smatthias.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);
1701e2602ea2Smatthias.ringwald             return;
1702e2602ea2Smatthias.ringwald         }
17037bdc6798S[email protected]     }
1704b2f949feS[email protected] #endif
17057bdc6798S[email protected] 
170632ab9390Smatthias.ringwald     // send pending HCI commands
17073a9fb326S[email protected]     for (it = (linked_item_t *) hci_stack->connections; it ; it = it->next){
1708b031bebbSmatthias.ringwald         connection = (hci_connection_t *) it;
170932ab9390Smatthias.ringwald 
17100bf6344aS[email protected]         switch(connection->state){
17110bf6344aS[email protected]             case SEND_CREATE_CONNECTION:
17124f3229d8S[email protected]                 switch(connection->address_type){
17134f3229d8S[email protected]                     case BD_ADDR_TYPE_CLASSIC:
17149da54300S[email protected]                         log_info("sending hci_create_connection");
1715ad83dc6aS[email protected]                         hci_send_cmd(&hci_create_connection, connection->address, hci_usable_acl_packet_types(), 0, 0, 0, 1);
17164f3229d8S[email protected]                         break;
17174f3229d8S[email protected]                     default:
1718b2f949feS[email protected] #ifdef HAVE_BLE
17199da54300S[email protected]                         log_info("sending hci_le_create_connection");
17204f3229d8S[email protected]                         hci_send_cmd(&hci_le_create_connection,
1721b2571179Smatthias.ringwald                                      0x0060,    // scan interval: 60 ms
1722b2571179Smatthias.ringwald                                      0x0030,    // scan interval: 30 ms
17234f3229d8S[email protected]                                      0,         // don't use whitelist
17244f3229d8S[email protected]                                      connection->address_type, // peer address type
17254f3229d8S[email protected]                                      connection->address,      // peer bd addr
1726b2571179Smatthias.ringwald                                      hci_stack->adv_addr_type, // our addr type:
1727b2571179Smatthias.ringwald                                      0x0008,    // conn interval min
1728b2571179Smatthias.ringwald                                      0x0018,    // conn interval max
17294f3229d8S[email protected]                                      0,         // conn latency
1730b2571179Smatthias.ringwald                                      0x0048,    // supervision timeout
1731b2571179Smatthias.ringwald                                      0x0001,    // min ce length
1732b2571179Smatthias.ringwald                                      0x0001     // max ce length
17334f3229d8S[email protected]                                      );
17344f3229d8S[email protected] 
17354f3229d8S[email protected]                         connection->state = SENT_CREATE_CONNECTION;
1736b2f949feS[email protected] #endif
17374f3229d8S[email protected]                         break;
17384f3229d8S[email protected]                 }
1739ad83dc6aS[email protected]                 return;
1740ad83dc6aS[email protected] 
17410bf6344aS[email protected]             case RECEIVED_CONNECTION_REQUEST:
17429da54300S[email protected]                 log_info("sending hci_accept_connection_request");
174332ab9390Smatthias.ringwald                 connection->state = ACCEPTED_CONNECTION_REQUEST;
174434d2123cS[email protected]                 hci_send_cmd(&hci_accept_connection_request, connection->address, 1);
1745dbe1a790S[email protected]                 return;
17460bf6344aS[email protected] 
1747a6725849S[email protected] #ifdef HAVE_BLE
17480bf6344aS[email protected]             case SEND_CANCEL_CONNECTION:
17490bf6344aS[email protected]                 connection->state = SENT_CANCEL_CONNECTION;
17500bf6344aS[email protected]                 hci_send_cmd(&hci_le_create_connection_cancel);
17510bf6344aS[email protected]                 return;
1752a6725849S[email protected] #endif
17530bf6344aS[email protected]             case SEND_DISCONNECT:
17540bf6344aS[email protected]                 connection->state = SENT_DISCONNECT;
17557851196eSmatthias.ringwald                 hci_send_cmd(&hci_disconnect, connection->con_handle, 0x13); // remote closed connection
17560bf6344aS[email protected]                 return;
17570bf6344aS[email protected] 
17580bf6344aS[email protected]             default:
17590bf6344aS[email protected]                 break;
1760c7e0c5f6Smatthias.ringwald         }
1761c7e0c5f6Smatthias.ringwald 
176232ab9390Smatthias.ringwald         if (connection->authentication_flags & HANDLE_LINK_KEY_REQUEST){
17639da54300S[email protected]             log_info("responding to link key request");
176434d2123cS[email protected]             connectionClearAuthenticationFlags(connection, HANDLE_LINK_KEY_REQUEST);
176532ab9390Smatthias.ringwald             link_key_t link_key;
1766c77e8838S[email protected]             link_key_type_t link_key_type;
17673a9fb326S[email protected]             if ( hci_stack->remote_device_db
17683a9fb326S[email protected]               && hci_stack->remote_device_db->get_link_key( &connection->address, &link_key, &link_key_type)
176934d2123cS[email protected]               && gap_security_level_for_link_key_type(link_key_type) >= connection->requested_security_level){
17709ab95c90S[email protected]                connection->link_key_type = link_key_type;
177132ab9390Smatthias.ringwald                hci_send_cmd(&hci_link_key_request_reply, connection->address, &link_key);
177232ab9390Smatthias.ringwald             } else {
177332ab9390Smatthias.ringwald                hci_send_cmd(&hci_link_key_request_negative_reply, connection->address);
177432ab9390Smatthias.ringwald             }
1775dbe1a790S[email protected]             return;
177632ab9390Smatthias.ringwald         }
17771d6b20aeS[email protected] 
1778899283eaS[email protected]         if (connection->authentication_flags & DENY_PIN_CODE_REQUEST){
17799da54300S[email protected]             log_info("denying to pin request");
1780899283eaS[email protected]             connectionClearAuthenticationFlags(connection, DENY_PIN_CODE_REQUEST);
178134d2123cS[email protected]             hci_send_cmd(&hci_pin_code_request_negative_reply, connection->address);
17824c57c146S[email protected]             return;
17834c57c146S[email protected]         }
17844c57c146S[email protected] 
1785dbe1a790S[email protected]         if (connection->authentication_flags & SEND_IO_CAPABILITIES_REPLY){
178634d2123cS[email protected]             connectionClearAuthenticationFlags(connection, SEND_IO_CAPABILITIES_REPLY);
178782d8f825S[email protected]             log_info("IO Capability Request received, stack bondable %u, io cap %u", hci_stack->bondable, hci_stack->ssp_io_capability);
178882d8f825S[email protected]             if (hci_stack->bondable && (hci_stack->ssp_io_capability != SSP_IO_CAPABILITY_UNKNOWN)){
1789106d6d11S[email protected]                 // tweak authentication requirements
17903a9fb326S[email protected]                 uint8_t authreq = hci_stack->ssp_authentication_requirement;
1791106d6d11S[email protected]                 if (connection->bonding_flags & BONDING_DEDICATED){
17929faad3abS[email protected]                     authreq = SSP_IO_AUTHREQ_MITM_PROTECTION_NOT_REQUIRED_DEDICATED_BONDING;
17939faad3abS[email protected]                 }
17949faad3abS[email protected]                 if (gap_mitm_protection_required_for_security_level(connection->requested_security_level)){
17959faad3abS[email protected]                     authreq |= 1;
1796106d6d11S[email protected]                 }
17973a9fb326S[email protected]                 hci_send_cmd(&hci_io_capability_request_reply, &connection->address, hci_stack->ssp_io_capability, NULL, authreq);
1798f8fb5f6eS[email protected]             } else {
1799f8fb5f6eS[email protected]                 hci_send_cmd(&hci_io_capability_request_negative_reply, &connection->address, ERROR_CODE_PAIRING_NOT_ALLOWED);
1800f8fb5f6eS[email protected]             }
1801dbe1a790S[email protected]             return;
180232ab9390Smatthias.ringwald         }
180332ab9390Smatthias.ringwald 
1804dbe1a790S[email protected]         if (connection->authentication_flags & SEND_USER_CONFIRM_REPLY){
1805dbe1a790S[email protected]             connectionClearAuthenticationFlags(connection, SEND_USER_CONFIRM_REPLY);
180634d2123cS[email protected]             hci_send_cmd(&hci_user_confirmation_request_reply, &connection->address);
1807dbe1a790S[email protected]             return;
1808dbe1a790S[email protected]         }
1809dbe1a790S[email protected] 
1810dbe1a790S[email protected]         if (connection->authentication_flags & SEND_USER_PASSKEY_REPLY){
1811dbe1a790S[email protected]             connectionClearAuthenticationFlags(connection, SEND_USER_PASSKEY_REPLY);
181234d2123cS[email protected]             hci_send_cmd(&hci_user_passkey_request_reply, &connection->address, 000000);
1813dbe1a790S[email protected]             return;
1814dbe1a790S[email protected]         }
1815afd4e962S[email protected] 
1816afd4e962S[email protected]         if (connection->bonding_flags & BONDING_REQUEST_REMOTE_FEATURES){
1817afd4e962S[email protected]             connection->bonding_flags &= ~BONDING_REQUEST_REMOTE_FEATURES;
181834d2123cS[email protected]             hci_send_cmd(&hci_read_remote_supported_features_command, connection->con_handle);
18192bd8b7e7S[email protected]             return;
18202bd8b7e7S[email protected]         }
18212bd8b7e7S[email protected] 
18222bd8b7e7S[email protected]         if (connection->bonding_flags & BONDING_DISCONNECT_SECURITY_BLOCK){
18232bd8b7e7S[email protected]             connection->bonding_flags &= ~BONDING_DISCONNECT_SECURITY_BLOCK;
182434d2123cS[email protected]             hci_send_cmd(&hci_disconnect, connection->con_handle, 0x0005);  // authentication failure
182534d2123cS[email protected]             return;
182634d2123cS[email protected]         }
1827ad83dc6aS[email protected]         if (connection->bonding_flags & BONDING_DISCONNECT_DEDICATED_DONE){
1828ad83dc6aS[email protected]             connection->bonding_flags &= ~BONDING_DISCONNECT_DEDICATED_DONE;
18291bd5283dS[email protected]             connection->bonding_flags |= BONDING_EMIT_COMPLETE_ON_DISCONNECT;
183052d34f98S[email protected]             hci_send_cmd(&hci_disconnect, connection->con_handle, 0x13);  // authentication done
1831ad83dc6aS[email protected]             return;
1832ad83dc6aS[email protected]         }
183334d2123cS[email protected]         if (connection->bonding_flags & BONDING_SEND_AUTHENTICATE_REQUEST){
183434d2123cS[email protected]             connection->bonding_flags &= ~BONDING_SEND_AUTHENTICATE_REQUEST;
183534d2123cS[email protected]             hci_send_cmd(&hci_authentication_requested, connection->con_handle);
18362bd8b7e7S[email protected]             return;
1837afd4e962S[email protected]         }
1838dce78009S[email protected]         if (connection->bonding_flags & BONDING_SEND_ENCRYPTION_REQUEST){
1839dce78009S[email protected]             connection->bonding_flags &= ~BONDING_SEND_ENCRYPTION_REQUEST;
1840dce78009S[email protected]             hci_send_cmd(&hci_set_connection_encryption, connection->con_handle, 1);
1841dce78009S[email protected]             return;
1842dce78009S[email protected]         }
1843c37a3166S[email protected] #ifdef HAVE_BLE
1844c37a3166S[email protected]         if (connection->le_conn_interval_min){
1845c37a3166S[email protected]             uint16_t connection_interval_min = connection->le_conn_interval_min;
1846c37a3166S[email protected]             connection->le_conn_interval_min = 0;
1847c37a3166S[email protected]             hci_send_cmd(&hci_le_connection_update, connection->con_handle, connection_interval_min,
1848c37a3166S[email protected]                 connection->le_conn_interval_max, connection->le_conn_latency, connection->le_supervision_timeout,
1849c37a3166S[email protected]                 0x0000, 0xffff);
1850c37a3166S[email protected]         }
1851c37a3166S[email protected] #endif
1852dbe1a790S[email protected]     }
1853c7e0c5f6Smatthias.ringwald 
18543a9fb326S[email protected]     switch (hci_stack->state){
18553429f56bSmatthias.ringwald         case HCI_STATE_INITIALIZING:
1856bd88fde9S[email protected]             hci_initializing_state_machine();
18573429f56bSmatthias.ringwald             break;
1858c7e0c5f6Smatthias.ringwald 
1859c7e0c5f6Smatthias.ringwald         case HCI_STATE_HALTING:
1860c7e0c5f6Smatthias.ringwald 
18619da54300S[email protected]             log_info("HCI_STATE_HALTING");
1862c7e0c5f6Smatthias.ringwald             // close all open connections
18633a9fb326S[email protected]             connection =  (hci_connection_t *) hci_stack->connections;
1864c7e0c5f6Smatthias.ringwald             if (connection){
186532ab9390Smatthias.ringwald 
1866c7e0c5f6Smatthias.ringwald                 // send disconnect
1867d94d3cafS[email protected]                 if (!hci_can_send_command_packet_now()) return;
186832ab9390Smatthias.ringwald 
18699da54300S[email protected]                 log_info("HCI_STATE_HALTING, connection %p, handle %u", connection, (uint16_t)connection->con_handle);
18706ad890d3Smatthias.ringwald                 hci_send_cmd(&hci_disconnect, connection->con_handle, 0x13);  // remote closed connection
1871c7e0c5f6Smatthias.ringwald 
1872c7e0c5f6Smatthias.ringwald                 // send disconnected event right away - causes higher layer connections to get closed, too.
1873c7e0c5f6Smatthias.ringwald                 hci_shutdown_connection(connection);
1874c7e0c5f6Smatthias.ringwald                 return;
1875c7e0c5f6Smatthias.ringwald             }
18769da54300S[email protected]             log_info("HCI_STATE_HALTING, calling off");
1877c7e0c5f6Smatthias.ringwald 
187872ea5239Smatthias.ringwald             // switch mode
1879c7e0c5f6Smatthias.ringwald             hci_power_control_off();
18809418f9c9Smatthias.ringwald 
18819da54300S[email protected]             log_info("HCI_STATE_HALTING, emitting state");
188272ea5239Smatthias.ringwald             hci_emit_state();
18839da54300S[email protected]             log_info("HCI_STATE_HALTING, done");
188472ea5239Smatthias.ringwald             break;
1885c7e0c5f6Smatthias.ringwald 
188672ea5239Smatthias.ringwald         case HCI_STATE_FALLING_ASLEEP:
18873a9fb326S[email protected]             switch(hci_stack->substate) {
188889db417bSmatthias.ringwald                 case 0:
18899da54300S[email protected]                     log_info("HCI_STATE_FALLING_ASLEEP");
189072ea5239Smatthias.ringwald                     // close all open connections
18913a9fb326S[email protected]                     connection =  (hci_connection_t *) hci_stack->connections;
189266da7044Smatthias.ringwald 
189328171530Smatthias.ringwald #if defined(USE_POWERMANAGEMENT) && defined(USE_BLUETOOL)
189466da7044Smatthias.ringwald                     // don't close connections, if H4 supports power management
189566da7044Smatthias.ringwald                     if (bt_control_iphone_power_management_enabled()){
189666da7044Smatthias.ringwald                         connection = NULL;
189766da7044Smatthias.ringwald                     }
189866da7044Smatthias.ringwald #endif
189972ea5239Smatthias.ringwald                     if (connection){
190032ab9390Smatthias.ringwald 
190172ea5239Smatthias.ringwald                         // send disconnect
1902d94d3cafS[email protected]                         if (!hci_can_send_command_packet_now()) return;
190332ab9390Smatthias.ringwald 
19049da54300S[email protected]                         log_info("HCI_STATE_FALLING_ASLEEP, connection %p, handle %u", connection, (uint16_t)connection->con_handle);
19056ad890d3Smatthias.ringwald                         hci_send_cmd(&hci_disconnect, connection->con_handle, 0x13);  // remote closed connection
190672ea5239Smatthias.ringwald 
190772ea5239Smatthias.ringwald                         // send disconnected event right away - causes higher layer connections to get closed, too.
190872ea5239Smatthias.ringwald                         hci_shutdown_connection(connection);
190972ea5239Smatthias.ringwald                         return;
191072ea5239Smatthias.ringwald                     }
191172ea5239Smatthias.ringwald 
191292368cd3S[email protected]                     if (hci_classic_supported()){
191389db417bSmatthias.ringwald                         // disable page and inquiry scan
1914d94d3cafS[email protected]                         if (!hci_can_send_command_packet_now()) return;
191532ab9390Smatthias.ringwald 
19169da54300S[email protected]                         log_info("HCI_STATE_HALTING, disabling inq scans");
19173a9fb326S[email protected]                         hci_send_cmd(&hci_write_scan_enable, hci_stack->connectable << 1); // drop inquiry scan but keep page scan
191889db417bSmatthias.ringwald 
191989db417bSmatthias.ringwald                         // continue in next sub state
19203a9fb326S[email protected]                         hci_stack->substate++;
192189db417bSmatthias.ringwald                         break;
192292368cd3S[email protected]                     }
192392368cd3S[email protected]                     // fall through for ble-only chips
192492368cd3S[email protected] 
192589db417bSmatthias.ringwald                 case 2:
19269da54300S[email protected]                     log_info("HCI_STATE_HALTING, calling sleep");
192728171530Smatthias.ringwald #if defined(USE_POWERMANAGEMENT) && defined(USE_BLUETOOL)
192828171530Smatthias.ringwald                     // don't actually go to sleep, if H4 supports power management
192928171530Smatthias.ringwald                     if (bt_control_iphone_power_management_enabled()){
193028171530Smatthias.ringwald                         // SLEEP MODE reached
19313a9fb326S[email protected]                         hci_stack->state = HCI_STATE_SLEEPING;
193228171530Smatthias.ringwald                         hci_emit_state();
193328171530Smatthias.ringwald                         break;
193428171530Smatthias.ringwald                     }
193528171530Smatthias.ringwald #endif
193672ea5239Smatthias.ringwald                     // switch mode
19373a9fb326S[email protected]                     hci_power_control_sleep();  // changes hci_stack->state to SLEEP
1938c7e0c5f6Smatthias.ringwald                     hci_emit_state();
193928171530Smatthias.ringwald                     break;
194028171530Smatthias.ringwald 
194189db417bSmatthias.ringwald                 default:
194289db417bSmatthias.ringwald                     break;
194389db417bSmatthias.ringwald             }
1944c7e0c5f6Smatthias.ringwald             break;
1945c7e0c5f6Smatthias.ringwald 
19463429f56bSmatthias.ringwald         default:
19473429f56bSmatthias.ringwald             break;
19481f504dbdSmatthias.ringwald     }
19493429f56bSmatthias.ringwald }
195016833f0aSmatthias.ringwald 
195131452debSmatthias.ringwald int hci_send_cmd_packet(uint8_t *packet, int size){
1952c8e4258aSmatthias.ringwald     bd_addr_t addr;
1953c8e4258aSmatthias.ringwald     hci_connection_t * conn;
1954c8e4258aSmatthias.ringwald     // house-keeping
1955c8e4258aSmatthias.ringwald 
1956c8e4258aSmatthias.ringwald     // create_connection?
1957c8e4258aSmatthias.ringwald     if (IS_COMMAND(packet, hci_create_connection)){
1958c8e4258aSmatthias.ringwald         bt_flip_addr(addr, &packet[3]);
19599da54300S[email protected]         log_info("Create_connection to %s", bd_addr_to_str(addr));
1960c8e4258aSmatthias.ringwald 
196196a45072S[email protected]         conn = hci_connection_for_bd_addr_and_type(&addr, BD_ADDR_TYPE_CLASSIC);
1962ad83dc6aS[email protected]         if (!conn){
196396a45072S[email protected]             conn = create_connection_for_bd_addr_and_type(addr, BD_ADDR_TYPE_CLASSIC);
196417f1ba2aSmatthias.ringwald             if (!conn){
196517f1ba2aSmatthias.ringwald                 // notify client that alloc failed
196617f1ba2aSmatthias.ringwald                 hci_emit_connection_complete(conn, BTSTACK_MEMORY_ALLOC_FAILED);
196717f1ba2aSmatthias.ringwald                 return 0; // don't sent packet to controller
196817f1ba2aSmatthias.ringwald             }
1969ad83dc6aS[email protected]             conn->state = SEND_CREATE_CONNECTION;
1970ad83dc6aS[email protected]         }
1971ad83dc6aS[email protected]         log_info("conn state %u", conn->state);
1972ad83dc6aS[email protected]         switch (conn->state){
1973ad83dc6aS[email protected]             // if connection active exists
1974ad83dc6aS[email protected]             case OPEN:
197562bda3fbS[email protected]                 // and OPEN, emit connection complete command, don't send to controller
1976ad83dc6aS[email protected]                 hci_emit_connection_complete(conn, 0);
197762bda3fbS[email protected]                 return 0;
1978ad83dc6aS[email protected]             case SEND_CREATE_CONNECTION:
1979ad83dc6aS[email protected]                 // connection created by hci, e.g. dedicated bonding
1980ad83dc6aS[email protected]                 break;
1981ad83dc6aS[email protected]             default:
1982ad83dc6aS[email protected]                 // otherwise, just ignore as it is already in the open process
1983ad83dc6aS[email protected]                 return 0;
1984ad83dc6aS[email protected]         }
1985c8e4258aSmatthias.ringwald         conn->state = SENT_CREATE_CONNECTION;
1986c8e4258aSmatthias.ringwald     }
1987c8e4258aSmatthias.ringwald 
19887fde4af9Smatthias.ringwald     if (IS_COMMAND(packet, hci_link_key_request_reply)){
19897fde4af9Smatthias.ringwald         hci_add_connection_flags_for_flipped_bd_addr(&packet[3], SENT_LINK_KEY_REPLY);
19907fde4af9Smatthias.ringwald     }
19917fde4af9Smatthias.ringwald     if (IS_COMMAND(packet, hci_link_key_request_negative_reply)){
19927fde4af9Smatthias.ringwald         hci_add_connection_flags_for_flipped_bd_addr(&packet[3], SENT_LINK_KEY_NEGATIVE_REQUEST);
19937fde4af9Smatthias.ringwald     }
19947fde4af9Smatthias.ringwald 
19958ef73945Smatthias.ringwald     if (IS_COMMAND(packet, hci_delete_stored_link_key)){
19963a9fb326S[email protected]         if (hci_stack->remote_device_db){
19978ef73945Smatthias.ringwald             bt_flip_addr(addr, &packet[3]);
19983a9fb326S[email protected]             hci_stack->remote_device_db->delete_link_key(&addr);
19998ef73945Smatthias.ringwald         }
20008ef73945Smatthias.ringwald     }
2001c8e4258aSmatthias.ringwald 
20026724cd9eS[email protected]     if (IS_COMMAND(packet, hci_pin_code_request_negative_reply)
20036724cd9eS[email protected]     ||  IS_COMMAND(packet, hci_pin_code_request_reply)){
20046724cd9eS[email protected]         bt_flip_addr(addr, &packet[3]);
200596a45072S[email protected]         conn = hci_connection_for_bd_addr_and_type(&addr, BD_ADDR_TYPE_CLASSIC);
20066724cd9eS[email protected]         if (conn){
20076724cd9eS[email protected]             connectionClearAuthenticationFlags(conn, LEGACY_PAIRING_ACTIVE);
20086724cd9eS[email protected]         }
20096724cd9eS[email protected]     }
20106724cd9eS[email protected] 
20116724cd9eS[email protected]     if (IS_COMMAND(packet, hci_user_confirmation_request_negative_reply)
20126724cd9eS[email protected]     ||  IS_COMMAND(packet, hci_user_confirmation_request_reply)
20136724cd9eS[email protected]     ||  IS_COMMAND(packet, hci_user_passkey_request_negative_reply)
20146724cd9eS[email protected]     ||  IS_COMMAND(packet, hci_user_passkey_request_reply)) {
20156724cd9eS[email protected]         bt_flip_addr(addr, &packet[3]);
201696a45072S[email protected]         conn = hci_connection_for_bd_addr_and_type(&addr, BD_ADDR_TYPE_CLASSIC);
20176724cd9eS[email protected]         if (conn){
20186724cd9eS[email protected]             connectionClearAuthenticationFlags(conn, SSP_PAIRING_ACTIVE);
20196724cd9eS[email protected]         }
20206724cd9eS[email protected]     }
20216724cd9eS[email protected] 
202269a97523S[email protected] #ifdef HAVE_BLE
202369a97523S[email protected]     if (IS_COMMAND(packet, hci_le_set_advertising_parameters)){
20243a9fb326S[email protected]         hci_stack->adv_addr_type = packet[8];
202569a97523S[email protected]     }
202669a97523S[email protected]     if (IS_COMMAND(packet, hci_le_set_random_address)){
20273a9fb326S[email protected]         bt_flip_addr(hci_stack->adv_address, &packet[3]);
202869a97523S[email protected]     }
202969a97523S[email protected] #endif
203069a97523S[email protected] 
20313a9fb326S[email protected]     hci_stack->num_cmd_packets--;
20326b4af23dS[email protected]     int err = hci_stack->hci_transport->send_packet(HCI_COMMAND_DATA_PACKET, packet, size);
20336b4af23dS[email protected] 
20346b4af23dS[email protected]     // free packet buffer for synchronous transport implementations
2035c8b9416aS[email protected]     if (hci_transport_synchronous() && (packet == hci_stack->hci_packet_buffer)){
20366b4af23dS[email protected]         hci_stack->hci_packet_buffer_reserved = 0;
20376b4af23dS[email protected]     }
20386b4af23dS[email protected] 
20396b4af23dS[email protected]     return err;
204031452debSmatthias.ringwald }
20418adf0ddaSmatthias.ringwald 
20422bd8b7e7S[email protected] // disconnect because of security block
20432bd8b7e7S[email protected] void hci_disconnect_security_block(hci_con_handle_t con_handle){
20442bd8b7e7S[email protected]     hci_connection_t * connection = hci_connection_for_handle(con_handle);
20452bd8b7e7S[email protected]     if (!connection) return;
20462bd8b7e7S[email protected]     connection->bonding_flags |= BONDING_DISCONNECT_SECURITY_BLOCK;
20472bd8b7e7S[email protected] }
20482bd8b7e7S[email protected] 
20492bd8b7e7S[email protected] 
2050dbe1a790S[email protected] // Configure Secure Simple Pairing
2051dbe1a790S[email protected] 
2052dbe1a790S[email protected] // enable will enable SSP during init
2053dbe1a790S[email protected] void hci_ssp_set_enable(int enable){
20543a9fb326S[email protected]     hci_stack->ssp_enable = enable;
2055dbe1a790S[email protected] }
2056dbe1a790S[email protected] 
20572bd8b7e7S[email protected] int hci_local_ssp_activated(){
20583a9fb326S[email protected]     return hci_ssp_supported() && hci_stack->ssp_enable;
20592bd8b7e7S[email protected] }
20602bd8b7e7S[email protected] 
2061dbe1a790S[email protected] // if set, BTstack will respond to io capability request using authentication requirement
2062dbe1a790S[email protected] void hci_ssp_set_io_capability(int io_capability){
20633a9fb326S[email protected]     hci_stack->ssp_io_capability = io_capability;
2064dbe1a790S[email protected] }
2065dbe1a790S[email protected] void hci_ssp_set_authentication_requirement(int authentication_requirement){
20663a9fb326S[email protected]     hci_stack->ssp_authentication_requirement = authentication_requirement;
2067dbe1a790S[email protected] }
2068dbe1a790S[email protected] 
2069dbe1a790S[email protected] // if set, BTstack will confirm a numberic comparion and enter '000000' if requested
2070dbe1a790S[email protected] void hci_ssp_set_auto_accept(int auto_accept){
20713a9fb326S[email protected]     hci_stack->ssp_auto_accept = auto_accept;
2072dbe1a790S[email protected] }
2073dbe1a790S[email protected] 
20741cd208adSmatthias.ringwald /**
20751cd208adSmatthias.ringwald  * pre: numcmds >= 0 - it's allowed to send a command to the controller
20761cd208adSmatthias.ringwald  */
2077fe35119dSmatthias.ringwald int hci_send_cmd(const hci_cmd_t *cmd, ...){
20785127cc62S[email protected] 
2079d94d3cafS[email protected]     if (!hci_can_send_command_packet_now()){
20809d14b626S[email protected]         log_error("hci_send_cmd called but cannot send packet now");
20819d14b626S[email protected]         return 0;
20829d14b626S[email protected]     }
20839d14b626S[email protected] 
20845127cc62S[email protected]     // for HCI INITIALIZATION
20859da54300S[email protected]     // log_info("hci_send_cmd: opcode %04x", cmd->opcode);
20865127cc62S[email protected]     hci_stack->last_cmd_opcode = cmd->opcode;
20875127cc62S[email protected] 
20889d14b626S[email protected]     hci_reserve_packet_buffer();
20899d14b626S[email protected]     uint8_t * packet = hci_stack->hci_packet_buffer;
20909d14b626S[email protected] 
20911cd208adSmatthias.ringwald     va_list argptr;
20921cd208adSmatthias.ringwald     va_start(argptr, cmd);
20939d14b626S[email protected]     uint16_t size = hci_create_cmd_internal(packet, cmd, argptr);
20941cd208adSmatthias.ringwald     va_end(argptr);
20959d14b626S[email protected] 
20969d14b626S[email protected]     return hci_send_cmd_packet(packet, size);
209793b8dc03Smatthias.ringwald }
2098c8e4258aSmatthias.ringwald 
2099ee091cf1Smatthias.ringwald // Create various non-HCI events.
2100ee091cf1Smatthias.ringwald // TODO: generalize, use table similar to hci_create_command
2101ee091cf1Smatthias.ringwald 
2102c8e4258aSmatthias.ringwald void hci_emit_state(){
21033a9fb326S[email protected]     log_info("BTSTACK_EVENT_STATE %u", hci_stack->state);
2104425d1371Smatthias.ringwald     uint8_t event[3];
210580d52d6bSmatthias.ringwald     event[0] = BTSTACK_EVENT_STATE;
2106425d1371Smatthias.ringwald     event[1] = sizeof(event) - 2;
21073a9fb326S[email protected]     event[2] = hci_stack->state;
2108425d1371Smatthias.ringwald     hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
21093a9fb326S[email protected]     hci_stack->packet_handler(HCI_EVENT_PACKET, event, sizeof(event));
2110c8e4258aSmatthias.ringwald }
2111c8e4258aSmatthias.ringwald 
211217f1ba2aSmatthias.ringwald void hci_emit_connection_complete(hci_connection_t *conn, uint8_t status){
2113425d1371Smatthias.ringwald     uint8_t event[13];
2114c8e4258aSmatthias.ringwald     event[0] = HCI_EVENT_CONNECTION_COMPLETE;
2115425d1371Smatthias.ringwald     event[1] = sizeof(event) - 2;
211617f1ba2aSmatthias.ringwald     event[2] = status;
2117c8e4258aSmatthias.ringwald     bt_store_16(event, 3, conn->con_handle);
2118c8e4258aSmatthias.ringwald     bt_flip_addr(&event[5], conn->address);
2119c8e4258aSmatthias.ringwald     event[11] = 1; // ACL connection
2120c8e4258aSmatthias.ringwald     event[12] = 0; // encryption disabled
2121425d1371Smatthias.ringwald     hci_dump_packet(HCI_EVENT_PACKET, 0, event, sizeof(event));
21223a9fb326S[email protected]     hci_stack->packet_handler(HCI_EVENT_PACKET, event, sizeof(event));
2123c8e4258aSmatthias.ringwald }
2124c8e4258aSmatthias.ringwald 
21254f3229d8S[email protected] void hci_emit_le_connection_complete(hci_connection_t *conn, uint8_t status){
21264f3229d8S[email protected]     uint8_t event[21];
21274f3229d8S[email protected]     event[0] = HCI_EVENT_LE_META;
21284f3229d8S[email protected]     event[1] = sizeof(event) - 2;
21294f3229d8S[email protected]     event[2] = HCI_SUBEVENT_LE_CONNECTION_COMPLETE;
21304f3229d8S[email protected]     event[3] = status;
21314f3229d8S[email protected]     bt_store_16(event, 4, conn->con_handle);
21324f3229d8S[email protected]     event[6] = 0; // TODO: role
21334f3229d8S[email protected]     event[7] = conn->address_type;
21344f3229d8S[email protected]     bt_flip_addr(&event[8], conn->address);
21354f3229d8S[email protected]     bt_store_16(event, 14, 0); // interval
21364f3229d8S[email protected]     bt_store_16(event, 16, 0); // latency
21374f3229d8S[email protected]     bt_store_16(event, 18, 0); // supervision timeout
21384f3229d8S[email protected]     event[20] = 0; // master clock accuracy
21394f3229d8S[email protected]     hci_dump_packet(HCI_EVENT_PACKET, 0, event, sizeof(event));
21404f3229d8S[email protected]     hci_stack->packet_handler(HCI_EVENT_PACKET, event, sizeof(event));
21414f3229d8S[email protected] }
21424f3229d8S[email protected] 
21433c4d4b90Smatthias.ringwald void hci_emit_disconnection_complete(uint16_t handle, uint8_t reason){
2144425d1371Smatthias.ringwald     uint8_t event[6];
21453c4d4b90Smatthias.ringwald     event[0] = HCI_EVENT_DISCONNECTION_COMPLETE;
2146e518c4b8Smatthias.ringwald     event[1] = sizeof(event) - 2;
21473c4d4b90Smatthias.ringwald     event[2] = 0; // status = OK
21483c4d4b90Smatthias.ringwald     bt_store_16(event, 3, handle);
21493c4d4b90Smatthias.ringwald     event[5] = reason;
2150425d1371Smatthias.ringwald     hci_dump_packet(HCI_EVENT_PACKET, 0, event, sizeof(event));
21513a9fb326S[email protected]     hci_stack->packet_handler(HCI_EVENT_PACKET, event, sizeof(event));
21523c4d4b90Smatthias.ringwald }
21533c4d4b90Smatthias.ringwald 
2154ee091cf1Smatthias.ringwald void hci_emit_l2cap_check_timeout(hci_connection_t *conn){
215566fb9560S[email protected]     if (disable_l2cap_timeouts) return;
2156e0abb8e7S[email protected]     log_info("L2CAP_EVENT_TIMEOUT_CHECK");
2157425d1371Smatthias.ringwald     uint8_t event[4];
215880d52d6bSmatthias.ringwald     event[0] = L2CAP_EVENT_TIMEOUT_CHECK;
2159425d1371Smatthias.ringwald     event[1] = sizeof(event) - 2;
2160ee091cf1Smatthias.ringwald     bt_store_16(event, 2, conn->con_handle);
2161425d1371Smatthias.ringwald     hci_dump_packet(HCI_EVENT_PACKET, 0, event, sizeof(event));
21623a9fb326S[email protected]     hci_stack->packet_handler(HCI_EVENT_PACKET, event, sizeof(event));
2163ee091cf1Smatthias.ringwald }
216443bfb1bdSmatthias.ringwald 
216543bfb1bdSmatthias.ringwald void hci_emit_nr_connections_changed(){
2166e0abb8e7S[email protected]     log_info("BTSTACK_EVENT_NR_CONNECTIONS_CHANGED %u", nr_hci_connections());
2167425d1371Smatthias.ringwald     uint8_t event[3];
216880d52d6bSmatthias.ringwald     event[0] = BTSTACK_EVENT_NR_CONNECTIONS_CHANGED;
2169425d1371Smatthias.ringwald     event[1] = sizeof(event) - 2;
217043bfb1bdSmatthias.ringwald     event[2] = nr_hci_connections();
2171425d1371Smatthias.ringwald     hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
21723a9fb326S[email protected]     hci_stack->packet_handler(HCI_EVENT_PACKET, event, sizeof(event));
217343bfb1bdSmatthias.ringwald }
2174038bc64cSmatthias.ringwald 
2175038bc64cSmatthias.ringwald void hci_emit_hci_open_failed(){
2176e0abb8e7S[email protected]     log_info("BTSTACK_EVENT_POWERON_FAILED");
2177425d1371Smatthias.ringwald     uint8_t event[2];
217880d52d6bSmatthias.ringwald     event[0] = BTSTACK_EVENT_POWERON_FAILED;
2179425d1371Smatthias.ringwald     event[1] = sizeof(event) - 2;
2180425d1371Smatthias.ringwald     hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
21813a9fb326S[email protected]     hci_stack->packet_handler(HCI_EVENT_PACKET, event, sizeof(event));
2182038bc64cSmatthias.ringwald }
21831b0e3922Smatthias.ringwald 
218409ba8edeSmatthias.ringwald #ifndef EMBEDDED
21851b0e3922Smatthias.ringwald void hci_emit_btstack_version() {
2186e0abb8e7S[email protected]     log_info("BTSTACK_EVENT_VERSION %u.%u", BTSTACK_MAJOR, BTSTACK_MINOR);
2187425d1371Smatthias.ringwald     uint8_t event[6];
21881b0e3922Smatthias.ringwald     event[0] = BTSTACK_EVENT_VERSION;
2189425d1371Smatthias.ringwald     event[1] = sizeof(event) - 2;
2190425d1371Smatthias.ringwald     event[2] = BTSTACK_MAJOR;
2191425d1371Smatthias.ringwald     event[3] = BTSTACK_MINOR;
2192425d1371Smatthias.ringwald     bt_store_16(event, 4, BTSTACK_REVISION);
2193425d1371Smatthias.ringwald     hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
21943a9fb326S[email protected]     hci_stack->packet_handler(HCI_EVENT_PACKET, event, sizeof(event));
21951b0e3922Smatthias.ringwald }
219609ba8edeSmatthias.ringwald #endif
21971b0e3922Smatthias.ringwald 
21982ed6235cSmatthias.ringwald void hci_emit_system_bluetooth_enabled(uint8_t enabled){
2199e0abb8e7S[email protected]     log_info("BTSTACK_EVENT_SYSTEM_BLUETOOTH_ENABLED %u", enabled);
2200425d1371Smatthias.ringwald     uint8_t event[3];
22012ed6235cSmatthias.ringwald     event[0] = BTSTACK_EVENT_SYSTEM_BLUETOOTH_ENABLED;
2202425d1371Smatthias.ringwald     event[1] = sizeof(event) - 2;
22032ed6235cSmatthias.ringwald     event[2] = enabled;
2204425d1371Smatthias.ringwald     hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
22053a9fb326S[email protected]     hci_stack->packet_handler(HCI_EVENT_PACKET, event, sizeof(event));
22062ed6235cSmatthias.ringwald }
2207627c2f45Smatthias.ringwald 
2208627c2f45Smatthias.ringwald void hci_emit_remote_name_cached(bd_addr_t *addr, device_name_t *name){
2209e0abb8e7S[email protected]     uint8_t event[2+1+6+248+1]; // +1 for \0 in log_info
2210627c2f45Smatthias.ringwald     event[0] = BTSTACK_EVENT_REMOTE_NAME_CACHED;
2211e0abb8e7S[email protected]     event[1] = sizeof(event) - 2 - 1;
2212f653b6bdSmatthias.ringwald     event[2] = 0;   // just to be compatible with HCI_EVENT_REMOTE_NAME_REQUEST_COMPLETE
22132f89d309Smatthias.ringwald     bt_flip_addr(&event[3], *addr);
2214f653b6bdSmatthias.ringwald     memcpy(&event[9], name, 248);
2215e0abb8e7S[email protected] 
2216e0abb8e7S[email protected]     event[9+248] = 0;   // assert \0 for log_info
2217e0abb8e7S[email protected]     log_info("BTSTACK_EVENT_REMOTE_NAME_CACHED %s = '%s'", bd_addr_to_str(*addr), &event[9]);
2218e0abb8e7S[email protected] 
2219e0abb8e7S[email protected]     hci_dump_packet(HCI_EVENT_PACKET, 0, event, sizeof(event)-1);
22203a9fb326S[email protected]     hci_stack->packet_handler(HCI_EVENT_PACKET, event, sizeof(event)-1);
2221627c2f45Smatthias.ringwald }
2222381fbed8Smatthias.ringwald 
2223381fbed8Smatthias.ringwald void hci_emit_discoverable_enabled(uint8_t enabled){
2224e0abb8e7S[email protected]     log_info("BTSTACK_EVENT_DISCOVERABLE_ENABLED %u", enabled);
2225425d1371Smatthias.ringwald     uint8_t event[3];
2226381fbed8Smatthias.ringwald     event[0] = BTSTACK_EVENT_DISCOVERABLE_ENABLED;
2227425d1371Smatthias.ringwald     event[1] = sizeof(event) - 2;
2228381fbed8Smatthias.ringwald     event[2] = enabled;
2229425d1371Smatthias.ringwald     hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
22303a9fb326S[email protected]     hci_stack->packet_handler(HCI_EVENT_PACKET, event, sizeof(event));
2231381fbed8Smatthias.ringwald }
2232458bf4e8S[email protected] 
2233a00031e2S[email protected] void hci_emit_security_level(hci_con_handle_t con_handle, gap_security_level_t level){
2234df3354fcS[email protected]     log_info("hci_emit_security_level %u for handle %x", level, con_handle);
2235a00031e2S[email protected]     uint8_t event[5];
2236e00caf9cS[email protected]     int pos = 0;
2237a00031e2S[email protected]     event[pos++] = GAP_SECURITY_LEVEL;
2238e00caf9cS[email protected]     event[pos++] = sizeof(event) - 2;
2239a00031e2S[email protected]     bt_store_16(event, 2, con_handle);
2240e00caf9cS[email protected]     pos += 2;
2241e00caf9cS[email protected]     event[pos++] = level;
2242e00caf9cS[email protected]     hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
22433a9fb326S[email protected]     hci_stack->packet_handler(HCI_EVENT_PACKET, event, sizeof(event));
2244e00caf9cS[email protected] }
2245e00caf9cS[email protected] 
22461bd5283dS[email protected] void hci_emit_dedicated_bonding_result(bd_addr_t address, uint8_t status){
2247ad83dc6aS[email protected]     log_info("hci_emit_dedicated_bonding_result %u ", status);
2248ad83dc6aS[email protected]     uint8_t event[9];
2249ad83dc6aS[email protected]     int pos = 0;
2250ad83dc6aS[email protected]     event[pos++] = GAP_DEDICATED_BONDING_COMPLETED;
2251ad83dc6aS[email protected]     event[pos++] = sizeof(event) - 2;
2252ad83dc6aS[email protected]     event[pos++] = status;
22531bd5283dS[email protected]     bt_flip_addr( * (bd_addr_t *) &event[pos], address);
2254ad83dc6aS[email protected]     pos += 6;
2255ad83dc6aS[email protected]     hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
22563a9fb326S[email protected]     hci_stack->packet_handler(HCI_EVENT_PACKET, event, sizeof(event));
2257ad83dc6aS[email protected] }
2258ad83dc6aS[email protected] 
22592bd8b7e7S[email protected] // query if remote side supports SSP
22602bd8b7e7S[email protected] int hci_remote_ssp_supported(hci_con_handle_t con_handle){
22612bd8b7e7S[email protected]     hci_connection_t * connection = hci_connection_for_handle(con_handle);
22622bd8b7e7S[email protected]     if (!connection) return 0;
22632bd8b7e7S[email protected]     return (connection->bonding_flags & BONDING_REMOTE_SUPPORTS_SSP) ? 1 : 0;
22642bd8b7e7S[email protected] }
22652bd8b7e7S[email protected] 
2266df3354fcS[email protected] int hci_ssp_supported_on_both_sides(hci_con_handle_t handle){
2267df3354fcS[email protected]     return hci_local_ssp_activated() && hci_remote_ssp_supported(handle);
2268df3354fcS[email protected] }
2269df3354fcS[email protected] 
2270458bf4e8S[email protected] // GAP API
2271458bf4e8S[email protected] /**
2272458bf4e8S[email protected]  * @bbrief enable/disable bonding. default is enabled
2273458bf4e8S[email protected]  * @praram enabled
2274458bf4e8S[email protected]  */
22754c57c146S[email protected] void gap_set_bondable_mode(int enable){
22763a9fb326S[email protected]     hci_stack->bondable = enable ? 1 : 0;
2277458bf4e8S[email protected] }
2278cb230b9dS[email protected] 
2279cb230b9dS[email protected] /**
228034d2123cS[email protected]  * @brief map link keys to security levels
2281cb230b9dS[email protected]  */
228234d2123cS[email protected] gap_security_level_t gap_security_level_for_link_key_type(link_key_type_t link_key_type){
228334d2123cS[email protected]     switch (link_key_type){
22843c68dfa9S[email protected]         case AUTHENTICATED_COMBINATION_KEY_GENERATED_FROM_P256:
22853c68dfa9S[email protected]             return LEVEL_4;
22863c68dfa9S[email protected]         case COMBINATION_KEY:
22873c68dfa9S[email protected]         case AUTHENTICATED_COMBINATION_KEY_GENERATED_FROM_P192:
22883c68dfa9S[email protected]             return LEVEL_3;
22893c68dfa9S[email protected]         default:
22903c68dfa9S[email protected]             return LEVEL_2;
22913c68dfa9S[email protected]     }
2292cb230b9dS[email protected] }
2293cb230b9dS[email protected] 
2294a00031e2S[email protected] static gap_security_level_t gap_security_level_for_connection(hci_connection_t * connection){
229534d2123cS[email protected]     if (!connection) return LEVEL_0;
229634d2123cS[email protected]     if ((connection->authentication_flags & CONNECTION_ENCRYPTED) == 0) return LEVEL_0;
229734d2123cS[email protected]     return gap_security_level_for_link_key_type(connection->link_key_type);
229834d2123cS[email protected] }
229934d2123cS[email protected] 
230034d2123cS[email protected] 
2301106d6d11S[email protected] int gap_mitm_protection_required_for_security_level(gap_security_level_t level){
23025127cc62S[email protected]     log_info("gap_mitm_protection_required_for_security_level %u", level);
2303106d6d11S[email protected]     return level > LEVEL_2;
2304106d6d11S[email protected] }
2305106d6d11S[email protected] 
230634d2123cS[email protected] /**
230734d2123cS[email protected]  * @brief get current security level
230834d2123cS[email protected]  */
230934d2123cS[email protected] gap_security_level_t gap_security_level(hci_con_handle_t con_handle){
231034d2123cS[email protected]     hci_connection_t * connection = hci_connection_for_handle(con_handle);
231134d2123cS[email protected]     if (!connection) return LEVEL_0;
231234d2123cS[email protected]     return gap_security_level_for_connection(connection);
231334d2123cS[email protected] }
231434d2123cS[email protected] 
2315cb230b9dS[email protected] /**
2316cb230b9dS[email protected]  * @brief request connection to device to
2317cb230b9dS[email protected]  * @result GAP_AUTHENTICATION_RESULT
2318cb230b9dS[email protected]  */
231934d2123cS[email protected] void gap_request_security_level(hci_con_handle_t con_handle, gap_security_level_t requested_level){
232034d2123cS[email protected]     hci_connection_t * connection = hci_connection_for_handle(con_handle);
232134d2123cS[email protected]     if (!connection){
2322a00031e2S[email protected]         hci_emit_security_level(con_handle, LEVEL_0);
232334d2123cS[email protected]         return;
232434d2123cS[email protected]     }
232534d2123cS[email protected]     gap_security_level_t current_level = gap_security_level(con_handle);
232634d2123cS[email protected]     log_info("gap_request_security_level %u, current level %u", requested_level, current_level);
232734d2123cS[email protected]     if (current_level >= requested_level){
2328a00031e2S[email protected]         hci_emit_security_level(con_handle, current_level);
232934d2123cS[email protected]         return;
233034d2123cS[email protected]     }
2331a00031e2S[email protected] 
233234d2123cS[email protected]     connection->requested_security_level = requested_level;
2333a00031e2S[email protected] 
2334fb8ba0dbS[email protected]     // would enabling ecnryption suffice (>= LEVEL_2)?
23353a9fb326S[email protected]     if (hci_stack->remote_device_db){
2336a00031e2S[email protected]         link_key_type_t link_key_type;
2337a00031e2S[email protected]         link_key_t      link_key;
23383a9fb326S[email protected]         if (hci_stack->remote_device_db->get_link_key( &connection->address, &link_key, &link_key_type)){
2339a00031e2S[email protected]             if (gap_security_level_for_link_key_type(link_key_type) >= requested_level){
2340a00031e2S[email protected]                 connection->bonding_flags |= BONDING_SEND_ENCRYPTION_REQUEST;
2341a00031e2S[email protected]                 return;
2342a00031e2S[email protected]             }
2343a00031e2S[email protected]         }
2344a00031e2S[email protected]     }
2345a00031e2S[email protected] 
23461eb2563eS[email protected]     // try to authenticate connection
23471eb2563eS[email protected]     connection->bonding_flags |= BONDING_SEND_AUTHENTICATE_REQUEST;
2348e80b2cf9S[email protected]     hci_run();
2349e00caf9cS[email protected] }
2350ad83dc6aS[email protected] 
2351ad83dc6aS[email protected] /**
2352ad83dc6aS[email protected]  * @brief start dedicated bonding with device. disconnect after bonding
2353ad83dc6aS[email protected]  * @param device
2354ad83dc6aS[email protected]  * @param request MITM protection
2355ad83dc6aS[email protected]  * @result GAP_DEDICATED_BONDING_COMPLETE
2356ad83dc6aS[email protected]  */
2357ad83dc6aS[email protected] int gap_dedicated_bonding(bd_addr_t device, int mitm_protection_required){
2358ad83dc6aS[email protected] 
2359ad83dc6aS[email protected]     // create connection state machine
236096a45072S[email protected]     hci_connection_t * connection = create_connection_for_bd_addr_and_type(device, BD_ADDR_TYPE_CLASSIC);
2361ad83dc6aS[email protected] 
2362ad83dc6aS[email protected]     if (!connection){
2363ad83dc6aS[email protected]         return BTSTACK_MEMORY_ALLOC_FAILED;
2364ad83dc6aS[email protected]     }
2365ad83dc6aS[email protected] 
2366ad83dc6aS[email protected]     // delete linkn key
2367ad83dc6aS[email protected]     hci_drop_link_key_for_bd_addr( (bd_addr_t *) &device);
2368ad83dc6aS[email protected] 
2369ad83dc6aS[email protected]     // configure LEVEL_2/3, dedicated bonding
2370ad83dc6aS[email protected]     connection->state = SEND_CREATE_CONNECTION;
2371ad83dc6aS[email protected]     connection->requested_security_level = mitm_protection_required ? LEVEL_3 : LEVEL_2;
23725127cc62S[email protected]     log_info("gap_dedicated_bonding, mitm %u -> level %u", mitm_protection_required, connection->requested_security_level);
2373ad83dc6aS[email protected]     connection->bonding_flags = BONDING_DEDICATED;
2374ad83dc6aS[email protected] 
2375ad83dc6aS[email protected]     // wait for GAP Security Result and send GAP Dedicated Bonding complete
2376ad83dc6aS[email protected] 
2377ad83dc6aS[email protected]     // handle: connnection failure (connection complete != ok)
2378ad83dc6aS[email protected]     // handle: authentication failure
2379ad83dc6aS[email protected]     // handle: disconnect on done
2380ad83dc6aS[email protected] 
2381ad83dc6aS[email protected]     hci_run();
2382ad83dc6aS[email protected] 
2383ad83dc6aS[email protected]     return 0;
2384ad83dc6aS[email protected] }
23858e618f72S[email protected] 
23868e618f72S[email protected] void gap_set_local_name(const char * local_name){
23878e618f72S[email protected]     hci_stack->local_name = local_name;
23888e618f72S[email protected] }
23898e618f72S[email protected] 
23907bdc6798S[email protected] le_command_status_t le_central_start_scan(){
239136af3e18S[email protected]     if (hci_stack->le_scanning_state == LE_SCANNING) return BLE_PERIPHERAL_OK;
23927bdc6798S[email protected]     hci_stack->le_scanning_state = LE_START_SCAN;
23937bdc6798S[email protected]     hci_run();
23947bdc6798S[email protected]     return BLE_PERIPHERAL_OK;
23957bdc6798S[email protected] }
23968e618f72S[email protected] 
23977bdc6798S[email protected] le_command_status_t le_central_stop_scan(){
239836af3e18S[email protected]     if ( hci_stack->le_scanning_state == LE_SCAN_IDLE) return BLE_PERIPHERAL_OK;
23997bdc6798S[email protected]     hci_stack->le_scanning_state = LE_STOP_SCAN;
24007bdc6798S[email protected]     hci_run();
24017bdc6798S[email protected]     return BLE_PERIPHERAL_OK;
24027bdc6798S[email protected] }
24034f3229d8S[email protected] 
2404ef11999fSmatthias.ringwald void le_central_set_scan_parameters(uint8_t scan_type, uint16_t scan_interval, uint16_t scan_window){
2405ef11999fSmatthias.ringwald     hci_stack->le_scan_type     = scan_type;
2406ef11999fSmatthias.ringwald     hci_stack->le_scan_interval = scan_interval;
2407ef11999fSmatthias.ringwald     hci_stack->le_scan_window   = scan_window;
2408ef11999fSmatthias.ringwald     hci_run();
2409ef11999fSmatthias.ringwald }
24104f3229d8S[email protected] 
24114f3229d8S[email protected] le_command_status_t le_central_connect(bd_addr_t * addr, bd_addr_type_t addr_type){
24124f3229d8S[email protected]     hci_connection_t * conn = hci_connection_for_bd_addr_and_type(addr, addr_type);
24134f3229d8S[email protected]     if (!conn){
24141f479f8cS[email protected]         log_info("le_central_connect: no connection exists yet, creating context");
24154f3229d8S[email protected]         conn = create_connection_for_bd_addr_and_type(*addr, addr_type);
24164f3229d8S[email protected]         if (!conn){
24174f3229d8S[email protected]             // notify client that alloc failed
24184f3229d8S[email protected]             hci_emit_le_connection_complete(conn, BTSTACK_MEMORY_ALLOC_FAILED);
24191f479f8cS[email protected]             log_info("le_central_connect: failed to alloc context");
24204f3229d8S[email protected]             return BLE_PERIPHERAL_NOT_CONNECTED; // don't sent packet to controller
24214f3229d8S[email protected]         }
24224f3229d8S[email protected]         conn->state = SEND_CREATE_CONNECTION;
24231f479f8cS[email protected]         log_info("le_central_connect: send create connection next");
2424564fca32S[email protected]         hci_run();
24254f3229d8S[email protected]         return BLE_PERIPHERAL_OK;
24264f3229d8S[email protected]     }
24270bf6344aS[email protected] 
24280bf6344aS[email protected]     if (!hci_is_le_connection(conn) ||
24290bf6344aS[email protected]         conn->state == SEND_CREATE_CONNECTION ||
24300bf6344aS[email protected]         conn->state == SENT_CREATE_CONNECTION) {
24310bf6344aS[email protected]         hci_emit_le_connection_complete(conn, ERROR_CODE_COMMAND_DISALLOWED);
24321f479f8cS[email protected]         log_error("le_central_connect: classic connection or connect is already being created");
24330bf6344aS[email protected]         return BLE_PERIPHERAL_IN_WRONG_STATE;
24340bf6344aS[email protected]     }
24350bf6344aS[email protected] 
24361f479f8cS[email protected]     log_info("le_central_connect: context exists with state %u", conn->state);
24374f3229d8S[email protected]     hci_emit_le_connection_complete(conn, 0);
24384f3229d8S[email protected]     hci_run();
24394f3229d8S[email protected]     return BLE_PERIPHERAL_OK;
24404f3229d8S[email protected] }
24414f3229d8S[email protected] 
24427851196eSmatthias.ringwald // @assumption: only a single outgoing LE Connection exists
24437851196eSmatthias.ringwald static hci_connection_t * le_central_get_outgoing_connection(){
24440bf6344aS[email protected]     linked_item_t *it;
24450bf6344aS[email protected]     for (it = (linked_item_t *) hci_stack->connections; it ; it = it->next){
24460bf6344aS[email protected]         hci_connection_t * conn = (hci_connection_t *) it;
24470bf6344aS[email protected]         if (!hci_is_le_connection(conn)) continue;
24480bf6344aS[email protected]         switch (conn->state){
2449a6725849S[email protected]             case SEND_CREATE_CONNECTION:
24507851196eSmatthias.ringwald             case SENT_CREATE_CONNECTION:
24517851196eSmatthias.ringwald                 return conn;
24527851196eSmatthias.ringwald             default:
24537851196eSmatthias.ringwald                 break;
24547851196eSmatthias.ringwald         };
24557851196eSmatthias.ringwald     }
24567851196eSmatthias.ringwald     return NULL;
24577851196eSmatthias.ringwald }
24587851196eSmatthias.ringwald 
24597851196eSmatthias.ringwald le_command_status_t le_central_connect_cancel(){
24607851196eSmatthias.ringwald     hci_connection_t * conn = le_central_get_outgoing_connection();
24617851196eSmatthias.ringwald     switch (conn->state){
24627851196eSmatthias.ringwald         case SEND_CREATE_CONNECTION:
24637851196eSmatthias.ringwald             // skip sending create connection and emit event instead
24640bf6344aS[email protected]             hci_emit_le_connection_complete(conn, ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER);
24657851196eSmatthias.ringwald             linked_list_remove(&hci_stack->connections, (linked_item_t *) conn);
24667851196eSmatthias.ringwald             btstack_memory_hci_connection_free( conn );
24670bf6344aS[email protected]             break;
2468a6725849S[email protected]         case SENT_CREATE_CONNECTION:
24697851196eSmatthias.ringwald             // request to send cancel connection
24700bf6344aS[email protected]             conn->state = SEND_CANCEL_CONNECTION;
24710bf6344aS[email protected]             hci_run();
24720bf6344aS[email protected]             break;
24730bf6344aS[email protected]         default:
24740bf6344aS[email protected]             break;
24750bf6344aS[email protected]     }
2476e31f89a7S[email protected]     return BLE_PERIPHERAL_OK;
2477e31f89a7S[email protected] }
24784f3229d8S[email protected] 
2479c37a3166S[email protected] /**
2480c37a3166S[email protected]  * @brief Updates the connection parameters for a given LE connection
2481c37a3166S[email protected]  * @param handle
2482c37a3166S[email protected]  * @param conn_interval_min (unit: 1.25ms)
2483c37a3166S[email protected]  * @param conn_interval_max (unit: 1.25ms)
2484c37a3166S[email protected]  * @param conn_latency
2485c37a3166S[email protected]  * @param supervision_timeout (unit: 10ms)
2486c37a3166S[email protected]  * @returns 0 if ok
2487c37a3166S[email protected]  */
2488c37a3166S[email protected] int gap_update_connection_parameters(hci_con_handle_t con_handle, uint16_t conn_interval_min,
2489c37a3166S[email protected]     uint16_t conn_interval_max, uint16_t conn_latency, uint16_t supervision_timeout){
2490c37a3166S[email protected]     hci_connection_t * connection = hci_connection_for_handle(con_handle);
2491c37a3166S[email protected]     if (!connection) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
2492c37a3166S[email protected]     connection->le_conn_interval_min = conn_interval_min;
2493c37a3166S[email protected]     connection->le_conn_interval_max = conn_interval_max;
2494c37a3166S[email protected]     connection->le_conn_latency = conn_latency;
2495c37a3166S[email protected]     connection->le_supervision_timeout = supervision_timeout;
2496c37a3166S[email protected]     return 0;
2497c37a3166S[email protected] }
2498c37a3166S[email protected] 
24995917a5c5S[email protected] le_command_status_t gap_disconnect(hci_con_handle_t handle){
25005917a5c5S[email protected]     hci_connection_t * conn = hci_connection_for_handle(handle);
25015917a5c5S[email protected]     if (!conn){
25027851196eSmatthias.ringwald         hci_emit_disconnection_complete(handle, 0);
25035917a5c5S[email protected]         return BLE_PERIPHERAL_OK;
25045917a5c5S[email protected]     }
25055917a5c5S[email protected]     conn->state = SEND_DISCONNECT;
25065917a5c5S[email protected]     hci_run();
25074f3229d8S[email protected]     return BLE_PERIPHERAL_OK;
25084f3229d8S[email protected] }
250904a6ef8cSmatthias.ringwald 
251004a6ef8cSmatthias.ringwald void hci_disconnect_all(){
251104a6ef8cSmatthias.ringwald     linked_list_iterator_t it;
251204a6ef8cSmatthias.ringwald     linked_list_iterator_init(&it, &hci_stack->connections);
251304a6ef8cSmatthias.ringwald     while (linked_list_iterator_has_next(&it)){
251404a6ef8cSmatthias.ringwald         hci_connection_t * con = (hci_connection_t*) linked_list_iterator_next(&it);
251504a6ef8cSmatthias.ringwald         if (con->state == SENT_DISCONNECT) continue;
251604a6ef8cSmatthias.ringwald         con->state = SEND_DISCONNECT;
251704a6ef8cSmatthias.ringwald     }
2518d31fba26S[email protected]     hci_run();
251904a6ef8cSmatthias.ringwald }
2520