1 // SPDX-License-Identifier: GPL-2.0
3 * BlueZ - Bluetooth protocol stack for Linux
5 * Copyright (C) 2021 Intel Corporation
8 #include <linux/property.h>
10 #include <net/bluetooth/bluetooth.h>
11 #include <net/bluetooth/hci_core.h>
12 #include <net/bluetooth/mgmt.h>
14 #include "hci_request.h"
15 #include "hci_codec.h"
16 #include "hci_debugfs.h"
23 static void hci_cmd_sync_complete(struct hci_dev *hdev, u8 result, u16 opcode,
26 bt_dev_dbg(hdev, "result 0x%2.2x", result);
28 if (hdev->req_status != HCI_REQ_PEND)
31 hdev->req_result = result;
32 hdev->req_status = HCI_REQ_DONE;
35 struct sock *sk = hci_skb_sk(skb);
37 /* Drop sk reference if set */
41 hdev->req_skb = skb_get(skb);
44 wake_up_interruptible(&hdev->req_wait_q);
47 static struct sk_buff *hci_cmd_sync_alloc(struct hci_dev *hdev, u16 opcode,
48 u32 plen, const void *param,
51 int len = HCI_COMMAND_HDR_SIZE + plen;
52 struct hci_command_hdr *hdr;
55 skb = bt_skb_alloc(len, GFP_ATOMIC);
59 hdr = skb_put(skb, HCI_COMMAND_HDR_SIZE);
60 hdr->opcode = cpu_to_le16(opcode);
64 skb_put_data(skb, param, plen);
66 bt_dev_dbg(hdev, "skb len %d", skb->len);
68 hci_skb_pkt_type(skb) = HCI_COMMAND_PKT;
69 hci_skb_opcode(skb) = opcode;
71 /* Grab a reference if command needs to be associated with a sock (e.g.
72 * likely mgmt socket that initiated the command).
82 static void hci_cmd_sync_add(struct hci_request *req, u16 opcode, u32 plen,
83 const void *param, u8 event, struct sock *sk)
85 struct hci_dev *hdev = req->hdev;
88 bt_dev_dbg(hdev, "opcode 0x%4.4x plen %d", opcode, plen);
90 /* If an error occurred during request building, there is no point in
91 * queueing the HCI command. We can simply return.
96 skb = hci_cmd_sync_alloc(hdev, opcode, plen, param, sk);
98 bt_dev_err(hdev, "no memory for command (opcode 0x%4.4x)",
104 if (skb_queue_empty(&req->cmd_q))
105 bt_cb(skb)->hci.req_flags |= HCI_REQ_START;
107 hci_skb_event(skb) = event;
109 skb_queue_tail(&req->cmd_q, skb);
112 static int hci_cmd_sync_run(struct hci_request *req)
114 struct hci_dev *hdev = req->hdev;
118 bt_dev_dbg(hdev, "length %u", skb_queue_len(&req->cmd_q));
120 /* If an error occurred during request building, remove all HCI
121 * commands queued on the HCI request queue.
124 skb_queue_purge(&req->cmd_q);
128 /* Do not allow empty requests */
129 if (skb_queue_empty(&req->cmd_q))
132 skb = skb_peek_tail(&req->cmd_q);
133 bt_cb(skb)->hci.req_complete_skb = hci_cmd_sync_complete;
134 bt_cb(skb)->hci.req_flags |= HCI_REQ_SKB;
136 spin_lock_irqsave(&hdev->cmd_q.lock, flags);
137 skb_queue_splice_tail(&req->cmd_q, &hdev->cmd_q);
138 spin_unlock_irqrestore(&hdev->cmd_q.lock, flags);
140 queue_work(hdev->workqueue, &hdev->cmd_work);
145 /* This function requires the caller holds hdev->req_lock. */
146 struct sk_buff *__hci_cmd_sync_sk(struct hci_dev *hdev, u16 opcode, u32 plen,
147 const void *param, u8 event, u32 timeout,
150 struct hci_request req;
154 bt_dev_dbg(hdev, "Opcode 0x%4x", opcode);
156 hci_req_init(&req, hdev);
158 hci_cmd_sync_add(&req, opcode, plen, param, event, sk);
160 hdev->req_status = HCI_REQ_PEND;
162 err = hci_cmd_sync_run(&req);
166 err = wait_event_interruptible_timeout(hdev->req_wait_q,
167 hdev->req_status != HCI_REQ_PEND,
170 if (err == -ERESTARTSYS)
171 return ERR_PTR(-EINTR);
173 switch (hdev->req_status) {
175 err = -bt_to_errno(hdev->req_result);
178 case HCI_REQ_CANCELED:
179 err = -hdev->req_result;
187 hdev->req_status = 0;
188 hdev->req_result = 0;
190 hdev->req_skb = NULL;
192 bt_dev_dbg(hdev, "end: err %d", err);
201 EXPORT_SYMBOL(__hci_cmd_sync_sk);
203 /* This function requires the caller holds hdev->req_lock. */
204 struct sk_buff *__hci_cmd_sync(struct hci_dev *hdev, u16 opcode, u32 plen,
205 const void *param, u32 timeout)
207 return __hci_cmd_sync_sk(hdev, opcode, plen, param, 0, timeout, NULL);
209 EXPORT_SYMBOL(__hci_cmd_sync);
211 /* Send HCI command and wait for command complete event */
212 struct sk_buff *hci_cmd_sync(struct hci_dev *hdev, u16 opcode, u32 plen,
213 const void *param, u32 timeout)
217 if (!test_bit(HCI_UP, &hdev->flags))
218 return ERR_PTR(-ENETDOWN);
220 bt_dev_dbg(hdev, "opcode 0x%4.4x plen %d", opcode, plen);
222 hci_req_sync_lock(hdev);
223 skb = __hci_cmd_sync(hdev, opcode, plen, param, timeout);
224 hci_req_sync_unlock(hdev);
228 EXPORT_SYMBOL(hci_cmd_sync);
230 /* This function requires the caller holds hdev->req_lock. */
231 struct sk_buff *__hci_cmd_sync_ev(struct hci_dev *hdev, u16 opcode, u32 plen,
232 const void *param, u8 event, u32 timeout)
234 return __hci_cmd_sync_sk(hdev, opcode, plen, param, event, timeout,
237 EXPORT_SYMBOL(__hci_cmd_sync_ev);
239 /* This function requires the caller holds hdev->req_lock. */
240 int __hci_cmd_sync_status_sk(struct hci_dev *hdev, u16 opcode, u32 plen,
241 const void *param, u8 event, u32 timeout,
247 skb = __hci_cmd_sync_sk(hdev, opcode, plen, param, event, timeout, sk);
250 bt_dev_err(hdev, "Opcode 0x%4x failed: %ld", opcode,
255 /* If command return a status event skb will be set to NULL as there are
256 * no parameters, in case of failure IS_ERR(skb) would have be set to
257 * the actual error would be found with PTR_ERR(skb).
262 status = skb->data[0];
268 EXPORT_SYMBOL(__hci_cmd_sync_status_sk);
270 int __hci_cmd_sync_status(struct hci_dev *hdev, u16 opcode, u32 plen,
271 const void *param, u32 timeout)
273 return __hci_cmd_sync_status_sk(hdev, opcode, plen, param, 0, timeout,
276 EXPORT_SYMBOL(__hci_cmd_sync_status);
278 static void hci_cmd_sync_work(struct work_struct *work)
280 struct hci_dev *hdev = container_of(work, struct hci_dev, cmd_sync_work);
282 bt_dev_dbg(hdev, "");
284 /* Dequeue all entries and run them */
286 struct hci_cmd_sync_work_entry *entry;
288 mutex_lock(&hdev->cmd_sync_work_lock);
289 entry = list_first_entry_or_null(&hdev->cmd_sync_work_list,
290 struct hci_cmd_sync_work_entry,
293 list_del(&entry->list);
294 mutex_unlock(&hdev->cmd_sync_work_lock);
299 bt_dev_dbg(hdev, "entry %p", entry);
304 hci_req_sync_lock(hdev);
305 err = entry->func(hdev, entry->data);
307 entry->destroy(hdev, entry->data, err);
308 hci_req_sync_unlock(hdev);
315 static void hci_cmd_sync_cancel_work(struct work_struct *work)
317 struct hci_dev *hdev = container_of(work, struct hci_dev, cmd_sync_cancel_work);
319 cancel_delayed_work_sync(&hdev->cmd_timer);
320 cancel_delayed_work_sync(&hdev->ncmd_timer);
321 atomic_set(&hdev->cmd_cnt, 1);
323 wake_up_interruptible(&hdev->req_wait_q);
326 static int hci_scan_disable_sync(struct hci_dev *hdev);
327 static int scan_disable_sync(struct hci_dev *hdev, void *data)
329 return hci_scan_disable_sync(hdev);
332 static int hci_inquiry_sync(struct hci_dev *hdev, u8 length);
333 static int interleaved_inquiry_sync(struct hci_dev *hdev, void *data)
335 return hci_inquiry_sync(hdev, DISCOV_INTERLEAVED_INQUIRY_LEN);
338 static void le_scan_disable(struct work_struct *work)
340 struct hci_dev *hdev = container_of(work, struct hci_dev,
341 le_scan_disable.work);
344 bt_dev_dbg(hdev, "");
347 if (!hci_dev_test_flag(hdev, HCI_LE_SCAN))
350 cancel_delayed_work(&hdev->le_scan_restart);
352 status = hci_cmd_sync_queue(hdev, scan_disable_sync, NULL, NULL);
354 bt_dev_err(hdev, "failed to disable LE scan: %d", status);
358 hdev->discovery.scan_start = 0;
360 /* If we were running LE only scan, change discovery state. If
361 * we were running both LE and BR/EDR inquiry simultaneously,
362 * and BR/EDR inquiry is already finished, stop discovery,
363 * otherwise BR/EDR inquiry will stop discovery when finished.
364 * If we will resolve remote device name, do not change
368 if (hdev->discovery.type == DISCOV_TYPE_LE)
371 if (hdev->discovery.type != DISCOV_TYPE_INTERLEAVED)
374 if (test_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks)) {
375 if (!test_bit(HCI_INQUIRY, &hdev->flags) &&
376 hdev->discovery.state != DISCOVERY_RESOLVING)
382 status = hci_cmd_sync_queue(hdev, interleaved_inquiry_sync, NULL, NULL);
384 bt_dev_err(hdev, "inquiry failed: status %d", status);
391 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
394 hci_dev_unlock(hdev);
397 static int hci_le_set_scan_enable_sync(struct hci_dev *hdev, u8 val,
399 static int hci_le_scan_restart_sync(struct hci_dev *hdev)
401 /* If controller is not scanning we are done. */
402 if (!hci_dev_test_flag(hdev, HCI_LE_SCAN))
405 if (hdev->scanning_paused) {
406 bt_dev_dbg(hdev, "Scanning is paused for suspend");
410 hci_le_set_scan_enable_sync(hdev, LE_SCAN_DISABLE, 0x00);
411 return hci_le_set_scan_enable_sync(hdev, LE_SCAN_ENABLE,
412 LE_SCAN_FILTER_DUP_ENABLE);
415 static int le_scan_restart_sync(struct hci_dev *hdev, void *data)
417 return hci_le_scan_restart_sync(hdev);
420 static void le_scan_restart(struct work_struct *work)
422 struct hci_dev *hdev = container_of(work, struct hci_dev,
423 le_scan_restart.work);
424 unsigned long timeout, duration, scan_start, now;
427 bt_dev_dbg(hdev, "");
431 status = hci_cmd_sync_queue(hdev, le_scan_restart_sync, NULL, NULL);
433 bt_dev_err(hdev, "failed to restart LE scan: status %d",
438 if (!test_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks) ||
439 !hdev->discovery.scan_start)
442 /* When the scan was started, hdev->le_scan_disable has been queued
443 * after duration from scan_start. During scan restart this job
444 * has been canceled, and we need to queue it again after proper
445 * timeout, to make sure that scan does not run indefinitely.
447 duration = hdev->discovery.scan_duration;
448 scan_start = hdev->discovery.scan_start;
450 if (now - scan_start <= duration) {
453 if (now >= scan_start)
454 elapsed = now - scan_start;
456 elapsed = ULONG_MAX - scan_start + now;
458 timeout = duration - elapsed;
463 queue_delayed_work(hdev->req_workqueue,
464 &hdev->le_scan_disable, timeout);
467 hci_dev_unlock(hdev);
470 static int reenable_adv_sync(struct hci_dev *hdev, void *data)
472 bt_dev_dbg(hdev, "");
474 if (!hci_dev_test_flag(hdev, HCI_ADVERTISING) &&
475 list_empty(&hdev->adv_instances))
478 if (hdev->cur_adv_instance) {
479 return hci_schedule_adv_instance_sync(hdev,
480 hdev->cur_adv_instance,
483 if (ext_adv_capable(hdev)) {
484 hci_start_ext_adv_sync(hdev, 0x00);
486 hci_update_adv_data_sync(hdev, 0x00);
487 hci_update_scan_rsp_data_sync(hdev, 0x00);
488 hci_enable_advertising_sync(hdev);
495 static void reenable_adv(struct work_struct *work)
497 struct hci_dev *hdev = container_of(work, struct hci_dev,
501 bt_dev_dbg(hdev, "");
505 status = hci_cmd_sync_queue(hdev, reenable_adv_sync, NULL, NULL);
507 bt_dev_err(hdev, "failed to reenable ADV: %d", status);
509 hci_dev_unlock(hdev);
512 static void cancel_adv_timeout(struct hci_dev *hdev)
514 if (hdev->adv_instance_timeout) {
515 hdev->adv_instance_timeout = 0;
516 cancel_delayed_work(&hdev->adv_instance_expire);
520 /* For a single instance:
521 * - force == true: The instance will be removed even when its remaining
522 * lifetime is not zero.
523 * - force == false: the instance will be deactivated but kept stored unless
524 * the remaining lifetime is zero.
526 * For instance == 0x00:
527 * - force == true: All instances will be removed regardless of their timeout
529 * - force == false: Only instances that have a timeout will be removed.
531 int hci_clear_adv_instance_sync(struct hci_dev *hdev, struct sock *sk,
532 u8 instance, bool force)
534 struct adv_info *adv_instance, *n, *next_instance = NULL;
538 /* Cancel any timeout concerning the removed instance(s). */
539 if (!instance || hdev->cur_adv_instance == instance)
540 cancel_adv_timeout(hdev);
542 /* Get the next instance to advertise BEFORE we remove
543 * the current one. This can be the same instance again
544 * if there is only one instance.
546 if (instance && hdev->cur_adv_instance == instance)
547 next_instance = hci_get_next_instance(hdev, instance);
549 if (instance == 0x00) {
550 list_for_each_entry_safe(adv_instance, n, &hdev->adv_instances,
552 if (!(force || adv_instance->timeout))
555 rem_inst = adv_instance->instance;
556 err = hci_remove_adv_instance(hdev, rem_inst);
558 mgmt_advertising_removed(sk, hdev, rem_inst);
561 adv_instance = hci_find_adv_instance(hdev, instance);
563 if (force || (adv_instance && adv_instance->timeout &&
564 !adv_instance->remaining_time)) {
565 /* Don't advertise a removed instance. */
567 next_instance->instance == instance)
568 next_instance = NULL;
570 err = hci_remove_adv_instance(hdev, instance);
572 mgmt_advertising_removed(sk, hdev, instance);
576 if (!hdev_is_powered(hdev) || hci_dev_test_flag(hdev, HCI_ADVERTISING))
579 if (next_instance && !ext_adv_capable(hdev))
580 return hci_schedule_adv_instance_sync(hdev,
581 next_instance->instance,
587 static int adv_timeout_expire_sync(struct hci_dev *hdev, void *data)
589 u8 instance = *(u8 *)data;
593 hci_clear_adv_instance_sync(hdev, NULL, instance, false);
595 if (list_empty(&hdev->adv_instances))
596 return hci_disable_advertising_sync(hdev);
601 static void adv_timeout_expire(struct work_struct *work)
604 struct hci_dev *hdev = container_of(work, struct hci_dev,
605 adv_instance_expire.work);
607 bt_dev_dbg(hdev, "");
611 hdev->adv_instance_timeout = 0;
613 if (hdev->cur_adv_instance == 0x00)
616 inst_ptr = kmalloc(1, GFP_KERNEL);
620 *inst_ptr = hdev->cur_adv_instance;
621 hci_cmd_sync_queue(hdev, adv_timeout_expire_sync, inst_ptr, NULL);
624 hci_dev_unlock(hdev);
627 void hci_cmd_sync_init(struct hci_dev *hdev)
629 INIT_WORK(&hdev->cmd_sync_work, hci_cmd_sync_work);
630 INIT_LIST_HEAD(&hdev->cmd_sync_work_list);
631 mutex_init(&hdev->cmd_sync_work_lock);
633 INIT_WORK(&hdev->cmd_sync_cancel_work, hci_cmd_sync_cancel_work);
634 INIT_WORK(&hdev->reenable_adv_work, reenable_adv);
635 INIT_DELAYED_WORK(&hdev->le_scan_disable, le_scan_disable);
636 INIT_DELAYED_WORK(&hdev->le_scan_restart, le_scan_restart);
637 INIT_DELAYED_WORK(&hdev->adv_instance_expire, adv_timeout_expire);
640 void hci_cmd_sync_clear(struct hci_dev *hdev)
642 struct hci_cmd_sync_work_entry *entry, *tmp;
644 cancel_work_sync(&hdev->cmd_sync_work);
645 cancel_work_sync(&hdev->reenable_adv_work);
647 mutex_lock(&hdev->cmd_sync_work_lock);
648 list_for_each_entry_safe(entry, tmp, &hdev->cmd_sync_work_list, list) {
650 entry->destroy(hdev, entry->data, -ECANCELED);
652 list_del(&entry->list);
655 mutex_unlock(&hdev->cmd_sync_work_lock);
658 void __hci_cmd_sync_cancel(struct hci_dev *hdev, int err)
660 bt_dev_dbg(hdev, "err 0x%2.2x", err);
662 if (hdev->req_status == HCI_REQ_PEND) {
663 hdev->req_result = err;
664 hdev->req_status = HCI_REQ_CANCELED;
666 cancel_delayed_work_sync(&hdev->cmd_timer);
667 cancel_delayed_work_sync(&hdev->ncmd_timer);
668 atomic_set(&hdev->cmd_cnt, 1);
670 wake_up_interruptible(&hdev->req_wait_q);
674 void hci_cmd_sync_cancel(struct hci_dev *hdev, int err)
676 bt_dev_dbg(hdev, "err 0x%2.2x", err);
678 if (hdev->req_status == HCI_REQ_PEND) {
679 hdev->req_result = err;
680 hdev->req_status = HCI_REQ_CANCELED;
682 queue_work(hdev->workqueue, &hdev->cmd_sync_cancel_work);
685 EXPORT_SYMBOL(hci_cmd_sync_cancel);
687 /* Submit HCI command to be run in as cmd_sync_work:
689 * - hdev must _not_ be unregistered
691 int hci_cmd_sync_submit(struct hci_dev *hdev, hci_cmd_sync_work_func_t func,
692 void *data, hci_cmd_sync_work_destroy_t destroy)
694 struct hci_cmd_sync_work_entry *entry;
696 if (hci_dev_test_flag(hdev, HCI_UNREGISTER))
699 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
705 entry->destroy = destroy;
707 mutex_lock(&hdev->cmd_sync_work_lock);
708 list_add_tail(&entry->list, &hdev->cmd_sync_work_list);
709 mutex_unlock(&hdev->cmd_sync_work_lock);
711 queue_work(hdev->req_workqueue, &hdev->cmd_sync_work);
715 EXPORT_SYMBOL(hci_cmd_sync_submit);
717 /* Queue HCI command:
719 * - hdev must be running
721 int hci_cmd_sync_queue(struct hci_dev *hdev, hci_cmd_sync_work_func_t func,
722 void *data, hci_cmd_sync_work_destroy_t destroy)
724 /* Only queue command if hdev is running which means it had been opened
725 * and is either on init phase or is already up.
727 if (!test_bit(HCI_RUNNING, &hdev->flags))
730 return hci_cmd_sync_submit(hdev, func, data, destroy);
732 EXPORT_SYMBOL(hci_cmd_sync_queue);
734 int hci_update_eir_sync(struct hci_dev *hdev)
736 struct hci_cp_write_eir cp;
738 bt_dev_dbg(hdev, "");
740 if (!hdev_is_powered(hdev))
743 if (!lmp_ext_inq_capable(hdev))
746 if (!hci_dev_test_flag(hdev, HCI_SSP_ENABLED))
749 if (hci_dev_test_flag(hdev, HCI_SERVICE_CACHE))
752 memset(&cp, 0, sizeof(cp));
754 eir_create(hdev, cp.data);
756 if (memcmp(cp.data, hdev->eir, sizeof(cp.data)) == 0)
759 memcpy(hdev->eir, cp.data, sizeof(cp.data));
761 return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_EIR, sizeof(cp), &cp,
765 static u8 get_service_classes(struct hci_dev *hdev)
767 struct bt_uuid *uuid;
770 list_for_each_entry(uuid, &hdev->uuids, list)
771 val |= uuid->svc_hint;
776 int hci_update_class_sync(struct hci_dev *hdev)
780 bt_dev_dbg(hdev, "");
782 if (!hdev_is_powered(hdev))
785 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
788 if (hci_dev_test_flag(hdev, HCI_SERVICE_CACHE))
791 cod[0] = hdev->minor_class;
792 cod[1] = hdev->major_class;
793 cod[2] = get_service_classes(hdev);
795 if (hci_dev_test_flag(hdev, HCI_LIMITED_DISCOVERABLE))
798 if (memcmp(cod, hdev->dev_class, 3) == 0)
801 return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_CLASS_OF_DEV,
802 sizeof(cod), cod, HCI_CMD_TIMEOUT);
805 static bool is_advertising_allowed(struct hci_dev *hdev, bool connectable)
807 /* If there is no connection we are OK to advertise. */
808 if (hci_conn_num(hdev, LE_LINK) == 0)
811 /* Check le_states if there is any connection in peripheral role. */
812 if (hdev->conn_hash.le_num_peripheral > 0) {
813 /* Peripheral connection state and non connectable mode
816 if (!connectable && !(hdev->le_states[2] & 0x10))
819 /* Peripheral connection state and connectable mode bit 38
820 * and scannable bit 21.
822 if (connectable && (!(hdev->le_states[4] & 0x40) ||
823 !(hdev->le_states[2] & 0x20)))
827 /* Check le_states if there is any connection in central role. */
828 if (hci_conn_num(hdev, LE_LINK) != hdev->conn_hash.le_num_peripheral) {
829 /* Central connection state and non connectable mode bit 18. */
830 if (!connectable && !(hdev->le_states[2] & 0x02))
833 /* Central connection state and connectable mode bit 35 and
836 if (connectable && (!(hdev->le_states[4] & 0x08) ||
837 !(hdev->le_states[2] & 0x08)))
844 static bool adv_use_rpa(struct hci_dev *hdev, uint32_t flags)
846 /* If privacy is not enabled don't use RPA */
847 if (!hci_dev_test_flag(hdev, HCI_PRIVACY))
850 /* If basic privacy mode is enabled use RPA */
851 if (!hci_dev_test_flag(hdev, HCI_LIMITED_PRIVACY))
854 /* If limited privacy mode is enabled don't use RPA if we're
855 * both discoverable and bondable.
857 if ((flags & MGMT_ADV_FLAG_DISCOV) &&
858 hci_dev_test_flag(hdev, HCI_BONDABLE))
861 /* We're neither bondable nor discoverable in the limited
862 * privacy mode, therefore use RPA.
867 static int hci_set_random_addr_sync(struct hci_dev *hdev, bdaddr_t *rpa)
869 /* If we're advertising or initiating an LE connection we can't
870 * go ahead and change the random address at this time. This is
871 * because the eventual initiator address used for the
872 * subsequently created connection will be undefined (some
873 * controllers use the new address and others the one we had
874 * when the operation started).
876 * In this kind of scenario skip the update and let the random
877 * address be updated at the next cycle.
879 if (hci_dev_test_flag(hdev, HCI_LE_ADV) ||
880 hci_lookup_le_connect(hdev)) {
881 bt_dev_dbg(hdev, "Deferring random address update");
882 hci_dev_set_flag(hdev, HCI_RPA_EXPIRED);
886 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_RANDOM_ADDR,
887 6, rpa, HCI_CMD_TIMEOUT);
890 int hci_update_random_address_sync(struct hci_dev *hdev, bool require_privacy,
891 bool rpa, u8 *own_addr_type)
895 /* If privacy is enabled use a resolvable private address. If
896 * current RPA has expired or there is something else than
897 * the current RPA in use, then generate a new one.
900 /* If Controller supports LL Privacy use own address type is
903 if (use_ll_privacy(hdev))
904 *own_addr_type = ADDR_LE_DEV_RANDOM_RESOLVED;
906 *own_addr_type = ADDR_LE_DEV_RANDOM;
908 /* Check if RPA is valid */
912 err = smp_generate_rpa(hdev, hdev->irk, &hdev->rpa);
914 bt_dev_err(hdev, "failed to generate new RPA");
918 err = hci_set_random_addr_sync(hdev, &hdev->rpa);
925 /* In case of required privacy without resolvable private address,
926 * use an non-resolvable private address. This is useful for active
927 * scanning and non-connectable advertising.
929 if (require_privacy) {
933 /* The non-resolvable private address is generated
934 * from random six bytes with the two most significant
937 get_random_bytes(&nrpa, 6);
940 /* The non-resolvable private address shall not be
941 * equal to the public address.
943 if (bacmp(&hdev->bdaddr, &nrpa))
947 *own_addr_type = ADDR_LE_DEV_RANDOM;
949 return hci_set_random_addr_sync(hdev, &nrpa);
952 /* If forcing static address is in use or there is no public
953 * address use the static address as random address (but skip
954 * the HCI command if the current random address is already the
957 * In case BR/EDR has been disabled on a dual-mode controller
958 * and a static address has been configured, then use that
959 * address instead of the public BR/EDR address.
961 if (hci_dev_test_flag(hdev, HCI_FORCE_STATIC_ADDR) ||
962 !bacmp(&hdev->bdaddr, BDADDR_ANY) ||
963 (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) &&
964 bacmp(&hdev->static_addr, BDADDR_ANY))) {
965 *own_addr_type = ADDR_LE_DEV_RANDOM;
966 if (bacmp(&hdev->static_addr, &hdev->random_addr))
967 return hci_set_random_addr_sync(hdev,
972 /* Neither privacy nor static address is being used so use a
975 *own_addr_type = ADDR_LE_DEV_PUBLIC;
980 static int hci_disable_ext_adv_instance_sync(struct hci_dev *hdev, u8 instance)
982 struct hci_cp_le_set_ext_adv_enable *cp;
983 struct hci_cp_ext_adv_set *set;
984 u8 data[sizeof(*cp) + sizeof(*set) * 1];
987 /* If request specifies an instance that doesn't exist, fail */
989 struct adv_info *adv;
991 adv = hci_find_adv_instance(hdev, instance);
995 /* If not enabled there is nothing to do */
1000 memset(data, 0, sizeof(data));
1003 set = (void *)cp->data;
1005 /* Instance 0x00 indicates all advertising instances will be disabled */
1006 cp->num_of_sets = !!instance;
1009 set->handle = instance;
1011 size = sizeof(*cp) + sizeof(*set) * cp->num_of_sets;
1013 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_EXT_ADV_ENABLE,
1014 size, data, HCI_CMD_TIMEOUT);
1017 static int hci_set_adv_set_random_addr_sync(struct hci_dev *hdev, u8 instance,
1018 bdaddr_t *random_addr)
1020 struct hci_cp_le_set_adv_set_rand_addr cp;
1024 /* Instance 0x00 doesn't have an adv_info, instead it uses
1025 * hdev->random_addr to track its address so whenever it needs
1026 * to be updated this also set the random address since
1027 * hdev->random_addr is shared with scan state machine.
1029 err = hci_set_random_addr_sync(hdev, random_addr);
1034 memset(&cp, 0, sizeof(cp));
1036 cp.handle = instance;
1037 bacpy(&cp.bdaddr, random_addr);
1039 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_ADV_SET_RAND_ADDR,
1040 sizeof(cp), &cp, HCI_CMD_TIMEOUT);
1043 int hci_setup_ext_adv_instance_sync(struct hci_dev *hdev, u8 instance)
1045 struct hci_cp_le_set_ext_adv_params cp;
1048 bdaddr_t random_addr;
1051 struct adv_info *adv;
1055 adv = hci_find_adv_instance(hdev, instance);
1062 /* Updating parameters of an active instance will return a
1063 * Command Disallowed error, so we must first disable the
1064 * instance if it is active.
1066 if (adv && !adv->pending) {
1067 err = hci_disable_ext_adv_instance_sync(hdev, instance);
1072 flags = hci_adv_instance_flags(hdev, instance);
1074 /* If the "connectable" instance flag was not set, then choose between
1075 * ADV_IND and ADV_NONCONN_IND based on the global connectable setting.
1077 connectable = (flags & MGMT_ADV_FLAG_CONNECTABLE) ||
1078 mgmt_get_connectable(hdev);
1080 if (!is_advertising_allowed(hdev, connectable))
1083 /* Set require_privacy to true only when non-connectable
1084 * advertising is used. In that case it is fine to use a
1085 * non-resolvable private address.
1087 err = hci_get_random_address(hdev, !connectable,
1088 adv_use_rpa(hdev, flags), adv,
1089 &own_addr_type, &random_addr);
1093 memset(&cp, 0, sizeof(cp));
1096 hci_cpu_to_le24(adv->min_interval, cp.min_interval);
1097 hci_cpu_to_le24(adv->max_interval, cp.max_interval);
1098 cp.tx_power = adv->tx_power;
1100 hci_cpu_to_le24(hdev->le_adv_min_interval, cp.min_interval);
1101 hci_cpu_to_le24(hdev->le_adv_max_interval, cp.max_interval);
1102 cp.tx_power = HCI_ADV_TX_POWER_NO_PREFERENCE;
1105 secondary_adv = (flags & MGMT_ADV_FLAG_SEC_MASK);
1109 cp.evt_properties = cpu_to_le16(LE_EXT_ADV_CONN_IND);
1111 cp.evt_properties = cpu_to_le16(LE_LEGACY_ADV_IND);
1112 } else if (hci_adv_instance_is_scannable(hdev, instance) ||
1113 (flags & MGMT_ADV_PARAM_SCAN_RSP)) {
1115 cp.evt_properties = cpu_to_le16(LE_EXT_ADV_SCAN_IND);
1117 cp.evt_properties = cpu_to_le16(LE_LEGACY_ADV_SCAN_IND);
1120 cp.evt_properties = cpu_to_le16(LE_EXT_ADV_NON_CONN_IND);
1122 cp.evt_properties = cpu_to_le16(LE_LEGACY_NONCONN_IND);
1125 /* If Own_Address_Type equals 0x02 or 0x03, the Peer_Address parameter
1126 * contains the peer’s Identity Address and the Peer_Address_Type
1127 * parameter contains the peer’s Identity Type (i.e., 0x00 or 0x01).
1128 * These parameters are used to locate the corresponding local IRK in
1129 * the resolving list; this IRK is used to generate their own address
1130 * used in the advertisement.
1132 if (own_addr_type == ADDR_LE_DEV_RANDOM_RESOLVED)
1133 hci_copy_identity_address(hdev, &cp.peer_addr,
1134 &cp.peer_addr_type);
1136 cp.own_addr_type = own_addr_type;
1137 cp.channel_map = hdev->le_adv_channel_map;
1138 cp.handle = instance;
1140 if (flags & MGMT_ADV_FLAG_SEC_2M) {
1141 cp.primary_phy = HCI_ADV_PHY_1M;
1142 cp.secondary_phy = HCI_ADV_PHY_2M;
1143 } else if (flags & MGMT_ADV_FLAG_SEC_CODED) {
1144 cp.primary_phy = HCI_ADV_PHY_CODED;
1145 cp.secondary_phy = HCI_ADV_PHY_CODED;
1147 /* In all other cases use 1M */
1148 cp.primary_phy = HCI_ADV_PHY_1M;
1149 cp.secondary_phy = HCI_ADV_PHY_1M;
1152 err = __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_EXT_ADV_PARAMS,
1153 sizeof(cp), &cp, HCI_CMD_TIMEOUT);
1157 if ((own_addr_type == ADDR_LE_DEV_RANDOM ||
1158 own_addr_type == ADDR_LE_DEV_RANDOM_RESOLVED) &&
1159 bacmp(&random_addr, BDADDR_ANY)) {
1160 /* Check if random address need to be updated */
1162 if (!bacmp(&random_addr, &adv->random_addr))
1165 if (!bacmp(&random_addr, &hdev->random_addr))
1169 return hci_set_adv_set_random_addr_sync(hdev, instance,
1176 static int hci_set_ext_scan_rsp_data_sync(struct hci_dev *hdev, u8 instance)
1179 struct hci_cp_le_set_ext_scan_rsp_data cp;
1180 u8 data[HCI_MAX_EXT_AD_LENGTH];
1183 struct adv_info *adv = NULL;
1186 memset(&pdu, 0, sizeof(pdu));
1189 adv = hci_find_adv_instance(hdev, instance);
1190 if (!adv || !adv->scan_rsp_changed)
1194 len = eir_create_scan_rsp(hdev, instance, pdu.data);
1196 pdu.cp.handle = instance;
1197 pdu.cp.length = len;
1198 pdu.cp.operation = LE_SET_ADV_DATA_OP_COMPLETE;
1199 pdu.cp.frag_pref = LE_SET_ADV_DATA_NO_FRAG;
1201 err = __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_EXT_SCAN_RSP_DATA,
1202 sizeof(pdu.cp) + len, &pdu.cp,
1208 adv->scan_rsp_changed = false;
1210 memcpy(hdev->scan_rsp_data, pdu.data, len);
1211 hdev->scan_rsp_data_len = len;
1217 static int __hci_set_scan_rsp_data_sync(struct hci_dev *hdev, u8 instance)
1219 struct hci_cp_le_set_scan_rsp_data cp;
1222 memset(&cp, 0, sizeof(cp));
1224 len = eir_create_scan_rsp(hdev, instance, cp.data);
1226 if (hdev->scan_rsp_data_len == len &&
1227 !memcmp(cp.data, hdev->scan_rsp_data, len))
1230 memcpy(hdev->scan_rsp_data, cp.data, sizeof(cp.data));
1231 hdev->scan_rsp_data_len = len;
1235 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_SCAN_RSP_DATA,
1236 sizeof(cp), &cp, HCI_CMD_TIMEOUT);
1239 int hci_update_scan_rsp_data_sync(struct hci_dev *hdev, u8 instance)
1241 if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED))
1244 if (ext_adv_capable(hdev))
1245 return hci_set_ext_scan_rsp_data_sync(hdev, instance);
1247 return __hci_set_scan_rsp_data_sync(hdev, instance);
1250 int hci_enable_ext_advertising_sync(struct hci_dev *hdev, u8 instance)
1252 struct hci_cp_le_set_ext_adv_enable *cp;
1253 struct hci_cp_ext_adv_set *set;
1254 u8 data[sizeof(*cp) + sizeof(*set) * 1];
1255 struct adv_info *adv;
1258 adv = hci_find_adv_instance(hdev, instance);
1261 /* If already enabled there is nothing to do */
1269 set = (void *)cp->data;
1271 memset(cp, 0, sizeof(*cp));
1274 cp->num_of_sets = 0x01;
1276 memset(set, 0, sizeof(*set));
1278 set->handle = instance;
1280 /* Set duration per instance since controller is responsible for
1283 if (adv && adv->timeout) {
1284 u16 duration = adv->timeout * MSEC_PER_SEC;
1286 /* Time = N * 10 ms */
1287 set->duration = cpu_to_le16(duration / 10);
1290 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_EXT_ADV_ENABLE,
1292 sizeof(*set) * cp->num_of_sets,
1293 data, HCI_CMD_TIMEOUT);
1296 int hci_start_ext_adv_sync(struct hci_dev *hdev, u8 instance)
1300 err = hci_setup_ext_adv_instance_sync(hdev, instance);
1304 err = hci_set_ext_scan_rsp_data_sync(hdev, instance);
1308 return hci_enable_ext_advertising_sync(hdev, instance);
1311 static int hci_disable_per_advertising_sync(struct hci_dev *hdev, u8 instance)
1313 struct hci_cp_le_set_per_adv_enable cp;
1315 /* If periodic advertising already disabled there is nothing to do. */
1316 if (!hci_dev_test_flag(hdev, HCI_LE_PER_ADV))
1319 memset(&cp, 0, sizeof(cp));
1322 cp.handle = instance;
1324 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_PER_ADV_ENABLE,
1325 sizeof(cp), &cp, HCI_CMD_TIMEOUT);
1328 static int hci_set_per_adv_params_sync(struct hci_dev *hdev, u8 instance,
1329 u16 min_interval, u16 max_interval)
1331 struct hci_cp_le_set_per_adv_params cp;
1333 memset(&cp, 0, sizeof(cp));
1336 min_interval = DISCOV_LE_PER_ADV_INT_MIN;
1339 max_interval = DISCOV_LE_PER_ADV_INT_MAX;
1341 cp.handle = instance;
1342 cp.min_interval = cpu_to_le16(min_interval);
1343 cp.max_interval = cpu_to_le16(max_interval);
1344 cp.periodic_properties = 0x0000;
1346 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_PER_ADV_PARAMS,
1347 sizeof(cp), &cp, HCI_CMD_TIMEOUT);
1350 static int hci_set_per_adv_data_sync(struct hci_dev *hdev, u8 instance)
1353 struct hci_cp_le_set_per_adv_data cp;
1354 u8 data[HCI_MAX_PER_AD_LENGTH];
1358 memset(&pdu, 0, sizeof(pdu));
1361 struct adv_info *adv = hci_find_adv_instance(hdev, instance);
1363 if (!adv || !adv->periodic)
1367 len = eir_create_per_adv_data(hdev, instance, pdu.data);
1369 pdu.cp.length = len;
1370 pdu.cp.handle = instance;
1371 pdu.cp.operation = LE_SET_ADV_DATA_OP_COMPLETE;
1373 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_PER_ADV_DATA,
1374 sizeof(pdu.cp) + len, &pdu,
1378 static int hci_enable_per_advertising_sync(struct hci_dev *hdev, u8 instance)
1380 struct hci_cp_le_set_per_adv_enable cp;
1382 /* If periodic advertising already enabled there is nothing to do. */
1383 if (hci_dev_test_flag(hdev, HCI_LE_PER_ADV))
1386 memset(&cp, 0, sizeof(cp));
1389 cp.handle = instance;
1391 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_PER_ADV_ENABLE,
1392 sizeof(cp), &cp, HCI_CMD_TIMEOUT);
1395 /* Checks if periodic advertising data contains a Basic Announcement and if it
1396 * does generates a Broadcast ID and add Broadcast Announcement.
1398 static int hci_adv_bcast_annoucement(struct hci_dev *hdev, struct adv_info *adv)
1403 /* Skip if NULL adv as instance 0x00 is used for general purpose
1404 * advertising so it cannot used for the likes of Broadcast Announcement
1405 * as it can be overwritten at any point.
1410 /* Check if PA data doesn't contains a Basic Audio Announcement then
1411 * there is nothing to do.
1413 if (!eir_get_service_data(adv->per_adv_data, adv->per_adv_data_len,
1417 /* Check if advertising data already has a Broadcast Announcement since
1418 * the process may want to control the Broadcast ID directly and in that
1419 * case the kernel shall no interfere.
1421 if (eir_get_service_data(adv->adv_data, adv->adv_data_len, 0x1852,
1425 /* Generate Broadcast ID */
1426 get_random_bytes(bid, sizeof(bid));
1427 eir_append_service_data(ad, 0, 0x1852, bid, sizeof(bid));
1428 hci_set_adv_instance_data(hdev, adv->instance, sizeof(ad), ad, 0, NULL);
1430 return hci_update_adv_data_sync(hdev, adv->instance);
1433 int hci_start_per_adv_sync(struct hci_dev *hdev, u8 instance, u8 data_len,
1434 u8 *data, u32 flags, u16 min_interval,
1435 u16 max_interval, u16 sync_interval)
1437 struct adv_info *adv = NULL;
1441 hci_disable_per_advertising_sync(hdev, instance);
1444 adv = hci_find_adv_instance(hdev, instance);
1445 /* Create an instance if that could not be found */
1447 adv = hci_add_per_instance(hdev, instance, flags,
1452 return PTR_ERR(adv);
1457 /* Only start advertising if instance 0 or if a dedicated instance has
1460 if (!adv || added) {
1461 err = hci_start_ext_adv_sync(hdev, instance);
1465 err = hci_adv_bcast_annoucement(hdev, adv);
1470 err = hci_set_per_adv_params_sync(hdev, instance, min_interval,
1475 err = hci_set_per_adv_data_sync(hdev, instance);
1479 err = hci_enable_per_advertising_sync(hdev, instance);
1487 hci_remove_adv_instance(hdev, instance);
1492 static int hci_start_adv_sync(struct hci_dev *hdev, u8 instance)
1496 if (ext_adv_capable(hdev))
1497 return hci_start_ext_adv_sync(hdev, instance);
1499 err = hci_update_adv_data_sync(hdev, instance);
1503 err = hci_update_scan_rsp_data_sync(hdev, instance);
1507 return hci_enable_advertising_sync(hdev);
1510 int hci_enable_advertising_sync(struct hci_dev *hdev)
1512 struct adv_info *adv_instance;
1513 struct hci_cp_le_set_adv_param cp;
1514 u8 own_addr_type, enable = 0x01;
1516 u16 adv_min_interval, adv_max_interval;
1520 if (ext_adv_capable(hdev))
1521 return hci_enable_ext_advertising_sync(hdev,
1522 hdev->cur_adv_instance);
1524 flags = hci_adv_instance_flags(hdev, hdev->cur_adv_instance);
1525 adv_instance = hci_find_adv_instance(hdev, hdev->cur_adv_instance);
1527 /* If the "connectable" instance flag was not set, then choose between
1528 * ADV_IND and ADV_NONCONN_IND based on the global connectable setting.
1530 connectable = (flags & MGMT_ADV_FLAG_CONNECTABLE) ||
1531 mgmt_get_connectable(hdev);
1533 if (!is_advertising_allowed(hdev, connectable))
1536 status = hci_disable_advertising_sync(hdev);
1540 /* Clear the HCI_LE_ADV bit temporarily so that the
1541 * hci_update_random_address knows that it's safe to go ahead
1542 * and write a new random address. The flag will be set back on
1543 * as soon as the SET_ADV_ENABLE HCI command completes.
1545 hci_dev_clear_flag(hdev, HCI_LE_ADV);
1547 /* Set require_privacy to true only when non-connectable
1548 * advertising is used. In that case it is fine to use a
1549 * non-resolvable private address.
1551 status = hci_update_random_address_sync(hdev, !connectable,
1552 adv_use_rpa(hdev, flags),
1557 memset(&cp, 0, sizeof(cp));
1560 adv_min_interval = adv_instance->min_interval;
1561 adv_max_interval = adv_instance->max_interval;
1563 adv_min_interval = hdev->le_adv_min_interval;
1564 adv_max_interval = hdev->le_adv_max_interval;
1568 cp.type = LE_ADV_IND;
1570 if (hci_adv_instance_is_scannable(hdev, hdev->cur_adv_instance))
1571 cp.type = LE_ADV_SCAN_IND;
1573 cp.type = LE_ADV_NONCONN_IND;
1575 if (!hci_dev_test_flag(hdev, HCI_DISCOVERABLE) ||
1576 hci_dev_test_flag(hdev, HCI_LIMITED_DISCOVERABLE)) {
1577 adv_min_interval = DISCOV_LE_FAST_ADV_INT_MIN;
1578 adv_max_interval = DISCOV_LE_FAST_ADV_INT_MAX;
1582 cp.min_interval = cpu_to_le16(adv_min_interval);
1583 cp.max_interval = cpu_to_le16(adv_max_interval);
1584 cp.own_address_type = own_addr_type;
1585 cp.channel_map = hdev->le_adv_channel_map;
1587 status = __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_ADV_PARAM,
1588 sizeof(cp), &cp, HCI_CMD_TIMEOUT);
1592 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_ADV_ENABLE,
1593 sizeof(enable), &enable, HCI_CMD_TIMEOUT);
1596 static int enable_advertising_sync(struct hci_dev *hdev, void *data)
1598 return hci_enable_advertising_sync(hdev);
1601 int hci_enable_advertising(struct hci_dev *hdev)
1603 if (!hci_dev_test_flag(hdev, HCI_ADVERTISING) &&
1604 list_empty(&hdev->adv_instances))
1607 return hci_cmd_sync_queue(hdev, enable_advertising_sync, NULL, NULL);
1610 int hci_remove_ext_adv_instance_sync(struct hci_dev *hdev, u8 instance,
1615 if (!ext_adv_capable(hdev))
1618 err = hci_disable_ext_adv_instance_sync(hdev, instance);
1622 /* If request specifies an instance that doesn't exist, fail */
1623 if (instance > 0 && !hci_find_adv_instance(hdev, instance))
1626 return __hci_cmd_sync_status_sk(hdev, HCI_OP_LE_REMOVE_ADV_SET,
1627 sizeof(instance), &instance, 0,
1628 HCI_CMD_TIMEOUT, sk);
1631 static int remove_ext_adv_sync(struct hci_dev *hdev, void *data)
1633 struct adv_info *adv = data;
1637 instance = adv->instance;
1639 return hci_remove_ext_adv_instance_sync(hdev, instance, NULL);
1642 int hci_remove_ext_adv_instance(struct hci_dev *hdev, u8 instance)
1644 struct adv_info *adv = NULL;
1647 adv = hci_find_adv_instance(hdev, instance);
1652 return hci_cmd_sync_queue(hdev, remove_ext_adv_sync, adv, NULL);
1655 int hci_le_terminate_big_sync(struct hci_dev *hdev, u8 handle, u8 reason)
1657 struct hci_cp_le_term_big cp;
1659 memset(&cp, 0, sizeof(cp));
1663 return __hci_cmd_sync_status(hdev, HCI_OP_LE_TERM_BIG,
1664 sizeof(cp), &cp, HCI_CMD_TIMEOUT);
1667 static int hci_set_ext_adv_data_sync(struct hci_dev *hdev, u8 instance)
1670 struct hci_cp_le_set_ext_adv_data cp;
1671 u8 data[HCI_MAX_EXT_AD_LENGTH];
1674 struct adv_info *adv = NULL;
1677 memset(&pdu, 0, sizeof(pdu));
1680 adv = hci_find_adv_instance(hdev, instance);
1681 if (!adv || !adv->adv_data_changed)
1685 len = eir_create_adv_data(hdev, instance, pdu.data);
1687 pdu.cp.length = len;
1688 pdu.cp.handle = instance;
1689 pdu.cp.operation = LE_SET_ADV_DATA_OP_COMPLETE;
1690 pdu.cp.frag_pref = LE_SET_ADV_DATA_NO_FRAG;
1692 err = __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_EXT_ADV_DATA,
1693 sizeof(pdu.cp) + len, &pdu.cp,
1698 /* Update data if the command succeed */
1700 adv->adv_data_changed = false;
1702 memcpy(hdev->adv_data, pdu.data, len);
1703 hdev->adv_data_len = len;
1709 static int hci_set_adv_data_sync(struct hci_dev *hdev, u8 instance)
1711 struct hci_cp_le_set_adv_data cp;
1714 memset(&cp, 0, sizeof(cp));
1716 len = eir_create_adv_data(hdev, instance, cp.data);
1718 /* There's nothing to do if the data hasn't changed */
1719 if (hdev->adv_data_len == len &&
1720 memcmp(cp.data, hdev->adv_data, len) == 0)
1723 memcpy(hdev->adv_data, cp.data, sizeof(cp.data));
1724 hdev->adv_data_len = len;
1728 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_ADV_DATA,
1729 sizeof(cp), &cp, HCI_CMD_TIMEOUT);
1732 int hci_update_adv_data_sync(struct hci_dev *hdev, u8 instance)
1734 if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED))
1737 if (ext_adv_capable(hdev))
1738 return hci_set_ext_adv_data_sync(hdev, instance);
1740 return hci_set_adv_data_sync(hdev, instance);
1743 int hci_schedule_adv_instance_sync(struct hci_dev *hdev, u8 instance,
1746 struct adv_info *adv = NULL;
1749 if (hci_dev_test_flag(hdev, HCI_ADVERTISING) && !ext_adv_capable(hdev))
1752 if (hdev->adv_instance_timeout)
1755 adv = hci_find_adv_instance(hdev, instance);
1759 /* A zero timeout means unlimited advertising. As long as there is
1760 * only one instance, duration should be ignored. We still set a timeout
1761 * in case further instances are being added later on.
1763 * If the remaining lifetime of the instance is more than the duration
1764 * then the timeout corresponds to the duration, otherwise it will be
1765 * reduced to the remaining instance lifetime.
1767 if (adv->timeout == 0 || adv->duration <= adv->remaining_time)
1768 timeout = adv->duration;
1770 timeout = adv->remaining_time;
1772 /* The remaining time is being reduced unless the instance is being
1773 * advertised without time limit.
1776 adv->remaining_time = adv->remaining_time - timeout;
1778 /* Only use work for scheduling instances with legacy advertising */
1779 if (!ext_adv_capable(hdev)) {
1780 hdev->adv_instance_timeout = timeout;
1781 queue_delayed_work(hdev->req_workqueue,
1782 &hdev->adv_instance_expire,
1783 msecs_to_jiffies(timeout * 1000));
1786 /* If we're just re-scheduling the same instance again then do not
1787 * execute any HCI commands. This happens when a single instance is
1790 if (!force && hdev->cur_adv_instance == instance &&
1791 hci_dev_test_flag(hdev, HCI_LE_ADV))
1794 hdev->cur_adv_instance = instance;
1796 return hci_start_adv_sync(hdev, instance);
1799 static int hci_clear_adv_sets_sync(struct hci_dev *hdev, struct sock *sk)
1803 if (!ext_adv_capable(hdev))
1806 /* Disable instance 0x00 to disable all instances */
1807 err = hci_disable_ext_adv_instance_sync(hdev, 0x00);
1811 return __hci_cmd_sync_status_sk(hdev, HCI_OP_LE_CLEAR_ADV_SETS,
1812 0, NULL, 0, HCI_CMD_TIMEOUT, sk);
1815 static int hci_clear_adv_sync(struct hci_dev *hdev, struct sock *sk, bool force)
1817 struct adv_info *adv, *n;
1820 if (ext_adv_capable(hdev))
1821 /* Remove all existing sets */
1822 err = hci_clear_adv_sets_sync(hdev, sk);
1823 if (ext_adv_capable(hdev))
1826 /* This is safe as long as there is no command send while the lock is
1831 /* Cleanup non-ext instances */
1832 list_for_each_entry_safe(adv, n, &hdev->adv_instances, list) {
1833 u8 instance = adv->instance;
1836 if (!(force || adv->timeout))
1839 err = hci_remove_adv_instance(hdev, instance);
1841 mgmt_advertising_removed(sk, hdev, instance);
1844 hci_dev_unlock(hdev);
1849 static int hci_remove_adv_sync(struct hci_dev *hdev, u8 instance,
1854 /* If we use extended advertising, instance has to be removed first. */
1855 if (ext_adv_capable(hdev))
1856 err = hci_remove_ext_adv_instance_sync(hdev, instance, sk);
1857 if (ext_adv_capable(hdev))
1860 /* This is safe as long as there is no command send while the lock is
1865 err = hci_remove_adv_instance(hdev, instance);
1867 mgmt_advertising_removed(sk, hdev, instance);
1869 hci_dev_unlock(hdev);
1874 /* For a single instance:
1875 * - force == true: The instance will be removed even when its remaining
1876 * lifetime is not zero.
1877 * - force == false: the instance will be deactivated but kept stored unless
1878 * the remaining lifetime is zero.
1880 * For instance == 0x00:
1881 * - force == true: All instances will be removed regardless of their timeout
1883 * - force == false: Only instances that have a timeout will be removed.
1885 int hci_remove_advertising_sync(struct hci_dev *hdev, struct sock *sk,
1886 u8 instance, bool force)
1888 struct adv_info *next = NULL;
1891 /* Cancel any timeout concerning the removed instance(s). */
1892 if (!instance || hdev->cur_adv_instance == instance)
1893 cancel_adv_timeout(hdev);
1895 /* Get the next instance to advertise BEFORE we remove
1896 * the current one. This can be the same instance again
1897 * if there is only one instance.
1899 if (hdev->cur_adv_instance == instance)
1900 next = hci_get_next_instance(hdev, instance);
1903 err = hci_clear_adv_sync(hdev, sk, force);
1907 struct adv_info *adv = hci_find_adv_instance(hdev, instance);
1909 if (force || (adv && adv->timeout && !adv->remaining_time)) {
1910 /* Don't advertise a removed instance. */
1911 if (next && next->instance == instance)
1914 err = hci_remove_adv_sync(hdev, instance, sk);
1920 if (!hdev_is_powered(hdev) || hci_dev_test_flag(hdev, HCI_ADVERTISING))
1923 if (next && !ext_adv_capable(hdev))
1924 hci_schedule_adv_instance_sync(hdev, next->instance, false);
1929 int hci_read_rssi_sync(struct hci_dev *hdev, __le16 handle)
1931 struct hci_cp_read_rssi cp;
1934 return __hci_cmd_sync_status(hdev, HCI_OP_READ_RSSI,
1935 sizeof(cp), &cp, HCI_CMD_TIMEOUT);
1938 int hci_read_clock_sync(struct hci_dev *hdev, struct hci_cp_read_clock *cp)
1940 return __hci_cmd_sync_status(hdev, HCI_OP_READ_CLOCK,
1941 sizeof(*cp), cp, HCI_CMD_TIMEOUT);
1944 int hci_read_tx_power_sync(struct hci_dev *hdev, __le16 handle, u8 type)
1946 struct hci_cp_read_tx_power cp;
1950 return __hci_cmd_sync_status(hdev, HCI_OP_READ_TX_POWER,
1951 sizeof(cp), &cp, HCI_CMD_TIMEOUT);
1954 int hci_disable_advertising_sync(struct hci_dev *hdev)
1959 /* If controller is not advertising we are done. */
1960 if (!hci_dev_test_flag(hdev, HCI_LE_ADV))
1963 if (ext_adv_capable(hdev))
1964 err = hci_disable_ext_adv_instance_sync(hdev, 0x00);
1965 if (ext_adv_capable(hdev))
1968 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_ADV_ENABLE,
1969 sizeof(enable), &enable, HCI_CMD_TIMEOUT);
1972 static int hci_le_set_ext_scan_enable_sync(struct hci_dev *hdev, u8 val,
1975 struct hci_cp_le_set_ext_scan_enable cp;
1977 memset(&cp, 0, sizeof(cp));
1980 if (hci_dev_test_flag(hdev, HCI_MESH))
1981 cp.filter_dup = LE_SCAN_FILTER_DUP_DISABLE;
1983 cp.filter_dup = filter_dup;
1985 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_EXT_SCAN_ENABLE,
1986 sizeof(cp), &cp, HCI_CMD_TIMEOUT);
1989 static int hci_le_set_scan_enable_sync(struct hci_dev *hdev, u8 val,
1992 struct hci_cp_le_set_scan_enable cp;
1994 if (use_ext_scan(hdev))
1995 return hci_le_set_ext_scan_enable_sync(hdev, val, filter_dup);
1997 memset(&cp, 0, sizeof(cp));
2000 if (val && hci_dev_test_flag(hdev, HCI_MESH))
2001 cp.filter_dup = LE_SCAN_FILTER_DUP_DISABLE;
2003 cp.filter_dup = filter_dup;
2005 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_SCAN_ENABLE,
2006 sizeof(cp), &cp, HCI_CMD_TIMEOUT);
2009 static int hci_le_set_addr_resolution_enable_sync(struct hci_dev *hdev, u8 val)
2011 if (!use_ll_privacy(hdev))
2014 /* If controller is not/already resolving we are done. */
2015 if (val == hci_dev_test_flag(hdev, HCI_LL_RPA_RESOLUTION))
2018 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_ADDR_RESOLV_ENABLE,
2019 sizeof(val), &val, HCI_CMD_TIMEOUT);
2022 static int hci_scan_disable_sync(struct hci_dev *hdev)
2026 /* If controller is not scanning we are done. */
2027 if (!hci_dev_test_flag(hdev, HCI_LE_SCAN))
2030 if (hdev->scanning_paused) {
2031 bt_dev_dbg(hdev, "Scanning is paused for suspend");
2035 err = hci_le_set_scan_enable_sync(hdev, LE_SCAN_DISABLE, 0x00);
2037 bt_dev_err(hdev, "Unable to disable scanning: %d", err);
2044 static bool scan_use_rpa(struct hci_dev *hdev)
2046 return hci_dev_test_flag(hdev, HCI_PRIVACY);
2049 static void hci_start_interleave_scan(struct hci_dev *hdev)
2051 hdev->interleave_scan_state = INTERLEAVE_SCAN_NO_FILTER;
2052 queue_delayed_work(hdev->req_workqueue,
2053 &hdev->interleave_scan, 0);
2056 static bool is_interleave_scanning(struct hci_dev *hdev)
2058 return hdev->interleave_scan_state != INTERLEAVE_SCAN_NONE;
2061 static void cancel_interleave_scan(struct hci_dev *hdev)
2063 bt_dev_dbg(hdev, "cancelling interleave scan");
2065 cancel_delayed_work_sync(&hdev->interleave_scan);
2067 hdev->interleave_scan_state = INTERLEAVE_SCAN_NONE;
2070 /* Return true if interleave_scan wasn't started until exiting this function,
2071 * otherwise, return false
2073 static bool hci_update_interleaved_scan_sync(struct hci_dev *hdev)
2075 /* Do interleaved scan only if all of the following are true:
2076 * - There is at least one ADV monitor
2077 * - At least one pending LE connection or one device to be scanned for
2078 * - Monitor offloading is not supported
2079 * If so, we should alternate between allowlist scan and one without
2080 * any filters to save power.
2082 bool use_interleaving = hci_is_adv_monitoring(hdev) &&
2083 !(list_empty(&hdev->pend_le_conns) &&
2084 list_empty(&hdev->pend_le_reports)) &&
2085 hci_get_adv_monitor_offload_ext(hdev) ==
2086 HCI_ADV_MONITOR_EXT_NONE;
2087 bool is_interleaving = is_interleave_scanning(hdev);
2089 if (use_interleaving && !is_interleaving) {
2090 hci_start_interleave_scan(hdev);
2091 bt_dev_dbg(hdev, "starting interleave scan");
2095 if (!use_interleaving && is_interleaving)
2096 cancel_interleave_scan(hdev);
2101 /* Removes connection to resolve list if needed.*/
2102 static int hci_le_del_resolve_list_sync(struct hci_dev *hdev,
2103 bdaddr_t *bdaddr, u8 bdaddr_type)
2105 struct hci_cp_le_del_from_resolv_list cp;
2106 struct bdaddr_list_with_irk *entry;
2108 if (!use_ll_privacy(hdev))
2111 /* Check if the IRK has been programmed */
2112 entry = hci_bdaddr_list_lookup_with_irk(&hdev->le_resolv_list, bdaddr,
2117 cp.bdaddr_type = bdaddr_type;
2118 bacpy(&cp.bdaddr, bdaddr);
2120 return __hci_cmd_sync_status(hdev, HCI_OP_LE_DEL_FROM_RESOLV_LIST,
2121 sizeof(cp), &cp, HCI_CMD_TIMEOUT);
2124 static int hci_le_del_accept_list_sync(struct hci_dev *hdev,
2125 bdaddr_t *bdaddr, u8 bdaddr_type)
2127 struct hci_cp_le_del_from_accept_list cp;
2130 /* Check if device is on accept list before removing it */
2131 if (!hci_bdaddr_list_lookup(&hdev->le_accept_list, bdaddr, bdaddr_type))
2134 cp.bdaddr_type = bdaddr_type;
2135 bacpy(&cp.bdaddr, bdaddr);
2137 /* Ignore errors when removing from resolving list as that is likely
2138 * that the device was never added.
2140 hci_le_del_resolve_list_sync(hdev, &cp.bdaddr, cp.bdaddr_type);
2142 err = __hci_cmd_sync_status(hdev, HCI_OP_LE_DEL_FROM_ACCEPT_LIST,
2143 sizeof(cp), &cp, HCI_CMD_TIMEOUT);
2145 bt_dev_err(hdev, "Unable to remove from allow list: %d", err);
2149 bt_dev_dbg(hdev, "Remove %pMR (0x%x) from allow list", &cp.bdaddr,
2155 /* Adds connection to resolve list if needed.
2156 * Setting params to NULL programs local hdev->irk
2158 static int hci_le_add_resolve_list_sync(struct hci_dev *hdev,
2159 struct hci_conn_params *params)
2161 struct hci_cp_le_add_to_resolv_list cp;
2162 struct smp_irk *irk;
2163 struct bdaddr_list_with_irk *entry;
2165 if (!use_ll_privacy(hdev))
2168 /* Attempt to program local identity address, type and irk if params is
2172 if (!hci_dev_test_flag(hdev, HCI_PRIVACY))
2175 hci_copy_identity_address(hdev, &cp.bdaddr, &cp.bdaddr_type);
2176 memcpy(cp.peer_irk, hdev->irk, 16);
2180 irk = hci_find_irk_by_addr(hdev, ¶ms->addr, params->addr_type);
2184 /* Check if the IK has _not_ been programmed yet. */
2185 entry = hci_bdaddr_list_lookup_with_irk(&hdev->le_resolv_list,
2191 cp.bdaddr_type = params->addr_type;
2192 bacpy(&cp.bdaddr, ¶ms->addr);
2193 memcpy(cp.peer_irk, irk->val, 16);
2195 /* Default privacy mode is always Network */
2196 params->privacy_mode = HCI_NETWORK_PRIVACY;
2199 if (hci_dev_test_flag(hdev, HCI_PRIVACY))
2200 memcpy(cp.local_irk, hdev->irk, 16);
2202 memset(cp.local_irk, 0, 16);
2204 return __hci_cmd_sync_status(hdev, HCI_OP_LE_ADD_TO_RESOLV_LIST,
2205 sizeof(cp), &cp, HCI_CMD_TIMEOUT);
2208 /* Set Device Privacy Mode. */
2209 static int hci_le_set_privacy_mode_sync(struct hci_dev *hdev,
2210 struct hci_conn_params *params)
2212 struct hci_cp_le_set_privacy_mode cp;
2213 struct smp_irk *irk;
2215 /* If device privacy mode has already been set there is nothing to do */
2216 if (params->privacy_mode == HCI_DEVICE_PRIVACY)
2219 /* Check if HCI_CONN_FLAG_DEVICE_PRIVACY has been set as it also
2220 * indicates that LL Privacy has been enabled and
2221 * HCI_OP_LE_SET_PRIVACY_MODE is supported.
2223 if (!(params->flags & HCI_CONN_FLAG_DEVICE_PRIVACY))
2226 irk = hci_find_irk_by_addr(hdev, ¶ms->addr, params->addr_type);
2230 memset(&cp, 0, sizeof(cp));
2231 cp.bdaddr_type = irk->addr_type;
2232 bacpy(&cp.bdaddr, &irk->bdaddr);
2233 cp.mode = HCI_DEVICE_PRIVACY;
2235 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_PRIVACY_MODE,
2236 sizeof(cp), &cp, HCI_CMD_TIMEOUT);
2239 /* Adds connection to allow list if needed, if the device uses RPA (has IRK)
2240 * this attempts to program the device in the resolving list as well and
2241 * properly set the privacy mode.
2243 static int hci_le_add_accept_list_sync(struct hci_dev *hdev,
2244 struct hci_conn_params *params,
2247 struct hci_cp_le_add_to_accept_list cp;
2250 /* During suspend, only wakeable devices can be in acceptlist */
2251 if (hdev->suspended &&
2252 !(params->flags & HCI_CONN_FLAG_REMOTE_WAKEUP))
2255 /* Select filter policy to accept all advertising */
2256 if (*num_entries >= hdev->le_accept_list_size)
2259 /* Accept list can not be used with RPAs */
2260 if (!use_ll_privacy(hdev) &&
2261 hci_find_irk_by_addr(hdev, ¶ms->addr, params->addr_type))
2264 /* Attempt to program the device in the resolving list first to avoid
2265 * having to rollback in case it fails since the resolving list is
2266 * dynamic it can probably be smaller than the accept list.
2268 err = hci_le_add_resolve_list_sync(hdev, params);
2270 bt_dev_err(hdev, "Unable to add to resolve list: %d", err);
2274 /* Set Privacy Mode */
2275 err = hci_le_set_privacy_mode_sync(hdev, params);
2277 bt_dev_err(hdev, "Unable to set privacy mode: %d", err);
2281 /* Check if already in accept list */
2282 if (hci_bdaddr_list_lookup(&hdev->le_accept_list, ¶ms->addr,
2287 cp.bdaddr_type = params->addr_type;
2288 bacpy(&cp.bdaddr, ¶ms->addr);
2290 err = __hci_cmd_sync_status(hdev, HCI_OP_LE_ADD_TO_ACCEPT_LIST,
2291 sizeof(cp), &cp, HCI_CMD_TIMEOUT);
2293 bt_dev_err(hdev, "Unable to add to allow list: %d", err);
2294 /* Rollback the device from the resolving list */
2295 hci_le_del_resolve_list_sync(hdev, &cp.bdaddr, cp.bdaddr_type);
2299 bt_dev_dbg(hdev, "Add %pMR (0x%x) to allow list", &cp.bdaddr,
2305 /* This function disables/pause all advertising instances */
2306 static int hci_pause_advertising_sync(struct hci_dev *hdev)
2311 /* If already been paused there is nothing to do. */
2312 if (hdev->advertising_paused)
2315 bt_dev_dbg(hdev, "Pausing directed advertising");
2317 /* Stop directed advertising */
2318 old_state = hci_dev_test_flag(hdev, HCI_ADVERTISING);
2320 /* When discoverable timeout triggers, then just make sure
2321 * the limited discoverable flag is cleared. Even in the case
2322 * of a timeout triggered from general discoverable, it is
2323 * safe to unconditionally clear the flag.
2325 hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
2326 hci_dev_clear_flag(hdev, HCI_DISCOVERABLE);
2327 hdev->discov_timeout = 0;
2330 bt_dev_dbg(hdev, "Pausing advertising instances");
2332 /* Call to disable any advertisements active on the controller.
2333 * This will succeed even if no advertisements are configured.
2335 err = hci_disable_advertising_sync(hdev);
2339 /* If we are using software rotation, pause the loop */
2340 if (!ext_adv_capable(hdev))
2341 cancel_adv_timeout(hdev);
2343 hdev->advertising_paused = true;
2344 hdev->advertising_old_state = old_state;
2349 /* This function enables all user advertising instances */
2350 static int hci_resume_advertising_sync(struct hci_dev *hdev)
2352 struct adv_info *adv, *tmp;
2355 /* If advertising has not been paused there is nothing to do. */
2356 if (!hdev->advertising_paused)
2359 /* Resume directed advertising */
2360 hdev->advertising_paused = false;
2361 if (hdev->advertising_old_state) {
2362 hci_dev_set_flag(hdev, HCI_ADVERTISING);
2363 hdev->advertising_old_state = 0;
2366 bt_dev_dbg(hdev, "Resuming advertising instances");
2368 if (ext_adv_capable(hdev)) {
2369 /* Call for each tracked instance to be re-enabled */
2370 list_for_each_entry_safe(adv, tmp, &hdev->adv_instances, list) {
2371 err = hci_enable_ext_advertising_sync(hdev,
2376 /* If the instance cannot be resumed remove it */
2377 hci_remove_ext_adv_instance_sync(hdev, adv->instance,
2381 /* Schedule for most recent instance to be restarted and begin
2382 * the software rotation loop
2384 err = hci_schedule_adv_instance_sync(hdev,
2385 hdev->cur_adv_instance,
2389 hdev->advertising_paused = false;
2394 static int hci_pause_addr_resolution(struct hci_dev *hdev)
2398 if (!use_ll_privacy(hdev))
2401 if (!hci_dev_test_flag(hdev, HCI_LL_RPA_RESOLUTION))
2404 /* Cannot disable addr resolution if scanning is enabled or
2405 * when initiating an LE connection.
2407 if (hci_dev_test_flag(hdev, HCI_LE_SCAN) ||
2408 hci_lookup_le_connect(hdev)) {
2409 bt_dev_err(hdev, "Command not allowed when scan/LE connect");
2413 /* Cannot disable addr resolution if advertising is enabled. */
2414 err = hci_pause_advertising_sync(hdev);
2416 bt_dev_err(hdev, "Pause advertising failed: %d", err);
2420 err = hci_le_set_addr_resolution_enable_sync(hdev, 0x00);
2422 bt_dev_err(hdev, "Unable to disable Address Resolution: %d",
2425 /* Return if address resolution is disabled and RPA is not used. */
2426 if (!err && scan_use_rpa(hdev))
2429 hci_resume_advertising_sync(hdev);
2433 struct sk_buff *hci_read_local_oob_data_sync(struct hci_dev *hdev,
2434 bool extended, struct sock *sk)
2436 u16 opcode = extended ? HCI_OP_READ_LOCAL_OOB_EXT_DATA :
2437 HCI_OP_READ_LOCAL_OOB_DATA;
2439 return __hci_cmd_sync_sk(hdev, opcode, 0, NULL, 0, HCI_CMD_TIMEOUT, sk);
2442 /* Device must not be scanning when updating the accept list.
2444 * Update is done using the following sequence:
2446 * use_ll_privacy((Disable Advertising) -> Disable Resolving List) ->
2447 * Remove Devices From Accept List ->
2448 * (has IRK && use_ll_privacy(Remove Devices From Resolving List))->
2449 * Add Devices to Accept List ->
2450 * (has IRK && use_ll_privacy(Remove Devices From Resolving List)) ->
2451 * use_ll_privacy(Enable Resolving List -> (Enable Advertising)) ->
2454 * In case of failure advertising shall be restored to its original state and
2455 * return would disable accept list since either accept or resolving list could
2456 * not be programmed.
2459 static u8 hci_update_accept_list_sync(struct hci_dev *hdev)
2461 struct hci_conn_params *params;
2462 struct bdaddr_list *b, *t;
2464 bool pend_conn, pend_report;
2468 /* Pause advertising if resolving list can be used as controllers
2469 * cannot accept resolving list modifications while advertising.
2471 if (use_ll_privacy(hdev)) {
2472 err = hci_pause_advertising_sync(hdev);
2474 bt_dev_err(hdev, "pause advertising failed: %d", err);
2479 /* Disable address resolution while reprogramming accept list since
2480 * devices that do have an IRK will be programmed in the resolving list
2481 * when LL Privacy is enabled.
2483 err = hci_le_set_addr_resolution_enable_sync(hdev, 0x00);
2485 bt_dev_err(hdev, "Unable to disable LL privacy: %d", err);
2489 /* Go through the current accept list programmed into the
2490 * controller one by one and check if that address is connected or is
2491 * still in the list of pending connections or list of devices to
2492 * report. If not present in either list, then remove it from
2495 list_for_each_entry_safe(b, t, &hdev->le_accept_list, list) {
2496 if (hci_conn_hash_lookup_le(hdev, &b->bdaddr, b->bdaddr_type))
2499 pend_conn = hci_pend_le_action_lookup(&hdev->pend_le_conns,
2502 pend_report = hci_pend_le_action_lookup(&hdev->pend_le_reports,
2506 /* If the device is not likely to connect or report,
2507 * remove it from the acceptlist.
2509 if (!pend_conn && !pend_report) {
2510 hci_le_del_accept_list_sync(hdev, &b->bdaddr,
2518 /* Since all no longer valid accept list entries have been
2519 * removed, walk through the list of pending connections
2520 * and ensure that any new device gets programmed into
2523 * If the list of the devices is larger than the list of
2524 * available accept list entries in the controller, then
2525 * just abort and return filer policy value to not use the
2528 list_for_each_entry(params, &hdev->pend_le_conns, action) {
2529 err = hci_le_add_accept_list_sync(hdev, params, &num_entries);
2534 /* After adding all new pending connections, walk through
2535 * the list of pending reports and also add these to the
2536 * accept list if there is still space. Abort if space runs out.
2538 list_for_each_entry(params, &hdev->pend_le_reports, action) {
2539 err = hci_le_add_accept_list_sync(hdev, params, &num_entries);
2544 /* Use the allowlist unless the following conditions are all true:
2545 * - We are not currently suspending
2546 * - There are 1 or more ADV monitors registered and it's not offloaded
2547 * - Interleaved scanning is not currently using the allowlist
2549 if (!idr_is_empty(&hdev->adv_monitors_idr) && !hdev->suspended &&
2550 hci_get_adv_monitor_offload_ext(hdev) == HCI_ADV_MONITOR_EXT_NONE &&
2551 hdev->interleave_scan_state != INTERLEAVE_SCAN_ALLOWLIST)
2555 filter_policy = err ? 0x00 : 0x01;
2557 /* Enable address resolution when LL Privacy is enabled. */
2558 err = hci_le_set_addr_resolution_enable_sync(hdev, 0x01);
2560 bt_dev_err(hdev, "Unable to enable LL privacy: %d", err);
2562 /* Resume advertising if it was paused */
2563 if (use_ll_privacy(hdev))
2564 hci_resume_advertising_sync(hdev);
2566 /* Select filter policy to use accept list */
2567 return filter_policy;
2570 /* Returns true if an le connection is in the scanning state */
2571 static inline bool hci_is_le_conn_scanning(struct hci_dev *hdev)
2573 struct hci_conn_hash *h = &hdev->conn_hash;
2578 list_for_each_entry_rcu(c, &h->list, list) {
2579 if (c->type == LE_LINK && c->state == BT_CONNECT &&
2580 test_bit(HCI_CONN_SCANNING, &c->flags)) {
2591 static int hci_le_set_ext_scan_param_sync(struct hci_dev *hdev, u8 type,
2592 u16 interval, u16 window,
2593 u8 own_addr_type, u8 filter_policy)
2595 struct hci_cp_le_set_ext_scan_params *cp;
2596 struct hci_cp_le_scan_phy_params *phy;
2597 u8 data[sizeof(*cp) + sizeof(*phy) * 2];
2601 phy = (void *)cp->data;
2603 memset(data, 0, sizeof(data));
2605 cp->own_addr_type = own_addr_type;
2606 cp->filter_policy = filter_policy;
2608 if (scan_1m(hdev) || scan_2m(hdev)) {
2609 cp->scanning_phys |= LE_SCAN_PHY_1M;
2612 phy->interval = cpu_to_le16(interval);
2613 phy->window = cpu_to_le16(window);
2619 if (scan_coded(hdev)) {
2620 cp->scanning_phys |= LE_SCAN_PHY_CODED;
2623 phy->interval = cpu_to_le16(interval);
2624 phy->window = cpu_to_le16(window);
2630 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_EXT_SCAN_PARAMS,
2631 sizeof(*cp) + sizeof(*phy) * num_phy,
2632 data, HCI_CMD_TIMEOUT);
2635 static int hci_le_set_scan_param_sync(struct hci_dev *hdev, u8 type,
2636 u16 interval, u16 window,
2637 u8 own_addr_type, u8 filter_policy)
2639 struct hci_cp_le_set_scan_param cp;
2641 if (use_ext_scan(hdev))
2642 return hci_le_set_ext_scan_param_sync(hdev, type, interval,
2643 window, own_addr_type,
2646 memset(&cp, 0, sizeof(cp));
2648 cp.interval = cpu_to_le16(interval);
2649 cp.window = cpu_to_le16(window);
2650 cp.own_address_type = own_addr_type;
2651 cp.filter_policy = filter_policy;
2653 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_SCAN_PARAM,
2654 sizeof(cp), &cp, HCI_CMD_TIMEOUT);
2657 static int hci_start_scan_sync(struct hci_dev *hdev, u8 type, u16 interval,
2658 u16 window, u8 own_addr_type, u8 filter_policy,
2663 if (hdev->scanning_paused) {
2664 bt_dev_dbg(hdev, "Scanning is paused for suspend");
2668 err = hci_le_set_scan_param_sync(hdev, type, interval, window,
2669 own_addr_type, filter_policy);
2673 return hci_le_set_scan_enable_sync(hdev, LE_SCAN_ENABLE, filter_dup);
2676 static int hci_passive_scan_sync(struct hci_dev *hdev)
2680 u16 window, interval;
2681 u8 filter_dups = LE_SCAN_FILTER_DUP_ENABLE;
2684 if (hdev->scanning_paused) {
2685 bt_dev_dbg(hdev, "Scanning is paused for suspend");
2689 err = hci_scan_disable_sync(hdev);
2691 bt_dev_err(hdev, "disable scanning failed: %d", err);
2695 /* Set require_privacy to false since no SCAN_REQ are send
2696 * during passive scanning. Not using an non-resolvable address
2697 * here is important so that peer devices using direct
2698 * advertising with our address will be correctly reported
2699 * by the controller.
2701 if (hci_update_random_address_sync(hdev, false, scan_use_rpa(hdev),
2705 if (hdev->enable_advmon_interleave_scan &&
2706 hci_update_interleaved_scan_sync(hdev))
2709 bt_dev_dbg(hdev, "interleave state %d", hdev->interleave_scan_state);
2711 /* Adding or removing entries from the accept list must
2712 * happen before enabling scanning. The controller does
2713 * not allow accept list modification while scanning.
2715 filter_policy = hci_update_accept_list_sync(hdev);
2717 /* When the controller is using random resolvable addresses and
2718 * with that having LE privacy enabled, then controllers with
2719 * Extended Scanner Filter Policies support can now enable support
2720 * for handling directed advertising.
2722 * So instead of using filter polices 0x00 (no acceptlist)
2723 * and 0x01 (acceptlist enabled) use the new filter policies
2724 * 0x02 (no acceptlist) and 0x03 (acceptlist enabled).
2726 if (hci_dev_test_flag(hdev, HCI_PRIVACY) &&
2727 (hdev->le_features[0] & HCI_LE_EXT_SCAN_POLICY))
2728 filter_policy |= 0x02;
2730 if (hdev->suspended) {
2731 window = hdev->le_scan_window_suspend;
2732 interval = hdev->le_scan_int_suspend;
2733 } else if (hci_is_le_conn_scanning(hdev)) {
2734 window = hdev->le_scan_window_connect;
2735 interval = hdev->le_scan_int_connect;
2736 } else if (hci_is_adv_monitoring(hdev)) {
2737 window = hdev->le_scan_window_adv_monitor;
2738 interval = hdev->le_scan_int_adv_monitor;
2740 window = hdev->le_scan_window;
2741 interval = hdev->le_scan_interval;
2744 /* Disable all filtering for Mesh */
2745 if (hci_dev_test_flag(hdev, HCI_MESH)) {
2747 filter_dups = LE_SCAN_FILTER_DUP_DISABLE;
2750 bt_dev_dbg(hdev, "LE passive scan with acceptlist = %d", filter_policy);
2752 return hci_start_scan_sync(hdev, LE_SCAN_PASSIVE, interval, window,
2753 own_addr_type, filter_policy, filter_dups);
2756 /* This function controls the passive scanning based on hdev->pend_le_conns
2757 * list. If there are pending LE connection we start the background scanning,
2758 * otherwise we stop it in the following sequence:
2760 * If there are devices to scan:
2762 * Disable Scanning -> Update Accept List ->
2763 * use_ll_privacy((Disable Advertising) -> Disable Resolving List ->
2764 * Update Resolving List -> Enable Resolving List -> (Enable Advertising)) ->
2771 int hci_update_passive_scan_sync(struct hci_dev *hdev)
2775 if (!test_bit(HCI_UP, &hdev->flags) ||
2776 test_bit(HCI_INIT, &hdev->flags) ||
2777 hci_dev_test_flag(hdev, HCI_SETUP) ||
2778 hci_dev_test_flag(hdev, HCI_CONFIG) ||
2779 hci_dev_test_flag(hdev, HCI_AUTO_OFF) ||
2780 hci_dev_test_flag(hdev, HCI_UNREGISTER))
2783 /* No point in doing scanning if LE support hasn't been enabled */
2784 if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED))
2787 /* If discovery is active don't interfere with it */
2788 if (hdev->discovery.state != DISCOVERY_STOPPED)
2791 /* Reset RSSI and UUID filters when starting background scanning
2792 * since these filters are meant for service discovery only.
2794 * The Start Discovery and Start Service Discovery operations
2795 * ensure to set proper values for RSSI threshold and UUID
2796 * filter list. So it is safe to just reset them here.
2798 hci_discovery_filter_clear(hdev);
2800 bt_dev_dbg(hdev, "ADV monitoring is %s",
2801 hci_is_adv_monitoring(hdev) ? "on" : "off");
2803 if (!hci_dev_test_flag(hdev, HCI_MESH) &&
2804 list_empty(&hdev->pend_le_conns) &&
2805 list_empty(&hdev->pend_le_reports) &&
2806 !hci_is_adv_monitoring(hdev) &&
2807 !hci_dev_test_flag(hdev, HCI_PA_SYNC)) {
2808 /* If there is no pending LE connections or devices
2809 * to be scanned for or no ADV monitors, we should stop the
2810 * background scanning.
2813 bt_dev_dbg(hdev, "stopping background scanning");
2815 err = hci_scan_disable_sync(hdev);
2817 bt_dev_err(hdev, "stop background scanning failed: %d",
2820 /* If there is at least one pending LE connection, we should
2821 * keep the background scan running.
2824 /* If controller is connecting, we should not start scanning
2825 * since some controllers are not able to scan and connect at
2828 if (hci_lookup_le_connect(hdev))
2831 bt_dev_dbg(hdev, "start background scanning");
2833 err = hci_passive_scan_sync(hdev);
2835 bt_dev_err(hdev, "start background scanning failed: %d",
2842 static int update_scan_sync(struct hci_dev *hdev, void *data)
2844 return hci_update_scan_sync(hdev);
2847 int hci_update_scan(struct hci_dev *hdev)
2849 return hci_cmd_sync_queue(hdev, update_scan_sync, NULL, NULL);
2852 static int update_passive_scan_sync(struct hci_dev *hdev, void *data)
2854 return hci_update_passive_scan_sync(hdev);
2857 int hci_update_passive_scan(struct hci_dev *hdev)
2859 /* Only queue if it would have any effect */
2860 if (!test_bit(HCI_UP, &hdev->flags) ||
2861 test_bit(HCI_INIT, &hdev->flags) ||
2862 hci_dev_test_flag(hdev, HCI_SETUP) ||
2863 hci_dev_test_flag(hdev, HCI_CONFIG) ||
2864 hci_dev_test_flag(hdev, HCI_AUTO_OFF) ||
2865 hci_dev_test_flag(hdev, HCI_UNREGISTER))
2868 return hci_cmd_sync_queue(hdev, update_passive_scan_sync, NULL, NULL);
2871 int hci_write_sc_support_sync(struct hci_dev *hdev, u8 val)
2875 if (!bredr_sc_enabled(hdev) || lmp_host_sc_capable(hdev))
2878 err = __hci_cmd_sync_status(hdev, HCI_OP_WRITE_SC_SUPPORT,
2879 sizeof(val), &val, HCI_CMD_TIMEOUT);
2883 hdev->features[1][0] |= LMP_HOST_SC;
2884 hci_dev_set_flag(hdev, HCI_SC_ENABLED);
2886 hdev->features[1][0] &= ~LMP_HOST_SC;
2887 hci_dev_clear_flag(hdev, HCI_SC_ENABLED);
2894 int hci_write_ssp_mode_sync(struct hci_dev *hdev, u8 mode)
2898 if (!hci_dev_test_flag(hdev, HCI_SSP_ENABLED) ||
2899 lmp_host_ssp_capable(hdev))
2902 if (!mode && hci_dev_test_flag(hdev, HCI_USE_DEBUG_KEYS)) {
2903 __hci_cmd_sync_status(hdev, HCI_OP_WRITE_SSP_DEBUG_MODE,
2904 sizeof(mode), &mode, HCI_CMD_TIMEOUT);
2907 err = __hci_cmd_sync_status(hdev, HCI_OP_WRITE_SSP_MODE,
2908 sizeof(mode), &mode, HCI_CMD_TIMEOUT);
2912 return hci_write_sc_support_sync(hdev, 0x01);
2915 int hci_write_le_host_supported_sync(struct hci_dev *hdev, u8 le, u8 simul)
2917 struct hci_cp_write_le_host_supported cp;
2919 if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED) ||
2920 !lmp_bredr_capable(hdev))
2923 /* Check first if we already have the right host state
2924 * (host features set)
2926 if (le == lmp_host_le_capable(hdev) &&
2927 simul == lmp_host_le_br_capable(hdev))
2930 memset(&cp, 0, sizeof(cp));
2935 return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_LE_HOST_SUPPORTED,
2936 sizeof(cp), &cp, HCI_CMD_TIMEOUT);
2939 static int hci_powered_update_adv_sync(struct hci_dev *hdev)
2941 struct adv_info *adv, *tmp;
2944 if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED))
2947 /* If RPA Resolution has not been enable yet it means the
2948 * resolving list is empty and we should attempt to program the
2949 * local IRK in order to support using own_addr_type
2950 * ADDR_LE_DEV_RANDOM_RESOLVED (0x03).
2952 if (!hci_dev_test_flag(hdev, HCI_LL_RPA_RESOLUTION)) {
2953 hci_le_add_resolve_list_sync(hdev, NULL);
2954 hci_le_set_addr_resolution_enable_sync(hdev, 0x01);
2957 /* Make sure the controller has a good default for
2958 * advertising data. This also applies to the case
2959 * where BR/EDR was toggled during the AUTO_OFF phase.
2961 if (hci_dev_test_flag(hdev, HCI_ADVERTISING) ||
2962 list_empty(&hdev->adv_instances)) {
2963 if (ext_adv_capable(hdev)) {
2964 err = hci_setup_ext_adv_instance_sync(hdev, 0x00);
2966 hci_update_scan_rsp_data_sync(hdev, 0x00);
2968 err = hci_update_adv_data_sync(hdev, 0x00);
2970 hci_update_scan_rsp_data_sync(hdev, 0x00);
2973 if (hci_dev_test_flag(hdev, HCI_ADVERTISING))
2974 hci_enable_advertising_sync(hdev);
2977 /* Call for each tracked instance to be scheduled */
2978 list_for_each_entry_safe(adv, tmp, &hdev->adv_instances, list)
2979 hci_schedule_adv_instance_sync(hdev, adv->instance, true);
2984 static int hci_write_auth_enable_sync(struct hci_dev *hdev)
2988 link_sec = hci_dev_test_flag(hdev, HCI_LINK_SECURITY);
2989 if (link_sec == test_bit(HCI_AUTH, &hdev->flags))
2992 return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_AUTH_ENABLE,
2993 sizeof(link_sec), &link_sec,
2997 int hci_write_fast_connectable_sync(struct hci_dev *hdev, bool enable)
2999 struct hci_cp_write_page_scan_activity cp;
3003 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
3006 if (hdev->hci_ver < BLUETOOTH_VER_1_2)
3009 memset(&cp, 0, sizeof(cp));
3012 type = PAGE_SCAN_TYPE_INTERLACED;
3014 /* 160 msec page scan interval */
3015 cp.interval = cpu_to_le16(0x0100);
3017 type = hdev->def_page_scan_type;
3018 cp.interval = cpu_to_le16(hdev->def_page_scan_int);
3021 cp.window = cpu_to_le16(hdev->def_page_scan_window);
3023 if (__cpu_to_le16(hdev->page_scan_interval) != cp.interval ||
3024 __cpu_to_le16(hdev->page_scan_window) != cp.window) {
3025 err = __hci_cmd_sync_status(hdev,
3026 HCI_OP_WRITE_PAGE_SCAN_ACTIVITY,
3027 sizeof(cp), &cp, HCI_CMD_TIMEOUT);
3032 if (hdev->page_scan_type != type)
3033 err = __hci_cmd_sync_status(hdev,
3034 HCI_OP_WRITE_PAGE_SCAN_TYPE,
3035 sizeof(type), &type,
3041 static bool disconnected_accept_list_entries(struct hci_dev *hdev)
3043 struct bdaddr_list *b;
3045 list_for_each_entry(b, &hdev->accept_list, list) {
3046 struct hci_conn *conn;
3048 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &b->bdaddr);
3052 if (conn->state != BT_CONNECTED && conn->state != BT_CONFIG)
3059 static int hci_write_scan_enable_sync(struct hci_dev *hdev, u8 val)
3061 return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_SCAN_ENABLE,
3066 int hci_update_scan_sync(struct hci_dev *hdev)
3070 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
3073 if (!hdev_is_powered(hdev))
3076 if (mgmt_powering_down(hdev))
3079 if (hdev->scanning_paused)
3082 if (hci_dev_test_flag(hdev, HCI_CONNECTABLE) ||
3083 disconnected_accept_list_entries(hdev))
3086 scan = SCAN_DISABLED;
3088 if (hci_dev_test_flag(hdev, HCI_DISCOVERABLE))
3089 scan |= SCAN_INQUIRY;
3091 if (test_bit(HCI_PSCAN, &hdev->flags) == !!(scan & SCAN_PAGE) &&
3092 test_bit(HCI_ISCAN, &hdev->flags) == !!(scan & SCAN_INQUIRY))
3095 return hci_write_scan_enable_sync(hdev, scan);
3098 int hci_update_name_sync(struct hci_dev *hdev)
3100 struct hci_cp_write_local_name cp;
3102 memset(&cp, 0, sizeof(cp));
3104 memcpy(cp.name, hdev->dev_name, sizeof(cp.name));
3106 return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_LOCAL_NAME,
3111 /* This function perform powered update HCI command sequence after the HCI init
3112 * sequence which end up resetting all states, the sequence is as follows:
3114 * HCI_SSP_ENABLED(Enable SSP)
3115 * HCI_LE_ENABLED(Enable LE)
3116 * HCI_LE_ENABLED(use_ll_privacy(Add local IRK to Resolving List) ->
3118 * Enable Authentication
3119 * lmp_bredr_capable(Set Fast Connectable -> Set Scan Type -> Set Class ->
3120 * Set Name -> Set EIR)
3121 * HCI_FORCE_STATIC_ADDR | BDADDR_ANY && !HCI_BREDR_ENABLED (Set Static Address)
3123 int hci_powered_update_sync(struct hci_dev *hdev)
3127 /* Register the available SMP channels (BR/EDR and LE) only when
3128 * successfully powering on the controller. This late
3129 * registration is required so that LE SMP can clearly decide if
3130 * the public address or static address is used.
3134 err = hci_write_ssp_mode_sync(hdev, 0x01);
3138 err = hci_write_le_host_supported_sync(hdev, 0x01, 0x00);
3142 err = hci_powered_update_adv_sync(hdev);
3146 err = hci_write_auth_enable_sync(hdev);
3150 if (lmp_bredr_capable(hdev)) {
3151 if (hci_dev_test_flag(hdev, HCI_FAST_CONNECTABLE))
3152 hci_write_fast_connectable_sync(hdev, true);
3154 hci_write_fast_connectable_sync(hdev, false);
3155 hci_update_scan_sync(hdev);
3156 hci_update_class_sync(hdev);
3157 hci_update_name_sync(hdev);
3158 hci_update_eir_sync(hdev);
3161 /* If forcing static address is in use or there is no public
3162 * address use the static address as random address (but skip
3163 * the HCI command if the current random address is already the
3166 * In case BR/EDR has been disabled on a dual-mode controller
3167 * and a static address has been configured, then use that
3168 * address instead of the public BR/EDR address.
3170 if (hci_dev_test_flag(hdev, HCI_FORCE_STATIC_ADDR) ||
3171 (!bacmp(&hdev->bdaddr, BDADDR_ANY) &&
3172 !hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))) {
3173 if (bacmp(&hdev->static_addr, BDADDR_ANY))
3174 return hci_set_random_addr_sync(hdev,
3175 &hdev->static_addr);
3182 * hci_dev_get_bd_addr_from_property - Get the Bluetooth Device Address
3183 * (BD_ADDR) for a HCI device from
3184 * a firmware node property.
3185 * @hdev: The HCI device
3187 * Search the firmware node for 'local-bd-address'.
3189 * All-zero BD addresses are rejected, because those could be properties
3190 * that exist in the firmware tables, but were not updated by the firmware. For
3191 * example, the DTS could define 'local-bd-address', with zero BD addresses.
3193 static void hci_dev_get_bd_addr_from_property(struct hci_dev *hdev)
3195 struct fwnode_handle *fwnode = dev_fwnode(hdev->dev.parent);
3199 ret = fwnode_property_read_u8_array(fwnode, "local-bd-address",
3200 (u8 *)&ba, sizeof(ba));
3201 if (ret < 0 || !bacmp(&ba, BDADDR_ANY))
3204 bacpy(&hdev->public_addr, &ba);
3207 struct hci_init_stage {
3208 int (*func)(struct hci_dev *hdev);
3211 /* Run init stage NULL terminated function table */
3212 static int hci_init_stage_sync(struct hci_dev *hdev,
3213 const struct hci_init_stage *stage)
3217 for (i = 0; stage[i].func; i++) {
3220 err = stage[i].func(hdev);
3228 /* Read Local Version */
3229 static int hci_read_local_version_sync(struct hci_dev *hdev)
3231 return __hci_cmd_sync_status(hdev, HCI_OP_READ_LOCAL_VERSION,
3232 0, NULL, HCI_CMD_TIMEOUT);
3235 /* Read BD Address */
3236 static int hci_read_bd_addr_sync(struct hci_dev *hdev)
3238 return __hci_cmd_sync_status(hdev, HCI_OP_READ_BD_ADDR,
3239 0, NULL, HCI_CMD_TIMEOUT);
3242 #define HCI_INIT(_func) \
3247 static const struct hci_init_stage hci_init0[] = {
3248 /* HCI_OP_READ_LOCAL_VERSION */
3249 HCI_INIT(hci_read_local_version_sync),
3250 /* HCI_OP_READ_BD_ADDR */
3251 HCI_INIT(hci_read_bd_addr_sync),
3255 int hci_reset_sync(struct hci_dev *hdev)
3259 set_bit(HCI_RESET, &hdev->flags);
3261 err = __hci_cmd_sync_status(hdev, HCI_OP_RESET, 0, NULL,
3269 static int hci_init0_sync(struct hci_dev *hdev)
3273 bt_dev_dbg(hdev, "");
3276 if (!test_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks)) {
3277 err = hci_reset_sync(hdev);
3282 return hci_init_stage_sync(hdev, hci_init0);
3285 static int hci_unconf_init_sync(struct hci_dev *hdev)
3289 if (test_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks))
3292 err = hci_init0_sync(hdev);
3296 if (hci_dev_test_flag(hdev, HCI_SETUP))
3297 hci_debugfs_create_basic(hdev);
3302 /* Read Local Supported Features. */
3303 static int hci_read_local_features_sync(struct hci_dev *hdev)
3305 /* Not all AMP controllers support this command */
3306 if (hdev->dev_type == HCI_AMP && !(hdev->commands[14] & 0x20))
3309 return __hci_cmd_sync_status(hdev, HCI_OP_READ_LOCAL_FEATURES,
3310 0, NULL, HCI_CMD_TIMEOUT);
3313 /* BR Controller init stage 1 command sequence */
3314 static const struct hci_init_stage br_init1[] = {
3315 /* HCI_OP_READ_LOCAL_FEATURES */
3316 HCI_INIT(hci_read_local_features_sync),
3317 /* HCI_OP_READ_LOCAL_VERSION */
3318 HCI_INIT(hci_read_local_version_sync),
3319 /* HCI_OP_READ_BD_ADDR */
3320 HCI_INIT(hci_read_bd_addr_sync),
3324 /* Read Local Commands */
3325 static int hci_read_local_cmds_sync(struct hci_dev *hdev)
3327 /* All Bluetooth 1.2 and later controllers should support the
3328 * HCI command for reading the local supported commands.
3330 * Unfortunately some controllers indicate Bluetooth 1.2 support,
3331 * but do not have support for this command. If that is the case,
3332 * the driver can quirk the behavior and skip reading the local
3333 * supported commands.
3335 if (hdev->hci_ver > BLUETOOTH_VER_1_1 &&
3336 !test_bit(HCI_QUIRK_BROKEN_LOCAL_COMMANDS, &hdev->quirks))
3337 return __hci_cmd_sync_status(hdev, HCI_OP_READ_LOCAL_COMMANDS,
3338 0, NULL, HCI_CMD_TIMEOUT);
3343 /* Read Local AMP Info */
3344 static int hci_read_local_amp_info_sync(struct hci_dev *hdev)
3346 return __hci_cmd_sync_status(hdev, HCI_OP_READ_LOCAL_AMP_INFO,
3347 0, NULL, HCI_CMD_TIMEOUT);
3350 /* Read Data Blk size */
3351 static int hci_read_data_block_size_sync(struct hci_dev *hdev)
3353 return __hci_cmd_sync_status(hdev, HCI_OP_READ_DATA_BLOCK_SIZE,
3354 0, NULL, HCI_CMD_TIMEOUT);
3357 /* Read Flow Control Mode */
3358 static int hci_read_flow_control_mode_sync(struct hci_dev *hdev)
3360 return __hci_cmd_sync_status(hdev, HCI_OP_READ_FLOW_CONTROL_MODE,
3361 0, NULL, HCI_CMD_TIMEOUT);
3364 /* Read Location Data */
3365 static int hci_read_location_data_sync(struct hci_dev *hdev)
3367 return __hci_cmd_sync_status(hdev, HCI_OP_READ_LOCATION_DATA,
3368 0, NULL, HCI_CMD_TIMEOUT);
3371 /* AMP Controller init stage 1 command sequence */
3372 static const struct hci_init_stage amp_init1[] = {
3373 /* HCI_OP_READ_LOCAL_VERSION */
3374 HCI_INIT(hci_read_local_version_sync),
3375 /* HCI_OP_READ_LOCAL_COMMANDS */
3376 HCI_INIT(hci_read_local_cmds_sync),
3377 /* HCI_OP_READ_LOCAL_AMP_INFO */
3378 HCI_INIT(hci_read_local_amp_info_sync),
3379 /* HCI_OP_READ_DATA_BLOCK_SIZE */
3380 HCI_INIT(hci_read_data_block_size_sync),
3381 /* HCI_OP_READ_FLOW_CONTROL_MODE */
3382 HCI_INIT(hci_read_flow_control_mode_sync),
3383 /* HCI_OP_READ_LOCATION_DATA */
3384 HCI_INIT(hci_read_location_data_sync),
3388 static int hci_init1_sync(struct hci_dev *hdev)
3392 bt_dev_dbg(hdev, "");
3395 if (!test_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks)) {
3396 err = hci_reset_sync(hdev);
3401 switch (hdev->dev_type) {
3403 hdev->flow_ctl_mode = HCI_FLOW_CTL_MODE_PACKET_BASED;
3404 return hci_init_stage_sync(hdev, br_init1);
3406 hdev->flow_ctl_mode = HCI_FLOW_CTL_MODE_BLOCK_BASED;
3407 return hci_init_stage_sync(hdev, amp_init1);
3409 bt_dev_err(hdev, "Unknown device type %d", hdev->dev_type);
3416 /* AMP Controller init stage 2 command sequence */
3417 static const struct hci_init_stage amp_init2[] = {
3418 /* HCI_OP_READ_LOCAL_FEATURES */
3419 HCI_INIT(hci_read_local_features_sync),
3423 /* Read Buffer Size (ACL mtu, max pkt, etc.) */
3424 static int hci_read_buffer_size_sync(struct hci_dev *hdev)
3426 return __hci_cmd_sync_status(hdev, HCI_OP_READ_BUFFER_SIZE,
3427 0, NULL, HCI_CMD_TIMEOUT);
3430 /* Read Class of Device */
3431 static int hci_read_dev_class_sync(struct hci_dev *hdev)
3433 return __hci_cmd_sync_status(hdev, HCI_OP_READ_CLASS_OF_DEV,
3434 0, NULL, HCI_CMD_TIMEOUT);
3437 /* Read Local Name */
3438 static int hci_read_local_name_sync(struct hci_dev *hdev)
3440 return __hci_cmd_sync_status(hdev, HCI_OP_READ_LOCAL_NAME,
3441 0, NULL, HCI_CMD_TIMEOUT);
3444 /* Read Voice Setting */
3445 static int hci_read_voice_setting_sync(struct hci_dev *hdev)
3447 return __hci_cmd_sync_status(hdev, HCI_OP_READ_VOICE_SETTING,
3448 0, NULL, HCI_CMD_TIMEOUT);
3451 /* Read Number of Supported IAC */
3452 static int hci_read_num_supported_iac_sync(struct hci_dev *hdev)
3454 return __hci_cmd_sync_status(hdev, HCI_OP_READ_NUM_SUPPORTED_IAC,
3455 0, NULL, HCI_CMD_TIMEOUT);
3458 /* Read Current IAC LAP */
3459 static int hci_read_current_iac_lap_sync(struct hci_dev *hdev)
3461 return __hci_cmd_sync_status(hdev, HCI_OP_READ_CURRENT_IAC_LAP,
3462 0, NULL, HCI_CMD_TIMEOUT);
3465 static int hci_set_event_filter_sync(struct hci_dev *hdev, u8 flt_type,
3466 u8 cond_type, bdaddr_t *bdaddr,
3469 struct hci_cp_set_event_filter cp;
3471 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
3474 if (test_bit(HCI_QUIRK_BROKEN_FILTER_CLEAR_ALL, &hdev->quirks))
3477 memset(&cp, 0, sizeof(cp));
3478 cp.flt_type = flt_type;
3480 if (flt_type != HCI_FLT_CLEAR_ALL) {
3481 cp.cond_type = cond_type;
3482 bacpy(&cp.addr_conn_flt.bdaddr, bdaddr);
3483 cp.addr_conn_flt.auto_accept = auto_accept;
3486 return __hci_cmd_sync_status(hdev, HCI_OP_SET_EVENT_FLT,
3487 flt_type == HCI_FLT_CLEAR_ALL ?
3488 sizeof(cp.flt_type) : sizeof(cp), &cp,
3492 static int hci_clear_event_filter_sync(struct hci_dev *hdev)
3494 if (!hci_dev_test_flag(hdev, HCI_EVENT_FILTER_CONFIGURED))
3497 /* In theory the state machine should not reach here unless
3498 * a hci_set_event_filter_sync() call succeeds, but we do
3499 * the check both for parity and as a future reminder.
3501 if (test_bit(HCI_QUIRK_BROKEN_FILTER_CLEAR_ALL, &hdev->quirks))
3504 return hci_set_event_filter_sync(hdev, HCI_FLT_CLEAR_ALL, 0x00,
3508 /* Connection accept timeout ~20 secs */
3509 static int hci_write_ca_timeout_sync(struct hci_dev *hdev)
3511 __le16 param = cpu_to_le16(0x7d00);
3513 return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_CA_TIMEOUT,
3514 sizeof(param), ¶m, HCI_CMD_TIMEOUT);
3517 /* BR Controller init stage 2 command sequence */
3518 static const struct hci_init_stage br_init2[] = {
3519 /* HCI_OP_READ_BUFFER_SIZE */
3520 HCI_INIT(hci_read_buffer_size_sync),
3521 /* HCI_OP_READ_CLASS_OF_DEV */
3522 HCI_INIT(hci_read_dev_class_sync),
3523 /* HCI_OP_READ_LOCAL_NAME */
3524 HCI_INIT(hci_read_local_name_sync),
3525 /* HCI_OP_READ_VOICE_SETTING */
3526 HCI_INIT(hci_read_voice_setting_sync),
3527 /* HCI_OP_READ_NUM_SUPPORTED_IAC */
3528 HCI_INIT(hci_read_num_supported_iac_sync),
3529 /* HCI_OP_READ_CURRENT_IAC_LAP */
3530 HCI_INIT(hci_read_current_iac_lap_sync),
3531 /* HCI_OP_SET_EVENT_FLT */
3532 HCI_INIT(hci_clear_event_filter_sync),
3533 /* HCI_OP_WRITE_CA_TIMEOUT */
3534 HCI_INIT(hci_write_ca_timeout_sync),
3538 static int hci_write_ssp_mode_1_sync(struct hci_dev *hdev)
3542 if (!lmp_ssp_capable(hdev) || !hci_dev_test_flag(hdev, HCI_SSP_ENABLED))
3545 /* When SSP is available, then the host features page
3546 * should also be available as well. However some
3547 * controllers list the max_page as 0 as long as SSP
3548 * has not been enabled. To achieve proper debugging
3549 * output, force the minimum max_page to 1 at least.
3551 hdev->max_page = 0x01;
3553 return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_SSP_MODE,
3554 sizeof(mode), &mode, HCI_CMD_TIMEOUT);
3557 static int hci_write_eir_sync(struct hci_dev *hdev)
3559 struct hci_cp_write_eir cp;
3561 if (!lmp_ssp_capable(hdev) || hci_dev_test_flag(hdev, HCI_SSP_ENABLED))
3564 memset(hdev->eir, 0, sizeof(hdev->eir));
3565 memset(&cp, 0, sizeof(cp));
3567 return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_EIR, sizeof(cp), &cp,
3571 static int hci_write_inquiry_mode_sync(struct hci_dev *hdev)
3575 if (!lmp_inq_rssi_capable(hdev) &&
3576 !test_bit(HCI_QUIRK_FIXUP_INQUIRY_MODE, &hdev->quirks))
3579 /* If Extended Inquiry Result events are supported, then
3580 * they are clearly preferred over Inquiry Result with RSSI
3583 mode = lmp_ext_inq_capable(hdev) ? 0x02 : 0x01;
3585 return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_INQUIRY_MODE,
3586 sizeof(mode), &mode, HCI_CMD_TIMEOUT);
3589 static int hci_read_inq_rsp_tx_power_sync(struct hci_dev *hdev)
3591 if (!lmp_inq_tx_pwr_capable(hdev))
3594 return __hci_cmd_sync_status(hdev, HCI_OP_READ_INQ_RSP_TX_POWER,
3595 0, NULL, HCI_CMD_TIMEOUT);
3598 static int hci_read_local_ext_features_sync(struct hci_dev *hdev, u8 page)
3600 struct hci_cp_read_local_ext_features cp;
3602 if (!lmp_ext_feat_capable(hdev))
3605 memset(&cp, 0, sizeof(cp));
3608 return __hci_cmd_sync_status(hdev, HCI_OP_READ_LOCAL_EXT_FEATURES,
3609 sizeof(cp), &cp, HCI_CMD_TIMEOUT);
3612 static int hci_read_local_ext_features_1_sync(struct hci_dev *hdev)
3614 return hci_read_local_ext_features_sync(hdev, 0x01);
3617 /* HCI Controller init stage 2 command sequence */
3618 static const struct hci_init_stage hci_init2[] = {
3619 /* HCI_OP_READ_LOCAL_COMMANDS */
3620 HCI_INIT(hci_read_local_cmds_sync),
3621 /* HCI_OP_WRITE_SSP_MODE */
3622 HCI_INIT(hci_write_ssp_mode_1_sync),
3623 /* HCI_OP_WRITE_EIR */
3624 HCI_INIT(hci_write_eir_sync),
3625 /* HCI_OP_WRITE_INQUIRY_MODE */
3626 HCI_INIT(hci_write_inquiry_mode_sync),
3627 /* HCI_OP_READ_INQ_RSP_TX_POWER */
3628 HCI_INIT(hci_read_inq_rsp_tx_power_sync),
3629 /* HCI_OP_READ_LOCAL_EXT_FEATURES */
3630 HCI_INIT(hci_read_local_ext_features_1_sync),
3631 /* HCI_OP_WRITE_AUTH_ENABLE */
3632 HCI_INIT(hci_write_auth_enable_sync),
3636 /* Read LE Buffer Size */
3637 static int hci_le_read_buffer_size_sync(struct hci_dev *hdev)
3639 /* Use Read LE Buffer Size V2 if supported */
3640 if (iso_capable(hdev) && hdev->commands[41] & 0x20)
3641 return __hci_cmd_sync_status(hdev,
3642 HCI_OP_LE_READ_BUFFER_SIZE_V2,
3643 0, NULL, HCI_CMD_TIMEOUT);
3645 return __hci_cmd_sync_status(hdev, HCI_OP_LE_READ_BUFFER_SIZE,
3646 0, NULL, HCI_CMD_TIMEOUT);
3649 /* Read LE Local Supported Features */
3650 static int hci_le_read_local_features_sync(struct hci_dev *hdev)
3652 return __hci_cmd_sync_status(hdev, HCI_OP_LE_READ_LOCAL_FEATURES,
3653 0, NULL, HCI_CMD_TIMEOUT);
3656 /* Read LE Supported States */
3657 static int hci_le_read_supported_states_sync(struct hci_dev *hdev)
3659 return __hci_cmd_sync_status(hdev, HCI_OP_LE_READ_SUPPORTED_STATES,
3660 0, NULL, HCI_CMD_TIMEOUT);
3663 /* LE Controller init stage 2 command sequence */
3664 static const struct hci_init_stage le_init2[] = {
3665 /* HCI_OP_LE_READ_LOCAL_FEATURES */
3666 HCI_INIT(hci_le_read_local_features_sync),
3667 /* HCI_OP_LE_READ_BUFFER_SIZE */
3668 HCI_INIT(hci_le_read_buffer_size_sync),
3669 /* HCI_OP_LE_READ_SUPPORTED_STATES */
3670 HCI_INIT(hci_le_read_supported_states_sync),
3674 static int hci_init2_sync(struct hci_dev *hdev)
3678 bt_dev_dbg(hdev, "");
3680 if (hdev->dev_type == HCI_AMP)
3681 return hci_init_stage_sync(hdev, amp_init2);
3683 err = hci_init_stage_sync(hdev, hci_init2);
3687 if (lmp_bredr_capable(hdev)) {
3688 err = hci_init_stage_sync(hdev, br_init2);
3692 hci_dev_clear_flag(hdev, HCI_BREDR_ENABLED);
3695 if (lmp_le_capable(hdev)) {
3696 err = hci_init_stage_sync(hdev, le_init2);
3699 /* LE-only controllers have LE implicitly enabled */
3700 if (!lmp_bredr_capable(hdev))
3701 hci_dev_set_flag(hdev, HCI_LE_ENABLED);
3707 static int hci_set_event_mask_sync(struct hci_dev *hdev)
3709 /* The second byte is 0xff instead of 0x9f (two reserved bits
3710 * disabled) since a Broadcom 1.2 dongle doesn't respond to the
3711 * command otherwise.
3713 u8 events[8] = { 0xff, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x00, 0x00 };
3715 /* CSR 1.1 dongles does not accept any bitfield so don't try to set
3716 * any event mask for pre 1.2 devices.
3718 if (hdev->hci_ver < BLUETOOTH_VER_1_2)
3721 if (lmp_bredr_capable(hdev)) {
3722 events[4] |= 0x01; /* Flow Specification Complete */
3724 /* Don't set Disconnect Complete when suspended as that
3725 * would wakeup the host when disconnecting due to
3728 if (hdev->suspended)
3731 /* Use a different default for LE-only devices */
3732 memset(events, 0, sizeof(events));
3733 events[1] |= 0x20; /* Command Complete */
3734 events[1] |= 0x40; /* Command Status */
3735 events[1] |= 0x80; /* Hardware Error */
3737 /* If the controller supports the Disconnect command, enable
3738 * the corresponding event. In addition enable packet flow
3739 * control related events.
3741 if (hdev->commands[0] & 0x20) {
3742 /* Don't set Disconnect Complete when suspended as that
3743 * would wakeup the host when disconnecting due to
3746 if (!hdev->suspended)
3747 events[0] |= 0x10; /* Disconnection Complete */
3748 events[2] |= 0x04; /* Number of Completed Packets */
3749 events[3] |= 0x02; /* Data Buffer Overflow */
3752 /* If the controller supports the Read Remote Version
3753 * Information command, enable the corresponding event.
3755 if (hdev->commands[2] & 0x80)
3756 events[1] |= 0x08; /* Read Remote Version Information
3760 if (hdev->le_features[0] & HCI_LE_ENCRYPTION) {
3761 events[0] |= 0x80; /* Encryption Change */
3762 events[5] |= 0x80; /* Encryption Key Refresh Complete */
3766 if (lmp_inq_rssi_capable(hdev) ||
3767 test_bit(HCI_QUIRK_FIXUP_INQUIRY_MODE, &hdev->quirks))
3768 events[4] |= 0x02; /* Inquiry Result with RSSI */
3770 if (lmp_ext_feat_capable(hdev))
3771 events[4] |= 0x04; /* Read Remote Extended Features Complete */
3773 if (lmp_esco_capable(hdev)) {
3774 events[5] |= 0x08; /* Synchronous Connection Complete */
3775 events[5] |= 0x10; /* Synchronous Connection Changed */
3778 if (lmp_sniffsubr_capable(hdev))
3779 events[5] |= 0x20; /* Sniff Subrating */
3781 if (lmp_pause_enc_capable(hdev))
3782 events[5] |= 0x80; /* Encryption Key Refresh Complete */
3784 if (lmp_ext_inq_capable(hdev))
3785 events[5] |= 0x40; /* Extended Inquiry Result */
3787 if (lmp_no_flush_capable(hdev))
3788 events[7] |= 0x01; /* Enhanced Flush Complete */
3790 if (lmp_lsto_capable(hdev))
3791 events[6] |= 0x80; /* Link Supervision Timeout Changed */
3793 if (lmp_ssp_capable(hdev)) {
3794 events[6] |= 0x01; /* IO Capability Request */
3795 events[6] |= 0x02; /* IO Capability Response */
3796 events[6] |= 0x04; /* User Confirmation Request */
3797 events[6] |= 0x08; /* User Passkey Request */
3798 events[6] |= 0x10; /* Remote OOB Data Request */
3799 events[6] |= 0x20; /* Simple Pairing Complete */
3800 events[7] |= 0x04; /* User Passkey Notification */
3801 events[7] |= 0x08; /* Keypress Notification */
3802 events[7] |= 0x10; /* Remote Host Supported
3803 * Features Notification
3807 if (lmp_le_capable(hdev))
3808 events[7] |= 0x20; /* LE Meta-Event */
3810 return __hci_cmd_sync_status(hdev, HCI_OP_SET_EVENT_MASK,
3811 sizeof(events), events, HCI_CMD_TIMEOUT);
3814 static int hci_read_stored_link_key_sync(struct hci_dev *hdev)
3816 struct hci_cp_read_stored_link_key cp;
3818 if (!(hdev->commands[6] & 0x20) ||
3819 test_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY, &hdev->quirks))
3822 memset(&cp, 0, sizeof(cp));
3823 bacpy(&cp.bdaddr, BDADDR_ANY);
3826 return __hci_cmd_sync_status(hdev, HCI_OP_READ_STORED_LINK_KEY,
3827 sizeof(cp), &cp, HCI_CMD_TIMEOUT);
3830 static int hci_setup_link_policy_sync(struct hci_dev *hdev)
3832 struct hci_cp_write_def_link_policy cp;
3833 u16 link_policy = 0;
3835 if (!(hdev->commands[5] & 0x10))
3838 memset(&cp, 0, sizeof(cp));
3840 if (lmp_rswitch_capable(hdev))
3841 link_policy |= HCI_LP_RSWITCH;
3842 if (lmp_hold_capable(hdev))
3843 link_policy |= HCI_LP_HOLD;
3844 if (lmp_sniff_capable(hdev))
3845 link_policy |= HCI_LP_SNIFF;
3846 if (lmp_park_capable(hdev))
3847 link_policy |= HCI_LP_PARK;
3849 cp.policy = cpu_to_le16(link_policy);
3851 return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_DEF_LINK_POLICY,
3852 sizeof(cp), &cp, HCI_CMD_TIMEOUT);
3855 static int hci_read_page_scan_activity_sync(struct hci_dev *hdev)
3857 if (!(hdev->commands[8] & 0x01))
3860 return __hci_cmd_sync_status(hdev, HCI_OP_READ_PAGE_SCAN_ACTIVITY,
3861 0, NULL, HCI_CMD_TIMEOUT);
3864 static int hci_read_def_err_data_reporting_sync(struct hci_dev *hdev)
3866 if (!(hdev->commands[18] & 0x04) ||
3867 !(hdev->features[0][6] & LMP_ERR_DATA_REPORTING) ||
3868 test_bit(HCI_QUIRK_BROKEN_ERR_DATA_REPORTING, &hdev->quirks))
3871 return __hci_cmd_sync_status(hdev, HCI_OP_READ_DEF_ERR_DATA_REPORTING,
3872 0, NULL, HCI_CMD_TIMEOUT);
3875 static int hci_read_page_scan_type_sync(struct hci_dev *hdev)
3877 /* Some older Broadcom based Bluetooth 1.2 controllers do not
3878 * support the Read Page Scan Type command. Check support for
3879 * this command in the bit mask of supported commands.
3881 if (!(hdev->commands[13] & 0x01))
3884 return __hci_cmd_sync_status(hdev, HCI_OP_READ_PAGE_SCAN_TYPE,
3885 0, NULL, HCI_CMD_TIMEOUT);
3888 /* Read features beyond page 1 if available */
3889 static int hci_read_local_ext_features_all_sync(struct hci_dev *hdev)
3894 if (!lmp_ext_feat_capable(hdev))
3897 for (page = 2; page < HCI_MAX_PAGES && page <= hdev->max_page;
3899 err = hci_read_local_ext_features_sync(hdev, page);
3907 /* HCI Controller init stage 3 command sequence */
3908 static const struct hci_init_stage hci_init3[] = {
3909 /* HCI_OP_SET_EVENT_MASK */
3910 HCI_INIT(hci_set_event_mask_sync),
3911 /* HCI_OP_READ_STORED_LINK_KEY */
3912 HCI_INIT(hci_read_stored_link_key_sync),
3913 /* HCI_OP_WRITE_DEF_LINK_POLICY */
3914 HCI_INIT(hci_setup_link_policy_sync),
3915 /* HCI_OP_READ_PAGE_SCAN_ACTIVITY */
3916 HCI_INIT(hci_read_page_scan_activity_sync),
3917 /* HCI_OP_READ_DEF_ERR_DATA_REPORTING */
3918 HCI_INIT(hci_read_def_err_data_reporting_sync),
3919 /* HCI_OP_READ_PAGE_SCAN_TYPE */
3920 HCI_INIT(hci_read_page_scan_type_sync),
3921 /* HCI_OP_READ_LOCAL_EXT_FEATURES */
3922 HCI_INIT(hci_read_local_ext_features_all_sync),
3926 static int hci_le_set_event_mask_sync(struct hci_dev *hdev)
3930 if (!lmp_le_capable(hdev))
3933 memset(events, 0, sizeof(events));
3935 if (hdev->le_features[0] & HCI_LE_ENCRYPTION)
3936 events[0] |= 0x10; /* LE Long Term Key Request */
3938 /* If controller supports the Connection Parameters Request
3939 * Link Layer Procedure, enable the corresponding event.
3941 if (hdev->le_features[0] & HCI_LE_CONN_PARAM_REQ_PROC)
3942 /* LE Remote Connection Parameter Request */
3945 /* If the controller supports the Data Length Extension
3946 * feature, enable the corresponding event.
3948 if (hdev->le_features[0] & HCI_LE_DATA_LEN_EXT)
3949 events[0] |= 0x40; /* LE Data Length Change */
3951 /* If the controller supports LL Privacy feature or LE Extended Adv,
3952 * enable the corresponding event.
3954 if (use_enhanced_conn_complete(hdev))
3955 events[1] |= 0x02; /* LE Enhanced Connection Complete */
3957 /* If the controller supports Extended Scanner Filter
3958 * Policies, enable the corresponding event.
3960 if (hdev->le_features[0] & HCI_LE_EXT_SCAN_POLICY)
3961 events[1] |= 0x04; /* LE Direct Advertising Report */
3963 /* If the controller supports Channel Selection Algorithm #2
3964 * feature, enable the corresponding event.
3966 if (hdev->le_features[1] & HCI_LE_CHAN_SEL_ALG2)
3967 events[2] |= 0x08; /* LE Channel Selection Algorithm */
3969 /* If the controller supports the LE Set Scan Enable command,
3970 * enable the corresponding advertising report event.
3972 if (hdev->commands[26] & 0x08)
3973 events[0] |= 0x02; /* LE Advertising Report */
3975 /* If the controller supports the LE Create Connection
3976 * command, enable the corresponding event.
3978 if (hdev->commands[26] & 0x10)
3979 events[0] |= 0x01; /* LE Connection Complete */
3981 /* If the controller supports the LE Connection Update
3982 * command, enable the corresponding event.
3984 if (hdev->commands[27] & 0x04)
3985 events[0] |= 0x04; /* LE Connection Update Complete */
3987 /* If the controller supports the LE Read Remote Used Features
3988 * command, enable the corresponding event.
3990 if (hdev->commands[27] & 0x20)
3991 /* LE Read Remote Used Features Complete */
3994 /* If the controller supports the LE Read Local P-256
3995 * Public Key command, enable the corresponding event.
3997 if (hdev->commands[34] & 0x02)
3998 /* LE Read Local P-256 Public Key Complete */
4001 /* If the controller supports the LE Generate DHKey
4002 * command, enable the corresponding event.
4004 if (hdev->commands[34] & 0x04)
4005 events[1] |= 0x01; /* LE Generate DHKey Complete */
4007 /* If the controller supports the LE Set Default PHY or
4008 * LE Set PHY commands, enable the corresponding event.
4010 if (hdev->commands[35] & (0x20 | 0x40))
4011 events[1] |= 0x08; /* LE PHY Update Complete */
4013 /* If the controller supports LE Set Extended Scan Parameters
4014 * and LE Set Extended Scan Enable commands, enable the
4015 * corresponding event.
4017 if (use_ext_scan(hdev))
4018 events[1] |= 0x10; /* LE Extended Advertising Report */
4020 /* If the controller supports the LE Extended Advertising
4021 * command, enable the corresponding event.
4023 if (ext_adv_capable(hdev))
4024 events[2] |= 0x02; /* LE Advertising Set Terminated */
4026 if (cis_capable(hdev)) {
4027 events[3] |= 0x01; /* LE CIS Established */
4028 if (cis_peripheral_capable(hdev))
4029 events[3] |= 0x02; /* LE CIS Request */
4032 if (bis_capable(hdev)) {
4033 events[3] |= 0x04; /* LE Create BIG Complete */
4034 events[3] |= 0x08; /* LE Terminate BIG Complete */
4035 events[3] |= 0x10; /* LE BIG Sync Established */
4036 events[3] |= 0x20; /* LE BIG Sync Loss */
4039 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_EVENT_MASK,
4040 sizeof(events), events, HCI_CMD_TIMEOUT);
4043 /* Read LE Advertising Channel TX Power */
4044 static int hci_le_read_adv_tx_power_sync(struct hci_dev *hdev)
4046 if ((hdev->commands[25] & 0x40) && !ext_adv_capable(hdev)) {
4047 /* HCI TS spec forbids mixing of legacy and extended
4048 * advertising commands wherein READ_ADV_TX_POWER is
4049 * also included. So do not call it if extended adv
4050 * is supported otherwise controller will return
4051 * COMMAND_DISALLOWED for extended commands.
4053 return __hci_cmd_sync_status(hdev,
4054 HCI_OP_LE_READ_ADV_TX_POWER,
4055 0, NULL, HCI_CMD_TIMEOUT);
4061 /* Read LE Min/Max Tx Power*/
4062 static int hci_le_read_tx_power_sync(struct hci_dev *hdev)
4064 if (!(hdev->commands[38] & 0x80) ||
4065 test_bit(HCI_QUIRK_BROKEN_READ_TRANSMIT_POWER, &hdev->quirks))
4068 return __hci_cmd_sync_status(hdev, HCI_OP_LE_READ_TRANSMIT_POWER,
4069 0, NULL, HCI_CMD_TIMEOUT);
4072 /* Read LE Accept List Size */
4073 static int hci_le_read_accept_list_size_sync(struct hci_dev *hdev)
4075 if (!(hdev->commands[26] & 0x40))
4078 return __hci_cmd_sync_status(hdev, HCI_OP_LE_READ_ACCEPT_LIST_SIZE,
4079 0, NULL, HCI_CMD_TIMEOUT);
4082 /* Clear LE Accept List */
4083 static int hci_le_clear_accept_list_sync(struct hci_dev *hdev)
4085 if (!(hdev->commands[26] & 0x80))
4088 return __hci_cmd_sync_status(hdev, HCI_OP_LE_CLEAR_ACCEPT_LIST, 0, NULL,
4092 /* Read LE Resolving List Size */
4093 static int hci_le_read_resolv_list_size_sync(struct hci_dev *hdev)
4095 if (!(hdev->commands[34] & 0x40))
4098 return __hci_cmd_sync_status(hdev, HCI_OP_LE_READ_RESOLV_LIST_SIZE,
4099 0, NULL, HCI_CMD_TIMEOUT);
4102 /* Clear LE Resolving List */
4103 static int hci_le_clear_resolv_list_sync(struct hci_dev *hdev)
4105 if (!(hdev->commands[34] & 0x20))
4108 return __hci_cmd_sync_status(hdev, HCI_OP_LE_CLEAR_RESOLV_LIST, 0, NULL,
4112 /* Set RPA timeout */
4113 static int hci_le_set_rpa_timeout_sync(struct hci_dev *hdev)
4115 __le16 timeout = cpu_to_le16(hdev->rpa_timeout);
4117 if (!(hdev->commands[35] & 0x04) ||
4118 test_bit(HCI_QUIRK_BROKEN_SET_RPA_TIMEOUT, &hdev->quirks))
4121 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_RPA_TIMEOUT,
4122 sizeof(timeout), &timeout,
4126 /* Read LE Maximum Data Length */
4127 static int hci_le_read_max_data_len_sync(struct hci_dev *hdev)
4129 if (!(hdev->le_features[0] & HCI_LE_DATA_LEN_EXT))
4132 return __hci_cmd_sync_status(hdev, HCI_OP_LE_READ_MAX_DATA_LEN, 0, NULL,
4136 /* Read LE Suggested Default Data Length */
4137 static int hci_le_read_def_data_len_sync(struct hci_dev *hdev)
4139 if (!(hdev->le_features[0] & HCI_LE_DATA_LEN_EXT))
4142 return __hci_cmd_sync_status(hdev, HCI_OP_LE_READ_DEF_DATA_LEN, 0, NULL,
4146 /* Read LE Number of Supported Advertising Sets */
4147 static int hci_le_read_num_support_adv_sets_sync(struct hci_dev *hdev)
4149 if (!ext_adv_capable(hdev))
4152 return __hci_cmd_sync_status(hdev,
4153 HCI_OP_LE_READ_NUM_SUPPORTED_ADV_SETS,
4154 0, NULL, HCI_CMD_TIMEOUT);
4157 /* Write LE Host Supported */
4158 static int hci_set_le_support_sync(struct hci_dev *hdev)
4160 struct hci_cp_write_le_host_supported cp;
4162 /* LE-only devices do not support explicit enablement */
4163 if (!lmp_bredr_capable(hdev))
4166 memset(&cp, 0, sizeof(cp));
4168 if (hci_dev_test_flag(hdev, HCI_LE_ENABLED)) {
4173 if (cp.le == lmp_host_le_capable(hdev))
4176 return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_LE_HOST_SUPPORTED,
4177 sizeof(cp), &cp, HCI_CMD_TIMEOUT);
4180 /* LE Set Host Feature */
4181 static int hci_le_set_host_feature_sync(struct hci_dev *hdev)
4183 struct hci_cp_le_set_host_feature cp;
4185 if (!iso_capable(hdev))
4188 memset(&cp, 0, sizeof(cp));
4190 /* Isochronous Channels (Host Support) */
4194 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_HOST_FEATURE,
4195 sizeof(cp), &cp, HCI_CMD_TIMEOUT);
4198 /* LE Controller init stage 3 command sequence */
4199 static const struct hci_init_stage le_init3[] = {
4200 /* HCI_OP_LE_SET_EVENT_MASK */
4201 HCI_INIT(hci_le_set_event_mask_sync),
4202 /* HCI_OP_LE_READ_ADV_TX_POWER */
4203 HCI_INIT(hci_le_read_adv_tx_power_sync),
4204 /* HCI_OP_LE_READ_TRANSMIT_POWER */
4205 HCI_INIT(hci_le_read_tx_power_sync),
4206 /* HCI_OP_LE_READ_ACCEPT_LIST_SIZE */
4207 HCI_INIT(hci_le_read_accept_list_size_sync),
4208 /* HCI_OP_LE_CLEAR_ACCEPT_LIST */
4209 HCI_INIT(hci_le_clear_accept_list_sync),
4210 /* HCI_OP_LE_READ_RESOLV_LIST_SIZE */
4211 HCI_INIT(hci_le_read_resolv_list_size_sync),
4212 /* HCI_OP_LE_CLEAR_RESOLV_LIST */
4213 HCI_INIT(hci_le_clear_resolv_list_sync),
4214 /* HCI_OP_LE_SET_RPA_TIMEOUT */
4215 HCI_INIT(hci_le_set_rpa_timeout_sync),
4216 /* HCI_OP_LE_READ_MAX_DATA_LEN */
4217 HCI_INIT(hci_le_read_max_data_len_sync),
4218 /* HCI_OP_LE_READ_DEF_DATA_LEN */
4219 HCI_INIT(hci_le_read_def_data_len_sync),
4220 /* HCI_OP_LE_READ_NUM_SUPPORTED_ADV_SETS */
4221 HCI_INIT(hci_le_read_num_support_adv_sets_sync),
4222 /* HCI_OP_WRITE_LE_HOST_SUPPORTED */
4223 HCI_INIT(hci_set_le_support_sync),
4224 /* HCI_OP_LE_SET_HOST_FEATURE */
4225 HCI_INIT(hci_le_set_host_feature_sync),
4229 static int hci_init3_sync(struct hci_dev *hdev)
4233 bt_dev_dbg(hdev, "");
4235 err = hci_init_stage_sync(hdev, hci_init3);
4239 if (lmp_le_capable(hdev))
4240 return hci_init_stage_sync(hdev, le_init3);
4245 static int hci_delete_stored_link_key_sync(struct hci_dev *hdev)
4247 struct hci_cp_delete_stored_link_key cp;
4249 /* Some Broadcom based Bluetooth controllers do not support the
4250 * Delete Stored Link Key command. They are clearly indicating its
4251 * absence in the bit mask of supported commands.
4253 * Check the supported commands and only if the command is marked
4254 * as supported send it. If not supported assume that the controller
4255 * does not have actual support for stored link keys which makes this
4256 * command redundant anyway.
4258 * Some controllers indicate that they support handling deleting
4259 * stored link keys, but they don't. The quirk lets a driver
4260 * just disable this command.
4262 if (!(hdev->commands[6] & 0x80) ||
4263 test_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY, &hdev->quirks))
4266 memset(&cp, 0, sizeof(cp));
4267 bacpy(&cp.bdaddr, BDADDR_ANY);
4268 cp.delete_all = 0x01;
4270 return __hci_cmd_sync_status(hdev, HCI_OP_DELETE_STORED_LINK_KEY,
4271 sizeof(cp), &cp, HCI_CMD_TIMEOUT);
4274 static int hci_set_event_mask_page_2_sync(struct hci_dev *hdev)
4276 u8 events[8] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
4277 bool changed = false;
4279 /* Set event mask page 2 if the HCI command for it is supported */
4280 if (!(hdev->commands[22] & 0x04))
4283 /* If Connectionless Peripheral Broadcast central role is supported
4284 * enable all necessary events for it.
4286 if (lmp_cpb_central_capable(hdev)) {
4287 events[1] |= 0x40; /* Triggered Clock Capture */
4288 events[1] |= 0x80; /* Synchronization Train Complete */
4289 events[2] |= 0x08; /* Truncated Page Complete */
4290 events[2] |= 0x20; /* CPB Channel Map Change */
4294 /* If Connectionless Peripheral Broadcast peripheral role is supported
4295 * enable all necessary events for it.
4297 if (lmp_cpb_peripheral_capable(hdev)) {
4298 events[2] |= 0x01; /* Synchronization Train Received */
4299 events[2] |= 0x02; /* CPB Receive */
4300 events[2] |= 0x04; /* CPB Timeout */
4301 events[2] |= 0x10; /* Peripheral Page Response Timeout */
4305 /* Enable Authenticated Payload Timeout Expired event if supported */
4306 if (lmp_ping_capable(hdev) || hdev->le_features[0] & HCI_LE_PING) {
4311 /* Some Broadcom based controllers indicate support for Set Event
4312 * Mask Page 2 command, but then actually do not support it. Since
4313 * the default value is all bits set to zero, the command is only
4314 * required if the event mask has to be changed. In case no change
4315 * to the event mask is needed, skip this command.
4320 return __hci_cmd_sync_status(hdev, HCI_OP_SET_EVENT_MASK_PAGE_2,
4321 sizeof(events), events, HCI_CMD_TIMEOUT);
4324 /* Read local codec list if the HCI command is supported */
4325 static int hci_read_local_codecs_sync(struct hci_dev *hdev)
4327 if (hdev->commands[45] & 0x04)
4328 hci_read_supported_codecs_v2(hdev);
4329 else if (hdev->commands[29] & 0x20)
4330 hci_read_supported_codecs(hdev);
4335 /* Read local pairing options if the HCI command is supported */
4336 static int hci_read_local_pairing_opts_sync(struct hci_dev *hdev)
4338 if (!(hdev->commands[41] & 0x08))
4341 return __hci_cmd_sync_status(hdev, HCI_OP_READ_LOCAL_PAIRING_OPTS,
4342 0, NULL, HCI_CMD_TIMEOUT);
4345 /* Get MWS transport configuration if the HCI command is supported */
4346 static int hci_get_mws_transport_config_sync(struct hci_dev *hdev)
4348 if (!mws_transport_config_capable(hdev))
4351 return __hci_cmd_sync_status(hdev, HCI_OP_GET_MWS_TRANSPORT_CONFIG,
4352 0, NULL, HCI_CMD_TIMEOUT);
4355 /* Check for Synchronization Train support */
4356 static int hci_read_sync_train_params_sync(struct hci_dev *hdev)
4358 if (!lmp_sync_train_capable(hdev))
4361 return __hci_cmd_sync_status(hdev, HCI_OP_READ_SYNC_TRAIN_PARAMS,
4362 0, NULL, HCI_CMD_TIMEOUT);
4365 /* Enable Secure Connections if supported and configured */
4366 static int hci_write_sc_support_1_sync(struct hci_dev *hdev)
4370 if (!hci_dev_test_flag(hdev, HCI_SSP_ENABLED) ||
4371 !bredr_sc_enabled(hdev))
4374 return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_SC_SUPPORT,
4375 sizeof(support), &support,
4379 /* Set erroneous data reporting if supported to the wideband speech
4382 static int hci_set_err_data_report_sync(struct hci_dev *hdev)
4384 struct hci_cp_write_def_err_data_reporting cp;
4385 bool enabled = hci_dev_test_flag(hdev, HCI_WIDEBAND_SPEECH_ENABLED);
4387 if (!(hdev->commands[18] & 0x08) ||
4388 !(hdev->features[0][6] & LMP_ERR_DATA_REPORTING) ||
4389 test_bit(HCI_QUIRK_BROKEN_ERR_DATA_REPORTING, &hdev->quirks))
4392 if (enabled == hdev->err_data_reporting)
4395 memset(&cp, 0, sizeof(cp));
4396 cp.err_data_reporting = enabled ? ERR_DATA_REPORTING_ENABLED :
4397 ERR_DATA_REPORTING_DISABLED;
4399 return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_DEF_ERR_DATA_REPORTING,
4400 sizeof(cp), &cp, HCI_CMD_TIMEOUT);
4403 static const struct hci_init_stage hci_init4[] = {
4404 /* HCI_OP_DELETE_STORED_LINK_KEY */
4405 HCI_INIT(hci_delete_stored_link_key_sync),
4406 /* HCI_OP_SET_EVENT_MASK_PAGE_2 */
4407 HCI_INIT(hci_set_event_mask_page_2_sync),
4408 /* HCI_OP_READ_LOCAL_CODECS */
4409 HCI_INIT(hci_read_local_codecs_sync),
4410 /* HCI_OP_READ_LOCAL_PAIRING_OPTS */
4411 HCI_INIT(hci_read_local_pairing_opts_sync),
4412 /* HCI_OP_GET_MWS_TRANSPORT_CONFIG */
4413 HCI_INIT(hci_get_mws_transport_config_sync),
4414 /* HCI_OP_READ_SYNC_TRAIN_PARAMS */
4415 HCI_INIT(hci_read_sync_train_params_sync),
4416 /* HCI_OP_WRITE_SC_SUPPORT */
4417 HCI_INIT(hci_write_sc_support_1_sync),
4418 /* HCI_OP_WRITE_DEF_ERR_DATA_REPORTING */
4419 HCI_INIT(hci_set_err_data_report_sync),
4423 /* Set Suggested Default Data Length to maximum if supported */
4424 static int hci_le_set_write_def_data_len_sync(struct hci_dev *hdev)
4426 struct hci_cp_le_write_def_data_len cp;
4428 if (!(hdev->le_features[0] & HCI_LE_DATA_LEN_EXT))
4431 memset(&cp, 0, sizeof(cp));
4432 cp.tx_len = cpu_to_le16(hdev->le_max_tx_len);
4433 cp.tx_time = cpu_to_le16(hdev->le_max_tx_time);
4435 return __hci_cmd_sync_status(hdev, HCI_OP_LE_WRITE_DEF_DATA_LEN,
4436 sizeof(cp), &cp, HCI_CMD_TIMEOUT);
4439 /* Set Default PHY parameters if command is supported, enables all supported
4440 * PHYs according to the LE Features bits.
4442 static int hci_le_set_default_phy_sync(struct hci_dev *hdev)
4444 struct hci_cp_le_set_default_phy cp;
4446 if (!(hdev->commands[35] & 0x20)) {
4447 /* If the command is not supported it means only 1M PHY is
4450 hdev->le_tx_def_phys = HCI_LE_SET_PHY_1M;
4451 hdev->le_rx_def_phys = HCI_LE_SET_PHY_1M;
4455 memset(&cp, 0, sizeof(cp));
4457 cp.tx_phys = HCI_LE_SET_PHY_1M;
4458 cp.rx_phys = HCI_LE_SET_PHY_1M;
4460 /* Enables 2M PHY if supported */
4461 if (le_2m_capable(hdev)) {
4462 cp.tx_phys |= HCI_LE_SET_PHY_2M;
4463 cp.rx_phys |= HCI_LE_SET_PHY_2M;
4466 /* Enables Coded PHY if supported */
4467 if (le_coded_capable(hdev)) {
4468 cp.tx_phys |= HCI_LE_SET_PHY_CODED;
4469 cp.rx_phys |= HCI_LE_SET_PHY_CODED;
4472 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_DEFAULT_PHY,
4473 sizeof(cp), &cp, HCI_CMD_TIMEOUT);
4476 static const struct hci_init_stage le_init4[] = {
4477 /* HCI_OP_LE_WRITE_DEF_DATA_LEN */
4478 HCI_INIT(hci_le_set_write_def_data_len_sync),
4479 /* HCI_OP_LE_SET_DEFAULT_PHY */
4480 HCI_INIT(hci_le_set_default_phy_sync),
4484 static int hci_init4_sync(struct hci_dev *hdev)
4488 bt_dev_dbg(hdev, "");
4490 err = hci_init_stage_sync(hdev, hci_init4);
4494 if (lmp_le_capable(hdev))
4495 return hci_init_stage_sync(hdev, le_init4);
4500 static int hci_init_sync(struct hci_dev *hdev)
4504 err = hci_init1_sync(hdev);
4508 if (hci_dev_test_flag(hdev, HCI_SETUP))
4509 hci_debugfs_create_basic(hdev);
4511 err = hci_init2_sync(hdev);
4515 /* HCI_PRIMARY covers both single-mode LE, BR/EDR and dual-mode
4516 * BR/EDR/LE type controllers. AMP controllers only need the
4517 * first two stages of init.
4519 if (hdev->dev_type != HCI_PRIMARY)
4522 err = hci_init3_sync(hdev);
4526 err = hci_init4_sync(hdev);
4530 /* This function is only called when the controller is actually in
4531 * configured state. When the controller is marked as unconfigured,
4532 * this initialization procedure is not run.
4534 * It means that it is possible that a controller runs through its
4535 * setup phase and then discovers missing settings. If that is the
4536 * case, then this function will not be called. It then will only
4537 * be called during the config phase.
4539 * So only when in setup phase or config phase, create the debugfs
4540 * entries and register the SMP channels.
4542 if (!hci_dev_test_flag(hdev, HCI_SETUP) &&
4543 !hci_dev_test_flag(hdev, HCI_CONFIG))
4546 hci_debugfs_create_common(hdev);
4548 if (lmp_bredr_capable(hdev))
4549 hci_debugfs_create_bredr(hdev);
4551 if (lmp_le_capable(hdev))
4552 hci_debugfs_create_le(hdev);
4557 #define HCI_QUIRK_BROKEN(_quirk, _desc) { HCI_QUIRK_BROKEN_##_quirk, _desc }
4559 static const struct {
4560 unsigned long quirk;
4562 } hci_broken_table[] = {
4563 HCI_QUIRK_BROKEN(LOCAL_COMMANDS,
4564 "HCI Read Local Supported Commands not supported"),
4565 HCI_QUIRK_BROKEN(STORED_LINK_KEY,
4566 "HCI Delete Stored Link Key command is advertised, "
4567 "but not supported."),
4568 HCI_QUIRK_BROKEN(ERR_DATA_REPORTING,
4569 "HCI Read Default Erroneous Data Reporting command is "
4570 "advertised, but not supported."),
4571 HCI_QUIRK_BROKEN(READ_TRANSMIT_POWER,
4572 "HCI Read Transmit Power Level command is advertised, "
4573 "but not supported."),
4574 HCI_QUIRK_BROKEN(FILTER_CLEAR_ALL,
4575 "HCI Set Event Filter command not supported."),
4576 HCI_QUIRK_BROKEN(ENHANCED_SETUP_SYNC_CONN,
4577 "HCI Enhanced Setup Synchronous Connection command is "
4578 "advertised, but not supported."),
4579 HCI_QUIRK_BROKEN(SET_RPA_TIMEOUT,
4580 "HCI LE Set Random Private Address Timeout command is "
4581 "advertised, but not supported.")
4584 /* This function handles hdev setup stage:
4587 * Setup address if HCI_QUIRK_USE_BDADDR_PROPERTY is set.
4589 static int hci_dev_setup_sync(struct hci_dev *hdev)
4592 bool invalid_bdaddr;
4595 if (!hci_dev_test_flag(hdev, HCI_SETUP) &&
4596 !test_bit(HCI_QUIRK_NON_PERSISTENT_SETUP, &hdev->quirks))
4599 bt_dev_dbg(hdev, "");
4601 hci_sock_dev_event(hdev, HCI_DEV_SETUP);
4604 ret = hdev->setup(hdev);
4606 for (i = 0; i < ARRAY_SIZE(hci_broken_table); i++) {
4607 if (test_bit(hci_broken_table[i].quirk, &hdev->quirks))
4608 bt_dev_warn(hdev, "%s", hci_broken_table[i].desc);
4611 /* The transport driver can set the quirk to mark the
4612 * BD_ADDR invalid before creating the HCI device or in
4613 * its setup callback.
4615 invalid_bdaddr = test_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks);
4618 if (test_bit(HCI_QUIRK_USE_BDADDR_PROPERTY, &hdev->quirks)) {
4619 if (!bacmp(&hdev->public_addr, BDADDR_ANY))
4620 hci_dev_get_bd_addr_from_property(hdev);
4622 if (bacmp(&hdev->public_addr, BDADDR_ANY) &&
4624 ret = hdev->set_bdaddr(hdev,
4625 &hdev->public_addr);
4627 /* If setting of the BD_ADDR from the device
4628 * property succeeds, then treat the address
4629 * as valid even if the invalid BD_ADDR
4630 * quirk indicates otherwise.
4633 invalid_bdaddr = false;
4638 /* The transport driver can set these quirks before
4639 * creating the HCI device or in its setup callback.
4641 * For the invalid BD_ADDR quirk it is possible that
4642 * it becomes a valid address if the bootloader does
4643 * provide it (see above).
4645 * In case any of them is set, the controller has to
4646 * start up as unconfigured.
4648 if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks) ||
4650 hci_dev_set_flag(hdev, HCI_UNCONFIGURED);
4652 /* For an unconfigured controller it is required to
4653 * read at least the version information provided by
4654 * the Read Local Version Information command.
4656 * If the set_bdaddr driver callback is provided, then
4657 * also the original Bluetooth public device address
4658 * will be read using the Read BD Address command.
4660 if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED))
4661 return hci_unconf_init_sync(hdev);
4666 /* This function handles hdev init stage:
4668 * Calls hci_dev_setup_sync to perform setup stage
4669 * Calls hci_init_sync to perform HCI command init sequence
4671 static int hci_dev_init_sync(struct hci_dev *hdev)
4675 bt_dev_dbg(hdev, "");
4677 atomic_set(&hdev->cmd_cnt, 1);
4678 set_bit(HCI_INIT, &hdev->flags);
4680 ret = hci_dev_setup_sync(hdev);
4682 if (hci_dev_test_flag(hdev, HCI_CONFIG)) {
4683 /* If public address change is configured, ensure that
4684 * the address gets programmed. If the driver does not
4685 * support changing the public address, fail the power
4688 if (bacmp(&hdev->public_addr, BDADDR_ANY) &&
4690 ret = hdev->set_bdaddr(hdev, &hdev->public_addr);
4692 ret = -EADDRNOTAVAIL;
4696 if (!hci_dev_test_flag(hdev, HCI_UNCONFIGURED) &&
4697 !hci_dev_test_flag(hdev, HCI_USER_CHANNEL)) {
4698 ret = hci_init_sync(hdev);
4699 if (!ret && hdev->post_init)
4700 ret = hdev->post_init(hdev);
4704 /* If the HCI Reset command is clearing all diagnostic settings,
4705 * then they need to be reprogrammed after the init procedure
4708 if (test_bit(HCI_QUIRK_NON_PERSISTENT_DIAG, &hdev->quirks) &&
4709 !hci_dev_test_flag(hdev, HCI_USER_CHANNEL) &&
4710 hci_dev_test_flag(hdev, HCI_VENDOR_DIAG) && hdev->set_diag)
4711 ret = hdev->set_diag(hdev, true);
4713 if (!hci_dev_test_flag(hdev, HCI_USER_CHANNEL)) {
4718 clear_bit(HCI_INIT, &hdev->flags);
4723 int hci_dev_open_sync(struct hci_dev *hdev)
4727 bt_dev_dbg(hdev, "");
4729 if (hci_dev_test_flag(hdev, HCI_UNREGISTER)) {
4734 if (!hci_dev_test_flag(hdev, HCI_SETUP) &&
4735 !hci_dev_test_flag(hdev, HCI_CONFIG)) {
4736 /* Check for rfkill but allow the HCI setup stage to
4737 * proceed (which in itself doesn't cause any RF activity).
4739 if (hci_dev_test_flag(hdev, HCI_RFKILLED)) {
4744 /* Check for valid public address or a configured static
4745 * random address, but let the HCI setup proceed to
4746 * be able to determine if there is a public address
4749 * In case of user channel usage, it is not important
4750 * if a public address or static random address is
4753 * This check is only valid for BR/EDR controllers
4754 * since AMP controllers do not have an address.
4756 if (!hci_dev_test_flag(hdev, HCI_USER_CHANNEL) &&
4757 hdev->dev_type == HCI_PRIMARY &&
4758 !bacmp(&hdev->bdaddr, BDADDR_ANY) &&
4759 !bacmp(&hdev->static_addr, BDADDR_ANY)) {
4760 ret = -EADDRNOTAVAIL;
4765 if (test_bit(HCI_UP, &hdev->flags)) {
4770 if (hdev->open(hdev)) {
4775 hci_devcd_reset(hdev);
4777 set_bit(HCI_RUNNING, &hdev->flags);
4778 hci_sock_dev_event(hdev, HCI_DEV_OPEN);
4780 ret = hci_dev_init_sync(hdev);
4783 hci_dev_set_flag(hdev, HCI_RPA_EXPIRED);
4784 hci_adv_instances_set_rpa_expired(hdev, true);
4785 set_bit(HCI_UP, &hdev->flags);
4786 hci_sock_dev_event(hdev, HCI_DEV_UP);
4787 hci_leds_update_powered(hdev, true);
4788 if (!hci_dev_test_flag(hdev, HCI_SETUP) &&
4789 !hci_dev_test_flag(hdev, HCI_CONFIG) &&
4790 !hci_dev_test_flag(hdev, HCI_UNCONFIGURED) &&
4791 !hci_dev_test_flag(hdev, HCI_USER_CHANNEL) &&
4792 hci_dev_test_flag(hdev, HCI_MGMT) &&
4793 hdev->dev_type == HCI_PRIMARY) {
4794 ret = hci_powered_update_sync(hdev);
4795 mgmt_power_on(hdev, ret);
4798 /* Init failed, cleanup */
4799 flush_work(&hdev->tx_work);
4801 /* Since hci_rx_work() is possible to awake new cmd_work
4802 * it should be flushed first to avoid unexpected call of
4805 flush_work(&hdev->rx_work);
4806 flush_work(&hdev->cmd_work);
4808 skb_queue_purge(&hdev->cmd_q);
4809 skb_queue_purge(&hdev->rx_q);
4814 if (hdev->sent_cmd) {
4815 cancel_delayed_work_sync(&hdev->cmd_timer);
4816 kfree_skb(hdev->sent_cmd);
4817 hdev->sent_cmd = NULL;
4820 clear_bit(HCI_RUNNING, &hdev->flags);
4821 hci_sock_dev_event(hdev, HCI_DEV_CLOSE);
4824 hdev->flags &= BIT(HCI_RAW);
4831 /* This function requires the caller holds hdev->lock */
4832 static void hci_pend_le_actions_clear(struct hci_dev *hdev)
4834 struct hci_conn_params *p;
4836 list_for_each_entry(p, &hdev->le_conn_params, list) {
4838 hci_conn_drop(p->conn);
4839 hci_conn_put(p->conn);
4842 list_del_init(&p->action);
4845 BT_DBG("All LE pending actions cleared");
4848 static int hci_dev_shutdown(struct hci_dev *hdev)
4851 /* Similar to how we first do setup and then set the exclusive access
4852 * bit for userspace, we must first unset userchannel and then clean up.
4853 * Otherwise, the kernel can't properly use the hci channel to clean up
4854 * the controller (some shutdown routines require sending additional
4855 * commands to the controller for example).
4857 bool was_userchannel =
4858 hci_dev_test_and_clear_flag(hdev, HCI_USER_CHANNEL);
4860 if (!hci_dev_test_flag(hdev, HCI_UNREGISTER) &&
4861 test_bit(HCI_UP, &hdev->flags)) {
4862 /* Execute vendor specific shutdown routine */
4864 err = hdev->shutdown(hdev);
4867 if (was_userchannel)
4868 hci_dev_set_flag(hdev, HCI_USER_CHANNEL);
4873 int hci_dev_close_sync(struct hci_dev *hdev)
4878 bt_dev_dbg(hdev, "");
4880 cancel_delayed_work(&hdev->power_off);
4881 cancel_delayed_work(&hdev->ncmd_timer);
4882 cancel_delayed_work(&hdev->le_scan_disable);
4883 cancel_delayed_work(&hdev->le_scan_restart);
4885 hci_request_cancel_all(hdev);
4887 if (hdev->adv_instance_timeout) {
4888 cancel_delayed_work_sync(&hdev->adv_instance_expire);
4889 hdev->adv_instance_timeout = 0;
4892 err = hci_dev_shutdown(hdev);
4894 if (!test_and_clear_bit(HCI_UP, &hdev->flags)) {
4895 cancel_delayed_work_sync(&hdev->cmd_timer);
4899 hci_leds_update_powered(hdev, false);
4901 /* Flush RX and TX works */
4902 flush_work(&hdev->tx_work);
4903 flush_work(&hdev->rx_work);
4905 if (hdev->discov_timeout > 0) {
4906 hdev->discov_timeout = 0;
4907 hci_dev_clear_flag(hdev, HCI_DISCOVERABLE);
4908 hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
4911 if (hci_dev_test_and_clear_flag(hdev, HCI_SERVICE_CACHE))
4912 cancel_delayed_work(&hdev->service_cache);
4914 if (hci_dev_test_flag(hdev, HCI_MGMT)) {
4915 struct adv_info *adv_instance;
4917 cancel_delayed_work_sync(&hdev->rpa_expired);
4919 list_for_each_entry(adv_instance, &hdev->adv_instances, list)
4920 cancel_delayed_work_sync(&adv_instance->rpa_expired_cb);
4923 /* Avoid potential lockdep warnings from the *_flush() calls by
4924 * ensuring the workqueue is empty up front.
4926 drain_workqueue(hdev->workqueue);
4930 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
4932 auto_off = hci_dev_test_and_clear_flag(hdev, HCI_AUTO_OFF);
4934 if (!auto_off && hdev->dev_type == HCI_PRIMARY &&
4935 !hci_dev_test_flag(hdev, HCI_USER_CHANNEL) &&
4936 hci_dev_test_flag(hdev, HCI_MGMT))
4937 __mgmt_power_off(hdev);
4939 hci_inquiry_cache_flush(hdev);
4940 hci_pend_le_actions_clear(hdev);
4941 hci_conn_hash_flush(hdev);
4942 /* Prevent data races on hdev->smp_data or hdev->smp_bredr_data */
4943 smp_unregister(hdev);
4944 hci_dev_unlock(hdev);
4946 hci_sock_dev_event(hdev, HCI_DEV_DOWN);
4948 if (!hci_dev_test_flag(hdev, HCI_USER_CHANNEL)) {
4949 aosp_do_close(hdev);
4950 msft_do_close(hdev);
4957 skb_queue_purge(&hdev->cmd_q);
4958 atomic_set(&hdev->cmd_cnt, 1);
4959 if (test_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks) &&
4960 !auto_off && !hci_dev_test_flag(hdev, HCI_UNCONFIGURED)) {
4961 set_bit(HCI_INIT, &hdev->flags);
4962 hci_reset_sync(hdev);
4963 clear_bit(HCI_INIT, &hdev->flags);
4966 /* flush cmd work */
4967 flush_work(&hdev->cmd_work);
4970 skb_queue_purge(&hdev->rx_q);
4971 skb_queue_purge(&hdev->cmd_q);
4972 skb_queue_purge(&hdev->raw_q);
4974 /* Drop last sent command */
4975 if (hdev->sent_cmd) {
4976 cancel_delayed_work_sync(&hdev->cmd_timer);
4977 kfree_skb(hdev->sent_cmd);
4978 hdev->sent_cmd = NULL;
4981 clear_bit(HCI_RUNNING, &hdev->flags);
4982 hci_sock_dev_event(hdev, HCI_DEV_CLOSE);
4984 /* After this point our queues are empty and no tasks are scheduled. */
4988 hdev->flags &= BIT(HCI_RAW);
4989 hci_dev_clear_volatile_flags(hdev);
4991 /* Controller radio is available but is currently powered down */
4992 hdev->amp_status = AMP_STATUS_POWERED_DOWN;
4994 memset(hdev->eir, 0, sizeof(hdev->eir));
4995 memset(hdev->dev_class, 0, sizeof(hdev->dev_class));
4996 bacpy(&hdev->random_addr, BDADDR_ANY);
5002 /* This function perform power on HCI command sequence as follows:
5004 * If controller is already up (HCI_UP) performs hci_powered_update_sync
5005 * sequence otherwise run hci_dev_open_sync which will follow with
5006 * hci_powered_update_sync after the init sequence is completed.
5008 static int hci_power_on_sync(struct hci_dev *hdev)
5012 if (test_bit(HCI_UP, &hdev->flags) &&
5013 hci_dev_test_flag(hdev, HCI_MGMT) &&
5014 hci_dev_test_and_clear_flag(hdev, HCI_AUTO_OFF)) {
5015 cancel_delayed_work(&hdev->power_off);
5016 return hci_powered_update_sync(hdev);
5019 err = hci_dev_open_sync(hdev);
5023 /* During the HCI setup phase, a few error conditions are
5024 * ignored and they need to be checked now. If they are still
5025 * valid, it is important to return the device back off.
5027 if (hci_dev_test_flag(hdev, HCI_RFKILLED) ||
5028 hci_dev_test_flag(hdev, HCI_UNCONFIGURED) ||
5029 (hdev->dev_type == HCI_PRIMARY &&
5030 !bacmp(&hdev->bdaddr, BDADDR_ANY) &&
5031 !bacmp(&hdev->static_addr, BDADDR_ANY))) {
5032 hci_dev_clear_flag(hdev, HCI_AUTO_OFF);
5033 hci_dev_close_sync(hdev);
5034 } else if (hci_dev_test_flag(hdev, HCI_AUTO_OFF)) {
5035 queue_delayed_work(hdev->req_workqueue, &hdev->power_off,
5036 HCI_AUTO_OFF_TIMEOUT);
5039 if (hci_dev_test_and_clear_flag(hdev, HCI_SETUP)) {
5040 /* For unconfigured devices, set the HCI_RAW flag
5041 * so that userspace can easily identify them.
5043 if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED))
5044 set_bit(HCI_RAW, &hdev->flags);
5046 /* For fully configured devices, this will send
5047 * the Index Added event. For unconfigured devices,
5048 * it will send Unconfigued Index Added event.
5050 * Devices with HCI_QUIRK_RAW_DEVICE are ignored
5051 * and no event will be send.
5053 mgmt_index_added(hdev);
5054 } else if (hci_dev_test_and_clear_flag(hdev, HCI_CONFIG)) {
5055 /* When the controller is now configured, then it
5056 * is important to clear the HCI_RAW flag.
5058 if (!hci_dev_test_flag(hdev, HCI_UNCONFIGURED))
5059 clear_bit(HCI_RAW, &hdev->flags);
5061 /* Powering on the controller with HCI_CONFIG set only
5062 * happens with the transition from unconfigured to
5063 * configured. This will send the Index Added event.
5065 mgmt_index_added(hdev);
5071 static int hci_remote_name_cancel_sync(struct hci_dev *hdev, bdaddr_t *addr)
5073 struct hci_cp_remote_name_req_cancel cp;
5075 memset(&cp, 0, sizeof(cp));
5076 bacpy(&cp.bdaddr, addr);
5078 return __hci_cmd_sync_status(hdev, HCI_OP_REMOTE_NAME_REQ_CANCEL,
5079 sizeof(cp), &cp, HCI_CMD_TIMEOUT);
5082 int hci_stop_discovery_sync(struct hci_dev *hdev)
5084 struct discovery_state *d = &hdev->discovery;
5085 struct inquiry_entry *e;
5088 bt_dev_dbg(hdev, "state %u", hdev->discovery.state);
5090 if (d->state == DISCOVERY_FINDING || d->state == DISCOVERY_STOPPING) {
5091 if (test_bit(HCI_INQUIRY, &hdev->flags)) {
5092 err = __hci_cmd_sync_status(hdev, HCI_OP_INQUIRY_CANCEL,
5093 0, NULL, HCI_CMD_TIMEOUT);
5098 if (hci_dev_test_flag(hdev, HCI_LE_SCAN)) {
5099 cancel_delayed_work(&hdev->le_scan_disable);
5100 cancel_delayed_work(&hdev->le_scan_restart);
5102 err = hci_scan_disable_sync(hdev);
5108 err = hci_scan_disable_sync(hdev);
5113 /* Resume advertising if it was paused */
5114 if (use_ll_privacy(hdev))
5115 hci_resume_advertising_sync(hdev);
5117 /* No further actions needed for LE-only discovery */
5118 if (d->type == DISCOV_TYPE_LE)
5121 if (d->state == DISCOVERY_RESOLVING || d->state == DISCOVERY_STOPPING) {
5122 e = hci_inquiry_cache_lookup_resolve(hdev, BDADDR_ANY,
5127 return hci_remote_name_cancel_sync(hdev, &e->data.bdaddr);
5133 static int hci_disconnect_phy_link_sync(struct hci_dev *hdev, u16 handle,
5136 struct hci_cp_disconn_phy_link cp;
5138 memset(&cp, 0, sizeof(cp));
5139 cp.phy_handle = HCI_PHY_HANDLE(handle);
5142 return __hci_cmd_sync_status(hdev, HCI_OP_DISCONN_PHY_LINK,
5143 sizeof(cp), &cp, HCI_CMD_TIMEOUT);
5146 static int hci_disconnect_sync(struct hci_dev *hdev, struct hci_conn *conn,
5149 struct hci_cp_disconnect cp;
5151 if (conn->type == AMP_LINK)
5152 return hci_disconnect_phy_link_sync(hdev, conn->handle, reason);
5154 memset(&cp, 0, sizeof(cp));
5155 cp.handle = cpu_to_le16(conn->handle);
5158 /* Wait for HCI_EV_DISCONN_COMPLETE, not HCI_EV_CMD_STATUS, when the
5159 * reason is anything but HCI_ERROR_REMOTE_POWER_OFF. This reason is
5160 * used when suspending or powering off, where we don't want to wait
5161 * for the peer's response.
5163 if (reason != HCI_ERROR_REMOTE_POWER_OFF)
5164 return __hci_cmd_sync_status_sk(hdev, HCI_OP_DISCONNECT,
5166 HCI_EV_DISCONN_COMPLETE,
5167 HCI_CMD_TIMEOUT, NULL);
5169 return __hci_cmd_sync_status(hdev, HCI_OP_DISCONNECT, sizeof(cp), &cp,
5173 static int hci_le_connect_cancel_sync(struct hci_dev *hdev,
5174 struct hci_conn *conn)
5176 if (test_bit(HCI_CONN_SCANNING, &conn->flags))
5179 if (test_and_set_bit(HCI_CONN_CANCEL, &conn->flags))
5182 return __hci_cmd_sync_status(hdev, HCI_OP_LE_CREATE_CONN_CANCEL,
5183 0, NULL, HCI_CMD_TIMEOUT);
5186 static int hci_connect_cancel_sync(struct hci_dev *hdev, struct hci_conn *conn)
5188 if (conn->type == LE_LINK)
5189 return hci_le_connect_cancel_sync(hdev, conn);
5191 if (hdev->hci_ver < BLUETOOTH_VER_1_2)
5194 return __hci_cmd_sync_status(hdev, HCI_OP_CREATE_CONN_CANCEL,
5195 6, &conn->dst, HCI_CMD_TIMEOUT);
5198 static int hci_reject_sco_sync(struct hci_dev *hdev, struct hci_conn *conn,
5201 struct hci_cp_reject_sync_conn_req cp;
5203 memset(&cp, 0, sizeof(cp));
5204 bacpy(&cp.bdaddr, &conn->dst);
5207 /* SCO rejection has its own limited set of
5208 * allowed error values (0x0D-0x0F).
5210 if (reason < 0x0d || reason > 0x0f)
5211 cp.reason = HCI_ERROR_REJ_LIMITED_RESOURCES;
5213 return __hci_cmd_sync_status(hdev, HCI_OP_REJECT_SYNC_CONN_REQ,
5214 sizeof(cp), &cp, HCI_CMD_TIMEOUT);
5217 static int hci_reject_conn_sync(struct hci_dev *hdev, struct hci_conn *conn,
5220 struct hci_cp_reject_conn_req cp;
5222 if (conn->type == SCO_LINK || conn->type == ESCO_LINK)
5223 return hci_reject_sco_sync(hdev, conn, reason);
5225 memset(&cp, 0, sizeof(cp));
5226 bacpy(&cp.bdaddr, &conn->dst);
5229 return __hci_cmd_sync_status(hdev, HCI_OP_REJECT_CONN_REQ,
5230 sizeof(cp), &cp, HCI_CMD_TIMEOUT);
5233 int hci_abort_conn_sync(struct hci_dev *hdev, struct hci_conn *conn, u8 reason)
5237 switch (conn->state) {
5240 return hci_disconnect_sync(hdev, conn, reason);
5242 err = hci_connect_cancel_sync(hdev, conn);
5243 /* Cleanup hci_conn object if it cannot be cancelled as it
5244 * likelly means the controller and host stack are out of sync.
5248 hci_conn_failed(conn, err);
5249 hci_dev_unlock(hdev);
5253 return hci_reject_conn_sync(hdev, conn, reason);
5255 conn->state = BT_CLOSED;
5262 static int hci_disconnect_all_sync(struct hci_dev *hdev, u8 reason)
5264 struct hci_conn *conn, *tmp;
5267 list_for_each_entry_safe(conn, tmp, &hdev->conn_hash.list, list) {
5268 err = hci_abort_conn_sync(hdev, conn, reason);
5276 /* This function perform power off HCI command sequence as follows:
5280 * Disconnect all connections
5281 * hci_dev_close_sync
5283 static int hci_power_off_sync(struct hci_dev *hdev)
5287 /* If controller is already down there is nothing to do */
5288 if (!test_bit(HCI_UP, &hdev->flags))
5291 if (test_bit(HCI_ISCAN, &hdev->flags) ||
5292 test_bit(HCI_PSCAN, &hdev->flags)) {
5293 err = hci_write_scan_enable_sync(hdev, 0x00);
5298 err = hci_clear_adv_sync(hdev, NULL, false);
5302 err = hci_stop_discovery_sync(hdev);
5306 /* Terminated due to Power Off */
5307 err = hci_disconnect_all_sync(hdev, HCI_ERROR_REMOTE_POWER_OFF);
5311 return hci_dev_close_sync(hdev);
5314 int hci_set_powered_sync(struct hci_dev *hdev, u8 val)
5317 return hci_power_on_sync(hdev);
5319 return hci_power_off_sync(hdev);
5322 static int hci_write_iac_sync(struct hci_dev *hdev)
5324 struct hci_cp_write_current_iac_lap cp;
5326 if (!hci_dev_test_flag(hdev, HCI_DISCOVERABLE))
5329 memset(&cp, 0, sizeof(cp));
5331 if (hci_dev_test_flag(hdev, HCI_LIMITED_DISCOVERABLE)) {
5332 /* Limited discoverable mode */
5333 cp.num_iac = min_t(u8, hdev->num_iac, 2);
5334 cp.iac_lap[0] = 0x00; /* LIAC */
5335 cp.iac_lap[1] = 0x8b;
5336 cp.iac_lap[2] = 0x9e;
5337 cp.iac_lap[3] = 0x33; /* GIAC */
5338 cp.iac_lap[4] = 0x8b;
5339 cp.iac_lap[5] = 0x9e;
5341 /* General discoverable mode */
5343 cp.iac_lap[0] = 0x33; /* GIAC */
5344 cp.iac_lap[1] = 0x8b;
5345 cp.iac_lap[2] = 0x9e;
5348 return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_CURRENT_IAC_LAP,
5349 (cp.num_iac * 3) + 1, &cp,
5353 int hci_update_discoverable_sync(struct hci_dev *hdev)
5357 if (hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
5358 err = hci_write_iac_sync(hdev);
5362 err = hci_update_scan_sync(hdev);
5366 err = hci_update_class_sync(hdev);
5371 /* Advertising instances don't use the global discoverable setting, so
5372 * only update AD if advertising was enabled using Set Advertising.
5374 if (hci_dev_test_flag(hdev, HCI_ADVERTISING)) {
5375 err = hci_update_adv_data_sync(hdev, 0x00);
5379 /* Discoverable mode affects the local advertising
5380 * address in limited privacy mode.
5382 if (hci_dev_test_flag(hdev, HCI_LIMITED_PRIVACY)) {
5383 if (ext_adv_capable(hdev))
5384 err = hci_start_ext_adv_sync(hdev, 0x00);
5386 err = hci_enable_advertising_sync(hdev);
5393 static int update_discoverable_sync(struct hci_dev *hdev, void *data)
5395 return hci_update_discoverable_sync(hdev);
5398 int hci_update_discoverable(struct hci_dev *hdev)
5400 /* Only queue if it would have any effect */
5401 if (hdev_is_powered(hdev) &&
5402 hci_dev_test_flag(hdev, HCI_ADVERTISING) &&
5403 hci_dev_test_flag(hdev, HCI_DISCOVERABLE) &&
5404 hci_dev_test_flag(hdev, HCI_LIMITED_PRIVACY))
5405 return hci_cmd_sync_queue(hdev, update_discoverable_sync, NULL,
5411 int hci_update_connectable_sync(struct hci_dev *hdev)
5415 err = hci_update_scan_sync(hdev);
5419 /* If BR/EDR is not enabled and we disable advertising as a
5420 * by-product of disabling connectable, we need to update the
5421 * advertising flags.
5423 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
5424 err = hci_update_adv_data_sync(hdev, hdev->cur_adv_instance);
5426 /* Update the advertising parameters if necessary */
5427 if (hci_dev_test_flag(hdev, HCI_ADVERTISING) ||
5428 !list_empty(&hdev->adv_instances)) {
5429 if (ext_adv_capable(hdev))
5430 err = hci_start_ext_adv_sync(hdev,
5431 hdev->cur_adv_instance);
5433 err = hci_enable_advertising_sync(hdev);
5439 return hci_update_passive_scan_sync(hdev);
5442 static int hci_inquiry_sync(struct hci_dev *hdev, u8 length)
5444 const u8 giac[3] = { 0x33, 0x8b, 0x9e };
5445 const u8 liac[3] = { 0x00, 0x8b, 0x9e };
5446 struct hci_cp_inquiry cp;
5448 bt_dev_dbg(hdev, "");
5450 if (hci_dev_test_flag(hdev, HCI_INQUIRY))
5454 hci_inquiry_cache_flush(hdev);
5455 hci_dev_unlock(hdev);
5457 memset(&cp, 0, sizeof(cp));
5459 if (hdev->discovery.limited)
5460 memcpy(&cp.lap, liac, sizeof(cp.lap));
5462 memcpy(&cp.lap, giac, sizeof(cp.lap));
5466 return __hci_cmd_sync_status(hdev, HCI_OP_INQUIRY,
5467 sizeof(cp), &cp, HCI_CMD_TIMEOUT);
5470 static int hci_active_scan_sync(struct hci_dev *hdev, uint16_t interval)
5473 /* Accept list is not used for discovery */
5474 u8 filter_policy = 0x00;
5475 /* Default is to enable duplicates filter */
5476 u8 filter_dup = LE_SCAN_FILTER_DUP_ENABLE;
5479 bt_dev_dbg(hdev, "");
5481 /* If controller is scanning, it means the passive scanning is
5482 * running. Thus, we should temporarily stop it in order to set the
5483 * discovery scanning parameters.
5485 err = hci_scan_disable_sync(hdev);
5487 bt_dev_err(hdev, "Unable to disable scanning: %d", err);
5491 cancel_interleave_scan(hdev);
5493 /* Pause address resolution for active scan and stop advertising if
5494 * privacy is enabled.
5496 err = hci_pause_addr_resolution(hdev);
5500 /* All active scans will be done with either a resolvable private
5501 * address (when privacy feature has been enabled) or non-resolvable
5504 err = hci_update_random_address_sync(hdev, true, scan_use_rpa(hdev),
5507 own_addr_type = ADDR_LE_DEV_PUBLIC;
5509 if (hci_is_adv_monitoring(hdev)) {
5510 /* Duplicate filter should be disabled when some advertisement
5511 * monitor is activated, otherwise AdvMon can only receive one
5512 * advertisement for one peer(*) during active scanning, and
5513 * might report loss to these peers.
5515 * Note that different controllers have different meanings of
5516 * |duplicate|. Some of them consider packets with the same
5517 * address as duplicate, and others consider packets with the
5518 * same address and the same RSSI as duplicate. Although in the
5519 * latter case we don't need to disable duplicate filter, but
5520 * it is common to have active scanning for a short period of
5521 * time, the power impact should be neglectable.
5523 filter_dup = LE_SCAN_FILTER_DUP_DISABLE;
5526 err = hci_start_scan_sync(hdev, LE_SCAN_ACTIVE, interval,
5527 hdev->le_scan_window_discovery,
5528 own_addr_type, filter_policy, filter_dup);
5533 /* Resume advertising if it was paused */
5534 if (use_ll_privacy(hdev))
5535 hci_resume_advertising_sync(hdev);
5537 /* Resume passive scanning */
5538 hci_update_passive_scan_sync(hdev);
5542 static int hci_start_interleaved_discovery_sync(struct hci_dev *hdev)
5546 bt_dev_dbg(hdev, "");
5548 err = hci_active_scan_sync(hdev, hdev->le_scan_int_discovery * 2);
5552 return hci_inquiry_sync(hdev, DISCOV_BREDR_INQUIRY_LEN);
5555 int hci_start_discovery_sync(struct hci_dev *hdev)
5557 unsigned long timeout;
5560 bt_dev_dbg(hdev, "type %u", hdev->discovery.type);
5562 switch (hdev->discovery.type) {
5563 case DISCOV_TYPE_BREDR:
5564 return hci_inquiry_sync(hdev, DISCOV_BREDR_INQUIRY_LEN);
5565 case DISCOV_TYPE_INTERLEAVED:
5566 /* When running simultaneous discovery, the LE scanning time
5567 * should occupy the whole discovery time sine BR/EDR inquiry
5568 * and LE scanning are scheduled by the controller.
5570 * For interleaving discovery in comparison, BR/EDR inquiry
5571 * and LE scanning are done sequentially with separate
5574 if (test_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY,
5576 timeout = msecs_to_jiffies(DISCOV_LE_TIMEOUT);
5577 /* During simultaneous discovery, we double LE scan
5578 * interval. We must leave some time for the controller
5579 * to do BR/EDR inquiry.
5581 err = hci_start_interleaved_discovery_sync(hdev);
5585 timeout = msecs_to_jiffies(hdev->discov_interleaved_timeout);
5586 err = hci_active_scan_sync(hdev, hdev->le_scan_int_discovery);
5588 case DISCOV_TYPE_LE:
5589 timeout = msecs_to_jiffies(DISCOV_LE_TIMEOUT);
5590 err = hci_active_scan_sync(hdev, hdev->le_scan_int_discovery);
5599 bt_dev_dbg(hdev, "timeout %u ms", jiffies_to_msecs(timeout));
5601 /* When service discovery is used and the controller has a
5602 * strict duplicate filter, it is important to remember the
5603 * start and duration of the scan. This is required for
5604 * restarting scanning during the discovery phase.
5606 if (test_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks) &&
5607 hdev->discovery.result_filtering) {
5608 hdev->discovery.scan_start = jiffies;
5609 hdev->discovery.scan_duration = timeout;
5612 queue_delayed_work(hdev->req_workqueue, &hdev->le_scan_disable,
5617 static void hci_suspend_monitor_sync(struct hci_dev *hdev)
5619 switch (hci_get_adv_monitor_offload_ext(hdev)) {
5620 case HCI_ADV_MONITOR_EXT_MSFT:
5621 msft_suspend_sync(hdev);
5628 /* This function disables discovery and mark it as paused */
5629 static int hci_pause_discovery_sync(struct hci_dev *hdev)
5631 int old_state = hdev->discovery.state;
5634 /* If discovery already stopped/stopping/paused there nothing to do */
5635 if (old_state == DISCOVERY_STOPPED || old_state == DISCOVERY_STOPPING ||
5636 hdev->discovery_paused)
5639 hci_discovery_set_state(hdev, DISCOVERY_STOPPING);
5640 err = hci_stop_discovery_sync(hdev);
5644 hdev->discovery_paused = true;
5645 hdev->discovery_old_state = old_state;
5646 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
5651 static int hci_update_event_filter_sync(struct hci_dev *hdev)
5653 struct bdaddr_list_with_flags *b;
5654 u8 scan = SCAN_DISABLED;
5655 bool scanning = test_bit(HCI_PSCAN, &hdev->flags);
5658 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
5661 /* Some fake CSR controllers lock up after setting this type of
5662 * filter, so avoid sending the request altogether.
5664 if (test_bit(HCI_QUIRK_BROKEN_FILTER_CLEAR_ALL, &hdev->quirks))
5667 /* Always clear event filter when starting */
5668 hci_clear_event_filter_sync(hdev);
5670 list_for_each_entry(b, &hdev->accept_list, list) {
5671 if (!(b->flags & HCI_CONN_FLAG_REMOTE_WAKEUP))
5674 bt_dev_dbg(hdev, "Adding event filters for %pMR", &b->bdaddr);
5676 err = hci_set_event_filter_sync(hdev, HCI_FLT_CONN_SETUP,
5677 HCI_CONN_SETUP_ALLOW_BDADDR,
5679 HCI_CONN_SETUP_AUTO_ON);
5681 bt_dev_dbg(hdev, "Failed to set event filter for %pMR",
5687 if (scan && !scanning)
5688 hci_write_scan_enable_sync(hdev, scan);
5689 else if (!scan && scanning)
5690 hci_write_scan_enable_sync(hdev, scan);
5695 /* This function disables scan (BR and LE) and mark it as paused */
5696 static int hci_pause_scan_sync(struct hci_dev *hdev)
5698 if (hdev->scanning_paused)
5701 /* Disable page scan if enabled */
5702 if (test_bit(HCI_PSCAN, &hdev->flags))
5703 hci_write_scan_enable_sync(hdev, SCAN_DISABLED);
5705 hci_scan_disable_sync(hdev);
5707 hdev->scanning_paused = true;
5712 /* This function performs the HCI suspend procedures in the follow order:
5714 * Pause discovery (active scanning/inquiry)
5715 * Pause Directed Advertising/Advertising
5716 * Pause Scanning (passive scanning in case discovery was not active)
5717 * Disconnect all connections
5718 * Set suspend_status to BT_SUSPEND_DISCONNECT if hdev cannot wakeup
5720 * Update event mask (only set events that are allowed to wake up the host)
5721 * Update event filter (with devices marked with HCI_CONN_FLAG_REMOTE_WAKEUP)
5722 * Update passive scanning (lower duty cycle)
5723 * Set suspend_status to BT_SUSPEND_CONFIGURE_WAKE
5725 int hci_suspend_sync(struct hci_dev *hdev)
5729 /* If marked as suspended there nothing to do */
5730 if (hdev->suspended)
5733 /* Mark device as suspended */
5734 hdev->suspended = true;
5736 /* Pause discovery if not already stopped */
5737 hci_pause_discovery_sync(hdev);
5739 /* Pause other advertisements */
5740 hci_pause_advertising_sync(hdev);
5742 /* Suspend monitor filters */
5743 hci_suspend_monitor_sync(hdev);
5745 /* Prevent disconnects from causing scanning to be re-enabled */
5746 hci_pause_scan_sync(hdev);
5748 if (hci_conn_count(hdev)) {
5749 /* Soft disconnect everything (power off) */
5750 err = hci_disconnect_all_sync(hdev, HCI_ERROR_REMOTE_POWER_OFF);
5752 /* Set state to BT_RUNNING so resume doesn't notify */
5753 hdev->suspend_state = BT_RUNNING;
5754 hci_resume_sync(hdev);
5758 /* Update event mask so only the allowed event can wakeup the
5761 hci_set_event_mask_sync(hdev);
5764 /* Only configure accept list if disconnect succeeded and wake
5765 * isn't being prevented.
5767 if (!hdev->wakeup || !hdev->wakeup(hdev)) {
5768 hdev->suspend_state = BT_SUSPEND_DISCONNECT;
5772 /* Unpause to take care of updating scanning params */
5773 hdev->scanning_paused = false;
5775 /* Enable event filter for paired devices */
5776 hci_update_event_filter_sync(hdev);
5778 /* Update LE passive scan if enabled */
5779 hci_update_passive_scan_sync(hdev);
5781 /* Pause scan changes again. */
5782 hdev->scanning_paused = true;
5784 hdev->suspend_state = BT_SUSPEND_CONFIGURE_WAKE;
5789 /* This function resumes discovery */
5790 static int hci_resume_discovery_sync(struct hci_dev *hdev)
5794 /* If discovery not paused there nothing to do */
5795 if (!hdev->discovery_paused)
5798 hdev->discovery_paused = false;
5800 hci_discovery_set_state(hdev, DISCOVERY_STARTING);
5802 err = hci_start_discovery_sync(hdev);
5804 hci_discovery_set_state(hdev, err ? DISCOVERY_STOPPED :
5810 static void hci_resume_monitor_sync(struct hci_dev *hdev)
5812 switch (hci_get_adv_monitor_offload_ext(hdev)) {
5813 case HCI_ADV_MONITOR_EXT_MSFT:
5814 msft_resume_sync(hdev);
5821 /* This function resume scan and reset paused flag */
5822 static int hci_resume_scan_sync(struct hci_dev *hdev)
5824 if (!hdev->scanning_paused)
5827 hdev->scanning_paused = false;
5829 hci_update_scan_sync(hdev);
5831 /* Reset passive scanning to normal */
5832 hci_update_passive_scan_sync(hdev);
5837 /* This function performs the HCI suspend procedures in the follow order:
5839 * Restore event mask
5840 * Clear event filter
5841 * Update passive scanning (normal duty cycle)
5842 * Resume Directed Advertising/Advertising
5843 * Resume discovery (active scanning/inquiry)
5845 int hci_resume_sync(struct hci_dev *hdev)
5847 /* If not marked as suspended there nothing to do */
5848 if (!hdev->suspended)
5851 hdev->suspended = false;
5853 /* Restore event mask */
5854 hci_set_event_mask_sync(hdev);
5856 /* Clear any event filters and restore scan state */
5857 hci_clear_event_filter_sync(hdev);
5859 /* Resume scanning */
5860 hci_resume_scan_sync(hdev);
5862 /* Resume monitor filters */
5863 hci_resume_monitor_sync(hdev);
5865 /* Resume other advertisements */
5866 hci_resume_advertising_sync(hdev);
5868 /* Resume discovery */
5869 hci_resume_discovery_sync(hdev);
5874 static bool conn_use_rpa(struct hci_conn *conn)
5876 struct hci_dev *hdev = conn->hdev;
5878 return hci_dev_test_flag(hdev, HCI_PRIVACY);
5881 static int hci_le_ext_directed_advertising_sync(struct hci_dev *hdev,
5882 struct hci_conn *conn)
5884 struct hci_cp_le_set_ext_adv_params cp;
5886 bdaddr_t random_addr;
5889 err = hci_update_random_address_sync(hdev, false, conn_use_rpa(conn),
5894 /* Set require_privacy to false so that the remote device has a
5895 * chance of identifying us.
5897 err = hci_get_random_address(hdev, false, conn_use_rpa(conn), NULL,
5898 &own_addr_type, &random_addr);
5902 memset(&cp, 0, sizeof(cp));
5904 cp.evt_properties = cpu_to_le16(LE_LEGACY_ADV_DIRECT_IND);
5905 cp.channel_map = hdev->le_adv_channel_map;
5906 cp.tx_power = HCI_TX_POWER_INVALID;
5907 cp.primary_phy = HCI_ADV_PHY_1M;
5908 cp.secondary_phy = HCI_ADV_PHY_1M;
5909 cp.handle = 0x00; /* Use instance 0 for directed adv */
5910 cp.own_addr_type = own_addr_type;
5911 cp.peer_addr_type = conn->dst_type;
5912 bacpy(&cp.peer_addr, &conn->dst);
5914 /* As per Core Spec 5.2 Vol 2, PART E, Sec 7.8.53, for
5915 * advertising_event_property LE_LEGACY_ADV_DIRECT_IND
5916 * does not supports advertising data when the advertising set already
5917 * contains some, the controller shall return erroc code 'Invalid
5918 * HCI Command Parameters(0x12).
5919 * So it is required to remove adv set for handle 0x00. since we use
5920 * instance 0 for directed adv.
5922 err = hci_remove_ext_adv_instance_sync(hdev, cp.handle, NULL);
5926 err = __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_EXT_ADV_PARAMS,
5927 sizeof(cp), &cp, HCI_CMD_TIMEOUT);
5931 /* Check if random address need to be updated */
5932 if (own_addr_type == ADDR_LE_DEV_RANDOM &&
5933 bacmp(&random_addr, BDADDR_ANY) &&
5934 bacmp(&random_addr, &hdev->random_addr)) {
5935 err = hci_set_adv_set_random_addr_sync(hdev, 0x00,
5941 return hci_enable_ext_advertising_sync(hdev, 0x00);
5944 static int hci_le_directed_advertising_sync(struct hci_dev *hdev,
5945 struct hci_conn *conn)
5947 struct hci_cp_le_set_adv_param cp;
5952 if (ext_adv_capable(hdev))
5953 return hci_le_ext_directed_advertising_sync(hdev, conn);
5955 /* Clear the HCI_LE_ADV bit temporarily so that the
5956 * hci_update_random_address knows that it's safe to go ahead
5957 * and write a new random address. The flag will be set back on
5958 * as soon as the SET_ADV_ENABLE HCI command completes.
5960 hci_dev_clear_flag(hdev, HCI_LE_ADV);
5962 /* Set require_privacy to false so that the remote device has a
5963 * chance of identifying us.
5965 status = hci_update_random_address_sync(hdev, false, conn_use_rpa(conn),
5970 memset(&cp, 0, sizeof(cp));
5972 /* Some controllers might reject command if intervals are not
5973 * within range for undirected advertising.
5974 * BCM20702A0 is known to be affected by this.
5976 cp.min_interval = cpu_to_le16(0x0020);
5977 cp.max_interval = cpu_to_le16(0x0020);
5979 cp.type = LE_ADV_DIRECT_IND;
5980 cp.own_address_type = own_addr_type;
5981 cp.direct_addr_type = conn->dst_type;
5982 bacpy(&cp.direct_addr, &conn->dst);
5983 cp.channel_map = hdev->le_adv_channel_map;
5985 status = __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_ADV_PARAM,
5986 sizeof(cp), &cp, HCI_CMD_TIMEOUT);
5992 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_ADV_ENABLE,
5993 sizeof(enable), &enable, HCI_CMD_TIMEOUT);
5996 static void set_ext_conn_params(struct hci_conn *conn,
5997 struct hci_cp_le_ext_conn_param *p)
5999 struct hci_dev *hdev = conn->hdev;
6001 memset(p, 0, sizeof(*p));
6003 p->scan_interval = cpu_to_le16(hdev->le_scan_int_connect);
6004 p->scan_window = cpu_to_le16(hdev->le_scan_window_connect);
6005 p->conn_interval_min = cpu_to_le16(conn->le_conn_min_interval);
6006 p->conn_interval_max = cpu_to_le16(conn->le_conn_max_interval);
6007 p->conn_latency = cpu_to_le16(conn->le_conn_latency);
6008 p->supervision_timeout = cpu_to_le16(conn->le_supv_timeout);
6009 p->min_ce_len = cpu_to_le16(0x0000);
6010 p->max_ce_len = cpu_to_le16(0x0000);
6013 static int hci_le_ext_create_conn_sync(struct hci_dev *hdev,
6014 struct hci_conn *conn, u8 own_addr_type)
6016 struct hci_cp_le_ext_create_conn *cp;
6017 struct hci_cp_le_ext_conn_param *p;
6018 u8 data[sizeof(*cp) + sizeof(*p) * 3];
6022 p = (void *)cp->data;
6024 memset(cp, 0, sizeof(*cp));
6026 bacpy(&cp->peer_addr, &conn->dst);
6027 cp->peer_addr_type = conn->dst_type;
6028 cp->own_addr_type = own_addr_type;
6032 if (scan_1m(hdev)) {
6033 cp->phys |= LE_SCAN_PHY_1M;
6034 set_ext_conn_params(conn, p);
6040 if (scan_2m(hdev)) {
6041 cp->phys |= LE_SCAN_PHY_2M;
6042 set_ext_conn_params(conn, p);
6048 if (scan_coded(hdev)) {
6049 cp->phys |= LE_SCAN_PHY_CODED;
6050 set_ext_conn_params(conn, p);
6055 return __hci_cmd_sync_status_sk(hdev, HCI_OP_LE_EXT_CREATE_CONN,
6057 HCI_EV_LE_ENHANCED_CONN_COMPLETE,
6058 conn->conn_timeout, NULL);
6061 int hci_le_create_conn_sync(struct hci_dev *hdev, struct hci_conn *conn)
6063 struct hci_cp_le_create_conn cp;
6064 struct hci_conn_params *params;
6068 /* If requested to connect as peripheral use directed advertising */
6069 if (conn->role == HCI_ROLE_SLAVE) {
6070 /* If we're active scanning and simultaneous roles is not
6071 * enabled simply reject the attempt.
6073 if (hci_dev_test_flag(hdev, HCI_LE_SCAN) &&
6074 hdev->le_scan_type == LE_SCAN_ACTIVE &&
6075 !hci_dev_test_flag(hdev, HCI_LE_SIMULTANEOUS_ROLES)) {
6080 /* Pause advertising while doing directed advertising. */
6081 hci_pause_advertising_sync(hdev);
6083 err = hci_le_directed_advertising_sync(hdev, conn);
6087 /* Disable advertising if simultaneous roles is not in use. */
6088 if (!hci_dev_test_flag(hdev, HCI_LE_SIMULTANEOUS_ROLES))
6089 hci_pause_advertising_sync(hdev);
6091 params = hci_conn_params_lookup(hdev, &conn->dst, conn->dst_type);
6093 conn->le_conn_min_interval = params->conn_min_interval;
6094 conn->le_conn_max_interval = params->conn_max_interval;
6095 conn->le_conn_latency = params->conn_latency;
6096 conn->le_supv_timeout = params->supervision_timeout;
6098 conn->le_conn_min_interval = hdev->le_conn_min_interval;
6099 conn->le_conn_max_interval = hdev->le_conn_max_interval;
6100 conn->le_conn_latency = hdev->le_conn_latency;
6101 conn->le_supv_timeout = hdev->le_supv_timeout;
6104 /* If controller is scanning, we stop it since some controllers are
6105 * not able to scan and connect at the same time. Also set the
6106 * HCI_LE_SCAN_INTERRUPTED flag so that the command complete
6107 * handler for scan disabling knows to set the correct discovery
6110 if (hci_dev_test_flag(hdev, HCI_LE_SCAN)) {
6111 hci_scan_disable_sync(hdev);
6112 hci_dev_set_flag(hdev, HCI_LE_SCAN_INTERRUPTED);
6115 /* Update random address, but set require_privacy to false so
6116 * that we never connect with an non-resolvable address.
6118 err = hci_update_random_address_sync(hdev, false, conn_use_rpa(conn),
6123 if (use_ext_conn(hdev)) {
6124 err = hci_le_ext_create_conn_sync(hdev, conn, own_addr_type);
6128 memset(&cp, 0, sizeof(cp));
6130 cp.scan_interval = cpu_to_le16(hdev->le_scan_int_connect);
6131 cp.scan_window = cpu_to_le16(hdev->le_scan_window_connect);
6133 bacpy(&cp.peer_addr, &conn->dst);
6134 cp.peer_addr_type = conn->dst_type;
6135 cp.own_address_type = own_addr_type;
6136 cp.conn_interval_min = cpu_to_le16(conn->le_conn_min_interval);
6137 cp.conn_interval_max = cpu_to_le16(conn->le_conn_max_interval);
6138 cp.conn_latency = cpu_to_le16(conn->le_conn_latency);
6139 cp.supervision_timeout = cpu_to_le16(conn->le_supv_timeout);
6140 cp.min_ce_len = cpu_to_le16(0x0000);
6141 cp.max_ce_len = cpu_to_le16(0x0000);
6143 /* BLUETOOTH CORE SPECIFICATION Version 5.3 | Vol 4, Part E page 2261:
6145 * If this event is unmasked and the HCI_LE_Connection_Complete event
6146 * is unmasked, only the HCI_LE_Enhanced_Connection_Complete event is
6147 * sent when a new connection has been created.
6149 err = __hci_cmd_sync_status_sk(hdev, HCI_OP_LE_CREATE_CONN,
6151 use_enhanced_conn_complete(hdev) ?
6152 HCI_EV_LE_ENHANCED_CONN_COMPLETE :
6153 HCI_EV_LE_CONN_COMPLETE,
6154 conn->conn_timeout, NULL);
6157 if (err == -ETIMEDOUT)
6158 hci_le_connect_cancel_sync(hdev, conn);
6160 /* Re-enable advertising after the connection attempt is finished. */
6161 hci_resume_advertising_sync(hdev);
6165 int hci_le_create_cis_sync(struct hci_dev *hdev, struct hci_conn *conn)
6168 struct hci_cp_le_create_cis cp;
6169 struct hci_cis cis[0x1f];
6172 struct hci_conn *hcon = conn;
6174 memset(&cmd, 0, sizeof(cmd));
6175 cmd.cis[0].acl_handle = cpu_to_le16(conn->parent->handle);
6176 cmd.cis[0].cis_handle = cpu_to_le16(conn->handle);
6178 cig = conn->iso_qos.ucast.cig;
6184 list_for_each_entry_rcu(conn, &hdev->conn_hash.list, list) {
6185 struct hci_cis *cis = &cmd.cis[cmd.cp.num_cis];
6187 if (conn == hcon || conn->type != ISO_LINK ||
6188 conn->state == BT_CONNECTED ||
6189 conn->iso_qos.ucast.cig != cig)
6192 /* Check if all CIS(s) belonging to a CIG are ready */
6193 if (!conn->parent || conn->parent->state != BT_CONNECTED ||
6194 conn->state != BT_CONNECT) {
6199 /* Group all CIS with state BT_CONNECT since the spec don't
6200 * allow to send them individually:
6202 * BLUETOOTH CORE SPECIFICATION Version 5.3 | Vol 4, Part E
6205 * If the Host issues this command before all the
6206 * HCI_LE_CIS_Established events from the previous use of the
6207 * command have been generated, the Controller shall return the
6208 * error code Command Disallowed (0x0C).
6210 cis->acl_handle = cpu_to_le16(conn->parent->handle);
6211 cis->cis_handle = cpu_to_le16(conn->handle);
6217 hci_dev_unlock(hdev);
6219 if (!cmd.cp.num_cis)
6222 /* Wait for HCI_LE_CIS_Established */
6223 return __hci_cmd_sync_status_sk(hdev, HCI_OP_LE_CREATE_CIS,
6224 sizeof(cmd.cp) + sizeof(cmd.cis[0]) *
6225 cmd.cp.num_cis, &cmd,
6226 HCI_EVT_LE_CIS_ESTABLISHED,
6227 conn->conn_timeout, NULL);
6230 int hci_le_remove_cig_sync(struct hci_dev *hdev, u8 handle)
6232 struct hci_cp_le_remove_cig cp;
6234 memset(&cp, 0, sizeof(cp));
6237 return __hci_cmd_sync_status(hdev, HCI_OP_LE_REMOVE_CIG, sizeof(cp),
6238 &cp, HCI_CMD_TIMEOUT);
6241 int hci_le_big_terminate_sync(struct hci_dev *hdev, u8 handle)
6243 struct hci_cp_le_big_term_sync cp;
6245 memset(&cp, 0, sizeof(cp));
6248 return __hci_cmd_sync_status(hdev, HCI_OP_LE_BIG_TERM_SYNC,
6249 sizeof(cp), &cp, HCI_CMD_TIMEOUT);
6252 int hci_le_pa_terminate_sync(struct hci_dev *hdev, u16 handle)
6254 struct hci_cp_le_pa_term_sync cp;
6256 memset(&cp, 0, sizeof(cp));
6257 cp.handle = cpu_to_le16(handle);
6259 return __hci_cmd_sync_status(hdev, HCI_OP_LE_PA_TERM_SYNC,
6260 sizeof(cp), &cp, HCI_CMD_TIMEOUT);
6263 int hci_get_random_address(struct hci_dev *hdev, bool require_privacy,
6264 bool use_rpa, struct adv_info *adv_instance,
6265 u8 *own_addr_type, bdaddr_t *rand_addr)
6269 bacpy(rand_addr, BDADDR_ANY);
6271 /* If privacy is enabled use a resolvable private address. If
6272 * current RPA has expired then generate a new one.
6275 /* If Controller supports LL Privacy use own address type is
6278 if (use_ll_privacy(hdev))
6279 *own_addr_type = ADDR_LE_DEV_RANDOM_RESOLVED;
6281 *own_addr_type = ADDR_LE_DEV_RANDOM;
6284 if (adv_rpa_valid(adv_instance))
6287 if (rpa_valid(hdev))
6291 err = smp_generate_rpa(hdev, hdev->irk, &hdev->rpa);
6293 bt_dev_err(hdev, "failed to generate new RPA");
6297 bacpy(rand_addr, &hdev->rpa);
6302 /* In case of required privacy without resolvable private address,
6303 * use an non-resolvable private address. This is useful for
6304 * non-connectable advertising.
6306 if (require_privacy) {
6310 /* The non-resolvable private address is generated
6311 * from random six bytes with the two most significant
6314 get_random_bytes(&nrpa, 6);
6317 /* The non-resolvable private address shall not be
6318 * equal to the public address.
6320 if (bacmp(&hdev->bdaddr, &nrpa))
6324 *own_addr_type = ADDR_LE_DEV_RANDOM;
6325 bacpy(rand_addr, &nrpa);
6330 /* No privacy so use a public address. */
6331 *own_addr_type = ADDR_LE_DEV_PUBLIC;
6336 static int _update_adv_data_sync(struct hci_dev *hdev, void *data)
6338 u8 instance = PTR_ERR(data);
6340 return hci_update_adv_data_sync(hdev, instance);
6343 int hci_update_adv_data(struct hci_dev *hdev, u8 instance)
6345 return hci_cmd_sync_queue(hdev, _update_adv_data_sync,
6346 ERR_PTR(instance), NULL);