2 BlueZ - Bluetooth protocol stack for Linux
3 Copyright (c) 2000-2001, 2010, Code Aurora Forum. All rights reserved.
5 Written 2000,2001 by Maxim Krasnyansky <maxk@qualcomm.com>
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License version 2 as
9 published by the Free Software Foundation;
11 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
12 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
13 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
14 IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY
15 CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
16 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
17 ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
18 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
20 ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
21 COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
22 SOFTWARE IS DISCLAIMED.
25 /* Bluetooth HCI event handling. */
27 #include <asm/unaligned.h>
29 #include <net/bluetooth/bluetooth.h>
30 #include <net/bluetooth/hci_core.h>
31 #include <net/bluetooth/mgmt.h>
33 #include "hci_request.h"
34 #include "hci_debugfs.h"
40 #define ZERO_KEY "\x00\x00\x00\x00\x00\x00\x00\x00" \
41 "\x00\x00\x00\x00\x00\x00\x00\x00"
43 #define secs_to_jiffies(_secs) msecs_to_jiffies((_secs) * 1000)
45 /* Handle HCI Event packets */
47 static void hci_cc_inquiry_cancel(struct hci_dev *hdev, struct sk_buff *skb,
50 __u8 status = *((__u8 *) skb->data);
52 BT_DBG("%s status 0x%2.2x", hdev->name, status);
54 /* It is possible that we receive Inquiry Complete event right
55 * before we receive Inquiry Cancel Command Complete event, in
56 * which case the latter event should have status of Command
57 * Disallowed (0x0c). This should not be treated as error, since
58 * we actually achieve what Inquiry Cancel wants to achieve,
59 * which is to end the last Inquiry session.
61 if (status == 0x0c && !test_bit(HCI_INQUIRY, &hdev->flags)) {
62 bt_dev_warn(hdev, "Ignoring error of Inquiry Cancel command");
71 clear_bit(HCI_INQUIRY, &hdev->flags);
72 smp_mb__after_atomic(); /* wake_up_bit advises about this barrier */
73 wake_up_bit(&hdev->flags, HCI_INQUIRY);
76 /* Set discovery state to stopped if we're not doing LE active
79 if (!hci_dev_test_flag(hdev, HCI_LE_SCAN) ||
80 hdev->le_scan_type != LE_SCAN_ACTIVE)
81 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
84 hci_conn_check_pending(hdev);
87 static void hci_cc_periodic_inq(struct hci_dev *hdev, struct sk_buff *skb)
89 __u8 status = *((__u8 *) skb->data);
91 BT_DBG("%s status 0x%2.2x", hdev->name, status);
96 hci_dev_set_flag(hdev, HCI_PERIODIC_INQ);
99 static void hci_cc_exit_periodic_inq(struct hci_dev *hdev, struct sk_buff *skb)
101 __u8 status = *((__u8 *) skb->data);
103 BT_DBG("%s status 0x%2.2x", hdev->name, status);
108 hci_dev_clear_flag(hdev, HCI_PERIODIC_INQ);
110 hci_conn_check_pending(hdev);
113 static void hci_cc_remote_name_req_cancel(struct hci_dev *hdev,
116 BT_DBG("%s", hdev->name);
119 static void hci_cc_role_discovery(struct hci_dev *hdev, struct sk_buff *skb)
121 struct hci_rp_role_discovery *rp = (void *) skb->data;
122 struct hci_conn *conn;
124 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
131 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(rp->handle));
133 conn->role = rp->role;
135 hci_dev_unlock(hdev);
138 static void hci_cc_read_link_policy(struct hci_dev *hdev, struct sk_buff *skb)
140 struct hci_rp_read_link_policy *rp = (void *) skb->data;
141 struct hci_conn *conn;
143 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
150 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(rp->handle));
152 conn->link_policy = __le16_to_cpu(rp->policy);
154 hci_dev_unlock(hdev);
157 static void hci_cc_write_link_policy(struct hci_dev *hdev, struct sk_buff *skb)
159 struct hci_rp_write_link_policy *rp = (void *) skb->data;
160 struct hci_conn *conn;
163 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
168 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_LINK_POLICY);
174 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(rp->handle));
176 conn->link_policy = get_unaligned_le16(sent + 2);
178 hci_dev_unlock(hdev);
181 static void hci_cc_read_def_link_policy(struct hci_dev *hdev,
184 struct hci_rp_read_def_link_policy *rp = (void *) skb->data;
186 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
191 hdev->link_policy = __le16_to_cpu(rp->policy);
194 static void hci_cc_write_def_link_policy(struct hci_dev *hdev,
197 __u8 status = *((__u8 *) skb->data);
200 BT_DBG("%s status 0x%2.2x", hdev->name, status);
205 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_DEF_LINK_POLICY);
209 hdev->link_policy = get_unaligned_le16(sent);
212 static void hci_cc_reset(struct hci_dev *hdev, struct sk_buff *skb)
214 __u8 status = *((__u8 *) skb->data);
216 BT_DBG("%s status 0x%2.2x", hdev->name, status);
218 clear_bit(HCI_RESET, &hdev->flags);
223 /* Reset all non-persistent flags */
224 hci_dev_clear_volatile_flags(hdev);
226 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
228 hdev->inq_tx_power = HCI_TX_POWER_INVALID;
229 hdev->adv_tx_power = HCI_TX_POWER_INVALID;
231 memset(hdev->adv_data, 0, sizeof(hdev->adv_data));
232 hdev->adv_data_len = 0;
234 memset(hdev->scan_rsp_data, 0, sizeof(hdev->scan_rsp_data));
235 hdev->scan_rsp_data_len = 0;
237 hdev->le_scan_type = LE_SCAN_PASSIVE;
239 hdev->ssp_debug_mode = 0;
241 hci_bdaddr_list_clear(&hdev->le_accept_list);
242 hci_bdaddr_list_clear(&hdev->le_resolv_list);
245 static void hci_cc_read_stored_link_key(struct hci_dev *hdev,
248 struct hci_rp_read_stored_link_key *rp = (void *)skb->data;
249 struct hci_cp_read_stored_link_key *sent;
251 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
253 sent = hci_sent_cmd_data(hdev, HCI_OP_READ_STORED_LINK_KEY);
257 if (!rp->status && sent->read_all == 0x01) {
258 hdev->stored_max_keys = rp->max_keys;
259 hdev->stored_num_keys = rp->num_keys;
263 static void hci_cc_delete_stored_link_key(struct hci_dev *hdev,
266 struct hci_rp_delete_stored_link_key *rp = (void *)skb->data;
268 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
273 if (rp->num_keys <= hdev->stored_num_keys)
274 hdev->stored_num_keys -= rp->num_keys;
276 hdev->stored_num_keys = 0;
279 static void hci_cc_write_local_name(struct hci_dev *hdev, struct sk_buff *skb)
281 __u8 status = *((__u8 *) skb->data);
284 BT_DBG("%s status 0x%2.2x", hdev->name, status);
286 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_LOCAL_NAME);
292 if (hci_dev_test_flag(hdev, HCI_MGMT))
293 mgmt_set_local_name_complete(hdev, sent, status);
295 memcpy(hdev->dev_name, sent, HCI_MAX_NAME_LENGTH);
297 hci_dev_unlock(hdev);
300 static void hci_cc_read_local_name(struct hci_dev *hdev, struct sk_buff *skb)
302 struct hci_rp_read_local_name *rp = (void *) skb->data;
304 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
309 if (hci_dev_test_flag(hdev, HCI_SETUP) ||
310 hci_dev_test_flag(hdev, HCI_CONFIG))
311 memcpy(hdev->dev_name, rp->name, HCI_MAX_NAME_LENGTH);
314 static void hci_cc_write_auth_enable(struct hci_dev *hdev, struct sk_buff *skb)
316 __u8 status = *((__u8 *) skb->data);
319 BT_DBG("%s status 0x%2.2x", hdev->name, status);
321 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_AUTH_ENABLE);
328 __u8 param = *((__u8 *) sent);
330 if (param == AUTH_ENABLED)
331 set_bit(HCI_AUTH, &hdev->flags);
333 clear_bit(HCI_AUTH, &hdev->flags);
336 if (hci_dev_test_flag(hdev, HCI_MGMT))
337 mgmt_auth_enable_complete(hdev, status);
339 hci_dev_unlock(hdev);
342 static void hci_cc_write_encrypt_mode(struct hci_dev *hdev, struct sk_buff *skb)
344 __u8 status = *((__u8 *) skb->data);
348 BT_DBG("%s status 0x%2.2x", hdev->name, status);
353 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_ENCRYPT_MODE);
357 param = *((__u8 *) sent);
360 set_bit(HCI_ENCRYPT, &hdev->flags);
362 clear_bit(HCI_ENCRYPT, &hdev->flags);
365 static void hci_cc_write_scan_enable(struct hci_dev *hdev, struct sk_buff *skb)
367 __u8 status = *((__u8 *) skb->data);
371 BT_DBG("%s status 0x%2.2x", hdev->name, status);
373 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_SCAN_ENABLE);
377 param = *((__u8 *) sent);
382 hdev->discov_timeout = 0;
386 if (param & SCAN_INQUIRY)
387 set_bit(HCI_ISCAN, &hdev->flags);
389 clear_bit(HCI_ISCAN, &hdev->flags);
391 if (param & SCAN_PAGE)
392 set_bit(HCI_PSCAN, &hdev->flags);
394 clear_bit(HCI_PSCAN, &hdev->flags);
397 hci_dev_unlock(hdev);
400 static void hci_cc_set_event_filter(struct hci_dev *hdev, struct sk_buff *skb)
402 __u8 status = *((__u8 *)skb->data);
403 struct hci_cp_set_event_filter *cp;
406 BT_DBG("%s status 0x%2.2x", hdev->name, status);
411 sent = hci_sent_cmd_data(hdev, HCI_OP_SET_EVENT_FLT);
415 cp = (struct hci_cp_set_event_filter *)sent;
417 if (cp->flt_type == HCI_FLT_CLEAR_ALL)
418 hci_dev_clear_flag(hdev, HCI_EVENT_FILTER_CONFIGURED);
420 hci_dev_set_flag(hdev, HCI_EVENT_FILTER_CONFIGURED);
423 static void hci_cc_read_class_of_dev(struct hci_dev *hdev, struct sk_buff *skb)
425 struct hci_rp_read_class_of_dev *rp = (void *) skb->data;
427 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
432 memcpy(hdev->dev_class, rp->dev_class, 3);
434 BT_DBG("%s class 0x%.2x%.2x%.2x", hdev->name,
435 hdev->dev_class[2], hdev->dev_class[1], hdev->dev_class[0]);
438 static void hci_cc_write_class_of_dev(struct hci_dev *hdev, struct sk_buff *skb)
440 __u8 status = *((__u8 *) skb->data);
443 BT_DBG("%s status 0x%2.2x", hdev->name, status);
445 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_CLASS_OF_DEV);
452 memcpy(hdev->dev_class, sent, 3);
454 if (hci_dev_test_flag(hdev, HCI_MGMT))
455 mgmt_set_class_of_dev_complete(hdev, sent, status);
457 hci_dev_unlock(hdev);
460 static void hci_cc_read_voice_setting(struct hci_dev *hdev, struct sk_buff *skb)
462 struct hci_rp_read_voice_setting *rp = (void *) skb->data;
465 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
470 setting = __le16_to_cpu(rp->voice_setting);
472 if (hdev->voice_setting == setting)
475 hdev->voice_setting = setting;
477 BT_DBG("%s voice setting 0x%4.4x", hdev->name, setting);
480 hdev->notify(hdev, HCI_NOTIFY_VOICE_SETTING);
483 static void hci_cc_write_voice_setting(struct hci_dev *hdev,
486 __u8 status = *((__u8 *) skb->data);
490 BT_DBG("%s status 0x%2.2x", hdev->name, status);
495 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_VOICE_SETTING);
499 setting = get_unaligned_le16(sent);
501 if (hdev->voice_setting == setting)
504 hdev->voice_setting = setting;
506 BT_DBG("%s voice setting 0x%4.4x", hdev->name, setting);
509 hdev->notify(hdev, HCI_NOTIFY_VOICE_SETTING);
512 static void hci_cc_read_num_supported_iac(struct hci_dev *hdev,
515 struct hci_rp_read_num_supported_iac *rp = (void *) skb->data;
517 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
522 hdev->num_iac = rp->num_iac;
524 BT_DBG("%s num iac %d", hdev->name, hdev->num_iac);
527 static void hci_cc_write_ssp_mode(struct hci_dev *hdev, struct sk_buff *skb)
529 __u8 status = *((__u8 *) skb->data);
530 struct hci_cp_write_ssp_mode *sent;
532 BT_DBG("%s status 0x%2.2x", hdev->name, status);
534 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_SSP_MODE);
542 hdev->features[1][0] |= LMP_HOST_SSP;
544 hdev->features[1][0] &= ~LMP_HOST_SSP;
547 if (hci_dev_test_flag(hdev, HCI_MGMT))
548 mgmt_ssp_enable_complete(hdev, sent->mode, status);
551 hci_dev_set_flag(hdev, HCI_SSP_ENABLED);
553 hci_dev_clear_flag(hdev, HCI_SSP_ENABLED);
556 hci_dev_unlock(hdev);
559 static void hci_cc_write_sc_support(struct hci_dev *hdev, struct sk_buff *skb)
561 u8 status = *((u8 *) skb->data);
562 struct hci_cp_write_sc_support *sent;
564 BT_DBG("%s status 0x%2.2x", hdev->name, status);
566 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_SC_SUPPORT);
574 hdev->features[1][0] |= LMP_HOST_SC;
576 hdev->features[1][0] &= ~LMP_HOST_SC;
579 if (!hci_dev_test_flag(hdev, HCI_MGMT) && !status) {
581 hci_dev_set_flag(hdev, HCI_SC_ENABLED);
583 hci_dev_clear_flag(hdev, HCI_SC_ENABLED);
586 hci_dev_unlock(hdev);
589 static void hci_cc_read_local_version(struct hci_dev *hdev, struct sk_buff *skb)
591 struct hci_rp_read_local_version *rp = (void *) skb->data;
593 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
598 if (hci_dev_test_flag(hdev, HCI_SETUP) ||
599 hci_dev_test_flag(hdev, HCI_CONFIG)) {
600 hdev->hci_ver = rp->hci_ver;
601 hdev->hci_rev = __le16_to_cpu(rp->hci_rev);
602 hdev->lmp_ver = rp->lmp_ver;
603 hdev->manufacturer = __le16_to_cpu(rp->manufacturer);
604 hdev->lmp_subver = __le16_to_cpu(rp->lmp_subver);
608 static void hci_cc_read_local_commands(struct hci_dev *hdev,
611 struct hci_rp_read_local_commands *rp = (void *) skb->data;
613 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
618 if (hci_dev_test_flag(hdev, HCI_SETUP) ||
619 hci_dev_test_flag(hdev, HCI_CONFIG))
620 memcpy(hdev->commands, rp->commands, sizeof(hdev->commands));
623 static void hci_cc_read_auth_payload_timeout(struct hci_dev *hdev,
626 struct hci_rp_read_auth_payload_to *rp = (void *)skb->data;
627 struct hci_conn *conn;
629 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
636 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(rp->handle));
638 conn->auth_payload_timeout = __le16_to_cpu(rp->timeout);
640 hci_dev_unlock(hdev);
643 static void hci_cc_write_auth_payload_timeout(struct hci_dev *hdev,
646 struct hci_rp_write_auth_payload_to *rp = (void *)skb->data;
647 struct hci_conn *conn;
650 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
655 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_AUTH_PAYLOAD_TO);
661 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(rp->handle));
663 conn->auth_payload_timeout = get_unaligned_le16(sent + 2);
665 hci_dev_unlock(hdev);
668 static void hci_cc_read_local_features(struct hci_dev *hdev,
671 struct hci_rp_read_local_features *rp = (void *) skb->data;
673 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
678 memcpy(hdev->features, rp->features, 8);
680 /* Adjust default settings according to features
681 * supported by device. */
683 if (hdev->features[0][0] & LMP_3SLOT)
684 hdev->pkt_type |= (HCI_DM3 | HCI_DH3);
686 if (hdev->features[0][0] & LMP_5SLOT)
687 hdev->pkt_type |= (HCI_DM5 | HCI_DH5);
689 if (hdev->features[0][1] & LMP_HV2) {
690 hdev->pkt_type |= (HCI_HV2);
691 hdev->esco_type |= (ESCO_HV2);
694 if (hdev->features[0][1] & LMP_HV3) {
695 hdev->pkt_type |= (HCI_HV3);
696 hdev->esco_type |= (ESCO_HV3);
699 if (lmp_esco_capable(hdev))
700 hdev->esco_type |= (ESCO_EV3);
702 if (hdev->features[0][4] & LMP_EV4)
703 hdev->esco_type |= (ESCO_EV4);
705 if (hdev->features[0][4] & LMP_EV5)
706 hdev->esco_type |= (ESCO_EV5);
708 if (hdev->features[0][5] & LMP_EDR_ESCO_2M)
709 hdev->esco_type |= (ESCO_2EV3);
711 if (hdev->features[0][5] & LMP_EDR_ESCO_3M)
712 hdev->esco_type |= (ESCO_3EV3);
714 if (hdev->features[0][5] & LMP_EDR_3S_ESCO)
715 hdev->esco_type |= (ESCO_2EV5 | ESCO_3EV5);
718 static void hci_cc_read_local_ext_features(struct hci_dev *hdev,
721 struct hci_rp_read_local_ext_features *rp = (void *) skb->data;
723 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
728 if (hdev->max_page < rp->max_page)
729 hdev->max_page = rp->max_page;
731 if (rp->page < HCI_MAX_PAGES)
732 memcpy(hdev->features[rp->page], rp->features, 8);
735 static void hci_cc_read_flow_control_mode(struct hci_dev *hdev,
738 struct hci_rp_read_flow_control_mode *rp = (void *) skb->data;
740 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
745 hdev->flow_ctl_mode = rp->mode;
748 static void hci_cc_read_buffer_size(struct hci_dev *hdev, struct sk_buff *skb)
750 struct hci_rp_read_buffer_size *rp = (void *) skb->data;
752 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
757 hdev->acl_mtu = __le16_to_cpu(rp->acl_mtu);
758 hdev->sco_mtu = rp->sco_mtu;
759 hdev->acl_pkts = __le16_to_cpu(rp->acl_max_pkt);
760 hdev->sco_pkts = __le16_to_cpu(rp->sco_max_pkt);
762 if (test_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE, &hdev->quirks)) {
767 hdev->acl_cnt = hdev->acl_pkts;
768 hdev->sco_cnt = hdev->sco_pkts;
770 BT_DBG("%s acl mtu %d:%d sco mtu %d:%d", hdev->name, hdev->acl_mtu,
771 hdev->acl_pkts, hdev->sco_mtu, hdev->sco_pkts);
774 static void hci_cc_read_bd_addr(struct hci_dev *hdev, struct sk_buff *skb)
776 struct hci_rp_read_bd_addr *rp = (void *) skb->data;
778 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
783 if (test_bit(HCI_INIT, &hdev->flags))
784 bacpy(&hdev->bdaddr, &rp->bdaddr);
786 if (hci_dev_test_flag(hdev, HCI_SETUP))
787 bacpy(&hdev->setup_addr, &rp->bdaddr);
790 static void hci_cc_read_local_pairing_opts(struct hci_dev *hdev,
793 struct hci_rp_read_local_pairing_opts *rp = (void *) skb->data;
795 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
800 if (hci_dev_test_flag(hdev, HCI_SETUP) ||
801 hci_dev_test_flag(hdev, HCI_CONFIG)) {
802 hdev->pairing_opts = rp->pairing_opts;
803 hdev->max_enc_key_size = rp->max_key_size;
807 static void hci_cc_read_page_scan_activity(struct hci_dev *hdev,
810 struct hci_rp_read_page_scan_activity *rp = (void *) skb->data;
812 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
817 if (test_bit(HCI_INIT, &hdev->flags)) {
818 hdev->page_scan_interval = __le16_to_cpu(rp->interval);
819 hdev->page_scan_window = __le16_to_cpu(rp->window);
823 static void hci_cc_write_page_scan_activity(struct hci_dev *hdev,
826 u8 status = *((u8 *) skb->data);
827 struct hci_cp_write_page_scan_activity *sent;
829 BT_DBG("%s status 0x%2.2x", hdev->name, status);
834 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_PAGE_SCAN_ACTIVITY);
838 hdev->page_scan_interval = __le16_to_cpu(sent->interval);
839 hdev->page_scan_window = __le16_to_cpu(sent->window);
842 static void hci_cc_read_page_scan_type(struct hci_dev *hdev,
845 struct hci_rp_read_page_scan_type *rp = (void *) skb->data;
847 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
852 if (test_bit(HCI_INIT, &hdev->flags))
853 hdev->page_scan_type = rp->type;
856 static void hci_cc_write_page_scan_type(struct hci_dev *hdev,
859 u8 status = *((u8 *) skb->data);
862 BT_DBG("%s status 0x%2.2x", hdev->name, status);
867 type = hci_sent_cmd_data(hdev, HCI_OP_WRITE_PAGE_SCAN_TYPE);
869 hdev->page_scan_type = *type;
872 static void hci_cc_read_data_block_size(struct hci_dev *hdev,
875 struct hci_rp_read_data_block_size *rp = (void *) skb->data;
877 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
882 hdev->block_mtu = __le16_to_cpu(rp->max_acl_len);
883 hdev->block_len = __le16_to_cpu(rp->block_len);
884 hdev->num_blocks = __le16_to_cpu(rp->num_blocks);
886 hdev->block_cnt = hdev->num_blocks;
888 BT_DBG("%s blk mtu %d cnt %d len %d", hdev->name, hdev->block_mtu,
889 hdev->block_cnt, hdev->block_len);
892 static void hci_cc_read_clock(struct hci_dev *hdev, struct sk_buff *skb)
894 struct hci_rp_read_clock *rp = (void *) skb->data;
895 struct hci_cp_read_clock *cp;
896 struct hci_conn *conn;
898 BT_DBG("%s", hdev->name);
900 if (skb->len < sizeof(*rp))
908 cp = hci_sent_cmd_data(hdev, HCI_OP_READ_CLOCK);
912 if (cp->which == 0x00) {
913 hdev->clock = le32_to_cpu(rp->clock);
917 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(rp->handle));
919 conn->clock = le32_to_cpu(rp->clock);
920 conn->clock_accuracy = le16_to_cpu(rp->accuracy);
924 hci_dev_unlock(hdev);
927 static void hci_cc_read_local_amp_info(struct hci_dev *hdev,
930 struct hci_rp_read_local_amp_info *rp = (void *) skb->data;
932 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
937 hdev->amp_status = rp->amp_status;
938 hdev->amp_total_bw = __le32_to_cpu(rp->total_bw);
939 hdev->amp_max_bw = __le32_to_cpu(rp->max_bw);
940 hdev->amp_min_latency = __le32_to_cpu(rp->min_latency);
941 hdev->amp_max_pdu = __le32_to_cpu(rp->max_pdu);
942 hdev->amp_type = rp->amp_type;
943 hdev->amp_pal_cap = __le16_to_cpu(rp->pal_cap);
944 hdev->amp_assoc_size = __le16_to_cpu(rp->max_assoc_size);
945 hdev->amp_be_flush_to = __le32_to_cpu(rp->be_flush_to);
946 hdev->amp_max_flush_to = __le32_to_cpu(rp->max_flush_to);
949 static void hci_cc_read_inq_rsp_tx_power(struct hci_dev *hdev,
952 struct hci_rp_read_inq_rsp_tx_power *rp = (void *) skb->data;
954 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
959 hdev->inq_tx_power = rp->tx_power;
962 static void hci_cc_read_def_err_data_reporting(struct hci_dev *hdev,
965 struct hci_rp_read_def_err_data_reporting *rp = (void *)skb->data;
967 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
972 hdev->err_data_reporting = rp->err_data_reporting;
975 static void hci_cc_write_def_err_data_reporting(struct hci_dev *hdev,
978 __u8 status = *((__u8 *)skb->data);
979 struct hci_cp_write_def_err_data_reporting *cp;
981 BT_DBG("%s status 0x%2.2x", hdev->name, status);
986 cp = hci_sent_cmd_data(hdev, HCI_OP_WRITE_DEF_ERR_DATA_REPORTING);
990 hdev->err_data_reporting = cp->err_data_reporting;
993 static void hci_cc_pin_code_reply(struct hci_dev *hdev, struct sk_buff *skb)
995 struct hci_rp_pin_code_reply *rp = (void *) skb->data;
996 struct hci_cp_pin_code_reply *cp;
997 struct hci_conn *conn;
999 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
1003 if (hci_dev_test_flag(hdev, HCI_MGMT))
1004 mgmt_pin_code_reply_complete(hdev, &rp->bdaddr, rp->status);
1009 cp = hci_sent_cmd_data(hdev, HCI_OP_PIN_CODE_REPLY);
1013 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
1015 conn->pin_length = cp->pin_len;
1018 hci_dev_unlock(hdev);
1021 static void hci_cc_pin_code_neg_reply(struct hci_dev *hdev, struct sk_buff *skb)
1023 struct hci_rp_pin_code_neg_reply *rp = (void *) skb->data;
1025 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
1029 if (hci_dev_test_flag(hdev, HCI_MGMT))
1030 mgmt_pin_code_neg_reply_complete(hdev, &rp->bdaddr,
1033 hci_dev_unlock(hdev);
1036 static void hci_cc_le_read_buffer_size(struct hci_dev *hdev,
1037 struct sk_buff *skb)
1039 struct hci_rp_le_read_buffer_size *rp = (void *) skb->data;
1041 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
1046 hdev->le_mtu = __le16_to_cpu(rp->le_mtu);
1047 hdev->le_pkts = rp->le_max_pkt;
1049 hdev->le_cnt = hdev->le_pkts;
1051 BT_DBG("%s le mtu %d:%d", hdev->name, hdev->le_mtu, hdev->le_pkts);
1054 static void hci_cc_le_read_local_features(struct hci_dev *hdev,
1055 struct sk_buff *skb)
1057 struct hci_rp_le_read_local_features *rp = (void *) skb->data;
1059 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
1064 memcpy(hdev->le_features, rp->features, 8);
1067 static void hci_cc_le_read_adv_tx_power(struct hci_dev *hdev,
1068 struct sk_buff *skb)
1070 struct hci_rp_le_read_adv_tx_power *rp = (void *) skb->data;
1072 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
1077 hdev->adv_tx_power = rp->tx_power;
1080 static void hci_cc_user_confirm_reply(struct hci_dev *hdev, struct sk_buff *skb)
1082 struct hci_rp_user_confirm_reply *rp = (void *) skb->data;
1084 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
1088 if (hci_dev_test_flag(hdev, HCI_MGMT))
1089 mgmt_user_confirm_reply_complete(hdev, &rp->bdaddr, ACL_LINK, 0,
1092 hci_dev_unlock(hdev);
1095 static void hci_cc_user_confirm_neg_reply(struct hci_dev *hdev,
1096 struct sk_buff *skb)
1098 struct hci_rp_user_confirm_reply *rp = (void *) skb->data;
1100 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
1104 if (hci_dev_test_flag(hdev, HCI_MGMT))
1105 mgmt_user_confirm_neg_reply_complete(hdev, &rp->bdaddr,
1106 ACL_LINK, 0, rp->status);
1108 hci_dev_unlock(hdev);
1111 static void hci_cc_user_passkey_reply(struct hci_dev *hdev, struct sk_buff *skb)
1113 struct hci_rp_user_confirm_reply *rp = (void *) skb->data;
1115 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
1119 if (hci_dev_test_flag(hdev, HCI_MGMT))
1120 mgmt_user_passkey_reply_complete(hdev, &rp->bdaddr, ACL_LINK,
1123 hci_dev_unlock(hdev);
1126 static void hci_cc_user_passkey_neg_reply(struct hci_dev *hdev,
1127 struct sk_buff *skb)
1129 struct hci_rp_user_confirm_reply *rp = (void *) skb->data;
1131 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
1135 if (hci_dev_test_flag(hdev, HCI_MGMT))
1136 mgmt_user_passkey_neg_reply_complete(hdev, &rp->bdaddr,
1137 ACL_LINK, 0, rp->status);
1139 hci_dev_unlock(hdev);
1142 static void hci_cc_read_local_oob_data(struct hci_dev *hdev,
1143 struct sk_buff *skb)
1145 struct hci_rp_read_local_oob_data *rp = (void *) skb->data;
1147 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
1150 static void hci_cc_read_local_oob_ext_data(struct hci_dev *hdev,
1151 struct sk_buff *skb)
1153 struct hci_rp_read_local_oob_ext_data *rp = (void *) skb->data;
1155 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
1158 static void hci_cc_le_set_random_addr(struct hci_dev *hdev, struct sk_buff *skb)
1160 __u8 status = *((__u8 *) skb->data);
1163 BT_DBG("%s status 0x%2.2x", hdev->name, status);
1168 sent = hci_sent_cmd_data(hdev, HCI_OP_LE_SET_RANDOM_ADDR);
1174 bacpy(&hdev->random_addr, sent);
1176 if (!bacmp(&hdev->rpa, sent)) {
1177 hci_dev_clear_flag(hdev, HCI_RPA_EXPIRED);
1178 queue_delayed_work(hdev->workqueue, &hdev->rpa_expired,
1179 secs_to_jiffies(hdev->rpa_timeout));
1182 hci_dev_unlock(hdev);
1185 static void hci_cc_le_set_default_phy(struct hci_dev *hdev, struct sk_buff *skb)
1187 __u8 status = *((__u8 *) skb->data);
1188 struct hci_cp_le_set_default_phy *cp;
1190 BT_DBG("%s status 0x%2.2x", hdev->name, status);
1195 cp = hci_sent_cmd_data(hdev, HCI_OP_LE_SET_DEFAULT_PHY);
1201 hdev->le_tx_def_phys = cp->tx_phys;
1202 hdev->le_rx_def_phys = cp->rx_phys;
1204 hci_dev_unlock(hdev);
1207 static void hci_cc_le_set_adv_set_random_addr(struct hci_dev *hdev,
1208 struct sk_buff *skb)
1210 __u8 status = *((__u8 *) skb->data);
1211 struct hci_cp_le_set_adv_set_rand_addr *cp;
1212 struct adv_info *adv;
1217 cp = hci_sent_cmd_data(hdev, HCI_OP_LE_SET_ADV_SET_RAND_ADDR);
1218 /* Update only in case the adv instance since handle 0x00 shall be using
1219 * HCI_OP_LE_SET_RANDOM_ADDR since that allows both extended and
1220 * non-extended adverting.
1222 if (!cp || !cp->handle)
1227 adv = hci_find_adv_instance(hdev, cp->handle);
1229 bacpy(&adv->random_addr, &cp->bdaddr);
1230 if (!bacmp(&hdev->rpa, &cp->bdaddr)) {
1231 adv->rpa_expired = false;
1232 queue_delayed_work(hdev->workqueue,
1233 &adv->rpa_expired_cb,
1234 secs_to_jiffies(hdev->rpa_timeout));
1238 hci_dev_unlock(hdev);
1241 static void hci_cc_le_read_transmit_power(struct hci_dev *hdev,
1242 struct sk_buff *skb)
1244 struct hci_rp_le_read_transmit_power *rp = (void *)skb->data;
1246 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
1251 hdev->min_le_tx_power = rp->min_le_tx_power;
1252 hdev->max_le_tx_power = rp->max_le_tx_power;
1255 static void hci_cc_le_set_adv_enable(struct hci_dev *hdev, struct sk_buff *skb)
1257 __u8 *sent, status = *((__u8 *) skb->data);
1259 BT_DBG("%s status 0x%2.2x", hdev->name, status);
1264 sent = hci_sent_cmd_data(hdev, HCI_OP_LE_SET_ADV_ENABLE);
1270 /* If we're doing connection initiation as peripheral. Set a
1271 * timeout in case something goes wrong.
1274 struct hci_conn *conn;
1276 hci_dev_set_flag(hdev, HCI_LE_ADV);
1278 conn = hci_lookup_le_connect(hdev);
1280 queue_delayed_work(hdev->workqueue,
1281 &conn->le_conn_timeout,
1282 conn->conn_timeout);
1284 hci_dev_clear_flag(hdev, HCI_LE_ADV);
1287 hci_dev_unlock(hdev);
1290 static void hci_cc_le_set_ext_adv_enable(struct hci_dev *hdev,
1291 struct sk_buff *skb)
1293 struct hci_cp_le_set_ext_adv_enable *cp;
1294 struct hci_cp_ext_adv_set *set;
1295 __u8 status = *((__u8 *) skb->data);
1296 struct adv_info *adv = NULL, *n;
1298 BT_DBG("%s status 0x%2.2x", hdev->name, status);
1303 cp = hci_sent_cmd_data(hdev, HCI_OP_LE_SET_EXT_ADV_ENABLE);
1307 set = (void *)cp->data;
1311 if (cp->num_of_sets)
1312 adv = hci_find_adv_instance(hdev, set->handle);
1315 struct hci_conn *conn;
1317 hci_dev_set_flag(hdev, HCI_LE_ADV);
1320 adv->enabled = true;
1322 conn = hci_lookup_le_connect(hdev);
1324 queue_delayed_work(hdev->workqueue,
1325 &conn->le_conn_timeout,
1326 conn->conn_timeout);
1329 adv->enabled = false;
1330 /* If just one instance was disabled check if there are
1331 * any other instance enabled before clearing HCI_LE_ADV
1333 list_for_each_entry_safe(adv, n, &hdev->adv_instances,
1339 /* All instances shall be considered disabled */
1340 list_for_each_entry_safe(adv, n, &hdev->adv_instances,
1342 adv->enabled = false;
1345 hci_dev_clear_flag(hdev, HCI_LE_ADV);
1349 hci_dev_unlock(hdev);
1352 static void hci_cc_le_set_scan_param(struct hci_dev *hdev, struct sk_buff *skb)
1354 struct hci_cp_le_set_scan_param *cp;
1355 __u8 status = *((__u8 *) skb->data);
1357 BT_DBG("%s status 0x%2.2x", hdev->name, status);
1362 cp = hci_sent_cmd_data(hdev, HCI_OP_LE_SET_SCAN_PARAM);
1368 hdev->le_scan_type = cp->type;
1370 hci_dev_unlock(hdev);
1373 static void hci_cc_le_set_ext_scan_param(struct hci_dev *hdev,
1374 struct sk_buff *skb)
1376 struct hci_cp_le_set_ext_scan_params *cp;
1377 __u8 status = *((__u8 *) skb->data);
1378 struct hci_cp_le_scan_phy_params *phy_param;
1380 BT_DBG("%s status 0x%2.2x", hdev->name, status);
1385 cp = hci_sent_cmd_data(hdev, HCI_OP_LE_SET_EXT_SCAN_PARAMS);
1389 phy_param = (void *)cp->data;
1393 hdev->le_scan_type = phy_param->type;
1395 hci_dev_unlock(hdev);
1398 static bool has_pending_adv_report(struct hci_dev *hdev)
1400 struct discovery_state *d = &hdev->discovery;
1402 return bacmp(&d->last_adv_addr, BDADDR_ANY);
1405 static void clear_pending_adv_report(struct hci_dev *hdev)
1407 struct discovery_state *d = &hdev->discovery;
1409 bacpy(&d->last_adv_addr, BDADDR_ANY);
1410 d->last_adv_data_len = 0;
1413 static void store_pending_adv_report(struct hci_dev *hdev, bdaddr_t *bdaddr,
1414 u8 bdaddr_type, s8 rssi, u32 flags,
1417 struct discovery_state *d = &hdev->discovery;
1419 if (len > HCI_MAX_AD_LENGTH)
1422 bacpy(&d->last_adv_addr, bdaddr);
1423 d->last_adv_addr_type = bdaddr_type;
1424 d->last_adv_rssi = rssi;
1425 d->last_adv_flags = flags;
1426 memcpy(d->last_adv_data, data, len);
1427 d->last_adv_data_len = len;
1430 static void le_set_scan_enable_complete(struct hci_dev *hdev, u8 enable)
1435 case LE_SCAN_ENABLE:
1436 hci_dev_set_flag(hdev, HCI_LE_SCAN);
1437 if (hdev->le_scan_type == LE_SCAN_ACTIVE)
1438 clear_pending_adv_report(hdev);
1441 case LE_SCAN_DISABLE:
1442 /* We do this here instead of when setting DISCOVERY_STOPPED
1443 * since the latter would potentially require waiting for
1444 * inquiry to stop too.
1446 if (has_pending_adv_report(hdev)) {
1447 struct discovery_state *d = &hdev->discovery;
1449 mgmt_device_found(hdev, &d->last_adv_addr, LE_LINK,
1450 d->last_adv_addr_type, NULL,
1451 d->last_adv_rssi, d->last_adv_flags,
1453 d->last_adv_data_len, NULL, 0);
1456 /* Cancel this timer so that we don't try to disable scanning
1457 * when it's already disabled.
1459 cancel_delayed_work(&hdev->le_scan_disable);
1461 hci_dev_clear_flag(hdev, HCI_LE_SCAN);
1463 /* The HCI_LE_SCAN_INTERRUPTED flag indicates that we
1464 * interrupted scanning due to a connect request. Mark
1465 * therefore discovery as stopped. If this was not
1466 * because of a connect request advertising might have
1467 * been disabled because of active scanning, so
1468 * re-enable it again if necessary.
1470 if (hci_dev_test_and_clear_flag(hdev, HCI_LE_SCAN_INTERRUPTED))
1471 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
1472 else if (!hci_dev_test_flag(hdev, HCI_LE_ADV) &&
1473 hdev->discovery.state == DISCOVERY_FINDING)
1474 hci_req_reenable_advertising(hdev);
1479 bt_dev_err(hdev, "use of reserved LE_Scan_Enable param %d",
1484 hci_dev_unlock(hdev);
1487 static void hci_cc_le_set_scan_enable(struct hci_dev *hdev,
1488 struct sk_buff *skb)
1490 struct hci_cp_le_set_scan_enable *cp;
1491 __u8 status = *((__u8 *) skb->data);
1493 BT_DBG("%s status 0x%2.2x", hdev->name, status);
1498 cp = hci_sent_cmd_data(hdev, HCI_OP_LE_SET_SCAN_ENABLE);
1502 le_set_scan_enable_complete(hdev, cp->enable);
1505 static void hci_cc_le_set_ext_scan_enable(struct hci_dev *hdev,
1506 struct sk_buff *skb)
1508 struct hci_cp_le_set_ext_scan_enable *cp;
1509 __u8 status = *((__u8 *) skb->data);
1511 BT_DBG("%s status 0x%2.2x", hdev->name, status);
1516 cp = hci_sent_cmd_data(hdev, HCI_OP_LE_SET_EXT_SCAN_ENABLE);
1520 le_set_scan_enable_complete(hdev, cp->enable);
1523 static void hci_cc_le_read_num_adv_sets(struct hci_dev *hdev,
1524 struct sk_buff *skb)
1526 struct hci_rp_le_read_num_supported_adv_sets *rp = (void *) skb->data;
1528 BT_DBG("%s status 0x%2.2x No of Adv sets %u", hdev->name, rp->status,
1534 hdev->le_num_of_adv_sets = rp->num_of_sets;
1537 static void hci_cc_le_read_accept_list_size(struct hci_dev *hdev,
1538 struct sk_buff *skb)
1540 struct hci_rp_le_read_accept_list_size *rp = (void *)skb->data;
1542 BT_DBG("%s status 0x%2.2x size %u", hdev->name, rp->status, rp->size);
1547 hdev->le_accept_list_size = rp->size;
1550 static void hci_cc_le_clear_accept_list(struct hci_dev *hdev,
1551 struct sk_buff *skb)
1553 __u8 status = *((__u8 *) skb->data);
1555 BT_DBG("%s status 0x%2.2x", hdev->name, status);
1560 hci_bdaddr_list_clear(&hdev->le_accept_list);
1563 static void hci_cc_le_add_to_accept_list(struct hci_dev *hdev,
1564 struct sk_buff *skb)
1566 struct hci_cp_le_add_to_accept_list *sent;
1567 __u8 status = *((__u8 *) skb->data);
1569 BT_DBG("%s status 0x%2.2x", hdev->name, status);
1574 sent = hci_sent_cmd_data(hdev, HCI_OP_LE_ADD_TO_ACCEPT_LIST);
1578 hci_bdaddr_list_add(&hdev->le_accept_list, &sent->bdaddr,
1582 static void hci_cc_le_del_from_accept_list(struct hci_dev *hdev,
1583 struct sk_buff *skb)
1585 struct hci_cp_le_del_from_accept_list *sent;
1586 __u8 status = *((__u8 *) skb->data);
1588 BT_DBG("%s status 0x%2.2x", hdev->name, status);
1593 sent = hci_sent_cmd_data(hdev, HCI_OP_LE_DEL_FROM_ACCEPT_LIST);
1597 hci_bdaddr_list_del(&hdev->le_accept_list, &sent->bdaddr,
1601 static void hci_cc_le_read_supported_states(struct hci_dev *hdev,
1602 struct sk_buff *skb)
1604 struct hci_rp_le_read_supported_states *rp = (void *) skb->data;
1606 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
1611 memcpy(hdev->le_states, rp->le_states, 8);
1614 static void hci_cc_le_read_def_data_len(struct hci_dev *hdev,
1615 struct sk_buff *skb)
1617 struct hci_rp_le_read_def_data_len *rp = (void *) skb->data;
1619 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
1624 hdev->le_def_tx_len = le16_to_cpu(rp->tx_len);
1625 hdev->le_def_tx_time = le16_to_cpu(rp->tx_time);
1628 static void hci_cc_le_write_def_data_len(struct hci_dev *hdev,
1629 struct sk_buff *skb)
1631 struct hci_cp_le_write_def_data_len *sent;
1632 __u8 status = *((__u8 *) skb->data);
1634 BT_DBG("%s status 0x%2.2x", hdev->name, status);
1639 sent = hci_sent_cmd_data(hdev, HCI_OP_LE_WRITE_DEF_DATA_LEN);
1643 hdev->le_def_tx_len = le16_to_cpu(sent->tx_len);
1644 hdev->le_def_tx_time = le16_to_cpu(sent->tx_time);
1647 static void hci_cc_le_add_to_resolv_list(struct hci_dev *hdev,
1648 struct sk_buff *skb)
1650 struct hci_cp_le_add_to_resolv_list *sent;
1651 __u8 status = *((__u8 *) skb->data);
1653 BT_DBG("%s status 0x%2.2x", hdev->name, status);
1658 sent = hci_sent_cmd_data(hdev, HCI_OP_LE_ADD_TO_RESOLV_LIST);
1662 hci_bdaddr_list_add_with_irk(&hdev->le_resolv_list, &sent->bdaddr,
1663 sent->bdaddr_type, sent->peer_irk,
1667 static void hci_cc_le_del_from_resolv_list(struct hci_dev *hdev,
1668 struct sk_buff *skb)
1670 struct hci_cp_le_del_from_resolv_list *sent;
1671 __u8 status = *((__u8 *) skb->data);
1673 BT_DBG("%s status 0x%2.2x", hdev->name, status);
1678 sent = hci_sent_cmd_data(hdev, HCI_OP_LE_DEL_FROM_RESOLV_LIST);
1682 hci_bdaddr_list_del_with_irk(&hdev->le_resolv_list, &sent->bdaddr,
1686 static void hci_cc_le_clear_resolv_list(struct hci_dev *hdev,
1687 struct sk_buff *skb)
1689 __u8 status = *((__u8 *) skb->data);
1691 BT_DBG("%s status 0x%2.2x", hdev->name, status);
1696 hci_bdaddr_list_clear(&hdev->le_resolv_list);
1699 static void hci_cc_le_read_resolv_list_size(struct hci_dev *hdev,
1700 struct sk_buff *skb)
1702 struct hci_rp_le_read_resolv_list_size *rp = (void *) skb->data;
1704 BT_DBG("%s status 0x%2.2x size %u", hdev->name, rp->status, rp->size);
1709 hdev->le_resolv_list_size = rp->size;
1712 static void hci_cc_le_set_addr_resolution_enable(struct hci_dev *hdev,
1713 struct sk_buff *skb)
1715 __u8 *sent, status = *((__u8 *) skb->data);
1717 BT_DBG("%s status 0x%2.2x", hdev->name, status);
1722 sent = hci_sent_cmd_data(hdev, HCI_OP_LE_SET_ADDR_RESOLV_ENABLE);
1729 hci_dev_set_flag(hdev, HCI_LL_RPA_RESOLUTION);
1731 hci_dev_clear_flag(hdev, HCI_LL_RPA_RESOLUTION);
1733 hci_dev_unlock(hdev);
1736 static void hci_cc_le_read_max_data_len(struct hci_dev *hdev,
1737 struct sk_buff *skb)
1739 struct hci_rp_le_read_max_data_len *rp = (void *) skb->data;
1741 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
1746 hdev->le_max_tx_len = le16_to_cpu(rp->tx_len);
1747 hdev->le_max_tx_time = le16_to_cpu(rp->tx_time);
1748 hdev->le_max_rx_len = le16_to_cpu(rp->rx_len);
1749 hdev->le_max_rx_time = le16_to_cpu(rp->rx_time);
1752 static void hci_cc_write_le_host_supported(struct hci_dev *hdev,
1753 struct sk_buff *skb)
1755 struct hci_cp_write_le_host_supported *sent;
1756 __u8 status = *((__u8 *) skb->data);
1758 BT_DBG("%s status 0x%2.2x", hdev->name, status);
1763 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_LE_HOST_SUPPORTED);
1770 hdev->features[1][0] |= LMP_HOST_LE;
1771 hci_dev_set_flag(hdev, HCI_LE_ENABLED);
1773 hdev->features[1][0] &= ~LMP_HOST_LE;
1774 hci_dev_clear_flag(hdev, HCI_LE_ENABLED);
1775 hci_dev_clear_flag(hdev, HCI_ADVERTISING);
1779 hdev->features[1][0] |= LMP_HOST_LE_BREDR;
1781 hdev->features[1][0] &= ~LMP_HOST_LE_BREDR;
1783 hci_dev_unlock(hdev);
1786 static void hci_cc_set_adv_param(struct hci_dev *hdev, struct sk_buff *skb)
1788 struct hci_cp_le_set_adv_param *cp;
1789 u8 status = *((u8 *) skb->data);
1791 BT_DBG("%s status 0x%2.2x", hdev->name, status);
1796 cp = hci_sent_cmd_data(hdev, HCI_OP_LE_SET_ADV_PARAM);
1801 hdev->adv_addr_type = cp->own_address_type;
1802 hci_dev_unlock(hdev);
1805 static void hci_cc_set_ext_adv_param(struct hci_dev *hdev, struct sk_buff *skb)
1807 struct hci_rp_le_set_ext_adv_params *rp = (void *) skb->data;
1808 struct hci_cp_le_set_ext_adv_params *cp;
1809 struct adv_info *adv_instance;
1811 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
1816 cp = hci_sent_cmd_data(hdev, HCI_OP_LE_SET_EXT_ADV_PARAMS);
1821 hdev->adv_addr_type = cp->own_addr_type;
1823 /* Store in hdev for instance 0 */
1824 hdev->adv_tx_power = rp->tx_power;
1826 adv_instance = hci_find_adv_instance(hdev, cp->handle);
1828 adv_instance->tx_power = rp->tx_power;
1830 /* Update adv data as tx power is known now */
1831 hci_req_update_adv_data(hdev, cp->handle);
1833 hci_dev_unlock(hdev);
1836 static void hci_cc_read_rssi(struct hci_dev *hdev, struct sk_buff *skb)
1838 struct hci_rp_read_rssi *rp = (void *) skb->data;
1839 struct hci_conn *conn;
1841 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
1848 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(rp->handle));
1850 conn->rssi = rp->rssi;
1852 hci_dev_unlock(hdev);
1855 static void hci_cc_read_tx_power(struct hci_dev *hdev, struct sk_buff *skb)
1857 struct hci_cp_read_tx_power *sent;
1858 struct hci_rp_read_tx_power *rp = (void *) skb->data;
1859 struct hci_conn *conn;
1861 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status);
1866 sent = hci_sent_cmd_data(hdev, HCI_OP_READ_TX_POWER);
1872 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(rp->handle));
1876 switch (sent->type) {
1878 conn->tx_power = rp->tx_power;
1881 conn->max_tx_power = rp->tx_power;
1886 hci_dev_unlock(hdev);
1889 static void hci_cc_write_ssp_debug_mode(struct hci_dev *hdev, struct sk_buff *skb)
1891 u8 status = *((u8 *) skb->data);
1894 BT_DBG("%s status 0x%2.2x", hdev->name, status);
1899 mode = hci_sent_cmd_data(hdev, HCI_OP_WRITE_SSP_DEBUG_MODE);
1901 hdev->ssp_debug_mode = *mode;
1904 static void hci_cs_inquiry(struct hci_dev *hdev, __u8 status)
1906 BT_DBG("%s status 0x%2.2x", hdev->name, status);
1909 hci_conn_check_pending(hdev);
1913 set_bit(HCI_INQUIRY, &hdev->flags);
1916 static void hci_cs_create_conn(struct hci_dev *hdev, __u8 status)
1918 struct hci_cp_create_conn *cp;
1919 struct hci_conn *conn;
1921 BT_DBG("%s status 0x%2.2x", hdev->name, status);
1923 cp = hci_sent_cmd_data(hdev, HCI_OP_CREATE_CONN);
1929 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
1931 BT_DBG("%s bdaddr %pMR hcon %p", hdev->name, &cp->bdaddr, conn);
1934 if (conn && conn->state == BT_CONNECT) {
1935 if (status != 0x0c || conn->attempt > 2) {
1936 conn->state = BT_CLOSED;
1937 hci_connect_cfm(conn, status);
1940 conn->state = BT_CONNECT2;
1944 conn = hci_conn_add(hdev, ACL_LINK, &cp->bdaddr,
1947 bt_dev_err(hdev, "no memory for new connection");
1951 hci_dev_unlock(hdev);
1954 static void hci_cs_add_sco(struct hci_dev *hdev, __u8 status)
1956 struct hci_cp_add_sco *cp;
1957 struct hci_conn *acl, *sco;
1960 BT_DBG("%s status 0x%2.2x", hdev->name, status);
1965 cp = hci_sent_cmd_data(hdev, HCI_OP_ADD_SCO);
1969 handle = __le16_to_cpu(cp->handle);
1971 BT_DBG("%s handle 0x%4.4x", hdev->name, handle);
1975 acl = hci_conn_hash_lookup_handle(hdev, handle);
1979 sco->state = BT_CLOSED;
1981 hci_connect_cfm(sco, status);
1986 hci_dev_unlock(hdev);
1989 static void hci_cs_auth_requested(struct hci_dev *hdev, __u8 status)
1991 struct hci_cp_auth_requested *cp;
1992 struct hci_conn *conn;
1994 BT_DBG("%s status 0x%2.2x", hdev->name, status);
1999 cp = hci_sent_cmd_data(hdev, HCI_OP_AUTH_REQUESTED);
2005 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
2007 if (conn->state == BT_CONFIG) {
2008 hci_connect_cfm(conn, status);
2009 hci_conn_drop(conn);
2013 hci_dev_unlock(hdev);
2016 static void hci_cs_set_conn_encrypt(struct hci_dev *hdev, __u8 status)
2018 struct hci_cp_set_conn_encrypt *cp;
2019 struct hci_conn *conn;
2021 BT_DBG("%s status 0x%2.2x", hdev->name, status);
2026 cp = hci_sent_cmd_data(hdev, HCI_OP_SET_CONN_ENCRYPT);
2032 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
2034 if (conn->state == BT_CONFIG) {
2035 hci_connect_cfm(conn, status);
2036 hci_conn_drop(conn);
2040 hci_dev_unlock(hdev);
2043 static int hci_outgoing_auth_needed(struct hci_dev *hdev,
2044 struct hci_conn *conn)
2046 if (conn->state != BT_CONFIG || !conn->out)
2049 if (conn->pending_sec_level == BT_SECURITY_SDP)
2052 /* Only request authentication for SSP connections or non-SSP
2053 * devices with sec_level MEDIUM or HIGH or if MITM protection
2056 if (!hci_conn_ssp_enabled(conn) && !(conn->auth_type & 0x01) &&
2057 conn->pending_sec_level != BT_SECURITY_FIPS &&
2058 conn->pending_sec_level != BT_SECURITY_HIGH &&
2059 conn->pending_sec_level != BT_SECURITY_MEDIUM)
2065 static int hci_resolve_name(struct hci_dev *hdev,
2066 struct inquiry_entry *e)
2068 struct hci_cp_remote_name_req cp;
2070 memset(&cp, 0, sizeof(cp));
2072 bacpy(&cp.bdaddr, &e->data.bdaddr);
2073 cp.pscan_rep_mode = e->data.pscan_rep_mode;
2074 cp.pscan_mode = e->data.pscan_mode;
2075 cp.clock_offset = e->data.clock_offset;
2077 return hci_send_cmd(hdev, HCI_OP_REMOTE_NAME_REQ, sizeof(cp), &cp);
2080 static bool hci_resolve_next_name(struct hci_dev *hdev)
2082 struct discovery_state *discov = &hdev->discovery;
2083 struct inquiry_entry *e;
2085 if (list_empty(&discov->resolve))
2088 e = hci_inquiry_cache_lookup_resolve(hdev, BDADDR_ANY, NAME_NEEDED);
2092 if (hci_resolve_name(hdev, e) == 0) {
2093 e->name_state = NAME_PENDING;
2100 static void hci_check_pending_name(struct hci_dev *hdev, struct hci_conn *conn,
2101 bdaddr_t *bdaddr, u8 *name, u8 name_len)
2103 struct discovery_state *discov = &hdev->discovery;
2104 struct inquiry_entry *e;
2106 /* Update the mgmt connected state if necessary. Be careful with
2107 * conn objects that exist but are not (yet) connected however.
2108 * Only those in BT_CONFIG or BT_CONNECTED states can be
2109 * considered connected.
2112 (conn->state == BT_CONFIG || conn->state == BT_CONNECTED) &&
2113 !test_and_set_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags))
2114 mgmt_device_connected(hdev, conn, name, name_len);
2116 if (discov->state == DISCOVERY_STOPPED)
2119 if (discov->state == DISCOVERY_STOPPING)
2120 goto discov_complete;
2122 if (discov->state != DISCOVERY_RESOLVING)
2125 e = hci_inquiry_cache_lookup_resolve(hdev, bdaddr, NAME_PENDING);
2126 /* If the device was not found in a list of found devices names of which
2127 * are pending. there is no need to continue resolving a next name as it
2128 * will be done upon receiving another Remote Name Request Complete
2135 e->name_state = NAME_KNOWN;
2136 mgmt_remote_name(hdev, bdaddr, ACL_LINK, 0x00,
2137 e->data.rssi, name, name_len);
2139 e->name_state = NAME_NOT_KNOWN;
2142 if (hci_resolve_next_name(hdev))
2146 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
2149 static void hci_cs_remote_name_req(struct hci_dev *hdev, __u8 status)
2151 struct hci_cp_remote_name_req *cp;
2152 struct hci_conn *conn;
2154 BT_DBG("%s status 0x%2.2x", hdev->name, status);
2156 /* If successful wait for the name req complete event before
2157 * checking for the need to do authentication */
2161 cp = hci_sent_cmd_data(hdev, HCI_OP_REMOTE_NAME_REQ);
2167 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
2169 if (hci_dev_test_flag(hdev, HCI_MGMT))
2170 hci_check_pending_name(hdev, conn, &cp->bdaddr, NULL, 0);
2175 if (!hci_outgoing_auth_needed(hdev, conn))
2178 if (!test_and_set_bit(HCI_CONN_AUTH_PEND, &conn->flags)) {
2179 struct hci_cp_auth_requested auth_cp;
2181 set_bit(HCI_CONN_AUTH_INITIATOR, &conn->flags);
2183 auth_cp.handle = __cpu_to_le16(conn->handle);
2184 hci_send_cmd(hdev, HCI_OP_AUTH_REQUESTED,
2185 sizeof(auth_cp), &auth_cp);
2189 hci_dev_unlock(hdev);
2192 static void hci_cs_read_remote_features(struct hci_dev *hdev, __u8 status)
2194 struct hci_cp_read_remote_features *cp;
2195 struct hci_conn *conn;
2197 BT_DBG("%s status 0x%2.2x", hdev->name, status);
2202 cp = hci_sent_cmd_data(hdev, HCI_OP_READ_REMOTE_FEATURES);
2208 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
2210 if (conn->state == BT_CONFIG) {
2211 hci_connect_cfm(conn, status);
2212 hci_conn_drop(conn);
2216 hci_dev_unlock(hdev);
2219 static void hci_cs_read_remote_ext_features(struct hci_dev *hdev, __u8 status)
2221 struct hci_cp_read_remote_ext_features *cp;
2222 struct hci_conn *conn;
2224 BT_DBG("%s status 0x%2.2x", hdev->name, status);
2229 cp = hci_sent_cmd_data(hdev, HCI_OP_READ_REMOTE_EXT_FEATURES);
2235 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
2237 if (conn->state == BT_CONFIG) {
2238 hci_connect_cfm(conn, status);
2239 hci_conn_drop(conn);
2243 hci_dev_unlock(hdev);
2246 static void hci_cs_setup_sync_conn(struct hci_dev *hdev, __u8 status)
2248 struct hci_cp_setup_sync_conn *cp;
2249 struct hci_conn *acl, *sco;
2252 BT_DBG("%s status 0x%2.2x", hdev->name, status);
2257 cp = hci_sent_cmd_data(hdev, HCI_OP_SETUP_SYNC_CONN);
2261 handle = __le16_to_cpu(cp->handle);
2263 BT_DBG("%s handle 0x%4.4x", hdev->name, handle);
2267 acl = hci_conn_hash_lookup_handle(hdev, handle);
2271 sco->state = BT_CLOSED;
2273 hci_connect_cfm(sco, status);
2278 hci_dev_unlock(hdev);
2281 static void hci_cs_sniff_mode(struct hci_dev *hdev, __u8 status)
2283 struct hci_cp_sniff_mode *cp;
2284 struct hci_conn *conn;
2286 BT_DBG("%s status 0x%2.2x", hdev->name, status);
2291 cp = hci_sent_cmd_data(hdev, HCI_OP_SNIFF_MODE);
2297 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
2299 clear_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->flags);
2301 if (test_and_clear_bit(HCI_CONN_SCO_SETUP_PEND, &conn->flags))
2302 hci_sco_setup(conn, status);
2305 hci_dev_unlock(hdev);
2308 static void hci_cs_exit_sniff_mode(struct hci_dev *hdev, __u8 status)
2310 struct hci_cp_exit_sniff_mode *cp;
2311 struct hci_conn *conn;
2313 BT_DBG("%s status 0x%2.2x", hdev->name, status);
2318 cp = hci_sent_cmd_data(hdev, HCI_OP_EXIT_SNIFF_MODE);
2324 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
2326 clear_bit(HCI_CONN_MODE_CHANGE_PEND, &conn->flags);
2328 if (test_and_clear_bit(HCI_CONN_SCO_SETUP_PEND, &conn->flags))
2329 hci_sco_setup(conn, status);
2332 hci_dev_unlock(hdev);
2335 static void hci_cs_disconnect(struct hci_dev *hdev, u8 status)
2337 struct hci_cp_disconnect *cp;
2338 struct hci_conn *conn;
2343 cp = hci_sent_cmd_data(hdev, HCI_OP_DISCONNECT);
2349 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
2351 mgmt_disconnect_failed(hdev, &conn->dst, conn->type,
2352 conn->dst_type, status);
2354 if (conn->type == LE_LINK) {
2355 hdev->cur_adv_instance = conn->adv_instance;
2356 hci_req_reenable_advertising(hdev);
2359 /* If the disconnection failed for any reason, the upper layer
2360 * does not retry to disconnect in current implementation.
2361 * Hence, we need to do some basic cleanup here and re-enable
2362 * advertising if necessary.
2367 hci_dev_unlock(hdev);
2370 static void cs_le_create_conn(struct hci_dev *hdev, bdaddr_t *peer_addr,
2371 u8 peer_addr_type, u8 own_address_type,
2374 struct hci_conn *conn;
2376 conn = hci_conn_hash_lookup_le(hdev, peer_addr,
2381 /* When using controller based address resolution, then the new
2382 * address types 0x02 and 0x03 are used. These types need to be
2383 * converted back into either public address or random address type
2385 if (use_ll_privacy(hdev) &&
2386 hci_dev_test_flag(hdev, HCI_LL_RPA_RESOLUTION)) {
2387 switch (own_address_type) {
2388 case ADDR_LE_DEV_PUBLIC_RESOLVED:
2389 own_address_type = ADDR_LE_DEV_PUBLIC;
2391 case ADDR_LE_DEV_RANDOM_RESOLVED:
2392 own_address_type = ADDR_LE_DEV_RANDOM;
2397 /* Store the initiator and responder address information which
2398 * is needed for SMP. These values will not change during the
2399 * lifetime of the connection.
2401 conn->init_addr_type = own_address_type;
2402 if (own_address_type == ADDR_LE_DEV_RANDOM)
2403 bacpy(&conn->init_addr, &hdev->random_addr);
2405 bacpy(&conn->init_addr, &hdev->bdaddr);
2407 conn->resp_addr_type = peer_addr_type;
2408 bacpy(&conn->resp_addr, peer_addr);
2410 /* We don't want the connection attempt to stick around
2411 * indefinitely since LE doesn't have a page timeout concept
2412 * like BR/EDR. Set a timer for any connection that doesn't use
2413 * the accept list for connecting.
2415 if (filter_policy == HCI_LE_USE_PEER_ADDR)
2416 queue_delayed_work(conn->hdev->workqueue,
2417 &conn->le_conn_timeout,
2418 conn->conn_timeout);
2421 static void hci_cs_le_create_conn(struct hci_dev *hdev, u8 status)
2423 struct hci_cp_le_create_conn *cp;
2425 BT_DBG("%s status 0x%2.2x", hdev->name, status);
2427 /* All connection failure handling is taken care of by the
2428 * hci_le_conn_failed function which is triggered by the HCI
2429 * request completion callbacks used for connecting.
2434 cp = hci_sent_cmd_data(hdev, HCI_OP_LE_CREATE_CONN);
2440 cs_le_create_conn(hdev, &cp->peer_addr, cp->peer_addr_type,
2441 cp->own_address_type, cp->filter_policy);
2443 hci_dev_unlock(hdev);
2446 static void hci_cs_le_ext_create_conn(struct hci_dev *hdev, u8 status)
2448 struct hci_cp_le_ext_create_conn *cp;
2450 BT_DBG("%s status 0x%2.2x", hdev->name, status);
2452 /* All connection failure handling is taken care of by the
2453 * hci_le_conn_failed function which is triggered by the HCI
2454 * request completion callbacks used for connecting.
2459 cp = hci_sent_cmd_data(hdev, HCI_OP_LE_EXT_CREATE_CONN);
2465 cs_le_create_conn(hdev, &cp->peer_addr, cp->peer_addr_type,
2466 cp->own_addr_type, cp->filter_policy);
2468 hci_dev_unlock(hdev);
2471 static void hci_cs_le_read_remote_features(struct hci_dev *hdev, u8 status)
2473 struct hci_cp_le_read_remote_features *cp;
2474 struct hci_conn *conn;
2476 BT_DBG("%s status 0x%2.2x", hdev->name, status);
2481 cp = hci_sent_cmd_data(hdev, HCI_OP_LE_READ_REMOTE_FEATURES);
2487 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
2489 if (conn->state == BT_CONFIG) {
2490 hci_connect_cfm(conn, status);
2491 hci_conn_drop(conn);
2495 hci_dev_unlock(hdev);
2498 static void hci_cs_le_start_enc(struct hci_dev *hdev, u8 status)
2500 struct hci_cp_le_start_enc *cp;
2501 struct hci_conn *conn;
2503 BT_DBG("%s status 0x%2.2x", hdev->name, status);
2510 cp = hci_sent_cmd_data(hdev, HCI_OP_LE_START_ENC);
2514 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(cp->handle));
2518 if (conn->state != BT_CONNECTED)
2521 hci_disconnect(conn, HCI_ERROR_AUTH_FAILURE);
2522 hci_conn_drop(conn);
2525 hci_dev_unlock(hdev);
2528 static void hci_cs_switch_role(struct hci_dev *hdev, u8 status)
2530 struct hci_cp_switch_role *cp;
2531 struct hci_conn *conn;
2533 BT_DBG("%s status 0x%2.2x", hdev->name, status);
2538 cp = hci_sent_cmd_data(hdev, HCI_OP_SWITCH_ROLE);
2544 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
2546 clear_bit(HCI_CONN_RSWITCH_PEND, &conn->flags);
2548 hci_dev_unlock(hdev);
2551 static void hci_inquiry_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
2553 __u8 status = *((__u8 *) skb->data);
2554 struct discovery_state *discov = &hdev->discovery;
2555 struct inquiry_entry *e;
2557 BT_DBG("%s status 0x%2.2x", hdev->name, status);
2559 hci_conn_check_pending(hdev);
2561 if (!test_and_clear_bit(HCI_INQUIRY, &hdev->flags))
2564 smp_mb__after_atomic(); /* wake_up_bit advises about this barrier */
2565 wake_up_bit(&hdev->flags, HCI_INQUIRY);
2567 if (!hci_dev_test_flag(hdev, HCI_MGMT))
2572 if (discov->state != DISCOVERY_FINDING)
2575 if (list_empty(&discov->resolve)) {
2576 /* When BR/EDR inquiry is active and no LE scanning is in
2577 * progress, then change discovery state to indicate completion.
2579 * When running LE scanning and BR/EDR inquiry simultaneously
2580 * and the LE scan already finished, then change the discovery
2581 * state to indicate completion.
2583 if (!hci_dev_test_flag(hdev, HCI_LE_SCAN) ||
2584 !test_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks))
2585 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
2589 e = hci_inquiry_cache_lookup_resolve(hdev, BDADDR_ANY, NAME_NEEDED);
2590 if (e && hci_resolve_name(hdev, e) == 0) {
2591 e->name_state = NAME_PENDING;
2592 hci_discovery_set_state(hdev, DISCOVERY_RESOLVING);
2594 /* When BR/EDR inquiry is active and no LE scanning is in
2595 * progress, then change discovery state to indicate completion.
2597 * When running LE scanning and BR/EDR inquiry simultaneously
2598 * and the LE scan already finished, then change the discovery
2599 * state to indicate completion.
2601 if (!hci_dev_test_flag(hdev, HCI_LE_SCAN) ||
2602 !test_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks))
2603 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
2607 hci_dev_unlock(hdev);
2610 static void hci_inquiry_result_evt(struct hci_dev *hdev, struct sk_buff *skb)
2612 struct inquiry_data data;
2613 struct inquiry_info *info = (void *) (skb->data + 1);
2614 int num_rsp = *((__u8 *) skb->data);
2616 BT_DBG("%s num_rsp %d", hdev->name, num_rsp);
2618 if (!num_rsp || skb->len < num_rsp * sizeof(*info) + 1)
2621 if (hci_dev_test_flag(hdev, HCI_PERIODIC_INQ))
2626 for (; num_rsp; num_rsp--, info++) {
2629 bacpy(&data.bdaddr, &info->bdaddr);
2630 data.pscan_rep_mode = info->pscan_rep_mode;
2631 data.pscan_period_mode = info->pscan_period_mode;
2632 data.pscan_mode = info->pscan_mode;
2633 memcpy(data.dev_class, info->dev_class, 3);
2634 data.clock_offset = info->clock_offset;
2635 data.rssi = HCI_RSSI_INVALID;
2636 data.ssp_mode = 0x00;
2638 flags = hci_inquiry_cache_update(hdev, &data, false);
2640 mgmt_device_found(hdev, &info->bdaddr, ACL_LINK, 0x00,
2641 info->dev_class, HCI_RSSI_INVALID,
2642 flags, NULL, 0, NULL, 0);
2645 hci_dev_unlock(hdev);
2648 static void hci_conn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
2650 struct hci_ev_conn_complete *ev = (void *) skb->data;
2651 struct hci_conn *conn;
2653 BT_DBG("%s", hdev->name);
2657 conn = hci_conn_hash_lookup_ba(hdev, ev->link_type, &ev->bdaddr);
2659 /* Connection may not exist if auto-connected. Check the bredr
2660 * allowlist to see if this device is allowed to auto connect.
2661 * If link is an ACL type, create a connection class
2664 * Auto-connect will only occur if the event filter is
2665 * programmed with a given address. Right now, event filter is
2666 * only used during suspend.
2668 if (ev->link_type == ACL_LINK &&
2669 hci_bdaddr_list_lookup_with_flags(&hdev->accept_list,
2672 conn = hci_conn_add(hdev, ev->link_type, &ev->bdaddr,
2675 bt_dev_err(hdev, "no memory for new conn");
2679 if (ev->link_type != SCO_LINK)
2682 conn = hci_conn_hash_lookup_ba(hdev, ESCO_LINK,
2687 conn->type = SCO_LINK;
2692 conn->handle = __le16_to_cpu(ev->handle);
2694 if (conn->type == ACL_LINK) {
2695 conn->state = BT_CONFIG;
2696 hci_conn_hold(conn);
2698 if (!conn->out && !hci_conn_ssp_enabled(conn) &&
2699 !hci_find_link_key(hdev, &ev->bdaddr))
2700 conn->disc_timeout = HCI_PAIRING_TIMEOUT;
2702 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
2704 conn->state = BT_CONNECTED;
2706 hci_debugfs_create_conn(conn);
2707 hci_conn_add_sysfs(conn);
2709 if (test_bit(HCI_AUTH, &hdev->flags))
2710 set_bit(HCI_CONN_AUTH, &conn->flags);
2712 if (test_bit(HCI_ENCRYPT, &hdev->flags))
2713 set_bit(HCI_CONN_ENCRYPT, &conn->flags);
2715 /* Get remote features */
2716 if (conn->type == ACL_LINK) {
2717 struct hci_cp_read_remote_features cp;
2718 cp.handle = ev->handle;
2719 hci_send_cmd(hdev, HCI_OP_READ_REMOTE_FEATURES,
2722 hci_req_update_scan(hdev);
2725 /* Set packet type for incoming connection */
2726 if (!conn->out && hdev->hci_ver < BLUETOOTH_VER_2_0) {
2727 struct hci_cp_change_conn_ptype cp;
2728 cp.handle = ev->handle;
2729 cp.pkt_type = cpu_to_le16(conn->pkt_type);
2730 hci_send_cmd(hdev, HCI_OP_CHANGE_CONN_PTYPE, sizeof(cp),
2734 conn->state = BT_CLOSED;
2735 if (conn->type == ACL_LINK)
2736 mgmt_connect_failed(hdev, &conn->dst, conn->type,
2737 conn->dst_type, ev->status);
2740 if (conn->type == ACL_LINK)
2741 hci_sco_setup(conn, ev->status);
2744 hci_connect_cfm(conn, ev->status);
2746 } else if (ev->link_type == SCO_LINK) {
2747 switch (conn->setting & SCO_AIRMODE_MASK) {
2748 case SCO_AIRMODE_CVSD:
2750 hdev->notify(hdev, HCI_NOTIFY_ENABLE_SCO_CVSD);
2754 hci_connect_cfm(conn, ev->status);
2758 hci_dev_unlock(hdev);
2760 hci_conn_check_pending(hdev);
2763 static void hci_reject_conn(struct hci_dev *hdev, bdaddr_t *bdaddr)
2765 struct hci_cp_reject_conn_req cp;
2767 bacpy(&cp.bdaddr, bdaddr);
2768 cp.reason = HCI_ERROR_REJ_BAD_ADDR;
2769 hci_send_cmd(hdev, HCI_OP_REJECT_CONN_REQ, sizeof(cp), &cp);
2772 static void hci_conn_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
2774 struct hci_ev_conn_request *ev = (void *) skb->data;
2775 int mask = hdev->link_mode;
2776 struct inquiry_entry *ie;
2777 struct hci_conn *conn;
2780 BT_DBG("%s bdaddr %pMR type 0x%x", hdev->name, &ev->bdaddr,
2783 mask |= hci_proto_connect_ind(hdev, &ev->bdaddr, ev->link_type,
2786 if (!(mask & HCI_LM_ACCEPT)) {
2787 hci_reject_conn(hdev, &ev->bdaddr);
2791 if (hci_bdaddr_list_lookup(&hdev->reject_list, &ev->bdaddr,
2793 hci_reject_conn(hdev, &ev->bdaddr);
2797 /* Require HCI_CONNECTABLE or an accept list entry to accept the
2798 * connection. These features are only touched through mgmt so
2799 * only do the checks if HCI_MGMT is set.
2801 if (hci_dev_test_flag(hdev, HCI_MGMT) &&
2802 !hci_dev_test_flag(hdev, HCI_CONNECTABLE) &&
2803 !hci_bdaddr_list_lookup_with_flags(&hdev->accept_list, &ev->bdaddr,
2805 hci_reject_conn(hdev, &ev->bdaddr);
2809 /* Connection accepted */
2813 ie = hci_inquiry_cache_lookup(hdev, &ev->bdaddr);
2815 memcpy(ie->data.dev_class, ev->dev_class, 3);
2817 conn = hci_conn_hash_lookup_ba(hdev, ev->link_type,
2820 conn = hci_conn_add(hdev, ev->link_type, &ev->bdaddr,
2823 bt_dev_err(hdev, "no memory for new connection");
2824 hci_dev_unlock(hdev);
2829 memcpy(conn->dev_class, ev->dev_class, 3);
2831 hci_dev_unlock(hdev);
2833 if (ev->link_type == ACL_LINK ||
2834 (!(flags & HCI_PROTO_DEFER) && !lmp_esco_capable(hdev))) {
2835 struct hci_cp_accept_conn_req cp;
2836 conn->state = BT_CONNECT;
2838 bacpy(&cp.bdaddr, &ev->bdaddr);
2840 if (lmp_rswitch_capable(hdev) && (mask & HCI_LM_MASTER))
2841 cp.role = 0x00; /* Become central */
2843 cp.role = 0x01; /* Remain peripheral */
2845 hci_send_cmd(hdev, HCI_OP_ACCEPT_CONN_REQ, sizeof(cp), &cp);
2846 } else if (!(flags & HCI_PROTO_DEFER)) {
2847 struct hci_cp_accept_sync_conn_req cp;
2848 conn->state = BT_CONNECT;
2850 bacpy(&cp.bdaddr, &ev->bdaddr);
2851 cp.pkt_type = cpu_to_le16(conn->pkt_type);
2853 cp.tx_bandwidth = cpu_to_le32(0x00001f40);
2854 cp.rx_bandwidth = cpu_to_le32(0x00001f40);
2855 cp.max_latency = cpu_to_le16(0xffff);
2856 cp.content_format = cpu_to_le16(hdev->voice_setting);
2857 cp.retrans_effort = 0xff;
2859 hci_send_cmd(hdev, HCI_OP_ACCEPT_SYNC_CONN_REQ, sizeof(cp),
2862 conn->state = BT_CONNECT2;
2863 hci_connect_cfm(conn, 0);
2867 static u8 hci_to_mgmt_reason(u8 err)
2870 case HCI_ERROR_CONNECTION_TIMEOUT:
2871 return MGMT_DEV_DISCONN_TIMEOUT;
2872 case HCI_ERROR_REMOTE_USER_TERM:
2873 case HCI_ERROR_REMOTE_LOW_RESOURCES:
2874 case HCI_ERROR_REMOTE_POWER_OFF:
2875 return MGMT_DEV_DISCONN_REMOTE;
2876 case HCI_ERROR_LOCAL_HOST_TERM:
2877 return MGMT_DEV_DISCONN_LOCAL_HOST;
2879 return MGMT_DEV_DISCONN_UNKNOWN;
2883 static void hci_disconn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
2885 struct hci_ev_disconn_complete *ev = (void *) skb->data;
2887 struct hci_conn_params *params;
2888 struct hci_conn *conn;
2889 bool mgmt_connected;
2891 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
2895 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
2900 mgmt_disconnect_failed(hdev, &conn->dst, conn->type,
2901 conn->dst_type, ev->status);
2905 conn->state = BT_CLOSED;
2907 mgmt_connected = test_and_clear_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags);
2909 if (test_bit(HCI_CONN_AUTH_FAILURE, &conn->flags))
2910 reason = MGMT_DEV_DISCONN_AUTH_FAILURE;
2912 reason = hci_to_mgmt_reason(ev->reason);
2914 mgmt_device_disconnected(hdev, &conn->dst, conn->type, conn->dst_type,
2915 reason, mgmt_connected);
2917 if (conn->type == ACL_LINK) {
2918 if (test_bit(HCI_CONN_FLUSH_KEY, &conn->flags))
2919 hci_remove_link_key(hdev, &conn->dst);
2921 hci_req_update_scan(hdev);
2924 params = hci_conn_params_lookup(hdev, &conn->dst, conn->dst_type);
2926 switch (params->auto_connect) {
2927 case HCI_AUTO_CONN_LINK_LOSS:
2928 if (ev->reason != HCI_ERROR_CONNECTION_TIMEOUT)
2932 case HCI_AUTO_CONN_DIRECT:
2933 case HCI_AUTO_CONN_ALWAYS:
2934 list_del_init(¶ms->action);
2935 list_add(¶ms->action, &hdev->pend_le_conns);
2936 hci_update_background_scan(hdev);
2944 hci_disconn_cfm(conn, ev->reason);
2946 /* The suspend notifier is waiting for all devices to disconnect so
2947 * clear the bit from pending tasks and inform the wait queue.
2949 if (list_empty(&hdev->conn_hash.list) &&
2950 test_and_clear_bit(SUSPEND_DISCONNECTING, hdev->suspend_tasks)) {
2951 wake_up(&hdev->suspend_wait_q);
2954 /* Re-enable advertising if necessary, since it might
2955 * have been disabled by the connection. From the
2956 * HCI_LE_Set_Advertise_Enable command description in
2957 * the core specification (v4.0):
2958 * "The Controller shall continue advertising until the Host
2959 * issues an LE_Set_Advertise_Enable command with
2960 * Advertising_Enable set to 0x00 (Advertising is disabled)
2961 * or until a connection is created or until the Advertising
2962 * is timed out due to Directed Advertising."
2964 if (conn->type == LE_LINK) {
2965 hdev->cur_adv_instance = conn->adv_instance;
2966 hci_req_reenable_advertising(hdev);
2972 hci_dev_unlock(hdev);
2975 static void hci_auth_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
2977 struct hci_ev_auth_complete *ev = (void *) skb->data;
2978 struct hci_conn *conn;
2980 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
2984 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
2989 clear_bit(HCI_CONN_AUTH_FAILURE, &conn->flags);
2991 if (!hci_conn_ssp_enabled(conn) &&
2992 test_bit(HCI_CONN_REAUTH_PEND, &conn->flags)) {
2993 bt_dev_info(hdev, "re-auth of legacy device is not possible.");
2995 set_bit(HCI_CONN_AUTH, &conn->flags);
2996 conn->sec_level = conn->pending_sec_level;
2999 if (ev->status == HCI_ERROR_PIN_OR_KEY_MISSING)
3000 set_bit(HCI_CONN_AUTH_FAILURE, &conn->flags);
3002 mgmt_auth_failed(conn, ev->status);
3005 clear_bit(HCI_CONN_AUTH_PEND, &conn->flags);
3006 clear_bit(HCI_CONN_REAUTH_PEND, &conn->flags);
3008 if (conn->state == BT_CONFIG) {
3009 if (!ev->status && hci_conn_ssp_enabled(conn)) {
3010 struct hci_cp_set_conn_encrypt cp;
3011 cp.handle = ev->handle;
3013 hci_send_cmd(hdev, HCI_OP_SET_CONN_ENCRYPT, sizeof(cp),
3016 conn->state = BT_CONNECTED;
3017 hci_connect_cfm(conn, ev->status);
3018 hci_conn_drop(conn);
3021 hci_auth_cfm(conn, ev->status);
3023 hci_conn_hold(conn);
3024 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
3025 hci_conn_drop(conn);
3028 if (test_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags)) {
3030 struct hci_cp_set_conn_encrypt cp;
3031 cp.handle = ev->handle;
3033 hci_send_cmd(hdev, HCI_OP_SET_CONN_ENCRYPT, sizeof(cp),
3036 clear_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags);
3037 hci_encrypt_cfm(conn, ev->status);
3042 hci_dev_unlock(hdev);
3045 static void hci_remote_name_evt(struct hci_dev *hdev, struct sk_buff *skb)
3047 struct hci_ev_remote_name *ev = (void *) skb->data;
3048 struct hci_conn *conn;
3050 BT_DBG("%s", hdev->name);
3052 hci_conn_check_pending(hdev);
3056 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
3058 if (!hci_dev_test_flag(hdev, HCI_MGMT))
3061 if (ev->status == 0)
3062 hci_check_pending_name(hdev, conn, &ev->bdaddr, ev->name,
3063 strnlen(ev->name, HCI_MAX_NAME_LENGTH));
3065 hci_check_pending_name(hdev, conn, &ev->bdaddr, NULL, 0);
3071 if (!hci_outgoing_auth_needed(hdev, conn))
3074 if (!test_and_set_bit(HCI_CONN_AUTH_PEND, &conn->flags)) {
3075 struct hci_cp_auth_requested cp;
3077 set_bit(HCI_CONN_AUTH_INITIATOR, &conn->flags);
3079 cp.handle = __cpu_to_le16(conn->handle);
3080 hci_send_cmd(hdev, HCI_OP_AUTH_REQUESTED, sizeof(cp), &cp);
3084 hci_dev_unlock(hdev);
3087 static void read_enc_key_size_complete(struct hci_dev *hdev, u8 status,
3088 u16 opcode, struct sk_buff *skb)
3090 const struct hci_rp_read_enc_key_size *rp;
3091 struct hci_conn *conn;
3094 BT_DBG("%s status 0x%02x", hdev->name, status);
3096 if (!skb || skb->len < sizeof(*rp)) {
3097 bt_dev_err(hdev, "invalid read key size response");
3101 rp = (void *)skb->data;
3102 handle = le16_to_cpu(rp->handle);
3106 conn = hci_conn_hash_lookup_handle(hdev, handle);
3110 /* While unexpected, the read_enc_key_size command may fail. The most
3111 * secure approach is to then assume the key size is 0 to force a
3115 bt_dev_err(hdev, "failed to read key size for handle %u",
3117 conn->enc_key_size = 0;
3119 conn->enc_key_size = rp->key_size;
3122 hci_encrypt_cfm(conn, 0);
3125 hci_dev_unlock(hdev);
3128 static void hci_encrypt_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
3130 struct hci_ev_encrypt_change *ev = (void *) skb->data;
3131 struct hci_conn *conn;
3133 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
3137 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
3143 /* Encryption implies authentication */
3144 set_bit(HCI_CONN_AUTH, &conn->flags);
3145 set_bit(HCI_CONN_ENCRYPT, &conn->flags);
3146 conn->sec_level = conn->pending_sec_level;
3148 /* P-256 authentication key implies FIPS */
3149 if (conn->key_type == HCI_LK_AUTH_COMBINATION_P256)
3150 set_bit(HCI_CONN_FIPS, &conn->flags);
3152 if ((conn->type == ACL_LINK && ev->encrypt == 0x02) ||
3153 conn->type == LE_LINK)
3154 set_bit(HCI_CONN_AES_CCM, &conn->flags);
3156 clear_bit(HCI_CONN_ENCRYPT, &conn->flags);
3157 clear_bit(HCI_CONN_AES_CCM, &conn->flags);
3161 /* We should disregard the current RPA and generate a new one
3162 * whenever the encryption procedure fails.
3164 if (ev->status && conn->type == LE_LINK) {
3165 hci_dev_set_flag(hdev, HCI_RPA_EXPIRED);
3166 hci_adv_instances_set_rpa_expired(hdev, true);
3169 clear_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags);
3171 /* Check link security requirements are met */
3172 if (!hci_conn_check_link_mode(conn))
3173 ev->status = HCI_ERROR_AUTH_FAILURE;
3175 if (ev->status && conn->state == BT_CONNECTED) {
3176 if (ev->status == HCI_ERROR_PIN_OR_KEY_MISSING)
3177 set_bit(HCI_CONN_AUTH_FAILURE, &conn->flags);
3179 /* Notify upper layers so they can cleanup before
3182 hci_encrypt_cfm(conn, ev->status);
3183 hci_disconnect(conn, HCI_ERROR_AUTH_FAILURE);
3184 hci_conn_drop(conn);
3188 /* Try reading the encryption key size for encrypted ACL links */
3189 if (!ev->status && ev->encrypt && conn->type == ACL_LINK) {
3190 struct hci_cp_read_enc_key_size cp;
3191 struct hci_request req;
3193 /* Only send HCI_Read_Encryption_Key_Size if the
3194 * controller really supports it. If it doesn't, assume
3195 * the default size (16).
3197 if (!(hdev->commands[20] & 0x10)) {
3198 conn->enc_key_size = HCI_LINK_KEY_SIZE;
3202 hci_req_init(&req, hdev);
3204 cp.handle = cpu_to_le16(conn->handle);
3205 hci_req_add(&req, HCI_OP_READ_ENC_KEY_SIZE, sizeof(cp), &cp);
3207 if (hci_req_run_skb(&req, read_enc_key_size_complete)) {
3208 bt_dev_err(hdev, "sending read key size failed");
3209 conn->enc_key_size = HCI_LINK_KEY_SIZE;
3216 /* Set the default Authenticated Payload Timeout after
3217 * an LE Link is established. As per Core Spec v5.0, Vol 2, Part B
3218 * Section 3.3, the HCI command WRITE_AUTH_PAYLOAD_TIMEOUT should be
3219 * sent when the link is active and Encryption is enabled, the conn
3220 * type can be either LE or ACL and controller must support LMP Ping.
3221 * Ensure for AES-CCM encryption as well.
3223 if (test_bit(HCI_CONN_ENCRYPT, &conn->flags) &&
3224 test_bit(HCI_CONN_AES_CCM, &conn->flags) &&
3225 ((conn->type == ACL_LINK && lmp_ping_capable(hdev)) ||
3226 (conn->type == LE_LINK && (hdev->le_features[0] & HCI_LE_PING)))) {
3227 struct hci_cp_write_auth_payload_to cp;
3229 cp.handle = cpu_to_le16(conn->handle);
3230 cp.timeout = cpu_to_le16(hdev->auth_payload_timeout);
3231 hci_send_cmd(conn->hdev, HCI_OP_WRITE_AUTH_PAYLOAD_TO,
3236 hci_encrypt_cfm(conn, ev->status);
3239 hci_dev_unlock(hdev);
3242 static void hci_change_link_key_complete_evt(struct hci_dev *hdev,
3243 struct sk_buff *skb)
3245 struct hci_ev_change_link_key_complete *ev = (void *) skb->data;
3246 struct hci_conn *conn;
3248 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
3252 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
3255 set_bit(HCI_CONN_SECURE, &conn->flags);
3257 clear_bit(HCI_CONN_AUTH_PEND, &conn->flags);
3259 hci_key_change_cfm(conn, ev->status);
3262 hci_dev_unlock(hdev);
3265 static void hci_remote_features_evt(struct hci_dev *hdev,
3266 struct sk_buff *skb)
3268 struct hci_ev_remote_features *ev = (void *) skb->data;
3269 struct hci_conn *conn;
3271 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
3275 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
3280 memcpy(conn->features[0], ev->features, 8);
3282 if (conn->state != BT_CONFIG)
3285 if (!ev->status && lmp_ext_feat_capable(hdev) &&
3286 lmp_ext_feat_capable(conn)) {
3287 struct hci_cp_read_remote_ext_features cp;
3288 cp.handle = ev->handle;
3290 hci_send_cmd(hdev, HCI_OP_READ_REMOTE_EXT_FEATURES,
3295 if (!ev->status && !test_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags)) {
3296 struct hci_cp_remote_name_req cp;
3297 memset(&cp, 0, sizeof(cp));
3298 bacpy(&cp.bdaddr, &conn->dst);
3299 cp.pscan_rep_mode = 0x02;
3300 hci_send_cmd(hdev, HCI_OP_REMOTE_NAME_REQ, sizeof(cp), &cp);
3301 } else if (!test_and_set_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags))
3302 mgmt_device_connected(hdev, conn, NULL, 0);
3304 if (!hci_outgoing_auth_needed(hdev, conn)) {
3305 conn->state = BT_CONNECTED;
3306 hci_connect_cfm(conn, ev->status);
3307 hci_conn_drop(conn);
3311 hci_dev_unlock(hdev);
3314 static inline void handle_cmd_cnt_and_timer(struct hci_dev *hdev, u8 ncmd)
3316 cancel_delayed_work(&hdev->cmd_timer);
3318 if (!test_bit(HCI_RESET, &hdev->flags)) {
3320 cancel_delayed_work(&hdev->ncmd_timer);
3321 atomic_set(&hdev->cmd_cnt, 1);
3323 schedule_delayed_work(&hdev->ncmd_timer,
3329 static void hci_cmd_complete_evt(struct hci_dev *hdev, struct sk_buff *skb,
3330 u16 *opcode, u8 *status,
3331 hci_req_complete_t *req_complete,
3332 hci_req_complete_skb_t *req_complete_skb)
3334 struct hci_ev_cmd_complete *ev = (void *) skb->data;
3336 *opcode = __le16_to_cpu(ev->opcode);
3337 *status = skb->data[sizeof(*ev)];
3339 skb_pull(skb, sizeof(*ev));
3342 case HCI_OP_INQUIRY_CANCEL:
3343 hci_cc_inquiry_cancel(hdev, skb, status);
3346 case HCI_OP_PERIODIC_INQ:
3347 hci_cc_periodic_inq(hdev, skb);
3350 case HCI_OP_EXIT_PERIODIC_INQ:
3351 hci_cc_exit_periodic_inq(hdev, skb);
3354 case HCI_OP_REMOTE_NAME_REQ_CANCEL:
3355 hci_cc_remote_name_req_cancel(hdev, skb);
3358 case HCI_OP_ROLE_DISCOVERY:
3359 hci_cc_role_discovery(hdev, skb);
3362 case HCI_OP_READ_LINK_POLICY:
3363 hci_cc_read_link_policy(hdev, skb);
3366 case HCI_OP_WRITE_LINK_POLICY:
3367 hci_cc_write_link_policy(hdev, skb);
3370 case HCI_OP_READ_DEF_LINK_POLICY:
3371 hci_cc_read_def_link_policy(hdev, skb);
3374 case HCI_OP_WRITE_DEF_LINK_POLICY:
3375 hci_cc_write_def_link_policy(hdev, skb);
3379 hci_cc_reset(hdev, skb);
3382 case HCI_OP_READ_STORED_LINK_KEY:
3383 hci_cc_read_stored_link_key(hdev, skb);
3386 case HCI_OP_DELETE_STORED_LINK_KEY:
3387 hci_cc_delete_stored_link_key(hdev, skb);
3390 case HCI_OP_WRITE_LOCAL_NAME:
3391 hci_cc_write_local_name(hdev, skb);
3394 case HCI_OP_READ_LOCAL_NAME:
3395 hci_cc_read_local_name(hdev, skb);
3398 case HCI_OP_WRITE_AUTH_ENABLE:
3399 hci_cc_write_auth_enable(hdev, skb);
3402 case HCI_OP_WRITE_ENCRYPT_MODE:
3403 hci_cc_write_encrypt_mode(hdev, skb);
3406 case HCI_OP_WRITE_SCAN_ENABLE:
3407 hci_cc_write_scan_enable(hdev, skb);
3410 case HCI_OP_SET_EVENT_FLT:
3411 hci_cc_set_event_filter(hdev, skb);
3414 case HCI_OP_READ_CLASS_OF_DEV:
3415 hci_cc_read_class_of_dev(hdev, skb);
3418 case HCI_OP_WRITE_CLASS_OF_DEV:
3419 hci_cc_write_class_of_dev(hdev, skb);
3422 case HCI_OP_READ_VOICE_SETTING:
3423 hci_cc_read_voice_setting(hdev, skb);
3426 case HCI_OP_WRITE_VOICE_SETTING:
3427 hci_cc_write_voice_setting(hdev, skb);
3430 case HCI_OP_READ_NUM_SUPPORTED_IAC:
3431 hci_cc_read_num_supported_iac(hdev, skb);
3434 case HCI_OP_WRITE_SSP_MODE:
3435 hci_cc_write_ssp_mode(hdev, skb);
3438 case HCI_OP_WRITE_SC_SUPPORT:
3439 hci_cc_write_sc_support(hdev, skb);
3442 case HCI_OP_READ_AUTH_PAYLOAD_TO:
3443 hci_cc_read_auth_payload_timeout(hdev, skb);
3446 case HCI_OP_WRITE_AUTH_PAYLOAD_TO:
3447 hci_cc_write_auth_payload_timeout(hdev, skb);
3450 case HCI_OP_READ_LOCAL_VERSION:
3451 hci_cc_read_local_version(hdev, skb);
3454 case HCI_OP_READ_LOCAL_COMMANDS:
3455 hci_cc_read_local_commands(hdev, skb);
3458 case HCI_OP_READ_LOCAL_FEATURES:
3459 hci_cc_read_local_features(hdev, skb);
3462 case HCI_OP_READ_LOCAL_EXT_FEATURES:
3463 hci_cc_read_local_ext_features(hdev, skb);
3466 case HCI_OP_READ_BUFFER_SIZE:
3467 hci_cc_read_buffer_size(hdev, skb);
3470 case HCI_OP_READ_BD_ADDR:
3471 hci_cc_read_bd_addr(hdev, skb);
3474 case HCI_OP_READ_LOCAL_PAIRING_OPTS:
3475 hci_cc_read_local_pairing_opts(hdev, skb);
3478 case HCI_OP_READ_PAGE_SCAN_ACTIVITY:
3479 hci_cc_read_page_scan_activity(hdev, skb);
3482 case HCI_OP_WRITE_PAGE_SCAN_ACTIVITY:
3483 hci_cc_write_page_scan_activity(hdev, skb);
3486 case HCI_OP_READ_PAGE_SCAN_TYPE:
3487 hci_cc_read_page_scan_type(hdev, skb);
3490 case HCI_OP_WRITE_PAGE_SCAN_TYPE:
3491 hci_cc_write_page_scan_type(hdev, skb);
3494 case HCI_OP_READ_DATA_BLOCK_SIZE:
3495 hci_cc_read_data_block_size(hdev, skb);
3498 case HCI_OP_READ_FLOW_CONTROL_MODE:
3499 hci_cc_read_flow_control_mode(hdev, skb);
3502 case HCI_OP_READ_LOCAL_AMP_INFO:
3503 hci_cc_read_local_amp_info(hdev, skb);
3506 case HCI_OP_READ_CLOCK:
3507 hci_cc_read_clock(hdev, skb);
3510 case HCI_OP_READ_INQ_RSP_TX_POWER:
3511 hci_cc_read_inq_rsp_tx_power(hdev, skb);
3514 case HCI_OP_READ_DEF_ERR_DATA_REPORTING:
3515 hci_cc_read_def_err_data_reporting(hdev, skb);
3518 case HCI_OP_WRITE_DEF_ERR_DATA_REPORTING:
3519 hci_cc_write_def_err_data_reporting(hdev, skb);
3522 case HCI_OP_PIN_CODE_REPLY:
3523 hci_cc_pin_code_reply(hdev, skb);
3526 case HCI_OP_PIN_CODE_NEG_REPLY:
3527 hci_cc_pin_code_neg_reply(hdev, skb);
3530 case HCI_OP_READ_LOCAL_OOB_DATA:
3531 hci_cc_read_local_oob_data(hdev, skb);
3534 case HCI_OP_READ_LOCAL_OOB_EXT_DATA:
3535 hci_cc_read_local_oob_ext_data(hdev, skb);
3538 case HCI_OP_LE_READ_BUFFER_SIZE:
3539 hci_cc_le_read_buffer_size(hdev, skb);
3542 case HCI_OP_LE_READ_LOCAL_FEATURES:
3543 hci_cc_le_read_local_features(hdev, skb);
3546 case HCI_OP_LE_READ_ADV_TX_POWER:
3547 hci_cc_le_read_adv_tx_power(hdev, skb);
3550 case HCI_OP_USER_CONFIRM_REPLY:
3551 hci_cc_user_confirm_reply(hdev, skb);
3554 case HCI_OP_USER_CONFIRM_NEG_REPLY:
3555 hci_cc_user_confirm_neg_reply(hdev, skb);
3558 case HCI_OP_USER_PASSKEY_REPLY:
3559 hci_cc_user_passkey_reply(hdev, skb);
3562 case HCI_OP_USER_PASSKEY_NEG_REPLY:
3563 hci_cc_user_passkey_neg_reply(hdev, skb);
3566 case HCI_OP_LE_SET_RANDOM_ADDR:
3567 hci_cc_le_set_random_addr(hdev, skb);
3570 case HCI_OP_LE_SET_ADV_ENABLE:
3571 hci_cc_le_set_adv_enable(hdev, skb);
3574 case HCI_OP_LE_SET_SCAN_PARAM:
3575 hci_cc_le_set_scan_param(hdev, skb);
3578 case HCI_OP_LE_SET_SCAN_ENABLE:
3579 hci_cc_le_set_scan_enable(hdev, skb);
3582 case HCI_OP_LE_READ_ACCEPT_LIST_SIZE:
3583 hci_cc_le_read_accept_list_size(hdev, skb);
3586 case HCI_OP_LE_CLEAR_ACCEPT_LIST:
3587 hci_cc_le_clear_accept_list(hdev, skb);
3590 case HCI_OP_LE_ADD_TO_ACCEPT_LIST:
3591 hci_cc_le_add_to_accept_list(hdev, skb);
3594 case HCI_OP_LE_DEL_FROM_ACCEPT_LIST:
3595 hci_cc_le_del_from_accept_list(hdev, skb);
3598 case HCI_OP_LE_READ_SUPPORTED_STATES:
3599 hci_cc_le_read_supported_states(hdev, skb);
3602 case HCI_OP_LE_READ_DEF_DATA_LEN:
3603 hci_cc_le_read_def_data_len(hdev, skb);
3606 case HCI_OP_LE_WRITE_DEF_DATA_LEN:
3607 hci_cc_le_write_def_data_len(hdev, skb);
3610 case HCI_OP_LE_ADD_TO_RESOLV_LIST:
3611 hci_cc_le_add_to_resolv_list(hdev, skb);
3614 case HCI_OP_LE_DEL_FROM_RESOLV_LIST:
3615 hci_cc_le_del_from_resolv_list(hdev, skb);
3618 case HCI_OP_LE_CLEAR_RESOLV_LIST:
3619 hci_cc_le_clear_resolv_list(hdev, skb);
3622 case HCI_OP_LE_READ_RESOLV_LIST_SIZE:
3623 hci_cc_le_read_resolv_list_size(hdev, skb);
3626 case HCI_OP_LE_SET_ADDR_RESOLV_ENABLE:
3627 hci_cc_le_set_addr_resolution_enable(hdev, skb);
3630 case HCI_OP_LE_READ_MAX_DATA_LEN:
3631 hci_cc_le_read_max_data_len(hdev, skb);
3634 case HCI_OP_WRITE_LE_HOST_SUPPORTED:
3635 hci_cc_write_le_host_supported(hdev, skb);
3638 case HCI_OP_LE_SET_ADV_PARAM:
3639 hci_cc_set_adv_param(hdev, skb);
3642 case HCI_OP_READ_RSSI:
3643 hci_cc_read_rssi(hdev, skb);
3646 case HCI_OP_READ_TX_POWER:
3647 hci_cc_read_tx_power(hdev, skb);
3650 case HCI_OP_WRITE_SSP_DEBUG_MODE:
3651 hci_cc_write_ssp_debug_mode(hdev, skb);
3654 case HCI_OP_LE_SET_EXT_SCAN_PARAMS:
3655 hci_cc_le_set_ext_scan_param(hdev, skb);
3658 case HCI_OP_LE_SET_EXT_SCAN_ENABLE:
3659 hci_cc_le_set_ext_scan_enable(hdev, skb);
3662 case HCI_OP_LE_SET_DEFAULT_PHY:
3663 hci_cc_le_set_default_phy(hdev, skb);
3666 case HCI_OP_LE_READ_NUM_SUPPORTED_ADV_SETS:
3667 hci_cc_le_read_num_adv_sets(hdev, skb);
3670 case HCI_OP_LE_SET_EXT_ADV_PARAMS:
3671 hci_cc_set_ext_adv_param(hdev, skb);
3674 case HCI_OP_LE_SET_EXT_ADV_ENABLE:
3675 hci_cc_le_set_ext_adv_enable(hdev, skb);
3678 case HCI_OP_LE_SET_ADV_SET_RAND_ADDR:
3679 hci_cc_le_set_adv_set_random_addr(hdev, skb);
3682 case HCI_OP_LE_READ_TRANSMIT_POWER:
3683 hci_cc_le_read_transmit_power(hdev, skb);
3687 BT_DBG("%s opcode 0x%4.4x", hdev->name, *opcode);
3691 handle_cmd_cnt_and_timer(hdev, ev->ncmd);
3693 hci_req_cmd_complete(hdev, *opcode, *status, req_complete,
3696 if (hci_dev_test_flag(hdev, HCI_CMD_PENDING)) {
3698 "unexpected event for opcode 0x%4.4x", *opcode);
3702 if (atomic_read(&hdev->cmd_cnt) && !skb_queue_empty(&hdev->cmd_q))
3703 queue_work(hdev->workqueue, &hdev->cmd_work);
3706 static void hci_cmd_status_evt(struct hci_dev *hdev, struct sk_buff *skb,
3707 u16 *opcode, u8 *status,
3708 hci_req_complete_t *req_complete,
3709 hci_req_complete_skb_t *req_complete_skb)
3711 struct hci_ev_cmd_status *ev = (void *) skb->data;
3713 skb_pull(skb, sizeof(*ev));
3715 *opcode = __le16_to_cpu(ev->opcode);
3716 *status = ev->status;
3719 case HCI_OP_INQUIRY:
3720 hci_cs_inquiry(hdev, ev->status);
3723 case HCI_OP_CREATE_CONN:
3724 hci_cs_create_conn(hdev, ev->status);
3727 case HCI_OP_DISCONNECT:
3728 hci_cs_disconnect(hdev, ev->status);
3731 case HCI_OP_ADD_SCO:
3732 hci_cs_add_sco(hdev, ev->status);
3735 case HCI_OP_AUTH_REQUESTED:
3736 hci_cs_auth_requested(hdev, ev->status);
3739 case HCI_OP_SET_CONN_ENCRYPT:
3740 hci_cs_set_conn_encrypt(hdev, ev->status);
3743 case HCI_OP_REMOTE_NAME_REQ:
3744 hci_cs_remote_name_req(hdev, ev->status);
3747 case HCI_OP_READ_REMOTE_FEATURES:
3748 hci_cs_read_remote_features(hdev, ev->status);
3751 case HCI_OP_READ_REMOTE_EXT_FEATURES:
3752 hci_cs_read_remote_ext_features(hdev, ev->status);
3755 case HCI_OP_SETUP_SYNC_CONN:
3756 hci_cs_setup_sync_conn(hdev, ev->status);
3759 case HCI_OP_SNIFF_MODE:
3760 hci_cs_sniff_mode(hdev, ev->status);
3763 case HCI_OP_EXIT_SNIFF_MODE:
3764 hci_cs_exit_sniff_mode(hdev, ev->status);
3767 case HCI_OP_SWITCH_ROLE:
3768 hci_cs_switch_role(hdev, ev->status);
3771 case HCI_OP_LE_CREATE_CONN:
3772 hci_cs_le_create_conn(hdev, ev->status);
3775 case HCI_OP_LE_READ_REMOTE_FEATURES:
3776 hci_cs_le_read_remote_features(hdev, ev->status);
3779 case HCI_OP_LE_START_ENC:
3780 hci_cs_le_start_enc(hdev, ev->status);
3783 case HCI_OP_LE_EXT_CREATE_CONN:
3784 hci_cs_le_ext_create_conn(hdev, ev->status);
3788 BT_DBG("%s opcode 0x%4.4x", hdev->name, *opcode);
3792 handle_cmd_cnt_and_timer(hdev, ev->ncmd);
3794 /* Indicate request completion if the command failed. Also, if
3795 * we're not waiting for a special event and we get a success
3796 * command status we should try to flag the request as completed
3797 * (since for this kind of commands there will not be a command
3801 (hdev->sent_cmd && !bt_cb(hdev->sent_cmd)->hci.req_event))
3802 hci_req_cmd_complete(hdev, *opcode, ev->status, req_complete,
3805 if (hci_dev_test_flag(hdev, HCI_CMD_PENDING)) {
3807 "unexpected event for opcode 0x%4.4x", *opcode);
3811 if (atomic_read(&hdev->cmd_cnt) && !skb_queue_empty(&hdev->cmd_q))
3812 queue_work(hdev->workqueue, &hdev->cmd_work);
3815 static void hci_hardware_error_evt(struct hci_dev *hdev, struct sk_buff *skb)
3817 struct hci_ev_hardware_error *ev = (void *) skb->data;
3819 hdev->hw_error_code = ev->code;
3821 queue_work(hdev->req_workqueue, &hdev->error_reset);
3824 static void hci_role_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
3826 struct hci_ev_role_change *ev = (void *) skb->data;
3827 struct hci_conn *conn;
3829 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
3833 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
3836 conn->role = ev->role;
3838 clear_bit(HCI_CONN_RSWITCH_PEND, &conn->flags);
3840 hci_role_switch_cfm(conn, ev->status, ev->role);
3843 hci_dev_unlock(hdev);
3846 static void hci_num_comp_pkts_evt(struct hci_dev *hdev, struct sk_buff *skb)
3848 struct hci_ev_num_comp_pkts *ev = (void *) skb->data;
3851 if (hdev->flow_ctl_mode != HCI_FLOW_CTL_MODE_PACKET_BASED) {
3852 bt_dev_err(hdev, "wrong event for mode %d", hdev->flow_ctl_mode);
3856 if (skb->len < sizeof(*ev) ||
3857 skb->len < struct_size(ev, handles, ev->num_hndl)) {
3858 BT_DBG("%s bad parameters", hdev->name);
3862 BT_DBG("%s num_hndl %d", hdev->name, ev->num_hndl);
3864 for (i = 0; i < ev->num_hndl; i++) {
3865 struct hci_comp_pkts_info *info = &ev->handles[i];
3866 struct hci_conn *conn;
3867 __u16 handle, count;
3869 handle = __le16_to_cpu(info->handle);
3870 count = __le16_to_cpu(info->count);
3872 conn = hci_conn_hash_lookup_handle(hdev, handle);
3876 conn->sent -= count;
3878 switch (conn->type) {
3880 hdev->acl_cnt += count;
3881 if (hdev->acl_cnt > hdev->acl_pkts)
3882 hdev->acl_cnt = hdev->acl_pkts;
3886 if (hdev->le_pkts) {
3887 hdev->le_cnt += count;
3888 if (hdev->le_cnt > hdev->le_pkts)
3889 hdev->le_cnt = hdev->le_pkts;
3891 hdev->acl_cnt += count;
3892 if (hdev->acl_cnt > hdev->acl_pkts)
3893 hdev->acl_cnt = hdev->acl_pkts;
3898 hdev->sco_cnt += count;
3899 if (hdev->sco_cnt > hdev->sco_pkts)
3900 hdev->sco_cnt = hdev->sco_pkts;
3904 bt_dev_err(hdev, "unknown type %d conn %p",
3910 queue_work(hdev->workqueue, &hdev->tx_work);
3913 static struct hci_conn *__hci_conn_lookup_handle(struct hci_dev *hdev,
3916 struct hci_chan *chan;
3918 switch (hdev->dev_type) {
3920 return hci_conn_hash_lookup_handle(hdev, handle);
3922 chan = hci_chan_lookup_handle(hdev, handle);
3927 bt_dev_err(hdev, "unknown dev_type %d", hdev->dev_type);
3934 static void hci_num_comp_blocks_evt(struct hci_dev *hdev, struct sk_buff *skb)
3936 struct hci_ev_num_comp_blocks *ev = (void *) skb->data;
3939 if (hdev->flow_ctl_mode != HCI_FLOW_CTL_MODE_BLOCK_BASED) {
3940 bt_dev_err(hdev, "wrong event for mode %d", hdev->flow_ctl_mode);
3944 if (skb->len < sizeof(*ev) ||
3945 skb->len < struct_size(ev, handles, ev->num_hndl)) {
3946 BT_DBG("%s bad parameters", hdev->name);
3950 BT_DBG("%s num_blocks %d num_hndl %d", hdev->name, ev->num_blocks,
3953 for (i = 0; i < ev->num_hndl; i++) {
3954 struct hci_comp_blocks_info *info = &ev->handles[i];
3955 struct hci_conn *conn = NULL;
3956 __u16 handle, block_count;
3958 handle = __le16_to_cpu(info->handle);
3959 block_count = __le16_to_cpu(info->blocks);
3961 conn = __hci_conn_lookup_handle(hdev, handle);
3965 conn->sent -= block_count;
3967 switch (conn->type) {
3970 hdev->block_cnt += block_count;
3971 if (hdev->block_cnt > hdev->num_blocks)
3972 hdev->block_cnt = hdev->num_blocks;
3976 bt_dev_err(hdev, "unknown type %d conn %p",
3982 queue_work(hdev->workqueue, &hdev->tx_work);
3985 static void hci_mode_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
3987 struct hci_ev_mode_change *ev = (void *) skb->data;
3988 struct hci_conn *conn;
3990 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
3994 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
3996 conn->mode = ev->mode;
3998 if (!test_and_clear_bit(HCI_CONN_MODE_CHANGE_PEND,
4000 if (conn->mode == HCI_CM_ACTIVE)
4001 set_bit(HCI_CONN_POWER_SAVE, &conn->flags);
4003 clear_bit(HCI_CONN_POWER_SAVE, &conn->flags);
4006 if (test_and_clear_bit(HCI_CONN_SCO_SETUP_PEND, &conn->flags))
4007 hci_sco_setup(conn, ev->status);
4010 hci_dev_unlock(hdev);
4013 static void hci_pin_code_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
4015 struct hci_ev_pin_code_req *ev = (void *) skb->data;
4016 struct hci_conn *conn;
4018 BT_DBG("%s", hdev->name);
4022 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
4026 if (conn->state == BT_CONNECTED) {
4027 hci_conn_hold(conn);
4028 conn->disc_timeout = HCI_PAIRING_TIMEOUT;
4029 hci_conn_drop(conn);
4032 if (!hci_dev_test_flag(hdev, HCI_BONDABLE) &&
4033 !test_bit(HCI_CONN_AUTH_INITIATOR, &conn->flags)) {
4034 hci_send_cmd(hdev, HCI_OP_PIN_CODE_NEG_REPLY,
4035 sizeof(ev->bdaddr), &ev->bdaddr);
4036 } else if (hci_dev_test_flag(hdev, HCI_MGMT)) {
4039 if (conn->pending_sec_level == BT_SECURITY_HIGH)
4044 mgmt_pin_code_request(hdev, &ev->bdaddr, secure);
4048 hci_dev_unlock(hdev);
4051 static void conn_set_key(struct hci_conn *conn, u8 key_type, u8 pin_len)
4053 if (key_type == HCI_LK_CHANGED_COMBINATION)
4056 conn->pin_length = pin_len;
4057 conn->key_type = key_type;
4060 case HCI_LK_LOCAL_UNIT:
4061 case HCI_LK_REMOTE_UNIT:
4062 case HCI_LK_DEBUG_COMBINATION:
4064 case HCI_LK_COMBINATION:
4066 conn->pending_sec_level = BT_SECURITY_HIGH;
4068 conn->pending_sec_level = BT_SECURITY_MEDIUM;
4070 case HCI_LK_UNAUTH_COMBINATION_P192:
4071 case HCI_LK_UNAUTH_COMBINATION_P256:
4072 conn->pending_sec_level = BT_SECURITY_MEDIUM;
4074 case HCI_LK_AUTH_COMBINATION_P192:
4075 conn->pending_sec_level = BT_SECURITY_HIGH;
4077 case HCI_LK_AUTH_COMBINATION_P256:
4078 conn->pending_sec_level = BT_SECURITY_FIPS;
4083 static void hci_link_key_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
4085 struct hci_ev_link_key_req *ev = (void *) skb->data;
4086 struct hci_cp_link_key_reply cp;
4087 struct hci_conn *conn;
4088 struct link_key *key;
4090 BT_DBG("%s", hdev->name);
4092 if (!hci_dev_test_flag(hdev, HCI_MGMT))
4097 key = hci_find_link_key(hdev, &ev->bdaddr);
4099 BT_DBG("%s link key not found for %pMR", hdev->name,
4104 BT_DBG("%s found key type %u for %pMR", hdev->name, key->type,
4107 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
4109 clear_bit(HCI_CONN_NEW_LINK_KEY, &conn->flags);
4111 if ((key->type == HCI_LK_UNAUTH_COMBINATION_P192 ||
4112 key->type == HCI_LK_UNAUTH_COMBINATION_P256) &&
4113 conn->auth_type != 0xff && (conn->auth_type & 0x01)) {
4114 BT_DBG("%s ignoring unauthenticated key", hdev->name);
4118 if (key->type == HCI_LK_COMBINATION && key->pin_len < 16 &&
4119 (conn->pending_sec_level == BT_SECURITY_HIGH ||
4120 conn->pending_sec_level == BT_SECURITY_FIPS)) {
4121 BT_DBG("%s ignoring key unauthenticated for high security",
4126 conn_set_key(conn, key->type, key->pin_len);
4129 bacpy(&cp.bdaddr, &ev->bdaddr);
4130 memcpy(cp.link_key, key->val, HCI_LINK_KEY_SIZE);
4132 hci_send_cmd(hdev, HCI_OP_LINK_KEY_REPLY, sizeof(cp), &cp);
4134 hci_dev_unlock(hdev);
4139 hci_send_cmd(hdev, HCI_OP_LINK_KEY_NEG_REPLY, 6, &ev->bdaddr);
4140 hci_dev_unlock(hdev);
4143 static void hci_link_key_notify_evt(struct hci_dev *hdev, struct sk_buff *skb)
4145 struct hci_ev_link_key_notify *ev = (void *) skb->data;
4146 struct hci_conn *conn;
4147 struct link_key *key;
4151 BT_DBG("%s", hdev->name);
4155 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
4159 hci_conn_hold(conn);
4160 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
4161 hci_conn_drop(conn);
4163 set_bit(HCI_CONN_NEW_LINK_KEY, &conn->flags);
4164 conn_set_key(conn, ev->key_type, conn->pin_length);
4166 if (!hci_dev_test_flag(hdev, HCI_MGMT))
4169 key = hci_add_link_key(hdev, conn, &ev->bdaddr, ev->link_key,
4170 ev->key_type, pin_len, &persistent);
4174 /* Update connection information since adding the key will have
4175 * fixed up the type in the case of changed combination keys.
4177 if (ev->key_type == HCI_LK_CHANGED_COMBINATION)
4178 conn_set_key(conn, key->type, key->pin_len);
4180 mgmt_new_link_key(hdev, key, persistent);
4182 /* Keep debug keys around only if the HCI_KEEP_DEBUG_KEYS flag
4183 * is set. If it's not set simply remove the key from the kernel
4184 * list (we've still notified user space about it but with
4185 * store_hint being 0).
4187 if (key->type == HCI_LK_DEBUG_COMBINATION &&
4188 !hci_dev_test_flag(hdev, HCI_KEEP_DEBUG_KEYS)) {
4189 list_del_rcu(&key->list);
4190 kfree_rcu(key, rcu);
4195 clear_bit(HCI_CONN_FLUSH_KEY, &conn->flags);
4197 set_bit(HCI_CONN_FLUSH_KEY, &conn->flags);
4200 hci_dev_unlock(hdev);
4203 static void hci_clock_offset_evt(struct hci_dev *hdev, struct sk_buff *skb)
4205 struct hci_ev_clock_offset *ev = (void *) skb->data;
4206 struct hci_conn *conn;
4208 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
4212 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
4213 if (conn && !ev->status) {
4214 struct inquiry_entry *ie;
4216 ie = hci_inquiry_cache_lookup(hdev, &conn->dst);
4218 ie->data.clock_offset = ev->clock_offset;
4219 ie->timestamp = jiffies;
4223 hci_dev_unlock(hdev);
4226 static void hci_pkt_type_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
4228 struct hci_ev_pkt_type_change *ev = (void *) skb->data;
4229 struct hci_conn *conn;
4231 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
4235 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
4236 if (conn && !ev->status)
4237 conn->pkt_type = __le16_to_cpu(ev->pkt_type);
4239 hci_dev_unlock(hdev);
4242 static void hci_pscan_rep_mode_evt(struct hci_dev *hdev, struct sk_buff *skb)
4244 struct hci_ev_pscan_rep_mode *ev = (void *) skb->data;
4245 struct inquiry_entry *ie;
4247 BT_DBG("%s", hdev->name);
4251 ie = hci_inquiry_cache_lookup(hdev, &ev->bdaddr);
4253 ie->data.pscan_rep_mode = ev->pscan_rep_mode;
4254 ie->timestamp = jiffies;
4257 hci_dev_unlock(hdev);
4260 static void hci_inquiry_result_with_rssi_evt(struct hci_dev *hdev,
4261 struct sk_buff *skb)
4263 struct inquiry_data data;
4264 int num_rsp = *((__u8 *) skb->data);
4266 BT_DBG("%s num_rsp %d", hdev->name, num_rsp);
4271 if (hci_dev_test_flag(hdev, HCI_PERIODIC_INQ))
4276 if ((skb->len - 1) / num_rsp != sizeof(struct inquiry_info_with_rssi)) {
4277 struct inquiry_info_with_rssi_and_pscan_mode *info;
4278 info = (void *) (skb->data + 1);
4280 if (skb->len < num_rsp * sizeof(*info) + 1)
4283 for (; num_rsp; num_rsp--, info++) {
4286 bacpy(&data.bdaddr, &info->bdaddr);
4287 data.pscan_rep_mode = info->pscan_rep_mode;
4288 data.pscan_period_mode = info->pscan_period_mode;
4289 data.pscan_mode = info->pscan_mode;
4290 memcpy(data.dev_class, info->dev_class, 3);
4291 data.clock_offset = info->clock_offset;
4292 data.rssi = info->rssi;
4293 data.ssp_mode = 0x00;
4295 flags = hci_inquiry_cache_update(hdev, &data, false);
4297 mgmt_device_found(hdev, &info->bdaddr, ACL_LINK, 0x00,
4298 info->dev_class, info->rssi,
4299 flags, NULL, 0, NULL, 0);
4302 struct inquiry_info_with_rssi *info = (void *) (skb->data + 1);
4304 if (skb->len < num_rsp * sizeof(*info) + 1)
4307 for (; num_rsp; num_rsp--, info++) {
4310 bacpy(&data.bdaddr, &info->bdaddr);
4311 data.pscan_rep_mode = info->pscan_rep_mode;
4312 data.pscan_period_mode = info->pscan_period_mode;
4313 data.pscan_mode = 0x00;
4314 memcpy(data.dev_class, info->dev_class, 3);
4315 data.clock_offset = info->clock_offset;
4316 data.rssi = info->rssi;
4317 data.ssp_mode = 0x00;
4319 flags = hci_inquiry_cache_update(hdev, &data, false);
4321 mgmt_device_found(hdev, &info->bdaddr, ACL_LINK, 0x00,
4322 info->dev_class, info->rssi,
4323 flags, NULL, 0, NULL, 0);
4328 hci_dev_unlock(hdev);
4331 static void hci_remote_ext_features_evt(struct hci_dev *hdev,
4332 struct sk_buff *skb)
4334 struct hci_ev_remote_ext_features *ev = (void *) skb->data;
4335 struct hci_conn *conn;
4337 BT_DBG("%s", hdev->name);
4341 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
4345 if (ev->page < HCI_MAX_PAGES)
4346 memcpy(conn->features[ev->page], ev->features, 8);
4348 if (!ev->status && ev->page == 0x01) {
4349 struct inquiry_entry *ie;
4351 ie = hci_inquiry_cache_lookup(hdev, &conn->dst);
4353 ie->data.ssp_mode = (ev->features[0] & LMP_HOST_SSP);
4355 if (ev->features[0] & LMP_HOST_SSP) {
4356 set_bit(HCI_CONN_SSP_ENABLED, &conn->flags);
4358 /* It is mandatory by the Bluetooth specification that
4359 * Extended Inquiry Results are only used when Secure
4360 * Simple Pairing is enabled, but some devices violate
4363 * To make these devices work, the internal SSP
4364 * enabled flag needs to be cleared if the remote host
4365 * features do not indicate SSP support */
4366 clear_bit(HCI_CONN_SSP_ENABLED, &conn->flags);
4369 if (ev->features[0] & LMP_HOST_SC)
4370 set_bit(HCI_CONN_SC_ENABLED, &conn->flags);
4373 if (conn->state != BT_CONFIG)
4376 if (!ev->status && !test_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags)) {
4377 struct hci_cp_remote_name_req cp;
4378 memset(&cp, 0, sizeof(cp));
4379 bacpy(&cp.bdaddr, &conn->dst);
4380 cp.pscan_rep_mode = 0x02;
4381 hci_send_cmd(hdev, HCI_OP_REMOTE_NAME_REQ, sizeof(cp), &cp);
4382 } else if (!test_and_set_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags))
4383 mgmt_device_connected(hdev, conn, NULL, 0);
4385 if (!hci_outgoing_auth_needed(hdev, conn)) {
4386 conn->state = BT_CONNECTED;
4387 hci_connect_cfm(conn, ev->status);
4388 hci_conn_drop(conn);
4392 hci_dev_unlock(hdev);
4395 static void hci_sync_conn_complete_evt(struct hci_dev *hdev,
4396 struct sk_buff *skb)
4398 struct hci_ev_sync_conn_complete *ev = (void *) skb->data;
4399 struct hci_conn *conn;
4401 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
4405 conn = hci_conn_hash_lookup_ba(hdev, ev->link_type, &ev->bdaddr);
4407 if (ev->link_type == ESCO_LINK)
4410 /* When the link type in the event indicates SCO connection
4411 * and lookup of the connection object fails, then check
4412 * if an eSCO connection object exists.
4414 * The core limits the synchronous connections to either
4415 * SCO or eSCO. The eSCO connection is preferred and tried
4416 * to be setup first and until successfully established,
4417 * the link type will be hinted as eSCO.
4419 conn = hci_conn_hash_lookup_ba(hdev, ESCO_LINK, &ev->bdaddr);
4424 switch (ev->status) {
4426 /* The synchronous connection complete event should only be
4427 * sent once per new connection. Receiving a successful
4428 * complete event when the connection status is already
4429 * BT_CONNECTED means that the device is misbehaving and sent
4430 * multiple complete event packets for the same new connection.
4432 * Registering the device more than once can corrupt kernel
4433 * memory, hence upon detecting this invalid event, we report
4434 * an error and ignore the packet.
4436 if (conn->state == BT_CONNECTED) {
4437 bt_dev_err(hdev, "Ignoring connect complete event for existing connection");
4441 conn->handle = __le16_to_cpu(ev->handle);
4442 conn->state = BT_CONNECTED;
4443 conn->type = ev->link_type;
4445 hci_debugfs_create_conn(conn);
4446 hci_conn_add_sysfs(conn);
4449 case 0x10: /* Connection Accept Timeout */
4450 case 0x0d: /* Connection Rejected due to Limited Resources */
4451 case 0x11: /* Unsupported Feature or Parameter Value */
4452 case 0x1c: /* SCO interval rejected */
4453 case 0x1a: /* Unsupported Remote Feature */
4454 case 0x1e: /* Invalid LMP Parameters */
4455 case 0x1f: /* Unspecified error */
4456 case 0x20: /* Unsupported LMP Parameter value */
4458 conn->pkt_type = (hdev->esco_type & SCO_ESCO_MASK) |
4459 (hdev->esco_type & EDR_ESCO_MASK);
4460 if (hci_setup_sync(conn, conn->link->handle))
4466 conn->state = BT_CLOSED;
4470 bt_dev_dbg(hdev, "SCO connected with air mode: %02x", ev->air_mode);
4472 switch (ev->air_mode) {
4475 hdev->notify(hdev, HCI_NOTIFY_ENABLE_SCO_CVSD);
4479 hdev->notify(hdev, HCI_NOTIFY_ENABLE_SCO_TRANSP);
4483 hci_connect_cfm(conn, ev->status);
4488 hci_dev_unlock(hdev);
4491 static inline size_t eir_get_length(u8 *eir, size_t eir_len)
4495 while (parsed < eir_len) {
4496 u8 field_len = eir[0];
4501 parsed += field_len + 1;
4502 eir += field_len + 1;
4508 static void hci_extended_inquiry_result_evt(struct hci_dev *hdev,
4509 struct sk_buff *skb)
4511 struct inquiry_data data;
4512 struct extended_inquiry_info *info = (void *) (skb->data + 1);
4513 int num_rsp = *((__u8 *) skb->data);
4516 BT_DBG("%s num_rsp %d", hdev->name, num_rsp);
4518 if (!num_rsp || skb->len < num_rsp * sizeof(*info) + 1)
4521 if (hci_dev_test_flag(hdev, HCI_PERIODIC_INQ))
4526 for (; num_rsp; num_rsp--, info++) {
4530 bacpy(&data.bdaddr, &info->bdaddr);
4531 data.pscan_rep_mode = info->pscan_rep_mode;
4532 data.pscan_period_mode = info->pscan_period_mode;
4533 data.pscan_mode = 0x00;
4534 memcpy(data.dev_class, info->dev_class, 3);
4535 data.clock_offset = info->clock_offset;
4536 data.rssi = info->rssi;
4537 data.ssp_mode = 0x01;
4539 if (hci_dev_test_flag(hdev, HCI_MGMT))
4540 name_known = eir_get_data(info->data,
4542 EIR_NAME_COMPLETE, NULL);
4546 flags = hci_inquiry_cache_update(hdev, &data, name_known);
4548 eir_len = eir_get_length(info->data, sizeof(info->data));
4550 mgmt_device_found(hdev, &info->bdaddr, ACL_LINK, 0x00,
4551 info->dev_class, info->rssi,
4552 flags, info->data, eir_len, NULL, 0);
4555 hci_dev_unlock(hdev);
4558 static void hci_key_refresh_complete_evt(struct hci_dev *hdev,
4559 struct sk_buff *skb)
4561 struct hci_ev_key_refresh_complete *ev = (void *) skb->data;
4562 struct hci_conn *conn;
4564 BT_DBG("%s status 0x%2.2x handle 0x%4.4x", hdev->name, ev->status,
4565 __le16_to_cpu(ev->handle));
4569 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
4573 /* For BR/EDR the necessary steps are taken through the
4574 * auth_complete event.
4576 if (conn->type != LE_LINK)
4580 conn->sec_level = conn->pending_sec_level;
4582 clear_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags);
4584 if (ev->status && conn->state == BT_CONNECTED) {
4585 hci_disconnect(conn, HCI_ERROR_AUTH_FAILURE);
4586 hci_conn_drop(conn);
4590 if (conn->state == BT_CONFIG) {
4592 conn->state = BT_CONNECTED;
4594 hci_connect_cfm(conn, ev->status);
4595 hci_conn_drop(conn);
4597 hci_auth_cfm(conn, ev->status);
4599 hci_conn_hold(conn);
4600 conn->disc_timeout = HCI_DISCONN_TIMEOUT;
4601 hci_conn_drop(conn);
4605 hci_dev_unlock(hdev);
4608 static u8 hci_get_auth_req(struct hci_conn *conn)
4610 /* If remote requests no-bonding follow that lead */
4611 if (conn->remote_auth == HCI_AT_NO_BONDING ||
4612 conn->remote_auth == HCI_AT_NO_BONDING_MITM)
4613 return conn->remote_auth | (conn->auth_type & 0x01);
4615 /* If both remote and local have enough IO capabilities, require
4618 if (conn->remote_cap != HCI_IO_NO_INPUT_OUTPUT &&
4619 conn->io_capability != HCI_IO_NO_INPUT_OUTPUT)
4620 return conn->remote_auth | 0x01;
4622 /* No MITM protection possible so ignore remote requirement */
4623 return (conn->remote_auth & ~0x01) | (conn->auth_type & 0x01);
4626 static u8 bredr_oob_data_present(struct hci_conn *conn)
4628 struct hci_dev *hdev = conn->hdev;
4629 struct oob_data *data;
4631 data = hci_find_remote_oob_data(hdev, &conn->dst, BDADDR_BREDR);
4635 if (bredr_sc_enabled(hdev)) {
4636 /* When Secure Connections is enabled, then just
4637 * return the present value stored with the OOB
4638 * data. The stored value contains the right present
4639 * information. However it can only be trusted when
4640 * not in Secure Connection Only mode.
4642 if (!hci_dev_test_flag(hdev, HCI_SC_ONLY))
4643 return data->present;
4645 /* When Secure Connections Only mode is enabled, then
4646 * the P-256 values are required. If they are not
4647 * available, then do not declare that OOB data is
4650 if (!memcmp(data->rand256, ZERO_KEY, 16) ||
4651 !memcmp(data->hash256, ZERO_KEY, 16))
4657 /* When Secure Connections is not enabled or actually
4658 * not supported by the hardware, then check that if
4659 * P-192 data values are present.
4661 if (!memcmp(data->rand192, ZERO_KEY, 16) ||
4662 !memcmp(data->hash192, ZERO_KEY, 16))
4668 static void hci_io_capa_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
4670 struct hci_ev_io_capa_request *ev = (void *) skb->data;
4671 struct hci_conn *conn;
4673 BT_DBG("%s", hdev->name);
4677 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
4681 hci_conn_hold(conn);
4683 if (!hci_dev_test_flag(hdev, HCI_MGMT))
4686 /* Allow pairing if we're pairable, the initiators of the
4687 * pairing or if the remote is not requesting bonding.
4689 if (hci_dev_test_flag(hdev, HCI_BONDABLE) ||
4690 test_bit(HCI_CONN_AUTH_INITIATOR, &conn->flags) ||
4691 (conn->remote_auth & ~0x01) == HCI_AT_NO_BONDING) {
4692 struct hci_cp_io_capability_reply cp;
4694 bacpy(&cp.bdaddr, &ev->bdaddr);
4695 /* Change the IO capability from KeyboardDisplay
4696 * to DisplayYesNo as it is not supported by BT spec. */
4697 cp.capability = (conn->io_capability == 0x04) ?
4698 HCI_IO_DISPLAY_YESNO : conn->io_capability;
4700 /* If we are initiators, there is no remote information yet */
4701 if (conn->remote_auth == 0xff) {
4702 /* Request MITM protection if our IO caps allow it
4703 * except for the no-bonding case.
4705 if (conn->io_capability != HCI_IO_NO_INPUT_OUTPUT &&
4706 conn->auth_type != HCI_AT_NO_BONDING)
4707 conn->auth_type |= 0x01;
4709 conn->auth_type = hci_get_auth_req(conn);
4712 /* If we're not bondable, force one of the non-bondable
4713 * authentication requirement values.
4715 if (!hci_dev_test_flag(hdev, HCI_BONDABLE))
4716 conn->auth_type &= HCI_AT_NO_BONDING_MITM;
4718 cp.authentication = conn->auth_type;
4719 cp.oob_data = bredr_oob_data_present(conn);
4721 hci_send_cmd(hdev, HCI_OP_IO_CAPABILITY_REPLY,
4724 struct hci_cp_io_capability_neg_reply cp;
4726 bacpy(&cp.bdaddr, &ev->bdaddr);
4727 cp.reason = HCI_ERROR_PAIRING_NOT_ALLOWED;
4729 hci_send_cmd(hdev, HCI_OP_IO_CAPABILITY_NEG_REPLY,
4734 hci_dev_unlock(hdev);
4737 static void hci_io_capa_reply_evt(struct hci_dev *hdev, struct sk_buff *skb)
4739 struct hci_ev_io_capa_reply *ev = (void *) skb->data;
4740 struct hci_conn *conn;
4742 BT_DBG("%s", hdev->name);
4746 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
4750 conn->remote_cap = ev->capability;
4751 conn->remote_auth = ev->authentication;
4754 hci_dev_unlock(hdev);
4757 static void hci_user_confirm_request_evt(struct hci_dev *hdev,
4758 struct sk_buff *skb)
4760 struct hci_ev_user_confirm_req *ev = (void *) skb->data;
4761 int loc_mitm, rem_mitm, confirm_hint = 0;
4762 struct hci_conn *conn;
4764 BT_DBG("%s", hdev->name);
4768 if (!hci_dev_test_flag(hdev, HCI_MGMT))
4771 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
4775 loc_mitm = (conn->auth_type & 0x01);
4776 rem_mitm = (conn->remote_auth & 0x01);
4778 /* If we require MITM but the remote device can't provide that
4779 * (it has NoInputNoOutput) then reject the confirmation
4780 * request. We check the security level here since it doesn't
4781 * necessarily match conn->auth_type.
4783 if (conn->pending_sec_level > BT_SECURITY_MEDIUM &&
4784 conn->remote_cap == HCI_IO_NO_INPUT_OUTPUT) {
4785 BT_DBG("Rejecting request: remote device can't provide MITM");
4786 hci_send_cmd(hdev, HCI_OP_USER_CONFIRM_NEG_REPLY,
4787 sizeof(ev->bdaddr), &ev->bdaddr);
4791 /* If no side requires MITM protection; auto-accept */
4792 if ((!loc_mitm || conn->remote_cap == HCI_IO_NO_INPUT_OUTPUT) &&
4793 (!rem_mitm || conn->io_capability == HCI_IO_NO_INPUT_OUTPUT)) {
4795 /* If we're not the initiators request authorization to
4796 * proceed from user space (mgmt_user_confirm with
4797 * confirm_hint set to 1). The exception is if neither
4798 * side had MITM or if the local IO capability is
4799 * NoInputNoOutput, in which case we do auto-accept
4801 if (!test_bit(HCI_CONN_AUTH_PEND, &conn->flags) &&
4802 conn->io_capability != HCI_IO_NO_INPUT_OUTPUT &&
4803 (loc_mitm || rem_mitm)) {
4804 BT_DBG("Confirming auto-accept as acceptor");
4809 /* If there already exists link key in local host, leave the
4810 * decision to user space since the remote device could be
4811 * legitimate or malicious.
4813 if (hci_find_link_key(hdev, &ev->bdaddr)) {
4814 bt_dev_dbg(hdev, "Local host already has link key");
4819 BT_DBG("Auto-accept of user confirmation with %ums delay",
4820 hdev->auto_accept_delay);
4822 if (hdev->auto_accept_delay > 0) {
4823 int delay = msecs_to_jiffies(hdev->auto_accept_delay);
4824 queue_delayed_work(conn->hdev->workqueue,
4825 &conn->auto_accept_work, delay);
4829 hci_send_cmd(hdev, HCI_OP_USER_CONFIRM_REPLY,
4830 sizeof(ev->bdaddr), &ev->bdaddr);
4835 mgmt_user_confirm_request(hdev, &ev->bdaddr, ACL_LINK, 0,
4836 le32_to_cpu(ev->passkey), confirm_hint);
4839 hci_dev_unlock(hdev);
4842 static void hci_user_passkey_request_evt(struct hci_dev *hdev,
4843 struct sk_buff *skb)
4845 struct hci_ev_user_passkey_req *ev = (void *) skb->data;
4847 BT_DBG("%s", hdev->name);
4849 if (hci_dev_test_flag(hdev, HCI_MGMT))
4850 mgmt_user_passkey_request(hdev, &ev->bdaddr, ACL_LINK, 0);
4853 static void hci_user_passkey_notify_evt(struct hci_dev *hdev,
4854 struct sk_buff *skb)
4856 struct hci_ev_user_passkey_notify *ev = (void *) skb->data;
4857 struct hci_conn *conn;
4859 BT_DBG("%s", hdev->name);
4861 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
4865 conn->passkey_notify = __le32_to_cpu(ev->passkey);
4866 conn->passkey_entered = 0;
4868 if (hci_dev_test_flag(hdev, HCI_MGMT))
4869 mgmt_user_passkey_notify(hdev, &conn->dst, conn->type,
4870 conn->dst_type, conn->passkey_notify,
4871 conn->passkey_entered);
4874 static void hci_keypress_notify_evt(struct hci_dev *hdev, struct sk_buff *skb)
4876 struct hci_ev_keypress_notify *ev = (void *) skb->data;
4877 struct hci_conn *conn;
4879 BT_DBG("%s", hdev->name);
4881 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
4886 case HCI_KEYPRESS_STARTED:
4887 conn->passkey_entered = 0;
4890 case HCI_KEYPRESS_ENTERED:
4891 conn->passkey_entered++;
4894 case HCI_KEYPRESS_ERASED:
4895 conn->passkey_entered--;
4898 case HCI_KEYPRESS_CLEARED:
4899 conn->passkey_entered = 0;
4902 case HCI_KEYPRESS_COMPLETED:
4906 if (hci_dev_test_flag(hdev, HCI_MGMT))
4907 mgmt_user_passkey_notify(hdev, &conn->dst, conn->type,
4908 conn->dst_type, conn->passkey_notify,
4909 conn->passkey_entered);
4912 static void hci_simple_pair_complete_evt(struct hci_dev *hdev,
4913 struct sk_buff *skb)
4915 struct hci_ev_simple_pair_complete *ev = (void *) skb->data;
4916 struct hci_conn *conn;
4918 BT_DBG("%s", hdev->name);
4922 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
4926 /* Reset the authentication requirement to unknown */
4927 conn->remote_auth = 0xff;
4929 /* To avoid duplicate auth_failed events to user space we check
4930 * the HCI_CONN_AUTH_PEND flag which will be set if we
4931 * initiated the authentication. A traditional auth_complete
4932 * event gets always produced as initiator and is also mapped to
4933 * the mgmt_auth_failed event */
4934 if (!test_bit(HCI_CONN_AUTH_PEND, &conn->flags) && ev->status)
4935 mgmt_auth_failed(conn, ev->status);
4937 hci_conn_drop(conn);
4940 hci_dev_unlock(hdev);
4943 static void hci_remote_host_features_evt(struct hci_dev *hdev,
4944 struct sk_buff *skb)
4946 struct hci_ev_remote_host_features *ev = (void *) skb->data;
4947 struct inquiry_entry *ie;
4948 struct hci_conn *conn;
4950 BT_DBG("%s", hdev->name);
4954 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);
4956 memcpy(conn->features[1], ev->features, 8);
4958 ie = hci_inquiry_cache_lookup(hdev, &ev->bdaddr);
4960 ie->data.ssp_mode = (ev->features[0] & LMP_HOST_SSP);
4962 hci_dev_unlock(hdev);
4965 static void hci_remote_oob_data_request_evt(struct hci_dev *hdev,
4966 struct sk_buff *skb)
4968 struct hci_ev_remote_oob_data_request *ev = (void *) skb->data;
4969 struct oob_data *data;
4971 BT_DBG("%s", hdev->name);
4975 if (!hci_dev_test_flag(hdev, HCI_MGMT))
4978 data = hci_find_remote_oob_data(hdev, &ev->bdaddr, BDADDR_BREDR);
4980 struct hci_cp_remote_oob_data_neg_reply cp;
4982 bacpy(&cp.bdaddr, &ev->bdaddr);
4983 hci_send_cmd(hdev, HCI_OP_REMOTE_OOB_DATA_NEG_REPLY,
4988 if (bredr_sc_enabled(hdev)) {
4989 struct hci_cp_remote_oob_ext_data_reply cp;
4991 bacpy(&cp.bdaddr, &ev->bdaddr);
4992 if (hci_dev_test_flag(hdev, HCI_SC_ONLY)) {
4993 memset(cp.hash192, 0, sizeof(cp.hash192));
4994 memset(cp.rand192, 0, sizeof(cp.rand192));
4996 memcpy(cp.hash192, data->hash192, sizeof(cp.hash192));
4997 memcpy(cp.rand192, data->rand192, sizeof(cp.rand192));
4999 memcpy(cp.hash256, data->hash256, sizeof(cp.hash256));
5000 memcpy(cp.rand256, data->rand256, sizeof(cp.rand256));
5002 hci_send_cmd(hdev, HCI_OP_REMOTE_OOB_EXT_DATA_REPLY,
5005 struct hci_cp_remote_oob_data_reply cp;
5007 bacpy(&cp.bdaddr, &ev->bdaddr);
5008 memcpy(cp.hash, data->hash192, sizeof(cp.hash));
5009 memcpy(cp.rand, data->rand192, sizeof(cp.rand));
5011 hci_send_cmd(hdev, HCI_OP_REMOTE_OOB_DATA_REPLY,
5016 hci_dev_unlock(hdev);
5019 #if IS_ENABLED(CONFIG_BT_HS)
5020 static void hci_chan_selected_evt(struct hci_dev *hdev, struct sk_buff *skb)
5022 struct hci_ev_channel_selected *ev = (void *)skb->data;
5023 struct hci_conn *hcon;
5025 BT_DBG("%s handle 0x%2.2x", hdev->name, ev->phy_handle);
5027 skb_pull(skb, sizeof(*ev));
5029 hcon = hci_conn_hash_lookup_handle(hdev, ev->phy_handle);
5033 amp_read_loc_assoc_final_data(hdev, hcon);
5036 static void hci_phy_link_complete_evt(struct hci_dev *hdev,
5037 struct sk_buff *skb)
5039 struct hci_ev_phy_link_complete *ev = (void *) skb->data;
5040 struct hci_conn *hcon, *bredr_hcon;
5042 BT_DBG("%s handle 0x%2.2x status 0x%2.2x", hdev->name, ev->phy_handle,
5047 hcon = hci_conn_hash_lookup_handle(hdev, ev->phy_handle);
5059 bredr_hcon = hcon->amp_mgr->l2cap_conn->hcon;
5061 hcon->state = BT_CONNECTED;
5062 bacpy(&hcon->dst, &bredr_hcon->dst);
5064 hci_conn_hold(hcon);
5065 hcon->disc_timeout = HCI_DISCONN_TIMEOUT;
5066 hci_conn_drop(hcon);
5068 hci_debugfs_create_conn(hcon);
5069 hci_conn_add_sysfs(hcon);
5071 amp_physical_cfm(bredr_hcon, hcon);
5074 hci_dev_unlock(hdev);
5077 static void hci_loglink_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
5079 struct hci_ev_logical_link_complete *ev = (void *) skb->data;
5080 struct hci_conn *hcon;
5081 struct hci_chan *hchan;
5082 struct amp_mgr *mgr;
5084 BT_DBG("%s log_handle 0x%4.4x phy_handle 0x%2.2x status 0x%2.2x",
5085 hdev->name, le16_to_cpu(ev->handle), ev->phy_handle,
5088 hcon = hci_conn_hash_lookup_handle(hdev, ev->phy_handle);
5092 /* Create AMP hchan */
5093 hchan = hci_chan_create(hcon);
5097 hchan->handle = le16_to_cpu(ev->handle);
5100 BT_DBG("hcon %p mgr %p hchan %p", hcon, hcon->amp_mgr, hchan);
5102 mgr = hcon->amp_mgr;
5103 if (mgr && mgr->bredr_chan) {
5104 struct l2cap_chan *bredr_chan = mgr->bredr_chan;
5106 l2cap_chan_lock(bredr_chan);
5108 bredr_chan->conn->mtu = hdev->block_mtu;
5109 l2cap_logical_cfm(bredr_chan, hchan, 0);
5110 hci_conn_hold(hcon);
5112 l2cap_chan_unlock(bredr_chan);
5116 static void hci_disconn_loglink_complete_evt(struct hci_dev *hdev,
5117 struct sk_buff *skb)
5119 struct hci_ev_disconn_logical_link_complete *ev = (void *) skb->data;
5120 struct hci_chan *hchan;
5122 BT_DBG("%s log handle 0x%4.4x status 0x%2.2x", hdev->name,
5123 le16_to_cpu(ev->handle), ev->status);
5130 hchan = hci_chan_lookup_handle(hdev, le16_to_cpu(ev->handle));
5131 if (!hchan || !hchan->amp)
5134 amp_destroy_logical_link(hchan, ev->reason);
5137 hci_dev_unlock(hdev);
5140 static void hci_disconn_phylink_complete_evt(struct hci_dev *hdev,
5141 struct sk_buff *skb)
5143 struct hci_ev_disconn_phy_link_complete *ev = (void *) skb->data;
5144 struct hci_conn *hcon;
5146 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
5153 hcon = hci_conn_hash_lookup_handle(hdev, ev->phy_handle);
5155 hcon->state = BT_CLOSED;
5159 hci_dev_unlock(hdev);
5163 static void le_conn_update_addr(struct hci_conn *conn, bdaddr_t *bdaddr,
5164 u8 bdaddr_type, bdaddr_t *local_rpa)
5167 conn->dst_type = bdaddr_type;
5168 conn->resp_addr_type = bdaddr_type;
5169 bacpy(&conn->resp_addr, bdaddr);
5171 /* Check if the controller has set a Local RPA then it must be
5172 * used instead or hdev->rpa.
5174 if (local_rpa && bacmp(local_rpa, BDADDR_ANY)) {
5175 conn->init_addr_type = ADDR_LE_DEV_RANDOM;
5176 bacpy(&conn->init_addr, local_rpa);
5177 } else if (hci_dev_test_flag(conn->hdev, HCI_PRIVACY)) {
5178 conn->init_addr_type = ADDR_LE_DEV_RANDOM;
5179 bacpy(&conn->init_addr, &conn->hdev->rpa);
5181 hci_copy_identity_address(conn->hdev, &conn->init_addr,
5182 &conn->init_addr_type);
5185 conn->resp_addr_type = conn->hdev->adv_addr_type;
5186 /* Check if the controller has set a Local RPA then it must be
5187 * used instead or hdev->rpa.
5189 if (local_rpa && bacmp(local_rpa, BDADDR_ANY)) {
5190 conn->resp_addr_type = ADDR_LE_DEV_RANDOM;
5191 bacpy(&conn->resp_addr, local_rpa);
5192 } else if (conn->hdev->adv_addr_type == ADDR_LE_DEV_RANDOM) {
5193 /* In case of ext adv, resp_addr will be updated in
5194 * Adv Terminated event.
5196 if (!ext_adv_capable(conn->hdev))
5197 bacpy(&conn->resp_addr,
5198 &conn->hdev->random_addr);
5200 bacpy(&conn->resp_addr, &conn->hdev->bdaddr);
5203 conn->init_addr_type = bdaddr_type;
5204 bacpy(&conn->init_addr, bdaddr);
5206 /* For incoming connections, set the default minimum
5207 * and maximum connection interval. They will be used
5208 * to check if the parameters are in range and if not
5209 * trigger the connection update procedure.
5211 conn->le_conn_min_interval = conn->hdev->le_conn_min_interval;
5212 conn->le_conn_max_interval = conn->hdev->le_conn_max_interval;
5216 static void le_conn_complete_evt(struct hci_dev *hdev, u8 status,
5217 bdaddr_t *bdaddr, u8 bdaddr_type,
5218 bdaddr_t *local_rpa, u8 role, u16 handle,
5219 u16 interval, u16 latency,
5220 u16 supervision_timeout)
5222 struct hci_conn_params *params;
5223 struct hci_conn *conn;
5224 struct smp_irk *irk;
5229 /* All controllers implicitly stop advertising in the event of a
5230 * connection, so ensure that the state bit is cleared.
5232 hci_dev_clear_flag(hdev, HCI_LE_ADV);
5234 conn = hci_lookup_le_connect(hdev);
5236 conn = hci_conn_add(hdev, LE_LINK, bdaddr, role);
5238 bt_dev_err(hdev, "no memory for new connection");
5242 conn->dst_type = bdaddr_type;
5244 /* If we didn't have a hci_conn object previously
5245 * but we're in central role this must be something
5246 * initiated using an accept list. Since accept list based
5247 * connections are not "first class citizens" we don't
5248 * have full tracking of them. Therefore, we go ahead
5249 * with a "best effort" approach of determining the
5250 * initiator address based on the HCI_PRIVACY flag.
5253 conn->resp_addr_type = bdaddr_type;
5254 bacpy(&conn->resp_addr, bdaddr);
5255 if (hci_dev_test_flag(hdev, HCI_PRIVACY)) {
5256 conn->init_addr_type = ADDR_LE_DEV_RANDOM;
5257 bacpy(&conn->init_addr, &hdev->rpa);
5259 hci_copy_identity_address(hdev,
5261 &conn->init_addr_type);
5265 cancel_delayed_work(&conn->le_conn_timeout);
5268 le_conn_update_addr(conn, bdaddr, bdaddr_type, local_rpa);
5270 /* Lookup the identity address from the stored connection
5271 * address and address type.
5273 * When establishing connections to an identity address, the
5274 * connection procedure will store the resolvable random
5275 * address first. Now if it can be converted back into the
5276 * identity address, start using the identity address from
5279 irk = hci_get_irk(hdev, &conn->dst, conn->dst_type);
5281 bacpy(&conn->dst, &irk->bdaddr);
5282 conn->dst_type = irk->addr_type;
5285 /* When using controller based address resolution, then the new
5286 * address types 0x02 and 0x03 are used. These types need to be
5287 * converted back into either public address or random address type
5289 if (use_ll_privacy(hdev) &&
5290 hci_dev_test_flag(hdev, HCI_ENABLE_LL_PRIVACY) &&
5291 hci_dev_test_flag(hdev, HCI_LL_RPA_RESOLUTION)) {
5292 switch (conn->dst_type) {
5293 case ADDR_LE_DEV_PUBLIC_RESOLVED:
5294 conn->dst_type = ADDR_LE_DEV_PUBLIC;
5296 case ADDR_LE_DEV_RANDOM_RESOLVED:
5297 conn->dst_type = ADDR_LE_DEV_RANDOM;
5303 hci_le_conn_failed(conn, status);
5307 if (conn->dst_type == ADDR_LE_DEV_PUBLIC)
5308 addr_type = BDADDR_LE_PUBLIC;
5310 addr_type = BDADDR_LE_RANDOM;
5312 /* Drop the connection if the device is blocked */
5313 if (hci_bdaddr_list_lookup(&hdev->reject_list, &conn->dst, addr_type)) {
5314 hci_conn_drop(conn);
5318 if (!test_and_set_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags))
5319 mgmt_device_connected(hdev, conn, NULL, 0);
5321 conn->sec_level = BT_SECURITY_LOW;
5322 conn->handle = handle;
5323 conn->state = BT_CONFIG;
5325 /* Store current advertising instance as connection advertising instance
5326 * when sotfware rotation is in use so it can be re-enabled when
5329 if (!ext_adv_capable(hdev))
5330 conn->adv_instance = hdev->cur_adv_instance;
5332 conn->le_conn_interval = interval;
5333 conn->le_conn_latency = latency;
5334 conn->le_supv_timeout = supervision_timeout;
5336 hci_debugfs_create_conn(conn);
5337 hci_conn_add_sysfs(conn);
5339 /* The remote features procedure is defined for central
5340 * role only. So only in case of an initiated connection
5341 * request the remote features.
5343 * If the local controller supports peripheral-initiated features
5344 * exchange, then requesting the remote features in peripheral
5345 * role is possible. Otherwise just transition into the
5346 * connected state without requesting the remote features.
5349 (hdev->le_features[0] & HCI_LE_PERIPHERAL_FEATURES)) {
5350 struct hci_cp_le_read_remote_features cp;
5352 cp.handle = __cpu_to_le16(conn->handle);
5354 hci_send_cmd(hdev, HCI_OP_LE_READ_REMOTE_FEATURES,
5357 hci_conn_hold(conn);
5359 conn->state = BT_CONNECTED;
5360 hci_connect_cfm(conn, status);
5363 params = hci_pend_le_action_lookup(&hdev->pend_le_conns, &conn->dst,
5366 list_del_init(¶ms->action);
5368 hci_conn_drop(params->conn);
5369 hci_conn_put(params->conn);
5370 params->conn = NULL;
5375 hci_update_background_scan(hdev);
5376 hci_dev_unlock(hdev);
5379 static void hci_le_conn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
5381 struct hci_ev_le_conn_complete *ev = (void *) skb->data;
5383 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
5385 le_conn_complete_evt(hdev, ev->status, &ev->bdaddr, ev->bdaddr_type,
5386 NULL, ev->role, le16_to_cpu(ev->handle),
5387 le16_to_cpu(ev->interval),
5388 le16_to_cpu(ev->latency),
5389 le16_to_cpu(ev->supervision_timeout));
5392 static void hci_le_enh_conn_complete_evt(struct hci_dev *hdev,
5393 struct sk_buff *skb)
5395 struct hci_ev_le_enh_conn_complete *ev = (void *) skb->data;
5397 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
5399 le_conn_complete_evt(hdev, ev->status, &ev->bdaddr, ev->bdaddr_type,
5400 &ev->local_rpa, ev->role, le16_to_cpu(ev->handle),
5401 le16_to_cpu(ev->interval),
5402 le16_to_cpu(ev->latency),
5403 le16_to_cpu(ev->supervision_timeout));
5405 if (use_ll_privacy(hdev) &&
5406 hci_dev_test_flag(hdev, HCI_ENABLE_LL_PRIVACY) &&
5407 hci_dev_test_flag(hdev, HCI_LL_RPA_RESOLUTION))
5408 hci_req_disable_address_resolution(hdev);
5411 static void hci_le_ext_adv_term_evt(struct hci_dev *hdev, struct sk_buff *skb)
5413 struct hci_evt_le_ext_adv_set_term *ev = (void *) skb->data;
5414 struct hci_conn *conn;
5415 struct adv_info *adv;
5417 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
5419 adv = hci_find_adv_instance(hdev, ev->handle);
5425 /* Remove advertising as it has been terminated */
5426 hci_remove_adv_instance(hdev, ev->handle);
5427 mgmt_advertising_removed(NULL, hdev, ev->handle);
5433 adv->enabled = false;
5435 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->conn_handle));
5437 /* Store handle in the connection so the correct advertising
5438 * instance can be re-enabled when disconnected.
5440 conn->adv_instance = ev->handle;
5442 if (hdev->adv_addr_type != ADDR_LE_DEV_RANDOM ||
5443 bacmp(&conn->resp_addr, BDADDR_ANY))
5447 bacpy(&conn->resp_addr, &hdev->random_addr);
5452 bacpy(&conn->resp_addr, &adv->random_addr);
5456 static void hci_le_conn_update_complete_evt(struct hci_dev *hdev,
5457 struct sk_buff *skb)
5459 struct hci_ev_le_conn_update_complete *ev = (void *) skb->data;
5460 struct hci_conn *conn;
5462 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
5469 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
5471 conn->le_conn_interval = le16_to_cpu(ev->interval);
5472 conn->le_conn_latency = le16_to_cpu(ev->latency);
5473 conn->le_supv_timeout = le16_to_cpu(ev->supervision_timeout);
5476 hci_dev_unlock(hdev);
5479 /* This function requires the caller holds hdev->lock */
5480 static struct hci_conn *check_pending_le_conn(struct hci_dev *hdev,
5482 u8 addr_type, u8 adv_type,
5483 bdaddr_t *direct_rpa)
5485 struct hci_conn *conn;
5486 struct hci_conn_params *params;
5488 /* If the event is not connectable don't proceed further */
5489 if (adv_type != LE_ADV_IND && adv_type != LE_ADV_DIRECT_IND)
5492 /* Ignore if the device is blocked */
5493 if (hci_bdaddr_list_lookup(&hdev->reject_list, addr, addr_type))
5496 /* Most controller will fail if we try to create new connections
5497 * while we have an existing one in peripheral role.
5499 if (hdev->conn_hash.le_num_peripheral > 0 &&
5500 (!test_bit(HCI_QUIRK_VALID_LE_STATES, &hdev->quirks) ||
5501 !(hdev->le_states[3] & 0x10)))
5504 /* If we're not connectable only connect devices that we have in
5505 * our pend_le_conns list.
5507 params = hci_pend_le_action_lookup(&hdev->pend_le_conns, addr,
5512 if (!params->explicit_connect) {
5513 switch (params->auto_connect) {
5514 case HCI_AUTO_CONN_DIRECT:
5515 /* Only devices advertising with ADV_DIRECT_IND are
5516 * triggering a connection attempt. This is allowing
5517 * incoming connections from peripheral devices.
5519 if (adv_type != LE_ADV_DIRECT_IND)
5522 case HCI_AUTO_CONN_ALWAYS:
5523 /* Devices advertising with ADV_IND or ADV_DIRECT_IND
5524 * are triggering a connection attempt. This means
5525 * that incoming connections from peripheral device are
5526 * accepted and also outgoing connections to peripheral
5527 * devices are established when found.
5535 conn = hci_connect_le(hdev, addr, addr_type, BT_SECURITY_LOW,
5536 hdev->def_le_autoconnect_timeout, HCI_ROLE_MASTER,
5538 if (!IS_ERR(conn)) {
5539 /* If HCI_AUTO_CONN_EXPLICIT is set, conn is already owned
5540 * by higher layer that tried to connect, if no then
5541 * store the pointer since we don't really have any
5542 * other owner of the object besides the params that
5543 * triggered it. This way we can abort the connection if
5544 * the parameters get removed and keep the reference
5545 * count consistent once the connection is established.
5548 if (!params->explicit_connect)
5549 params->conn = hci_conn_get(conn);
5554 switch (PTR_ERR(conn)) {
5556 /* If hci_connect() returns -EBUSY it means there is already
5557 * an LE connection attempt going on. Since controllers don't
5558 * support more than one connection attempt at the time, we
5559 * don't consider this an error case.
5563 BT_DBG("Failed to connect: err %ld", PTR_ERR(conn));
5570 static void process_adv_report(struct hci_dev *hdev, u8 type, bdaddr_t *bdaddr,
5571 u8 bdaddr_type, bdaddr_t *direct_addr,
5572 u8 direct_addr_type, s8 rssi, u8 *data, u8 len,
5575 struct discovery_state *d = &hdev->discovery;
5576 struct smp_irk *irk;
5577 struct hci_conn *conn;
5584 case LE_ADV_DIRECT_IND:
5585 case LE_ADV_SCAN_IND:
5586 case LE_ADV_NONCONN_IND:
5587 case LE_ADV_SCAN_RSP:
5590 bt_dev_err_ratelimited(hdev, "unknown advertising packet "
5591 "type: 0x%02x", type);
5595 if (!ext_adv && len > HCI_MAX_AD_LENGTH) {
5596 bt_dev_err_ratelimited(hdev, "legacy adv larger than 31 bytes");
5600 /* Find the end of the data in case the report contains padded zero
5601 * bytes at the end causing an invalid length value.
5603 * When data is NULL, len is 0 so there is no need for extra ptr
5604 * check as 'ptr < data + 0' is already false in such case.
5606 for (ptr = data; ptr < data + len && *ptr; ptr += *ptr + 1) {
5607 if (ptr + 1 + *ptr > data + len)
5611 /* Adjust for actual length. This handles the case when remote
5612 * device is advertising with incorrect data length.
5616 /* If the direct address is present, then this report is from
5617 * a LE Direct Advertising Report event. In that case it is
5618 * important to see if the address is matching the local
5619 * controller address.
5622 /* Only resolvable random addresses are valid for these
5623 * kind of reports and others can be ignored.
5625 if (!hci_bdaddr_is_rpa(direct_addr, direct_addr_type))
5628 /* If the controller is not using resolvable random
5629 * addresses, then this report can be ignored.
5631 if (!hci_dev_test_flag(hdev, HCI_PRIVACY))
5634 /* If the local IRK of the controller does not match
5635 * with the resolvable random address provided, then
5636 * this report can be ignored.
5638 if (!smp_irk_matches(hdev, hdev->irk, direct_addr))
5642 /* Check if we need to convert to identity address */
5643 irk = hci_get_irk(hdev, bdaddr, bdaddr_type);
5645 bdaddr = &irk->bdaddr;
5646 bdaddr_type = irk->addr_type;
5649 /* Check if we have been requested to connect to this device.
5651 * direct_addr is set only for directed advertising reports (it is NULL
5652 * for advertising reports) and is already verified to be RPA above.
5654 conn = check_pending_le_conn(hdev, bdaddr, bdaddr_type, type,
5656 if (!ext_adv && conn && type == LE_ADV_IND && len <= HCI_MAX_AD_LENGTH) {
5657 /* Store report for later inclusion by
5658 * mgmt_device_connected
5660 memcpy(conn->le_adv_data, data, len);
5661 conn->le_adv_data_len = len;
5664 /* Passive scanning shouldn't trigger any device found events,
5665 * except for devices marked as CONN_REPORT for which we do send
5666 * device found events, or advertisement monitoring requested.
5668 if (hdev->le_scan_type == LE_SCAN_PASSIVE) {
5669 if (type == LE_ADV_DIRECT_IND)
5672 if (!hci_pend_le_action_lookup(&hdev->pend_le_reports,
5673 bdaddr, bdaddr_type) &&
5674 idr_is_empty(&hdev->adv_monitors_idr))
5677 if (type == LE_ADV_NONCONN_IND || type == LE_ADV_SCAN_IND)
5678 flags = MGMT_DEV_FOUND_NOT_CONNECTABLE;
5681 mgmt_device_found(hdev, bdaddr, LE_LINK, bdaddr_type, NULL,
5682 rssi, flags, data, len, NULL, 0);
5686 /* When receiving non-connectable or scannable undirected
5687 * advertising reports, this means that the remote device is
5688 * not connectable and then clearly indicate this in the
5689 * device found event.
5691 * When receiving a scan response, then there is no way to
5692 * know if the remote device is connectable or not. However
5693 * since scan responses are merged with a previously seen
5694 * advertising report, the flags field from that report
5697 * In the really unlikely case that a controller get confused
5698 * and just sends a scan response event, then it is marked as
5699 * not connectable as well.
5701 if (type == LE_ADV_NONCONN_IND || type == LE_ADV_SCAN_IND ||
5702 type == LE_ADV_SCAN_RSP)
5703 flags = MGMT_DEV_FOUND_NOT_CONNECTABLE;
5707 /* If there's nothing pending either store the data from this
5708 * event or send an immediate device found event if the data
5709 * should not be stored for later.
5711 if (!ext_adv && !has_pending_adv_report(hdev)) {
5712 /* If the report will trigger a SCAN_REQ store it for
5715 if (type == LE_ADV_IND || type == LE_ADV_SCAN_IND) {
5716 store_pending_adv_report(hdev, bdaddr, bdaddr_type,
5717 rssi, flags, data, len);
5721 mgmt_device_found(hdev, bdaddr, LE_LINK, bdaddr_type, NULL,
5722 rssi, flags, data, len, NULL, 0);
5726 /* Check if the pending report is for the same device as the new one */
5727 match = (!bacmp(bdaddr, &d->last_adv_addr) &&
5728 bdaddr_type == d->last_adv_addr_type);
5730 /* If the pending data doesn't match this report or this isn't a
5731 * scan response (e.g. we got a duplicate ADV_IND) then force
5732 * sending of the pending data.
5734 if (type != LE_ADV_SCAN_RSP || !match) {
5735 /* Send out whatever is in the cache, but skip duplicates */
5737 mgmt_device_found(hdev, &d->last_adv_addr, LE_LINK,
5738 d->last_adv_addr_type, NULL,
5739 d->last_adv_rssi, d->last_adv_flags,
5741 d->last_adv_data_len, NULL, 0);
5743 /* If the new report will trigger a SCAN_REQ store it for
5746 if (!ext_adv && (type == LE_ADV_IND ||
5747 type == LE_ADV_SCAN_IND)) {
5748 store_pending_adv_report(hdev, bdaddr, bdaddr_type,
5749 rssi, flags, data, len);
5753 /* The advertising reports cannot be merged, so clear
5754 * the pending report and send out a device found event.
5756 clear_pending_adv_report(hdev);
5757 mgmt_device_found(hdev, bdaddr, LE_LINK, bdaddr_type, NULL,
5758 rssi, flags, data, len, NULL, 0);
5762 /* If we get here we've got a pending ADV_IND or ADV_SCAN_IND and
5763 * the new event is a SCAN_RSP. We can therefore proceed with
5764 * sending a merged device found event.
5766 mgmt_device_found(hdev, &d->last_adv_addr, LE_LINK,
5767 d->last_adv_addr_type, NULL, rssi, d->last_adv_flags,
5768 d->last_adv_data, d->last_adv_data_len, data, len);
5769 clear_pending_adv_report(hdev);
5772 static void hci_le_adv_report_evt(struct hci_dev *hdev, struct sk_buff *skb)
5774 u8 num_reports = skb->data[0];
5775 void *ptr = &skb->data[1];
5779 while (num_reports--) {
5780 struct hci_ev_le_advertising_info *ev = ptr;
5783 if (ev->length <= HCI_MAX_AD_LENGTH) {
5784 rssi = ev->data[ev->length];
5785 process_adv_report(hdev, ev->evt_type, &ev->bdaddr,
5786 ev->bdaddr_type, NULL, 0, rssi,
5787 ev->data, ev->length, false);
5789 bt_dev_err(hdev, "Dropping invalid advertising data");
5792 ptr += sizeof(*ev) + ev->length + 1;
5795 hci_dev_unlock(hdev);
5798 static u8 ext_evt_type_to_legacy(struct hci_dev *hdev, u16 evt_type)
5800 if (evt_type & LE_EXT_ADV_LEGACY_PDU) {
5802 case LE_LEGACY_ADV_IND:
5804 case LE_LEGACY_ADV_DIRECT_IND:
5805 return LE_ADV_DIRECT_IND;
5806 case LE_LEGACY_ADV_SCAN_IND:
5807 return LE_ADV_SCAN_IND;
5808 case LE_LEGACY_NONCONN_IND:
5809 return LE_ADV_NONCONN_IND;
5810 case LE_LEGACY_SCAN_RSP_ADV:
5811 case LE_LEGACY_SCAN_RSP_ADV_SCAN:
5812 return LE_ADV_SCAN_RSP;
5818 if (evt_type & LE_EXT_ADV_CONN_IND) {
5819 if (evt_type & LE_EXT_ADV_DIRECT_IND)
5820 return LE_ADV_DIRECT_IND;
5825 if (evt_type & LE_EXT_ADV_SCAN_RSP)
5826 return LE_ADV_SCAN_RSP;
5828 if (evt_type & LE_EXT_ADV_SCAN_IND)
5829 return LE_ADV_SCAN_IND;
5831 if (evt_type == LE_EXT_ADV_NON_CONN_IND ||
5832 evt_type & LE_EXT_ADV_DIRECT_IND)
5833 return LE_ADV_NONCONN_IND;
5836 bt_dev_err_ratelimited(hdev, "Unknown advertising packet type: 0x%02x",
5839 return LE_ADV_INVALID;
5842 static void hci_le_ext_adv_report_evt(struct hci_dev *hdev, struct sk_buff *skb)
5844 u8 num_reports = skb->data[0];
5845 void *ptr = &skb->data[1];
5849 while (num_reports--) {
5850 struct hci_ev_le_ext_adv_report *ev = ptr;
5854 evt_type = __le16_to_cpu(ev->evt_type);
5855 legacy_evt_type = ext_evt_type_to_legacy(hdev, evt_type);
5856 if (legacy_evt_type != LE_ADV_INVALID) {
5857 process_adv_report(hdev, legacy_evt_type, &ev->bdaddr,
5858 ev->bdaddr_type, NULL, 0, ev->rssi,
5859 ev->data, ev->length,
5860 !(evt_type & LE_EXT_ADV_LEGACY_PDU));
5863 ptr += sizeof(*ev) + ev->length;
5866 hci_dev_unlock(hdev);
5869 static void hci_le_remote_feat_complete_evt(struct hci_dev *hdev,
5870 struct sk_buff *skb)
5872 struct hci_ev_le_remote_feat_complete *ev = (void *)skb->data;
5873 struct hci_conn *conn;
5875 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
5879 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
5882 memcpy(conn->features[0], ev->features, 8);
5884 if (conn->state == BT_CONFIG) {
5887 /* If the local controller supports peripheral-initiated
5888 * features exchange, but the remote controller does
5889 * not, then it is possible that the error code 0x1a
5890 * for unsupported remote feature gets returned.
5892 * In this specific case, allow the connection to
5893 * transition into connected state and mark it as
5896 if (!conn->out && ev->status == 0x1a &&
5897 (hdev->le_features[0] & HCI_LE_PERIPHERAL_FEATURES))
5900 status = ev->status;
5902 conn->state = BT_CONNECTED;
5903 hci_connect_cfm(conn, status);
5904 hci_conn_drop(conn);
5908 hci_dev_unlock(hdev);
5911 static void hci_le_ltk_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
5913 struct hci_ev_le_ltk_req *ev = (void *) skb->data;
5914 struct hci_cp_le_ltk_reply cp;
5915 struct hci_cp_le_ltk_neg_reply neg;
5916 struct hci_conn *conn;
5917 struct smp_ltk *ltk;
5919 BT_DBG("%s handle 0x%4.4x", hdev->name, __le16_to_cpu(ev->handle));
5923 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
5927 ltk = hci_find_ltk(hdev, &conn->dst, conn->dst_type, conn->role);
5931 if (smp_ltk_is_sc(ltk)) {
5932 /* With SC both EDiv and Rand are set to zero */
5933 if (ev->ediv || ev->rand)
5936 /* For non-SC keys check that EDiv and Rand match */
5937 if (ev->ediv != ltk->ediv || ev->rand != ltk->rand)
5941 memcpy(cp.ltk, ltk->val, ltk->enc_size);
5942 memset(cp.ltk + ltk->enc_size, 0, sizeof(cp.ltk) - ltk->enc_size);
5943 cp.handle = cpu_to_le16(conn->handle);
5945 conn->pending_sec_level = smp_ltk_sec_level(ltk);
5947 conn->enc_key_size = ltk->enc_size;
5949 hci_send_cmd(hdev, HCI_OP_LE_LTK_REPLY, sizeof(cp), &cp);
5951 /* Ref. Bluetooth Core SPEC pages 1975 and 2004. STK is a
5952 * temporary key used to encrypt a connection following
5953 * pairing. It is used during the Encrypted Session Setup to
5954 * distribute the keys. Later, security can be re-established
5955 * using a distributed LTK.
5957 if (ltk->type == SMP_STK) {
5958 set_bit(HCI_CONN_STK_ENCRYPT, &conn->flags);
5959 list_del_rcu(<k->list);
5960 kfree_rcu(ltk, rcu);
5962 clear_bit(HCI_CONN_STK_ENCRYPT, &conn->flags);
5965 hci_dev_unlock(hdev);
5970 neg.handle = ev->handle;
5971 hci_send_cmd(hdev, HCI_OP_LE_LTK_NEG_REPLY, sizeof(neg), &neg);
5972 hci_dev_unlock(hdev);
5975 static void send_conn_param_neg_reply(struct hci_dev *hdev, u16 handle,
5978 struct hci_cp_le_conn_param_req_neg_reply cp;
5980 cp.handle = cpu_to_le16(handle);
5983 hci_send_cmd(hdev, HCI_OP_LE_CONN_PARAM_REQ_NEG_REPLY, sizeof(cp),
5987 static void hci_le_remote_conn_param_req_evt(struct hci_dev *hdev,
5988 struct sk_buff *skb)
5990 struct hci_ev_le_remote_conn_param_req *ev = (void *) skb->data;
5991 struct hci_cp_le_conn_param_req_reply cp;
5992 struct hci_conn *hcon;
5993 u16 handle, min, max, latency, timeout;
5995 handle = le16_to_cpu(ev->handle);
5996 min = le16_to_cpu(ev->interval_min);
5997 max = le16_to_cpu(ev->interval_max);
5998 latency = le16_to_cpu(ev->latency);
5999 timeout = le16_to_cpu(ev->timeout);
6001 hcon = hci_conn_hash_lookup_handle(hdev, handle);
6002 if (!hcon || hcon->state != BT_CONNECTED)
6003 return send_conn_param_neg_reply(hdev, handle,
6004 HCI_ERROR_UNKNOWN_CONN_ID);
6006 if (hci_check_conn_params(min, max, latency, timeout))
6007 return send_conn_param_neg_reply(hdev, handle,
6008 HCI_ERROR_INVALID_LL_PARAMS);
6010 if (hcon->role == HCI_ROLE_MASTER) {
6011 struct hci_conn_params *params;
6016 params = hci_conn_params_lookup(hdev, &hcon->dst,
6019 params->conn_min_interval = min;
6020 params->conn_max_interval = max;
6021 params->conn_latency = latency;
6022 params->supervision_timeout = timeout;
6028 hci_dev_unlock(hdev);
6030 mgmt_new_conn_param(hdev, &hcon->dst, hcon->dst_type,
6031 store_hint, min, max, latency, timeout);
6034 cp.handle = ev->handle;
6035 cp.interval_min = ev->interval_min;
6036 cp.interval_max = ev->interval_max;
6037 cp.latency = ev->latency;
6038 cp.timeout = ev->timeout;
6042 hci_send_cmd(hdev, HCI_OP_LE_CONN_PARAM_REQ_REPLY, sizeof(cp), &cp);
6045 static void hci_le_direct_adv_report_evt(struct hci_dev *hdev,
6046 struct sk_buff *skb)
6048 u8 num_reports = skb->data[0];
6049 struct hci_ev_le_direct_adv_info *ev = (void *)&skb->data[1];
6051 if (!num_reports || skb->len < num_reports * sizeof(*ev) + 1)
6056 for (; num_reports; num_reports--, ev++)
6057 process_adv_report(hdev, ev->evt_type, &ev->bdaddr,
6058 ev->bdaddr_type, &ev->direct_addr,
6059 ev->direct_addr_type, ev->rssi, NULL, 0,
6062 hci_dev_unlock(hdev);
6065 static void hci_le_phy_update_evt(struct hci_dev *hdev, struct sk_buff *skb)
6067 struct hci_ev_le_phy_update_complete *ev = (void *) skb->data;
6068 struct hci_conn *conn;
6070 BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
6077 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
6081 conn->le_tx_phy = ev->tx_phy;
6082 conn->le_rx_phy = ev->rx_phy;
6085 hci_dev_unlock(hdev);
6088 static void hci_le_meta_evt(struct hci_dev *hdev, struct sk_buff *skb)
6090 struct hci_ev_le_meta *le_ev = (void *) skb->data;
6092 skb_pull(skb, sizeof(*le_ev));
6094 switch (le_ev->subevent) {
6095 case HCI_EV_LE_CONN_COMPLETE:
6096 hci_le_conn_complete_evt(hdev, skb);
6099 case HCI_EV_LE_CONN_UPDATE_COMPLETE:
6100 hci_le_conn_update_complete_evt(hdev, skb);
6103 case HCI_EV_LE_ADVERTISING_REPORT:
6104 hci_le_adv_report_evt(hdev, skb);
6107 case HCI_EV_LE_REMOTE_FEAT_COMPLETE:
6108 hci_le_remote_feat_complete_evt(hdev, skb);
6111 case HCI_EV_LE_LTK_REQ:
6112 hci_le_ltk_request_evt(hdev, skb);
6115 case HCI_EV_LE_REMOTE_CONN_PARAM_REQ:
6116 hci_le_remote_conn_param_req_evt(hdev, skb);
6119 case HCI_EV_LE_DIRECT_ADV_REPORT:
6120 hci_le_direct_adv_report_evt(hdev, skb);
6123 case HCI_EV_LE_PHY_UPDATE_COMPLETE:
6124 hci_le_phy_update_evt(hdev, skb);
6127 case HCI_EV_LE_EXT_ADV_REPORT:
6128 hci_le_ext_adv_report_evt(hdev, skb);
6131 case HCI_EV_LE_ENHANCED_CONN_COMPLETE:
6132 hci_le_enh_conn_complete_evt(hdev, skb);
6135 case HCI_EV_LE_EXT_ADV_SET_TERM:
6136 hci_le_ext_adv_term_evt(hdev, skb);
6144 static bool hci_get_cmd_complete(struct hci_dev *hdev, u16 opcode,
6145 u8 event, struct sk_buff *skb)
6147 struct hci_ev_cmd_complete *ev;
6148 struct hci_event_hdr *hdr;
6153 if (skb->len < sizeof(*hdr)) {
6154 bt_dev_err(hdev, "too short HCI event");
6158 hdr = (void *) skb->data;
6159 skb_pull(skb, HCI_EVENT_HDR_SIZE);
6162 if (hdr->evt != event)
6167 /* Check if request ended in Command Status - no way to retrieve
6168 * any extra parameters in this case.
6170 if (hdr->evt == HCI_EV_CMD_STATUS)
6173 if (hdr->evt != HCI_EV_CMD_COMPLETE) {
6174 bt_dev_err(hdev, "last event is not cmd complete (0x%2.2x)",
6179 if (skb->len < sizeof(*ev)) {
6180 bt_dev_err(hdev, "too short cmd_complete event");
6184 ev = (void *) skb->data;
6185 skb_pull(skb, sizeof(*ev));
6187 if (opcode != __le16_to_cpu(ev->opcode)) {
6188 BT_DBG("opcode doesn't match (0x%2.2x != 0x%2.2x)", opcode,
6189 __le16_to_cpu(ev->opcode));
6196 static void hci_store_wake_reason(struct hci_dev *hdev, u8 event,
6197 struct sk_buff *skb)
6199 struct hci_ev_le_advertising_info *adv;
6200 struct hci_ev_le_direct_adv_info *direct_adv;
6201 struct hci_ev_le_ext_adv_report *ext_adv;
6202 const struct hci_ev_conn_complete *conn_complete = (void *)skb->data;
6203 const struct hci_ev_conn_request *conn_request = (void *)skb->data;
6207 /* If we are currently suspended and this is the first BT event seen,
6208 * save the wake reason associated with the event.
6210 if (!hdev->suspended || hdev->wake_reason)
6213 /* Default to remote wake. Values for wake_reason are documented in the
6214 * Bluez mgmt api docs.
6216 hdev->wake_reason = MGMT_WAKE_REASON_REMOTE_WAKE;
6218 /* Once configured for remote wakeup, we should only wake up for
6219 * reconnections. It's useful to see which device is waking us up so
6220 * keep track of the bdaddr of the connection event that woke us up.
6222 if (event == HCI_EV_CONN_REQUEST) {
6223 bacpy(&hdev->wake_addr, &conn_complete->bdaddr);
6224 hdev->wake_addr_type = BDADDR_BREDR;
6225 } else if (event == HCI_EV_CONN_COMPLETE) {
6226 bacpy(&hdev->wake_addr, &conn_request->bdaddr);
6227 hdev->wake_addr_type = BDADDR_BREDR;
6228 } else if (event == HCI_EV_LE_META) {
6229 struct hci_ev_le_meta *le_ev = (void *)skb->data;
6230 u8 subevent = le_ev->subevent;
6231 u8 *ptr = &skb->data[sizeof(*le_ev)];
6232 u8 num_reports = *ptr;
6234 if ((subevent == HCI_EV_LE_ADVERTISING_REPORT ||
6235 subevent == HCI_EV_LE_DIRECT_ADV_REPORT ||
6236 subevent == HCI_EV_LE_EXT_ADV_REPORT) &&
6238 adv = (void *)(ptr + 1);
6239 direct_adv = (void *)(ptr + 1);
6240 ext_adv = (void *)(ptr + 1);
6243 case HCI_EV_LE_ADVERTISING_REPORT:
6244 bacpy(&hdev->wake_addr, &adv->bdaddr);
6245 hdev->wake_addr_type = adv->bdaddr_type;
6247 case HCI_EV_LE_DIRECT_ADV_REPORT:
6248 bacpy(&hdev->wake_addr, &direct_adv->bdaddr);
6249 hdev->wake_addr_type = direct_adv->bdaddr_type;
6251 case HCI_EV_LE_EXT_ADV_REPORT:
6252 bacpy(&hdev->wake_addr, &ext_adv->bdaddr);
6253 hdev->wake_addr_type = ext_adv->bdaddr_type;
6258 hdev->wake_reason = MGMT_WAKE_REASON_UNEXPECTED;
6262 hci_dev_unlock(hdev);
6265 void hci_event_packet(struct hci_dev *hdev, struct sk_buff *skb)
6267 struct hci_event_hdr *hdr = (void *) skb->data;
6268 hci_req_complete_t req_complete = NULL;
6269 hci_req_complete_skb_t req_complete_skb = NULL;
6270 struct sk_buff *orig_skb = NULL;
6271 u8 status = 0, event = hdr->evt, req_evt = 0;
6272 u16 opcode = HCI_OP_NOP;
6275 bt_dev_warn(hdev, "Received unexpected HCI Event 00000000");
6279 if (hdev->sent_cmd && bt_cb(hdev->sent_cmd)->hci.req_event == event) {
6280 struct hci_command_hdr *cmd_hdr = (void *) hdev->sent_cmd->data;
6281 opcode = __le16_to_cpu(cmd_hdr->opcode);
6282 hci_req_cmd_complete(hdev, opcode, status, &req_complete,
6287 /* If it looks like we might end up having to call
6288 * req_complete_skb, store a pristine copy of the skb since the
6289 * various handlers may modify the original one through
6290 * skb_pull() calls, etc.
6292 if (req_complete_skb || event == HCI_EV_CMD_STATUS ||
6293 event == HCI_EV_CMD_COMPLETE)
6294 orig_skb = skb_clone(skb, GFP_KERNEL);
6296 skb_pull(skb, HCI_EVENT_HDR_SIZE);
6298 /* Store wake reason if we're suspended */
6299 hci_store_wake_reason(hdev, event, skb);
6302 case HCI_EV_INQUIRY_COMPLETE:
6303 hci_inquiry_complete_evt(hdev, skb);
6306 case HCI_EV_INQUIRY_RESULT:
6307 hci_inquiry_result_evt(hdev, skb);
6310 case HCI_EV_CONN_COMPLETE:
6311 hci_conn_complete_evt(hdev, skb);
6314 case HCI_EV_CONN_REQUEST:
6315 hci_conn_request_evt(hdev, skb);
6318 case HCI_EV_DISCONN_COMPLETE:
6319 hci_disconn_complete_evt(hdev, skb);
6322 case HCI_EV_AUTH_COMPLETE:
6323 hci_auth_complete_evt(hdev, skb);
6326 case HCI_EV_REMOTE_NAME:
6327 hci_remote_name_evt(hdev, skb);
6330 case HCI_EV_ENCRYPT_CHANGE:
6331 hci_encrypt_change_evt(hdev, skb);
6334 case HCI_EV_CHANGE_LINK_KEY_COMPLETE:
6335 hci_change_link_key_complete_evt(hdev, skb);
6338 case HCI_EV_REMOTE_FEATURES:
6339 hci_remote_features_evt(hdev, skb);
6342 case HCI_EV_CMD_COMPLETE:
6343 hci_cmd_complete_evt(hdev, skb, &opcode, &status,
6344 &req_complete, &req_complete_skb);
6347 case HCI_EV_CMD_STATUS:
6348 hci_cmd_status_evt(hdev, skb, &opcode, &status, &req_complete,
6352 case HCI_EV_HARDWARE_ERROR:
6353 hci_hardware_error_evt(hdev, skb);
6356 case HCI_EV_ROLE_CHANGE:
6357 hci_role_change_evt(hdev, skb);
6360 case HCI_EV_NUM_COMP_PKTS:
6361 hci_num_comp_pkts_evt(hdev, skb);
6364 case HCI_EV_MODE_CHANGE:
6365 hci_mode_change_evt(hdev, skb);
6368 case HCI_EV_PIN_CODE_REQ:
6369 hci_pin_code_request_evt(hdev, skb);
6372 case HCI_EV_LINK_KEY_REQ:
6373 hci_link_key_request_evt(hdev, skb);
6376 case HCI_EV_LINK_KEY_NOTIFY:
6377 hci_link_key_notify_evt(hdev, skb);
6380 case HCI_EV_CLOCK_OFFSET:
6381 hci_clock_offset_evt(hdev, skb);
6384 case HCI_EV_PKT_TYPE_CHANGE:
6385 hci_pkt_type_change_evt(hdev, skb);
6388 case HCI_EV_PSCAN_REP_MODE:
6389 hci_pscan_rep_mode_evt(hdev, skb);
6392 case HCI_EV_INQUIRY_RESULT_WITH_RSSI:
6393 hci_inquiry_result_with_rssi_evt(hdev, skb);
6396 case HCI_EV_REMOTE_EXT_FEATURES:
6397 hci_remote_ext_features_evt(hdev, skb);
6400 case HCI_EV_SYNC_CONN_COMPLETE:
6401 hci_sync_conn_complete_evt(hdev, skb);
6404 case HCI_EV_EXTENDED_INQUIRY_RESULT:
6405 hci_extended_inquiry_result_evt(hdev, skb);
6408 case HCI_EV_KEY_REFRESH_COMPLETE:
6409 hci_key_refresh_complete_evt(hdev, skb);
6412 case HCI_EV_IO_CAPA_REQUEST:
6413 hci_io_capa_request_evt(hdev, skb);
6416 case HCI_EV_IO_CAPA_REPLY:
6417 hci_io_capa_reply_evt(hdev, skb);
6420 case HCI_EV_USER_CONFIRM_REQUEST:
6421 hci_user_confirm_request_evt(hdev, skb);
6424 case HCI_EV_USER_PASSKEY_REQUEST:
6425 hci_user_passkey_request_evt(hdev, skb);
6428 case HCI_EV_USER_PASSKEY_NOTIFY:
6429 hci_user_passkey_notify_evt(hdev, skb);
6432 case HCI_EV_KEYPRESS_NOTIFY:
6433 hci_keypress_notify_evt(hdev, skb);
6436 case HCI_EV_SIMPLE_PAIR_COMPLETE:
6437 hci_simple_pair_complete_evt(hdev, skb);
6440 case HCI_EV_REMOTE_HOST_FEATURES:
6441 hci_remote_host_features_evt(hdev, skb);
6444 case HCI_EV_LE_META:
6445 hci_le_meta_evt(hdev, skb);
6448 case HCI_EV_REMOTE_OOB_DATA_REQUEST:
6449 hci_remote_oob_data_request_evt(hdev, skb);
6452 #if IS_ENABLED(CONFIG_BT_HS)
6453 case HCI_EV_CHANNEL_SELECTED:
6454 hci_chan_selected_evt(hdev, skb);
6457 case HCI_EV_PHY_LINK_COMPLETE:
6458 hci_phy_link_complete_evt(hdev, skb);
6461 case HCI_EV_LOGICAL_LINK_COMPLETE:
6462 hci_loglink_complete_evt(hdev, skb);
6465 case HCI_EV_DISCONN_LOGICAL_LINK_COMPLETE:
6466 hci_disconn_loglink_complete_evt(hdev, skb);
6469 case HCI_EV_DISCONN_PHY_LINK_COMPLETE:
6470 hci_disconn_phylink_complete_evt(hdev, skb);
6474 case HCI_EV_NUM_COMP_BLOCKS:
6475 hci_num_comp_blocks_evt(hdev, skb);
6479 msft_vendor_evt(hdev, skb);
6483 BT_DBG("%s event 0x%2.2x", hdev->name, event);
6488 req_complete(hdev, status, opcode);
6489 } else if (req_complete_skb) {
6490 if (!hci_get_cmd_complete(hdev, opcode, req_evt, orig_skb)) {
6491 kfree_skb(orig_skb);
6494 req_complete_skb(hdev, status, opcode, orig_skb);
6498 kfree_skb(orig_skb);
6500 hdev->stat.evt_rx++;