xref: /btstack/src/hci.h (revision 2b552b2306fa072c814a621715edcba6eda58f3e)
1 /*
2  * Copyright (C) 2009-2012 by Matthias Ringwald
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  *
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. Neither the name of the copyright holders nor the names of
14  *    contributors may be used to endorse or promote products derived
15  *    from this software without specific prior written permission.
16  * 4. Any redistribution, use, or modification is done solely for
17  *    personal benefit and not for any commercial purpose or for
18  *    monetary gain.
19  *
20  * THIS SOFTWARE IS PROVIDED BY MATTHIAS RINGWALD AND CONTRIBUTORS
21  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL MATTHIAS
24  * RINGWALD OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
25  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
26  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
27  * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
28  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
29  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
30  * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  *
33  * Please inquire about commercial licensing options at [email protected]
34  *
35  */
36 
37 /*
38  *  hci.h
39  *
40  *  Created by Matthias Ringwald on 4/29/09.
41  *
42  */
43 
44 #ifndef __HCI_H
45 #define __HCI_H
46 
47 #include "btstack-config.h"
48 
49 #include <btstack/hci_cmds.h>
50 #include <btstack/utils.h>
51 #include "hci_transport.h"
52 #include "bt_control.h"
53 #include "remote_device_db.h"
54 
55 #include <stdint.h>
56 #include <stdlib.h>
57 #include <stdarg.h>
58 
59 #if defined __cplusplus
60 extern "C" {
61 #endif
62 
63 // packet header sizes
64 #define HCI_CMD_HEADER_SIZE          3
65 #define HCI_ACL_HEADER_SIZE   	     4
66 #define HCI_SCO_HEADER_SIZE  	     3
67 #define HCI_EVENT_HEADER_SIZE        2
68 
69 // packet sizes (max payload)
70 #define HCI_ACL_DM1_SIZE            17
71 #define HCI_ACL_DH1_SIZE            27
72 #define HCI_ACL_2DH1_SIZE           54
73 #define HCI_ACL_3DH1_SIZE           83
74 #define HCI_ACL_DM3_SIZE           121
75 #define HCI_ACL_DH3_SIZE           183
76 #define HCI_ACL_DM5_SIZE           224
77 #define HCI_ACL_DH5_SIZE           339
78 #define HCI_ACL_2DH3_SIZE          367
79 #define HCI_ACL_3DH3_SIZE          552
80 #define HCI_ACL_2DH5_SIZE          679
81 #define HCI_ACL_3DH5_SIZE         1021
82 
83 #define HCI_EVENT_PAYLOAD_SIZE     255
84 #define HCI_CMD_PAYLOAD_SIZE       255
85 
86 // packet buffer sizes
87 // HCI_ACL_PAYLOAD_SIZE is configurable and defined in config.h
88 #define HCI_EVENT_BUFFER_SIZE      (HCI_EVENT_HEADER_SIZE + HCI_EVENT_PAYLOAD_SIZE)
89 #define HCI_CMD_BUFFER_SIZE        (HCI_CMD_HEADER_SIZE   + HCI_CMD_PAYLOAD_SIZE)
90 #define HCI_ACL_BUFFER_SIZE        (HCI_ACL_HEADER_SIZE   + HCI_ACL_PAYLOAD_SIZE)
91 
92 // size of hci buffers, big enough for command, event, or acl packet without H4 packet type
93 // @note cmd buffer is bigger than event buffer
94 #ifdef HCI_PACKET_BUFFER_SIZE
95     #if HCI_PACKET_BUFFER_SIZE < HCI_ACL_BUFFER_SIZE
96         #error HCI_PACKET_BUFFER_SIZE must be equal or larger than HCI_ACL_BUFFER_SIZE
97     #endif
98     #if HCI_PACKET_BUFFER_SIZE < HCI_CMD_BUFFER_SIZE
99         #error HCI_PACKET_BUFFER_SIZE must be equal or larger than HCI_CMD_BUFFER_SIZE
100     #endif
101 #else
102     #if HCI_ACL_BUFFER_SIZE > HCI_CMD_BUFFER_SIZE
103         #define HCI_PACKET_BUFFER_SIZE HCI_ACL_BUFFER_SIZE
104     #else
105         #define HCI_PACKET_BUFFER_SIZE HCI_CMD_BUFFER_SIZE
106     #endif
107 #endif
108 
109 // OGFs
110 #define OGF_LINK_CONTROL          0x01
111 #define OGF_LINK_POLICY           0x02
112 #define OGF_CONTROLLER_BASEBAND   0x03
113 #define OGF_INFORMATIONAL_PARAMETERS 0x04
114 #define OGF_LE_CONTROLLER 0x08
115 #define OGF_BTSTACK 0x3d
116 #define OGF_VENDOR  0x3f
117 
118 // cmds for BTstack
119 // get state: @returns HCI_STATE
120 #define BTSTACK_GET_STATE                                  0x01
121 
122 // set power mode: @param HCI_POWER_MODE
123 #define BTSTACK_SET_POWER_MODE                             0x02
124 
125 // set capture mode: @param on
126 #define BTSTACK_SET_ACL_CAPTURE_MODE                       0x03
127 
128 // get BTstack version
129 #define BTSTACK_GET_VERSION                                0x04
130 
131 // get system Bluetooth state
132 #define BTSTACK_GET_SYSTEM_BLUETOOTH_ENABLED               0x05
133 
134 // set system Bluetooth state
135 #define BTSTACK_SET_SYSTEM_BLUETOOTH_ENABLED               0x06
136 
137 // enable inquiry scan for this client
138 #define BTSTACK_SET_DISCOVERABLE                           0x07
139 
140 // set global Bluetooth state
141 #define BTSTACK_SET_BLUETOOTH_ENABLED                      0x08
142 
143 // create l2cap channel: @param bd_addr(48), psm (16)
144 #define L2CAP_CREATE_CHANNEL                               0x20
145 
146 // disconnect l2cap disconnect, @param channel(16), reason(8)
147 #define L2CAP_DISCONNECT                                   0x21
148 
149 // register l2cap service: @param psm(16), mtu (16)
150 #define L2CAP_REGISTER_SERVICE                             0x22
151 
152 // unregister l2cap disconnect, @param psm(16)
153 #define L2CAP_UNREGISTER_SERVICE                           0x23
154 
155 // accept connection @param bd_addr(48), dest cid (16)
156 #define L2CAP_ACCEPT_CONNECTION                            0x24
157 
158 // decline l2cap disconnect,@param bd_addr(48), dest cid (16), reason(8)
159 #define L2CAP_DECLINE_CONNECTION                           0x25
160 
161 // create l2cap channel: @param bd_addr(48), psm (16), mtu (16)
162 #define L2CAP_CREATE_CHANNEL_MTU                           0x26
163 
164 // register SDP Service Record: service record (size)
165 #define SDP_REGISTER_SERVICE_RECORD                        0x30
166 
167 // unregister SDP Service Record
168 #define SDP_UNREGISTER_SERVICE_RECORD                      0x31
169 
170 // Get remote RFCOMM services
171 #define SDP_CLIENT_QUERY_RFCOMM_SERVICES                   0x32
172 
173 // Get remote SDP services
174 #define SDP_CLIENT_QUERY_SERVICES                          0x33
175 
176 // RFCOMM "HCI" Commands
177 #define RFCOMM_CREATE_CHANNEL       0x40
178 #define RFCOMM_DISCONNECT			0x41
179 #define RFCOMM_REGISTER_SERVICE     0x42
180 #define RFCOMM_UNREGISTER_SERVICE   0x43
181 #define RFCOMM_ACCEPT_CONNECTION    0x44
182 #define RFCOMM_DECLINE_CONNECTION   0x45
183 #define RFCOMM_PERSISTENT_CHANNEL   0x46
184 #define RFCOMM_CREATE_CHANNEL_WITH_CREDITS   0x47
185 #define RFCOMM_REGISTER_SERVICE_WITH_CREDITS 0x48
186 #define RFCOMM_GRANT_CREDITS                 0x49
187 
188 // GAP Classic 0x50
189 #define GAP_DISCONNECT              0x50
190 
191 // GAP LE      0x60
192 #define GAP_LE_SCAN_START           0x60
193 #define GAP_LE_SCAN_STOP            0x61
194 #define GAP_LE_CONNECT              0x62
195 
196 // GATT (Client) 0x70
197 #define GATT_START                  0x70
198 #define GATT_STOP                   0x71
199 #define GATT_DISCOVER_ALL_PRIMARY_SERVICES 0x72
200 
201 //
202 #define IS_COMMAND(packet, command) (READ_BT_16(packet,0) == command.opcode)
203 
204 // data: event(8)
205 #define DAEMON_EVENT_CONNECTION_OPENED                     0x50
206 
207 // data: event(8)
208 #define DAEMON_EVENT_CONNECTION_CLOSED                     0x51
209 
210 // data: event(8), nr_connections(8)
211 #define DAEMON_NR_CONNECTIONS_CHANGED                      0x52
212 
213 // data: event(8)
214 #define DAEMON_EVENT_NEW_RFCOMM_CREDITS                    0x53
215 
216 // data: event()
217 #define DAEMON_EVENT_HCI_PACKET_SENT                       0x54
218 
219 /**
220  * Connection State
221  */
222 typedef enum {
223     AUTH_FLAGS_NONE                = 0x0000,
224     RECV_LINK_KEY_REQUEST          = 0x0001,
225     HANDLE_LINK_KEY_REQUEST        = 0x0002,
226     SENT_LINK_KEY_REPLY            = 0x0004,
227     SENT_LINK_KEY_NEGATIVE_REQUEST = 0x0008,
228     RECV_LINK_KEY_NOTIFICATION     = 0x0010,
229     DENY_PIN_CODE_REQUEST          = 0x0040,
230     RECV_IO_CAPABILITIES_REQUEST   = 0x0080,
231     SEND_IO_CAPABILITIES_REPLY     = 0x0100,
232     SEND_USER_CONFIRM_REPLY        = 0x0200,
233     SEND_USER_PASSKEY_REPLY        = 0x0400,
234 
235     // pairing status
236     LEGACY_PAIRING_ACTIVE          = 0x2000,
237     SSP_PAIRING_ACTIVE             = 0x4000,
238 
239     // connection status
240     CONNECTION_ENCRYPTED           = 0x8000,
241 } hci_authentication_flags_t;
242 
243 typedef enum {
244     SEND_CREATE_CONNECTION = 0,
245     SENT_CREATE_CONNECTION,
246     RECEIVED_CONNECTION_REQUEST,
247     ACCEPTED_CONNECTION_REQUEST,
248     REJECTED_CONNECTION_REQUEST,
249     OPEN,
250     SEND_DISCONNECT,
251     SENT_DISCONNECT
252 } CONNECTION_STATE;
253 
254 typedef enum {
255     BONDING_REQUEST_REMOTE_FEATURES   = 0x01,
256     BONDING_RECEIVED_REMOTE_FEATURES  = 0x02,
257     BONDING_REMOTE_SUPPORTS_SSP       = 0x04,
258     BONDING_DISCONNECT_SECURITY_BLOCK = 0x08,
259     BONDING_DISCONNECT_DEDICATED_DONE = 0x10,
260     BONDING_SEND_AUTHENTICATE_REQUEST = 0x20,
261     BONDING_SEND_ENCRYPTION_REQUEST   = 0x40,
262     BONDING_DEDICATED                 = 0x80,
263 } bonding_flags_t;
264 
265 typedef enum {
266     BLUETOOTH_OFF = 1,
267     BLUETOOTH_ON,
268     BLUETOOTH_ACTIVE
269 } BLUETOOTH_STATE;
270 
271 // le central scanning state
272 typedef enum {
273     LE_SCAN_IDLE,
274     LE_START_SCAN,
275     LE_SCANNING,
276     LE_STOP_SCAN,
277 } le_scanning_state_t;
278 
279 
280 typedef struct {
281     // linked list - assert: first field
282     linked_item_t    item;
283 
284     // remote side
285     bd_addr_t address;
286 
287     // module handle
288     hci_con_handle_t con_handle;
289 
290     // le public, le random, classic
291     bd_addr_type_t address_type;
292 
293     // connection state
294     CONNECTION_STATE state;
295 
296     // bonding
297     uint16_t bonding_flags;
298 
299     // requested security level
300     gap_security_level_t requested_security_level;
301 
302     //
303     link_key_type_t link_key_type;
304 
305     // errands
306     uint32_t authentication_flags;
307 
308     timer_source_t timeout;
309 
310 #ifdef HAVE_TIME
311     // timer
312     struct timeval timestamp;
313 #endif
314 #ifdef HAVE_TICK
315     uint32_t timestamp; // timeout in system ticks
316 #endif
317 
318     // ACL packet recombination - ACL Header + ACL payload
319     uint8_t  acl_recombination_buffer[4 + HCI_ACL_BUFFER_SIZE];
320     uint16_t acl_recombination_pos;
321     uint16_t acl_recombination_length;
322 
323     // number ACL packets sent to controller
324     uint8_t num_acl_packets_sent;
325 } hci_connection_t;
326 
327 
328 /**
329  * main data structure
330  */
331 typedef struct {
332     // transport component with configuration
333     hci_transport_t  * hci_transport;
334     void             * config;
335 
336     // bsic configuration
337     const char         * local_name;
338     uint32_t           class_of_device;
339     bd_addr_t          local_bd_addr;
340     uint8_t            ssp_enable;
341     uint8_t            ssp_io_capability;
342     uint8_t            ssp_authentication_requirement;
343     uint8_t            ssp_auto_accept;
344 
345     // hardware power controller
346     bt_control_t     * control;
347 
348     // list of existing baseband connections
349     linked_list_t     connections;
350 
351     // single buffer for HCI Command assembly
352     uint8_t   hci_packet_buffer[HCI_PACKET_BUFFER_SIZE]; // opcode (16), len(8)
353     uint8_t   hci_packet_buffer_reserved;
354 
355     /* host to controller flow control */
356     uint8_t  num_cmd_packets;
357     // uint8_t  total_num_cmd_packets;
358     uint8_t  total_num_acl_packets;
359     uint16_t acl_data_packet_length;
360     uint8_t  total_num_le_packets;
361     uint16_t le_data_packet_length;
362 
363     /* local supported features */
364     uint8_t local_supported_features[8];
365 
366     // usable packet types given acl_data_packet_length and HCI_ACL_BUFFER_SIZE
367     uint16_t packet_types;
368 
369     /* callback to L2CAP layer */
370     void (*packet_handler)(uint8_t packet_type, uint8_t *packet, uint16_t size);
371 
372     /* remote device db */
373     remote_device_db_t const*remote_device_db;
374 
375     /* hci state machine */
376     HCI_STATE state;
377     uint8_t   substate;
378     uint8_t   cmds_ready;
379 
380     uint8_t   discoverable;
381     uint8_t   connectable;
382     uint8_t   bondable;
383 
384     /* buffer for scan enable cmd - 0xff no change */
385     uint8_t   new_scan_enable_value;
386 
387     // buffer for single connection decline
388     uint8_t   decline_reason;
389     bd_addr_t decline_addr;
390 
391     uint8_t   adv_addr_type;
392     bd_addr_t adv_address;
393     le_scanning_state_t le_scanning_state;
394 } hci_stack_t;
395 
396 //*************** le client start
397 
398 typedef struct le_event {
399     uint8_t   type;
400 } le_event_t;
401 
402 typedef enum {
403     BLE_PERIPHERAL_OK = 0,
404     BLE_PERIPHERAL_IN_WRONG_STATE,
405     BLE_PERIPHERAL_DIFFERENT_CONTEXT_FOR_ADDRESS_ALREADY_EXISTS,
406     BLE_PERIPHERAL_NOT_CONNECTED,
407     BLE_VALUE_TOO_LONG,
408     BLE_PERIPHERAL_BUSY,
409     BLE_CHARACTERISTIC_NOTIFICATION_NOT_SUPPORTED,
410     BLE_CHARACTERISTIC_INDICATION_NOT_SUPPORTED
411 } le_command_status_t;
412 
413 
414 // void le_central_register_handler(void (*le_callback)(le_event_t* event));
415 le_command_status_t le_central_start_scan();
416 le_command_status_t le_central_stop_scan();
417 le_command_status_t le_central_connect(bd_addr_t * addr, bd_addr_type_t addr_type);
418 le_command_status_t gap_disconnect(hci_con_handle_t handle);
419 
420 //*************** le client end
421 
422 // create and send hci command packets based on a template and a list of parameters
423 uint16_t hci_create_cmd(uint8_t *hci_cmd_buffer, hci_cmd_t *cmd, ...);
424 uint16_t hci_create_cmd_internal(uint8_t *hci_cmd_buffer, const hci_cmd_t *cmd, va_list argptr);
425 
426 void hci_connectable_control(uint8_t enable);
427 void hci_close(void);
428 
429 /**
430  * run the hci control loop once
431  */
432 void hci_run(void);
433 
434 // send complete CMD packet
435 int hci_send_cmd_packet(uint8_t *packet, int size);
436 
437 // send ACL packet
438 int hci_send_acl_packet(uint8_t *packet, int size);
439 
440 // non-blocking UART driver needs
441 int hci_can_send_packet_now(uint8_t packet_type);
442 
443 // same as hci_can_send_packet_now, but also checks if packet buffer is free for use
444 int hci_can_send_packet_now_using_packet_buffer(uint8_t packet_type);
445 
446 // reserves outgoing packet buffer. @returns 1 if successful
447 int  hci_reserve_packet_buffer(void);
448 void hci_release_packet_buffer(void);
449 
450 // used for internal checks in l2cap[-le].c
451 int hci_is_packet_buffer_reserved(void);
452 
453 // get point to packet buffer
454 uint8_t* hci_get_outgoing_packet_buffer(void);
455 
456 bd_addr_t * hci_local_bd_addr(void);
457 hci_connection_t * hci_connection_for_handle(hci_con_handle_t con_handle);
458 hci_connection_t * hci_connection_for_bd_addr_and_type(bd_addr_t *addr, bd_addr_type_t addr_type);
459 uint8_t  hci_number_outgoing_packets(hci_con_handle_t handle);
460 uint8_t  hci_number_free_acl_slots(void);
461 int      hci_authentication_active_for_handle(hci_con_handle_t handle);
462 uint16_t hci_max_acl_data_packet_length(void);
463 uint16_t hci_usable_acl_packet_types(void);
464 
465 //
466 void hci_emit_state(void);
467 void hci_emit_connection_complete(hci_connection_t *conn, uint8_t status);
468 void hci_emit_l2cap_check_timeout(hci_connection_t *conn);
469 void hci_emit_disconnection_complete(uint16_t handle, uint8_t reason);
470 void hci_emit_nr_connections_changed(void);
471 void hci_emit_hci_open_failed(void);
472 void hci_emit_btstack_version(void);
473 void hci_emit_system_bluetooth_enabled(uint8_t enabled);
474 void hci_emit_remote_name_cached(bd_addr_t *addr, device_name_t *name);
475 void hci_emit_discoverable_enabled(uint8_t enabled);
476 void hci_emit_security_level(hci_con_handle_t con_handle, gap_security_level_t level);
477 void hci_emit_dedicated_bonding_result(hci_connection_t * connection, uint8_t status);
478 
479 // query if remote side supports SSP
480 // query if the local side supports SSP
481 int hci_local_ssp_activated();
482 
483 // query if the remote side supports SSP
484 int hci_remote_ssp_supported(hci_con_handle_t con_handle);
485 
486 // query if both sides support SSP
487 int hci_ssp_supported_on_both_sides(hci_con_handle_t handle);
488 
489 // disable automatic l2cap disconnect for testing
490 void hci_disable_l2cap_timeout_check();
491 
492 // disconnect because of security block
493 void hci_disconnect_security_block(hci_con_handle_t con_handle);
494 
495 /** Embedded API **/
496 
497 // Set up HCI. Needs to be called before any other function
498 void hci_init(hci_transport_t *transport, void *config, bt_control_t *control, remote_device_db_t const* remote_device_db);
499 
500 // Set class of device that will be set during Bluetooth init
501 void hci_set_class_of_device(uint32_t class_of_device);
502 
503 // Registers a packet handler. Used if L2CAP is not used (rarely).
504 void hci_register_packet_handler(void (*handler)(uint8_t packet_type, uint8_t *packet, uint16_t size));
505 
506 // Requests the change of BTstack power mode.
507 int  hci_power_control(HCI_POWER_MODE mode);
508 
509 // Allows to control if device is discoverable. OFF by default.
510 void hci_discoverable_control(uint8_t enable);
511 
512 // Creates and sends HCI command packets based on a template and
513 // a list of parameters. Will return error if outgoing data buffer
514 // is occupied.
515 int hci_send_cmd(const hci_cmd_t *cmd, ...);
516 
517 // Deletes link key for remote device with baseband address.
518 void hci_drop_link_key_for_bd_addr(bd_addr_t *addr);
519 
520 // Configure Secure Simple Pairing
521 
522 // enable will enable SSP during init
523 void hci_ssp_set_enable(int enable);
524 
525 // if set, BTstack will respond to io capability request using authentication requirement
526 void hci_ssp_set_io_capability(int ssp_io_capability);
527 void hci_ssp_set_authentication_requirement(int authentication_requirement);
528 
529 // if set, BTstack will confirm a numberic comparion and enter '000000' if requested
530 void hci_ssp_set_auto_accept(int auto_accept);
531 
532 // get addr type and address used in advertisement packets
533 void hci_le_advertisement_address(uint8_t * addr_type, bd_addr_t * addr);
534 
535 
536 #if defined __cplusplus
537 }
538 #endif
539 
540 #endif // __HCI_H
541