2 * QEMU Bluetooth HCI logic.
4 * Copyright (C) 2007 OpenMoko, Inc.
5 * Copyright (C) 2008 Andrzej Zaborowski <balrog@zabor.org>
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, see <http://www.gnu.org/licenses/>.
21 #include "qemu/osdep.h"
22 #include "qemu/error-report.h"
23 #include "qapi/error.h"
24 #include "qemu-common.h"
25 #include "qemu/timer.h"
27 #include "sysemu/bt.h"
29 #include "qapi/qmp/qerror.h"
30 #include "sysemu/replay.h"
31 #include "qemu/cutils.h"
34 uint8_t *(*evt_packet
)(void *opaque
);
35 void (*evt_submit
)(void *opaque
, int len
);
39 uint8_t acl_buf
[4096];
45 int last_cmd
; /* Note: Always little-endian */
47 struct bt_device_s
*conn_req_host
;
54 QEMUTimer
*inquiry_done
;
55 QEMUTimer
*inquiry_next
;
60 #define HCI_HANDLE_OFFSET 0x20
61 #define HCI_HANDLES_MAX 0x10
62 struct bt_hci_master_link_s
{
63 struct bt_link_s
*link
;
64 void (*lmp_acl_data
)(struct bt_link_s
*link
,
65 const uint8_t *data
, int start
, int len
);
66 QEMUTimer
*acl_mode_timer
;
67 } handle
[HCI_HANDLES_MAX
];
71 bdaddr_t awaiting_bdaddr
[HCI_HANDLES_MAX
];
74 uint8_t event_mask
[8];
75 uint16_t voice_setting
; /* Notw: Always little-endian */
76 uint16_t conn_accept_tout
;
77 QEMUTimer
*conn_accept_timer
;
80 struct bt_device_s device
;
82 Error
*replay_blocker
;
85 #define DEFAULT_RSSI_DBM 20
87 #define hci_from_info(ptr) container_of((ptr), struct bt_hci_s, info)
88 #define hci_from_device(ptr) container_of((ptr), struct bt_hci_s, device)
90 struct bt_hci_link_s
{
91 struct bt_link_s btlink
;
92 uint16_t handle
; /* Local */
95 /* LMP layer emulation */
97 static void bt_submit_lmp(struct bt_device_s
*bt
, int length
, uint8_t *data
)
99 int resp
, resplen
, error
, op
, tr
;
100 uint8_t respdata
[17];
106 op
= *(data
++) >> 1;
113 if (op
>= 0x7c) { /* Extended opcode */
114 op
|= *(data
++) << 8;
115 resp
= LMP_ACCEPTED_EXT
;
117 respdata
[0] = op
>> 8;
118 respdata
[1] = op
& 0xff;
127 error
= HCI_UNSUPPORTED_LMP_PARAMETER_VALUE
;
133 case LMP_ACCEPTED_EXT
:
134 /* data[0] Escape op code
135 * data[1] Extended op code
138 error
= HCI_UNSUPPORTED_LMP_PARAMETER_VALUE
;
144 case LMP_NOT_ACCEPTED
:
149 error
= HCI_UNSUPPORTED_LMP_PARAMETER_VALUE
;
155 case LMP_NOT_ACCEPTED_EXT
:
157 * data[1] Extended op code
161 error
= HCI_UNSUPPORTED_LMP_PARAMETER_VALUE
;
167 case LMP_HOST_CONNECTION_REQ
:
170 case LMP_SETUP_COMPLETE
:
171 resp
= LMP_SETUP_COMPLETE
;
177 /* data[0] Error code
180 error
= HCI_UNSUPPORTED_LMP_PARAMETER_VALUE
;
187 case LMP_SUPERVISION_TIMEOUT
:
188 /* data[0,1] Supervision timeout
191 error
= HCI_UNSUPPORTED_LMP_PARAMETER_VALUE
;
197 case LMP_QUALITY_OF_SERVICE
:
201 /* data[0,1] Poll interval
205 error
= HCI_UNSUPPORTED_LMP_PARAMETER_VALUE
;
213 case LMP_MAX_SLOT_REQ
:
217 error
= HCI_UNSUPPORTED_LMP_PARAMETER_VALUE
;
225 /* data[0-15] Random number
228 error
= HCI_UNSUPPORTED_LMP_PARAMETER_VALUE
;
231 if (op
== LMP_AU_RAND
) {
232 if (bt
->key_present
) {
235 /* XXX: [Part H] Section 6.1 on page 801 */
237 error
= HCI_PIN_OR_KEY_MISSING
;
240 } else if (op
== LMP_IN_RAND
) {
241 error
= HCI_PAIRING_NOT_ALLOWED
;
244 /* XXX: [Part H] Section 3.2 on page 779 */
247 memcpy(respdata
+ 1, bt
->key
, 16);
249 error
= HCI_UNIT_LINK_KEY_USED
;
258 error
= HCI_UNSUPPORTED_LMP_PARAMETER_VALUE
;
261 memcpy(bt
->key
, data
, 16);
266 /* data[0-3] Authentication response
269 error
= HCI_UNSUPPORTED_LMP_PARAMETER_VALUE
;
274 case LMP_CLKOFFSET_REQ
:
275 resp
= LMP_CLKOFFSET_RES
;
281 case LMP_CLKOFFSET_RES
:
282 /* data[0,1] Clock offset
283 * (Slave to master only)
286 error
= HCI_UNSUPPORTED_LMP_PARAMETER_VALUE
;
291 case LMP_VERSION_REQ
:
292 case LMP_VERSION_RES
:
295 * data[3,4] SubVersNr
298 error
= HCI_UNSUPPORTED_LMP_PARAMETER_VALUE
;
301 if (op
== LMP_VERSION_REQ
) {
302 resp
= LMP_VERSION_RES
;
313 case LMP_FEATURES_REQ
:
314 case LMP_FEATURES_RES
:
315 /* data[0-7] Features
318 error
= HCI_UNSUPPORTED_LMP_PARAMETER_VALUE
;
321 if (op
== LMP_FEATURES_REQ
) {
322 resp
= LMP_FEATURES_RES
;
324 respdata
[1] = (bt
->lmp_caps
>> 0) & 0xff;
325 respdata
[2] = (bt
->lmp_caps
>> 8) & 0xff;
326 respdata
[3] = (bt
->lmp_caps
>> 16) & 0xff;
327 respdata
[4] = (bt
->lmp_caps
>> 24) & 0xff;
328 respdata
[5] = (bt
->lmp_caps
>> 32) & 0xff;
329 respdata
[6] = (bt
->lmp_caps
>> 40) & 0xff;
330 respdata
[7] = (bt
->lmp_caps
>> 48) & 0xff;
331 respdata
[8] = (bt
->lmp_caps
>> 56) & 0xff;
337 /* data[0] Name offset
340 error
= HCI_UNSUPPORTED_LMP_PARAMETER_VALUE
;
345 respdata
[1] = data
[0];
346 respdata
[2] = strlen(bt
->lmp_name
);
347 memset(respdata
+ 3, 0x00, 14);
348 if (respdata
[2] > respdata
[1])
349 memcpy(respdata
+ 3, bt
->lmp_name
+ respdata
[1],
350 respdata
[2] - respdata
[1]);
354 /* data[0] Name offset
355 * data[1] Name length
356 * data[2-15] Name fragment
359 error
= HCI_UNSUPPORTED_LMP_PARAMETER_VALUE
;
366 error
= HCI_UNKNOWN_LMP_PDU
;
370 resp
= LMP_NOT_ACCEPTED_EXT
;
372 respdata
[0] = op
>> 8;
373 respdata
[1] = op
& 0xff;
376 resp
= LMP_NOT_ACCEPTED
;
378 respdata
[0] = op
& 0xff;
387 respdata
[0] = resp
>> 8;
388 respdata
[1] = resp
& 0xff;
390 respdata
[0] = resp
& 0xff;
396 static void bt_submit_raw_acl(struct bt_piconet_s
*net
, int length
, uint8_t *data
)
398 struct bt_device_s
*slave
;
407 switch (data
[0] & 3) {
409 bt_submit_lmp(slave
, length
- 1, data
+ 1);
411 case LLID_ACLU_START
:
413 bt_sumbit_l2cap(slave
, length
- 1, data
+ 1, (data
[0] >> 2) & 1);
423 /* HCI layer emulation */
425 /* Note: we could ignore endianness because unswapped handles will still
426 * be valid as connection identifiers for the guest - they don't have to
427 * be continuously allocated. We do it though, to preserve similar
428 * behaviour between hosts. Some things, like the BD_ADDR cannot be
429 * preserved though (for example if a real hci is used). */
430 #define HNDL(raw) cpu_to_le16(raw)
432 static const uint8_t bt_event_reserved_mask
[8] = {
433 0xff, 0x9f, 0xfb, 0xff, 0x07, 0x18, 0x00, 0x00,
437 static void null_hci_send(struct HCIInfo
*hci
, const uint8_t *data
, int len
)
441 static int null_hci_addr_set(struct HCIInfo
*hci
, const uint8_t *bd_addr
)
446 struct HCIInfo null_hci
= {
447 .cmd_send
= null_hci_send
,
448 .sco_send
= null_hci_send
,
449 .acl_send
= null_hci_send
,
450 .bdaddr_set
= null_hci_addr_set
,
454 static inline uint8_t *bt_hci_event_start(struct bt_hci_s
*hci
,
457 uint8_t *packet
, mask
;
461 error_report("%s: HCI event params too long (%ib)", __func__
, len
);
465 mask_byte
= (evt
- 1) >> 3;
466 mask
= 1 << ((evt
- 1) & 3);
467 if (mask
& bt_event_reserved_mask
[mask_byte
] & ~hci
->event_mask
[mask_byte
])
470 packet
= hci
->evt_packet(hci
->opaque
);
477 static inline void bt_hci_event(struct bt_hci_s
*hci
, int evt
,
478 void *params
, int len
)
480 uint8_t *packet
= bt_hci_event_start(hci
, evt
, len
);
486 memcpy(packet
, params
, len
);
488 hci
->evt_submit(hci
->opaque
, len
+ 2);
491 static inline void bt_hci_event_status(struct bt_hci_s
*hci
, int status
)
493 evt_cmd_status params
= {
496 .opcode
= hci
->last_cmd
,
499 bt_hci_event(hci
, EVT_CMD_STATUS
, ¶ms
, EVT_CMD_STATUS_SIZE
);
502 static inline void bt_hci_event_complete(struct bt_hci_s
*hci
,
505 uint8_t *packet
= bt_hci_event_start(hci
, EVT_CMD_COMPLETE
,
506 len
+ EVT_CMD_COMPLETE_SIZE
);
507 evt_cmd_complete
*params
= (evt_cmd_complete
*) packet
;
513 params
->opcode
= hci
->last_cmd
;
515 memcpy(&packet
[EVT_CMD_COMPLETE_SIZE
], ret
, len
);
517 hci
->evt_submit(hci
->opaque
, len
+ EVT_CMD_COMPLETE_SIZE
+ 2);
520 static void bt_hci_inquiry_done(void *opaque
)
522 struct bt_hci_s
*hci
= (struct bt_hci_s
*) opaque
;
523 uint8_t status
= HCI_SUCCESS
;
525 if (!hci
->lm
.periodic
)
528 /* The specification is inconsistent about this one. Page 565 reads
529 * "The event parameters of Inquiry Complete event will have a summary
530 * of the result from the Inquiry process, which reports the number of
531 * nearby Bluetooth devices that responded [so hci->responses].", but
532 * Event Parameters (see page 729) has only Status. */
533 bt_hci_event(hci
, EVT_INQUIRY_COMPLETE
, &status
, 1);
536 static void bt_hci_inquiry_result_standard(struct bt_hci_s
*hci
,
537 struct bt_device_s
*slave
)
539 inquiry_info params
= {
541 .bdaddr
= BAINIT(&slave
->bd_addr
),
542 .pscan_rep_mode
= 0x00, /* R0 */
543 .pscan_period_mode
= 0x00, /* P0 - deprecated */
544 .pscan_mode
= 0x00, /* Standard scan - deprecated */
545 .dev_class
[0] = slave
->class[0],
546 .dev_class
[1] = slave
->class[1],
547 .dev_class
[2] = slave
->class[2],
548 /* TODO: return the clkoff *differenece* */
549 .clock_offset
= slave
->clkoff
, /* Note: no swapping */
552 bt_hci_event(hci
, EVT_INQUIRY_RESULT
, ¶ms
, INQUIRY_INFO_SIZE
);
555 static void bt_hci_inquiry_result_with_rssi(struct bt_hci_s
*hci
,
556 struct bt_device_s
*slave
)
558 inquiry_info_with_rssi params
= {
560 .bdaddr
= BAINIT(&slave
->bd_addr
),
561 .pscan_rep_mode
= 0x00, /* R0 */
562 .pscan_period_mode
= 0x00, /* P0 - deprecated */
563 .dev_class
[0] = slave
->class[0],
564 .dev_class
[1] = slave
->class[1],
565 .dev_class
[2] = slave
->class[2],
566 /* TODO: return the clkoff *differenece* */
567 .clock_offset
= slave
->clkoff
, /* Note: no swapping */
568 .rssi
= DEFAULT_RSSI_DBM
,
571 bt_hci_event(hci
, EVT_INQUIRY_RESULT_WITH_RSSI
,
572 ¶ms
, INQUIRY_INFO_WITH_RSSI_SIZE
);
575 static void bt_hci_inquiry_result(struct bt_hci_s
*hci
,
576 struct bt_device_s
*slave
)
578 if (!slave
->inquiry_scan
|| !hci
->lm
.responses_left
)
581 hci
->lm
.responses_left
--;
582 hci
->lm
.responses
++;
584 switch (hci
->lm
.inquiry_mode
) {
586 bt_hci_inquiry_result_standard(hci
, slave
);
589 bt_hci_inquiry_result_with_rssi(hci
, slave
);
592 error_report("%s: bad inquiry mode %02x", __func__
,
593 hci
->lm
.inquiry_mode
);
598 static void bt_hci_mod_timer_1280ms(QEMUTimer
*timer
, int period
)
600 timer_mod(timer
, qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
) +
601 (uint64_t)(period
<< 7) * 10000000);
604 static void bt_hci_inquiry_start(struct bt_hci_s
*hci
, int length
)
606 struct bt_device_s
*slave
;
608 hci
->lm
.inquiry_length
= length
;
609 for (slave
= hci
->device
.net
->slave
; slave
; slave
= slave
->next
)
610 /* Don't uncover ourselves. */
611 if (slave
!= &hci
->device
)
612 bt_hci_inquiry_result(hci
, slave
);
614 /* TODO: register for a callback on a new device's addition to the
615 * scatternet so that if it's added before inquiry_length expires,
616 * an Inquiry Result is generated immediately. Alternatively re-loop
617 * through the devices on the inquiry_length expiration and report
618 * devices not seen before. */
619 if (hci
->lm
.responses_left
)
620 bt_hci_mod_timer_1280ms(hci
->lm
.inquiry_done
, hci
->lm
.inquiry_length
);
622 bt_hci_inquiry_done(hci
);
624 if (hci
->lm
.periodic
)
625 bt_hci_mod_timer_1280ms(hci
->lm
.inquiry_next
, hci
->lm
.inquiry_period
);
628 static void bt_hci_inquiry_next(void *opaque
)
630 struct bt_hci_s
*hci
= (struct bt_hci_s
*) opaque
;
632 hci
->lm
.responses_left
+= hci
->lm
.responses
;
633 hci
->lm
.responses
= 0;
634 bt_hci_inquiry_start(hci
, hci
->lm
.inquiry_length
);
637 static inline int bt_hci_handle_bad(struct bt_hci_s
*hci
, uint16_t handle
)
639 return !(handle
& HCI_HANDLE_OFFSET
) ||
640 handle
>= (HCI_HANDLE_OFFSET
| HCI_HANDLES_MAX
) ||
641 !hci
->lm
.handle
[handle
& ~HCI_HANDLE_OFFSET
].link
;
644 static inline int bt_hci_role_master(struct bt_hci_s
*hci
, uint16_t handle
)
646 return !!(hci
->lm
.role_bmp
& (1 << (handle
& ~HCI_HANDLE_OFFSET
)));
649 static inline struct bt_device_s
*bt_hci_remote_dev(struct bt_hci_s
*hci
,
652 struct bt_link_s
*link
= hci
->lm
.handle
[handle
& ~HCI_HANDLE_OFFSET
].link
;
654 return bt_hci_role_master(hci
, handle
) ? link
->slave
: link
->host
;
657 static void bt_hci_mode_tick(void *opaque
);
658 static void bt_hci_lmp_link_establish(struct bt_hci_s
*hci
,
659 struct bt_link_s
*link
, int master
)
661 hci
->lm
.handle
[hci
->lm
.last_handle
].link
= link
;
664 /* We are the master side of an ACL link */
665 hci
->lm
.role_bmp
|= 1 << hci
->lm
.last_handle
;
667 hci
->lm
.handle
[hci
->lm
.last_handle
].lmp_acl_data
=
668 link
->slave
->lmp_acl_data
;
670 /* We are the slave side of an ACL link */
671 hci
->lm
.role_bmp
&= ~(1 << hci
->lm
.last_handle
);
673 hci
->lm
.handle
[hci
->lm
.last_handle
].lmp_acl_data
=
674 link
->host
->lmp_acl_resp
;
679 link
->acl_mode
= acl_active
;
680 hci
->lm
.handle
[hci
->lm
.last_handle
].acl_mode_timer
=
681 timer_new_ns(QEMU_CLOCK_VIRTUAL
, bt_hci_mode_tick
, link
);
685 static void bt_hci_lmp_link_teardown(struct bt_hci_s
*hci
, uint16_t handle
)
687 handle
&= ~HCI_HANDLE_OFFSET
;
688 hci
->lm
.handle
[handle
].link
= NULL
;
690 if (bt_hci_role_master(hci
, handle
)) {
691 timer_del(hci
->lm
.handle
[handle
].acl_mode_timer
);
692 timer_free(hci
->lm
.handle
[handle
].acl_mode_timer
);
696 static int bt_hci_connect(struct bt_hci_s
*hci
, bdaddr_t
*bdaddr
)
698 struct bt_device_s
*slave
;
699 struct bt_link_s link
;
701 for (slave
= hci
->device
.net
->slave
; slave
; slave
= slave
->next
)
702 if (slave
->page_scan
&& !bacmp(&slave
->bd_addr
, bdaddr
))
704 if (!slave
|| slave
== &hci
->device
)
707 bacpy(&hci
->lm
.awaiting_bdaddr
[hci
->lm
.connecting
++], &slave
->bd_addr
);
710 link
.host
= &hci
->device
;
711 link
.slave
->lmp_connection_request(&link
); /* Always last */
716 static void bt_hci_connection_reject(struct bt_hci_s
*hci
,
717 struct bt_device_s
*host
, uint8_t because
)
719 struct bt_link_s link
= {
720 .slave
= &hci
->device
,
722 /* Rest uninitialised */
725 host
->reject_reason
= because
;
726 host
->lmp_connection_complete(&link
);
729 static void bt_hci_connection_reject_event(struct bt_hci_s
*hci
,
732 evt_conn_complete params
;
734 params
.status
= HCI_NO_CONNECTION
;
736 bacpy(¶ms
.bdaddr
, bdaddr
);
737 params
.link_type
= ACL_LINK
;
738 params
.encr_mode
= 0x00; /* Encryption not required */
739 bt_hci_event(hci
, EVT_CONN_COMPLETE
, ¶ms
, EVT_CONN_COMPLETE_SIZE
);
742 static void bt_hci_connection_accept(struct bt_hci_s
*hci
,
743 struct bt_device_s
*host
)
745 struct bt_hci_link_s
*link
= g_malloc0(sizeof(struct bt_hci_link_s
));
746 evt_conn_complete params
;
748 uint8_t status
= HCI_SUCCESS
;
749 int tries
= HCI_HANDLES_MAX
;
751 /* Make a connection handle */
753 while (hci
->lm
.handle
[++ hci
->lm
.last_handle
].link
&& -- tries
)
754 hci
->lm
.last_handle
&= HCI_HANDLES_MAX
- 1;
755 handle
= hci
->lm
.last_handle
| HCI_HANDLE_OFFSET
;
756 } while ((handle
== hci
->asb_handle
|| handle
== hci
->psb_handle
) &&
761 bt_hci_connection_reject(hci
, host
, HCI_REJECTED_LIMITED_RESOURCES
);
762 status
= HCI_NO_CONNECTION
;
766 link
->btlink
.slave
= &hci
->device
;
767 link
->btlink
.host
= host
;
768 link
->handle
= handle
;
770 /* Link established */
771 bt_hci_lmp_link_establish(hci
, &link
->btlink
, 0);
774 params
.status
= status
;
775 params
.handle
= HNDL(handle
);
776 bacpy(¶ms
.bdaddr
, &host
->bd_addr
);
777 params
.link_type
= ACL_LINK
;
778 params
.encr_mode
= 0x00; /* Encryption not required */
779 bt_hci_event(hci
, EVT_CONN_COMPLETE
, ¶ms
, EVT_CONN_COMPLETE_SIZE
);
781 /* Neets to be done at the very end because it can trigger a (nested)
782 * disconnected, in case the other and had cancelled the request
784 if (status
== HCI_SUCCESS
) {
785 host
->reject_reason
= 0;
786 host
->lmp_connection_complete(&link
->btlink
);
790 static void bt_hci_lmp_connection_request(struct bt_link_s
*link
)
792 struct bt_hci_s
*hci
= hci_from_device(link
->slave
);
793 evt_conn_request params
;
795 if (hci
->conn_req_host
) {
796 bt_hci_connection_reject(hci
, link
->host
,
797 HCI_REJECTED_LIMITED_RESOURCES
);
800 hci
->conn_req_host
= link
->host
;
801 /* TODO: if masked and auto-accept, then auto-accept,
802 * if masked and not auto-accept, then auto-reject */
803 /* TODO: kick the hci->conn_accept_timer, timeout after
804 * hci->conn_accept_tout * 0.625 msec */
806 bacpy(¶ms
.bdaddr
, &link
->host
->bd_addr
);
807 memcpy(¶ms
.dev_class
, &link
->host
->class, sizeof(params
.dev_class
));
808 params
.link_type
= ACL_LINK
;
809 bt_hci_event(hci
, EVT_CONN_REQUEST
, ¶ms
, EVT_CONN_REQUEST_SIZE
);
812 static void bt_hci_conn_accept_timeout(void *opaque
)
814 struct bt_hci_s
*hci
= (struct bt_hci_s
*) opaque
;
816 if (!hci
->conn_req_host
)
817 /* Already accepted or rejected. If the other end cancelled the
818 * connection request then we still have to reject or accept it
819 * and then we'll get a disconnect. */
825 /* Remove from the list of devices which we wanted to connect to and
826 * are awaiting a response from. If the callback sees a response from
827 * a device which is not on the list it will assume it's a connection
828 * that's been cancelled by the host in the meantime and immediately
829 * try to detach the link and send a Connection Complete. */
830 static int bt_hci_lmp_connection_ready(struct bt_hci_s
*hci
,
835 for (i
= 0; i
< hci
->lm
.connecting
; i
++)
836 if (!bacmp(&hci
->lm
.awaiting_bdaddr
[i
], bdaddr
)) {
837 if (i
< -- hci
->lm
.connecting
)
838 bacpy(&hci
->lm
.awaiting_bdaddr
[i
],
839 &hci
->lm
.awaiting_bdaddr
[hci
->lm
.connecting
]);
846 static void bt_hci_lmp_connection_complete(struct bt_link_s
*link
)
848 struct bt_hci_s
*hci
= hci_from_device(link
->host
);
849 evt_conn_complete params
;
851 uint8_t status
= HCI_SUCCESS
;
852 int tries
= HCI_HANDLES_MAX
;
854 if (bt_hci_lmp_connection_ready(hci
, &link
->slave
->bd_addr
)) {
855 if (!hci
->device
.reject_reason
)
856 link
->slave
->lmp_disconnect_slave(link
);
858 status
= HCI_NO_CONNECTION
;
862 if (hci
->device
.reject_reason
) {
864 status
= hci
->device
.reject_reason
;
868 /* Make a connection handle */
870 while (hci
->lm
.handle
[++ hci
->lm
.last_handle
].link
&& -- tries
)
871 hci
->lm
.last_handle
&= HCI_HANDLES_MAX
- 1;
872 handle
= hci
->lm
.last_handle
| HCI_HANDLE_OFFSET
;
873 } while ((handle
== hci
->asb_handle
|| handle
== hci
->psb_handle
) &&
877 link
->slave
->lmp_disconnect_slave(link
);
878 status
= HCI_NO_CONNECTION
;
882 /* Link established */
883 link
->handle
= handle
;
884 bt_hci_lmp_link_establish(hci
, link
, 1);
887 params
.status
= status
;
888 params
.handle
= HNDL(handle
);
889 params
.link_type
= ACL_LINK
;
890 bacpy(¶ms
.bdaddr
, &link
->slave
->bd_addr
);
891 params
.encr_mode
= 0x00; /* Encryption not required */
892 bt_hci_event(hci
, EVT_CONN_COMPLETE
, ¶ms
, EVT_CONN_COMPLETE_SIZE
);
895 static void bt_hci_disconnect(struct bt_hci_s
*hci
,
896 uint16_t handle
, int reason
)
898 struct bt_link_s
*btlink
=
899 hci
->lm
.handle
[handle
& ~HCI_HANDLE_OFFSET
].link
;
900 struct bt_hci_link_s
*link
;
901 evt_disconn_complete params
;
903 if (bt_hci_role_master(hci
, handle
)) {
904 btlink
->slave
->reject_reason
= reason
;
905 btlink
->slave
->lmp_disconnect_slave(btlink
);
906 /* The link pointer is invalid from now on */
911 btlink
->host
->reject_reason
= reason
;
912 btlink
->host
->lmp_disconnect_master(btlink
);
914 /* We are the slave, we get to clean this burden */
915 link
= (struct bt_hci_link_s
*) btlink
;
919 bt_hci_lmp_link_teardown(hci
, handle
);
921 params
.status
= HCI_SUCCESS
;
922 params
.handle
= HNDL(handle
);
923 params
.reason
= HCI_CONNECTION_TERMINATED
;
924 bt_hci_event(hci
, EVT_DISCONN_COMPLETE
,
925 ¶ms
, EVT_DISCONN_COMPLETE_SIZE
);
928 /* TODO: use only one function */
929 static void bt_hci_lmp_disconnect_host(struct bt_link_s
*link
)
931 struct bt_hci_s
*hci
= hci_from_device(link
->host
);
932 uint16_t handle
= link
->handle
;
933 evt_disconn_complete params
;
935 bt_hci_lmp_link_teardown(hci
, handle
);
937 params
.status
= HCI_SUCCESS
;
938 params
.handle
= HNDL(handle
);
939 params
.reason
= hci
->device
.reject_reason
;
940 bt_hci_event(hci
, EVT_DISCONN_COMPLETE
,
941 ¶ms
, EVT_DISCONN_COMPLETE_SIZE
);
944 static void bt_hci_lmp_disconnect_slave(struct bt_link_s
*btlink
)
946 struct bt_hci_link_s
*link
= (struct bt_hci_link_s
*) btlink
;
947 struct bt_hci_s
*hci
= hci_from_device(btlink
->slave
);
948 uint16_t handle
= link
->handle
;
949 evt_disconn_complete params
;
953 bt_hci_lmp_link_teardown(hci
, handle
);
955 params
.status
= HCI_SUCCESS
;
956 params
.handle
= HNDL(handle
);
957 params
.reason
= hci
->device
.reject_reason
;
958 bt_hci_event(hci
, EVT_DISCONN_COMPLETE
,
959 ¶ms
, EVT_DISCONN_COMPLETE_SIZE
);
962 static int bt_hci_name_req(struct bt_hci_s
*hci
, bdaddr_t
*bdaddr
)
964 struct bt_device_s
*slave
;
965 evt_remote_name_req_complete params
;
967 for (slave
= hci
->device
.net
->slave
; slave
; slave
= slave
->next
)
968 if (slave
->page_scan
&& !bacmp(&slave
->bd_addr
, bdaddr
))
973 bt_hci_event_status(hci
, HCI_SUCCESS
);
975 params
.status
= HCI_SUCCESS
;
976 bacpy(¶ms
.bdaddr
, &slave
->bd_addr
);
977 pstrcpy(params
.name
, sizeof(params
.name
), slave
->lmp_name
?: "");
978 bt_hci_event(hci
, EVT_REMOTE_NAME_REQ_COMPLETE
,
979 ¶ms
, EVT_REMOTE_NAME_REQ_COMPLETE_SIZE
);
984 static int bt_hci_features_req(struct bt_hci_s
*hci
, uint16_t handle
)
986 struct bt_device_s
*slave
;
987 evt_read_remote_features_complete params
;
989 if (bt_hci_handle_bad(hci
, handle
))
992 slave
= bt_hci_remote_dev(hci
, handle
);
994 bt_hci_event_status(hci
, HCI_SUCCESS
);
996 params
.status
= HCI_SUCCESS
;
997 params
.handle
= HNDL(handle
);
998 params
.features
[0] = (slave
->lmp_caps
>> 0) & 0xff;
999 params
.features
[1] = (slave
->lmp_caps
>> 8) & 0xff;
1000 params
.features
[2] = (slave
->lmp_caps
>> 16) & 0xff;
1001 params
.features
[3] = (slave
->lmp_caps
>> 24) & 0xff;
1002 params
.features
[4] = (slave
->lmp_caps
>> 32) & 0xff;
1003 params
.features
[5] = (slave
->lmp_caps
>> 40) & 0xff;
1004 params
.features
[6] = (slave
->lmp_caps
>> 48) & 0xff;
1005 params
.features
[7] = (slave
->lmp_caps
>> 56) & 0xff;
1006 bt_hci_event(hci
, EVT_READ_REMOTE_FEATURES_COMPLETE
,
1007 ¶ms
, EVT_READ_REMOTE_FEATURES_COMPLETE_SIZE
);
1012 static int bt_hci_version_req(struct bt_hci_s
*hci
, uint16_t handle
)
1014 evt_read_remote_version_complete params
;
1016 if (bt_hci_handle_bad(hci
, handle
))
1019 bt_hci_remote_dev(hci
, handle
);
1021 bt_hci_event_status(hci
, HCI_SUCCESS
);
1023 params
.status
= HCI_SUCCESS
;
1024 params
.handle
= HNDL(handle
);
1025 params
.lmp_ver
= 0x03;
1026 params
.manufacturer
= cpu_to_le16(0xa000);
1027 params
.lmp_subver
= cpu_to_le16(0xa607);
1028 bt_hci_event(hci
, EVT_READ_REMOTE_VERSION_COMPLETE
,
1029 ¶ms
, EVT_READ_REMOTE_VERSION_COMPLETE_SIZE
);
1034 static int bt_hci_clkoffset_req(struct bt_hci_s
*hci
, uint16_t handle
)
1036 struct bt_device_s
*slave
;
1037 evt_read_clock_offset_complete params
;
1039 if (bt_hci_handle_bad(hci
, handle
))
1042 slave
= bt_hci_remote_dev(hci
, handle
);
1044 bt_hci_event_status(hci
, HCI_SUCCESS
);
1046 params
.status
= HCI_SUCCESS
;
1047 params
.handle
= HNDL(handle
);
1048 /* TODO: return the clkoff *differenece* */
1049 params
.clock_offset
= slave
->clkoff
; /* Note: no swapping */
1050 bt_hci_event(hci
, EVT_READ_CLOCK_OFFSET_COMPLETE
,
1051 ¶ms
, EVT_READ_CLOCK_OFFSET_COMPLETE_SIZE
);
1056 static void bt_hci_event_mode(struct bt_hci_s
*hci
, struct bt_link_s
*link
,
1059 evt_mode_change params
= {
1060 .status
= HCI_SUCCESS
,
1061 .handle
= HNDL(handle
),
1062 .mode
= link
->acl_mode
,
1063 .interval
= cpu_to_le16(link
->acl_interval
),
1066 bt_hci_event(hci
, EVT_MODE_CHANGE
, ¶ms
, EVT_MODE_CHANGE_SIZE
);
1069 static void bt_hci_lmp_mode_change_master(struct bt_hci_s
*hci
,
1070 struct bt_link_s
*link
, int mode
, uint16_t interval
)
1072 link
->acl_mode
= mode
;
1073 link
->acl_interval
= interval
;
1075 bt_hci_event_mode(hci
, link
, link
->handle
);
1077 link
->slave
->lmp_mode_change(link
);
1080 static void bt_hci_lmp_mode_change_slave(struct bt_link_s
*btlink
)
1082 struct bt_hci_link_s
*link
= (struct bt_hci_link_s
*) btlink
;
1083 struct bt_hci_s
*hci
= hci_from_device(btlink
->slave
);
1085 bt_hci_event_mode(hci
, btlink
, link
->handle
);
1088 static int bt_hci_mode_change(struct bt_hci_s
*hci
, uint16_t handle
,
1089 int interval
, int mode
)
1091 struct bt_hci_master_link_s
*link
;
1093 if (bt_hci_handle_bad(hci
, handle
) || !bt_hci_role_master(hci
, handle
))
1096 link
= &hci
->lm
.handle
[handle
& ~HCI_HANDLE_OFFSET
];
1097 if (link
->link
->acl_mode
!= acl_active
) {
1098 bt_hci_event_status(hci
, HCI_COMMAND_DISALLOWED
);
1102 bt_hci_event_status(hci
, HCI_SUCCESS
);
1104 timer_mod(link
->acl_mode_timer
, qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
) +
1105 ((uint64_t)interval
* 625) * 1000);
1106 bt_hci_lmp_mode_change_master(hci
, link
->link
, mode
, interval
);
1111 static int bt_hci_mode_cancel(struct bt_hci_s
*hci
, uint16_t handle
, int mode
)
1113 struct bt_hci_master_link_s
*link
;
1115 if (bt_hci_handle_bad(hci
, handle
) || !bt_hci_role_master(hci
, handle
))
1118 link
= &hci
->lm
.handle
[handle
& ~HCI_HANDLE_OFFSET
];
1119 if (link
->link
->acl_mode
!= mode
) {
1120 bt_hci_event_status(hci
, HCI_COMMAND_DISALLOWED
);
1125 bt_hci_event_status(hci
, HCI_SUCCESS
);
1127 timer_del(link
->acl_mode_timer
);
1128 bt_hci_lmp_mode_change_master(hci
, link
->link
, acl_active
, 0);
1133 static void bt_hci_mode_tick(void *opaque
)
1135 struct bt_link_s
*link
= opaque
;
1136 struct bt_hci_s
*hci
= hci_from_device(link
->host
);
1138 bt_hci_lmp_mode_change_master(hci
, link
, acl_active
, 0);
1141 static void bt_hci_reset(struct bt_hci_s
*hci
)
1145 hci
->lm
.connecting
= 0;
1147 hci
->event_mask
[0] = 0xff;
1148 hci
->event_mask
[1] = 0xff;
1149 hci
->event_mask
[2] = 0xff;
1150 hci
->event_mask
[3] = 0xff;
1151 hci
->event_mask
[4] = 0xff;
1152 hci
->event_mask
[5] = 0x1f;
1153 hci
->event_mask
[6] = 0x00;
1154 hci
->event_mask
[7] = 0x00;
1155 hci
->device
.inquiry_scan
= 0;
1156 hci
->device
.page_scan
= 0;
1157 g_free((void *) hci
->device
.lmp_name
);
1158 hci
->device
.lmp_name
= NULL
;
1159 hci
->device
.class[0] = 0x00;
1160 hci
->device
.class[1] = 0x00;
1161 hci
->device
.class[2] = 0x00;
1162 hci
->voice_setting
= 0x0000;
1163 hci
->conn_accept_tout
= 0x1f40;
1164 hci
->lm
.inquiry_mode
= 0x00;
1166 hci
->psb_handle
= 0x000;
1167 hci
->asb_handle
= 0x000;
1169 /* XXX: timer_del(sl->acl_mode_timer); for all links */
1170 timer_del(hci
->lm
.inquiry_done
);
1171 timer_del(hci
->lm
.inquiry_next
);
1172 timer_del(hci
->conn_accept_timer
);
1175 static void bt_hci_read_local_version_rp(struct bt_hci_s
*hci
)
1177 read_local_version_rp lv
= {
1178 .status
= HCI_SUCCESS
,
1180 .hci_rev
= cpu_to_le16(0xa607),
1182 .manufacturer
= cpu_to_le16(0xa000),
1183 .lmp_subver
= cpu_to_le16(0xa607),
1186 bt_hci_event_complete(hci
, &lv
, READ_LOCAL_VERSION_RP_SIZE
);
1189 static void bt_hci_read_local_commands_rp(struct bt_hci_s
*hci
)
1191 read_local_commands_rp lc
= {
1192 .status
= HCI_SUCCESS
,
1195 /* Also, keep in sync with hci->device.lmp_caps in bt_new_hci */
1196 0xbf, 0x80, 0xf9, 0x03, 0xb2, 0xc0, 0x03, 0xc3,
1197 0x00, 0x0f, 0x80, 0x00, 0xc0, 0x00, 0xe8, 0x13,
1198 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
1199 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
1200 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
1201 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
1202 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
1203 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
1207 bt_hci_event_complete(hci
, &lc
, READ_LOCAL_COMMANDS_RP_SIZE
);
1210 static void bt_hci_read_local_features_rp(struct bt_hci_s
*hci
)
1212 read_local_features_rp lf
= {
1213 .status
= HCI_SUCCESS
,
1215 (hci
->device
.lmp_caps
>> 0) & 0xff,
1216 (hci
->device
.lmp_caps
>> 8) & 0xff,
1217 (hci
->device
.lmp_caps
>> 16) & 0xff,
1218 (hci
->device
.lmp_caps
>> 24) & 0xff,
1219 (hci
->device
.lmp_caps
>> 32) & 0xff,
1220 (hci
->device
.lmp_caps
>> 40) & 0xff,
1221 (hci
->device
.lmp_caps
>> 48) & 0xff,
1222 (hci
->device
.lmp_caps
>> 56) & 0xff,
1226 bt_hci_event_complete(hci
, &lf
, READ_LOCAL_FEATURES_RP_SIZE
);
1229 static void bt_hci_read_local_ext_features_rp(struct bt_hci_s
*hci
, int page
)
1231 read_local_ext_features_rp lef
= {
1232 .status
= HCI_SUCCESS
,
1234 .max_page_num
= 0x00,
1237 0x5f, 0x35, 0x85, 0x7e, 0x9b, 0x19, 0x00, 0x80,
1241 memset(lef
.features
, 0, sizeof(lef
.features
));
1243 bt_hci_event_complete(hci
, &lef
, READ_LOCAL_EXT_FEATURES_RP_SIZE
);
1246 static void bt_hci_read_buffer_size_rp(struct bt_hci_s
*hci
)
1248 read_buffer_size_rp bs
= {
1249 /* This can be made configurable, for one standard USB dongle HCI
1250 * the four values are cpu_to_le16(0x0180), 0x40,
1251 * cpu_to_le16(0x0008), cpu_to_le16(0x0008). */
1252 .status
= HCI_SUCCESS
,
1253 .acl_mtu
= cpu_to_le16(0x0200),
1255 .acl_max_pkt
= cpu_to_le16(0x0001),
1256 .sco_max_pkt
= cpu_to_le16(0x0000),
1259 bt_hci_event_complete(hci
, &bs
, READ_BUFFER_SIZE_RP_SIZE
);
1262 /* Deprecated in V2.0 (page 661) */
1263 static void bt_hci_read_country_code_rp(struct bt_hci_s
*hci
)
1265 read_country_code_rp cc
={
1266 .status
= HCI_SUCCESS
,
1267 .country_code
= 0x00, /* North America & Europe^1 and Japan */
1270 bt_hci_event_complete(hci
, &cc
, READ_COUNTRY_CODE_RP_SIZE
);
1272 /* ^1. Except France, sorry */
1275 static void bt_hci_read_bd_addr_rp(struct bt_hci_s
*hci
)
1277 read_bd_addr_rp ba
= {
1278 .status
= HCI_SUCCESS
,
1279 .bdaddr
= BAINIT(&hci
->device
.bd_addr
),
1282 bt_hci_event_complete(hci
, &ba
, READ_BD_ADDR_RP_SIZE
);
1285 static int bt_hci_link_quality_rp(struct bt_hci_s
*hci
, uint16_t handle
)
1287 read_link_quality_rp lq
= {
1288 .status
= HCI_SUCCESS
,
1289 .handle
= HNDL(handle
),
1290 .link_quality
= 0xff,
1293 if (bt_hci_handle_bad(hci
, handle
))
1294 lq
.status
= HCI_NO_CONNECTION
;
1296 bt_hci_event_complete(hci
, &lq
, READ_LINK_QUALITY_RP_SIZE
);
1300 /* Generate a Command Complete event with only the Status parameter */
1301 static inline void bt_hci_event_complete_status(struct bt_hci_s
*hci
,
1304 bt_hci_event_complete(hci
, &status
, 1);
1307 static inline void bt_hci_event_complete_conn_cancel(struct bt_hci_s
*hci
,
1308 uint8_t status
, bdaddr_t
*bd_addr
)
1310 create_conn_cancel_rp params
= {
1312 .bdaddr
= BAINIT(bd_addr
),
1315 bt_hci_event_complete(hci
, ¶ms
, CREATE_CONN_CANCEL_RP_SIZE
);
1318 static inline void bt_hci_event_auth_complete(struct bt_hci_s
*hci
,
1321 evt_auth_complete params
= {
1322 .status
= HCI_SUCCESS
,
1323 .handle
= HNDL(handle
),
1326 bt_hci_event(hci
, EVT_AUTH_COMPLETE
, ¶ms
, EVT_AUTH_COMPLETE_SIZE
);
1329 static inline void bt_hci_event_encrypt_change(struct bt_hci_s
*hci
,
1330 uint16_t handle
, uint8_t mode
)
1332 evt_encrypt_change params
= {
1333 .status
= HCI_SUCCESS
,
1334 .handle
= HNDL(handle
),
1338 bt_hci_event(hci
, EVT_ENCRYPT_CHANGE
, ¶ms
, EVT_ENCRYPT_CHANGE_SIZE
);
1341 static inline void bt_hci_event_complete_name_cancel(struct bt_hci_s
*hci
,
1344 remote_name_req_cancel_rp params
= {
1345 .status
= HCI_INVALID_PARAMETERS
,
1346 .bdaddr
= BAINIT(bd_addr
),
1349 bt_hci_event_complete(hci
, ¶ms
, REMOTE_NAME_REQ_CANCEL_RP_SIZE
);
1352 static inline void bt_hci_event_read_remote_ext_features(struct bt_hci_s
*hci
,
1355 evt_read_remote_ext_features_complete params
= {
1356 .status
= HCI_UNSUPPORTED_FEATURE
,
1357 .handle
= HNDL(handle
),
1358 /* Rest uninitialised */
1361 bt_hci_event(hci
, EVT_READ_REMOTE_EXT_FEATURES_COMPLETE
,
1362 ¶ms
, EVT_READ_REMOTE_EXT_FEATURES_COMPLETE_SIZE
);
1365 static inline void bt_hci_event_complete_lmp_handle(struct bt_hci_s
*hci
,
1368 read_lmp_handle_rp params
= {
1369 .status
= HCI_NO_CONNECTION
,
1370 .handle
= HNDL(handle
),
1372 /* Rest uninitialised */
1375 bt_hci_event_complete(hci
, ¶ms
, READ_LMP_HANDLE_RP_SIZE
);
1378 static inline void bt_hci_event_complete_role_discovery(struct bt_hci_s
*hci
,
1379 int status
, uint16_t handle
, int master
)
1381 role_discovery_rp params
= {
1383 .handle
= HNDL(handle
),
1384 .role
= master
? 0x00 : 0x01,
1387 bt_hci_event_complete(hci
, ¶ms
, ROLE_DISCOVERY_RP_SIZE
);
1390 static inline void bt_hci_event_complete_flush(struct bt_hci_s
*hci
,
1391 int status
, uint16_t handle
)
1395 .handle
= HNDL(handle
),
1398 bt_hci_event_complete(hci
, ¶ms
, FLUSH_RP_SIZE
);
1401 static inline void bt_hci_event_complete_read_local_name(struct bt_hci_s
*hci
)
1403 read_local_name_rp params
;
1404 params
.status
= HCI_SUCCESS
;
1405 memset(params
.name
, 0, sizeof(params
.name
));
1406 if (hci
->device
.lmp_name
)
1407 pstrcpy(params
.name
, sizeof(params
.name
), hci
->device
.lmp_name
);
1409 bt_hci_event_complete(hci
, ¶ms
, READ_LOCAL_NAME_RP_SIZE
);
1412 static inline void bt_hci_event_complete_read_conn_accept_timeout(
1413 struct bt_hci_s
*hci
)
1415 read_conn_accept_timeout_rp params
= {
1416 .status
= HCI_SUCCESS
,
1417 .timeout
= cpu_to_le16(hci
->conn_accept_tout
),
1420 bt_hci_event_complete(hci
, ¶ms
, READ_CONN_ACCEPT_TIMEOUT_RP_SIZE
);
1423 static inline void bt_hci_event_complete_read_scan_enable(struct bt_hci_s
*hci
)
1425 read_scan_enable_rp params
= {
1426 .status
= HCI_SUCCESS
,
1428 (hci
->device
.inquiry_scan
? SCAN_INQUIRY
: 0) |
1429 (hci
->device
.page_scan
? SCAN_PAGE
: 0),
1432 bt_hci_event_complete(hci
, ¶ms
, READ_SCAN_ENABLE_RP_SIZE
);
1435 static inline void bt_hci_event_complete_read_local_class(struct bt_hci_s
*hci
)
1437 read_class_of_dev_rp params
;
1439 params
.status
= HCI_SUCCESS
;
1440 memcpy(params
.dev_class
, hci
->device
.class, sizeof(params
.dev_class
));
1442 bt_hci_event_complete(hci
, ¶ms
, READ_CLASS_OF_DEV_RP_SIZE
);
1445 static inline void bt_hci_event_complete_voice_setting(struct bt_hci_s
*hci
)
1447 read_voice_setting_rp params
= {
1448 .status
= HCI_SUCCESS
,
1449 .voice_setting
= hci
->voice_setting
, /* Note: no swapping */
1452 bt_hci_event_complete(hci
, ¶ms
, READ_VOICE_SETTING_RP_SIZE
);
1455 static inline void bt_hci_event_complete_read_inquiry_mode(
1456 struct bt_hci_s
*hci
)
1458 read_inquiry_mode_rp params
= {
1459 .status
= HCI_SUCCESS
,
1460 .mode
= hci
->lm
.inquiry_mode
,
1463 bt_hci_event_complete(hci
, ¶ms
, READ_INQUIRY_MODE_RP_SIZE
);
1466 static inline void bt_hci_event_num_comp_pkts(struct bt_hci_s
*hci
,
1467 uint16_t handle
, int packets
)
1469 uint16_t buf
[EVT_NUM_COMP_PKTS_SIZE(1) / 2 + 1];
1470 evt_num_comp_pkts
*params
= (void *) ((uint8_t *) buf
+ 1);
1472 params
->num_hndl
= 1;
1473 params
->connection
->handle
= HNDL(handle
);
1474 params
->connection
->num_packets
= cpu_to_le16(packets
);
1476 bt_hci_event(hci
, EVT_NUM_COMP_PKTS
, params
, EVT_NUM_COMP_PKTS_SIZE(1));
1479 static void bt_submit_hci(struct HCIInfo
*info
,
1480 const uint8_t *data
, int length
)
1482 struct bt_hci_s
*hci
= hci_from_info(info
);
1486 if (length
< HCI_COMMAND_HDR_SIZE
)
1489 memcpy(&hci
->last_cmd
, data
, 2);
1491 cmd
= (data
[1] << 8) | data
[0];
1493 if (cmd_opcode_ogf(cmd
) == 0 || cmd_opcode_ocf(cmd
) == 0) /* NOP */
1496 data
+= HCI_COMMAND_HDR_SIZE
;
1497 length
-= HCI_COMMAND_HDR_SIZE
;
1499 if (paramlen
> length
)
1502 #define PARAM(cmd, param) (((cmd##_cp *) data)->param)
1503 #define PARAM16(cmd, param) lduw_le_p(&PARAM(cmd, param))
1504 #define PARAMHANDLE(cmd) PARAM16(cmd, handle)
1505 #define LENGTH_CHECK(cmd) if (length < sizeof(cmd##_cp)) goto short_hci
1506 /* Note: the supported commands bitmask in bt_hci_read_local_commands_rp
1507 * needs to be updated every time a command is implemented here! */
1509 case cmd_opcode_pack(OGF_LINK_CTL
, OCF_INQUIRY
):
1510 LENGTH_CHECK(inquiry
);
1512 if (PARAM(inquiry
, length
) < 1) {
1513 bt_hci_event_complete_status(hci
, HCI_INVALID_PARAMETERS
);
1517 hci
->lm
.inquire
= 1;
1518 hci
->lm
.periodic
= 0;
1519 hci
->lm
.responses_left
= PARAM(inquiry
, num_rsp
) ?: INT_MAX
;
1520 hci
->lm
.responses
= 0;
1521 bt_hci_event_status(hci
, HCI_SUCCESS
);
1522 bt_hci_inquiry_start(hci
, PARAM(inquiry
, length
));
1525 case cmd_opcode_pack(OGF_LINK_CTL
, OCF_INQUIRY_CANCEL
):
1526 if (!hci
->lm
.inquire
|| hci
->lm
.periodic
) {
1527 fprintf(stderr
, "%s: Inquiry Cancel should only be issued after "
1528 "the Inquiry command has been issued, a Command "
1529 "Status event has been received for the Inquiry "
1530 "command, and before the Inquiry Complete event "
1531 "occurs", __func__
);
1532 bt_hci_event_complete_status(hci
, HCI_COMMAND_DISALLOWED
);
1536 hci
->lm
.inquire
= 0;
1537 timer_del(hci
->lm
.inquiry_done
);
1538 bt_hci_event_complete_status(hci
, HCI_SUCCESS
);
1541 case cmd_opcode_pack(OGF_LINK_CTL
, OCF_PERIODIC_INQUIRY
):
1542 LENGTH_CHECK(periodic_inquiry
);
1544 if (!(PARAM(periodic_inquiry
, length
) <
1545 PARAM16(periodic_inquiry
, min_period
) &&
1546 PARAM16(periodic_inquiry
, min_period
) <
1547 PARAM16(periodic_inquiry
, max_period
)) ||
1548 PARAM(periodic_inquiry
, length
) < 1 ||
1549 PARAM16(periodic_inquiry
, min_period
) < 2 ||
1550 PARAM16(periodic_inquiry
, max_period
) < 3) {
1551 bt_hci_event_complete_status(hci
, HCI_INVALID_PARAMETERS
);
1555 hci
->lm
.inquire
= 1;
1556 hci
->lm
.periodic
= 1;
1557 hci
->lm
.responses_left
= PARAM(periodic_inquiry
, num_rsp
);
1558 hci
->lm
.responses
= 0;
1559 hci
->lm
.inquiry_period
= PARAM16(periodic_inquiry
, max_period
);
1560 bt_hci_event_complete_status(hci
, HCI_SUCCESS
);
1561 bt_hci_inquiry_start(hci
, PARAM(periodic_inquiry
, length
));
1564 case cmd_opcode_pack(OGF_LINK_CTL
, OCF_EXIT_PERIODIC_INQUIRY
):
1565 if (!hci
->lm
.inquire
|| !hci
->lm
.periodic
) {
1566 fprintf(stderr
, "%s: Inquiry Cancel should only be issued after "
1567 "the Inquiry command has been issued, a Command "
1568 "Status event has been received for the Inquiry "
1569 "command, and before the Inquiry Complete event "
1570 "occurs", __func__
);
1571 bt_hci_event_complete_status(hci
, HCI_COMMAND_DISALLOWED
);
1574 hci
->lm
.inquire
= 0;
1575 timer_del(hci
->lm
.inquiry_done
);
1576 timer_del(hci
->lm
.inquiry_next
);
1577 bt_hci_event_complete_status(hci
, HCI_SUCCESS
);
1580 case cmd_opcode_pack(OGF_LINK_CTL
, OCF_CREATE_CONN
):
1581 LENGTH_CHECK(create_conn
);
1583 if (hci
->lm
.connecting
>= HCI_HANDLES_MAX
) {
1584 bt_hci_event_status(hci
, HCI_REJECTED_LIMITED_RESOURCES
);
1587 bt_hci_event_status(hci
, HCI_SUCCESS
);
1589 if (bt_hci_connect(hci
, &PARAM(create_conn
, bdaddr
)))
1590 bt_hci_connection_reject_event(hci
, &PARAM(create_conn
, bdaddr
));
1593 case cmd_opcode_pack(OGF_LINK_CTL
, OCF_DISCONNECT
):
1594 LENGTH_CHECK(disconnect
);
1596 if (bt_hci_handle_bad(hci
, PARAMHANDLE(disconnect
))) {
1597 bt_hci_event_status(hci
, HCI_NO_CONNECTION
);
1601 bt_hci_event_status(hci
, HCI_SUCCESS
);
1602 bt_hci_disconnect(hci
, PARAMHANDLE(disconnect
),
1603 PARAM(disconnect
, reason
));
1606 case cmd_opcode_pack(OGF_LINK_CTL
, OCF_CREATE_CONN_CANCEL
):
1607 LENGTH_CHECK(create_conn_cancel
);
1609 if (bt_hci_lmp_connection_ready(hci
,
1610 &PARAM(create_conn_cancel
, bdaddr
))) {
1611 for (i
= 0; i
< HCI_HANDLES_MAX
; i
++)
1612 if (bt_hci_role_master(hci
, i
) && hci
->lm
.handle
[i
].link
&&
1613 !bacmp(&hci
->lm
.handle
[i
].link
->slave
->bd_addr
,
1614 &PARAM(create_conn_cancel
, bdaddr
)))
1617 bt_hci_event_complete_conn_cancel(hci
, i
< HCI_HANDLES_MAX
?
1618 HCI_ACL_CONNECTION_EXISTS
: HCI_NO_CONNECTION
,
1619 &PARAM(create_conn_cancel
, bdaddr
));
1621 bt_hci_event_complete_conn_cancel(hci
, HCI_SUCCESS
,
1622 &PARAM(create_conn_cancel
, bdaddr
));
1625 case cmd_opcode_pack(OGF_LINK_CTL
, OCF_ACCEPT_CONN_REQ
):
1626 LENGTH_CHECK(accept_conn_req
);
1628 if (!hci
->conn_req_host
||
1629 bacmp(&PARAM(accept_conn_req
, bdaddr
),
1630 &hci
->conn_req_host
->bd_addr
)) {
1631 bt_hci_event_status(hci
, HCI_INVALID_PARAMETERS
);
1635 bt_hci_event_status(hci
, HCI_SUCCESS
);
1636 bt_hci_connection_accept(hci
, hci
->conn_req_host
);
1637 hci
->conn_req_host
= NULL
;
1640 case cmd_opcode_pack(OGF_LINK_CTL
, OCF_REJECT_CONN_REQ
):
1641 LENGTH_CHECK(reject_conn_req
);
1643 if (!hci
->conn_req_host
||
1644 bacmp(&PARAM(reject_conn_req
, bdaddr
),
1645 &hci
->conn_req_host
->bd_addr
)) {
1646 bt_hci_event_status(hci
, HCI_INVALID_PARAMETERS
);
1650 bt_hci_event_status(hci
, HCI_SUCCESS
);
1651 bt_hci_connection_reject(hci
, hci
->conn_req_host
,
1652 PARAM(reject_conn_req
, reason
));
1653 bt_hci_connection_reject_event(hci
, &hci
->conn_req_host
->bd_addr
);
1654 hci
->conn_req_host
= NULL
;
1657 case cmd_opcode_pack(OGF_LINK_CTL
, OCF_AUTH_REQUESTED
):
1658 LENGTH_CHECK(auth_requested
);
1660 if (bt_hci_handle_bad(hci
, PARAMHANDLE(auth_requested
)))
1661 bt_hci_event_status(hci
, HCI_NO_CONNECTION
);
1663 bt_hci_event_status(hci
, HCI_SUCCESS
);
1664 bt_hci_event_auth_complete(hci
, PARAMHANDLE(auth_requested
));
1668 case cmd_opcode_pack(OGF_LINK_CTL
, OCF_SET_CONN_ENCRYPT
):
1669 LENGTH_CHECK(set_conn_encrypt
);
1671 if (bt_hci_handle_bad(hci
, PARAMHANDLE(set_conn_encrypt
)))
1672 bt_hci_event_status(hci
, HCI_NO_CONNECTION
);
1674 bt_hci_event_status(hci
, HCI_SUCCESS
);
1675 bt_hci_event_encrypt_change(hci
,
1676 PARAMHANDLE(set_conn_encrypt
),
1677 PARAM(set_conn_encrypt
, encrypt
));
1681 case cmd_opcode_pack(OGF_LINK_CTL
, OCF_REMOTE_NAME_REQ
):
1682 LENGTH_CHECK(remote_name_req
);
1684 if (bt_hci_name_req(hci
, &PARAM(remote_name_req
, bdaddr
)))
1685 bt_hci_event_status(hci
, HCI_NO_CONNECTION
);
1688 case cmd_opcode_pack(OGF_LINK_CTL
, OCF_REMOTE_NAME_REQ_CANCEL
):
1689 LENGTH_CHECK(remote_name_req_cancel
);
1691 bt_hci_event_complete_name_cancel(hci
,
1692 &PARAM(remote_name_req_cancel
, bdaddr
));
1695 case cmd_opcode_pack(OGF_LINK_CTL
, OCF_READ_REMOTE_FEATURES
):
1696 LENGTH_CHECK(read_remote_features
);
1698 if (bt_hci_features_req(hci
, PARAMHANDLE(read_remote_features
)))
1699 bt_hci_event_status(hci
, HCI_NO_CONNECTION
);
1702 case cmd_opcode_pack(OGF_LINK_CTL
, OCF_READ_REMOTE_EXT_FEATURES
):
1703 LENGTH_CHECK(read_remote_ext_features
);
1705 if (bt_hci_handle_bad(hci
, PARAMHANDLE(read_remote_ext_features
)))
1706 bt_hci_event_status(hci
, HCI_NO_CONNECTION
);
1708 bt_hci_event_status(hci
, HCI_SUCCESS
);
1709 bt_hci_event_read_remote_ext_features(hci
,
1710 PARAMHANDLE(read_remote_ext_features
));
1714 case cmd_opcode_pack(OGF_LINK_CTL
, OCF_READ_REMOTE_VERSION
):
1715 LENGTH_CHECK(read_remote_version
);
1717 if (bt_hci_version_req(hci
, PARAMHANDLE(read_remote_version
)))
1718 bt_hci_event_status(hci
, HCI_NO_CONNECTION
);
1721 case cmd_opcode_pack(OGF_LINK_CTL
, OCF_READ_CLOCK_OFFSET
):
1722 LENGTH_CHECK(read_clock_offset
);
1724 if (bt_hci_clkoffset_req(hci
, PARAMHANDLE(read_clock_offset
)))
1725 bt_hci_event_status(hci
, HCI_NO_CONNECTION
);
1728 case cmd_opcode_pack(OGF_LINK_CTL
, OCF_READ_LMP_HANDLE
):
1729 LENGTH_CHECK(read_lmp_handle
);
1732 bt_hci_event_complete_lmp_handle(hci
, PARAMHANDLE(read_lmp_handle
));
1735 case cmd_opcode_pack(OGF_LINK_POLICY
, OCF_HOLD_MODE
):
1736 LENGTH_CHECK(hold_mode
);
1738 if (PARAM16(hold_mode
, min_interval
) >
1739 PARAM16(hold_mode
, max_interval
) ||
1740 PARAM16(hold_mode
, min_interval
) < 0x0002 ||
1741 PARAM16(hold_mode
, max_interval
) > 0xff00 ||
1742 (PARAM16(hold_mode
, min_interval
) & 1) ||
1743 (PARAM16(hold_mode
, max_interval
) & 1)) {
1744 bt_hci_event_status(hci
, HCI_INVALID_PARAMETERS
);
1748 if (bt_hci_mode_change(hci
, PARAMHANDLE(hold_mode
),
1749 PARAM16(hold_mode
, max_interval
),
1751 bt_hci_event_status(hci
, HCI_NO_CONNECTION
);
1754 case cmd_opcode_pack(OGF_LINK_POLICY
, OCF_PARK_MODE
):
1755 LENGTH_CHECK(park_mode
);
1757 if (PARAM16(park_mode
, min_interval
) >
1758 PARAM16(park_mode
, max_interval
) ||
1759 PARAM16(park_mode
, min_interval
) < 0x000e ||
1760 (PARAM16(park_mode
, min_interval
) & 1) ||
1761 (PARAM16(park_mode
, max_interval
) & 1)) {
1762 bt_hci_event_status(hci
, HCI_INVALID_PARAMETERS
);
1766 if (bt_hci_mode_change(hci
, PARAMHANDLE(park_mode
),
1767 PARAM16(park_mode
, max_interval
),
1769 bt_hci_event_status(hci
, HCI_NO_CONNECTION
);
1772 case cmd_opcode_pack(OGF_LINK_POLICY
, OCF_EXIT_PARK_MODE
):
1773 LENGTH_CHECK(exit_park_mode
);
1775 if (bt_hci_mode_cancel(hci
, PARAMHANDLE(exit_park_mode
),
1777 bt_hci_event_status(hci
, HCI_NO_CONNECTION
);
1780 case cmd_opcode_pack(OGF_LINK_POLICY
, OCF_ROLE_DISCOVERY
):
1781 LENGTH_CHECK(role_discovery
);
1783 if (bt_hci_handle_bad(hci
, PARAMHANDLE(role_discovery
)))
1784 bt_hci_event_complete_role_discovery(hci
,
1785 HCI_NO_CONNECTION
, PARAMHANDLE(role_discovery
), 0);
1787 bt_hci_event_complete_role_discovery(hci
,
1788 HCI_SUCCESS
, PARAMHANDLE(role_discovery
),
1789 bt_hci_role_master(hci
,
1790 PARAMHANDLE(role_discovery
)));
1793 case cmd_opcode_pack(OGF_HOST_CTL
, OCF_SET_EVENT_MASK
):
1794 LENGTH_CHECK(set_event_mask
);
1796 memcpy(hci
->event_mask
, PARAM(set_event_mask
, mask
), 8);
1797 bt_hci_event_complete_status(hci
, HCI_SUCCESS
);
1800 case cmd_opcode_pack(OGF_HOST_CTL
, OCF_RESET
):
1802 bt_hci_event_status(hci
, HCI_SUCCESS
);
1805 case cmd_opcode_pack(OGF_HOST_CTL
, OCF_SET_EVENT_FLT
):
1806 if (length
>= 1 && PARAM(set_event_flt
, flt_type
) == FLT_CLEAR_ALL
)
1807 /* No length check */;
1809 LENGTH_CHECK(set_event_flt
);
1811 /* Filters are not implemented */
1812 bt_hci_event_complete_status(hci
, HCI_SUCCESS
);
1815 case cmd_opcode_pack(OGF_HOST_CTL
, OCF_FLUSH
):
1816 LENGTH_CHECK(flush
);
1818 if (bt_hci_handle_bad(hci
, PARAMHANDLE(flush
)))
1819 bt_hci_event_complete_flush(hci
,
1820 HCI_NO_CONNECTION
, PARAMHANDLE(flush
));
1822 /* TODO: ordering? */
1823 bt_hci_event(hci
, EVT_FLUSH_OCCURRED
,
1824 &PARAM(flush
, handle
),
1825 EVT_FLUSH_OCCURRED_SIZE
);
1826 bt_hci_event_complete_flush(hci
,
1827 HCI_SUCCESS
, PARAMHANDLE(flush
));
1831 case cmd_opcode_pack(OGF_HOST_CTL
, OCF_CHANGE_LOCAL_NAME
):
1832 LENGTH_CHECK(change_local_name
);
1834 g_free((void *) hci
->device
.lmp_name
);
1835 hci
->device
.lmp_name
= g_strndup(PARAM(change_local_name
, name
),
1836 sizeof(PARAM(change_local_name
, name
)));
1837 bt_hci_event_complete_status(hci
, HCI_SUCCESS
);
1840 case cmd_opcode_pack(OGF_HOST_CTL
, OCF_READ_LOCAL_NAME
):
1841 bt_hci_event_complete_read_local_name(hci
);
1844 case cmd_opcode_pack(OGF_HOST_CTL
, OCF_READ_CONN_ACCEPT_TIMEOUT
):
1845 bt_hci_event_complete_read_conn_accept_timeout(hci
);
1848 case cmd_opcode_pack(OGF_HOST_CTL
, OCF_WRITE_CONN_ACCEPT_TIMEOUT
):
1850 LENGTH_CHECK(write_conn_accept_timeout
);
1852 if (PARAM16(write_conn_accept_timeout
, timeout
) < 0x0001 ||
1853 PARAM16(write_conn_accept_timeout
, timeout
) > 0xb540) {
1854 bt_hci_event_complete_status(hci
, HCI_INVALID_PARAMETERS
);
1858 hci
->conn_accept_tout
= PARAM16(write_conn_accept_timeout
, timeout
);
1859 bt_hci_event_complete_status(hci
, HCI_SUCCESS
);
1862 case cmd_opcode_pack(OGF_HOST_CTL
, OCF_READ_SCAN_ENABLE
):
1863 bt_hci_event_complete_read_scan_enable(hci
);
1866 case cmd_opcode_pack(OGF_HOST_CTL
, OCF_WRITE_SCAN_ENABLE
):
1867 LENGTH_CHECK(write_scan_enable
);
1869 /* TODO: check that the remaining bits are all 0 */
1870 hci
->device
.inquiry_scan
=
1871 !!(PARAM(write_scan_enable
, scan_enable
) & SCAN_INQUIRY
);
1872 hci
->device
.page_scan
=
1873 !!(PARAM(write_scan_enable
, scan_enable
) & SCAN_PAGE
);
1874 bt_hci_event_complete_status(hci
, HCI_SUCCESS
);
1877 case cmd_opcode_pack(OGF_HOST_CTL
, OCF_READ_CLASS_OF_DEV
):
1878 bt_hci_event_complete_read_local_class(hci
);
1881 case cmd_opcode_pack(OGF_HOST_CTL
, OCF_WRITE_CLASS_OF_DEV
):
1882 LENGTH_CHECK(write_class_of_dev
);
1884 memcpy(hci
->device
.class, PARAM(write_class_of_dev
, dev_class
),
1885 sizeof(PARAM(write_class_of_dev
, dev_class
)));
1886 bt_hci_event_complete_status(hci
, HCI_SUCCESS
);
1889 case cmd_opcode_pack(OGF_HOST_CTL
, OCF_READ_VOICE_SETTING
):
1890 bt_hci_event_complete_voice_setting(hci
);
1893 case cmd_opcode_pack(OGF_HOST_CTL
, OCF_WRITE_VOICE_SETTING
):
1894 LENGTH_CHECK(write_voice_setting
);
1896 hci
->voice_setting
= PARAM(write_voice_setting
, voice_setting
);
1897 bt_hci_event_complete_status(hci
, HCI_SUCCESS
);
1900 case cmd_opcode_pack(OGF_HOST_CTL
, OCF_HOST_NUMBER_OF_COMPLETED_PACKETS
):
1901 if (length
< data
[0] * 2 + 1)
1904 for (i
= 0; i
< data
[0]; i
++)
1905 if (bt_hci_handle_bad(hci
,
1906 data
[i
* 2 + 1] | (data
[i
* 2 + 2] << 8)))
1907 bt_hci_event_complete_status(hci
, HCI_INVALID_PARAMETERS
);
1910 case cmd_opcode_pack(OGF_HOST_CTL
, OCF_READ_INQUIRY_MODE
):
1911 /* Only if (local_features[3] & 0x40) && (local_commands[12] & 0x40)
1913 * goto unknown_command */
1914 bt_hci_event_complete_read_inquiry_mode(hci
);
1917 case cmd_opcode_pack(OGF_HOST_CTL
, OCF_WRITE_INQUIRY_MODE
):
1918 /* Only if (local_features[3] & 0x40) && (local_commands[12] & 0x80)
1920 * goto unknown_command */
1921 LENGTH_CHECK(write_inquiry_mode
);
1923 if (PARAM(write_inquiry_mode
, mode
) > 0x01) {
1924 bt_hci_event_complete_status(hci
, HCI_INVALID_PARAMETERS
);
1928 hci
->lm
.inquiry_mode
= PARAM(write_inquiry_mode
, mode
);
1929 bt_hci_event_complete_status(hci
, HCI_SUCCESS
);
1932 case cmd_opcode_pack(OGF_INFO_PARAM
, OCF_READ_LOCAL_VERSION
):
1933 bt_hci_read_local_version_rp(hci
);
1936 case cmd_opcode_pack(OGF_INFO_PARAM
, OCF_READ_LOCAL_COMMANDS
):
1937 bt_hci_read_local_commands_rp(hci
);
1940 case cmd_opcode_pack(OGF_INFO_PARAM
, OCF_READ_LOCAL_FEATURES
):
1941 bt_hci_read_local_features_rp(hci
);
1944 case cmd_opcode_pack(OGF_INFO_PARAM
, OCF_READ_LOCAL_EXT_FEATURES
):
1945 LENGTH_CHECK(read_local_ext_features
);
1947 bt_hci_read_local_ext_features_rp(hci
,
1948 PARAM(read_local_ext_features
, page_num
));
1951 case cmd_opcode_pack(OGF_INFO_PARAM
, OCF_READ_BUFFER_SIZE
):
1952 bt_hci_read_buffer_size_rp(hci
);
1955 case cmd_opcode_pack(OGF_INFO_PARAM
, OCF_READ_COUNTRY_CODE
):
1956 bt_hci_read_country_code_rp(hci
);
1959 case cmd_opcode_pack(OGF_INFO_PARAM
, OCF_READ_BD_ADDR
):
1960 bt_hci_read_bd_addr_rp(hci
);
1963 case cmd_opcode_pack(OGF_STATUS_PARAM
, OCF_READ_LINK_QUALITY
):
1964 LENGTH_CHECK(read_link_quality
);
1966 bt_hci_link_quality_rp(hci
, PARAMHANDLE(read_link_quality
));
1970 bt_hci_event_status(hci
, HCI_UNKNOWN_COMMAND
);
1974 error_report("%s: HCI packet too short (%iB)", __func__
, length
);
1975 bt_hci_event_status(hci
, HCI_INVALID_PARAMETERS
);
1980 /* We could perform fragmentation here, we can't do "recombination" because
1981 * at this layer the length of the payload is not know ahead, so we only
1982 * know that a packet contained the last fragment of the SDU when the next
1984 static inline void bt_hci_lmp_acl_data(struct bt_hci_s
*hci
, uint16_t handle
,
1985 const uint8_t *data
, int start
, int len
)
1987 struct hci_acl_hdr
*pkt
= (void *) hci
->acl_buf
;
1989 /* TODO: packet flags */
1990 /* TODO: avoid memcpy'ing */
1992 if (len
+ HCI_ACL_HDR_SIZE
> sizeof(hci
->acl_buf
)) {
1993 error_report("%s: can't take ACL packets %i bytes long",
1997 memcpy(hci
->acl_buf
+ HCI_ACL_HDR_SIZE
, data
, len
);
1999 pkt
->handle
= cpu_to_le16(
2000 acl_handle_pack(handle
, start
? ACL_START
: ACL_CONT
));
2001 pkt
->dlen
= cpu_to_le16(len
);
2002 hci
->info
.acl_recv(hci
->info
.opaque
,
2003 hci
->acl_buf
, len
+ HCI_ACL_HDR_SIZE
);
2006 static void bt_hci_lmp_acl_data_slave(struct bt_link_s
*btlink
,
2007 const uint8_t *data
, int start
, int len
)
2009 struct bt_hci_link_s
*link
= (struct bt_hci_link_s
*) btlink
;
2011 bt_hci_lmp_acl_data(hci_from_device(btlink
->slave
),
2012 link
->handle
, data
, start
, len
);
2015 static void bt_hci_lmp_acl_data_host(struct bt_link_s
*link
,
2016 const uint8_t *data
, int start
, int len
)
2018 bt_hci_lmp_acl_data(hci_from_device(link
->host
),
2019 link
->handle
, data
, start
, len
);
2022 static void bt_submit_acl(struct HCIInfo
*info
,
2023 const uint8_t *data
, int length
)
2025 struct bt_hci_s
*hci
= hci_from_info(info
);
2028 struct bt_link_s
*link
;
2030 if (length
< HCI_ACL_HDR_SIZE
) {
2031 error_report("%s: ACL packet too short (%iB)", __func__
, length
);
2035 handle
= acl_handle((data
[1] << 8) | data
[0]);
2036 flags
= acl_flags((data
[1] << 8) | data
[0]);
2037 datalen
= (data
[3] << 8) | data
[2];
2038 data
+= HCI_ACL_HDR_SIZE
;
2039 length
-= HCI_ACL_HDR_SIZE
;
2041 if (bt_hci_handle_bad(hci
, handle
)) {
2042 error_report("%s: invalid ACL handle %03x", __func__
, handle
);
2043 /* TODO: signal an error */
2046 handle
&= ~HCI_HANDLE_OFFSET
;
2048 if (datalen
> length
) {
2049 error_report("%s: ACL packet too short (%iB < %iB)",
2050 __func__
, length
, datalen
);
2054 link
= hci
->lm
.handle
[handle
].link
;
2056 if ((flags
& ~3) == ACL_ACTIVE_BCAST
) {
2057 if (!hci
->asb_handle
)
2058 hci
->asb_handle
= handle
;
2059 else if (handle
!= hci
->asb_handle
) {
2060 error_report("%s: Bad handle %03x in Active Slave Broadcast",
2062 /* TODO: signal an error */
2069 if ((flags
& ~3) == ACL_PICO_BCAST
) {
2070 if (!hci
->psb_handle
)
2071 hci
->psb_handle
= handle
;
2072 else if (handle
!= hci
->psb_handle
) {
2073 error_report("%s: Bad handle %03x in Parked Slave Broadcast",
2075 /* TODO: signal an error */
2082 /* TODO: increase counter and send EVT_NUM_COMP_PKTS */
2083 bt_hci_event_num_comp_pkts(hci
, handle
| HCI_HANDLE_OFFSET
, 1);
2085 /* Do this last as it can trigger further events even in this HCI */
2086 hci
->lm
.handle
[handle
].lmp_acl_data(link
, data
,
2087 (flags
& 3) == ACL_START
, length
);
2090 static void bt_submit_sco(struct HCIInfo
*info
,
2091 const uint8_t *data
, int length
)
2093 struct bt_hci_s
*hci
= hci_from_info(info
);
2100 handle
= acl_handle((data
[1] << 8) | data
[0]);
2104 if (bt_hci_handle_bad(hci
, handle
)) {
2105 error_report("%s: invalid SCO handle %03x", __func__
, handle
);
2109 if (datalen
> length
) {
2110 error_report("%s: SCO packet too short (%iB < %iB)",
2111 __func__
, length
, datalen
);
2117 /* TODO: increase counter and send EVT_NUM_COMP_PKTS if synchronous
2118 * Flow Control is enabled.
2119 * (See Read/Write_Synchronous_Flow_Control_Enable on page 513 and
2123 static uint8_t *bt_hci_evt_packet(void *opaque
)
2125 /* TODO: allocate a packet from upper layer */
2126 struct bt_hci_s
*s
= opaque
;
2131 static void bt_hci_evt_submit(void *opaque
, int len
)
2133 /* TODO: notify upper layer */
2134 struct bt_hci_s
*s
= opaque
;
2136 s
->info
.evt_recv(s
->info
.opaque
, s
->evt_buf
, len
);
2139 static int bt_hci_bdaddr_set(struct HCIInfo
*info
, const uint8_t *bd_addr
)
2141 struct bt_hci_s
*hci
= hci_from_info(info
);
2143 bacpy(&hci
->device
.bd_addr
, (const bdaddr_t
*) bd_addr
);
2147 static void bt_hci_done(struct HCIInfo
*info
);
2148 static void bt_hci_destroy(struct bt_device_s
*dev
)
2150 struct bt_hci_s
*hci
= hci_from_device(dev
);
2152 bt_hci_done(&hci
->info
);
2155 struct HCIInfo
*bt_new_hci(struct bt_scatternet_s
*net
)
2157 struct bt_hci_s
*s
= g_malloc0(sizeof(struct bt_hci_s
));
2159 s
->lm
.inquiry_done
= timer_new_ns(QEMU_CLOCK_VIRTUAL
, bt_hci_inquiry_done
, s
);
2160 s
->lm
.inquiry_next
= timer_new_ns(QEMU_CLOCK_VIRTUAL
, bt_hci_inquiry_next
, s
);
2161 s
->conn_accept_timer
=
2162 timer_new_ns(QEMU_CLOCK_VIRTUAL
, bt_hci_conn_accept_timeout
, s
);
2164 s
->evt_packet
= bt_hci_evt_packet
;
2165 s
->evt_submit
= bt_hci_evt_submit
;
2168 bt_device_init(&s
->device
, net
);
2169 s
->device
.lmp_connection_request
= bt_hci_lmp_connection_request
;
2170 s
->device
.lmp_connection_complete
= bt_hci_lmp_connection_complete
;
2171 s
->device
.lmp_disconnect_master
= bt_hci_lmp_disconnect_host
;
2172 s
->device
.lmp_disconnect_slave
= bt_hci_lmp_disconnect_slave
;
2173 s
->device
.lmp_acl_data
= bt_hci_lmp_acl_data_slave
;
2174 s
->device
.lmp_acl_resp
= bt_hci_lmp_acl_data_host
;
2175 s
->device
.lmp_mode_change
= bt_hci_lmp_mode_change_slave
;
2178 /* Also keep in sync with supported commands bitmask in
2179 * bt_hci_read_local_commands_rp */
2180 s
->device
.lmp_caps
= 0x8000199b7e85355fll
;
2184 s
->info
.cmd_send
= bt_submit_hci
;
2185 s
->info
.sco_send
= bt_submit_sco
;
2186 s
->info
.acl_send
= bt_submit_acl
;
2187 s
->info
.bdaddr_set
= bt_hci_bdaddr_set
;
2189 s
->device
.handle_destroy
= bt_hci_destroy
;
2191 error_setg(&s
->replay_blocker
, QERR_REPLAY_NOT_SUPPORTED
, "-bt hci");
2192 replay_add_blocker(s
->replay_blocker
);
2197 struct HCIInfo
*hci_init(const char *str
)
2200 struct bt_scatternet_s
*vlan
= 0;
2202 if (!strcmp(str
, "null"))
2205 else if (!strncmp(str
, "host", 4) && (str
[4] == '\0' || str
[4] == ':'))
2207 return bt_host_hci(str
[4] ? str
+ 5 : "hci0");
2208 else if (!strncmp(str
, "hci", 3)) {
2211 if (!strncmp(str
+ 3, ",vlan=", 6)) {
2212 vlan
= qemu_find_bt_vlan(strtol(str
+ 9, &endp
, 0));
2217 vlan
= qemu_find_bt_vlan(0);
2219 return bt_new_hci(vlan
);
2222 error_report("Unknown bluetooth HCI `%s'.", str
);
2227 static void bt_hci_done(struct HCIInfo
*info
)
2229 struct bt_hci_s
*hci
= hci_from_info(info
);
2232 bt_device_done(&hci
->device
);
2234 g_free((void *) hci
->device
.lmp_name
);
2236 /* Be gentle and send DISCONNECT to all connected peers and those
2237 * currently waiting for us to accept or reject a connection request.
2238 * This frees the links. */
2239 if (hci
->conn_req_host
) {
2240 bt_hci_connection_reject(hci
,
2241 hci
->conn_req_host
, HCI_OE_POWER_OFF
);
2245 for (handle
= HCI_HANDLE_OFFSET
;
2246 handle
< (HCI_HANDLE_OFFSET
| HCI_HANDLES_MAX
); handle
++)
2247 if (!bt_hci_handle_bad(hci
, handle
))
2248 bt_hci_disconnect(hci
, handle
, HCI_OE_POWER_OFF
);
2250 /* TODO: this is not enough actually, there may be slaves from whom
2251 * we have requested a connection who will soon (or not) respond with
2252 * an accept or a reject, so we should also check if hci->lm.connecting
2253 * is non-zero and if so, avoid freeing the hci but otherwise disappear
2254 * from all qemu social life (e.g. stop scanning and request to be
2255 * removed from s->device.net) and arrange for
2256 * s->device.lmp_connection_complete to free the remaining bits once
2257 * hci->lm.awaiting_bdaddr[] is empty. */
2259 timer_free(hci
->lm
.inquiry_done
);
2260 timer_free(hci
->lm
.inquiry_next
);
2261 timer_free(hci
->conn_accept_timer
);